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,12 @@
1
+ import { ColorEditorLostFocusEventArgs as ColorEditorLostFocusEventArgs_internal } from "./ColorEditorLostFocusEventArgs";
2
+ export declare class IgxColorEditorLostFocusEventArgs {
3
+ protected createImplementation(): ColorEditorLostFocusEventArgs_internal;
4
+ protected _implementation: any;
5
+ /**
6
+ * @hidden
7
+ */
8
+ get i(): ColorEditorLostFocusEventArgs_internal;
9
+ private onImplementationCreated;
10
+ constructor();
11
+ protected _provideImplementation(i: any): void;
12
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./igx-color-editor-component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "./igx-color-editor-panel-dynamic-module";
5
+ export declare class IgxColorEditorModule {
6
+ constructor();
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<IgxColorEditorModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IgxColorEditorModule, [typeof i1.IgxColorEditorComponent], [typeof i2.CommonModule, typeof i3.IgxColorEditorPanelDynamicModule], [typeof i1.IgxColorEditorComponent, typeof i3.IgxColorEditorPanelDynamicModule]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<IgxColorEditorModule>;
10
+ }
@@ -0,0 +1,12 @@
1
+ import { ColorEditorPanelClosedEventArgs as ColorEditorPanelClosedEventArgs_internal } from "./ColorEditorPanelClosedEventArgs";
2
+ export declare class IgxColorEditorPanelClosedEventArgs {
3
+ protected createImplementation(): ColorEditorPanelClosedEventArgs_internal;
4
+ protected _implementation: any;
5
+ /**
6
+ * @hidden
7
+ */
8
+ get i(): ColorEditorPanelClosedEventArgs_internal;
9
+ private onImplementationCreated;
10
+ constructor();
11
+ protected _provideImplementation(i: any): void;
12
+ }
@@ -0,0 +1,125 @@
1
+ import { TemplateRef, EventEmitter, ViewContainerRef, Injector, ComponentFactoryResolver, AfterViewInit, Renderer2, NgZone } from '@angular/core';
2
+ import { ColorEditorPanel } from "./ColorEditorPanel";
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 * as i0 from "@angular/core";
7
+ export declare class IgxColorEditorPanelComponent implements AfterViewInit {
8
+ private renderer;
9
+ private _elRef;
10
+ private ngZone;
11
+ private injector;
12
+ private componentFactoryResolver;
13
+ container: Element;
14
+ private _wrapper;
15
+ private _portalManager;
16
+ private _root;
17
+ _dynamicContent: ViewContainerRef;
18
+ _childTemplateRef: TemplateRef<any>;
19
+ constructor(renderer: Renderer2, _elRef: ViewContainerRef, ngZone: NgZone, injector: Injector, componentFactoryResolver: ComponentFactoryResolver);
20
+ updateStyle(): void;
21
+ ngOnDestroy(): void;
22
+ ngAfterViewInit(): void;
23
+ protected createImplementation(): ColorEditorPanel;
24
+ protected _implementation: any;
25
+ /**
26
+ * @hidden
27
+ */
28
+ get i(): ColorEditorPanel; /**
29
+ * @hidden
30
+ */
31
+ static _createFromInternal(internal: any): IgxColorEditorPanelComponent;
32
+ private _colorEditorPanel;
33
+ /**
34
+ * Gets or Sets the value for the color editor panel.
35
+ */
36
+ get value(): string;
37
+ set value(v: string);
38
+ /**
39
+ * Gets or sets the display density to use for the ColorEditorPanel.
40
+ */
41
+ get density(): ControlDisplayDensity;
42
+ set density(v: ControlDisplayDensity);
43
+ static ngAcceptInputType_density: ControlDisplayDensity | string;
44
+ /**
45
+ * Gets or sets the base built in theme to use for the ColorEditorPanel.
46
+ */
47
+ get baseTheme(): BaseControlTheme;
48
+ set baseTheme(v: BaseControlTheme);
49
+ static ngAcceptInputType_baseTheme: BaseControlTheme | string;
50
+ /**
51
+ * Gets or Sets the selected color background color
52
+ */
53
+ get backgroundColor(): string;
54
+ set backgroundColor(v: string);
55
+ /**
56
+ * Gets or Sets the selected color boreder color
57
+ */
58
+ get selectedColorBorderColor(): string;
59
+ set selectedColorBorderColor(v: string);
60
+ /**
61
+ * Gets or Sets the selected color border color
62
+ */
63
+ get selectedFocusDateBackgroundColor(): string;
64
+ set selectedFocusDateBackgroundColor(v: string);
65
+ /**
66
+ * Gets or Sets the focus color border color
67
+ */
68
+ get focusColorBorderColor(): string;
69
+ set focusColorBorderColor(v: string);
70
+ /**
71
+ * Gets or Sets the focus date background color
72
+ */
73
+ get hoverBackgroundColor(): string;
74
+ set hoverBackgroundColor(v: string);
75
+ /**
76
+ * Gets or Sets the selected date text color
77
+ */
78
+ get textColor(): string;
79
+ set textColor(v: string);
80
+ /**
81
+ * Gets or sets the font to use for the combobox.
82
+ */
83
+ get textStyle(): string;
84
+ set textStyle(v: string);
85
+ /**
86
+ * Gets or sets the scaling value used to affect the pixel density of the control.
87
+ * A higher scaling ratio will produce crisper visuals at the expense of memory. Lower values will cause the control
88
+ * to appear blurry.
89
+ */
90
+ get pixelScalingRatio(): number;
91
+ set pixelScalingRatio(v: number);
92
+ static ngAcceptInputType_pixelScalingRatio: number | string;
93
+ get actualPixelScalingRatio(): number;
94
+ set actualPixelScalingRatio(v: number);
95
+ static ngAcceptInputType_actualPixelScalingRatio: number | string;
96
+ findByName(name: string): any;
97
+ protected __p: string;
98
+ protected _hasUserValues: Set<string>;
99
+ protected get hasUserValues(): Set<string>;
100
+ protected __m(propertyName: string): void;
101
+ protected _stylingContainer: any;
102
+ protected _stylingParent: any;
103
+ protected _inStyling: boolean;
104
+ protected _styling(container: any, component: any, parent?: any): void;
105
+ private _valueChanged;
106
+ /**
107
+ * Called when date is selected.
108
+ */
109
+ get valueChanged(): EventEmitter<{
110
+ sender: any;
111
+ args: IgxColorEditorPanelSelectedValueChangedEventArgs;
112
+ }>;
113
+ private _valueChanging;
114
+ /**
115
+ * Called when date is selected.
116
+ */
117
+ get valueChanging(): EventEmitter<{
118
+ sender: any;
119
+ args: IgxColorEditorPanelSelectedValueChangedEventArgs;
120
+ }>;
121
+ protected _zoneRunner: (act: () => void) => void;
122
+ protected _runInZone(act: () => void): void;
123
+ static ɵfac: i0.ɵɵFactoryDeclaration<IgxColorEditorPanelComponent, never>;
124
+ static ɵcmp: i0.ɵɵComponentDeclaration<IgxColorEditorPanelComponent, "igx-color-editor-panel", never, { "value": "value"; "density": "density"; "baseTheme": "baseTheme"; "backgroundColor": "backgroundColor"; "selectedColorBorderColor": "selectedColorBorderColor"; "selectedFocusDateBackgroundColor": "selectedFocusDateBackgroundColor"; "focusColorBorderColor": "focusColorBorderColor"; "hoverBackgroundColor": "hoverBackgroundColor"; "textColor": "textColor"; "textStyle": "textStyle"; "pixelScalingRatio": "pixelScalingRatio"; "actualPixelScalingRatio": "actualPixelScalingRatio"; }, { "valueChanged": "valueChanged"; "valueChanging": "valueChanging"; }, never, ["*"]>;
125
+ }
@@ -0,0 +1,13 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "./igx-multi-slider-dynamic-module";
4
+ import * as i3 from "./igx-x-button-dynamic-module";
5
+ import * as i4 from "./igx-x-input-group-dynamic-module";
6
+ import * as i5 from "./igx-x-input-dynamic-module";
7
+ import * as i6 from "./igx-color-editor-panel-module";
8
+ export declare class IgxColorEditorPanelDynamicModule {
9
+ constructor();
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<IgxColorEditorPanelDynamicModule, never>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IgxColorEditorPanelDynamicModule, never, [typeof i1.CommonModule, typeof i2.IgxMultiSliderDynamicModule, typeof i3.IgxXButtonDynamicModule, typeof i4.IgxXInputGroupDynamicModule, typeof i5.IgxXInputDynamicModule, typeof i6.IgxColorEditorPanelModule], [typeof i2.IgxMultiSliderDynamicModule, typeof i3.IgxXButtonDynamicModule, typeof i4.IgxXInputGroupDynamicModule, typeof i5.IgxXInputDynamicModule, typeof i6.IgxColorEditorPanelModule]>;
12
+ static ɵinj: i0.ɵɵInjectorDeclaration<IgxColorEditorPanelDynamicModule>;
13
+ }
@@ -0,0 +1,13 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./igx-color-editor-panel-component";
3
+ import * as i2 from "@angular/common";
4
+ import * as i3 from "./igx-multi-slider-dynamic-module";
5
+ import * as i4 from "./igx-x-button-dynamic-module";
6
+ import * as i5 from "./igx-x-input-group-dynamic-module";
7
+ import * as i6 from "./igx-x-input-dynamic-module";
8
+ export declare class IgxColorEditorPanelModule {
9
+ constructor();
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<IgxColorEditorPanelModule, never>;
11
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IgxColorEditorPanelModule, [typeof i1.IgxColorEditorPanelComponent], [typeof i2.CommonModule, typeof i3.IgxMultiSliderDynamicModule, typeof i4.IgxXButtonDynamicModule, typeof i5.IgxXInputGroupDynamicModule, typeof i6.IgxXInputDynamicModule], [typeof i1.IgxColorEditorPanelComponent, typeof i3.IgxMultiSliderDynamicModule, typeof i4.IgxXButtonDynamicModule, typeof i5.IgxXInputGroupDynamicModule, typeof i6.IgxXInputDynamicModule]>;
12
+ static ɵinj: i0.ɵɵInjectorDeclaration<IgxColorEditorPanelModule>;
13
+ }
@@ -0,0 +1,16 @@
1
+ import { ColorEditorPanelSelectedValueChangedEventArgs as ColorEditorPanelSelectedValueChangedEventArgs_internal } from "./ColorEditorPanelSelectedValueChangedEventArgs";
2
+ export declare class IgxColorEditorPanelSelectedValueChangedEventArgs {
3
+ protected createImplementation(): ColorEditorPanelSelectedValueChangedEventArgs_internal;
4
+ protected _implementation: any;
5
+ /**
6
+ * @hidden
7
+ */
8
+ get i(): ColorEditorPanelSelectedValueChangedEventArgs_internal;
9
+ private onImplementationCreated;
10
+ constructor();
11
+ protected _provideImplementation(i: any): void;
12
+ get oldValue(): string;
13
+ set oldValue(v: string);
14
+ get newValue(): string;
15
+ set newValue(v: string);
16
+ }
@@ -0,0 +1,200 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { IgRect } from "igniteui-angular-core";
3
+ import { IgxMultiSliderThumbCollection } from "./igx-multi-slider-thumb-collection";
4
+ import { MultiSliderOrientation } from "./MultiSliderOrientation";
5
+ import { IgxMultiSliderResolvingToolTipValueEventArgs } from "./igx-multi-slider-resolving-tool-tip-value-event-args";
6
+ import { IgxMultiSliderThumbValueChangingEventArgs } from "./igx-multi-slider-thumb-value-changing-event-args";
7
+ import { IgxMultiSliderYValueChangingEventArgs } from "./igx-multi-slider-y-value-changing-event-args";
8
+ import { MultiSlider } from "./MultiSlider";
9
+ import * as i0 from "@angular/core";
10
+ export declare class IgxMultiSliderComponent implements OnInit {
11
+ protected createImplementation(): MultiSlider;
12
+ ngOnInit(): void;
13
+ protected _implementation: any;
14
+ /**
15
+ * @hidden
16
+ */
17
+ get i(): MultiSlider; /**
18
+ * @hidden
19
+ */
20
+ static _createFromInternal(internal: any): IgxMultiSliderComponent;
21
+ private onImplementationCreated;
22
+ constructor();
23
+ private _thumbs;
24
+ /**
25
+ * Gets the column definitions that are assigned to the grid. This collection can be modified to add or remove columns in the grid.
26
+ */
27
+ get thumbs(): IgxMultiSliderThumbCollection;
28
+ set thumbs(v: IgxMultiSliderThumbCollection);
29
+ static ngAcceptInputType_thumbs: IgxMultiSliderThumbCollection | string;
30
+ get min(): number;
31
+ set min(v: number);
32
+ static ngAcceptInputType_min: number | string;
33
+ get max(): number;
34
+ set max(v: number);
35
+ static ngAcceptInputType_max: number | string;
36
+ get step(): number;
37
+ set step(v: number);
38
+ static ngAcceptInputType_step: number | string;
39
+ get yMax(): number;
40
+ set yMax(v: number);
41
+ static ngAcceptInputType_yMax: number | string;
42
+ get yMin(): number;
43
+ set yMin(v: number);
44
+ static ngAcceptInputType_yMin: number | string;
45
+ get yStep(): number;
46
+ set yStep(v: number);
47
+ static ngAcceptInputType_yStep: number | string;
48
+ /**
49
+ * Gets or sets the scaling value used to affect the pixel density of the control.
50
+ * A higher scaling ratio will produce crisper visuals at the expense of memory. Lower values will cause the control
51
+ * to appear blurry.
52
+ */
53
+ get pixelScalingRatio(): number;
54
+ set pixelScalingRatio(v: number);
55
+ static ngAcceptInputType_pixelScalingRatio: number | string;
56
+ get actualPixelScalingRatio(): number;
57
+ set actualPixelScalingRatio(v: number);
58
+ static ngAcceptInputType_actualPixelScalingRatio: number | string;
59
+ get windowRect(): IgRect;
60
+ set windowRect(v: IgRect);
61
+ static ngAcceptInputType_windowRect: IgRect | string;
62
+ get yValue(): number;
63
+ set yValue(v: number);
64
+ static ngAcceptInputType_yValue: number | string;
65
+ get startInset(): number;
66
+ set startInset(v: number);
67
+ static ngAcceptInputType_startInset: number | string;
68
+ get endInset(): number;
69
+ set endInset(v: number);
70
+ static ngAcceptInputType_endInset: number | string;
71
+ get trackStartInset(): number;
72
+ set trackStartInset(v: number);
73
+ static ngAcceptInputType_trackStartInset: number | string;
74
+ get trackEndInset(): number;
75
+ set trackEndInset(v: number);
76
+ static ngAcceptInputType_trackEndInset: number | string;
77
+ get yTrackStartInset(): number;
78
+ set yTrackStartInset(v: number);
79
+ static ngAcceptInputType_yTrackStartInset: number | string;
80
+ get yTrackEndInset(): number;
81
+ set yTrackEndInset(v: number);
82
+ static ngAcceptInputType_yTrackEndInset: number | string;
83
+ get barExtent(): number;
84
+ set barExtent(v: number);
85
+ static ngAcceptInputType_barExtent: number | string;
86
+ get orientation(): MultiSliderOrientation;
87
+ set orientation(v: MultiSliderOrientation);
88
+ static ngAcceptInputType_orientation: MultiSliderOrientation | string;
89
+ get thumbBrush(): string;
90
+ set thumbBrush(v: string);
91
+ get thumbStrokeThickness(): number;
92
+ set thumbStrokeThickness(v: number);
93
+ static ngAcceptInputType_thumbStrokeThickness: number | string;
94
+ get thumbOutline(): string;
95
+ set thumbOutline(v: string);
96
+ get thumbWidth(): number;
97
+ set thumbWidth(v: number);
98
+ static ngAcceptInputType_thumbWidth: number | string;
99
+ get thumbHeight(): number;
100
+ set thumbHeight(v: number);
101
+ static ngAcceptInputType_thumbHeight: number | string;
102
+ get barBrush(): string;
103
+ set barBrush(v: string);
104
+ get barOutline(): string;
105
+ set barOutline(v: string);
106
+ get barStrokeThickness(): number;
107
+ set barStrokeThickness(v: number);
108
+ static ngAcceptInputType_barStrokeThickness: number | string;
109
+ get rangeThumbBrush(): string;
110
+ set rangeThumbBrush(v: string);
111
+ get rangeThumbOutline(): string;
112
+ set rangeThumbOutline(v: string);
113
+ get rangeThumbStrokeThickness(): number;
114
+ set rangeThumbStrokeThickness(v: number);
115
+ static ngAcceptInputType_rangeThumbStrokeThickness: number | string;
116
+ get rangeThumbRidgesBrush(): string;
117
+ set rangeThumbRidgesBrush(v: string);
118
+ get thumbRidgesBrush(): string;
119
+ set thumbRidgesBrush(v: string);
120
+ get calloutBrush(): string;
121
+ set calloutBrush(v: string);
122
+ get calloutTextColor(): string;
123
+ set calloutTextColor(v: string);
124
+ get calloutOutline(): string;
125
+ set calloutOutline(v: string);
126
+ get calloutStrokeThickness(): number;
127
+ set calloutStrokeThickness(v: number);
128
+ static ngAcceptInputType_calloutStrokeThickness: number | string;
129
+ get isCustomThumbProvided(): boolean;
130
+ static ngAcceptInputType_isCustomThumbProvided: boolean | string;
131
+ get isCustomRangeThumbProvided(): boolean;
132
+ static ngAcceptInputType_isCustomRangeThumbProvided: boolean | string;
133
+ get isCustomBarProvided(): boolean;
134
+ static ngAcceptInputType_isCustomBarProvided: boolean | string;
135
+ get isCustomShadeProvided(): boolean;
136
+ static ngAcceptInputType_isCustomShadeProvided: boolean | string;
137
+ get areThumbCalloutsEnabled(): boolean;
138
+ set areThumbCalloutsEnabled(v: boolean);
139
+ static ngAcceptInputType_areThumbCalloutsEnabled: boolean | string;
140
+ get thumbCalloutTextStyle(): string;
141
+ set thumbCalloutTextStyle(v: string);
142
+ findByName(name: string): any;
143
+ protected __p: string;
144
+ protected _hasUserValues: Set<string>;
145
+ protected get hasUserValues(): Set<string>;
146
+ protected __m(propertyName: string): void;
147
+ protected _stylingContainer: any;
148
+ protected _stylingParent: any;
149
+ protected _inStyling: boolean;
150
+ protected _styling(container: any, component: any, parent?: any): void;
151
+ onDetachedFromUI(): void;
152
+ onAttachedToUI(): void;
153
+ /**
154
+ * Called by the UI framework to provide a UI container for rendering this control.
155
+
156
+ * @param container * The UI container element.
157
+ */
158
+ provideContainer(container: any): void;
159
+ flush(): void;
160
+ trackDirty(): void;
161
+ /**
162
+ * Shows the ZoomSlider.
163
+
164
+ */
165
+ show(): void;
166
+ /**
167
+ * Hides the ZoomSlider.
168
+
169
+ */
170
+ hide(): void;
171
+ private _resolvingToolTipValue;
172
+ get resolvingToolTipValue(): EventEmitter<{
173
+ sender: any;
174
+ args: IgxMultiSliderResolvingToolTipValueEventArgs;
175
+ }>;
176
+ private _thumbValueChanging;
177
+ get thumbValueChanging(): EventEmitter<{
178
+ sender: any;
179
+ args: IgxMultiSliderThumbValueChangingEventArgs;
180
+ }>;
181
+ private _thumbValueChanged;
182
+ get thumbValueChanged(): EventEmitter<{
183
+ sender: any;
184
+ args: IgxMultiSliderThumbValueChangingEventArgs;
185
+ }>;
186
+ private _yValueChanging;
187
+ get yValueChanging(): EventEmitter<{
188
+ sender: any;
189
+ args: IgxMultiSliderYValueChangingEventArgs;
190
+ }>;
191
+ private _yValueChanged;
192
+ get yValueChanged(): EventEmitter<{
193
+ sender: any;
194
+ args: IgxMultiSliderYValueChangingEventArgs;
195
+ }>;
196
+ protected _zoneRunner: (act: () => void) => void;
197
+ protected _runInZone(act: () => void): void;
198
+ static ɵfac: i0.ɵɵFactoryDeclaration<IgxMultiSliderComponent, never>;
199
+ static ɵcmp: i0.ɵɵComponentDeclaration<IgxMultiSliderComponent, "igx-multi-slider", never, { "thumbs": "thumbs"; "min": "min"; "max": "max"; "step": "step"; "yMax": "yMax"; "yMin": "yMin"; "yStep": "yStep"; "pixelScalingRatio": "pixelScalingRatio"; "actualPixelScalingRatio": "actualPixelScalingRatio"; "windowRect": "windowRect"; "yValue": "yValue"; "startInset": "startInset"; "endInset": "endInset"; "trackStartInset": "trackStartInset"; "trackEndInset": "trackEndInset"; "yTrackStartInset": "yTrackStartInset"; "yTrackEndInset": "yTrackEndInset"; "barExtent": "barExtent"; "orientation": "orientation"; "thumbBrush": "thumbBrush"; "thumbStrokeThickness": "thumbStrokeThickness"; "thumbOutline": "thumbOutline"; "thumbWidth": "thumbWidth"; "thumbHeight": "thumbHeight"; "barBrush": "barBrush"; "barOutline": "barOutline"; "barStrokeThickness": "barStrokeThickness"; "rangeThumbBrush": "rangeThumbBrush"; "rangeThumbOutline": "rangeThumbOutline"; "rangeThumbStrokeThickness": "rangeThumbStrokeThickness"; "rangeThumbRidgesBrush": "rangeThumbRidgesBrush"; "thumbRidgesBrush": "thumbRidgesBrush"; "calloutBrush": "calloutBrush"; "calloutTextColor": "calloutTextColor"; "calloutOutline": "calloutOutline"; "calloutStrokeThickness": "calloutStrokeThickness"; "areThumbCalloutsEnabled": "areThumbCalloutsEnabled"; "thumbCalloutTextStyle": "thumbCalloutTextStyle"; }, { "resolvingToolTipValue": "resolvingToolTipValue"; "thumbValueChanging": "thumbValueChanging"; "thumbValueChanged": "thumbValueChanged"; "yValueChanging": "yValueChanging"; "yValueChanged": "yValueChanged"; }, never, never>;
200
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "./igx-multi-slider-module";
4
+ export declare class IgxMultiSliderDynamicModule {
5
+ constructor();
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<IgxMultiSliderDynamicModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IgxMultiSliderDynamicModule, never, [typeof i1.CommonModule, typeof i2.IgxMultiSliderModule], [typeof i2.IgxMultiSliderModule]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<IgxMultiSliderDynamicModule>;
9
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./igx-multi-slider-component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class IgxMultiSliderModule {
5
+ constructor();
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<IgxMultiSliderModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IgxMultiSliderModule, [typeof i1.IgxMultiSliderComponent], [typeof i2.CommonModule], [typeof i1.IgxMultiSliderComponent]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<IgxMultiSliderModule>;
9
+ }
@@ -0,0 +1,17 @@
1
+ import { MultiSliderResolvingToolTipValueEventArgs as MultiSliderResolvingToolTipValueEventArgs_internal } from "./MultiSliderResolvingToolTipValueEventArgs";
2
+ export declare class IgxMultiSliderResolvingToolTipValueEventArgs {
3
+ protected createImplementation(): MultiSliderResolvingToolTipValueEventArgs_internal;
4
+ protected _implementation: any;
5
+ /**
6
+ * @hidden
7
+ */
8
+ get i(): MultiSliderResolvingToolTipValueEventArgs_internal;
9
+ private onImplementationCreated;
10
+ constructor();
11
+ protected _provideImplementation(i: any): void;
12
+ get position(): number;
13
+ set position(v: number);
14
+ static ngAcceptInputType_position: number | string;
15
+ get value(): any;
16
+ set value(v: any);
17
+ }
@@ -0,0 +1,8 @@
1
+ import { IgCollection } from "igniteui-angular-core";
2
+ import { SyncableObservableCollection$2 } from "igniteui-angular-core";
3
+ import { MultiSliderThumb as MultiSliderThumb_internal } from './MultiSliderThumb';
4
+ import { IgxMultiSliderThumb as IgxMultiSliderThumb } from './igx-multi-slider-thumb';
5
+ export declare class IgxMultiSliderThumbCollection extends IgCollection<IgxMultiSliderThumb, MultiSliderThumb_internal> {
6
+ constructor(list?: IgxMultiSliderThumb[]);
7
+ protected _createInnerColl(): SyncableObservableCollection$2<IgxMultiSliderThumb, MultiSliderThumb_internal>;
8
+ }
@@ -0,0 +1,18 @@
1
+ import { IgxMultiSliderThumb } from "./igx-multi-slider-thumb";
2
+ import { MultiSliderThumbValueChangingEventArgs as MultiSliderThumbValueChangingEventArgs_internal } from "./MultiSliderThumbValueChangingEventArgs";
3
+ export declare class IgxMultiSliderThumbValueChangingEventArgs {
4
+ protected createImplementation(): MultiSliderThumbValueChangingEventArgs_internal;
5
+ protected _implementation: any;
6
+ /**
7
+ * @hidden
8
+ */
9
+ get i(): MultiSliderThumbValueChangingEventArgs_internal;
10
+ private onImplementationCreated;
11
+ constructor();
12
+ protected _provideImplementation(i: any): void;
13
+ get value(): number;
14
+ set value(v: number);
15
+ static ngAcceptInputType_value: number | string;
16
+ get thumb(): IgxMultiSliderThumb;
17
+ set thumb(v: IgxMultiSliderThumb);
18
+ }
@@ -0,0 +1,33 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { MultiSliderThumbRangePosition } from "./MultiSliderThumbRangePosition";
3
+ import { IgxMultiSliderTrackThumbRange } from "./igx-multi-slider-track-thumb-range";
4
+ import { IgxPropertyUpdatedEventArgs } from "igniteui-angular-core";
5
+ import { MultiSliderThumb as MultiSliderThumb_internal } from "./MultiSliderThumb";
6
+ export declare class IgxMultiSliderThumb {
7
+ protected createImplementation(): MultiSliderThumb_internal;
8
+ protected _implementation: any;
9
+ /**
10
+ * @hidden
11
+ */
12
+ get i(): MultiSliderThumb_internal;
13
+ private onImplementationCreated;
14
+ constructor();
15
+ protected _provideImplementation(i: any): void;
16
+ get value(): number;
17
+ set value(v: number);
18
+ static ngAcceptInputType_value: number | string;
19
+ get rangePosition(): MultiSliderThumbRangePosition;
20
+ set rangePosition(v: MultiSliderThumbRangePosition);
21
+ static ngAcceptInputType_rangePosition: MultiSliderThumbRangePosition | string;
22
+ get range(): IgxMultiSliderTrackThumbRange;
23
+ set range(v: IgxMultiSliderTrackThumbRange);
24
+ findByName(name: string): any;
25
+ push(amount: number): number;
26
+ private _propertyUpdated;
27
+ get propertyUpdated(): EventEmitter<{
28
+ sender: any;
29
+ args: IgxPropertyUpdatedEventArgs;
30
+ }>;
31
+ protected _zoneRunner: (act: () => void) => void;
32
+ protected _runInZone(act: () => void): void;
33
+ }
@@ -0,0 +1,32 @@
1
+ import { IgxMultiSliderThumb } from "./igx-multi-slider-thumb";
2
+ import { MultiSliderTrackThumbRange as MultiSliderTrackThumbRange_internal } from "./MultiSliderTrackThumbRange";
3
+ export declare class IgxMultiSliderTrackThumbRange {
4
+ protected createImplementation(): MultiSliderTrackThumbRange_internal;
5
+ protected _implementation: any;
6
+ /**
7
+ * @hidden
8
+ */
9
+ get i(): MultiSliderTrackThumbRange_internal;
10
+ private onImplementationCreated;
11
+ constructor();
12
+ protected _provideImplementation(i: any): void;
13
+ get position(): number;
14
+ set position(v: number);
15
+ static ngAcceptInputType_position: number | string;
16
+ get width(): number;
17
+ set width(v: number);
18
+ static ngAcceptInputType_width: number | string;
19
+ get minWidth(): number;
20
+ set minWidth(v: number);
21
+ static ngAcceptInputType_minWidth: number | string;
22
+ get maxWidth(): number;
23
+ set maxWidth(v: number);
24
+ static ngAcceptInputType_maxWidth: number | string;
25
+ get lowerThumb(): IgxMultiSliderThumb;
26
+ set lowerThumb(v: IgxMultiSliderThumb);
27
+ get higherThumb(): IgxMultiSliderThumb;
28
+ set higherThumb(v: IgxMultiSliderThumb);
29
+ findByName(name: string): any;
30
+ protected _zoneRunner: (act: () => void) => void;
31
+ protected _runInZone(act: () => void): void;
32
+ }
@@ -0,0 +1,15 @@
1
+ import { MultiSliderYValueChangingEventArgs as MultiSliderYValueChangingEventArgs_internal } from "./MultiSliderYValueChangingEventArgs";
2
+ export declare class IgxMultiSliderYValueChangingEventArgs {
3
+ protected createImplementation(): MultiSliderYValueChangingEventArgs_internal;
4
+ protected _implementation: any;
5
+ /**
6
+ * @hidden
7
+ */
8
+ get i(): MultiSliderYValueChangingEventArgs_internal;
9
+ private onImplementationCreated;
10
+ constructor();
11
+ protected _provideImplementation(i: any): void;
12
+ get value(): number;
13
+ set value(v: number);
14
+ static ngAcceptInputType_value: number | string;
15
+ }
@@ -145,6 +145,11 @@ export declare class IgxXIconComponent implements AfterViewInit {
145
145
  */
146
146
  get secondaryStrokeColor(): string;
147
147
  set secondaryStrokeColor(v: string);
148
+ /**
149
+ * Gets or sets the image source for the icon. Used if none of the other icon types are not used.
150
+ */
151
+ get source(): any;
152
+ set source(v: any);
148
153
  /**
149
154
  * Gets or sets data url for the icon to use.
150
155
  */
@@ -262,5 +267,5 @@ export declare class IgxXIconComponent implements AfterViewInit {
262
267
  protected _zoneRunner: (act: () => void) => void;
263
268
  protected _runInZone(act: () => void): void;
264
269
  static ɵfac: i0.ɵɵFactoryDeclaration<IgxXIconComponent, never>;
265
- static ɵcmp: i0.ɵɵComponentDeclaration<IgxXIconComponent, "igx-x-icon", never, { "baseTheme": "baseTheme"; "actualFill": "actualFill"; "actualStroke": "actualStroke"; "actualTextColor": "actualTextColor"; "actualStrokeWidth": "actualStrokeWidth"; "fill": "fill"; "stroke": "stroke"; "strokeWidth": "strokeWidth"; "textColor": "textColor"; "hoverFill": "hoverFill"; "hoverStroke": "hoverStroke"; "hoverStrokeThickness": "hoverStrokeThickness"; "hoverTextColor": "hoverTextColor"; "fillColors": "fillColors"; "strokeColors": "strokeColors"; "primaryFillColor": "primaryFillColor"; "primaryStrokeColor": "primaryStrokeColor"; "secondaryFillColor": "secondaryFillColor"; "secondaryStrokeColor": "secondaryStrokeColor"; "dataURL": "dataURL"; "svgPath": "svgPath"; "svg": "svg"; "sVGPaths": "sVGPaths"; "textStyle": "textStyle"; "id": "id"; "tabIndex": "tabindex"; "ariaLabel": "aria-label"; "isHover": "isHover"; "disabled": "disabled"; "opacity": "opacity"; "viewBoxLeft": "viewBoxLeft"; "viewBoxTop": "viewBoxTop"; "viewBoxWidth": "viewBoxWidth"; "viewBoxHeight": "viewBoxHeight"; "width": "width"; "height": "height"; }, {}, never, ["*"]>;
270
+ static ɵcmp: i0.ɵɵComponentDeclaration<IgxXIconComponent, "igx-x-icon", never, { "baseTheme": "baseTheme"; "actualFill": "actualFill"; "actualStroke": "actualStroke"; "actualTextColor": "actualTextColor"; "actualStrokeWidth": "actualStrokeWidth"; "fill": "fill"; "stroke": "stroke"; "strokeWidth": "strokeWidth"; "textColor": "textColor"; "hoverFill": "hoverFill"; "hoverStroke": "hoverStroke"; "hoverStrokeThickness": "hoverStrokeThickness"; "hoverTextColor": "hoverTextColor"; "fillColors": "fillColors"; "strokeColors": "strokeColors"; "primaryFillColor": "primaryFillColor"; "primaryStrokeColor": "primaryStrokeColor"; "secondaryFillColor": "secondaryFillColor"; "secondaryStrokeColor": "secondaryStrokeColor"; "source": "source"; "dataURL": "dataURL"; "svgPath": "svgPath"; "svg": "svg"; "sVGPaths": "sVGPaths"; "textStyle": "textStyle"; "id": "id"; "tabIndex": "tabindex"; "ariaLabel": "aria-label"; "isHover": "isHover"; "disabled": "disabled"; "opacity": "opacity"; "viewBoxLeft": "viewBoxLeft"; "viewBoxTop": "viewBoxTop"; "viewBoxWidth": "viewBoxWidth"; "viewBoxHeight": "viewBoxHeight"; "width": "width"; "height": "height"; }, {}, never, ["*"]>;
266
271
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "igniteui-angular-inputs",
3
- "version": "18.1.1",
3
+ "version": "18.2.0-beta.1",
4
4
  "description": "Ignite UI Angular input components for building rich data visualizations for modern web apps.",
5
5
  "homepage": "https://github.com/IgniteUI/igniteui-angular-inputs",
6
6
  "keywords": [
@@ -17,7 +17,7 @@
17
17
  "@angular/common": "^18.0.0",
18
18
  "@angular/compiler": "^18.0.0",
19
19
  "@angular/core": "^18.0.0",
20
- "igniteui-angular-core": "18.1.1"
20
+ "igniteui-angular-core": "18.2.0-beta.1"
21
21
  },
22
22
  "sideEffects": false,
23
23
  "typings": "igniteui-angular-inputs.d.ts",