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.
- package/bundles/igniteui-angular-inputs.umd.js +16857 -7563
- package/bundles/igniteui-angular-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonGroupView_combined.js +19 -19
- package/esm2015/lib/ButtonView_combined.js +820 -790
- package/esm2015/lib/CalendarView_combined.js +82 -82
- package/esm2015/lib/ColorEditor.js +7 -0
- package/esm2015/lib/ColorEditorBridge.js +7 -0
- package/esm2015/lib/ColorEditorGotFocusEventArgs.js +16 -0
- package/esm2015/lib/ColorEditorLostFocusEventArgs.js +16 -0
- package/esm2015/lib/ColorEditorPanel.js +7 -0
- package/esm2015/lib/ColorEditorPanelClosedEventArgs.js +16 -0
- package/esm2015/lib/ColorEditorPanelSelectedValueChangedEventArgs.js +33 -0
- package/esm2015/lib/ColorEditorPanelView.js +7 -0
- package/esm2015/lib/ColorEditorView.js +7 -0
- package/esm2015/lib/DatePickerView_combined.js +18 -18
- package/esm2015/lib/DefaultMultiSliderTrackBarVisual.js +113 -0
- package/esm2015/lib/DefaultMultiSliderTrackRangeVisual.js +208 -0
- package/esm2015/lib/DefaultMultiSliderTrackThumbCalloutVisual.js +170 -0
- package/esm2015/lib/DefaultMultiSliderTrackThumbVisual.js +193 -0
- package/esm2015/lib/DefaultMultiTrackShadeVisual.js +172 -0
- package/esm2015/lib/IMultiSliderTrackBarVisual.js +11 -0
- package/esm2015/lib/IMultiSliderTrackRangeVisual.js +11 -0
- package/esm2015/lib/IMultiSliderTrackShadeVisual.js +11 -0
- package/esm2015/lib/IMultiSliderTrackThumbCalloutVisual.js +11 -0
- package/esm2015/lib/IMultiSliderTrackThumbVisual.js +11 -0
- package/esm2015/lib/ISliderTrackOwner.js +11 -0
- package/esm2015/lib/IconClickedEventArgs.js +10 -0
- package/esm2015/lib/IconView_combined.js +345 -314
- package/esm2015/lib/InputGroupView_combined.js +456 -355
- package/esm2015/lib/MultiSlider.js +7 -0
- package/esm2015/lib/MultiSliderBridge.js +165 -0
- package/esm2015/lib/MultiSliderCursor.js +11 -0
- package/esm2015/lib/MultiSliderHitInfo.js +22 -0
- package/esm2015/lib/MultiSliderOrientation.js +17 -0
- package/esm2015/lib/MultiSliderResolvingToolTipValueEventArgs.js +33 -0
- package/esm2015/lib/MultiSliderThumb.js +7 -0
- package/esm2015/lib/MultiSliderThumbCollection.js +21 -0
- package/esm2015/lib/MultiSliderThumbRangePosition.js +16 -0
- package/esm2015/lib/MultiSliderThumbValueChangingEventArgs.js +21 -0
- package/esm2015/lib/MultiSliderThumb_combined.js +297 -0
- package/esm2015/lib/MultiSliderTrackShadeOrientation.js +11 -0
- package/esm2015/lib/MultiSliderTrackThumbRange.js +7 -0
- package/esm2015/lib/MultiSliderView.js +7 -0
- package/esm2015/lib/MultiSliderView_combined.js +1785 -0
- package/esm2015/lib/MultiSliderVisualArea.js +11 -0
- package/esm2015/lib/MultiSliderYValueChangingEventArgs.js +20 -0
- package/esm2015/lib/NativeUIXInputsFactory.js +1 -179
- package/esm2015/lib/NativeUIXInputsFactory_combined.js +2113 -0
- package/esm2015/lib/XButtonBridge.js +25 -20
- package/esm2015/lib/XButtonGroupBridge.js +177 -0
- package/esm2015/lib/XComponentBridge.js +3 -0
- package/esm2015/lib/XIconBridge.js +20 -16
- package/esm2015/lib/XInputBridge.js +274 -26
- package/esm2015/lib/XPopupBridge.js +117 -98
- package/esm2015/lib/igx-color-editor-component.js +470 -0
- package/esm2015/lib/igx-color-editor-dynamic-module.js +45 -0
- package/esm2015/lib/igx-color-editor-got-focus-event-args.js +27 -0
- package/esm2015/lib/igx-color-editor-lost-focus-event-args.js +27 -0
- package/esm2015/lib/igx-color-editor-module.js +39 -0
- package/esm2015/lib/igx-color-editor-panel-closed-event-args.js +27 -0
- package/esm2015/lib/igx-color-editor-panel-component.js +376 -0
- package/esm2015/lib/igx-color-editor-panel-dynamic-module.js +66 -0
- package/esm2015/lib/igx-color-editor-panel-module.js +60 -0
- package/esm2015/lib/igx-color-editor-panel-selected-value-changed-event-args.js +40 -0
- package/esm2015/lib/igx-multi-slider-component.js +642 -0
- package/esm2015/lib/igx-multi-slider-dynamic-module.js +38 -0
- package/esm2015/lib/igx-multi-slider-module.js +36 -0
- package/esm2015/lib/igx-multi-slider-resolving-tool-tip-value-event-args.js +39 -0
- package/esm2015/lib/igx-multi-slider-thumb-collection.js +53 -0
- package/esm2015/lib/igx-multi-slider-thumb-value-changing-event-args.js +56 -0
- package/esm2015/lib/igx-multi-slider-thumb.js +111 -0
- package/esm2015/lib/igx-multi-slider-track-thumb-range.js +119 -0
- package/esm2015/lib/igx-multi-slider-y-value-changing-event-args.js +33 -0
- package/esm2015/lib/igx-x-button-component.js +262 -262
- package/esm2015/lib/igx-x-icon-component.js +66 -55
- package/esm2015/lib/igx-x-input-group-component.js +48 -48
- package/esm2015/lib/igx-x-label-component.js +41 -40
- package/esm2015/public_api.js +55 -0
- package/esm5/lib/ButtonGroupView_combined.js +19 -19
- package/esm5/lib/ButtonView_combined.js +765 -735
- package/esm5/lib/CalendarView_combined.js +82 -82
- package/esm5/lib/ColorEditor.js +7 -0
- package/esm5/lib/ColorEditorBridge.js +7 -0
- package/esm5/lib/ColorEditorGotFocusEventArgs.js +20 -0
- package/esm5/lib/ColorEditorLostFocusEventArgs.js +20 -0
- package/esm5/lib/ColorEditorPanel.js +7 -0
- package/esm5/lib/ColorEditorPanelClosedEventArgs.js +20 -0
- package/esm5/lib/ColorEditorPanelSelectedValueChangedEventArgs.js +43 -0
- package/esm5/lib/ColorEditorPanelView.js +7 -0
- package/esm5/lib/ColorEditorView.js +7 -0
- package/esm5/lib/DatePickerView_combined.js +18 -18
- package/esm5/lib/DefaultMultiSliderTrackBarVisual.js +139 -0
- package/esm5/lib/DefaultMultiSliderTrackRangeVisual.js +242 -0
- package/esm5/lib/DefaultMultiSliderTrackThumbCalloutVisual.js +212 -0
- package/esm5/lib/DefaultMultiSliderTrackThumbVisual.js +227 -0
- package/esm5/lib/DefaultMultiTrackShadeVisual.js +206 -0
- package/esm5/lib/IMultiSliderTrackBarVisual.js +11 -0
- package/esm5/lib/IMultiSliderTrackRangeVisual.js +11 -0
- package/esm5/lib/IMultiSliderTrackShadeVisual.js +11 -0
- package/esm5/lib/IMultiSliderTrackThumbCalloutVisual.js +11 -0
- package/esm5/lib/IMultiSliderTrackThumbVisual.js +11 -0
- package/esm5/lib/ISliderTrackOwner.js +11 -0
- package/esm5/lib/IconClickedEventArgs.js +13 -1
- package/esm5/lib/IconView_combined.js +336 -301
- package/esm5/lib/InputGroupView_combined.js +444 -343
- package/esm5/lib/MultiSlider.js +7 -0
- package/esm5/lib/MultiSliderBridge.js +167 -0
- package/esm5/lib/MultiSliderCursor.js +11 -0
- package/esm5/lib/MultiSliderHitInfo.js +24 -0
- package/esm5/lib/MultiSliderOrientation.js +17 -0
- package/esm5/lib/MultiSliderResolvingToolTipValueEventArgs.js +43 -0
- package/esm5/lib/MultiSliderThumb.js +7 -0
- package/esm5/lib/MultiSliderThumbCollection.js +22 -0
- package/esm5/lib/MultiSliderThumbRangePosition.js +16 -0
- package/esm5/lib/MultiSliderThumbValueChangingEventArgs.js +23 -0
- package/esm5/lib/MultiSliderThumb_combined.js +352 -0
- package/esm5/lib/MultiSliderTrackShadeOrientation.js +11 -0
- package/esm5/lib/MultiSliderTrackThumbRange.js +7 -0
- package/esm5/lib/MultiSliderView.js +7 -0
- package/esm5/lib/MultiSliderView_combined.js +2006 -0
- package/esm5/lib/MultiSliderVisualArea.js +11 -0
- package/esm5/lib/MultiSliderYValueChangingEventArgs.js +22 -0
- package/esm5/lib/NativeUIXInputsFactory.js +1 -189
- package/esm5/lib/NativeUIXInputsFactory_combined.js +2298 -0
- package/esm5/lib/XButtonBridge.js +25 -20
- package/esm5/lib/XButtonGroupBridge.js +179 -0
- package/esm5/lib/XComponentBridge.js +3 -0
- package/esm5/lib/XIconBridge.js +20 -16
- package/esm5/lib/XInputBridge.js +274 -26
- package/esm5/lib/XPopupBridge.js +117 -98
- package/esm5/lib/igx-color-editor-component.js +555 -0
- package/esm5/lib/igx-color-editor-dynamic-module.js +44 -0
- package/esm5/lib/igx-color-editor-got-focus-event-args.js +33 -0
- package/esm5/lib/igx-color-editor-lost-focus-event-args.js +33 -0
- package/esm5/lib/igx-color-editor-module.js +38 -0
- package/esm5/lib/igx-color-editor-panel-closed-event-args.js +33 -0
- package/esm5/lib/igx-color-editor-panel-component.js +435 -0
- package/esm5/lib/igx-color-editor-panel-dynamic-module.js +65 -0
- package/esm5/lib/igx-color-editor-panel-module.js +59 -0
- package/esm5/lib/igx-color-editor-panel-selected-value-changed-event-args.js +54 -0
- package/esm5/lib/igx-multi-slider-component.js +842 -0
- package/esm5/lib/igx-multi-slider-dynamic-module.js +37 -0
- package/esm5/lib/igx-multi-slider-module.js +35 -0
- package/esm5/lib/igx-multi-slider-resolving-tool-tip-value-event-args.js +53 -0
- package/esm5/lib/igx-multi-slider-thumb-collection.js +58 -0
- package/esm5/lib/igx-multi-slider-thumb-value-changing-event-args.js +70 -0
- package/esm5/lib/igx-multi-slider-thumb.js +134 -0
- package/esm5/lib/igx-multi-slider-track-thumb-range.js +149 -0
- package/esm5/lib/igx-multi-slider-y-value-changing-event-args.js +43 -0
- package/esm5/lib/igx-x-button-component.js +262 -262
- package/esm5/lib/igx-x-icon-component.js +70 -55
- package/esm5/lib/igx-x-input-group-component.js +48 -48
- package/esm5/lib/igx-x-label-component.js +41 -40
- package/esm5/public_api.js +55 -0
- package/fesm2015/igniteui-angular-inputs.js +15626 -7466
- package/fesm5/igniteui-angular-inputs.js +16802 -7565
- package/lib/ButtonView_combined.d.ts +243 -241
- package/lib/ColorEditor.d.ts +1 -0
- package/lib/ColorEditorBridge.d.ts +1 -0
- package/lib/ColorEditorGotFocusEventArgs.d.ts +7 -0
- package/lib/ColorEditorLostFocusEventArgs.d.ts +7 -0
- package/lib/ColorEditorPanel.d.ts +1 -0
- package/lib/ColorEditorPanelClosedEventArgs.d.ts +7 -0
- package/lib/ColorEditorPanelSelectedValueChangedEventArgs.d.ts +14 -0
- package/lib/ColorEditorPanelView.d.ts +1 -0
- package/lib/ColorEditorView.d.ts +1 -0
- package/lib/DefaultMultiSliderTrackBarVisual.d.ts +34 -0
- package/lib/DefaultMultiSliderTrackRangeVisual.d.ts +43 -0
- package/lib/DefaultMultiSliderTrackThumbCalloutVisual.d.ts +49 -0
- package/lib/DefaultMultiSliderTrackThumbVisual.d.ts +45 -0
- package/lib/DefaultMultiTrackShadeVisual.d.ts +42 -0
- package/lib/IMultiSliderTrackBarVisual.d.ts +21 -0
- package/lib/IMultiSliderTrackRangeVisual.d.ts +25 -0
- package/lib/IMultiSliderTrackShadeVisual.d.ts +24 -0
- package/lib/IMultiSliderTrackThumbCalloutVisual.d.ts +27 -0
- package/lib/IMultiSliderTrackThumbVisual.d.ts +27 -0
- package/lib/ISliderTrackOwner.d.ts +15 -0
- package/lib/IconClickedEventArgs.d.ts +3 -0
- package/lib/IconView_combined.d.ts +88 -84
- package/lib/InputGroupView_combined.d.ts +120 -113
- package/lib/MultiSlider.d.ts +1 -0
- package/lib/MultiSliderBridge.d.ts +24 -0
- package/lib/MultiSliderCursor.d.ts +15 -0
- package/lib/MultiSliderHitInfo.d.ts +13 -0
- package/lib/MultiSliderOrientation.d.ts +10 -0
- package/lib/MultiSliderResolvingToolTipValueEventArgs.d.ts +13 -0
- package/lib/MultiSliderThumb.d.ts +1 -0
- package/lib/MultiSliderThumbCollection.d.ts +10 -0
- package/lib/MultiSliderThumbRangePosition.d.ts +9 -0
- package/lib/MultiSliderThumbValueChangingEventArgs.d.ts +10 -0
- package/lib/MultiSliderThumb_combined.d.ts +76 -0
- package/lib/MultiSliderTrackShadeOrientation.d.ts +14 -0
- package/lib/MultiSliderTrackThumbRange.d.ts +1 -0
- package/lib/MultiSliderView.d.ts +1 -0
- package/lib/MultiSliderView_combined.d.ts +298 -0
- package/lib/MultiSliderVisualArea.d.ts +14 -0
- package/lib/MultiSliderYValueChangingEventArgs.d.ts +8 -0
- package/lib/NativeUIXInputsFactory.d.ts +1 -24
- package/lib/NativeUIXInputsFactory_combined.d.ts +393 -0
- package/lib/XButtonGroupBridge.d.ts +29 -0
- package/lib/XInputBridge.d.ts +29 -5
- package/lib/XPopupBridge.d.ts +12 -9
- package/lib/igx-color-editor-component.d.ts +161 -0
- package/lib/igx-color-editor-dynamic-module.d.ts +10 -0
- package/lib/igx-color-editor-got-focus-event-args.d.ts +12 -0
- package/lib/igx-color-editor-lost-focus-event-args.d.ts +12 -0
- package/lib/igx-color-editor-module.d.ts +10 -0
- package/lib/igx-color-editor-panel-closed-event-args.d.ts +12 -0
- package/lib/igx-color-editor-panel-component.d.ts +125 -0
- package/lib/igx-color-editor-panel-dynamic-module.d.ts +13 -0
- package/lib/igx-color-editor-panel-module.d.ts +13 -0
- package/lib/igx-color-editor-panel-selected-value-changed-event-args.d.ts +16 -0
- package/lib/igx-multi-slider-component.d.ts +200 -0
- package/lib/igx-multi-slider-dynamic-module.d.ts +9 -0
- package/lib/igx-multi-slider-module.d.ts +9 -0
- package/lib/igx-multi-slider-resolving-tool-tip-value-event-args.d.ts +17 -0
- package/lib/igx-multi-slider-thumb-collection.d.ts +8 -0
- package/lib/igx-multi-slider-thumb-value-changing-event-args.d.ts +18 -0
- package/lib/igx-multi-slider-thumb.d.ts +33 -0
- package/lib/igx-multi-slider-track-thumb-range.d.ts +32 -0
- package/lib/igx-multi-slider-y-value-changing-event-args.d.ts +15 -0
- package/lib/igx-x-icon-component.d.ts +6 -1
- package/package.json +2 -2
- package/public_api.d.ts +55 -0
|
@@ -251,11 +251,11 @@ var IgxXInputGroupComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
251
251
|
});
|
|
252
252
|
Object.defineProperty(IgxXInputGroupComponent.prototype, "actualCornerRadiusBottomRight", {
|
|
253
253
|
get: function () {
|
|
254
|
-
return this.i.ko ? this.i.ko.
|
|
254
|
+
return this.i.ko ? this.i.ko.c : NaN;
|
|
255
255
|
},
|
|
256
256
|
set: function (v) {
|
|
257
257
|
this.ensureActualCornerRadius();
|
|
258
|
-
this.i.ko.
|
|
258
|
+
this.i.ko.c = +v;
|
|
259
259
|
this.i.ko = this.i.ko;
|
|
260
260
|
},
|
|
261
261
|
enumerable: false,
|
|
@@ -263,11 +263,11 @@ var IgxXInputGroupComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
263
263
|
});
|
|
264
264
|
Object.defineProperty(IgxXInputGroupComponent.prototype, "actualCornerRadiusBottomLeft", {
|
|
265
265
|
get: function () {
|
|
266
|
-
return this.i.ko ? this.i.ko.
|
|
266
|
+
return this.i.ko ? this.i.ko.b : NaN;
|
|
267
267
|
},
|
|
268
268
|
set: function (v) {
|
|
269
269
|
this.ensureActualCornerRadius();
|
|
270
|
-
this.i.ko.
|
|
270
|
+
this.i.ko.b = +v;
|
|
271
271
|
this.i.ko = this.i.ko;
|
|
272
272
|
},
|
|
273
273
|
enumerable: false,
|
|
@@ -275,11 +275,11 @@ var IgxXInputGroupComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
275
275
|
});
|
|
276
276
|
Object.defineProperty(IgxXInputGroupComponent.prototype, "actualCornerRadiusTopLeft", {
|
|
277
277
|
get: function () {
|
|
278
|
-
return this.i.ko ? this.i.ko.
|
|
278
|
+
return this.i.ko ? this.i.ko.d : NaN;
|
|
279
279
|
},
|
|
280
280
|
set: function (v) {
|
|
281
281
|
this.ensureActualCornerRadius();
|
|
282
|
-
this.i.ko.
|
|
282
|
+
this.i.ko.d = +v;
|
|
283
283
|
this.i.ko = this.i.ko;
|
|
284
284
|
},
|
|
285
285
|
enumerable: false,
|
|
@@ -287,11 +287,11 @@ var IgxXInputGroupComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
287
287
|
});
|
|
288
288
|
Object.defineProperty(IgxXInputGroupComponent.prototype, "actualCornerRadiusTopRight", {
|
|
289
289
|
get: function () {
|
|
290
|
-
return this.i.ko ? this.i.ko.
|
|
290
|
+
return this.i.ko ? this.i.ko.e : NaN;
|
|
291
291
|
},
|
|
292
292
|
set: function (v) {
|
|
293
293
|
this.ensureActualCornerRadius();
|
|
294
|
-
this.i.ko.
|
|
294
|
+
this.i.ko.e = +v;
|
|
295
295
|
this.i.ko = this.i.ko;
|
|
296
296
|
},
|
|
297
297
|
enumerable: false,
|
|
@@ -567,11 +567,11 @@ var IgxXInputGroupComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
567
567
|
});
|
|
568
568
|
Object.defineProperty(IgxXInputGroupComponent.prototype, "cornerRadiusBottomRight", {
|
|
569
569
|
get: function () {
|
|
570
|
-
return this.i.ks ? this.i.ks.
|
|
570
|
+
return this.i.ks ? this.i.ks.c : NaN;
|
|
571
571
|
},
|
|
572
572
|
set: function (v) {
|
|
573
573
|
this.ensureCornerRadius();
|
|
574
|
-
this.i.ks.
|
|
574
|
+
this.i.ks.c = +v;
|
|
575
575
|
this.i.ks = this.i.ks;
|
|
576
576
|
},
|
|
577
577
|
enumerable: false,
|
|
@@ -579,11 +579,11 @@ var IgxXInputGroupComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
579
579
|
});
|
|
580
580
|
Object.defineProperty(IgxXInputGroupComponent.prototype, "cornerRadiusBottomLeft", {
|
|
581
581
|
get: function () {
|
|
582
|
-
return this.i.ks ? this.i.ks.
|
|
582
|
+
return this.i.ks ? this.i.ks.b : NaN;
|
|
583
583
|
},
|
|
584
584
|
set: function (v) {
|
|
585
585
|
this.ensureCornerRadius();
|
|
586
|
-
this.i.ks.
|
|
586
|
+
this.i.ks.b = +v;
|
|
587
587
|
this.i.ks = this.i.ks;
|
|
588
588
|
},
|
|
589
589
|
enumerable: false,
|
|
@@ -591,11 +591,11 @@ var IgxXInputGroupComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
591
591
|
});
|
|
592
592
|
Object.defineProperty(IgxXInputGroupComponent.prototype, "cornerRadiusTopLeft", {
|
|
593
593
|
get: function () {
|
|
594
|
-
return this.i.ks ? this.i.ks.
|
|
594
|
+
return this.i.ks ? this.i.ks.d : NaN;
|
|
595
595
|
},
|
|
596
596
|
set: function (v) {
|
|
597
597
|
this.ensureCornerRadius();
|
|
598
|
-
this.i.ks.
|
|
598
|
+
this.i.ks.d = +v;
|
|
599
599
|
this.i.ks = this.i.ks;
|
|
600
600
|
},
|
|
601
601
|
enumerable: false,
|
|
@@ -603,11 +603,11 @@ var IgxXInputGroupComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
603
603
|
});
|
|
604
604
|
Object.defineProperty(IgxXInputGroupComponent.prototype, "cornerRadiusTopRight", {
|
|
605
605
|
get: function () {
|
|
606
|
-
return this.i.ks ? this.i.ks.
|
|
606
|
+
return this.i.ks ? this.i.ks.e : NaN;
|
|
607
607
|
},
|
|
608
608
|
set: function (v) {
|
|
609
609
|
this.ensureCornerRadius();
|
|
610
|
-
this.i.ks.
|
|
610
|
+
this.i.ks.e = +v;
|
|
611
611
|
this.i.ks = this.i.ks;
|
|
612
612
|
},
|
|
613
613
|
enumerable: false,
|
|
@@ -896,11 +896,11 @@ var IgxXInputGroupComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
896
896
|
});
|
|
897
897
|
Object.defineProperty(IgxXInputGroupComponent.prototype, "lineTypeCornerRadiusBottomRight", {
|
|
898
898
|
get: function () {
|
|
899
|
-
return this.i.kx ? this.i.kx.
|
|
899
|
+
return this.i.kx ? this.i.kx.c : NaN;
|
|
900
900
|
},
|
|
901
901
|
set: function (v) {
|
|
902
902
|
this.ensureLineTypeCornerRadius();
|
|
903
|
-
this.i.kx.
|
|
903
|
+
this.i.kx.c = +v;
|
|
904
904
|
this.i.kx = this.i.kx;
|
|
905
905
|
},
|
|
906
906
|
enumerable: false,
|
|
@@ -908,11 +908,11 @@ var IgxXInputGroupComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
908
908
|
});
|
|
909
909
|
Object.defineProperty(IgxXInputGroupComponent.prototype, "lineTypeCornerRadiusBottomLeft", {
|
|
910
910
|
get: function () {
|
|
911
|
-
return this.i.kx ? this.i.kx.
|
|
911
|
+
return this.i.kx ? this.i.kx.b : NaN;
|
|
912
912
|
},
|
|
913
913
|
set: function (v) {
|
|
914
914
|
this.ensureLineTypeCornerRadius();
|
|
915
|
-
this.i.kx.
|
|
915
|
+
this.i.kx.b = +v;
|
|
916
916
|
this.i.kx = this.i.kx;
|
|
917
917
|
},
|
|
918
918
|
enumerable: false,
|
|
@@ -920,11 +920,11 @@ var IgxXInputGroupComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
920
920
|
});
|
|
921
921
|
Object.defineProperty(IgxXInputGroupComponent.prototype, "lineTypeCornerRadiusTopLeft", {
|
|
922
922
|
get: function () {
|
|
923
|
-
return this.i.kx ? this.i.kx.
|
|
923
|
+
return this.i.kx ? this.i.kx.d : NaN;
|
|
924
924
|
},
|
|
925
925
|
set: function (v) {
|
|
926
926
|
this.ensureLineTypeCornerRadius();
|
|
927
|
-
this.i.kx.
|
|
927
|
+
this.i.kx.d = +v;
|
|
928
928
|
this.i.kx = this.i.kx;
|
|
929
929
|
},
|
|
930
930
|
enumerable: false,
|
|
@@ -932,11 +932,11 @@ var IgxXInputGroupComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
932
932
|
});
|
|
933
933
|
Object.defineProperty(IgxXInputGroupComponent.prototype, "lineTypeCornerRadiusTopRight", {
|
|
934
934
|
get: function () {
|
|
935
|
-
return this.i.kx ? this.i.kx.
|
|
935
|
+
return this.i.kx ? this.i.kx.e : NaN;
|
|
936
936
|
},
|
|
937
937
|
set: function (v) {
|
|
938
938
|
this.ensureLineTypeCornerRadius();
|
|
939
|
-
this.i.kx.
|
|
939
|
+
this.i.kx.e = +v;
|
|
940
940
|
this.i.kx = this.i.kx;
|
|
941
941
|
},
|
|
942
942
|
enumerable: false,
|
|
@@ -1225,11 +1225,11 @@ var IgxXInputGroupComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1225
1225
|
});
|
|
1226
1226
|
Object.defineProperty(IgxXInputGroupComponent.prototype, "boxTypeCornerRadiusBottomRight", {
|
|
1227
1227
|
get: function () {
|
|
1228
|
-
return this.i.kq ? this.i.kq.
|
|
1228
|
+
return this.i.kq ? this.i.kq.c : NaN;
|
|
1229
1229
|
},
|
|
1230
1230
|
set: function (v) {
|
|
1231
1231
|
this.ensureBoxTypeCornerRadius();
|
|
1232
|
-
this.i.kq.
|
|
1232
|
+
this.i.kq.c = +v;
|
|
1233
1233
|
this.i.kq = this.i.kq;
|
|
1234
1234
|
},
|
|
1235
1235
|
enumerable: false,
|
|
@@ -1237,11 +1237,11 @@ var IgxXInputGroupComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1237
1237
|
});
|
|
1238
1238
|
Object.defineProperty(IgxXInputGroupComponent.prototype, "boxTypeCornerRadiusBottomLeft", {
|
|
1239
1239
|
get: function () {
|
|
1240
|
-
return this.i.kq ? this.i.kq.
|
|
1240
|
+
return this.i.kq ? this.i.kq.b : NaN;
|
|
1241
1241
|
},
|
|
1242
1242
|
set: function (v) {
|
|
1243
1243
|
this.ensureBoxTypeCornerRadius();
|
|
1244
|
-
this.i.kq.
|
|
1244
|
+
this.i.kq.b = +v;
|
|
1245
1245
|
this.i.kq = this.i.kq;
|
|
1246
1246
|
},
|
|
1247
1247
|
enumerable: false,
|
|
@@ -1249,11 +1249,11 @@ var IgxXInputGroupComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1249
1249
|
});
|
|
1250
1250
|
Object.defineProperty(IgxXInputGroupComponent.prototype, "boxTypeCornerRadiusTopLeft", {
|
|
1251
1251
|
get: function () {
|
|
1252
|
-
return this.i.kq ? this.i.kq.
|
|
1252
|
+
return this.i.kq ? this.i.kq.d : NaN;
|
|
1253
1253
|
},
|
|
1254
1254
|
set: function (v) {
|
|
1255
1255
|
this.ensureBoxTypeCornerRadius();
|
|
1256
|
-
this.i.kq.
|
|
1256
|
+
this.i.kq.d = +v;
|
|
1257
1257
|
this.i.kq = this.i.kq;
|
|
1258
1258
|
},
|
|
1259
1259
|
enumerable: false,
|
|
@@ -1261,11 +1261,11 @@ var IgxXInputGroupComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1261
1261
|
});
|
|
1262
1262
|
Object.defineProperty(IgxXInputGroupComponent.prototype, "boxTypeCornerRadiusTopRight", {
|
|
1263
1263
|
get: function () {
|
|
1264
|
-
return this.i.kq ? this.i.kq.
|
|
1264
|
+
return this.i.kq ? this.i.kq.e : NaN;
|
|
1265
1265
|
},
|
|
1266
1266
|
set: function (v) {
|
|
1267
1267
|
this.ensureBoxTypeCornerRadius();
|
|
1268
|
-
this.i.kq.
|
|
1268
|
+
this.i.kq.e = +v;
|
|
1269
1269
|
this.i.kq = this.i.kq;
|
|
1270
1270
|
},
|
|
1271
1271
|
enumerable: false,
|
|
@@ -1554,11 +1554,11 @@ var IgxXInputGroupComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1554
1554
|
});
|
|
1555
1555
|
Object.defineProperty(IgxXInputGroupComponent.prototype, "borderTypeCornerRadiusBottomRight", {
|
|
1556
1556
|
get: function () {
|
|
1557
|
-
return this.i.kp ? this.i.kp.
|
|
1557
|
+
return this.i.kp ? this.i.kp.c : NaN;
|
|
1558
1558
|
},
|
|
1559
1559
|
set: function (v) {
|
|
1560
1560
|
this.ensureBorderTypeCornerRadius();
|
|
1561
|
-
this.i.kp.
|
|
1561
|
+
this.i.kp.c = +v;
|
|
1562
1562
|
this.i.kp = this.i.kp;
|
|
1563
1563
|
},
|
|
1564
1564
|
enumerable: false,
|
|
@@ -1566,11 +1566,11 @@ var IgxXInputGroupComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1566
1566
|
});
|
|
1567
1567
|
Object.defineProperty(IgxXInputGroupComponent.prototype, "borderTypeCornerRadiusBottomLeft", {
|
|
1568
1568
|
get: function () {
|
|
1569
|
-
return this.i.kp ? this.i.kp.
|
|
1569
|
+
return this.i.kp ? this.i.kp.b : NaN;
|
|
1570
1570
|
},
|
|
1571
1571
|
set: function (v) {
|
|
1572
1572
|
this.ensureBorderTypeCornerRadius();
|
|
1573
|
-
this.i.kp.
|
|
1573
|
+
this.i.kp.b = +v;
|
|
1574
1574
|
this.i.kp = this.i.kp;
|
|
1575
1575
|
},
|
|
1576
1576
|
enumerable: false,
|
|
@@ -1578,11 +1578,11 @@ var IgxXInputGroupComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1578
1578
|
});
|
|
1579
1579
|
Object.defineProperty(IgxXInputGroupComponent.prototype, "borderTypeCornerRadiusTopLeft", {
|
|
1580
1580
|
get: function () {
|
|
1581
|
-
return this.i.kp ? this.i.kp.
|
|
1581
|
+
return this.i.kp ? this.i.kp.d : NaN;
|
|
1582
1582
|
},
|
|
1583
1583
|
set: function (v) {
|
|
1584
1584
|
this.ensureBorderTypeCornerRadius();
|
|
1585
|
-
this.i.kp.
|
|
1585
|
+
this.i.kp.d = +v;
|
|
1586
1586
|
this.i.kp = this.i.kp;
|
|
1587
1587
|
},
|
|
1588
1588
|
enumerable: false,
|
|
@@ -1590,11 +1590,11 @@ var IgxXInputGroupComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1590
1590
|
});
|
|
1591
1591
|
Object.defineProperty(IgxXInputGroupComponent.prototype, "borderTypeCornerRadiusTopRight", {
|
|
1592
1592
|
get: function () {
|
|
1593
|
-
return this.i.kp ? this.i.kp.
|
|
1593
|
+
return this.i.kp ? this.i.kp.e : NaN;
|
|
1594
1594
|
},
|
|
1595
1595
|
set: function (v) {
|
|
1596
1596
|
this.ensureBorderTypeCornerRadius();
|
|
1597
|
-
this.i.kp.
|
|
1597
|
+
this.i.kp.e = +v;
|
|
1598
1598
|
this.i.kp = this.i.kp;
|
|
1599
1599
|
},
|
|
1600
1600
|
enumerable: false,
|
|
@@ -1883,11 +1883,11 @@ var IgxXInputGroupComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1883
1883
|
});
|
|
1884
1884
|
Object.defineProperty(IgxXInputGroupComponent.prototype, "searchTypeCornerRadiusBottomRight", {
|
|
1885
1885
|
get: function () {
|
|
1886
|
-
return this.i.ky ? this.i.ky.
|
|
1886
|
+
return this.i.ky ? this.i.ky.c : NaN;
|
|
1887
1887
|
},
|
|
1888
1888
|
set: function (v) {
|
|
1889
1889
|
this.ensureSearchTypeCornerRadius();
|
|
1890
|
-
this.i.ky.
|
|
1890
|
+
this.i.ky.c = +v;
|
|
1891
1891
|
this.i.ky = this.i.ky;
|
|
1892
1892
|
},
|
|
1893
1893
|
enumerable: false,
|
|
@@ -1895,11 +1895,11 @@ var IgxXInputGroupComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1895
1895
|
});
|
|
1896
1896
|
Object.defineProperty(IgxXInputGroupComponent.prototype, "searchTypeCornerRadiusBottomLeft", {
|
|
1897
1897
|
get: function () {
|
|
1898
|
-
return this.i.ky ? this.i.ky.
|
|
1898
|
+
return this.i.ky ? this.i.ky.b : NaN;
|
|
1899
1899
|
},
|
|
1900
1900
|
set: function (v) {
|
|
1901
1901
|
this.ensureSearchTypeCornerRadius();
|
|
1902
|
-
this.i.ky.
|
|
1902
|
+
this.i.ky.b = +v;
|
|
1903
1903
|
this.i.ky = this.i.ky;
|
|
1904
1904
|
},
|
|
1905
1905
|
enumerable: false,
|
|
@@ -1907,11 +1907,11 @@ var IgxXInputGroupComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1907
1907
|
});
|
|
1908
1908
|
Object.defineProperty(IgxXInputGroupComponent.prototype, "searchTypeCornerRadiusTopLeft", {
|
|
1909
1909
|
get: function () {
|
|
1910
|
-
return this.i.ky ? this.i.ky.
|
|
1910
|
+
return this.i.ky ? this.i.ky.d : NaN;
|
|
1911
1911
|
},
|
|
1912
1912
|
set: function (v) {
|
|
1913
1913
|
this.ensureSearchTypeCornerRadius();
|
|
1914
|
-
this.i.ky.
|
|
1914
|
+
this.i.ky.d = +v;
|
|
1915
1915
|
this.i.ky = this.i.ky;
|
|
1916
1916
|
},
|
|
1917
1917
|
enumerable: false,
|
|
@@ -1919,11 +1919,11 @@ var IgxXInputGroupComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1919
1919
|
});
|
|
1920
1920
|
Object.defineProperty(IgxXInputGroupComponent.prototype, "searchTypeCornerRadiusTopRight", {
|
|
1921
1921
|
get: function () {
|
|
1922
|
-
return this.i.ky ? this.i.ky.
|
|
1922
|
+
return this.i.ky ? this.i.ky.e : NaN;
|
|
1923
1923
|
},
|
|
1924
1924
|
set: function (v) {
|
|
1925
1925
|
this.ensureSearchTypeCornerRadius();
|
|
1926
|
-
this.i.ky.
|
|
1926
|
+
this.i.ky.e = +v;
|
|
1927
1927
|
this.i.ky = this.i.ky;
|
|
1928
1928
|
},
|
|
1929
1929
|
enumerable: false,
|
|
@@ -62,6 +62,7 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
62
62
|
this._portalManager.onChildContentChanged(this._childTemplateRef);
|
|
63
63
|
this._styling(this._root, this);
|
|
64
64
|
this.updateStyle();
|
|
65
|
+
this.i.onSizeReady();
|
|
65
66
|
};
|
|
66
67
|
IgxXLabelComponent.prototype.createImplementation = function () {
|
|
67
68
|
return new XLabel();
|
|
@@ -120,10 +121,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
120
121
|
* Gets the actual color to use for the text color.
|
|
121
122
|
*/
|
|
122
123
|
get: function () {
|
|
123
|
-
return brushToString(this.i.
|
|
124
|
+
return brushToString(this.i.c2);
|
|
124
125
|
},
|
|
125
126
|
set: function (v) {
|
|
126
|
-
this.i.
|
|
127
|
+
this.i.c2 = stringToBrush(v);
|
|
127
128
|
},
|
|
128
129
|
enumerable: false,
|
|
129
130
|
configurable: true
|
|
@@ -133,10 +134,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
133
134
|
* Gets the actual color to use for the text color.
|
|
134
135
|
*/
|
|
135
136
|
get: function () {
|
|
136
|
-
return brushToString(this.i.
|
|
137
|
+
return brushToString(this.i.cz);
|
|
137
138
|
},
|
|
138
139
|
set: function (v) {
|
|
139
|
-
this.i.
|
|
140
|
+
this.i.cz = stringToBrush(v);
|
|
140
141
|
},
|
|
141
142
|
enumerable: false,
|
|
142
143
|
configurable: true
|
|
@@ -146,10 +147,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
146
147
|
* Gets the actual color to use for the text color when highlighted and hovered.
|
|
147
148
|
*/
|
|
148
149
|
get: function () {
|
|
149
|
-
return brushToString(this.i.
|
|
150
|
+
return brushToString(this.i.c0);
|
|
150
151
|
},
|
|
151
152
|
set: function (v) {
|
|
152
|
-
this.i.
|
|
153
|
+
this.i.c0 = stringToBrush(v);
|
|
153
154
|
},
|
|
154
155
|
enumerable: false,
|
|
155
156
|
configurable: true
|
|
@@ -159,10 +160,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
159
160
|
* Gets the actual hover color to use for the text.
|
|
160
161
|
*/
|
|
161
162
|
get: function () {
|
|
162
|
-
return brushToString(this.i.
|
|
163
|
+
return brushToString(this.i.c1);
|
|
163
164
|
},
|
|
164
165
|
set: function (v) {
|
|
165
|
-
this.i.
|
|
166
|
+
this.i.c1 = stringToBrush(v);
|
|
166
167
|
},
|
|
167
168
|
enumerable: false,
|
|
168
169
|
configurable: true
|
|
@@ -172,10 +173,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
172
173
|
* Gets or sets the color to use for the text.
|
|
173
174
|
*/
|
|
174
175
|
get: function () {
|
|
175
|
-
return brushToString(this.i.
|
|
176
|
+
return brushToString(this.i.di);
|
|
176
177
|
},
|
|
177
178
|
set: function (v) {
|
|
178
|
-
this.i.
|
|
179
|
+
this.i.di = stringToBrush(v);
|
|
179
180
|
},
|
|
180
181
|
enumerable: false,
|
|
181
182
|
configurable: true
|
|
@@ -185,10 +186,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
185
186
|
* Gets or sets the color to use for the text.
|
|
186
187
|
*/
|
|
187
188
|
get: function () {
|
|
188
|
-
return brushToString(this.i.
|
|
189
|
+
return brushToString(this.i.df);
|
|
189
190
|
},
|
|
190
191
|
set: function (v) {
|
|
191
|
-
this.i.
|
|
192
|
+
this.i.df = stringToBrush(v);
|
|
192
193
|
},
|
|
193
194
|
enumerable: false,
|
|
194
195
|
configurable: true
|
|
@@ -198,10 +199,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
198
199
|
* Gets or sets the color to use for the text.
|
|
199
200
|
*/
|
|
200
201
|
get: function () {
|
|
201
|
-
return brushToString(this.i.
|
|
202
|
+
return brushToString(this.i.dg);
|
|
202
203
|
},
|
|
203
204
|
set: function (v) {
|
|
204
|
-
this.i.
|
|
205
|
+
this.i.dg = stringToBrush(v);
|
|
205
206
|
},
|
|
206
207
|
enumerable: false,
|
|
207
208
|
configurable: true
|
|
@@ -229,10 +230,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
229
230
|
* Gets or sets the color to use for the hovered text of the button regardless of type.
|
|
230
231
|
*/
|
|
231
232
|
get: function () {
|
|
232
|
-
return brushToString(this.i.
|
|
233
|
+
return brushToString(this.i.dh);
|
|
233
234
|
},
|
|
234
235
|
set: function (v) {
|
|
235
|
-
this.i.
|
|
236
|
+
this.i.dh = stringToBrush(v);
|
|
236
237
|
},
|
|
237
238
|
enumerable: false,
|
|
238
239
|
configurable: true
|
|
@@ -242,10 +243,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
242
243
|
* Gets or sets the id to use for the checkbox.
|
|
243
244
|
*/
|
|
244
245
|
get: function () {
|
|
245
|
-
return this.i.
|
|
246
|
+
return this.i.bv;
|
|
246
247
|
},
|
|
247
248
|
set: function (v) {
|
|
248
|
-
this.i.
|
|
249
|
+
this.i.bv = v;
|
|
249
250
|
},
|
|
250
251
|
enumerable: false,
|
|
251
252
|
configurable: true
|
|
@@ -255,10 +256,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
255
256
|
* Gets or sets the id to use for the checkbox.
|
|
256
257
|
*/
|
|
257
258
|
get: function () {
|
|
258
|
-
return this.i.
|
|
259
|
+
return this.i.bj;
|
|
259
260
|
},
|
|
260
261
|
set: function (v) {
|
|
261
|
-
this.i.
|
|
262
|
+
this.i.bj = v;
|
|
262
263
|
},
|
|
263
264
|
enumerable: false,
|
|
264
265
|
configurable: true
|
|
@@ -268,10 +269,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
268
269
|
* Gets or sets the id to use for the checkbox.
|
|
269
270
|
*/
|
|
270
271
|
get: function () {
|
|
271
|
-
return this.i.
|
|
272
|
+
return this.i.bm;
|
|
272
273
|
},
|
|
273
274
|
set: function (v) {
|
|
274
|
-
this.i.
|
|
275
|
+
this.i.bm = v;
|
|
275
276
|
},
|
|
276
277
|
enumerable: false,
|
|
277
278
|
configurable: true
|
|
@@ -281,10 +282,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
281
282
|
* Gets or sets the flex-grow setting for the button.
|
|
282
283
|
*/
|
|
283
284
|
get: function () {
|
|
284
|
-
return this.i.
|
|
285
|
+
return this.i.bo;
|
|
285
286
|
},
|
|
286
287
|
set: function (v) {
|
|
287
|
-
this.i.
|
|
288
|
+
this.i.bo = v;
|
|
288
289
|
},
|
|
289
290
|
enumerable: false,
|
|
290
291
|
configurable: true
|
|
@@ -294,10 +295,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
294
295
|
* Gets or sets the id to use for the checkbox.
|
|
295
296
|
*/
|
|
296
297
|
get: function () {
|
|
297
|
-
return this.i.
|
|
298
|
+
return this.i.bb;
|
|
298
299
|
},
|
|
299
300
|
set: function (v) {
|
|
300
|
-
this.i.
|
|
301
|
+
this.i.bb = v;
|
|
301
302
|
},
|
|
302
303
|
enumerable: false,
|
|
303
304
|
configurable: true
|
|
@@ -307,10 +308,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
307
308
|
* Gets or sets the id to use for the checkbox.
|
|
308
309
|
*/
|
|
309
310
|
get: function () {
|
|
310
|
-
return this.i.
|
|
311
|
+
return this.i.bd;
|
|
311
312
|
},
|
|
312
313
|
set: function (v) {
|
|
313
|
-
this.i.
|
|
314
|
+
this.i.bd = v;
|
|
314
315
|
},
|
|
315
316
|
enumerable: false,
|
|
316
317
|
configurable: true
|
|
@@ -320,10 +321,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
320
321
|
* Gets or sets TabIndex to use for the checkbox.
|
|
321
322
|
*/
|
|
322
323
|
get: function () {
|
|
323
|
-
return this.i.
|
|
324
|
+
return this.i.at;
|
|
324
325
|
},
|
|
325
326
|
set: function (v) {
|
|
326
|
-
this.i.
|
|
327
|
+
this.i.at = +v;
|
|
327
328
|
},
|
|
328
329
|
enumerable: false,
|
|
329
330
|
configurable: true
|
|
@@ -333,10 +334,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
333
334
|
* Gets or sets the for attribute to use for the label.
|
|
334
335
|
*/
|
|
335
336
|
get: function () {
|
|
336
|
-
return this.i.
|
|
337
|
+
return this.i.bq;
|
|
337
338
|
},
|
|
338
339
|
set: function (v) {
|
|
339
|
-
this.i.
|
|
340
|
+
this.i.bq = v;
|
|
340
341
|
},
|
|
341
342
|
enumerable: false,
|
|
342
343
|
configurable: true
|
|
@@ -346,10 +347,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
346
347
|
* Gets or sets the value of the aria-label attribute.
|
|
347
348
|
*/
|
|
348
349
|
get: function () {
|
|
349
|
-
return this.i.
|
|
350
|
+
return this.i.bf;
|
|
350
351
|
},
|
|
351
352
|
set: function (v) {
|
|
352
|
-
this.i.
|
|
353
|
+
this.i.bf = v;
|
|
353
354
|
},
|
|
354
355
|
enumerable: false,
|
|
355
356
|
configurable: true
|
|
@@ -372,10 +373,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
372
373
|
* Gets or sets whether the label is hovered.
|
|
373
374
|
*/
|
|
374
375
|
get: function () {
|
|
375
|
-
return this.i.
|
|
376
|
+
return this.i.an;
|
|
376
377
|
},
|
|
377
378
|
set: function (v) {
|
|
378
|
-
this.i.
|
|
379
|
+
this.i.an = ensureBool(v);
|
|
379
380
|
},
|
|
380
381
|
enumerable: false,
|
|
381
382
|
configurable: true
|
|
@@ -385,10 +386,10 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
385
386
|
* Gets or sets the value for the label.
|
|
386
387
|
*/
|
|
387
388
|
get: function () {
|
|
388
|
-
return this.i.
|
|
389
|
+
return this.i.ar;
|
|
389
390
|
},
|
|
390
391
|
set: function (v) {
|
|
391
|
-
this.i.
|
|
392
|
+
this.i.ar = ensureBool(v);
|
|
392
393
|
},
|
|
393
394
|
enumerable: false,
|
|
394
395
|
configurable: true
|
|
@@ -417,7 +418,7 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
417
418
|
|
|
418
419
|
*/
|
|
419
420
|
IgxXLabelComponent.prototype.exportVisualModel = function () {
|
|
420
|
-
var iv = this.i.
|
|
421
|
+
var iv = this.i.av();
|
|
421
422
|
return (iv);
|
|
422
423
|
};
|
|
423
424
|
/**
|
|
@@ -425,7 +426,7 @@ var IgxXLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
425
426
|
|
|
426
427
|
*/
|
|
427
428
|
IgxXLabelComponent.prototype.exportSerializedVisualModel = function () {
|
|
428
|
-
var iv = this.i.
|
|
429
|
+
var iv = this.i.bl();
|
|
429
430
|
return (iv);
|
|
430
431
|
};
|
|
431
432
|
IgxXLabelComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxXLabelComponent, deps: [{ token: i0.Renderer2 }, { token: i0.ViewContainerRef }, { token: i0.NgZone }, { token: i0.Injector }, { token: i0.ComponentFactoryResolver }], target: i0.ɵɵFactoryTarget.Component });
|
package/esm5/public_api.js
CHANGED
|
@@ -24,10 +24,18 @@ export * from './lib/LostFocusEventArgs';
|
|
|
24
24
|
export * from './lib/igx-lost-focus-event-args';
|
|
25
25
|
export * from './lib/DateFormats';
|
|
26
26
|
export * from './lib/DatePickerVisualModelExport';
|
|
27
|
+
export * from './lib/igx-color-editor-component';
|
|
28
|
+
export * from './lib/igx-color-editor-panel-component';
|
|
27
29
|
export * from './lib/igx-x-checkbox-component';
|
|
30
|
+
export * from './lib/igx-color-editor-dynamic-module';
|
|
31
|
+
export * from './lib/igx-color-editor-module';
|
|
32
|
+
export * from './lib/igx-color-editor-panel-dynamic-module';
|
|
33
|
+
export * from './lib/igx-color-editor-panel-module';
|
|
28
34
|
export * from './lib/igx-x-checkbox-dynamic-module';
|
|
29
35
|
export * from './lib/igx-x-checkbox-module';
|
|
30
36
|
export * from './lib/igx-x-ripple-component';
|
|
37
|
+
export * from './lib/igx-multi-slider-dynamic-module';
|
|
38
|
+
export * from './lib/igx-multi-slider-module';
|
|
31
39
|
export * from './lib/igx-x-ripple-dynamic-module';
|
|
32
40
|
export * from './lib/igx-x-ripple-module';
|
|
33
41
|
export * from './lib/igx-x-button-component';
|
|
@@ -54,7 +62,10 @@ export * from './lib/igx-x-prefix-component';
|
|
|
54
62
|
export * from './lib/igx-x-suffix-component';
|
|
55
63
|
export * from './lib/NativeUIXInputsFactory';
|
|
56
64
|
export * from './lib/XComponentBridge';
|
|
65
|
+
export * from './lib/MultiSliderBridge';
|
|
57
66
|
export * from './lib/XButtonBridge';
|
|
67
|
+
export * from './lib/XButtonGroupBridge';
|
|
68
|
+
export * from './lib/ColorEditorBridge';
|
|
58
69
|
export * from './lib/XCheckboxBridge';
|
|
59
70
|
export * from './lib/XIconButtonBridge';
|
|
60
71
|
export * from './lib/XInputBridge';
|
|
@@ -64,6 +75,10 @@ export * from './lib/KEYCODES';
|
|
|
64
75
|
export * from './lib/MaskOptions';
|
|
65
76
|
export * from './lib/Replaced';
|
|
66
77
|
export * from './lib/MaskParsingService';
|
|
78
|
+
export * from './lib/ColorEditorPanelView';
|
|
79
|
+
export * from './lib/MultiSliderView';
|
|
80
|
+
export * from './lib/MultiSliderCursor';
|
|
81
|
+
export * from './lib/ColorEditorView';
|
|
67
82
|
export * from './lib/InputGroupView';
|
|
68
83
|
export * from './lib/ElevationHelper';
|
|
69
84
|
export * from './lib/ButtonGroupView';
|
|
@@ -75,6 +90,46 @@ export * from './lib/IconView';
|
|
|
75
90
|
export * from './lib/ButtonView';
|
|
76
91
|
export * from './lib/RippleView';
|
|
77
92
|
export * from './lib/CheckboxView';
|
|
93
|
+
export * from './lib/ColorEditor';
|
|
94
|
+
export * from './lib/ColorEditorGotFocusEventArgs';
|
|
95
|
+
export * from './lib/igx-color-editor-got-focus-event-args';
|
|
96
|
+
export * from './lib/ColorEditorLostFocusEventArgs';
|
|
97
|
+
export * from './lib/igx-color-editor-lost-focus-event-args';
|
|
98
|
+
export * from './lib/ColorEditorPanel';
|
|
99
|
+
export * from './lib/ColorEditorPanelClosedEventArgs';
|
|
100
|
+
export * from './lib/igx-color-editor-panel-closed-event-args';
|
|
101
|
+
export * from './lib/ColorEditorPanelSelectedValueChangedEventArgs';
|
|
102
|
+
export * from './lib/igx-color-editor-panel-selected-value-changed-event-args';
|
|
103
|
+
export * from './lib/ISliderTrackOwner';
|
|
104
|
+
export * from './lib/MultiSlider';
|
|
105
|
+
export * from './lib/igx-multi-slider-component';
|
|
106
|
+
export * from './lib/MultiSliderThumbValueChangingEventArgs';
|
|
107
|
+
export * from './lib/igx-multi-slider-thumb-value-changing-event-args';
|
|
108
|
+
export * from './lib/MultiSliderYValueChangingEventArgs';
|
|
109
|
+
export * from './lib/igx-multi-slider-y-value-changing-event-args';
|
|
110
|
+
export * from './lib/MultiSliderHitInfo';
|
|
111
|
+
export * from './lib/MultiSliderResolvingToolTipValueEventArgs';
|
|
112
|
+
export * from './lib/igx-multi-slider-resolving-tool-tip-value-event-args';
|
|
113
|
+
export * from './lib/igx-multi-slider-thumb-collection';
|
|
114
|
+
export * from './lib/MultiSliderThumbCollection';
|
|
115
|
+
export * from './lib/IMultiSliderTrackBarVisual';
|
|
116
|
+
export * from './lib/DefaultMultiSliderTrackBarVisual';
|
|
117
|
+
export * from './lib/IMultiSliderTrackRangeVisual';
|
|
118
|
+
export * from './lib/DefaultMultiSliderTrackRangeVisual';
|
|
119
|
+
export * from './lib/IMultiSliderTrackShadeVisual';
|
|
120
|
+
export * from './lib/MultiSliderTrackShadeOrientation';
|
|
121
|
+
export * from './lib/DefaultMultiTrackShadeVisual';
|
|
122
|
+
export * from './lib/MultiSliderThumb';
|
|
123
|
+
export * from './lib/igx-multi-slider-thumb';
|
|
124
|
+
export * from './lib/MultiSliderThumbRangePosition';
|
|
125
|
+
export * from './lib/IMultiSliderTrackThumbCalloutVisual';
|
|
126
|
+
export * from './lib/DefaultMultiSliderTrackThumbCalloutVisual';
|
|
127
|
+
export * from './lib/MultiSliderTrackThumbRange';
|
|
128
|
+
export * from './lib/igx-multi-slider-track-thumb-range';
|
|
129
|
+
export * from './lib/IMultiSliderTrackThumbVisual';
|
|
130
|
+
export * from './lib/DefaultMultiSliderTrackThumbVisual';
|
|
131
|
+
export * from './lib/MultiSliderOrientation';
|
|
132
|
+
export * from './lib/MultiSliderVisualArea';
|
|
78
133
|
export * from './lib/XSuffix';
|
|
79
134
|
export * from './lib/SuffixShiftType';
|
|
80
135
|
export * from './lib/XPrefix';
|