dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_DropdownModule cluster_DropdownModule_declarations cluster_DropdownModule_Dropdown_providers cluster_DropdownModule_imports cluster_DropdownModule_exports Dropdown Dropdown DropdownModule DropdownModule Dropdown->DropdownModule DropdownList DropdownList DropdownList->DropdownModule ScrollableList ScrollableList ScrollableList->DropdownModule Dropdown Dropdown DropdownModule->Dropdown DropdownList DropdownList DropdownModule->DropdownList ScrollableList ScrollableList DropdownModule->ScrollableList {    : , : , : true } {    : , : , : true } {    : , : , : true }->Dropdown StaticIconModule StaticIconModule StaticIconModule->DropdownModule I18nModule I18nModule I18nModule->DropdownModule

File

src/dropdown/dropdown.module.ts

import { NgModule } from "@angular/core";
import { CommonModule } from "@angular/common";
import { FormsModule } from "@angular/forms";
import { StaticIconModule } from "./../icon/static-icon.module";

import { Dropdown } from "./dropdown.component";
import { DropdownList } from "./list/dropdown-list.component";

import { ScrollableList } from "./scrollable-list.directive";
import { I18nModule } from "./../i18n/i18n.module";

export { Dropdown } from "./dropdown.component";
export { DropdownList } from "./list/dropdown-list.component";

export { ScrollableList } from "./scrollable-list.directive";
export { AbstractDropdownView } from "./abstract-dropdown-view.class";
export { ListItem } from "./list-item.interface";

@NgModule({
	declarations: [
		Dropdown,
		DropdownList,
		ScrollableList
	],
	exports: [
		Dropdown,
		DropdownList,
		ScrollableList
	],
	imports: [
		CommonModule,
		FormsModule,
		StaticIconModule,
		I18nModule
	]
})
export class DropdownModule {}

results matching ""

    No results matching ""