UNPKG

igniteui-webcomponents-grids

Version:

Ignite UI Web Components grid components.

44 lines (43 loc) 2.52 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 { IgcXInputGroupModule } from "igniteui-webcomponents-inputs"; import { IgcXCheckboxModule } from "igniteui-webcomponents-inputs"; import { IgcXButtonModule } from "igniteui-webcomponents-inputs"; import { IgcDataGridCoreModule } from './igc-data-grid-core-module'; import { IgcMultiColumnComboBoxModule } from './igc-multi-column-combo-box-module'; import { IgcNumericColumnModule } from './igc-numeric-column-module'; import { IgcDateTimeColumnModule } from './igc-date-time-column-module'; import { IgcImageColumnModule } from './igc-image-column-module'; import { IgcTextColumnModule } from './igc-text-column-module'; import { IgcTemplateColumnModule } from './igc-template-column-module'; import { IgcPropertyEditorPropertyDescriptionModule } from "igniteui-webcomponents-layouts"; import { IgcPropertyEditorComponent } from './igc-property-editor-component'; import { PropertyEditor } from './PropertyEditor'; import { TypeRegistrar } from "igniteui-webcomponents-core"; var IgcPropertyEditorModule = /** @class */ /*@__PURE__*/ (function () { function IgcPropertyEditorModule() { } IgcPropertyEditorModule.register = function () { IgcXInputGroupModule.register(); IgcXCheckboxModule.register(); IgcXButtonModule.register(); IgcDataGridCoreModule.register(); IgcMultiColumnComboBoxModule.register(); IgcNumericColumnModule.register(); IgcDateTimeColumnModule.register(); IgcImageColumnModule.register(); IgcTextColumnModule.register(); IgcTemplateColumnModule.register(); IgcPropertyEditorPropertyDescriptionModule.register(); IgcPropertyEditorComponent.register(); TypeRegistrar.registerCons('IgcPropertyEditorComponent', IgcPropertyEditorComponent); TypeRegistrar.registerCons('IgcPropertyEditorComponent', IgcPropertyEditorComponent); TypeRegistrar.register('PropertyEditor', PropertyEditor.$type); }; return IgcPropertyEditorModule; }()); export { IgcPropertyEditorModule };