import {NgModule} from '@angular/core'; import {RouterModule} from '@angular/router'; import {CommonModule} from '@angular/common'; import {FormsModule} from '@angular/forms'; import {PluginEditWrapperComponent} from "./plugin-edit-wrapper.component"; import {PluginOpenaireProductsFormComponent} from "../components/openaireProducts/plugin-openaire-products.form.component"; import {PluginLearnAndConnectFormComponent} from "../components/learn-and-connect/plugin-learn-and-connect.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"; import {PluginSearchDepositLinkFormComponent} from "../components/search-deposit-link/plugin-search-deposit-link.form.component"; import {PluginOrganizationsFormComponent} from "../components/organizations/plugin-organizations.form.component"; import {IconsModule} from "../../../utils/icons/icons.module"; import {PluginHowToUseFormComponent} from "../components/how-to-use/plugin-how-to-use.form.component"; import {PluginSuggestedRepositoriesFormComponent} from "../components/suggested-repositories/plugin-suggested-repositories.form.component"; @NgModule({ imports: [ CommonModule, RouterModule, FormsModule, PluginFieldEditModule, IconsModule ], declarations: [PluginEditWrapperComponent, PluginOpenaireProductsFormComponent, PluginLearnAndConnectFormComponent, PluginDiscoverBySubcommunityFormComponent, PluginDiscoverBySubcommunityFormComponent, PluginDiscoverBySubcommunityFormComponent, PluginDiscoverBySubcommunityFormComponent, PluginDiscoverBySubcommunityFormComponent, PluginDiscoverBySubcommunityFormComponent, PluginFeaturedDatasetsFormComponent, PluginGatewayInformationFormComponent, PluginSearchDepositLinkFormComponent, PluginOrganizationsFormComponent, PluginHowToUseFormComponent, PluginSuggestedRepositoriesFormComponent], exports: [PluginEditWrapperComponent] }) export class PluginEditWrapperModule { }