UNPKG

igniteui-webcomponents-grids

Version:

Ignite UI Web Components grid components.

38 lines (37 loc) 2.43 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 { IgcGridColumnSortOptionsModule } from './igc-grid-column-sort-options-module'; import { IgcGridColumnMoveOptionsModule } from './igc-grid-column-move-options-module'; import { IgcGridColumnPinOptionsModule } from './igc-grid-column-pin-options-module'; import { IgcGridColumnHideOptionsModule } from './igc-grid-column-hide-options-module'; import { IgcGridColumnGroupOptionsModule } from './igc-grid-column-group-options-module'; import { IgcGridColumnFilterOptionsModule } from './igc-grid-column-filter-options-module'; import { IgcGridColumnSummaryOptionsModule } from './igc-grid-column-summary-options-module'; import { IgcGridColumnButtonOptionsModule } from './igc-grid-column-button-options-module'; import { IgcGridColumnOptionsComponent } from './igc-grid-column-options-component'; import { GridColumnOptions } from './GridColumnOptions'; import { TypeRegistrar } from "igniteui-webcomponents-core"; var IgcGridColumnOptionsModule = /** @class */ /*@__PURE__*/ (function () { function IgcGridColumnOptionsModule() { } IgcGridColumnOptionsModule.register = function () { IgcGridColumnSortOptionsModule.register(); IgcGridColumnMoveOptionsModule.register(); IgcGridColumnPinOptionsModule.register(); IgcGridColumnHideOptionsModule.register(); IgcGridColumnGroupOptionsModule.register(); IgcGridColumnFilterOptionsModule.register(); IgcGridColumnSummaryOptionsModule.register(); IgcGridColumnButtonOptionsModule.register(); IgcGridColumnOptionsComponent.register(); TypeRegistrar.registerCons('IgcGridColumnOptionsComponent', IgcGridColumnOptionsComponent); TypeRegistrar.registerCons('IgcGridColumnOptionsComponent', IgcGridColumnOptionsComponent); TypeRegistrar.register('GridColumnOptions', GridColumnOptions.$type); }; return IgcGridColumnOptionsModule; }()); export { IgcGridColumnOptionsModule };