2024-02-22 10:09:20 +01:00
|
|
|
import {NgModule} from '@angular/core';
|
|
|
|
import {RouterModule} from '@angular/router';
|
|
|
|
import {CommonModule} from '@angular/common';
|
2024-05-16 14:12:54 +02:00
|
|
|
import {FormsModule, ReactiveFormsModule} from '@angular/forms';
|
2024-02-22 10:09:20 +01:00
|
|
|
import {PluginEditWrapperComponent} from "./plugin-edit-wrapper.component";
|
|
|
|
import {PluginOpenaireProductsFormComponent} from "../components/openaireProducts/plugin-openaire-products.form.component";
|
|
|
|
import {PluginFieldEditModule} from "../utils/plugin-field-edit.module";
|
|
|
|
import {PluginDiscoverBySubcommunityFormComponent} from "../components/discover-by-subcommunity/plugin-discover-by-subcommunity.form.component";
|
|
|
|
import {PluginFeaturedDatasetsFormComponent} from "../components/featured-datasets/plugin-featured-datasets.form.component";
|
|
|
|
import {PluginGatewayInformationFormComponent} from "../components/gateway-information/plugin-gateway-information.form.component";
|
2024-02-22 11:15:21 +01:00
|
|
|
import {PluginSearchDepositLinkFormComponent} from "../components/search-deposit-link/plugin-search-deposit-link.form.component";
|
2024-02-28 12:07:31 +01:00
|
|
|
import {PluginOrganizationsFormComponent} from "../components/organizations/plugin-organizations.form.component";
|
|
|
|
import {IconsModule} from "../../../utils/icons/icons.module";
|
2024-03-01 09:32:38 +01:00
|
|
|
import {PluginSuggestedRepositoriesFormComponent} from "../components/suggested-repositories/plugin-suggested-repositories.form.component";
|
2024-05-22 10:09:18 +02:00
|
|
|
import {PluginGraphInfoFormComponent} from "../components/paragraph-info/plugin-graph-info.form.component";
|
2024-03-13 08:03:58 +01:00
|
|
|
import {PluginStatsFormComponent} from "../components/stats/plugin-stats.form.component";
|
2024-04-25 14:26:36 +02:00
|
|
|
import {PluginSearchBarFormComponent} from "../components/search-bar/plugin-search-bar.form.component";
|
|
|
|
import {PluginCardInfoFormComponent} from "../components/card-info/plugin-card-info-form.component";
|
2024-05-16 14:12:54 +02:00
|
|
|
import {CKEditorModule} from "ng2-ckeditor";
|
|
|
|
import {InputModule} from "../../../sharedComponents/input/input.module";
|
2024-05-22 10:09:18 +02:00
|
|
|
import {PluginHtmlSectionFormComponent} from "../components/html-section/plugin-html-section.form.component";
|
2024-02-22 10:09:20 +01:00
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
imports: [
|
2024-05-16 14:12:54 +02:00
|
|
|
CommonModule, RouterModule,
|
|
|
|
ReactiveFormsModule, InputModule,
|
|
|
|
FormsModule, PluginFieldEditModule, IconsModule, CKEditorModule,
|
2024-02-22 10:09:20 +01:00
|
|
|
],
|
2024-05-22 10:09:18 +02:00
|
|
|
declarations: [PluginEditWrapperComponent, PluginOpenaireProductsFormComponent, PluginDiscoverBySubcommunityFormComponent, PluginDiscoverBySubcommunityFormComponent, PluginDiscoverBySubcommunityFormComponent, PluginDiscoverBySubcommunityFormComponent, PluginDiscoverBySubcommunityFormComponent, PluginDiscoverBySubcommunityFormComponent, PluginFeaturedDatasetsFormComponent, PluginGatewayInformationFormComponent, PluginSearchDepositLinkFormComponent, PluginOrganizationsFormComponent, PluginSuggestedRepositoriesFormComponent, PluginGraphInfoFormComponent, PluginStatsFormComponent, PluginSearchBarFormComponent, PluginCardInfoFormComponent, PluginHtmlSectionFormComponent],
|
2024-02-22 10:09:20 +01:00
|
|
|
exports: [PluginEditWrapperComponent]
|
|
|
|
|
|
|
|
})
|
|
|
|
export class PluginEditWrapperModule {
|
|
|
|
|
|
|
|
}
|