igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
30 lines (29 loc) • 1.78 kB
JavaScript
/*
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 { IgcDataGridCoreModule } from './igc-data-grid-core-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 { IgcMultiColumnComboBoxComponent } from './igc-multi-column-combo-box-component';
import { MultiColumnComboBox } from './MultiColumnComboBox';
import { TypeRegistrar } from "igniteui-webcomponents-core";
export class IgcMultiColumnComboBoxModule {
static register() {
IgcXInputGroupModule.register();
IgcDataGridCoreModule.register();
IgcNumericColumnModule.register();
IgcDateTimeColumnModule.register();
IgcImageColumnModule.register();
IgcTextColumnModule.register();
IgcMultiColumnComboBoxComponent.register();
TypeRegistrar.registerCons('IgcMultiColumnComboBoxComponent', IgcMultiColumnComboBoxComponent);
TypeRegistrar.registerCons('IgcMultiColumnComboBoxComponent', IgcMultiColumnComboBoxComponent);
TypeRegistrar.register('MultiColumnComboBox', MultiColumnComboBox.$type);
}
}