UNPKG

igniteui-react-grids

Version:

Ignite UI React grid components.

34 lines (33 loc) 1.87 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 { IgrDataGridCoreModule } from './igr-data-grid-core-module'; import { IgrTextColumnModule } from './igr-text-column-module'; import { IgrNumericColumnModule } from './igr-numeric-column-module'; import { IgrDateTimeColumnModule } from './igr-date-time-column-module'; import { IgrTemplateColumnModule } from './igr-template-column-module'; import { IgrXCheckboxModule } from "igniteui-react-inputs"; import { IgrXInputGroupModule } from "igniteui-react-inputs"; import { IgrCheckboxList } from './igr-checkbox-list'; import { NativeUIGridFactory } from './NativeUIGridFactory'; import { CheckboxList } from './CheckboxList'; import { TypeRegistrar } from "igniteui-react-core"; export class IgrCheckboxListModule { static register() { IgrDataGridCoreModule.register(); IgrTextColumnModule.register(); IgrNumericColumnModule.register(); IgrDateTimeColumnModule.register(); IgrTemplateColumnModule.register(); IgrXCheckboxModule.register(); IgrXInputGroupModule.register(); TypeRegistrar.registerCons('IgrCheckboxList', IgrCheckboxList); TypeRegistrar.registerCons('IgrCheckboxList', IgrCheckboxList); TypeRegistrar.register('NativeUIGridFactory', NativeUIGridFactory.$type); NativeUIGridFactory.register(); TypeRegistrar.register('CheckboxList', CheckboxList.$type); } }