dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_DropdownModule cluster_DropdownModule_declarations cluster_DropdownModule_Dropdown_providers cluster_DropdownModule_exports cluster_DropdownModule_imports cluster_DropdownModule_providers AbstractDropdownView AbstractDropdownView DropdownModule DropdownModule AbstractDropdownView->DropdownModule Dropdown Dropdown Dropdown->DropdownModule DropdownList DropdownList DropdownList->DropdownModule ScrollableList ScrollableList ScrollableList->DropdownModule AbstractDropdownView AbstractDropdownView DropdownModule->AbstractDropdownView Dropdown Dropdown DropdownModule->Dropdown DropdownList DropdownList DropdownModule->DropdownList ScrollableList ScrollableList DropdownModule->ScrollableList {    provide: NG_VALUE_ACCESSOR, useExisting: Dropdown, multi: true } {    provide: NG_VALUE_ACCESSOR, useExisting: Dropdown, multi: true } {    provide: NG_VALUE_ACCESSOR, useExisting: Dropdown, multi: true }->Dropdown I18nModule I18nModule I18nModule->DropdownModule IconModule IconModule IconModule->DropdownModule PlaceholderModule PlaceholderModule PlaceholderModule->DropdownModule UtilsModule UtilsModule UtilsModule->DropdownModule DropdownService DropdownService DropdownService->DropdownModule
import { NgModule } from "@angular/core";
import { CommonModule } from "@angular/common";
import { FormsModule } from "@angular/forms";

import { Dropdown } from "./dropdown.component";
import { DropdownList } from "./list/dropdown-list.component";
import { AbstractDropdownView } from "./abstract-dropdown-view.class";

import { ScrollableList } from "./scrollable-list.directive";
import { I18nModule } from "carbon-components-angular/i18n";
import { PlaceholderModule } from "carbon-components-angular/placeholder";
import { DropdownService } from "./dropdown.service";
import { UtilsModule } from "carbon-components-angular/utils";
import { IconModule } from "carbon-components-angular/icon";

@NgModule({
	declarations: [
		Dropdown,
		DropdownList,
		ScrollableList,
		AbstractDropdownView
	],
	exports: [
		Dropdown,
		DropdownList,
		ScrollableList,
		AbstractDropdownView
	],
	imports: [
		CommonModule,
		FormsModule,
		I18nModule,
		PlaceholderModule,
		UtilsModule,
		IconModule
	],
	providers: [ DropdownService ]
})
export class DropdownModule {}

results matching ""

    No results matching ""