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

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,393 @@
1
+ import { Base, Type, INotifyPropertyChanged, PropertyChangedEventArgs } from "igniteui-angular-core";
2
+ import { INativeUIElementFactory } from "igniteui-angular-core";
3
+ import { NativeUIElementFactoryFlavor } from "igniteui-angular-core";
4
+ import { NativeUIComponent } from "igniteui-angular-core";
5
+ import { NativeUIComponentBuiltInType } from "igniteui-angular-core";
6
+ import { DomRenderer } from "igniteui-angular-core";
7
+ import { XComponentBridge } from "./XComponentBridge";
8
+ import { NativeUIBuiltInEvents } from "igniteui-angular-core";
9
+ import { ColorEditorPanelSelectedValueChangedEventArgs } from "./ColorEditorPanelSelectedValueChangedEventArgs";
10
+ import { NativeUIBuiltInProperties } from "igniteui-angular-core";
11
+ import { Brush } from "igniteui-angular-core";
12
+ import { Size } from "igniteui-angular-core";
13
+ import { NativeUIGrid } from "igniteui-angular-core";
14
+ import { NativeUIContent } from "igniteui-angular-core";
15
+ import { FontInfo } from "igniteui-angular-core";
16
+ import { Rect } from "igniteui-angular-core";
17
+ import { IExecutionContext } from "igniteui-angular-core";
18
+ import { ControlDisplayDensity } from "igniteui-angular-core";
19
+ import { BaseControlTheme } from "igniteui-angular-core";
20
+ import { ColorEditorPanelClosedEventArgs } from "./ColorEditorPanelClosedEventArgs";
21
+ import { ColorEditorGotFocusEventArgs } from "./ColorEditorGotFocusEventArgs";
22
+ import { ColorEditorLostFocusEventArgs } from "./ColorEditorLostFocusEventArgs";
23
+ import { Color } from "igniteui-angular-core";
24
+ /**
25
+ * @hidden
26
+ */
27
+ export declare class NativeUIXInputsFactory extends Base implements INativeUIElementFactory {
28
+ static $t: Type;
29
+ private static a;
30
+ static get b(): NativeUIXInputsFactory;
31
+ static m(): void;
32
+ private c;
33
+ get flavor(): NativeUIElementFactoryFlavor;
34
+ createComponent(a: any, b: NativeUIComponentBuiltInType, c: (arg1: any) => void): void;
35
+ createComponentSync(a: any, b: NativeUIComponentBuiltInType, c: (arg1: any) => void): void;
36
+ supportsComponent(a: NativeUIComponentBuiltInType): boolean;
37
+ private j;
38
+ private d;
39
+ private l;
40
+ private e;
41
+ private g;
42
+ private f;
43
+ private i;
44
+ private h;
45
+ private k;
46
+ }
47
+ /**
48
+ * @hidden
49
+ */
50
+ export declare class ColorEditorBridge extends XComponentBridge {
51
+ static $t: Type;
52
+ constructor(a: any);
53
+ private u;
54
+ private w;
55
+ private v;
56
+ private x;
57
+ addHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
58
+ private y;
59
+ private z;
60
+ getValue(a: any, b: NativeUIBuiltInProperties): any;
61
+ removeHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
62
+ setValue(a: any, b: NativeUIBuiltInProperties, c: any): void;
63
+ }
64
+ /**
65
+ * @hidden
66
+ */
67
+ export declare class ColorEditorPanelView extends Base {
68
+ static $t: Type;
69
+ constructor();
70
+ a: ColorEditorPanel;
71
+ bj(): void;
72
+ f(): boolean;
73
+ aa: DomRenderer;
74
+ private c;
75
+ private g;
76
+ bh(a: DomRenderer): void;
77
+ bd(): void;
78
+ private d;
79
+ private af;
80
+ private o;
81
+ private n;
82
+ private ab;
83
+ private b;
84
+ private ac;
85
+ private a1;
86
+ private ag;
87
+ private ae;
88
+ bg(): void;
89
+ bi(): void;
90
+ a7(): any;
91
+ bf(a: Size): void;
92
+ a8(a: NativeUIGrid): void;
93
+ private be;
94
+ private m;
95
+ private l;
96
+ private au;
97
+ private at;
98
+ ba(a: NativeUIContent): void;
99
+ private a3;
100
+ private k;
101
+ bm(a: number): void;
102
+ private j;
103
+ private h;
104
+ a9(a: NativeUIContent): void;
105
+ private i;
106
+ private a2;
107
+ private bl;
108
+ private t;
109
+ private p;
110
+ private aw;
111
+ private av;
112
+ bb(a: NativeUIGrid): void;
113
+ private z;
114
+ private v;
115
+ private a0;
116
+ private az;
117
+ bc(a: NativeUIContent): void;
118
+ private u;
119
+ private a6;
120
+ private ai;
121
+ private w;
122
+ private s;
123
+ private r;
124
+ private ay;
125
+ private ax;
126
+ bn(a: number): void;
127
+ private a5;
128
+ private y;
129
+ private x;
130
+ private ad;
131
+ private ak;
132
+ private ao;
133
+ private as;
134
+ private ar;
135
+ private aj;
136
+ private an;
137
+ private ah;
138
+ private al;
139
+ private ap;
140
+ private am;
141
+ private aq;
142
+ private a4;
143
+ private q;
144
+ bo(a: number, b: number, c: number): void;
145
+ private e;
146
+ bk(): void;
147
+ }
148
+ /**
149
+ * @hidden
150
+ */
151
+ export declare class ColorEditorView extends Base {
152
+ static $t: Type;
153
+ constructor();
154
+ a: ColorEditor;
155
+ q(): void;
156
+ f(): boolean;
157
+ h: DomRenderer;
158
+ private d;
159
+ private g;
160
+ o(a: DomRenderer): void;
161
+ m(): void;
162
+ private e;
163
+ n(): void;
164
+ p(): void;
165
+ j(): any;
166
+ private b;
167
+ i(): any;
168
+ k(a: NativeUIContent, b: any): void;
169
+ l(a: NativeUIComponent): void;
170
+ c(a: any): ColorEditorPanel;
171
+ r(a: boolean): Rect;
172
+ s(): Size;
173
+ }
174
+ /**
175
+ * @hidden
176
+ */
177
+ export declare class ColorEditor extends Base implements INotifyPropertyChanged {
178
+ static $t: Type;
179
+ g: ColorEditorView;
180
+ private static readonly a5;
181
+ private r;
182
+ private q;
183
+ private d;
184
+ private v;
185
+ private af;
186
+ private ad;
187
+ private cj;
188
+ private w;
189
+ propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
190
+ constructor();
191
+ onAttachedToUI(): void;
192
+ onDetachedFromUI(): void;
193
+ valueChanged: (sender: any, args: ColorEditorPanelSelectedValueChangedEventArgs) => void;
194
+ valueChanging: (sender: any, args: ColorEditorPanelSelectedValueChangedEventArgs) => void;
195
+ b1(a: Brush, b: Brush): void;
196
+ notifySizeChanged(): void;
197
+ destroy(): void;
198
+ provideContainer(a: DomRenderer): void;
199
+ private s;
200
+ private get t();
201
+ a: IExecutionContext;
202
+ private cl;
203
+ get value(): Brush;
204
+ set value(a: Brush);
205
+ private ar;
206
+ get az(): string;
207
+ set az(a: string);
208
+ private ci;
209
+ get cn(): Brush;
210
+ set cn(a: Brush);
211
+ private static n;
212
+ private l;
213
+ get o(): FontInfo;
214
+ set o(a: FontInfo);
215
+ private j;
216
+ get k(): ControlDisplayDensity;
217
+ set k(a: ControlDisplayDensity);
218
+ private h;
219
+ get i(): BaseControlTheme;
220
+ set i(a: BaseControlTheme);
221
+ private m;
222
+ get p(): FontInfo;
223
+ set p(a: FontInfo);
224
+ private ck;
225
+ get co(): Brush;
226
+ set co(a: Brush);
227
+ private ch;
228
+ get cm(): Brush;
229
+ set cm(a: Brush);
230
+ private ac;
231
+ get am(): boolean;
232
+ set am(a: boolean);
233
+ private u;
234
+ get ag(): boolean;
235
+ set ag(a: boolean);
236
+ private ab;
237
+ get ak(): boolean;
238
+ set ak(a: boolean);
239
+ private x;
240
+ get ah(): boolean;
241
+ set ah(a: boolean);
242
+ private ap;
243
+ get aq(): number;
244
+ set aq(a: number);
245
+ private y;
246
+ get ai(): boolean;
247
+ set ai(a: boolean);
248
+ private aa;
249
+ get aj(): boolean;
250
+ set aj(a: boolean);
251
+ private ae;
252
+ get an(): boolean;
253
+ set an(a: boolean);
254
+ protected b0(a: string, b: any, c: any): void;
255
+ protected b6(a: string, b: any, c: any): void;
256
+ private al;
257
+ private cg;
258
+ private ce;
259
+ private cf;
260
+ be(): void;
261
+ private z;
262
+ by(): void;
263
+ bz(): void;
264
+ bo(): void;
265
+ bs(): void;
266
+ private b3;
267
+ private b4;
268
+ bg(): void;
269
+ private bd;
270
+ private bc;
271
+ private bx;
272
+ private bv;
273
+ private cc;
274
+ private bj;
275
+ private b2;
276
+ private bi;
277
+ cd(): void;
278
+ b5(): void;
279
+ private cb;
280
+ bf(): void;
281
+ focus(a?: boolean): void;
282
+ bm(): void;
283
+ b8(): void;
284
+ bl(): void;
285
+ bq(): void;
286
+ br(): void;
287
+ private ca;
288
+ private b9;
289
+ gotFocus: (sender: any, args: ColorEditorGotFocusEventArgs) => void;
290
+ lostFocus: (sender: any, args: ColorEditorLostFocusEventArgs) => void;
291
+ bu(a: ColorEditorGotFocusEventArgs): void;
292
+ bw(a: ColorEditorLostFocusEventArgs): void;
293
+ }
294
+ /**
295
+ * @hidden
296
+ */
297
+ export declare class ColorEditorPanel extends Base implements INotifyPropertyChanged {
298
+ static $t: Type;
299
+ d: ColorEditorPanelView;
300
+ private static readonly ag;
301
+ private static readonly ah;
302
+ bv: Brush;
303
+ private bo;
304
+ private bs;
305
+ propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
306
+ constructor();
307
+ closed: (sender: any, args: ColorEditorPanelClosedEventArgs) => void;
308
+ a8(): void;
309
+ valueChanged: (sender: any, args: ColorEditorPanelSelectedValueChangedEventArgs) => void;
310
+ valueChanging: (sender: any, args: ColorEditorPanelSelectedValueChangedEventArgs) => void;
311
+ bc(a: Brush): void;
312
+ notifySizeChanged(a: Size): void;
313
+ destroy(): void;
314
+ provideContainer(a: DomRenderer): void;
315
+ private v;
316
+ private get w();
317
+ private bx;
318
+ get value(): Brush;
319
+ set value(a: Brush);
320
+ private g;
321
+ get h(): ControlDisplayDensity;
322
+ set h(a: ControlDisplayDensity);
323
+ private e;
324
+ get f(): BaseControlTheme;
325
+ set f(a: BaseControlTheme);
326
+ private bp;
327
+ get by(): Brush;
328
+ set by(a: Brush);
329
+ private bt;
330
+ get b1(): Brush;
331
+ set b1(a: Brush);
332
+ private bu;
333
+ get b2(): Brush;
334
+ set b2(a: Brush);
335
+ private bq;
336
+ get bz(): Brush;
337
+ set bz(a: Brush);
338
+ private br;
339
+ get b0(): Brush;
340
+ set b0(a: Brush);
341
+ private bw;
342
+ get b3(): Brush;
343
+ set b3(a: Brush);
344
+ private i;
345
+ private n;
346
+ private s;
347
+ private u;
348
+ private m;
349
+ private t;
350
+ private o;
351
+ private r;
352
+ private q;
353
+ private l;
354
+ private k;
355
+ private p;
356
+ get j(): FontInfo;
357
+ set j(a: FontInfo);
358
+ private aa;
359
+ get ae(): number;
360
+ set ae(a: number);
361
+ private z;
362
+ get ab(): number;
363
+ set ab(a: number);
364
+ protected bb(a: string, b: any, c: any): void;
365
+ protected bd(a: string, b: any, c: any): void;
366
+ a4(): void;
367
+ private bh;
368
+ private a6;
369
+ private av;
370
+ private aw;
371
+ private y;
372
+ private bn;
373
+ private au;
374
+ private bk;
375
+ private bl;
376
+ a3(): void;
377
+ onAttachedToUI(): void;
378
+ onDetachedFromUI(): void;
379
+ private bj;
380
+ private bi;
381
+ ax(): void;
382
+ get b5(): Color;
383
+ private bf;
384
+ private bm;
385
+ bg(): void;
386
+ private x;
387
+ ba(): void;
388
+ a0(a: number[], b: number, c: number): void;
389
+ az(a: number[], b: number, c: number): void;
390
+ ad(): number;
391
+ a1(a: number[], b: number, c: number): void;
392
+ a2(a: number[], b: number, c: number): void;
393
+ }
@@ -0,0 +1,29 @@
1
+ import { XComponentBridge } from "./XComponentBridge";
2
+ import { INativeUIButtonGroupBridge } from "igniteui-angular-core";
3
+ import { Type } from "igniteui-angular-core";
4
+ import { NativeUIButton } from "igniteui-angular-core";
5
+ import { NativeUIComponent } from "igniteui-angular-core";
6
+ import { NativeUIBuiltInEvents } from "igniteui-angular-core";
7
+ import { NativeUIBuiltInProperties } from "igniteui-angular-core";
8
+ /**
9
+ * @hidden
10
+ */
11
+ export declare class XButtonGroupBridge extends XComponentBridge implements INativeUIButtonGroupBridge {
12
+ static $t: Type;
13
+ private u;
14
+ private w;
15
+ constructor(a: any);
16
+ addHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
17
+ removeHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
18
+ private x;
19
+ getValue(a: any, b: NativeUIBuiltInProperties): any;
20
+ setValue(a: any, b: NativeUIBuiltInProperties, c: any): void;
21
+ exportVisualData(a: any): any;
22
+ private v;
23
+ addButton(a: any, b: NativeUIButton): void;
24
+ updateButton(a: any, b: number, c: NativeUIButton): void;
25
+ insertButton(a: any, b: number, c: NativeUIButton): void;
26
+ removeButton(a: any, b: number): void;
27
+ getButtonAt(a: any, b: number): NativeUIButton;
28
+ clearSelection(a: any): void;
29
+ }
@@ -10,20 +10,44 @@ import { UIElementPropertyId } from "igniteui-angular-core";
10
10
  */
