UNPKG

igniteui-react-inputs

Version:

Ignite UI React input components.

25 lines (24 loc) 1.37 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 { IgrColorEditorPanel } from './igr-color-editor-panel'; import { IgrMultiSliderModule } from './igr-multi-slider-module'; import { IgrXButtonModule } from './igr-x-button-module'; import { IgrXInputGroupModule } from './igr-x-input-group-module'; import { IgrXInputModule } from './igr-x-input-module'; import { ColorEditorPanel } from './ColorEditorPanel'; import { TypeRegistrar } from "igniteui-react-core"; export class IgrColorEditorPanelModule { static register() { TypeRegistrar.registerCons('IgrColorEditorPanel', IgrColorEditorPanel); TypeRegistrar.registerCons('IgrColorEditorPanel', IgrColorEditorPanel); IgrMultiSliderModule.register(); IgrXButtonModule.register(); IgrXInputGroupModule.register(); IgrXInputModule.register(); TypeRegistrar.register('ColorEditorPanel', ColorEditorPanel.$type); } }