igniteui-webcomponents-grids
Version:
Ignite UI Web Components grid components.
39 lines (38 loc) • 2.17 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 { IgcDataGridCoreModule } from './igc-data-grid-core-module';
import { IgcTextColumnModule } from './igc-text-column-module';
import { IgcNumericColumnModule } from './igc-numeric-column-module';
import { IgcDateTimeColumnModule } from './igc-date-time-column-module';
import { IgcTemplateColumnModule } from './igc-template-column-module';
import { IgcXCheckboxModule } from "igniteui-webcomponents-inputs";
import { IgcXInputGroupModule } from "igniteui-webcomponents-inputs";
import { IgcCheckboxListComponent } from './igc-checkbox-list-component';
import { NativeUIGridFactory } from './NativeUIGridFactory';
import { CheckboxList } from './CheckboxList';
import { TypeRegistrar } from "igniteui-webcomponents-core";
var IgcCheckboxListModule = /** @class */ /*@__PURE__*/ (function () {
function IgcCheckboxListModule() {
}
IgcCheckboxListModule.register = function () {
IgcDataGridCoreModule.register();
IgcTextColumnModule.register();
IgcNumericColumnModule.register();
IgcDateTimeColumnModule.register();
IgcTemplateColumnModule.register();
IgcXCheckboxModule.register();
IgcXInputGroupModule.register();
IgcCheckboxListComponent.register();
TypeRegistrar.registerCons('IgcCheckboxListComponent', IgcCheckboxListComponent);
TypeRegistrar.registerCons('IgcCheckboxListComponent', IgcCheckboxListComponent);
TypeRegistrar.register('NativeUIGridFactory', NativeUIGridFactory.$type);
NativeUIGridFactory.register();
TypeRegistrar.register('CheckboxList', CheckboxList.$type);
};
return IgcCheckboxListModule;
}());
export { IgcCheckboxListModule };