11
11
  export declare class XInputBridge extends XComponentBridge implements INativeUIInputBridge {
12
12
  static $t: Type;
13
- private v;
14
- private u;
13
+ private ab;
14
+ private aa;
15
+ private ag;
16
+ private af;
15
17
  private x;
16
- private w;
18
+ private am;
19
+ private y;
20
+ private z;
21
+ private ai;
22
+ private ak;
23
+ private ac;
24
+ private ah;
25
+ private ad;
26
+ private aj;
27
+ private ae;
28
+ private al;
17
29
  constructor(a: any);
18
30
  addHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
31
+ private at;
32
+ private ar;
33
+ private ap;
34
+ private as;
35
+ private aq;
36
+ private aw;
19
37
  removeHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
20
- private z;
21
- private y;
38
+ private av;
39
+ private au;
40
+ private v;
41
+ private an;
42
+ private w;
43
+ private u;
44
+ private ao;
22
45
  getValue(a: any, b: NativeUIBuiltInProperties): any;
23
46
  setValue(a: any, b: NativeUIBuiltInProperties, c: any): void;
24
47
  getTargetForProperty(a: UIElementPropertyId, b: any): any;
25
48
  focus(a: any): void;
26
49
  select(a: any): void;
50
+ resetIsExpanded(a: any): void;
27
51
  setSelectionRange(a: any, b: number, c: number): void;
28
52
  exportVisualData(a: any): any;
29
53
  }
