UNPKG

@progress/kendo-angular-dropdowns

Version:
40 lines (39 loc) 1.43 kB
import { NgModule } from '@angular/core'; import { MultiSelectComponent } from './multiselect.component'; import { TagListComponent } from './taglist.component'; import { TagTemplateDirective } from './templates/tag-template.directive'; import { SharedModule } from './shared.module'; import { SharedDirectivesModule } from './shared-directives.module'; var MULTISELECT_DIRECTIVES = [ MultiSelectComponent, TagListComponent, TagTemplateDirective ]; /** * @hidden * * The exported package module. * * The package exports: * - `MultiSelectComponent`—The MultiSelect component class. * - `ItemTemplateDirective`—The item template directive. * - `TagTemplateDirective`—The tag template directive. * - `HeaderTemplateDirective`—The header template directive. * - `FooterTemplateDirective`—The footer template directive. * - `NoDataTemplateDirective`—The no-data template directive. */ var MultiSelectModule = (function () { function MultiSelectModule() { } return MultiSelectModule; }()); export { MultiSelectModule }; MultiSelectModule.decorators = [ { type: NgModule, args: [{ declarations: [MULTISELECT_DIRECTIVES], exports: [MULTISELECT_DIRECTIVES, SharedDirectivesModule], imports: [SharedModule] },] }, ]; /** @nocollapse */ MultiSelectModule.ctorParameters = function () { return []; };