dependencies Legend  Declarations  Module  Bootstrap  Providers  Exports cluster_SelectModule cluster_SelectModule_Select_providers cluster_SelectModule_declarations cluster_SelectModule_exports cluster_SelectModule_imports OptGroup OptGroup SelectModule SelectModule OptGroup->SelectModule Option Option Option->SelectModule Select Select Select->SelectModule OptGroup OptGroup SelectModule->OptGroup Option Option SelectModule->Option Select Select SelectModule->Select {    provide: NG_VALUE_ACCESSOR, useExisting: Select, multi: true } {    provide: NG_VALUE_ACCESSOR, useExisting: Select, multi: true } {    provide: NG_VALUE_ACCESSOR, useExisting: Select, multi: true }->Select IconModule IconModule IconModule->SelectModule

File

src/select/select.module.ts

Declarations

Imports

// modules
import { NgModule } from "@angular/core";
import { FormsModule } from "@angular/forms";
import { CommonModule } from "@angular/common";

// imports
import { Select } from "./select.component";
import { Option } from "./option.directive";
import { OptGroup } from "./optgroup.directive";
import { IconModule } from "carbon-components-angular/icon";

@NgModule({
	declarations: [
		Select,
		Option,
		OptGroup
	],
	exports: [
		Select,
		Option,
		OptGroup
	],
	imports: [
		CommonModule,
		FormsModule,
		IconModule
	]
})
export class SelectModule { }

results matching ""

    No results matching ""