@@ -12,28 +12,31 @@ import { NativeUIPopupAlignment } from "igniteui-angular-core";
12
12
  */
13
13
  export declare class XPopupBridge extends XComponentBridge implements INativeUIPopupBridge {
14
14
  static $t: Type;
15
+ private ak;
16
+ private af;
15
17
  private ai;
16
- private ad;
18
+ private aj;
17
19
  private ag;
18
20
  private ah;
19
- private ae;
20
- private af;
21
+ private ad;
21
22
  private ab;
23
+ private z;
22
24
  private aa;
25
+ private x;
23
26
  private y;
24
- private z;
27
+ private ac;
25
28
  private w;
26
- private x;
27
29
  constructor(a: any);
28
30
  contains(a: any, b: any): boolean;
29
31
  addHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
32
+ private ar;
30
33
  removeHandler(a: any, b: NativeUIComponent, c: NativeUIBuiltInEvents, d: any): void;
34
+ private aq;
35
+ private al;
31
36
  private ao;
32
- private aj;
37
+ private ap;
33
38
  private am;
34
39
  private an;
35
- private ak;
36
- private al;
37
40
  getValue(a: any, b: NativeUIBuiltInProperties): any;
38
41
  setValue(a: any, b: NativeUIBuiltInProperties, c: any): void;
39
42
  showRelativeToExclusionRect(a: any, b: Rect, c: NativeUIPopupDirection, d: NativeUIPopupAlignment): void;
@@ -43,7 +46,7 @@ export declare class XPopupBridge extends XComponentBridge implements INativeUIP
43
46
  private v;
44
47
  private u;
45
48
  exportVisualData(a: any): any;
46
- private ac;
49
+ private ae;
47
50
  addChild(a: any, b: NativeUIComponent): void;
48
51
  insertChild(a: any, b: number, c: NativeUIComponent): void;
49
52
  getChildAt(a: any, b: number): NativeUIComponent;
@@ -0,0 +1,161 @@
1
+ import { TemplateRef, EventEmitter, ViewContainerRef, Injector, ComponentFactoryResolver, AfterViewInit, Renderer2, NgZone } from '@angular/core';
2
+ import { ColorEditor } from "./ColorEditor";
3
+ import { ControlDisplayDensity } from "igniteui-angular-core";
4
+ import { BaseControlTheme } from "igniteui-angular-core";
5
+ import { IgxColorEditorPanelSelectedValueChangedEventArgs } from "./igx-color-editor-panel-selected-value-changed-event-args";
6
+ import { IgxColorEditorLostFocusEventArgs } from "./igx-color-editor-lost-focus-event-args";
7
+ import { IgxColorEditorGotFocusEventArgs } from "./igx-color-editor-got-focus-event-args";
8
+ import * as i0 from "@angular/core";
9
+ export declare class IgxColorEditorComponent implements AfterViewInit {
10
+ private renderer;
11
+ private _elRef;
12
+ private ngZone;
13
+ private injector;
14
+ private componentFactoryResolver;
15
+ container: Element;
16
+ private _wrapper;
17
+ private _portalManager;
18
+ private _root;
19
+ _dynamicContent: ViewContainerRef;
20
+ _childTemplateRef: TemplateRef<any>;
21
+ constructor(renderer: Renderer2, _elRef: ViewContainerRef, ngZone: NgZone, injector: Injector, componentFactoryResolver: ComponentFactoryResolver);
22
+ updateStyle(): void;
23
+ ngOnDestroy(): void;
24
+ ngAfterViewInit(): void;
25
+ protected createImplementation(): ColorEditor;
26
+ protected _implementation: any;
27
+ /**
28
+ * @hidden
29
+ */
30
+ get i(): ColorEditor; /**
31
+ * @hidden
32
+ */
33
+ static _createFromInternal(internal: any): IgxColorEditorComponent;
34
+ private _colorEditor;
35
+ /**
36
+ * Gets or Sets color value of the editor.
37
+ */
38
+ get value(): string;
39
+ set value(v: string);
40
+ /**
41
+ * Gets or Sets the property name that contains the label.
42
+ */
43
+ get label(): string;
44
+ set label(v: string);
45
+ /**
46
+ * Gets or sets the color to use for the text.
47
+ */
48
+ get labelTextColor(): string;
49
+ set labelTextColor(v: string);
50
+ /**
51
+ * Gets or sets the font to use for the input.
52
+ */
53
+ get labelTextStyle(): string;
54
+ set labelTextStyle(v: string);
55
+ /**
56
+ * Gets or sets the display density to use for the date pcicker.
57
+ */
58
+ get density(): ControlDisplayDensity;
59
+ set density(v: ControlDisplayDensity);
60
+ static ngAcceptInputType_density: ControlDisplayDensity | string;
61
+ /**
62
+ * Gets or sets the base built in theme to use for the date picker.
63
+ */
64
+ get baseTheme(): BaseControlTheme;
65
+ set baseTheme(v: BaseControlTheme);
66
+ static ngAcceptInputType_baseTheme: BaseControlTheme | string;
67
+ /**
68
+ * Gets or sets the font to use for the combobox.
69
+ */
70
+ get textStyle(): string;
71
+ set textStyle(v: string);
72
+ /**
73
+ * Gets or Sets the text color
74
+ */
75
+ get textColor(): string;
76
+ set textColor(v: string);
77
+ /**
78
+ * Gets or Sets the text color
79
+ */
80
+ get iconColor(): string;
81
+ set iconColor(v: string);
82
+ /**
83
+ * Gets or sets the ShowClearButton property to detirmine if the clear button is shown
84
+ */
85
+ get showClearButton(): boolean;
86
+ set showClearButton(v: boolean);
87
+ static ngAcceptInputType_showClearButton: boolean | string;
88
+ /**
89
+ * Gets or sets the AllowTextInput property to detirmine if entering text into the input is allowed
90
+ */
91
+ get allowTextInput(): boolean;
92
+ set allowTextInput(v: boolean);
93
+ static ngAcceptInputType_allowTextInput: boolean | string;
94
+ /**
95
+ * Gets or sets the AllowTextInput property to detirmine if entering text into the input is allowed
96
+ */
97
+ get openOnFocus(): boolean;
98
+ set openOnFocus(v: boolean);
99
+ static ngAcceptInputType_openOnFocus: boolean | string;
100
+ get isDisabled(): boolean;
101
+ set isDisabled(v: boolean);
102
+ static ngAcceptInputType_isDisabled: boolean | string;
103
+ /**
104
+ * Indicates that the editor dropdown will position itself relative to the window instead of the document.
105
+ */
106
+ get isFixed(): boolean;
107
+ set isFixed(v: boolean);
108
+ static ngAcceptInputType_isFixed: boolean | string;
109
+ /**
110
+ * Indicates that the dropdown should open as a child of the color editor.
111
+ */
112
+ get openAsChild(): boolean;
113
+ set openAsChild(v: boolean);
114
+ static ngAcceptInputType_openAsChild: boolean | string;
115
+ /**
116
+ * Indicates that the dropdown will place itself into the browser top layer.
117
+ */
118
+ get useTopLayer(): boolean;
119
+ set useTopLayer(v: boolean);
120
+ static ngAcceptInputType_useTopLayer: boolean | string;
121
+ findByName(name: string): any;
122
+ protected __p: string;
123
+ protected _hasUserValues: Set<string>;
124
+ protected get hasUserValues(): Set<string>;
125
+ protected __m(propertyName: string): void;
126
+ protected _stylingContainer: any;
127
+ protected _stylingParent: any;
128
+ protected _inStyling: boolean;
129
+ protected _styling(container: any, component: any, parent?: any): void;
130
+ select(): void;
131
+ private _valueChanged;
132
+ /**
133
+ * Called when color is selected.
134
+ */
135
+ get valueChanged(): EventEmitter<{
136
+ sender: any;
137
+ args: IgxColorEditorPanelSelectedValueChangedEventArgs;
138
+ }>;
139
+ private _valueChanging;
140
+ /**
141
+ * Called when color is selected.
142
+ */
143
+ get valueChanging(): EventEmitter<{
144
+ sender: any;
145
+ args: IgxColorEditorPanelSelectedValueChangedEventArgs;
146
+ }>;
147
+ private _gotFocus;
148
+ get gotFocus(): EventEmitter<{
149
+ sender: any;
150
+ args: IgxColorEditorGotFocusEventArgs;
151
+ }>;
152
+ private _lostFocus;
153
+ get lostFocus(): EventEmitter<{
154
+ sender: any;
155
+ args: IgxColorEditorLostFocusEventArgs;
156
+ }>;
157
+ protected _zoneRunner: (act: () => void) => void;
158
+ protected _runInZone(act: () => void): void;
159
+ static ɵfac: i0.ɵɵFactoryDeclaration<IgxColorEditorComponent, never>;
160
+ static ɵcmp: i0.ɵɵComponentDeclaration<IgxColorEditorComponent, "igx-color-editor", never, { "value": "value"; "label": "label"; "labelTextColor": "labelTextColor"; "labelTextStyle": "labelTextStyle"; "density": "density"; "baseTheme": "baseTheme"; "textStyle": "textStyle"; "textColor": "textColor"; "iconColor": "iconColor"; "showClearButton": "showClearButton"; "allowTextInput": "allowTextInput"; "openOnFocus": "openOnFocus"; "isDisabled": "isDisabled"; "isFixed": "isFixed"; "openAsChild": "openAsChild"; "useTopLayer": "useTopLayer"; }, { "valueChanged": "valueChanged"; "valueChanging": "valueChanging"; "gotFocus": "gotFocus"; "lostFocus": "lostFocus"; }, never, ["*"]>;
161
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "./igx-color-editor-panel-dynamic-module";
4
+ import * as i3 from "./igx-color-editor-module";
5
+ export declare class IgxColorEditorDynamicModule {
6
+ constructor();
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<IgxColorEditorDynamicModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IgxColorEditorDynamicModule, never, [typeof i1.CommonModule, typeof i2.IgxColorEditorPanelDynamicModule, typeof i3.IgxColorEditorModule], [typeof i2.IgxColorEditorPanelDynamicModule, typeof i3.IgxColorEditorModule]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<IgxColorEditorDynamicModule>;
10
+ }
@@ -0,0 +1,12 @@
1
+ import { ColorEditorGotFocusEventArgs as ColorEditorGotFocusEventArgs_internal } from "./ColorEditorGotFocusEventArgs";
2
+ export declare class IgxColorEditorGotFocusEventArgs {
3
+ protected createImplementation(): ColorEditorGotFocusEventArgs_internal;
4
+ protected _implementation: any;
5
+ /**
6
+ * @hidden
7
+ */
8
+ get i(): ColorEditorGotFocusEventArgs_internal;
9
+ private onImplementationCreated;
10
+ constructor();
11
+ protected _provideImplementation(i: any): void;
12
+ }