igniteui-angular-inputs 18.1.1 → 18.2.0-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (224) hide show
  1. package/bundles/igniteui-angular-inputs.umd.js +16857 -7563
  2. package/bundles/igniteui-angular-inputs.umd.min.js +1 -1
  3. package/esm2015/lib/ButtonGroupView_combined.js +19 -19
  4. package/esm2015/lib/ButtonView_combined.js +820 -790
  5. package/esm2015/lib/CalendarView_combined.js +82 -82
  6. package/esm2015/lib/ColorEditor.js +7 -0
  7. package/esm2015/lib/ColorEditorBridge.js +7 -0
  8. package/esm2015/lib/ColorEditorGotFocusEventArgs.js +16 -0
  9. package/esm2015/lib/ColorEditorLostFocusEventArgs.js +16 -0
  10. package/esm2015/lib/ColorEditorPanel.js +7 -0
  11. package/esm2015/lib/ColorEditorPanelClosedEventArgs.js +16 -0
  12. package/esm2015/lib/ColorEditorPanelSelectedValueChangedEventArgs.js +33 -0
  13. package/esm2015/lib/ColorEditorPanelView.js +7 -0
  14. package/esm2015/lib/ColorEditorView.js +7 -0
  15. package/esm2015/lib/DatePickerView_combined.js +18 -18
  16. package/esm2015/lib/DefaultMultiSliderTrackBarVisual.js +113 -0
  17. package/esm2015/lib/DefaultMultiSliderTrackRangeVisual.js +208 -0
  18. package/esm2015/lib/DefaultMultiSliderTrackThumbCalloutVisual.js +170 -0
  19. package/esm2015/lib/DefaultMultiSliderTrackThumbVisual.js +193 -0
  20. package/esm2015/lib/DefaultMultiTrackShadeVisual.js +172 -0
  21. package/esm2015/lib/IMultiSliderTrackBarVisual.js +11 -0
  22. package/esm2015/lib/IMultiSliderTrackRangeVisual.js +11 -0
  23. package/esm2015/lib/IMultiSliderTrackShadeVisual.js +11 -0
  24. package/esm2015/lib/IMultiSliderTrackThumbCalloutVisual.js +11 -0
  25. package/esm2015/lib/IMultiSliderTrackThumbVisual.js +11 -0
  26. package/esm2015/lib/ISliderTrackOwner.js +11 -0
  27. package/esm2015/lib/IconClickedEventArgs.js +10 -0
  28. package/esm2015/lib/IconView_combined.js +345 -314
  29. package/esm2015/lib/InputGroupView_combined.js +456 -355
  30. package/esm2015/lib/MultiSlider.js +7 -0
  31. package/esm2015/lib/MultiSliderBridge.js +165 -0
  32. package/esm2015/lib/MultiSliderCursor.js +11 -0
  33. package/esm2015/lib/MultiSliderHitInfo.js +22 -0
  34. package/esm2015/lib/MultiSliderOrientation.js +17 -0
  35. package/esm2015/lib/MultiSliderResolvingToolTipValueEventArgs.js +33 -0
  36. package/esm2015/lib/MultiSliderThumb.js +7 -0
  37. package/esm2015/lib/MultiSliderThumbCollection.js +21 -0
  38. package/esm2015/lib/MultiSliderThumbRangePosition.js +16 -0
  39. package/esm2015/lib/MultiSliderThumbValueChangingEventArgs.js +21 -0
  40. package/esm2015/lib/MultiSliderThumb_combined.js +297 -0
  41. package/esm2015/lib/MultiSliderTrackShadeOrientation.js +11 -0
  42. package/esm2015/lib/MultiSliderTrackThumbRange.js +7 -0
  43. package/esm2015/lib/MultiSliderView.js +7 -0
  44. package/esm2015/lib/MultiSliderView_combined.js +1785 -0
  45. package/esm2015/lib/MultiSliderVisualArea.js +11 -0
  46. package/esm2015/lib/MultiSliderYValueChangingEventArgs.js +20 -0
  47. package/esm2015/lib/NativeUIXInputsFactory.js +1 -179
  48. package/esm2015/lib/NativeUIXInputsFactory_combined.js +2113 -0
  49. package/esm2015/lib/XButtonBridge.js +25 -20
  50. package/esm2015/lib/XButtonGroupBridge.js +177 -0
  51. package/esm2015/lib/XComponentBridge.js +3 -0
  52. package/esm2015/lib/XIconBridge.js +20 -16
  53. package/esm2015/lib/XInputBridge.js +274 -26
  54. package/esm2015/lib/XPopupBridge.js +117 -98
  55. package/esm2015/lib/igx-color-editor-component.js +470 -0
  56. package/esm2015/lib/igx-color-editor-dynamic-module.js +45 -0
  57. package/esm2015/lib/igx-color-editor-got-focus-event-args.js +27 -0
  58. package/esm2015/lib/igx-color-editor-lost-focus-event-args.js +27 -0
  59. package/esm2015/lib/igx-color-editor-module.js +39 -0
  60. package/esm2015/lib/igx-color-editor-panel-closed-event-args.js +27 -0
  61. package/esm2015/lib/igx-color-editor-panel-component.js +376 -0
  62. package/esm2015/lib/igx-color-editor-panel-dynamic-module.js +66 -0
  63. package/esm2015/lib/igx-color-editor-panel-module.js +60 -0
  64. package/esm2015/lib/igx-color-editor-panel-selected-value-changed-event-args.js +40 -0
  65. package/esm2015/lib/igx-multi-slider-component.js +642 -0
  66. package/esm2015/lib/igx-multi-slider-dynamic-module.js +38 -0
  67. package/esm2015/lib/igx-multi-slider-module.js +36 -0
  68. package/esm2015/lib/igx-multi-slider-resolving-tool-tip-value-event-args.js +39 -0
  69. package/esm2015/lib/igx-multi-slider-thumb-collection.js +53 -0
  70. package/esm2015/lib/igx-multi-slider-thumb-value-changing-event-args.js +56 -0
  71. package/esm2015/lib/igx-multi-slider-thumb.js +111 -0
  72. package/esm2015/lib/igx-multi-slider-track-thumb-range.js +119 -0
  73. package/esm2015/lib/igx-multi-slider-y-value-changing-event-args.js +33 -0
  74. package/esm2015/lib/igx-x-button-component.js +262 -262
  75. package/esm2015/lib/igx-x-icon-component.js +66 -55
  76. package/esm2015/lib/igx-x-input-group-component.js +48 -48
  77. package/esm2015/lib/igx-x-label-component.js +41 -40
  78. package/esm2015/public_api.js +55 -0
  79. package/esm5/lib/ButtonGroupView_combined.js +19 -19
  80. package/esm5/lib/ButtonView_combined.js +765 -735
  81. package/esm5/lib/CalendarView_combined.js +82 -82
  82. package/esm5/lib/ColorEditor.js +7 -0
  83. package/esm5/lib/ColorEditorBridge.js +7 -0
  84. package/esm5/lib/ColorEditorGotFocusEventArgs.js +20 -0
  85. package/esm5/lib/ColorEditorLostFocusEventArgs.js +20 -0
  86. package/esm5/lib/ColorEditorPanel.js +7 -0
  87. package/esm5/lib/ColorEditorPanelClosedEventArgs.js +20 -0
  88. package/esm5/lib/ColorEditorPanelSelectedValueChangedEventArgs.js +43 -0
  89. package/esm5/lib/ColorEditorPanelView.js +7 -0
  90. package/esm5/lib/ColorEditorView.js +7 -0
  91. package/esm5/lib/DatePickerView_combined.js +18 -18
  92. package/esm5/lib/DefaultMultiSliderTrackBarVisual.js +139 -0
  93. package/esm5/lib/DefaultMultiSliderTrackRangeVisual.js +242 -0
  94. package/esm5/lib/DefaultMultiSliderTrackThumbCalloutVisual.js +212 -0
  95. package/esm5/lib/DefaultMultiSliderTrackThumbVisual.js +227 -0
  96. package/esm5/lib/DefaultMultiTrackShadeVisual.js +206 -0
  97. package/esm5/lib/IMultiSliderTrackBarVisual.js +11 -0
  98. package/esm5/lib/IMultiSliderTrackRangeVisual.js +11 -0
  99. package/esm5/lib/IMultiSliderTrackShadeVisual.js +11 -0
  100. package/esm5/lib/IMultiSliderTrackThumbCalloutVisual.js +11 -0
  101. package/esm5/lib/IMultiSliderTrackThumbVisual.js +11 -0
  102. package/esm5/lib/ISliderTrackOwner.js +11 -0
  103. package/esm5/lib/IconClickedEventArgs.js +13 -1
  104. package/esm5/lib/IconView_combined.js +336 -301
  105. package/esm5/lib/InputGroupView_combined.js +444 -343
  106. package/esm5/lib/MultiSlider.js +7 -0
  107. package/esm5/lib/MultiSliderBridge.js +167 -0
  108. package/esm5/lib/MultiSliderCursor.js +11 -0
  109. package/esm5/lib/MultiSliderHitInfo.js +24 -0
  110. package/esm5/lib/MultiSliderOrientation.js +17 -0
  111. package/esm5/lib/MultiSliderResolvingToolTipValueEventArgs.js +43 -0
  112. package/esm5/lib/MultiSliderThumb.js +7 -0
  113. package/esm5/lib/MultiSliderThumbCollection.js +22 -0
  114. package/esm5/lib/MultiSliderThumbRangePosition.js +16 -0
  115. package/esm5/lib/MultiSliderThumbValueChangingEventArgs.js +23 -0
  116. package/esm5/lib/MultiSliderThumb_combined.js +352 -0
  117. package/esm5/lib/MultiSliderTrackShadeOrientation.js +11 -0
  118. package/esm5/lib/MultiSliderTrackThumbRange.js +7 -0
  119. package/esm5/lib/MultiSliderView.js +7 -0
  120. package/esm5/lib/MultiSliderView_combined.js +2006 -0
  121. package/esm5/lib/MultiSliderVisualArea.js +11 -0
  122. package/esm5/lib/MultiSliderYValueChangingEventArgs.js +22 -0
  123. package/esm5/lib/NativeUIXInputsFactory.js +1 -189
  124. package/esm5/lib/NativeUIXInputsFactory_combined.js +2298 -0
  125. package/esm5/lib/XButtonBridge.js +25 -20
  126. package/esm5/lib/XButtonGroupBridge.js +179 -0
  127. package/esm5/lib/XComponentBridge.js +3 -0
  128. package/esm5/lib/XIconBridge.js +20 -16
  129. package/esm5/lib/XInputBridge.js +274 -26
  130. package/esm5/lib/XPopupBridge.js +117 -98
  131. package/esm5/lib/igx-color-editor-component.js +555 -0
  132. package/esm5/lib/igx-color-editor-dynamic-module.js +44 -0
  133. package/esm5/lib/igx-color-editor-got-focus-event-args.js +33 -0
  134. package/esm5/lib/igx-color-editor-lost-focus-event-args.js +33 -0
  135. package/esm5/lib/igx-color-editor-module.js +38 -0
  136. package/esm5/lib/igx-color-editor-panel-closed-event-args.js +33 -0
  137. package/esm5/lib/igx-color-editor-panel-component.js +435 -0
  138. package/esm5/lib/igx-color-editor-panel-dynamic-module.js +65 -0
  139. package/esm5/lib/igx-color-editor-panel-module.js +59 -0
  140. package/esm5/lib/igx-color-editor-panel-selected-value-changed-event-args.js +54 -0
  141. package/esm5/lib/igx-multi-slider-component.js +842 -0
  142. package/esm5/lib/igx-multi-slider-dynamic-module.js +37 -0
  143. package/esm5/lib/igx-multi-slider-module.js +35 -0
  144. package/esm5/lib/igx-multi-slider-resolving-tool-tip-value-event-args.js +53 -0
  145. package/esm5/lib/igx-multi-slider-thumb-collection.js +58 -0
  146. package/esm5/lib/igx-multi-slider-thumb-value-changing-event-args.js +70 -0
  147. package/esm5/lib/igx-multi-slider-thumb.js +134 -0
  148. package/esm5/lib/igx-multi-slider-track-thumb-range.js +149 -0
  149. package/esm5/lib/igx-multi-slider-y-value-changing-event-args.js +43 -0
  150. package/esm5/lib/igx-x-button-component.js +262 -262
  151. package/esm5/lib/igx-x-icon-component.js +70 -55
  152. package/esm5/lib/igx-x-input-group-component.js +48 -48
  153. package/esm5/lib/igx-x-label-component.js +41 -40
  154. package/esm5/public_api.js +55 -0
  155. package/fesm2015/igniteui-angular-inputs.js +15626 -7466
  156. package/fesm5/igniteui-angular-inputs.js +16802 -7565
  157. package/lib/ButtonView_combined.d.ts +243 -241
  158. package/lib/ColorEditor.d.ts +1 -0
  159. package/lib/ColorEditorBridge.d.ts +1 -0
  160. package/lib/ColorEditorGotFocusEventArgs.d.ts +7 -0
  161. package/lib/ColorEditorLostFocusEventArgs.d.ts +7 -0
  162. package/lib/ColorEditorPanel.d.ts +1 -0
  163. package/lib/ColorEditorPanelClosedEventArgs.d.ts +7 -0
  164. package/lib/ColorEditorPanelSelectedValueChangedEventArgs.d.ts +14 -0
  165. package/lib/ColorEditorPanelView.d.ts +1 -0
  166. package/lib/ColorEditorView.d.ts +1 -0
  167. package/lib/DefaultMultiSliderTrackBarVisual.d.ts +34 -0
  168. package/lib/DefaultMultiSliderTrackRangeVisual.d.ts +43 -0
  169. package/lib/DefaultMultiSliderTrackThumbCalloutVisual.d.ts +49 -0
  170. package/lib/DefaultMultiSliderTrackThumbVisual.d.ts +45 -0
  171. package/lib/DefaultMultiTrackShadeVisual.d.ts +42 -0
  172. package/lib/IMultiSliderTrackBarVisual.d.ts +21 -0
  173. package/lib/IMultiSliderTrackRangeVisual.d.ts +25 -0
  174. package/lib/IMultiSliderTrackShadeVisual.d.ts +24 -0
  175. package/lib/IMultiSliderTrackThumbCalloutVisual.d.ts +27 -0
  176. package/lib/IMultiSliderTrackThumbVisual.d.ts +27 -0
  177. package/lib/ISliderTrackOwner.d.ts +15 -0
  178. package/lib/IconClickedEventArgs.d.ts +3 -0
  179. package/lib/IconView_combined.d.ts +88 -84
  180. package/lib/InputGroupView_combined.d.ts +120 -113
  181. package/lib/MultiSlider.d.ts +1 -0
  182. package/lib/MultiSliderBridge.d.ts +24 -0
  183. package/lib/MultiSliderCursor.d.ts +15 -0
  184. package/lib/MultiSliderHitInfo.d.ts +13 -0
  185. package/lib/MultiSliderOrientation.d.ts +10 -0
  186. package/lib/MultiSliderResolvingToolTipValueEventArgs.d.ts +13 -0
  187. package/lib/MultiSliderThumb.d.ts +1 -0
  188. package/lib/MultiSliderThumbCollection.d.ts +10 -0
  189. package/lib/MultiSliderThumbRangePosition.d.ts +9 -0
  190. package/lib/MultiSliderThumbValueChangingEventArgs.d.ts +10 -0
  191. package/lib/MultiSliderThumb_combined.d.ts +76 -0
  192. package/lib/MultiSliderTrackShadeOrientation.d.ts +14 -0
  193. package/lib/MultiSliderTrackThumbRange.d.ts +1 -0
  194. package/lib/MultiSliderView.d.ts +1 -0
  195. package/lib/MultiSliderView_combined.d.ts +298 -0
  196. package/lib/MultiSliderVisualArea.d.ts +14 -0
  197. package/lib/MultiSliderYValueChangingEventArgs.d.ts +8 -0
  198. package/lib/NativeUIXInputsFactory.d.ts +1 -24
  199. package/lib/NativeUIXInputsFactory_combined.d.ts +393 -0
  200. package/lib/XButtonGroupBridge.d.ts +29 -0
  201. package/lib/XInputBridge.d.ts +29 -5
  202. package/lib/XPopupBridge.d.ts +12 -9
  203. package/lib/igx-color-editor-component.d.ts +161 -0
  204. package/lib/igx-color-editor-dynamic-module.d.ts +10 -0
  205. package/lib/igx-color-editor-got-focus-event-args.d.ts +12 -0
  206. package/lib/igx-color-editor-lost-focus-event-args.d.ts +12 -0
  207. package/lib/igx-color-editor-module.d.ts +10 -0
  208. package/lib/igx-color-editor-panel-closed-event-args.d.ts +12 -0
  209. package/lib/igx-color-editor-panel-component.d.ts +125 -0
  210. package/lib/igx-color-editor-panel-dynamic-module.d.ts +13 -0
  211. package/lib/igx-color-editor-panel-module.d.ts +13 -0
  212. package/lib/igx-color-editor-panel-selected-value-changed-event-args.d.ts +16 -0
  213. package/lib/igx-multi-slider-component.d.ts +200 -0
  214. package/lib/igx-multi-slider-dynamic-module.d.ts +9 -0
  215. package/lib/igx-multi-slider-module.d.ts +9 -0
  216. package/lib/igx-multi-slider-resolving-tool-tip-value-event-args.d.ts +17 -0
  217. package/lib/igx-multi-slider-thumb-collection.d.ts +8 -0
  218. package/lib/igx-multi-slider-thumb-value-changing-event-args.d.ts +18 -0
  219. package/lib/igx-multi-slider-thumb.d.ts +33 -0
  220. package/lib/igx-multi-slider-track-thumb-range.d.ts +32 -0
  221. package/lib/igx-multi-slider-y-value-changing-event-args.d.ts +15 -0
  222. package/lib/igx-x-icon-component.d.ts +6 -1
  223. package/package.json +2 -2
  224. package/public_api.d.ts +55 -0
