igniteui-react-grids
Version:
Ignite UI React grid components.
53 lines (52 loc) • 3.37 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 { IgrColumnModule } from './igr-column-module';
import { IgrGridToolbarModule } from './igr-grid-toolbar-module';
import { IgrGridToolbarActionsModule } from './igr-grid-toolbar-actions-module';
import { IgrGridToolbarTitleModule } from './igr-grid-toolbar-title-module';
import { IgrGridToolbarAdvancedFilteringModule } from './igr-grid-toolbar-advanced-filtering-module';
import { IgrGridToolbarExporterModule } from './igr-grid-toolbar-exporter-module';
import { IgrGridToolbarHidingModule } from './igr-grid-toolbar-hiding-module';
import { IgrGridToolbarPinningModule } from './igr-grid-toolbar-pinning-module';
import { IgrActionStripModule } from './igr-action-strip-module';
import { IgrGridActionsBaseDirectiveModule } from './igr-grid-actions-base-directive-module';
import { IgrGridEditingActionsModule } from './igr-grid-editing-actions-module';
import { IgrGridPinningActionsModule } from './igr-grid-pinning-actions-module';
import { IgrForOfStateEventArgs } from './igr-for-of-state-event-args';
import { IgrGroupingDoneEventArgs } from './igr-grouping-done-event-args';
import { IgrGridMasterDetailContext } from './igr-grid-master-detail-context';
import { IgrGroupByRowSelectorTemplateContext } from './igr-group-by-row-selector-template-context';
import { IgrGroupByRowTemplateContext } from './igr-group-by-row-template-context';
import { IgrGrid } from './igr-grid';
import { IgrTemplateContainerModule } from "igniteui-react-core";
import { IgrChildContentModule } from "igniteui-react-core";
import { TypeRegistrar } from "igniteui-react-core";
export class IgrGridModule {
static register() {
IgrColumnModule.register();
IgrGridToolbarModule.register();
IgrGridToolbarActionsModule.register();
IgrGridToolbarTitleModule.register();
IgrGridToolbarAdvancedFilteringModule.register();
IgrGridToolbarExporterModule.register();
IgrGridToolbarHidingModule.register();
IgrGridToolbarPinningModule.register();
IgrActionStripModule.register();
IgrGridActionsBaseDirectiveModule.register();
IgrGridEditingActionsModule.register();
IgrGridPinningActionsModule.register();
TypeRegistrar.registerCons('IgrForOfStateEventArgs', IgrForOfStateEventArgs);
TypeRegistrar.registerCons('IgrGroupingDoneEventArgs', IgrGroupingDoneEventArgs);
TypeRegistrar.registerCons('IgrGridMasterDetailContext', IgrGridMasterDetailContext);
TypeRegistrar.registerCons('IgrGroupByRowSelectorTemplateContext', IgrGroupByRowSelectorTemplateContext);
TypeRegistrar.registerCons('IgrGroupByRowTemplateContext', IgrGroupByRowTemplateContext);
TypeRegistrar.registerCons('IgrGrid', IgrGrid);
TypeRegistrar.registerCons('IgrGrid', IgrGrid);
IgrTemplateContainerModule.register();
IgrChildContentModule.register();
}
}