UNPKG

igniteui-angular-sovn

Version:

Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps

26 lines (23 loc) 1.1 kB
import { IgxHintDirective } from '../directives/hint/hint.directive'; import { IgxLabelDirective } from '../directives/label/label.directive'; import { IgxPrefixDirective } from '../directives/prefix/prefix.directive'; import { IgxSuffixDirective } from '../directives/suffix/suffix.directive'; import { IgxSelectGroupComponent } from './select-group.component'; import { IgxSelectItemComponent } from './select-item.component'; import { IgxSelectComponent, IgxSelectFooterDirective, IgxSelectHeaderDirective, IgxSelectToggleIconDirective } from './select.component'; export * from './select-group.component'; export * from './select-item.component'; export * from './select.component'; /* NOTE: Select directives collection for ease-of-use import in standalone components scenario */ export const IGX_SELECT_DIRECTIVES = [ IgxSelectComponent, IgxSelectItemComponent, IgxSelectGroupComponent, IgxSelectHeaderDirective, IgxSelectFooterDirective, IgxSelectToggleIconDirective, IgxLabelDirective, IgxPrefixDirective, IgxSuffixDirective, IgxHintDirective ] as const;