@@ -0,0 +1,38 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ 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.
6
+ */
7
+ import { NgModule } from '@angular/core';
8
+ import { CommonModule } from '@angular/common';
9
+ import { IgxColorEditorComponent } from './igx-color-editor-component';
10
+ import { IgxColorEditorPanelDynamicModule } from './igx-color-editor-panel-dynamic-module';
11
+ import { ColorEditor } from './ColorEditor';
12
+ import { TypeRegistrar } from "igniteui-angular-core";
13
+ import * as i0 from "@angular/core";
14
+ var IgxColorEditorModule = /** @class */ /*@__PURE__*/ (function () {
15
+ function IgxColorEditorModule() {
16
+ TypeRegistrar.registerCons('IgxColorEditorComponent', IgxColorEditorComponent);
17
+ TypeRegistrar.register('ColorEditor', ColorEditor.$type);
18
+ }
19
+ IgxColorEditorModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxColorEditorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
20
+ IgxColorEditorModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxColorEditorModule, declarations: [IgxColorEditorComponent], imports: [CommonModule, IgxColorEditorPanelDynamicModule], exports: [IgxColorEditorComponent,
21
+ IgxColorEditorPanelDynamicModule] });
22
+ IgxColorEditorModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxColorEditorModule, imports: [[CommonModule, IgxColorEditorPanelDynamicModule
23
+ ], IgxColorEditorPanelDynamicModule] });
24
+ return IgxColorEditorModule;
25
+ }());
26
+ export { IgxColorEditorModule };
27
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxColorEditorModule, decorators: [{
28
+ type: NgModule,
29
+ args: [{
30
+ declarations: [IgxColorEditorComponent],
31
+ exports: [IgxColorEditorComponent,
32
+ IgxColorEditorPanelDynamicModule
33
+ ],
34
+ imports: [CommonModule, IgxColorEditorPanelDynamicModule
35
+ ],
36
+ entryComponents: []
37
+ }]
38
+ }], ctorParameters: function () { return []; } });
@@ -0,0 +1,33 @@
1
+ import { ColorEditorPanelClosedEventArgs as ColorEditorPanelClosedEventArgs_internal } from "./ColorEditorPanelClosedEventArgs";
2
+ var IgxColorEditorPanelClosedEventArgs = /** @class */ /*@__PURE__*/ (function () {
3
+ function IgxColorEditorPanelClosedEventArgs() {
4
+ this._implementation = this.createImplementation();
5
+ this._implementation.externalObject = this;
6
+ this.onImplementationCreated();
7
+ if (this._initializeAdapters) {
8
+ this._initializeAdapters();
9
+ }
10
+ }
11
+ IgxColorEditorPanelClosedEventArgs.prototype.createImplementation = function () {
12
+ return new ColorEditorPanelClosedEventArgs_internal();
13
+ };
14
+ Object.defineProperty(IgxColorEditorPanelClosedEventArgs.prototype, "i", {
15
+ /**
16
+ * @hidden
17
+ */
18
+ get: function () {
19
+ return this._implementation;
20
+ },
21
+ enumerable: false,
22
+ configurable: true
23
+ });
24
+ IgxColorEditorPanelClosedEventArgs.prototype.onImplementationCreated = function () {
25
+ };
26
+ IgxColorEditorPanelClosedEventArgs.prototype._provideImplementation = function (i) {
27
+ this._implementation = i;
28
+ this._implementation.externalObject = this;
29
+ this.onImplementationCreated();
30
+ };
31
+ return IgxColorEditorPanelClosedEventArgs;
32
+ }());
33
+ export { IgxColorEditorPanelClosedEventArgs };
@@ -0,0 +1,435 @@
1
+ import { Output, TemplateRef, EventEmitter, Component, ViewContainerRef, ViewChild, Input, ChangeDetectionStrategy } from '@angular/core';
2
+ import { ColorEditorPanel } from "./ColorEditorPanel";
3
+ import { ensureEnum, brushToString, stringToBrush, toSpinal, initializePropertiesFromCss, NamePatcher } from "igniteui-angular-core";
4
+ import { FontInfo } from "igniteui-angular-core";
5
+ import { AngularRenderer, PortalManager } from "igniteui-angular-core";
6
+ import { delegateCombine } from "igniteui-angular-core";
7
+ import { TypeRegistrar } from "igniteui-angular-core";
8
+ import { ControlDisplayDensity_$type } from "igniteui-angular-core";
9
+ import { BaseControlTheme_$type } from "igniteui-angular-core";
10
+ import { IgxColorEditorPanelSelectedValueChangedEventArgs } from "./igx-color-editor-panel-selected-value-changed-event-args";
11
+ import * as i0 from "@angular/core";
12
+ var IgxColorEditorPanelComponent = /** @class */ /*@__PURE__*/ (function () {
13
+ function IgxColorEditorPanelComponent(renderer, _elRef, ngZone, injector, componentFactoryResolver) {
14
+ this.renderer = renderer;
15
+ this._elRef = _elRef;
16
+ this.ngZone = ngZone;
17
+ this.injector = injector;
18
+ this.componentFactoryResolver = componentFactoryResolver;
19
+ this._wrapper = null;
20
+ this._portalManager = null;
21
+ this._root = null;
22
+ this.__p = null;
23
+ this._hasUserValues = new Set();
24
+ this._stylingContainer = null;
25
+ this._stylingParent = null;
26
+ this._inStyling = false;
27
+ this._valueChanged = null;
28
+ this._valueChanging = null;
29
+ this._zoneRunner = null;
30
+ if (this._styling) {
31
+ NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this));
32
+ }
33
+ this._implementation = this.createImplementation();
34
+ this._implementation.externalObject = this;
35
+ if (renderer) {
36
+ this.container = renderer.createElement("div");
37
+ renderer.appendChild(_elRef.element.nativeElement, this.container);
38
+ renderer.setStyle(this.container, "display", "block");
39
+ }
40
+ var root;
41
+ root = this.container;
42
+ if (this.container != null) {
43
+ root = this.container;
44
+ }
45
+ if (root && root.nativeElement) {
46
+ root = root.nativeElement;
47
+ }
48
+ this._root = root;
49
+ var colorEditorPanel = this.i;
50
+ this._colorEditorPanel = colorEditorPanel;
51
+ if (renderer) {
52
+ this._portalManager = new PortalManager("colorEditorPanelContent", componentFactoryResolver);
53
+ var ren = new AngularRenderer(root, this.renderer, window.document, this.ngZone, true, {}, this._portalManager);
54
+ this._wrapper = ren;
55
+ colorEditorPanel.provideContainer(ren);
56
+ }
57
+ }
58
+ // supports angular themes or custom properties set in CSS
59
+ IgxColorEditorPanelComponent.prototype.updateStyle = function () {
60
+ this._styling(this._root, this);
61
+ };
62
+ IgxColorEditorPanelComponent.prototype.ngOnDestroy = function () {
63
+ this._colorEditorPanel.destroy();
64
+ this._wrapper.destroy();
65
+ };
66
+ IgxColorEditorPanelComponent.prototype.ngAfterViewInit = function () {
67
+ this._portalManager.dynamicContent = this._dynamicContent;
68
+ this._portalManager.onChildContentChanged(this._childTemplateRef);
69
+ this._styling(this._root, this);
70
+ this.updateStyle();
71
+ };
72
+ IgxColorEditorPanelComponent.prototype.createImplementation = function () {
73
+ return new ColorEditorPanel();
74
+ };
75
+ Object.defineProperty(IgxColorEditorPanelComponent.prototype, "i", {
76
+ /**
77
+ * @hidden
78
+ */
79
+ get: function () {
80
+ return this._implementation;
81
+ } /**
82
+ * @hidden
83
+ */,
84
+ enumerable: false,
85
+ configurable: true
86
+ });
87
+ IgxColorEditorPanelComponent._createFromInternal = function (internal) {
88
+ if (!internal) {
89
+ return null;
90
+ }
91
+ if (!internal.$type) {
92
+ return null;
93
+ }
94
+ var name = internal.$type.name;
95
+ var externalName = "Igx" + name + "Component";
96
+ if (!TypeRegistrar.isRegistered(externalName)) {
97
+ return null;
98
+ }
99
+ return TypeRegistrar.create(externalName);
100
+ };
101
+ Object.defineProperty(IgxColorEditorPanelComponent.prototype, "value", {
102
+ /**
103
+ * Gets or Sets the value for the color editor panel.
104
+ */
105
+ get: function () {
106
+ return brushToString(this.i.value);
107
+ },
108
+ set: function (v) {
109
+ this.i.value = stringToBrush(v);
110
+ },
111
+ enumerable: false,
112
+ configurable: true
113
+ });
114
+ Object.defineProperty(IgxColorEditorPanelComponent.prototype, "density", {
115
+ /**
116
+ * Gets or sets the display density to use for the ColorEditorPanel.
117
+ */
118
+ get: function () {
119
+ return this.i.h;
120
+ },
121
+ set: function (v) {
122
+ this.i.h = ensureEnum(ControlDisplayDensity_$type, v);
123
+ },
124
+ enumerable: false,
125
+ configurable: true
126
+ });
127
+ Object.defineProperty(IgxColorEditorPanelComponent.prototype, "baseTheme", {
128
+ /**
129
+ * Gets or sets the base built in theme to use for the ColorEditorPanel.
130
+ */
131
+ get: function () {
132
+ return this.i.f;
133
+ },
134
+ set: function (v) {
135
+ this.i.f = ensureEnum(BaseControlTheme_$type, v);
136
+ },
137
+ enumerable: false,
138
+ configurable: true
139
+ });
140
+ Object.defineProperty(IgxColorEditorPanelComponent.prototype, "backgroundColor", {
141
+ /**
142
+ * Gets or Sets the selected color background color
143
+ */
144
+ get: function () {
145
+ return brushToString(this.i.by);
146
+ },
147
+ set: function (v) {
148
+ this.i.by = stringToBrush(v);
149
+ },
150
+ enumerable: false,
151
+ configurable: true
152
+ });
153
+ Object.defineProperty(IgxColorEditorPanelComponent.prototype, "selectedColorBorderColor", {
154
+ /**
155
+ * Gets or Sets the selected color boreder color
156
+ */
157
+ get: function () {
158
+ return brushToString(this.i.b1);
159
+ },
160
+ set: function (v) {
161
+ this.i.b1 = stringToBrush(v);
162
+ },
163
+ enumerable: false,
164
+ configurable: true
165
+ });
166
+ Object.defineProperty(IgxColorEditorPanelComponent.prototype, "selectedFocusDateBackgroundColor", {
167
+ /**
168
+ * Gets or Sets the selected color border color
169
+ */
170
+ get: function () {
171
+ return brushToString(this.i.b2);
172
+ },
173
+ set: function (v) {
174
+ this.i.b2 = stringToBrush(v);
175
+ },
176
+ enumerable: false,
177
+ configurable: true
178
+ });
179
+ Object.defineProperty(IgxColorEditorPanelComponent.prototype, "focusColorBorderColor", {
180
+ /**
181
+ * Gets or Sets the focus color border color
182
+ */
183
+ get: function () {
184
+ return brushToString(this.i.bz);
185
+ },
186
+ set: function (v) {
187
+ this.i.bz = stringToBrush(v);
188
+ },
189
+ enumerable: false,
190
+ configurable: true
191
+ });
192
+ Object.defineProperty(IgxColorEditorPanelComponent.prototype, "hoverBackgroundColor", {
193
+ /**
194
+ * Gets or Sets the focus date background color
195
+ */
196
+ get: function () {
197
+ return brushToString(this.i.b0);
198
+ },
199
+ set: function (v) {
200
+ this.i.b0 = stringToBrush(v);
201
+ },
202
+ enumerable: false,
203
+ configurable: true
204
+ });
205
+ Object.defineProperty(IgxColorEditorPanelComponent.prototype, "textColor", {
206
+ /**
207
+ * Gets or Sets the selected date text color
208
+ */
209
+ get: function () {
210
+ return brushToString(this.i.b3);
211
+ },
212
+ set: function (v) {
213
+ this.i.b3 = stringToBrush(v);
214
+ },
215
+ enumerable: false,
216
+ configurable: true
217
+ });
218
+ Object.defineProperty(IgxColorEditorPanelComponent.prototype, "textStyle", {
219
+ /**
220
+ * Gets or sets the font to use for the combobox.
221
+ */
222
+ get: function () {
223
+ if (this.i.j == null) {
224
+ return null;
225
+ }
226
+ return this.i.j.fontString;
227
+ },
228
+ set: function (v) {
229
+ var fi = new FontInfo();
230
+ fi.fontString = v;
231
+ this.i.j = fi;
232
+ },
233
+ enumerable: false,
234
+ configurable: true
235
+ });
236
+ Object.defineProperty(IgxColorEditorPanelComponent.prototype, "pixelScalingRatio", {
237
+ /**
238
+ * Gets or sets the scaling value used to affect the pixel density of the control.
239
+ * A higher scaling ratio will produce crisper visuals at the expense of memory. Lower values will cause the control
240
+ * to appear blurry.
241
+ */
242
+ get: function () {
243
+ return this.i.ae;
244
+ },
245
+ set: function (v) {
246
+ this.i.ae = +v;
247
+ },
248
+ enumerable: false,
249
+ configurable: true
250
+ });
251
+ Object.defineProperty(IgxColorEditorPanelComponent.prototype, "actualPixelScalingRatio", {
252
+ get: function () {
253
+ return this.i.ab;
254
+ },
255
+ set: function (v) {
256
+ this.i.ab = +v;
257
+ },
258
+ enumerable: false,
259
+ configurable: true
260
+ });
261
+ IgxColorEditorPanelComponent.prototype.findByName = function (name) {
262
+ if (this.findEphemera) {
263
+ if (name && name.indexOf("@@e:") == 0) {
264
+ return this.findEphemera(name);
265
+ }
266
+ }
267
+ return null;
268
+ };
269
+ Object.defineProperty(IgxColorEditorPanelComponent.prototype, "hasUserValues", {
270
+ get: function () {
271
+ return this._hasUserValues;
272
+ },
273
+ enumerable: false,
274
+ configurable: true
275
+ });
276
+ IgxColorEditorPanelComponent.prototype.__m = function (propertyName) {
277
+ if (!this._inStyling) {
278
+ this._hasUserValues.add(propertyName);
279
+ }
280
+ };
281
+ IgxColorEditorPanelComponent.prototype._styling = function (container, component, parent) {
282
+ if (this._inStyling) {
283
+ return;
284
+ }
285
+ this._inStyling = true;
286
+ this._stylingContainer = container;
287
+ this._stylingParent = component;
288
+ var genericPrefix = "";
289
+ var typeName = this.i.$type.name;
290
+ if (typeName.indexOf("Xam") === 0) {
291
+ typeName = typeName.substring(3);
292
+ }
293
+ genericPrefix = toSpinal("ColorEditorPanelComponent");
294
+ var additionalPrefixes = [];
295
+ var prefix = toSpinal(typeName);
296
+ additionalPrefixes.push(prefix + "-");
297
+ var b = this.i.$type.baseType;
298
+ while (b && b.name != "Object" &&
299
+ b.name != "Base" &&
300
+ b.name != "Control" &&
301
+ b.Name != "DependencyObject" &&
302
+ b.Name != "FrameworkElement") {
303
+ typeName = b.name;
304
+ if (typeName.indexOf("Xam") === 0) {
305
+ typeName = typeName.substring(3);
306
+ }
307
+ var basePrefix = toSpinal(typeName);
308
+ additionalPrefixes.push(basePrefix + "-");
309
+ b = b.baseType;
310
+ }
311
+ if (parent) {
312
+ var parentTypeName = parent.i.$type.name;
313
+ if (parentTypeName.indexOf("Xam") === 0) {
314
+ parentTypeName = parentTypeName.substring(3);
315
+ }
316
+ var parentPrefix = toSpinal(parentTypeName);
317
+ additionalPrefixes.push(parentPrefix + "-" + genericPrefix + "-");
318
+ additionalPrefixes.push(parentPrefix + "-" + prefix + "-");
319
+ }
320
+ initializePropertiesFromCss(container, this, genericPrefix + "-", this.hasUserValues, false, additionalPrefixes);
321
+ if (this._otherStyling) {
322
+ this._otherStyling(container, component, parent);
323
+ }
324
+ this._inStyling = false;
325
+ };
326
+ Object.defineProperty(IgxColorEditorPanelComponent.prototype, "valueChanged", {
327
+ /**
328
+ * Called when date is selected.
329
+ */
330
+ get: function () {
331
+ var _this = this;
332
+ if (this._valueChanged == null) {
333
+ this._valueChanged = new EventEmitter();
334
+ this.i.valueChanged = delegateCombine(this.i.valueChanged, function (o, e) {
335
+ _this._runInZone(function () {
336
+ var outerArgs = new IgxColorEditorPanelSelectedValueChangedEventArgs();
337
+ outerArgs._provideImplementation(e);
338
+ if (_this.beforeValueChanged) {
339
+ _this.beforeValueChanged(_this, outerArgs);
340
+ }
341
+ _this._valueChanged.emit({
342
+ sender: _this,
343
+ args: outerArgs
344
+ });
345
+ });
346
+ });
347
+ }
348
+ return this._valueChanged;
349
+ },
350
+ enumerable: false,
351
+ configurable: true
352
+ });
353
+ Object.defineProperty(IgxColorEditorPanelComponent.prototype, "valueChanging", {
354
+ /**
355
+ * Called when date is selected.
356
+ */
357
+ get: function () {
358
+ var _this = this;
359
+ if (this._valueChanging == null) {
360
+ this._valueChanging = new EventEmitter();
361
+ this.i.valueChanging = delegateCombine(this.i.valueChanging, function (o, e) {
362
+ var outerArgs = new IgxColorEditorPanelSelectedValueChangedEventArgs();
363
+ outerArgs._provideImplementation(e);
364
+ if (_this.beforeValueChanging) {
365
+ _this.beforeValueChanging(_this, outerArgs);
366
+ }
367
+ _this._valueChanging.emit({
368
+ sender: _this,
369
+ args: outerArgs
370
+ });
371
+ });
372
+ }
373
+ return this._valueChanging;
374
+ },
375
+ enumerable: false,
376
+ configurable: true
377
+ });
378
+ IgxColorEditorPanelComponent.prototype._runInZone = function (act) {
379
+ if (this._zoneRunner != null) {
380
+ this._zoneRunner(act);
381
+ }
382
+ else {
383
+ act();
384
+ }
385
+ };
386
+ IgxColorEditorPanelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxColorEditorPanelComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.NgZone }, { token: i0.Injector }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.Component });
387
+ IgxColorEditorPanelComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: IgxColorEditorPanelComponent, selector: "igx-color-editor-panel", inputs: { value: "value", density: "density", baseTheme: "baseTheme", backgroundColor: "backgroundColor", selectedColorBorderColor: "selectedColorBorderColor", selectedFocusDateBackgroundColor: "selectedFocusDateBackgroundColor", focusColorBorderColor: "focusColorBorderColor", hoverBackgroundColor: "hoverBackgroundColor", textColor: "textColor", textStyle: "textStyle", pixelScalingRatio: "pixelScalingRatio", actualPixelScalingRatio: "actualPixelScalingRatio" }, outputs: { valueChanged: "valueChanged", valueChanging: "valueChanging" }, host: { classAttribute: "ig-color-editor-panel igx-color-editor-panel" }, providers: [], viewQueries: [{ propertyName: "_dynamicContent", first: true, predicate: ["dynamicContent"], descendants: true, read: ViewContainerRef, static: true }, { propertyName: "_childTemplateRef", first: true, predicate: ["childContent"], descendants: true, read: TemplateRef }], ngImport: i0, template: "<ng-template #childContent><ng-content></ng-content></ng-template>\n<ng-container #dynamicContent></ng-container>", isInline: true, styles: ["\n\t\t:host {\n\t\t\tdisplay: block; \n\t\t}\n\t"], changeDetection: i0.ChangeDetectionStrategy.OnPush });
388
+ return IgxColorEditorPanelComponent;
389
+ }());
390
+ export { IgxColorEditorPanelComponent };
391
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxColorEditorPanelComponent, decorators: [{
392
+ type: Component,
393
+ args: [{
394
+ selector: 'igx-color-editor-panel',
395
+ template: "<ng-template #childContent><ng-content></ng-content></ng-template>\n<ng-container #dynamicContent></ng-container>",
396
+ changeDetection: ChangeDetectionStrategy.OnPush,
397
+ providers: [],
398
+ host: { 'class': 'ig-color-editor-panel igx-color-editor-panel' },
399
+ styles: ["\n\t\t:host {\n\t\t\tdisplay: block; \n\t\t}\n\t"]
400
+ }]
401
+ }], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: i0.ViewContainerRef }, { type: i0.NgZone }, { type: i0.Injector }, { type: i0.ComponentFactoryResolver }]; }, propDecorators: { _dynamicContent: [{
402
+ type: ViewChild,
403
+ args: ["dynamicContent", { read: ViewContainerRef, static: true }]
404
+ }], _childTemplateRef: [{
405
+ type: ViewChild,
406
+ args: ["childContent", { read: TemplateRef, static: false }]
407
+ }], value: [{
408
+ type: Input
409
+ }], density: [{
410
+ type: Input
411
+ }], baseTheme: [{
412
+ type: Input
413
+ }], backgroundColor: [{
414
+ type: Input
415
+ }], selectedColorBorderColor: [{
416
+ type: Input
417
+ }], selectedFocusDateBackgroundColor: [{
418
+ type: Input
419
+ }], focusColorBorderColor: [{
420
+ type: Input
421
+ }], hoverBackgroundColor: [{
422
+ type: Input
423
+ }], textColor: [{
424
+ type: Input
425
+ }], textStyle: [{
426
+ type: Input
427
+ }], pixelScalingRatio: [{
428
+ type: Input
429
+ }], actualPixelScalingRatio: [{
430
+ type: Input
431
+ }], valueChanged: [{
432
+ type: Output
433
+ }], valueChanging: [{
434
+ type: Output
435
+ }] } });
@@ -0,0 +1,65 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ 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.
6
+ */
7
+ import { NgModule } from '@angular/core';
8
+ import { CommonModule } from '@angular/common';
9
+ import { IgxColorEditorPanelComponent } from './igx-color-editor-panel-component';
10
+ import { IgxMultiSliderDynamicModule } from './igx-multi-slider-dynamic-module';
11
+ import { IgxXButtonDynamicModule } from './igx-x-button-dynamic-module';
12
+ import { IgxXInputGroupDynamicModule } from './igx-x-input-group-dynamic-module';
13
+ import { IgxXInputDynamicModule } from './igx-x-input-dynamic-module';
14
+ import { ColorEditorPanel } from './ColorEditorPanel';
15
+ import { TypeRegistrar } from "igniteui-angular-core";
16
+ import { IgxColorEditorPanelModule } from './igx-color-editor-panel-module';
17
+ import * as i0 from "@angular/core";
18
+ var IgxColorEditorPanelDynamicModule = /** @class */ /*@__PURE__*/ (function () {
19
+ function IgxColorEditorPanelDynamicModule() {
20
+ TypeRegistrar.registerCons('ColorEditorPanel', ColorEditorPanel);
21
+ TypeRegistrar.registerCons('IgxColorEditorPanelComponent', IgxColorEditorPanelComponent);
22
+ TypeRegistrar.register('ColorEditorPanel', ColorEditorPanel.$type);
23
+ }
24
+ IgxColorEditorPanelDynamicModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxColorEditorPanelDynamicModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
25
+ IgxColorEditorPanelDynamicModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxColorEditorPanelDynamicModule, imports: [CommonModule, IgxMultiSliderDynamicModule,
26
+ IgxXButtonDynamicModule,
27
+ IgxXInputGroupDynamicModule,
28
+ IgxXInputDynamicModule,
29
+ IgxColorEditorPanelModule], exports: [IgxMultiSliderDynamicModule,
30
+ IgxXButtonDynamicModule,
31
+ IgxXInputGroupDynamicModule,
32
+ IgxXInputDynamicModule,
33
+ IgxColorEditorPanelModule] });
34
+ IgxColorEditorPanelDynamicModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxColorEditorPanelDynamicModule, imports: [[CommonModule, IgxMultiSliderDynamicModule,
35
+ IgxXButtonDynamicModule,
36
+ IgxXInputGroupDynamicModule,
37
+ IgxXInputDynamicModule,
38
+ IgxColorEditorPanelModule
39
+ ], IgxMultiSliderDynamicModule,
40
+ IgxXButtonDynamicModule,
41
+ IgxXInputGroupDynamicModule,
42
+ IgxXInputDynamicModule,
43
+ IgxColorEditorPanelModule] });
44
+ return IgxColorEditorPanelDynamicModule;
45
+ }());
46
+ export { IgxColorEditorPanelDynamicModule };
47
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxColorEditorPanelDynamicModule, decorators: [{
48
+ type: NgModule,
49
+ args: [{
50
+ declarations: [],
51
+ exports: [IgxMultiSliderDynamicModule,
52
+ IgxXButtonDynamicModule,
53
+ IgxXInputGroupDynamicModule,
54
+ IgxXInputDynamicModule,
55
+ IgxColorEditorPanelModule
56
+ ],
57
+ imports: [CommonModule, IgxMultiSliderDynamicModule,
58
+ IgxXButtonDynamicModule,
59
+ IgxXInputGroupDynamicModule,
60
+ IgxXInputDynamicModule,
61
+ IgxColorEditorPanelModule
62
+ ],
63
+ entryComponents: [IgxColorEditorPanelComponent]
64
+ }]
65
+ }], ctorParameters: function () { return []; } });
@@ -0,0 +1,59 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ 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.
6
+ */
7
+ import { NgModule } from '@angular/core';
8
+ import { CommonModule } from '@angular/common';
9
+ import { IgxColorEditorPanelComponent } from './igx-color-editor-panel-component';
10
+ import { IgxMultiSliderDynamicModule } from './igx-multi-slider-dynamic-module';
11
+ import { IgxXButtonDynamicModule } from './igx-x-button-dynamic-module';
12
+ import { IgxXInputGroupDynamicModule } from './igx-x-input-group-dynamic-module';
13
+ import { IgxXInputDynamicModule } from './igx-x-input-dynamic-module';
14
+ import { ColorEditorPanel } from './ColorEditorPanel';
15
+ import { TypeRegistrar } from "igniteui-angular-core";
16
+ import * as i0 from "@angular/core";
17
+ var IgxColorEditorPanelModule = /** @class */ /*@__PURE__*/ (function () {
18
+ function IgxColorEditorPanelModule() {
19
+ TypeRegistrar.registerCons('IgxColorEditorPanelComponent', IgxColorEditorPanelComponent);
20
+ TypeRegistrar.register('ColorEditorPanel', ColorEditorPanel.$type);
21
+ }
22
+ IgxColorEditorPanelModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxColorEditorPanelModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
23
+ IgxColorEditorPanelModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxColorEditorPanelModule, declarations: [IgxColorEditorPanelComponent], imports: [CommonModule, IgxMultiSliderDynamicModule,
24
+ IgxXButtonDynamicModule,
25
+ IgxXInputGroupDynamicModule,
26
+ IgxXInputDynamicModule], exports: [IgxColorEditorPanelComponent,
27
+ IgxMultiSliderDynamicModule,
28
+ IgxXButtonDynamicModule,
29
+ IgxXInputGroupDynamicModule,
30
+ IgxXInputDynamicModule] });
31
+ IgxColorEditorPanelModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxColorEditorPanelModule, imports: [[CommonModule, IgxMultiSliderDynamicModule,
32
+ IgxXButtonDynamicModule,
33
+ IgxXInputGroupDynamicModule,
34
+ IgxXInputDynamicModule
35
+ ], IgxMultiSliderDynamicModule,
36
+ IgxXButtonDynamicModule,
37
+ IgxXInputGroupDynamicModule,
38
+ IgxXInputDynamicModule] });
39
+ return IgxColorEditorPanelModule;
40
+ }());
41
+ export { IgxColorEditorPanelModule };
42
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxColorEditorPanelModule, decorators: [{
43
+ type: NgModule,
44
+ args: [{
45
+ declarations: [IgxColorEditorPanelComponent],
46
+ exports: [IgxColorEditorPanelComponent,
47
+ IgxMultiSliderDynamicModule,
48
+ IgxXButtonDynamicModule,
49
+ IgxXInputGroupDynamicModule,
50
+ IgxXInputDynamicModule
51
+ ],
52
+ imports: [CommonModule, IgxMultiSliderDynamicModule,
53
+ IgxXButtonDynamicModule,
54
+ IgxXInputGroupDynamicModule,
55
+ IgxXInputDynamicModule
56
+ ],
57
+ entryComponents: []
58
+ }]
59
+ }], ctorParameters: function () { return []; } });