igniteui-react-inputs
Version:
Ignite UI React input components.
29 lines (28 loc) • 1.57 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 { 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";
var IgrColorEditorPanelModule = /** @class */ /*@__PURE__*/ (function () {
function IgrColorEditorPanelModule() {
}
IgrColorEditorPanelModule.register = function () {
TypeRegistrar.registerCons('IgrColorEditorPanel', IgrColorEditorPanel);
TypeRegistrar.registerCons('IgrColorEditorPanel', IgrColorEditorPanel);
IgrMultiSliderModule.register();
IgrXButtonModule.register();
IgrXInputGroupModule.register();
IgrXInputModule.register();
TypeRegistrar.register('ColorEditorPanel', ColorEditorPanel.$type);
};
return IgrColorEditorPanelModule;
}());
export { IgrColorEditorPanelModule };