igniteui-angular-sovn
Version:
Ignite UI for Angular is a dependency-free Angular toolkit for building modern web apps
22 lines (19 loc) • 1 kB
text/typescript
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 { IgxDateRangeEndComponent, IgxDateRangeSeparatorDirective, IgxDateRangeStartComponent } from './date-range-picker-inputs.common';
import { IgxDateRangePickerComponent } from './date-range-picker.component';
export * from './date-range-picker-inputs.common';
export * from './date-range-picker.component';
/* NOTE: Date-range picker directives collection for ease-of-use import in standalone components scenario */
export const IGX_DATE_RANGE_PICKER_DIRECTIVES = [
IgxDateRangePickerComponent,
IgxDateRangeStartComponent,
IgxDateRangeEndComponent,
IgxDateRangeSeparatorDirective,
IgxLabelDirective,
IgxPrefixDirective,
IgxSuffixDirective,
IgxHintDirective
] as const;