igniteui-webcomponents-inputs
Version:
Ignite UI Web Components inputs components.
30 lines (29 loc) • 1.68 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 { IgcColorEditorPanelComponent } from './igc-color-editor-panel-component';
import { IgcMultiSliderModule } from './igc-multi-slider-module';
import { IgcXButtonModule } from './igc-x-button-module';
import { IgcXInputGroupModule } from './igc-x-input-group-module';
import { IgcXInputModule } from './igc-x-input-module';
import { ColorEditorPanel } from './ColorEditorPanel';
import { TypeRegistrar } from "igniteui-webcomponents-core";
var IgcColorEditorPanelModule = /** @class */ /*@__PURE__*/ (function () {
function IgcColorEditorPanelModule() {
}
IgcColorEditorPanelModule.register = function () {
IgcColorEditorPanelComponent.register();
TypeRegistrar.registerCons('IgcColorEditorPanelComponent', IgcColorEditorPanelComponent);
TypeRegistrar.registerCons('IgcColorEditorPanelComponent', IgcColorEditorPanelComponent);
IgcMultiSliderModule.register();
IgcXButtonModule.register();
IgcXInputGroupModule.register();
IgcXInputModule.register();
TypeRegistrar.register('ColorEditorPanel', ColorEditorPanel.$type);
};
return IgcColorEditorPanelModule;
}());
export { IgcColorEditorPanelModule };