UNPKG

igniteui-webcomponents-inputs

Version:

Ignite UI Web Components inputs components.

30 lines (29 loc) 1.59 kB
/* THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE: https://www.infragistics.com/legal/license/igultimate-la https://www.infragistics.com/legal/license/igultimate-eula GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company. */ import { IgcXCalendarModule } from './igc-x-calendar-module'; import { IgcXButtonModule } from './igc-x-button-module'; import { IgcXIconModule } from './igc-x-icon-module'; import { IgcXInputGroupModule } from './igc-x-input-group-module'; import { IgcXDatePickerComponent } from './igc-x-date-picker-component'; import { XDatePicker } from './XDatePicker'; import { TypeRegistrar } from "igniteui-webcomponents-core"; var IgcXDatePickerModule = /** @class */ /*@__PURE__*/ (function () { function IgcXDatePickerModule() { } IgcXDatePickerModule.register = function () { IgcXCalendarModule.register(); IgcXButtonModule.register(); IgcXIconModule.register(); IgcXInputGroupModule.register(); IgcXDatePickerComponent.register(); TypeRegistrar.registerCons('IgcXDatePickerComponent', IgcXDatePickerComponent); TypeRegistrar.registerCons('IgcXDatePickerComponent', IgcXDatePickerComponent); TypeRegistrar.register('XDatePicker', XDatePicker.$type); }; return IgcXDatePickerModule; }()); export { IgcXDatePickerModule };