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,37 @@
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 { IgxMultiSliderComponent } from './igx-multi-slider-component';
10
+ import { MultiSlider } from './MultiSlider';
11
+ import { TypeRegistrar } from "igniteui-angular-core";
12
+ import { IgxMultiSliderModule } from './igx-multi-slider-module';
13
+ import * as i0 from "@angular/core";
14
+ var IgxMultiSliderDynamicModule = /** @class */ /*@__PURE__*/ (function () {
15
+ function IgxMultiSliderDynamicModule() {
16
+ TypeRegistrar.registerCons('MultiSlider', MultiSlider);
17
+ TypeRegistrar.registerCons('IgxMultiSliderComponent', IgxMultiSliderComponent);
18
+ TypeRegistrar.register('MultiSlider', MultiSlider.$type);
19
+ }
20
+ IgxMultiSliderDynamicModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderDynamicModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
21
+ IgxMultiSliderDynamicModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderDynamicModule, imports: [CommonModule, IgxMultiSliderModule], exports: [IgxMultiSliderModule] });
22
+ IgxMultiSliderDynamicModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderDynamicModule, imports: [[CommonModule, IgxMultiSliderModule
23
+ ], IgxMultiSliderModule] });
24
+ return IgxMultiSliderDynamicModule;
25
+ }());
26
+ export { IgxMultiSliderDynamicModule };
27
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderDynamicModule, decorators: [{
28
+ type: NgModule,
29
+ args: [{
30
+ declarations: [],
31
+ exports: [IgxMultiSliderModule
32
+ ],
33
+ imports: [CommonModule, IgxMultiSliderModule
34
+ ],
35
+ entryComponents: [IgxMultiSliderComponent]
36
+ }]
37
+ }], ctorParameters: function () { return []; } });
@@ -0,0 +1,35 @@
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 { IgxMultiSliderComponent } from './igx-multi-slider-component';
10
+ import { MultiSlider } from './MultiSlider';
11
+ import { TypeRegistrar } from "igniteui-angular-core";
12
+ import * as i0 from "@angular/core";
13
+ var IgxMultiSliderModule = /** @class */ /*@__PURE__*/ (function () {
14
+ function IgxMultiSliderModule() {
15
+ TypeRegistrar.registerCons('IgxMultiSliderComponent', IgxMultiSliderComponent);
16
+ TypeRegistrar.register('MultiSlider', MultiSlider.$type);
17
+ }
18
+ IgxMultiSliderModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
19
+ IgxMultiSliderModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderModule, declarations: [IgxMultiSliderComponent], imports: [CommonModule], exports: [IgxMultiSliderComponent] });
20
+ IgxMultiSliderModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderModule, imports: [[CommonModule,
21
+ ]] });
22
+ return IgxMultiSliderModule;
23
+ }());
24
+ export { IgxMultiSliderModule };
25
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxMultiSliderModule, decorators: [{
26
+ type: NgModule,
27
+ args: [{
28
+ declarations: [IgxMultiSliderComponent],
29
+ exports: [IgxMultiSliderComponent
30
+ ],
31
+ imports: [CommonModule,
32
+ ],
33
+ entryComponents: []
34
+ }]
35
+ }], ctorParameters: function () { return []; } });
@@ -0,0 +1,53 @@
1
+ import { MultiSliderResolvingToolTipValueEventArgs as MultiSliderResolvingToolTipValueEventArgs_internal } from "./MultiSliderResolvingToolTipValueEventArgs";
2
+ var IgxMultiSliderResolvingToolTipValueEventArgs = /** @class */ /*@__PURE__*/ (function () {
3
+ function IgxMultiSliderResolvingToolTipValueEventArgs() {
4
+ this._implementation = this.createImplementation();
5
+ this._implementation.externalObject = this;
6
+ this.onImplementationCreated();
7
+ if (this._initializeAdapters) {
8
+ this._initializeAdapters();
9
+ }
10
+ }
11
+ IgxMultiSliderResolvingToolTipValueEventArgs.prototype.createImplementation = function () {
12
+ return new MultiSliderResolvingToolTipValueEventArgs_internal();
13
+ };
14
+ Object.defineProperty(IgxMultiSliderResolvingToolTipValueEventArgs.prototype, "i", {
15
+ /**
16
+ * @hidden
17
+ */
18
+ get: function () {
19
+ return this._implementation;
20
+ },
21
+ enumerable: false,
22
+ configurable: true
23
+ });
24
+ IgxMultiSliderResolvingToolTipValueEventArgs.prototype.onImplementationCreated = function () {
25
+ };
26
+ IgxMultiSliderResolvingToolTipValueEventArgs.prototype._provideImplementation = function (i) {
27
+ this._implementation = i;
28
+ this._implementation.externalObject = this;
29
+ this.onImplementationCreated();
30
+ };
31
+ Object.defineProperty(IgxMultiSliderResolvingToolTipValueEventArgs.prototype, "position", {
32
+ get: function () {
33
+ return this.i.position;
34
+ },
35
+ set: function (v) {
36
+ this.i.position = +v;
37
+ },
38
+ enumerable: false,
39
+ configurable: true
40
+ });
41
+ Object.defineProperty(IgxMultiSliderResolvingToolTipValueEventArgs.prototype, "value", {
42
+ get: function () {
43
+ return this.i.value;
44
+ },
45
+ set: function (v) {
46
+ this.i.value = v;
47
+ },
48
+ enumerable: false,
49
+ configurable: true
50
+ });
51
+ return IgxMultiSliderResolvingToolTipValueEventArgs;
52
+ }());
53
+ export { IgxMultiSliderResolvingToolTipValueEventArgs };
@@ -0,0 +1,58 @@
1
+ import { __extends } from "tslib";
2
+ import { IgCollection } from "igniteui-angular-core";
3
+ import { markType } from "igniteui-angular-core";
4
+ import { SyncableObservableCollection$2 } from "igniteui-angular-core";
5
+ import { MultiSliderThumb as MultiSliderThumb_internal } from './MultiSliderThumb';
6
+ import { IgxMultiSliderThumb as IgxMultiSliderThumb } from './igx-multi-slider-thumb';
7
+ var IgxMultiSliderThumbCollection = /** @class */ /*@__PURE__*/ (function (_super) {
8
+ __extends(IgxMultiSliderThumbCollection, _super);
9
+ function IgxMultiSliderThumbCollection(list) {
10
+ var _this = _super.call(this) || this;
11
+ if (!IgxMultiSliderThumb.$type) {
12
+ IgxMultiSliderThumb.$type = markType(IgxMultiSliderThumb, "IgxMultiSliderThumb");
13
+ }
14
+ if (list) {
15
+ for (var i = 0; i < list.length; i++) {
16
+ _this.add(list[i]);
17
+ }
18
+ }
19
+ return _this;
20
+ }
21
+ IgxMultiSliderThumbCollection.prototype._createInnerColl = function () {
22
+ if (!IgxMultiSliderThumb.$type) {
23
+ IgxMultiSliderThumb.$type = markType(IgxMultiSliderThumb, "IgxMultiSliderThumb");
24
+ }
25
+ var coll = new SyncableObservableCollection$2(IgxMultiSliderThumb.$type, MultiSliderThumb_internal.$type, 0);
26
+ coll.compare = function (ext, int) {
27
+ var comp = ext;
28
+ if (comp._implementation) {
29
+ comp = comp._implementation;
30
+ }
31
+ if (comp.equals) {
32
+ return comp.equals(int);
33
+ }
34
+ return comp === int;
35
+ };
36
+ coll.createTo = function (ext) {
37
+ return ext._implementation;
38
+ };
39
+ coll.createFrom = function (int) {
40
+ var ext = int.externalObject;
41
+ if (!ext) {
42
+ ext = new IgxMultiSliderThumb();
43
+ if (ext) {
44
+ if (!int.$type && ext._implementation.setNativeElement) {
45
+ ext._implementation.setNativeElement(int);
46
+ }
47
+ else {
48
+ ext._implementation = int;
49
+ }
50
+ }
51
+ }
52
+ return ext;
53
+ };
54
+ return coll;
55
+ };
56
+ return IgxMultiSliderThumbCollection;
57
+ }(IgCollection));
58
+ export { IgxMultiSliderThumbCollection };
@@ -0,0 +1,70 @@
1
+ import { IgxMultiSliderThumb } from "./igx-multi-slider-thumb";
2
+ import { MultiSliderThumbValueChangingEventArgs as MultiSliderThumbValueChangingEventArgs_internal } from "./MultiSliderThumbValueChangingEventArgs";
3
+ var IgxMultiSliderThumbValueChangingEventArgs = /** @class */ /*@__PURE__*/ (function () {
4
+ function IgxMultiSliderThumbValueChangingEventArgs() {
5
+ this._implementation = this.createImplementation();
6
+ this._implementation.externalObject = this;
7
+ this.onImplementationCreated();
8
+ if (this._initializeAdapters) {
9
+ this._initializeAdapters();
10
+ }
11
+ }
12
+ IgxMultiSliderThumbValueChangingEventArgs.prototype.createImplementation = function () {
13
+ return new MultiSliderThumbValueChangingEventArgs_internal();
14
+ };
15
+ Object.defineProperty(IgxMultiSliderThumbValueChangingEventArgs.prototype, "i", {
16
+ /**
17
+ * @hidden
18
+ */
19
+ get: function () {
20
+ return this._implementation;
21
+ },
22
+ enumerable: false,
23
+ configurable: true
24
+ });
25
+ IgxMultiSliderThumbValueChangingEventArgs.prototype.onImplementationCreated = function () {
26
+ };
27
+ IgxMultiSliderThumbValueChangingEventArgs.prototype._provideImplementation = function (i) {
28
+ this._implementation = i;
29
+ this._implementation.externalObject = this;
30
+ this.onImplementationCreated();
31
+ };
32
+ Object.defineProperty(IgxMultiSliderThumbValueChangingEventArgs.prototype, "value", {
33
+ get: function () {
34
+ return this.i.b;
35
+ },
36
+ set: function (v) {
37
+ this.i.b = +v;
38
+ },
39
+ enumerable: false,
40
+ configurable: true
41
+ });
42
+ Object.defineProperty(IgxMultiSliderThumbValueChangingEventArgs.prototype, "thumb", {
43
+ get: function () {
44
+ var r = this.i.a;
45
+ if (r == null) {
46
+ return null;
47
+ }
48
+ if (!r.externalObject) {
49
+ var e = new IgxMultiSliderThumb();
50
+ if (r.$type) {
51
+ e._implementation = r;
52
+ }
53
+ else {
54
+ if (e.i.setNativeElement) {
55
+ e.i.setNativeElement(r);
56
+ }
57
+ }
58
+ r.externalObject = e;
59
+ }
60
+ return r.externalObject;
61
+ },
62
+ set: function (v) {
63
+ v == null ? this.i.a = null : this.i.a = v.i;
64
+ },
65
+ enumerable: false,
66
+ configurable: true
67
+ });
68
+ return IgxMultiSliderThumbValueChangingEventArgs;
69
+ }());
70
+ export { IgxMultiSliderThumbValueChangingEventArgs };
@@ -0,0 +1,134 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { delegateCombine } from "igniteui-angular-core";
3
+ import { MultiSliderThumbRangePosition_$type } from "./MultiSliderThumbRangePosition";
4
+ import { IgxMultiSliderTrackThumbRange } from "./igx-multi-slider-track-thumb-range";
5
+ import { IgxPropertyUpdatedEventArgs } from "igniteui-angular-core";
6
+ import { MultiSliderThumb as MultiSliderThumb_internal } from "./MultiSliderThumb";
7
+ import { ensureEnum } from "igniteui-angular-core";
8
+ var IgxMultiSliderThumb = /** @class */ /*@__PURE__*/ (function () {
9
+ function IgxMultiSliderThumb() {
10
+ this._propertyUpdated = null;
11
+ this._zoneRunner = null;
12
+ this._implementation = this.createImplementation();
13
+ this._implementation.externalObject = this;
14
+ this.onImplementationCreated();
15
+ if (this._initializeAdapters) {
16
+ this._initializeAdapters();
17
+ }
18
+ }
19
+ IgxMultiSliderThumb.prototype.createImplementation = function () {
20
+ return new MultiSliderThumb_internal();
21
+ };
22
+ Object.defineProperty(IgxMultiSliderThumb.prototype, "i", {
23
+ /**
24
+ * @hidden
25
+ */
26
+ get: function () {
27
+ return this._implementation;
28
+ },
29
+ enumerable: false,
30
+ configurable: true
31
+ });
32
+ IgxMultiSliderThumb.prototype.onImplementationCreated = function () {
33
+ };
34
+ IgxMultiSliderThumb.prototype._provideImplementation = function (i) {
35
+ this._implementation = i;
36
+ this._implementation.externalObject = this;
37
+ this.onImplementationCreated();
38
+ };
39
+ Object.defineProperty(IgxMultiSliderThumb.prototype, "value", {
40
+ get: function () {
41
+ return this.i.s;
42
+ },
43
+ set: function (v) {
44
+ this.i.s = +v;
45
+ },
46
+ enumerable: false,
47
+ configurable: true
48
+ });
49
+ Object.defineProperty(IgxMultiSliderThumb.prototype, "rangePosition", {
50
+ get: function () {
51
+ return this.i.g;
52
+ },
53
+ set: function (v) {
54
+ this.i.g = ensureEnum(MultiSliderThumbRangePosition_$type, v);
55
+ },
56
+ enumerable: false,
57
+ configurable: true
58
+ });
59
+ Object.defineProperty(IgxMultiSliderThumb.prototype, "range", {
60
+ get: function () {
61
+ var r = this.i.i;
62
+ if (r == null) {
63
+ return null;
64
+ }
65
+ if (!r.externalObject) {
66
+ var e = new IgxMultiSliderTrackThumbRange();
67
+ if (r.$type) {
68
+ e._implementation = r;
69
+ }
70
+ else {
71
+ if (e.i.setNativeElement) {
72
+ e.i.setNativeElement(r);
73
+ }
74
+ }
75
+ r.externalObject = e;
76
+ }
77
+ return r.externalObject;
78
+ },
79
+ set: function (v) {
80
+ v == null ? this.i.i = null : this.i.i = v.i;
81
+ },
82
+ enumerable: false,
83
+ configurable: true
84
+ });
85
+ IgxMultiSliderThumb.prototype.findByName = function (name) {
86
+ if (this.findEphemera) {
87
+ if (name && name.indexOf("@@e:") == 0) {
88
+ return this.findEphemera(name);
89
+ }
90
+ }
91
+ if (this.range && this.range.name && this.range.name == name) {
92
+ return this.range;
93
+ }
94
+ return null;
95
+ };
96
+ IgxMultiSliderThumb.prototype.push = function (amount) {
97
+ var iv = this.i.r(amount);
98
+ return (iv);
99
+ };
100
+ Object.defineProperty(IgxMultiSliderThumb.prototype, "propertyUpdated", {
101
+ get: function () {
102
+ var _this = this;
103
+ if (this._propertyUpdated == null) {
104
+ this._propertyUpdated = new EventEmitter();
105
+ this.i.propertyUpdated = delegateCombine(this.i.propertyUpdated, function (o, e) {
106
+ _this._runInZone(function () {
107
+ var outerArgs = new IgxPropertyUpdatedEventArgs();
108
+ outerArgs._provideImplementation(e);
109
+ if (_this.beforePropertyUpdated) {
110
+ _this.beforePropertyUpdated(_this, outerArgs);
111
+ }
112
+ _this._propertyUpdated.emit({
113
+ sender: _this,
114
+ args: outerArgs
115
+ });
116
+ });
117
+ });
118
+ }
119
+ return this._propertyUpdated;
120
+ },
121
+ enumerable: false,
122
+ configurable: true
123
+ });
124
+ IgxMultiSliderThumb.prototype._runInZone = function (act) {
125
+ if (this._zoneRunner != null) {
126
+ this._zoneRunner(act);
127
+ }
128
+ else {
129
+ act();
130
+ }
131
+ };
132
+ return IgxMultiSliderThumb;
133
+ }());
134
+ export { IgxMultiSliderThumb };
@@ -0,0 +1,149 @@
1
+ import { IgxMultiSliderThumb } from "./igx-multi-slider-thumb";
2
+ import { MultiSliderTrackThumbRange as MultiSliderTrackThumbRange_internal } from "./MultiSliderTrackThumbRange";
3
+ var IgxMultiSliderTrackThumbRange = /** @class */ /*@__PURE__*/ (function () {
4
+ function IgxMultiSliderTrackThumbRange() {
5
+ this._zoneRunner = null;
6
+ this._implementation = this.createImplementation();
7
+ this._implementation.externalObject = this;
8
+ this.onImplementationCreated();
9
+ if (this._initializeAdapters) {
10
+ this._initializeAdapters();
11
+ }
12
+ }
13
+ IgxMultiSliderTrackThumbRange.prototype.createImplementation = function () {
14
+ return new MultiSliderTrackThumbRange_internal();
15
+ };
16
+ Object.defineProperty(IgxMultiSliderTrackThumbRange.prototype, "i", {
17
+ /**
18
+ * @hidden
19
+ */
20
+ get: function () {
21
+ return this._implementation;
22
+ },
23
+ enumerable: false,
24
+ configurable: true
25
+ });
26
+ IgxMultiSliderTrackThumbRange.prototype.onImplementationCreated = function () {
27
+ };
28
+ IgxMultiSliderTrackThumbRange.prototype._provideImplementation = function (i) {
29
+ this._implementation = i;
30
+ this._implementation.externalObject = this;
31
+ this.onImplementationCreated();
32
+ };
33
+ Object.defineProperty(IgxMultiSliderTrackThumbRange.prototype, "position", {
34
+ get: function () {
35
+ return this.i.n;
36
+ },
37
+ set: function (v) {
38
+ this.i.n = +v;
39
+ },
40
+ enumerable: false,
41
+ configurable: true
42
+ });
43
+ Object.defineProperty(IgxMultiSliderTrackThumbRange.prototype, "width", {
44
+ get: function () {
45
+ return this.i.r;
46
+ },
47
+ set: function (v) {
48
+ this.i.r = +v;
49
+ },
50
+ enumerable: false,
51
+ configurable: true
52
+ });
53
+ Object.defineProperty(IgxMultiSliderTrackThumbRange.prototype, "minWidth", {
54
+ get: function () {
55
+ return this.i.m;
56
+ },
57
+ set: function (v) {
58
+ this.i.m = +v;
59
+ },
60
+ enumerable: false,
61
+ configurable: true
62
+ });
63
+ Object.defineProperty(IgxMultiSliderTrackThumbRange.prototype, "maxWidth", {
64
+ get: function () {
65
+ return this.i.l;
66
+ },
67
+ set: function (v) {
68
+ this.i.l = +v;
69
+ },
70
+ enumerable: false,
71
+ configurable: true
72
+ });
73
+ Object.defineProperty(IgxMultiSliderTrackThumbRange.prototype, "lowerThumb", {
74
+ get: function () {
75
+ var r = this.i.f;
76
+ if (r == null) {
77
+ return null;
78
+ }
79
+ if (!r.externalObject) {
80
+ var e = new IgxMultiSliderThumb();
81
+ if (r.$type) {
82
+ e._implementation = r;
83
+ }
84
+ else {
85
+ if (e.i.setNativeElement) {
86
+ e.i.setNativeElement(r);
87
+ }
88
+ }
89
+ r.externalObject = e;
90
+ }
91
+ return r.externalObject;
92
+ },
93
+ set: function (v) {
94
+ v == null ? this.i.f = null : this.i.f = v.i;
95
+ },
96
+ enumerable: false,
97
+ configurable: true
98
+ });
99
+ Object.defineProperty(IgxMultiSliderTrackThumbRange.prototype, "higherThumb", {
100
+ get: function () {
101
+ var r = this.i.e;
102
+ if (r == null) {
103
+ return null;
104
+ }
105
+ if (!r.externalObject) {
106
+ var e = new IgxMultiSliderThumb();
107
+ if (r.$type) {
108
+ e._implementation = r;
109
+ }
110
+ else {
111
+ if (e.i.setNativeElement) {
112
+ e.i.setNativeElement(r);
113
+ }
114
+ }
115
+ r.externalObject = e;
116
+ }
117
+ return r.externalObject;
118
+ },
119
+ set: function (v) {
120
+ v == null ? this.i.e = null : this.i.e = v.i;
121
+ },
122
+ enumerable: false,
123
+ configurable: true
124
+ });
125
+ IgxMultiSliderTrackThumbRange.prototype.findByName = function (name) {
126
+ if (this.findEphemera) {
127
+ if (name && name.indexOf("@@e:") == 0) {
128
+ return this.findEphemera(name);
129
+ }
130
+ }
131
+ if (this.lowerThumb && this.lowerThumb.name && this.lowerThumb.name == name) {
132
+ return this.lowerThumb;
133
+ }
134
+ if (this.higherThumb && this.higherThumb.name && this.higherThumb.name == name) {
135
+ return this.higherThumb;
136
+ }
137
+ return null;
138
+ };
139
+ IgxMultiSliderTrackThumbRange.prototype._runInZone = function (act) {
140
+ if (this._zoneRunner != null) {
141
+ this._zoneRunner(act);
142
+ }
143
+ else {
144
+ act();
145
+ }
146
+ };
147
+ return IgxMultiSliderTrackThumbRange;
148
+ }());
149
+ export { IgxMultiSliderTrackThumbRange };
@@ -0,0 +1,43 @@
1
+ import { MultiSliderYValueChangingEventArgs as MultiSliderYValueChangingEventArgs_internal } from "./MultiSliderYValueChangingEventArgs";
2
+ var IgxMultiSliderYValueChangingEventArgs = /** @class */ /*@__PURE__*/ (function () {
3
+ function IgxMultiSliderYValueChangingEventArgs() {
4
+ this._implementation = this.createImplementation();
5
+ this._implementation.externalObject = this;
6
+ this.onImplementationCreated();
7
+ if (this._initializeAdapters) {
8
+ this._initializeAdapters();
9
+ }
10
+ }
11
+ IgxMultiSliderYValueChangingEventArgs.prototype.createImplementation = function () {
12
+ return new MultiSliderYValueChangingEventArgs_internal();
13
+ };
14
+ Object.defineProperty(IgxMultiSliderYValueChangingEventArgs.prototype, "i", {
15
+ /**
16
+ * @hidden
17
+ */
18
+ get: function () {
19
+ return this._implementation;
20
+ },
21
+ enumerable: false,
22
+ configurable: true
23
+ });
24
+ IgxMultiSliderYValueChangingEventArgs.prototype.onImplementationCreated = function () {
25
+ };
26
+ IgxMultiSliderYValueChangingEventArgs.prototype._provideImplementation = function (i) {
27
+ this._implementation = i;
28
+ this._implementation.externalObject = this;
29
+ this.onImplementationCreated();
30
+ };
31
+ Object.defineProperty(IgxMultiSliderYValueChangingEventArgs.prototype, "value", {
32
+ get: function () {
33
+ return this.i.a;
34
+ },
35
+ set: function (v) {
36
+ this.i.a = +v;
37
+ },
38
+ enumerable: false,
39
+ configurable: true
40
+ });
41
+ return IgxMultiSliderYValueChangingEventArgs;
42
+ }());
43
+ export { IgxMultiSliderYValueChangingEventArgs };