igniteui-react-grids
Version:
Ignite UI React grid components.
39 lines (38 loc) • 2.19 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 { IgrXInputGroupModule } from "igniteui-react-inputs";
import { IgrXCheckboxModule } from "igniteui-react-inputs";
import { IgrXButtonModule } from "igniteui-react-inputs";
import { IgrDataGridCoreModule } from './igr-data-grid-core-module';
import { IgrMultiColumnComboBoxModule } from './igr-multi-column-combo-box-module';
import { IgrNumericColumnModule } from './igr-numeric-column-module';
import { IgrDateTimeColumnModule } from './igr-date-time-column-module';
import { IgrImageColumnModule } from './igr-image-column-module';
import { IgrTextColumnModule } from './igr-text-column-module';
import { IgrTemplateColumnModule } from './igr-template-column-module';
import { IgrPropertyEditorPropertyDescriptionModule } from "igniteui-react-layouts";
import { IgrPropertyEditor } from './igr-property-editor';
import { PropertyEditor } from './PropertyEditor';
import { TypeRegistrar } from "igniteui-react-core";
export class IgrPropertyEditorModule {
static register() {
IgrXInputGroupModule.register();
IgrXCheckboxModule.register();
IgrXButtonModule.register();
IgrDataGridCoreModule.register();
IgrMultiColumnComboBoxModule.register();
IgrNumericColumnModule.register();
IgrDateTimeColumnModule.register();
IgrImageColumnModule.register();
IgrTextColumnModule.register();
IgrTemplateColumnModule.register();
IgrPropertyEditorPropertyDescriptionModule.register();
TypeRegistrar.registerCons('IgrPropertyEditor', IgrPropertyEditor);
TypeRegistrar.registerCons('IgrPropertyEditor', IgrPropertyEditor);
TypeRegistrar.register('PropertyEditor', PropertyEditor.$type);
}
}