igniteui-angular-inputs 18.1.1 → 18.2.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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
|
@@ -188,10 +188,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
188
188
|
* Gets or sets the color to use for the check mark when the checkbox is checked.
|
|
189
189
|
*/
|
|
190
190
|
get: function () {
|
|
191
|
-
return brushToString(this.i.
|
|
191
|
+
return brushToString(this.i.ni);
|
|
192
192
|
},
|
|
193
193
|
set: function (v) {
|
|
194
|
-
this.i.
|
|
194
|
+
this.i.ni = stringToBrush(v);
|
|
195
195
|
},
|
|
196
196
|
enumerable: false,
|
|
197
197
|
configurable: true
|
|
@@ -201,10 +201,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
201
201
|
* Gets or sets the color to use for the check mark when the checkbox is checked.
|
|
202
202
|
*/
|
|
203
203
|
get: function () {
|
|
204
|
-
return brushToString(this.i.
|
|
204
|
+
return brushToString(this.i.nt);
|
|
205
205
|
},
|
|
206
206
|
set: function (v) {
|
|
207
|
-
this.i.
|
|
207
|
+
this.i.nt = stringToBrush(v);
|
|
208
208
|
},
|
|
209
209
|
enumerable: false,
|
|
210
210
|
configurable: true
|
|
@@ -214,10 +214,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
214
214
|
* Gets or sets the color to use for the check mark when the checkbox is checked.
|
|
215
215
|
*/
|
|
216
216
|
get: function () {
|
|
217
|
-
return brushToString(this.i.
|
|
217
|
+
return brushToString(this.i.nq);
|
|
218
218
|
},
|
|
219
219
|
set: function (v) {
|
|
220
|
-
this.i.
|
|
220
|
+
this.i.nq = stringToBrush(v);
|
|
221
221
|
},
|
|
222
222
|
enumerable: false,
|
|
223
223
|
configurable: true
|
|
@@ -227,10 +227,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
227
227
|
* Gets or sets the color to use for the check mark when the checkbox is checked.
|
|
228
228
|
*/
|
|
229
229
|
get: function () {
|
|
230
|
-
return brushToString(this.i.
|
|
230
|
+
return brushToString(this.i.ng);
|
|
231
231
|
},
|
|
232
232
|
set: function (v) {
|
|
233
|
-
this.i.
|
|
233
|
+
this.i.ng = stringToBrush(v);
|
|
234
234
|
},
|
|
235
235
|
enumerable: false,
|
|
236
236
|
configurable: true
|
|
@@ -279,77 +279,77 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
279
279
|
* Gets or sets the color to use for the ripple when the button is pressed.
|
|
280
280
|
*/
|
|
281
281
|
get: function () {
|
|
282
|
-
return brushToString(this.i.
|
|
282
|
+
return brushToString(this.i.nr);
|
|
283
283
|
},
|
|
284
284
|
set: function (v) {
|
|
285
|
-
this.i.
|
|
285
|
+
this.i.nr = stringToBrush(v);
|
|
286
286
|
},
|
|
287
287
|
enumerable: false,
|
|
288
288
|
configurable: true
|
|
289
289
|
});
|
|
290
290
|
Object.defineProperty(IgxXButtonComponent.prototype, "actualCornerRadiusBottomRight", {
|
|
291
291
|
get: function () {
|
|
292
|
-
return this.i.
|
|
292
|
+
return this.i.ks ? this.i.ks.c : NaN;
|
|
293
293
|
},
|
|
294
294
|
set: function (v) {
|
|
295
295
|
this.ensureActualCornerRadius();
|
|
296
|
-
this.i.
|
|
297
|
-
this.i.
|
|
296
|
+
this.i.ks.c = +v;
|
|
297
|
+
this.i.ks = this.i.ks;
|
|
298
298
|
},
|
|
299
299
|
enumerable: false,
|
|
300
300
|
configurable: true
|
|
301
301
|
});
|
|
302
302
|
Object.defineProperty(IgxXButtonComponent.prototype, "actualCornerRadiusBottomLeft", {
|
|
303
303
|
get: function () {
|
|
304
|
-
return this.i.
|
|
304
|
+
return this.i.ks ? this.i.ks.b : NaN;
|
|
305
305
|
},
|
|
306
306
|
set: function (v) {
|
|
307
307
|
this.ensureActualCornerRadius();
|
|
308
|
-
this.i.
|
|
309
|
-
this.i.
|
|
308
|
+
this.i.ks.b = +v;
|
|
309
|
+
this.i.ks = this.i.ks;
|
|
310
310
|
},
|
|
311
311
|
enumerable: false,
|
|
312
312
|
configurable: true
|
|
313
313
|
});
|
|
314
314
|
Object.defineProperty(IgxXButtonComponent.prototype, "actualCornerRadiusTopLeft", {
|
|
315
315
|
get: function () {
|
|
316
|
-
return this.i.
|
|
316
|
+
return this.i.ks ? this.i.ks.d : NaN;
|
|
317
317
|
},
|
|
318
318
|
set: function (v) {
|
|
319
319
|
this.ensureActualCornerRadius();
|
|
320
|
-
this.i.
|
|
321
|
-
this.i.
|
|
320
|
+
this.i.ks.d = +v;
|
|
321
|
+
this.i.ks = this.i.ks;
|
|
322
322
|
},
|
|
323
323
|
enumerable: false,
|
|
324
324
|
configurable: true
|
|
325
325
|
});
|
|
326
326
|
Object.defineProperty(IgxXButtonComponent.prototype, "actualCornerRadiusTopRight", {
|
|
327
327
|
get: function () {
|
|
328
|
-
return this.i.
|
|
328
|
+
return this.i.ks ? this.i.ks.e : NaN;
|
|
329
329
|
},
|
|
330
330
|
set: function (v) {
|
|
331
331
|
this.ensureActualCornerRadius();
|
|
332
|
-
this.i.
|
|
333
|
-
this.i.
|
|
332
|
+
this.i.ks.e = +v;
|
|
333
|
+
this.i.ks = this.i.ks;
|
|
334
334
|
},
|
|
335
335
|
enumerable: false,
|
|
336
336
|
configurable: true
|
|
337
337
|
});
|
|
338
338
|
IgxXButtonComponent.prototype.ensureActualCornerRadius = function () {
|
|
339
|
-
if (this.i.
|
|
339
|
+
if (this.i.ks) {
|
|
340
340
|
return;
|
|
341
341
|
}
|
|
342
|
-
this.i.
|
|
342
|
+
this.i.ks = new CornerRadius(2);
|
|
343
343
|
};
|
|
344
344
|
Object.defineProperty(IgxXButtonComponent.prototype, "actualBackgroundColor", {
|
|
345
345
|
/**
|
|
346
346
|
* Gets the color to use for the actual background.
|
|
347
347
|
*/
|
|
348
348
|
get: function () {
|
|
349
|
-
return brushToString(this.i.
|
|
349
|
+
return brushToString(this.i.nh);
|
|
350
350
|
},
|
|
351
351
|
set: function (v) {
|
|
352
|
-
this.i.
|
|
352
|
+
this.i.nh = stringToBrush(v);
|
|
353
353
|
},
|
|
354
354
|
enumerable: false,
|
|
355
355
|
configurable: true
|
|
@@ -359,10 +359,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
359
359
|
* Gets the actual color to use for the disabled background of the button.
|
|
360
360
|
*/
|
|
361
361
|
get: function () {
|
|
362
|
-
return brushToString(this.i.
|
|
362
|
+
return brushToString(this.i.nj);
|
|
363
363
|
},
|
|
364
364
|
set: function (v) {
|
|
365
|
-
this.i.
|
|
365
|
+
this.i.nj = stringToBrush(v);
|
|
366
366
|
},
|
|
367
367
|
enumerable: false,
|
|
368
368
|
configurable: true
|
|
@@ -372,10 +372,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
372
372
|
* Gets the actual color to use for the disabled border of the button.
|
|
373
373
|
*/
|
|
374
374
|
get: function () {
|
|
375
|
-
return brushToString(this.i.
|
|
375
|
+
return brushToString(this.i.nk);
|
|
376
376
|
},
|
|
377
377
|
set: function (v) {
|
|
378
|
-
this.i.
|
|
378
|
+
this.i.nk = stringToBrush(v);
|
|
379
379
|
},
|
|
380
380
|
enumerable: false,
|
|
381
381
|
configurable: true
|
|
@@ -385,10 +385,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
385
385
|
* Gets the actual color to use for the disabled text of the button.
|
|
386
386
|
*/
|
|
387
387
|
get: function () {
|
|
388
|
-
return brushToString(this.i.
|
|
388
|
+
return brushToString(this.i.nl);
|
|
389
389
|
},
|
|
390
390
|
set: function (v) {
|
|
391
|
-
this.i.
|
|
391
|
+
this.i.nl = stringToBrush(v);
|
|
392
392
|
},
|
|
393
393
|
enumerable: false,
|
|
394
394
|
configurable: true
|
|
@@ -424,10 +424,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
424
424
|
* Gets the color to use for the actual background.
|
|
425
425
|
*/
|
|
426
426
|
get: function () {
|
|
427
|
-
return brushToString(this.i.
|
|
427
|
+
return brushToString(this.i.ns);
|
|
428
428
|
},
|
|
429
429
|
set: function (v) {
|
|
430
|
-
this.i.
|
|
430
|
+
this.i.ns = stringToBrush(v);
|
|
431
431
|
},
|
|
432
432
|
enumerable: false,
|
|
433
433
|
configurable: true
|
|
@@ -437,10 +437,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
437
437
|
* Gets the color to use for the actual background.
|
|
438
438
|
*/
|
|
439
439
|
get: function () {
|
|
440
|
-
return brushToString(this.i.
|
|
440
|
+
return brushToString(this.i.np);
|
|
441
441
|
},
|
|
442
442
|
set: function (v) {
|
|
443
|
-
this.i.
|
|
443
|
+
this.i.np = stringToBrush(v);
|
|
444
444
|
},
|
|
445
445
|
enumerable: false,
|
|
446
446
|
configurable: true
|
|
@@ -450,10 +450,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
450
450
|
* Gets the color to use for the actual background.
|
|
451
451
|
*/
|
|
452
452
|
get: function () {
|
|
453
|
-
return brushToString(this.i.
|
|
453
|
+
return brushToString(this.i.nm);
|
|
454
454
|
},
|
|
455
455
|
set: function (v) {
|
|
456
|
-
this.i.
|
|
456
|
+
this.i.nm = stringToBrush(v);
|
|
457
457
|
},
|
|
458
458
|
enumerable: false,
|
|
459
459
|
configurable: true
|
|
@@ -463,10 +463,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
463
463
|
* Gets the actual color to use for the focused text.
|
|
464
464
|
*/
|
|
465
465
|
get: function () {
|
|
466
|
-
return brushToString(this.i.
|
|
466
|
+
return brushToString(this.i.nn);
|
|
467
467
|
},
|
|
468
468
|
set: function (v) {
|
|
469
|
-
this.i.
|
|
469
|
+
this.i.nn = stringToBrush(v);
|
|
470
470
|
},
|
|
471
471
|
enumerable: false,
|
|
472
472
|
configurable: true
|
|
@@ -476,10 +476,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
476
476
|
* Gets the hover color to use for the actual background.
|
|
477
477
|
*/
|
|
478
478
|
get: function () {
|
|
479
|
-
return brushToString(this.i.
|
|
479
|
+
return brushToString(this.i.no);
|
|
480
480
|
},
|
|
481
481
|
set: function (v) {
|
|
482
|
-
this.i.
|
|
482
|
+
this.i.no = stringToBrush(v);
|
|
483
483
|
},
|
|
484
484
|
enumerable: false,
|
|
485
485
|
configurable: true
|
|
@@ -502,10 +502,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
502
502
|
* Gets or sets the color to use for the background of the button when the type is raised.
|
|
503
503
|
*/
|
|
504
504
|
get: function () {
|
|
505
|
-
return brushToString(this.i.
|
|
505
|
+
return brushToString(this.i.qx);
|
|
506
506
|
},
|
|
507
507
|
set: function (v) {
|
|
508
|
-
this.i.
|
|
508
|
+
this.i.qx = stringToBrush(v);
|
|
509
509
|
},
|
|
510
510
|
enumerable: false,
|
|
511
511
|
configurable: true
|
|
@@ -515,10 +515,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
515
515
|
* Gets or sets the color to use for the disabled background of the button when the type is raised.
|
|
516
516
|
*/
|
|
517
517
|
get: function () {
|
|
518
|
-
return brushToString(this.i.
|
|
518
|
+
return brushToString(this.i.qz);
|
|
519
519
|
},
|
|
520
520
|
set: function (v) {
|
|
521
|
-
this.i.
|
|
521
|
+
this.i.qz = stringToBrush(v);
|
|
522
522
|
},
|
|
523
523
|
enumerable: false,
|
|
524
524
|
configurable: true
|
|
@@ -528,10 +528,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
528
528
|
* Gets or sets the color to use for the disabled border of the button when the type is raised.
|
|
529
529
|
*/
|
|
530
530
|
get: function () {
|
|
531
|
-
return brushToString(this.i.
|
|
531
|
+
return brushToString(this.i.q0);
|
|
532
532
|
},
|
|
533
533
|
set: function (v) {
|
|
534
|
-
this.i.
|
|
534
|
+
this.i.q0 = stringToBrush(v);
|
|
535
535
|
},
|
|
536
536
|
enumerable: false,
|
|
537
537
|
configurable: true
|
|
@@ -541,10 +541,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
541
541
|
* Gets or sets the color to use for the disabled text of the button when the type is raised.
|
|
542
542
|
*/
|
|
543
543
|
get: function () {
|
|
544
|
-
return brushToString(this.i.
|
|
544
|
+
return brushToString(this.i.q1);
|
|
545
545
|
},
|
|
546
546
|
set: function (v) {
|
|
547
|
-
this.i.
|
|
547
|
+
this.i.q1 = stringToBrush(v);
|
|
548
548
|
},
|
|
549
549
|
enumerable: false,
|
|
550
550
|
configurable: true
|
|
@@ -567,10 +567,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
567
567
|
* Gets or sets the hover color to use for the background of the button when the type is raised.
|
|
568
568
|
*/
|
|
569
569
|
get: function () {
|
|
570
|
-
return brushToString(this.i.
|
|
570
|
+
return brushToString(this.i.q4);
|
|
571
571
|
},
|
|
572
572
|
set: function (v) {
|
|
573
|
-
this.i.
|
|
573
|
+
this.i.q4 = stringToBrush(v);
|
|
574
574
|
},
|
|
575
575
|
enumerable: false,
|
|
576
576
|
configurable: true
|
|
@@ -580,10 +580,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
580
580
|
* Gets or sets the border color to use for the button when the type is raised.
|
|
581
581
|
*/
|
|
582
582
|
get: function () {
|
|
583
|
-
return brushToString(this.i.
|
|
583
|
+
return brushToString(this.i.qy);
|
|
584
584
|
},
|
|
585
585
|
set: function (v) {
|
|
586
|
-
this.i.
|
|
586
|
+
this.i.qy = stringToBrush(v);
|
|
587
587
|
},
|
|
588
588
|
enumerable: false,
|
|
589
589
|
configurable: true
|
|
@@ -642,67 +642,67 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
642
642
|
});
|
|
643
643
|
Object.defineProperty(IgxXButtonComponent.prototype, "raisedCornerRadiusBottomRight", {
|
|
644
644
|
get: function () {
|
|
645
|
-
return this.i.
|
|
645
|
+
return this.i.k5 ? this.i.k5.c : NaN;
|
|
646
646
|
},
|
|
647
647
|
set: function (v) {
|
|
648
648
|
this.ensureRaisedCornerRadius();
|
|
649
|
-
this.i.
|
|
650
|
-
this.i.
|
|
649
|
+
this.i.k5.c = +v;
|
|
650
|
+
this.i.k5 = this.i.k5;
|
|
651
651
|
},
|
|
652
652
|
enumerable: false,
|
|
653
653
|
configurable: true
|
|
654
654
|
});
|
|
655
655
|
Object.defineProperty(IgxXButtonComponent.prototype, "raisedCornerRadiusBottomLeft", {
|
|
656
656
|
get: function () {
|
|
657
|
-
return this.i.
|
|
657
|
+
return this.i.k5 ? this.i.k5.b : NaN;
|
|
658
658
|
},
|
|
659
659
|
set: function (v) {
|
|
660
660
|
this.ensureRaisedCornerRadius();
|
|
661
|
-
this.i.
|
|
662
|
-
this.i.
|
|
661
|
+
this.i.k5.b = +v;
|
|
662
|
+
this.i.k5 = this.i.k5;
|
|
663
663
|
},
|
|
664
664
|
enumerable: false,
|
|
665
665
|
configurable: true
|
|
666
666
|
});
|
|
667
667
|
Object.defineProperty(IgxXButtonComponent.prototype, "raisedCornerRadiusTopLeft", {
|
|
668
668
|
get: function () {
|
|
669
|
-
return this.i.
|
|
669
|
+
return this.i.k5 ? this.i.k5.d : NaN;
|
|
670
670
|
},
|
|
671
671
|
set: function (v) {
|
|
672
672
|
this.ensureRaisedCornerRadius();
|
|
673
|
-
this.i.
|
|
674
|
-
this.i.
|
|
673
|
+
this.i.k5.d = +v;
|
|
674
|
+
this.i.k5 = this.i.k5;
|
|
675
675
|
},
|
|
676
676
|
enumerable: false,
|
|
677
677
|
configurable: true
|
|
678
678
|
});
|
|
679
679
|
Object.defineProperty(IgxXButtonComponent.prototype, "raisedCornerRadiusTopRight", {
|
|
680
680
|
get: function () {
|
|
681
|
-
return this.i.
|
|
681
|
+
return this.i.k5 ? this.i.k5.e : NaN;
|
|
682
682
|
},
|
|
683
683
|
set: function (v) {
|
|
684
684
|
this.ensureRaisedCornerRadius();
|
|
685
|
-
this.i.
|
|
686
|
-
this.i.
|
|
685
|
+
this.i.k5.e = +v;
|
|
686
|
+
this.i.k5 = this.i.k5;
|
|
687
687
|
},
|
|
688
688
|
enumerable: false,
|
|
689
689
|
configurable: true
|
|
690
690
|
});
|
|
691
691
|
IgxXButtonComponent.prototype.ensureRaisedCornerRadius = function () {
|
|
692
|
-
if (this.i.
|
|
692
|
+
if (this.i.k5) {
|
|
693
693
|
return;
|
|
694
694
|
}
|
|
695
|
-
this.i.
|
|
695
|
+
this.i.k5 = new CornerRadius(2);
|
|
696
696
|
};
|
|
697
697
|
Object.defineProperty(IgxXButtonComponent.prototype, "raisedRippleColor", {
|
|
698
698
|
/**
|
|
699
699
|
* Gets or sets the color to use for the background when the button is pressed and the type is floating action button.
|
|
700
700
|
*/
|
|
701
701
|
get: function () {
|
|
702
|
-
return brushToString(this.i.
|
|
702
|
+
return brushToString(this.i.q6);
|
|
703
703
|
},
|
|
704
704
|
set: function (v) {
|
|
705
|
-
this.i.
|
|
705
|
+
this.i.q6 = stringToBrush(v);
|
|
706
706
|
},
|
|
707
707
|
enumerable: false,
|
|
708
708
|
configurable: true
|
|
@@ -712,10 +712,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
712
712
|
* Gets or sets the color to use for the background of the button when the type is flat.
|
|
713
713
|
*/
|
|
714
714
|
get: function () {
|
|
715
|
-
return brushToString(this.i.
|
|
715
|
+
return brushToString(this.i.pw);
|
|
716
716
|
},
|
|
717
717
|
set: function (v) {
|
|
718
|
-
this.i.
|
|
718
|
+
this.i.pw = stringToBrush(v);
|
|
719
719
|
},
|
|
720
720
|
enumerable: false,
|
|
721
721
|
configurable: true
|
|
@@ -725,10 +725,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
725
725
|
* Gets or sets the color to use for the disabled background of the button when the type is flat.
|
|
726
726
|
*/
|
|
727
727
|
get: function () {
|
|
728
|
-
return brushToString(this.i.
|
|
728
|
+
return brushToString(this.i.py);
|
|
729
729
|
},
|
|
730
730
|
set: function (v) {
|
|
731
|
-
this.i.
|
|
731
|
+
this.i.py = stringToBrush(v);
|
|
732
732
|
},
|
|
733
733
|
enumerable: false,
|
|
734
734
|
configurable: true
|
|
@@ -738,10 +738,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
738
738
|
* Gets or sets the color to use for the disabled border of the button when the type is flat.
|
|
739
739
|
*/
|
|
740
740
|
get: function () {
|
|
741
|
-
return brushToString(this.i.
|
|
741
|
+
return brushToString(this.i.pz);
|
|
742
742
|
},
|
|
743
743
|
set: function (v) {
|
|
744
|
-
this.i.
|
|
744
|
+
this.i.pz = stringToBrush(v);
|
|
745
745
|
},
|
|
746
746
|
enumerable: false,
|
|
747
747
|
configurable: true
|
|
@@ -751,10 +751,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
751
751
|
* Gets or sets the color to use for the disabled text of the button when the type is flat.
|
|
752
752
|
*/
|
|
753
753
|
get: function () {
|
|
754
|
-
return brushToString(this.i.
|
|
754
|
+
return brushToString(this.i.p0);
|
|
755
755
|
},
|
|
756
756
|
set: function (v) {
|
|
757
|
-
this.i.
|
|
757
|
+
this.i.p0 = stringToBrush(v);
|
|
758
758
|
},
|
|
759
759
|
enumerable: false,
|
|
760
760
|
configurable: true
|
|
@@ -777,10 +777,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
777
777
|
* Gets or sets the hover color to use for the background of the button when the type is flat.
|
|
778
778
|
*/
|
|
779
779
|
get: function () {
|
|
780
|
-
return brushToString(this.i.
|
|
780
|
+
return brushToString(this.i.p3);
|
|
781
781
|
},
|
|
782
782
|
set: function (v) {
|
|
783
|
-
this.i.
|
|
783
|
+
this.i.p3 = stringToBrush(v);
|
|
784
784
|
},
|
|
785
785
|
enumerable: false,
|
|
786
786
|
configurable: true
|
|
@@ -790,10 +790,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
790
790
|
* Gets or sets the border color to use for the button when the type is flat.
|
|
791
791
|
*/
|
|
792
792
|
get: function () {
|
|
793
|
-
return brushToString(this.i.
|
|
793
|
+
return brushToString(this.i.px);
|
|
794
794
|
},
|
|
795
795
|
set: function (v) {
|
|
796
|
-
this.i.
|
|
796
|
+
this.i.px = stringToBrush(v);
|
|
797
797
|
},
|
|
798
798
|
enumerable: false,
|
|
799
799
|
configurable: true
|
|
@@ -842,10 +842,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
842
842
|
* Gets or sets the color to use for the background when the button is pressed and the type is floating action button.
|
|
843
843
|
*/
|
|
844
844
|
get: function () {
|
|
845
|
-
return brushToString(this.i.
|
|
845
|
+
return brushToString(this.i.p5);
|
|
846
846
|
},
|
|
847
847
|
set: function (v) {
|
|
848
|
-
this.i.
|
|
848
|
+
this.i.p5 = stringToBrush(v);
|
|
849
849
|
},
|
|
850
850
|
enumerable: false,
|
|
851
851
|
configurable: true
|
|
@@ -855,10 +855,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
855
855
|
* Gets or sets the color to use for the text of the button when type is flat.
|
|
856
856
|
*/
|
|
857
857
|
get: function () {
|
|
858
|
-
return brushToString(this.i.
|
|
858
|
+
return brushToString(this.i.p6);
|
|
859
859
|
},
|
|
860
860
|
set: function (v) {
|
|
861
|
-
this.i.
|
|
861
|
+
this.i.p6 = stringToBrush(v);
|
|
862
862
|
},
|
|
863
863
|
enumerable: false,
|
|
864
864
|
configurable: true
|
|
@@ -868,10 +868,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
868
868
|
* Gets or sets the color to use for the hovered text of the button when type is flat.
|
|
869
869
|
*/
|
|
870
870
|
get: function () {
|
|
871
|
-
return brushToString(this.i.
|
|
871
|
+
return brushToString(this.i.p4);
|
|
872
872
|
},
|
|
873
873
|
set: function (v) {
|
|
874
|
-
this.i.
|
|
874
|
+
this.i.p4 = stringToBrush(v);
|
|
875
875
|
},
|
|
876
876
|
enumerable: false,
|
|
877
877
|
configurable: true
|
|
@@ -881,10 +881,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
881
881
|
* Gets or sets the color to use for the backround the button when it is focused and flat.
|
|
882
882
|
*/
|
|
883
883
|
get: function () {
|
|
884
|
-
return brushToString(this.i.
|
|
884
|
+
return brushToString(this.i.p1);
|
|
885
885
|
},
|
|
886
886
|
set: function (v) {
|
|
887
|
-
this.i.
|
|
887
|
+
this.i.p1 = stringToBrush(v);
|
|
888
888
|
},
|
|
889
889
|
enumerable: false,
|
|
890
890
|
configurable: true
|
|
@@ -894,10 +894,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
894
894
|
* Gets or sets the color to use for the text the button when it is focused and flat.
|
|
895
895
|
*/
|
|
896
896
|
get: function () {
|
|
897
|
-
return brushToString(this.i.
|
|
897
|
+
return brushToString(this.i.p2);
|
|
898
898
|
},
|
|
899
899
|
set: function (v) {
|
|
900
|
-
this.i.
|
|
900
|
+
this.i.p2 = stringToBrush(v);
|
|
901
901
|
},
|
|
902
902
|
enumerable: false,
|
|
903
903
|
configurable: true
|
|
@@ -917,67 +917,67 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
917
917
|
});
|
|
918
918
|
Object.defineProperty(IgxXButtonComponent.prototype, "flatCornerRadiusBottomRight", {
|
|
919
919
|
get: function () {
|
|
920
|
-
return this.i.
|
|
920
|
+
return this.i.k1 ? this.i.k1.c : NaN;
|
|
921
921
|
},
|
|
922
922
|
set: function (v) {
|
|
923
923
|
this.ensureFlatCornerRadius();
|
|
924
|
-
this.i.
|
|
925
|
-
this.i.
|
|
924
|
+
this.i.k1.c = +v;
|
|
925
|
+
this.i.k1 = this.i.k1;
|
|
926
926
|
},
|
|
927
927
|
enumerable: false,
|
|
928
928
|
configurable: true
|
|
929
929
|
});
|
|
930
930
|
Object.defineProperty(IgxXButtonComponent.prototype, "flatCornerRadiusBottomLeft", {
|
|
931
931
|
get: function () {
|
|
932
|
-
return this.i.
|
|
932
|
+
return this.i.k1 ? this.i.k1.b : NaN;
|
|
933
933
|
},
|
|
934
934
|
set: function (v) {
|
|
935
935
|
this.ensureFlatCornerRadius();
|
|
936
|
-
this.i.
|
|
937
|
-
this.i.
|
|
936
|
+
this.i.k1.b = +v;
|
|
937
|
+
this.i.k1 = this.i.k1;
|
|
938
938
|
},
|
|
939
939
|
enumerable: false,
|
|
940
940
|
configurable: true
|
|
941
941
|
});
|
|
942
942
|
Object.defineProperty(IgxXButtonComponent.prototype, "flatCornerRadiusTopLeft", {
|
|
943
943
|
get: function () {
|
|
944
|
-
return this.i.
|
|
944
|
+
return this.i.k1 ? this.i.k1.d : NaN;
|
|
945
945
|
},
|
|
946
946
|
set: function (v) {
|
|
947
947
|
this.ensureFlatCornerRadius();
|
|
948
|
-
this.i.
|
|
949
|
-
this.i.
|
|
948
|
+
this.i.k1.d = +v;
|
|
949
|
+
this.i.k1 = this.i.k1;
|
|
950
950
|
},
|
|
951
951
|
enumerable: false,
|
|
952
952
|
configurable: true
|
|
953
953
|
});
|
|
954
954
|
Object.defineProperty(IgxXButtonComponent.prototype, "flatCornerRadiusTopRight", {
|
|
955
955
|
get: function () {
|
|
956
|
-
return this.i.
|
|
956
|
+
return this.i.k1 ? this.i.k1.e : NaN;
|
|
957
957
|
},
|
|
958
958
|
set: function (v) {
|
|
959
959
|
this.ensureFlatCornerRadius();
|
|
960
|
-
this.i.
|
|
961
|
-
this.i.
|
|
960
|
+
this.i.k1.e = +v;
|
|
961
|
+
this.i.k1 = this.i.k1;
|
|
962
962
|
},
|
|
963
963
|
enumerable: false,
|
|
964
964
|
configurable: true
|
|
965
965
|
});
|
|
966
966
|
IgxXButtonComponent.prototype.ensureFlatCornerRadius = function () {
|
|
967
|
-
if (this.i.
|
|
967
|
+
if (this.i.k1) {
|
|
968
968
|
return;
|
|
969
969
|
}
|
|
970
|
-
this.i.
|
|
970
|
+
this.i.k1 = new CornerRadius(2);
|
|
971
971
|
};
|
|
972
972
|
Object.defineProperty(IgxXButtonComponent.prototype, "backgroundColor", {
|
|
973
973
|
/**
|
|
974
974
|
* Gets or sets the color to use for the background when the button regardless of type.
|
|
975
975
|
*/
|
|
976
976
|
get: function () {
|
|
977
|
-
return brushToString(this.i.
|
|
977
|
+
return brushToString(this.i.nu);
|
|
978
978
|
},
|
|
979
979
|
set: function (v) {
|
|
980
|
-
this.i.
|
|
980
|
+
this.i.nu = stringToBrush(v);
|
|
981
981
|
},
|
|
982
982
|
enumerable: false,
|
|
983
983
|
configurable: true
|
|
@@ -987,10 +987,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
987
987
|
* Gets or sets the color to use for the disabled background of the button when the type is disabled.
|
|
988
988
|
*/
|
|
989
989
|
get: function () {
|
|
990
|
-
return brushToString(this.i.
|
|
990
|
+
return brushToString(this.i.pi);
|
|
991
991
|
},
|
|
992
992
|
set: function (v) {
|
|
993
|
-
this.i.
|
|
993
|
+
this.i.pi = stringToBrush(v);
|
|
994
994
|
},
|
|
995
995
|
enumerable: false,
|
|
996
996
|
configurable: true
|
|
@@ -1000,10 +1000,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1000
1000
|
* Gets or sets the color to use for the disabled border of the button when the type is raised.
|
|
1001
1001
|
*/
|
|
1002
1002
|
get: function () {
|
|
1003
|
-
return brushToString(this.i.
|
|
1003
|
+
return brushToString(this.i.pj);
|
|
1004
1004
|
},
|
|
1005
1005
|
set: function (v) {
|
|
1006
|
-
this.i.
|
|
1006
|
+
this.i.pj = stringToBrush(v);
|
|
1007
1007
|
},
|
|
1008
1008
|
enumerable: false,
|
|
1009
1009
|
configurable: true
|
|
@@ -1013,10 +1013,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1013
1013
|
* Gets or sets the color to use for the disabled text of the button when the type is raised.
|
|
1014
1014
|
*/
|
|
1015
1015
|
get: function () {
|
|
1016
|
-
return brushToString(this.i.
|
|
1016
|
+
return brushToString(this.i.pk);
|
|
1017
1017
|
},
|
|
1018
1018
|
set: function (v) {
|
|
1019
|
-
this.i.
|
|
1019
|
+
this.i.pk = stringToBrush(v);
|
|
1020
1020
|
},
|
|
1021
1021
|
enumerable: false,
|
|
1022
1022
|
configurable: true
|
|
@@ -1052,10 +1052,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1052
1052
|
* Gets or sets the hover color to use for the background of the button when the type is hovered.
|
|
1053
1053
|
*/
|
|
1054
1054
|
get: function () {
|
|
1055
|
-
return brushToString(this.i.
|
|
1055
|
+
return brushToString(this.i.p9);
|
|
1056
1056
|
},
|
|
1057
1057
|
set: function (v) {
|
|
1058
|
-
this.i.
|
|
1058
|
+
this.i.p9 = stringToBrush(v);
|
|
1059
1059
|
},
|
|
1060
1060
|
enumerable: false,
|
|
1061
1061
|
configurable: true
|
|
@@ -1065,10 +1065,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1065
1065
|
* Gets or sets the border color to use for the button regardless of type.
|
|
1066
1066
|
*/
|
|
1067
1067
|
get: function () {
|
|
1068
|
-
return brushToString(this.i.
|
|
1068
|
+
return brushToString(this.i.nv);
|
|
1069
1069
|
},
|
|
1070
1070
|
set: function (v) {
|
|
1071
|
-
this.i.
|
|
1071
|
+
this.i.nv = stringToBrush(v);
|
|
1072
1072
|
},
|
|
1073
1073
|
enumerable: false,
|
|
1074
1074
|
configurable: true
|
|
@@ -1135,10 +1135,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1135
1135
|
* Gets or sets the color to use for the text of the button regardless of type.
|
|
1136
1136
|
*/
|
|
1137
1137
|
get: function () {
|
|
1138
|
-
return brushToString(this.i.
|
|
1138
|
+
return brushToString(this.i.q9);
|
|
1139
1139
|
},
|
|
1140
1140
|
set: function (v) {
|
|
1141
|
-
this.i.
|
|
1141
|
+
this.i.q9 = stringToBrush(v);
|
|
1142
1142
|
},
|
|
1143
1143
|
enumerable: false,
|
|
1144
1144
|
configurable: true
|
|
@@ -1148,10 +1148,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1148
1148
|
* Gets or sets the color to use for the hovered text of the button regardless of type.
|
|
1149
1149
|
*/
|
|
1150
1150
|
get: function () {
|
|
1151
|
-
return brushToString(this.i.
|
|
1151
|
+
return brushToString(this.i.qa);
|
|
1152
1152
|
},
|
|
1153
1153
|
set: function (v) {
|
|
1154
|
-
this.i.
|
|
1154
|
+
this.i.qa = stringToBrush(v);
|
|
1155
1155
|
},
|
|
1156
1156
|
enumerable: false,
|
|
1157
1157
|
configurable: true
|
|
@@ -1161,10 +1161,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1161
1161
|
* Gets or sets the color to use for the background of the button regardless of type.
|
|
1162
1162
|
*/
|
|
1163
1163
|
get: function () {
|
|
1164
|
-
return brushToString(this.i.
|
|
1164
|
+
return brushToString(this.i.q8);
|
|
1165
1165
|
},
|
|
1166
1166
|
set: function (v) {
|
|
1167
|
-
this.i.
|
|
1167
|
+
this.i.q8 = stringToBrush(v);
|
|
1168
1168
|
},
|
|
1169
1169
|
enumerable: false,
|
|
1170
1170
|
configurable: true
|
|
@@ -1174,10 +1174,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1174
1174
|
* Gets or sets the color to use for the text of the button when type is raised.
|
|
1175
1175
|
*/
|
|
1176
1176
|
get: function () {
|
|
1177
|
-
return brushToString(this.i.
|
|
1177
|
+
return brushToString(this.i.q7);
|
|
1178
1178
|
},
|
|
1179
1179
|
set: function (v) {
|
|
1180
|
-
this.i.
|
|
1180
|
+
this.i.q7 = stringToBrush(v);
|
|
1181
1181
|
},
|
|
1182
1182
|
enumerable: false,
|
|
1183
1183
|
configurable: true
|
|
@@ -1187,10 +1187,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1187
1187
|
* Gets or sets the color to use for the hovered text of the button when type is raised.
|
|
1188
1188
|
*/
|
|
1189
1189
|
get: function () {
|
|
1190
|
-
return brushToString(this.i.
|
|
1190
|
+
return brushToString(this.i.q5);
|
|
1191
1191
|
},
|
|
1192
1192
|
set: function (v) {
|
|
1193
|
-
this.i.
|
|
1193
|
+
this.i.q5 = stringToBrush(v);
|
|
1194
1194
|
},
|
|
1195
1195
|
enumerable: false,
|
|
1196
1196
|
configurable: true
|
|
@@ -1200,10 +1200,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1200
1200
|
* Gets or sets the color to use for the backround the button when it is focused and raised.
|
|
1201
1201
|
*/
|
|
1202
1202
|
get: function () {
|
|
1203
|
-
return brushToString(this.i.
|
|
1203
|
+
return brushToString(this.i.q2);
|
|
1204
1204
|
},
|
|
1205
1205
|
set: function (v) {
|
|
1206
|
-
this.i.
|
|
1206
|
+
this.i.q2 = stringToBrush(v);
|
|
1207
1207
|
},
|
|
1208
1208
|
enumerable: false,
|
|
1209
1209
|
configurable: true
|
|
@@ -1213,10 +1213,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1213
1213
|
* Gets or sets the color to use for the text the button when it is focused and raised.
|
|
1214
1214
|
*/
|
|
1215
1215
|
get: function () {
|
|
1216
|
-
return brushToString(this.i.
|
|
1216
|
+
return brushToString(this.i.q3);
|
|
1217
1217
|
},
|
|
1218
1218
|
set: function (v) {
|
|
1219
|
-
this.i.
|
|
1219
|
+
this.i.q3 = stringToBrush(v);
|
|
1220
1220
|
},
|
|
1221
1221
|
enumerable: false,
|
|
1222
1222
|
configurable: true
|
|
@@ -1226,10 +1226,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1226
1226
|
* Gets or sets the color to use for the backround the button when it is focused.
|
|
1227
1227
|
*/
|
|
1228
1228
|
get: function () {
|
|
1229
|
-
return brushToString(this.i.
|
|
1229
|
+
return brushToString(this.i.p7);
|
|
1230
1230
|
},
|
|
1231
1231
|
set: function (v) {
|
|
1232
|
-
this.i.
|
|
1232
|
+
this.i.p7 = stringToBrush(v);
|
|
1233
1233
|
},
|
|
1234
1234
|
enumerable: false,
|
|
1235
1235
|
configurable: true
|
|
@@ -1239,10 +1239,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1239
1239
|
* Gets or sets the color to use for the text of the button when it is focused.
|
|
1240
1240
|
*/
|
|
1241
1241
|
get: function () {
|
|
1242
|
-
return brushToString(this.i.
|
|
1242
|
+
return brushToString(this.i.p8);
|
|
1243
1243
|
},
|
|
1244
1244
|
set: function (v) {
|
|
1245
|
-
this.i.
|
|
1245
|
+
this.i.p8 = stringToBrush(v);
|
|
1246
1246
|
},
|
|
1247
1247
|
enumerable: false,
|
|
1248
1248
|
configurable: true
|
|
@@ -1262,67 +1262,67 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1262
1262
|
});
|
|
1263
1263
|
Object.defineProperty(IgxXButtonComponent.prototype, "cornerRadiusBottomRight", {
|
|
1264
1264
|
get: function () {
|
|
1265
|
-
return this.i.
|
|
1265
|
+
return this.i.ku ? this.i.ku.c : NaN;
|
|
1266
1266
|
},
|
|
1267
1267
|
set: function (v) {
|
|
1268
1268
|
this.ensureCornerRadius();
|
|
1269
|
-
this.i.
|
|
1270
|
-
this.i.
|
|
1269
|
+
this.i.ku.c = +v;
|
|
1270
|
+
this.i.ku = this.i.ku;
|
|
1271
1271
|
},
|
|
1272
1272
|
enumerable: false,
|
|
1273
1273
|
configurable: true
|
|
1274
1274
|
});
|
|
1275
1275
|
Object.defineProperty(IgxXButtonComponent.prototype, "cornerRadiusBottomLeft", {
|
|
1276
1276
|
get: function () {
|
|
1277
|
-
return this.i.
|
|
1277
|
+
return this.i.ku ? this.i.ku.b : NaN;
|
|
1278
1278
|
},
|
|
1279
1279
|
set: function (v) {
|
|
1280
1280
|
this.ensureCornerRadius();
|
|
1281
|
-
this.i.
|
|
1282
|
-
this.i.
|
|
1281
|
+
this.i.ku.b = +v;
|
|
1282
|
+
this.i.ku = this.i.ku;
|
|
1283
1283
|
},
|
|
1284
1284
|
enumerable: false,
|
|
1285
1285
|
configurable: true
|
|
1286
1286
|
});
|
|
1287
1287
|
Object.defineProperty(IgxXButtonComponent.prototype, "cornerRadiusTopLeft", {
|
|
1288
1288
|
get: function () {
|
|
1289
|
-
return this.i.
|
|
1289
|
+
return this.i.ku ? this.i.ku.d : NaN;
|
|
1290
1290
|
},
|
|
1291
1291
|
set: function (v) {
|
|
1292
1292
|
this.ensureCornerRadius();
|
|
1293
|
-
this.i.
|
|
1294
|
-
this.i.
|
|
1293
|
+
this.i.ku.d = +v;
|
|
1294
|
+
this.i.ku = this.i.ku;
|
|
1295
1295
|
},
|
|
1296
1296
|
enumerable: false,
|
|
1297
1297
|
configurable: true
|
|
1298
1298
|
});
|
|
1299
1299
|
Object.defineProperty(IgxXButtonComponent.prototype, "cornerRadiusTopRight", {
|
|
1300
1300
|
get: function () {
|
|
1301
|
-
return this.i.
|
|
1301
|
+
return this.i.ku ? this.i.ku.e : NaN;
|
|
1302
1302
|
},
|
|
1303
1303
|
set: function (v) {
|
|
1304
1304
|
this.ensureCornerRadius();
|
|
1305
|
-
this.i.
|
|
1306
|
-
this.i.
|
|
1305
|
+
this.i.ku.e = +v;
|
|
1306
|
+
this.i.ku = this.i.ku;
|
|
1307
1307
|
},
|
|
1308
1308
|
enumerable: false,
|
|
1309
1309
|
configurable: true
|
|
1310
1310
|
});
|
|
1311
1311
|
IgxXButtonComponent.prototype.ensureCornerRadius = function () {
|
|
1312
|
-
if (this.i.
|
|
1312
|
+
if (this.i.ku) {
|
|
1313
1313
|
return;
|
|
1314
1314
|
}
|
|
1315
|
-
this.i.
|
|
1315
|
+
this.i.ku = new CornerRadius(2);
|
|
1316
1316
|
};
|
|
1317
1317
|
Object.defineProperty(IgxXButtonComponent.prototype, "outlinedBackgroundColor", {
|
|
1318
1318
|
/**
|
|
1319
1319
|
* Gets or sets the color to use for the background of the button when the type is outlined.
|
|
1320
1320
|
*/
|
|
1321
1321
|
get: function () {
|
|
1322
|
-
return brushToString(this.i.
|
|
1322
|
+
return brushToString(this.i.qm);
|
|
1323
1323
|
},
|
|
1324
1324
|
set: function (v) {
|
|
1325
|
-
this.i.
|
|
1325
|
+
this.i.qm = stringToBrush(v);
|
|
1326
1326
|
},
|
|
1327
1327
|
enumerable: false,
|
|
1328
1328
|
configurable: true
|
|
@@ -1332,10 +1332,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1332
1332
|
* Gets or sets the color to use for the disabled background of the button when the type is outlined.
|
|
1333
1333
|
*/
|
|
1334
1334
|
get: function () {
|
|
1335
|
-
return brushToString(this.i.
|
|
1335
|
+
return brushToString(this.i.qo);
|
|
1336
1336
|
},
|
|
1337
1337
|
set: function (v) {
|
|
1338
|
-
this.i.
|
|
1338
|
+
this.i.qo = stringToBrush(v);
|
|
1339
1339
|
},
|
|
1340
1340
|
enumerable: false,
|
|
1341
1341
|
configurable: true
|
|
@@ -1345,10 +1345,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1345
1345
|
* Gets or sets the color to use for the disabled border of the button when the type is outlined.
|
|
1346
1346
|
*/
|
|
1347
1347
|
get: function () {
|
|
1348
|
-
return brushToString(this.i.
|
|
1348
|
+
return brushToString(this.i.qp);
|
|
1349
1349
|
},
|
|
1350
1350
|
set: function (v) {
|
|
1351
|
-
this.i.
|
|
1351
|
+
this.i.qp = stringToBrush(v);
|
|
1352
1352
|
},
|
|
1353
1353
|
enumerable: false,
|
|
1354
1354
|
configurable: true
|
|
@@ -1358,10 +1358,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1358
1358
|
* Gets or sets the color to use for the disabled text of the button when the type is outlined.
|
|
1359
1359
|
*/
|
|
1360
1360
|
get: function () {
|
|
1361
|
-
return brushToString(this.i.
|
|
1361
|
+
return brushToString(this.i.qq);
|
|
1362
1362
|
},
|
|
1363
1363
|
set: function (v) {
|
|
1364
|
-
this.i.
|
|
1364
|
+
this.i.qq = stringToBrush(v);
|
|
1365
1365
|
},
|
|
1366
1366
|
enumerable: false,
|
|
1367
1367
|
configurable: true
|
|
@@ -1384,10 +1384,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1384
1384
|
* Gets or sets the hover color to use for the background of the button when the type is hoveredOutlined.
|
|
1385
1385
|
*/
|
|
1386
1386
|
get: function () {
|
|
1387
|
-
return brushToString(this.i.
|
|
1387
|
+
return brushToString(this.i.qt);
|
|
1388
1388
|
},
|
|
1389
1389
|
set: function (v) {
|
|
1390
|
-
this.i.
|
|
1390
|
+
this.i.qt = stringToBrush(v);
|
|
1391
1391
|
},
|
|
1392
1392
|
enumerable: false,
|
|
1393
1393
|
configurable: true
|
|
@@ -1397,10 +1397,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1397
1397
|
* Gets or sets the border color to use for the button when the type is outlined.
|
|
1398
1398
|
*/
|
|
1399
1399
|
get: function () {
|
|
1400
|
-
return brushToString(this.i.
|
|
1400
|
+
return brushToString(this.i.qn);
|
|
1401
1401
|
},
|
|
1402
1402
|
set: function (v) {
|
|
1403
|
-
this.i.
|
|
1403
|
+
this.i.qn = stringToBrush(v);
|
|
1404
1404
|
},
|
|
1405
1405
|
enumerable: false,
|
|
1406
1406
|
configurable: true
|
|
@@ -1459,67 +1459,67 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1459
1459
|
});
|
|
1460
1460
|
Object.defineProperty(IgxXButtonComponent.prototype, "outlinedCornerRadiusBottomRight", {
|
|
1461
1461
|
get: function () {
|
|
1462
|
-
return this.i.
|
|
1462
|
+
return this.i.k4 ? this.i.k4.c : NaN;
|
|
1463
1463
|
},
|
|
1464
1464
|
set: function (v) {
|
|
1465
1465
|
this.ensureOutlinedCornerRadius();
|
|
1466
|
-
this.i.
|
|
1467
|
-
this.i.
|
|
1466
|
+
this.i.k4.c = +v;
|
|
1467
|
+
this.i.k4 = this.i.k4;
|
|
1468
1468
|
},
|
|
1469
1469
|
enumerable: false,
|
|
1470
1470
|
configurable: true
|
|
1471
1471
|
});
|
|
1472
1472
|
Object.defineProperty(IgxXButtonComponent.prototype, "outlinedCornerRadiusBottomLeft", {
|
|
1473
1473
|
get: function () {
|
|
1474
|
-
return this.i.
|
|
1474
|
+
return this.i.k4 ? this.i.k4.b : NaN;
|
|
1475
1475
|
},
|
|
1476
1476
|
set: function (v) {
|
|
1477
1477
|
this.ensureOutlinedCornerRadius();
|
|
1478
|
-
this.i.
|
|
1479
|
-
this.i.
|
|
1478
|
+
this.i.k4.b = +v;
|
|
1479
|
+
this.i.k4 = this.i.k4;
|
|
1480
1480
|
},
|
|
1481
1481
|
enumerable: false,
|
|
1482
1482
|
configurable: true
|
|
1483
1483
|
});
|
|
1484
1484
|
Object.defineProperty(IgxXButtonComponent.prototype, "outlinedCornerRadiusTopLeft", {
|
|
1485
1485
|
get: function () {
|
|
1486
|
-
return this.i.
|
|
1486
|
+
return this.i.k4 ? this.i.k4.d : NaN;
|
|
1487
1487
|
},
|
|
1488
1488
|
set: function (v) {
|
|
1489
1489
|
this.ensureOutlinedCornerRadius();
|
|
1490
|
-
this.i.
|
|
1491
|
-
this.i.
|
|
1490
|
+
this.i.k4.d = +v;
|
|
1491
|
+
this.i.k4 = this.i.k4;
|
|
1492
1492
|
},
|
|
1493
1493
|
enumerable: false,
|
|
1494
1494
|
configurable: true
|
|
1495
1495
|
});
|
|
1496
1496
|
Object.defineProperty(IgxXButtonComponent.prototype, "outlinedCornerRadiusTopRight", {
|
|
1497
1497
|
get: function () {
|
|
1498
|
-
return this.i.
|
|
1498
|
+
return this.i.k4 ? this.i.k4.e : NaN;
|
|
1499
1499
|
},
|
|
1500
1500
|
set: function (v) {
|
|
1501
1501
|
this.ensureOutlinedCornerRadius();
|
|
1502
|
-
this.i.
|
|
1503
|
-
this.i.
|
|
1502
|
+
this.i.k4.e = +v;
|
|
1503
|
+
this.i.k4 = this.i.k4;
|
|
1504
1504
|
},
|
|
1505
1505
|
enumerable: false,
|
|
1506
1506
|
configurable: true
|
|
1507
1507
|
});
|
|
1508
1508
|
IgxXButtonComponent.prototype.ensureOutlinedCornerRadius = function () {
|
|
1509
|
-
if (this.i.
|
|
1509
|
+
if (this.i.k4) {
|
|
1510
1510
|
return;
|
|
1511
1511
|
}
|
|
1512
|
-
this.i.
|
|
1512
|
+
this.i.k4 = new CornerRadius(2);
|
|
1513
1513
|
};
|
|
1514
1514
|
Object.defineProperty(IgxXButtonComponent.prototype, "outlinedRippleColor", {
|
|
1515
1515
|
/**
|
|
1516
1516
|
* Gets or sets the color to use for the background when the button is pressed and the type is floating action button.
|
|
1517
1517
|
*/
|
|
1518
1518
|
get: function () {
|
|
1519
|
-
return brushToString(this.i.
|
|
1519
|
+
return brushToString(this.i.qv);
|
|
1520
1520
|
},
|
|
1521
1521
|
set: function (v) {
|
|
1522
|
-
this.i.
|
|
1522
|
+
this.i.qv = stringToBrush(v);
|
|
1523
1523
|
},
|
|
1524
1524
|
enumerable: false,
|
|
1525
1525
|
configurable: true
|
|
@@ -1529,10 +1529,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1529
1529
|
* Gets or sets the color to use for the text of the button when type is outlined.
|
|
1530
1530
|
*/
|
|
1531
1531
|
get: function () {
|
|
1532
|
-
return brushToString(this.i.
|
|
1532
|
+
return brushToString(this.i.qw);
|
|
1533
1533
|
},
|
|
1534
1534
|
set: function (v) {
|
|
1535
|
-
this.i.
|
|
1535
|
+
this.i.qw = stringToBrush(v);
|
|
1536
1536
|
},
|
|
1537
1537
|
enumerable: false,
|
|
1538
1538
|
configurable: true
|
|
@@ -1542,10 +1542,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1542
1542
|
* Gets or sets the color to use for the hovered text of the button when type is outlined.
|
|
1543
1543
|
*/
|
|
1544
1544
|
get: function () {
|
|
1545
|
-
return brushToString(this.i.
|
|
1545
|
+
return brushToString(this.i.qu);
|
|
1546
1546
|
},
|
|
1547
1547
|
set: function (v) {
|
|
1548
|
-
this.i.
|
|
1548
|
+
this.i.qu = stringToBrush(v);
|
|
1549
1549
|
},
|
|
1550
1550
|
enumerable: false,
|
|
1551
1551
|
configurable: true
|
|
@@ -1555,10 +1555,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1555
1555
|
* Gets or sets the color to use for the backround the button when it is focused and outlined.
|
|
1556
1556
|
*/
|
|
1557
1557
|
get: function () {
|
|
1558
|
-
return brushToString(this.i.
|
|
1558
|
+
return brushToString(this.i.qr);
|
|
1559
1559
|
},
|
|
1560
1560
|
set: function (v) {
|
|
1561
|
-
this.i.
|
|
1561
|
+
this.i.qr = stringToBrush(v);
|
|
1562
1562
|
},
|
|
1563
1563
|
enumerable: false,
|
|
1564
1564
|
configurable: true
|
|
@@ -1568,10 +1568,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1568
1568
|
* Gets or sets the color to use for the text the button when it is focused and outlined.
|
|
1569
1569
|
*/
|
|
1570
1570
|
get: function () {
|
|
1571
|
-
return brushToString(this.i.
|
|
1571
|
+
return brushToString(this.i.qs);
|
|
1572
1572
|
},
|
|
1573
1573
|
set: function (v) {
|
|
1574
|
-
this.i.
|
|
1574
|
+
this.i.qs = stringToBrush(v);
|
|
1575
1575
|
},
|
|
1576
1576
|
enumerable: false,
|
|
1577
1577
|
configurable: true
|
|
@@ -1581,10 +1581,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1581
1581
|
* Gets or sets the color to use for the background of the button when the type is floating action button.
|
|
1582
1582
|
*/
|
|
1583
1583
|
get: function () {
|
|
1584
|
-
return brushToString(this.i.
|
|
1584
|
+
return brushToString(this.i.pl);
|
|
1585
1585
|
},
|
|
1586
1586
|
set: function (v) {
|
|
1587
|
-
this.i.
|
|
1587
|
+
this.i.pl = stringToBrush(v);
|
|
1588
1588
|
},
|
|
1589
1589
|
enumerable: false,
|
|
1590
1590
|
configurable: true
|
|
@@ -1594,10 +1594,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1594
1594
|
* Gets or sets the color to use for the disabled background of the button when the type is fab.
|
|
1595
1595
|
*/
|
|
1596
1596
|
get: function () {
|
|
1597
|
-
return brushToString(this.i.
|
|
1597
|
+
return brushToString(this.i.pn);
|
|
1598
1598
|
},
|
|
1599
1599
|
set: function (v) {
|
|
1600
|
-
this.i.
|
|
1600
|
+
this.i.pn = stringToBrush(v);
|
|
1601
1601
|
},
|
|
1602
1602
|
enumerable: false,
|
|
1603
1603
|
configurable: true
|
|
@@ -1607,10 +1607,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1607
1607
|
* Gets or sets the color to use for the disabled border of the button when the type is fab.
|
|
1608
1608
|
*/
|
|
1609
1609
|
get: function () {
|
|
1610
|
-
return brushToString(this.i.
|
|
1610
|
+
return brushToString(this.i.po);
|
|
1611
1611
|
},
|
|
1612
1612
|
set: function (v) {
|
|
1613
|
-
this.i.
|
|
1613
|
+
this.i.po = stringToBrush(v);
|
|
1614
1614
|
},
|
|
1615
1615
|
enumerable: false,
|
|
1616
1616
|
configurable: true
|
|
@@ -1620,10 +1620,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1620
1620
|
* Gets or sets the color to use for the disabled text of the button when the type is fab.
|
|
1621
1621
|
*/
|
|
1622
1622
|
get: function () {
|
|
1623
|
-
return brushToString(this.i.
|
|
1623
|
+
return brushToString(this.i.pp);
|
|
1624
1624
|
},
|
|
1625
1625
|
set: function (v) {
|
|
1626
|
-
this.i.
|
|
1626
|
+
this.i.pp = stringToBrush(v);
|
|
1627
1627
|
},
|
|
1628
1628
|
enumerable: false,
|
|
1629
1629
|
configurable: true
|
|
@@ -1646,10 +1646,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1646
1646
|
* Gets or sets the hover color to use for the background of the button when the type is hoveredFab.
|
|
1647
1647
|
*/
|
|
1648
1648
|
get: function () {
|
|
1649
|
-
return brushToString(this.i.
|
|
1649
|
+
return brushToString(this.i.ps);
|
|
1650
1650
|
},
|
|
1651
1651
|
set: function (v) {
|
|
1652
|
-
this.i.
|
|
1652
|
+
this.i.ps = stringToBrush(v);
|
|
1653
1653
|
},
|
|
1654
1654
|
enumerable: false,
|
|
1655
1655
|
configurable: true
|
|
@@ -1659,10 +1659,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1659
1659
|
* Gets or sets the border color to use for the button when the type is floating action button.
|
|
1660
1660
|
*/
|
|
1661
1661
|
get: function () {
|
|
1662
|
-
return brushToString(this.i.
|
|
1662
|
+
return brushToString(this.i.pm);
|
|
1663
1663
|
},
|
|
1664
1664
|
set: function (v) {
|
|
1665
|
-
this.i.
|
|
1665
|
+
this.i.pm = stringToBrush(v);
|
|
1666
1666
|
},
|
|
1667
1667
|
enumerable: false,
|
|
1668
1668
|
configurable: true
|
|
@@ -1721,67 +1721,67 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1721
1721
|
});
|
|
1722
1722
|
Object.defineProperty(IgxXButtonComponent.prototype, "fabCornerRadiusBottomRight", {
|
|
1723
1723
|
get: function () {
|
|
1724
|
-
return this.i.
|
|
1724
|
+
return this.i.k0 ? this.i.k0.c : NaN;
|
|
1725
1725
|
},
|
|
1726
1726
|
set: function (v) {
|
|
1727
1727
|
this.ensureFabCornerRadius();
|
|
1728
|
-
this.i.
|
|
1729
|
-
this.i.
|
|
1728
|
+
this.i.k0.c = +v;
|
|
1729
|
+
this.i.k0 = this.i.k0;
|
|
1730
1730
|
},
|
|
1731
1731
|
enumerable: false,
|
|
1732
1732
|
configurable: true
|
|
1733
1733
|
});
|
|
1734
1734
|
Object.defineProperty(IgxXButtonComponent.prototype, "fabCornerRadiusBottomLeft", {
|
|
1735
1735
|
get: function () {
|
|
1736
|
-
return this.i.
|
|
1736
|
+
return this.i.k0 ? this.i.k0.b : NaN;
|
|
1737
1737
|
},
|
|
1738
1738
|
set: function (v) {
|
|
1739
1739
|
this.ensureFabCornerRadius();
|
|
1740
|
-
this.i.
|
|
1741
|
-
this.i.
|
|
1740
|
+
this.i.k0.b = +v;
|
|
1741
|
+
this.i.k0 = this.i.k0;
|
|
1742
1742
|
},
|
|
1743
1743
|
enumerable: false,
|
|
1744
1744
|
configurable: true
|
|
1745
1745
|
});
|
|
1746
1746
|
Object.defineProperty(IgxXButtonComponent.prototype, "fabCornerRadiusTopLeft", {
|
|
1747
1747
|
get: function () {
|
|
1748
|
-
return this.i.
|
|
1748
|
+
return this.i.k0 ? this.i.k0.d : NaN;
|
|
1749
1749
|
},
|
|
1750
1750
|
set: function (v) {
|
|
1751
1751
|
this.ensureFabCornerRadius();
|
|
1752
|
-
this.i.
|
|
1753
|
-
this.i.
|
|
1752
|
+
this.i.k0.d = +v;
|
|
1753
|
+
this.i.k0 = this.i.k0;
|
|
1754
1754
|
},
|
|
1755
1755
|
enumerable: false,
|
|
1756
1756
|
configurable: true
|
|
1757
1757
|
});
|
|
1758
1758
|
Object.defineProperty(IgxXButtonComponent.prototype, "fabCornerRadiusTopRight", {
|
|
1759
1759
|
get: function () {
|
|
1760
|
-
return this.i.
|
|
1760
|
+
return this.i.k0 ? this.i.k0.e : NaN;
|
|
1761
1761
|
},
|
|
1762
1762
|
set: function (v) {
|
|
1763
1763
|
this.ensureFabCornerRadius();
|
|
1764
|
-
this.i.
|
|
1765
|
-
this.i.
|
|
1764
|
+
this.i.k0.e = +v;
|
|
1765
|
+
this.i.k0 = this.i.k0;
|
|
1766
1766
|
},
|
|
1767
1767
|
enumerable: false,
|
|
1768
1768
|
configurable: true
|
|
1769
1769
|
});
|
|
1770
1770
|
IgxXButtonComponent.prototype.ensureFabCornerRadius = function () {
|
|
1771
|
-
if (this.i.
|
|
1771
|
+
if (this.i.k0) {
|
|
1772
1772
|
return;
|
|
1773
1773
|
}
|
|
1774
|
-
this.i.
|
|
1774
|
+
this.i.k0 = new CornerRadius(2);
|
|
1775
1775
|
};
|
|
1776
1776
|
Object.defineProperty(IgxXButtonComponent.prototype, "fabRippleColor", {
|
|
1777
1777
|
/**
|
|
1778
1778
|
* Gets or sets the color to use for the background when the button is pressed and the type is floating action button.
|
|
1779
1779
|
*/
|
|
1780
1780
|
get: function () {
|
|
1781
|
-
return brushToString(this.i.
|
|
1781
|
+
return brushToString(this.i.pu);
|
|
1782
1782
|
},
|
|
1783
1783
|
set: function (v) {
|
|
1784
|
-
this.i.
|
|
1784
|
+
this.i.pu = stringToBrush(v);
|
|
1785
1785
|
},
|
|
1786
1786
|
enumerable: false,
|
|
1787
1787
|
configurable: true
|
|
@@ -1791,10 +1791,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1791
1791
|
* Gets or sets the color to use for the text of the button when type is floating action button.
|
|
1792
1792
|
*/
|
|
1793
1793
|
get: function () {
|
|
1794
|
-
return brushToString(this.i.
|
|
1794
|
+
return brushToString(this.i.pv);
|
|
1795
1795
|
},
|
|
1796
1796
|
set: function (v) {
|
|
1797
|
-
this.i.
|
|
1797
|
+
this.i.pv = stringToBrush(v);
|
|
1798
1798
|
},
|
|
1799
1799
|
enumerable: false,
|
|
1800
1800
|
configurable: true
|
|
@@ -1804,10 +1804,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1804
1804
|
* Gets or sets the color to use for the hovered text of the button when type is floating action button.
|
|
1805
1805
|
*/
|
|
1806
1806
|
get: function () {
|
|
1807
|
-
return brushToString(this.i.
|
|
1807
|
+
return brushToString(this.i.pt);
|
|
1808
1808
|
},
|
|
1809
1809
|
set: function (v) {
|
|
1810
|
-
this.i.
|
|
1810
|
+
this.i.pt = stringToBrush(v);
|
|
1811
1811
|
},
|
|
1812
1812
|
enumerable: false,
|
|
1813
1813
|
configurable: true
|
|
@@ -1817,10 +1817,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1817
1817
|
* Gets or sets the color to use for the backround the button when it is focused and fab.
|
|
1818
1818
|
*/
|
|
1819
1819
|
get: function () {
|
|
1820
|
-
return brushToString(this.i.
|
|
1820
|
+
return brushToString(this.i.pq);
|
|
1821
1821
|
},
|
|
1822
1822
|
set: function (v) {
|
|
1823
|
-
this.i.
|
|
1823
|
+
this.i.pq = stringToBrush(v);
|
|
1824
1824
|
},
|
|
1825
1825
|
enumerable: false,
|
|
1826
1826
|
configurable: true
|
|
@@ -1830,10 +1830,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1830
1830
|
* Gets or sets the color to use for the text the button when it is focused and fab.
|
|
1831
1831
|
*/
|
|
1832
1832
|
get: function () {
|
|
1833
|
-
return brushToString(this.i.
|
|
1833
|
+
return brushToString(this.i.pr);
|
|
1834
1834
|
},
|
|
1835
1835
|
set: function (v) {
|
|
1836
|
-
this.i.
|
|
1836
|
+
this.i.pr = stringToBrush(v);
|
|
1837
1837
|
},
|
|
1838
1838
|
enumerable: false,
|
|
1839
1839
|
configurable: true
|
|
@@ -1843,10 +1843,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1843
1843
|
* Gets or sets the color to use for the background of the button when the type is icon.
|
|
1844
1844
|
*/
|
|
1845
1845
|
get: function () {
|
|
1846
|
-
return brushToString(this.i.
|
|
1846
|
+
return brushToString(this.i.qb);
|
|
1847
1847
|
},
|
|
1848
1848
|
set: function (v) {
|
|
1849
|
-
this.i.
|
|
1849
|
+
this.i.qb = stringToBrush(v);
|
|
1850
1850
|
},
|
|
1851
1851
|
enumerable: false,
|
|
1852
1852
|
configurable: true
|
|
@@ -1856,10 +1856,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1856
1856
|
* Gets or sets the color to use for the disabled background of the button when the type is icon.
|
|
1857
1857
|
*/
|
|
1858
1858
|
get: function () {
|
|
1859
|
-
return brushToString(this.i.
|
|
1859
|
+
return brushToString(this.i.qd);
|
|
1860
1860
|
},
|
|
1861
1861
|
set: function (v) {
|
|
1862
|
-
this.i.
|
|
1862
|
+
this.i.qd = stringToBrush(v);
|
|
1863
1863
|
},
|
|
1864
1864
|
enumerable: false,
|
|
1865
1865
|
configurable: true
|
|
@@ -1869,10 +1869,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1869
1869
|
* Gets or sets the color to use for the disabled border of the button when the type is icon.
|
|
1870
1870
|
*/
|
|
1871
1871
|
get: function () {
|
|
1872
|
-
return brushToString(this.i.
|
|
1872
|
+
return brushToString(this.i.qe);
|
|
1873
1873
|
},
|
|
1874
1874
|
set: function (v) {
|
|
1875
|
-
this.i.
|
|
1875
|
+
this.i.qe = stringToBrush(v);
|
|
1876
1876
|
},
|
|
1877
1877
|
enumerable: false,
|
|
1878
1878
|
configurable: true
|
|
@@ -1882,10 +1882,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1882
1882
|
* Gets or sets the color to use for the disabled text of the button when the type is icon.
|
|
1883
1883
|
*/
|
|
1884
1884
|
get: function () {
|
|
1885
|
-
return brushToString(this.i.
|
|
1885
|
+
return brushToString(this.i.qf);
|
|
1886
1886
|
},
|
|
1887
1887
|
set: function (v) {
|
|
1888
|
-
this.i.
|
|
1888
|
+
this.i.qf = stringToBrush(v);
|
|
1889
1889
|
},
|
|
1890
1890
|
enumerable: false,
|
|
1891
1891
|
configurable: true
|
|
@@ -1908,10 +1908,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1908
1908
|
* Gets or sets the hover color to use for the background of the button when the type is hoveredIcon.
|
|
1909
1909
|
*/
|
|
1910
1910
|
get: function () {
|
|
1911
|
-
return brushToString(this.i.
|
|
1911
|
+
return brushToString(this.i.qi);
|
|
1912
1912
|
},
|
|
1913
1913
|
set: function (v) {
|
|
1914
|
-
this.i.
|
|
1914
|
+
this.i.qi = stringToBrush(v);
|
|
1915
1915
|
},
|
|
1916
1916
|
enumerable: false,
|
|
1917
1917
|
configurable: true
|
|
@@ -1921,10 +1921,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1921
1921
|
* Gets or sets the border color to use for the button when the type is icon.
|
|
1922
1922
|
*/
|
|
1923
1923
|
get: function () {
|
|
1924
|
-
return brushToString(this.i.
|
|
1924
|
+
return brushToString(this.i.qc);
|
|
1925
1925
|
},
|
|
1926
1926
|
set: function (v) {
|
|
1927
|
-
this.i.
|
|
1927
|
+
this.i.qc = stringToBrush(v);
|
|
1928
1928
|
},
|
|
1929
1929
|
enumerable: false,
|
|
1930
1930
|
configurable: true
|
|
@@ -1983,67 +1983,67 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
1983
1983
|
});
|
|
1984
1984
|
Object.defineProperty(IgxXButtonComponent.prototype, "iconCornerRadiusBottomRight", {
|
|
1985
1985
|
get: function () {
|
|
1986
|
-
return this.i.
|
|
1986
|
+
return this.i.k3 ? this.i.k3.c : NaN;
|
|
1987
1987
|
},
|
|
1988
1988
|
set: function (v) {
|
|
1989
1989
|
this.ensureIconCornerRadius();
|
|
1990
|
-
this.i.
|
|
1991
|
-
this.i.
|
|
1990
|
+
this.i.k3.c = +v;
|
|
1991
|
+
this.i.k3 = this.i.k3;
|
|
1992
1992
|
},
|
|
1993
1993
|
enumerable: false,
|
|
1994
1994
|
configurable: true
|
|
1995
1995
|
});
|
|
1996
1996
|
Object.defineProperty(IgxXButtonComponent.prototype, "iconCornerRadiusBottomLeft", {
|
|
1997
1997
|
get: function () {
|
|
1998
|
-
return this.i.
|
|
1998
|
+
return this.i.k3 ? this.i.k3.b : NaN;
|
|
1999
1999
|
},
|
|
2000
2000
|
set: function (v) {
|
|
2001
2001
|
this.ensureIconCornerRadius();
|
|
2002
|
-
this.i.
|
|
2003
|
-
this.i.
|
|
2002
|
+
this.i.k3.b = +v;
|
|
2003
|
+
this.i.k3 = this.i.k3;
|
|
2004
2004
|
},
|
|
2005
2005
|
enumerable: false,
|
|
2006
2006
|
configurable: true
|
|
2007
2007
|
});
|
|
2008
2008
|
Object.defineProperty(IgxXButtonComponent.prototype, "iconCornerRadiusTopLeft", {
|
|
2009
2009
|
get: function () {
|
|
2010
|
-
return this.i.
|
|
2010
|
+
return this.i.k3 ? this.i.k3.d : NaN;
|
|
2011
2011
|
},
|
|
2012
2012
|
set: function (v) {
|
|
2013
2013
|
this.ensureIconCornerRadius();
|
|
2014
|
-
this.i.
|
|
2015
|
-
this.i.
|
|
2014
|
+
this.i.k3.d = +v;
|
|
2015
|
+
this.i.k3 = this.i.k3;
|
|
2016
2016
|
},
|
|
2017
2017
|
enumerable: false,
|
|
2018
2018
|
configurable: true
|
|
2019
2019
|
});
|
|
2020
2020
|
Object.defineProperty(IgxXButtonComponent.prototype, "iconCornerRadiusTopRight", {
|
|
2021
2021
|
get: function () {
|
|
2022
|
-
return this.i.
|
|
2022
|
+
return this.i.k3 ? this.i.k3.e : NaN;
|
|
2023
2023
|
},
|
|
2024
2024
|
set: function (v) {
|
|
2025
2025
|
this.ensureIconCornerRadius();
|
|
2026
|
-
this.i.
|
|
2027
|
-
this.i.
|
|
2026
|
+
this.i.k3.e = +v;
|
|
2027
|
+
this.i.k3 = this.i.k3;
|
|
2028
2028
|
},
|
|
2029
2029
|
enumerable: false,
|
|
2030
2030
|
configurable: true
|
|
2031
2031
|
});
|
|
2032
2032
|
IgxXButtonComponent.prototype.ensureIconCornerRadius = function () {
|
|
2033
|
-
if (this.i.
|
|
2033
|
+
if (this.i.k3) {
|
|
2034
2034
|
return;
|
|
2035
2035
|
}
|
|
2036
|
-
this.i.
|
|
2036
|
+
this.i.k3 = new CornerRadius(2);
|
|
2037
2037
|
};
|
|
2038
2038
|
Object.defineProperty(IgxXButtonComponent.prototype, "iconRippleColor", {
|
|
2039
2039
|
/**
|
|
2040
2040
|
* Gets or sets the color to use for the background when the button is pressed and the type is floating action button.
|
|
2041
2041
|
*/
|
|
2042
2042
|
get: function () {
|
|
2043
|
-
return brushToString(this.i.
|
|
2043
|
+
return brushToString(this.i.qk);
|
|
2044
2044
|
},
|
|
2045
2045
|
set: function (v) {
|
|
2046
|
-
this.i.
|
|
2046
|
+
this.i.qk = stringToBrush(v);
|
|
2047
2047
|
},
|
|
2048
2048
|
enumerable: false,
|
|
2049
2049
|
configurable: true
|
|
@@ -2053,10 +2053,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2053
2053
|
* Gets or sets the color to use for the text of the button when type is icon.
|
|
2054
2054
|
*/
|
|
2055
2055
|
get: function () {
|
|
2056
|
-
return brushToString(this.i.
|
|
2056
|
+
return brushToString(this.i.ql);
|
|
2057
2057
|
},
|
|
2058
2058
|
set: function (v) {
|
|
2059
|
-
this.i.
|
|
2059
|
+
this.i.ql = stringToBrush(v);
|
|
2060
2060
|
},
|
|
2061
2061
|
enumerable: false,
|
|
2062
2062
|
configurable: true
|
|
@@ -2066,10 +2066,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2066
2066
|
* Gets or sets the color to use for the hovered text of the button when type is icon.
|
|
2067
2067
|
*/
|
|
2068
2068
|
get: function () {
|
|
2069
|
-
return brushToString(this.i.
|
|
2069
|
+
return brushToString(this.i.qj);
|
|
2070
2070
|
},
|
|
2071
2071
|
set: function (v) {
|
|
2072
|
-
this.i.
|
|
2072
|
+
this.i.qj = stringToBrush(v);
|
|
2073
2073
|
},
|
|
2074
2074
|
enumerable: false,
|
|
2075
2075
|
configurable: true
|
|
@@ -2079,10 +2079,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2079
2079
|
* Gets or sets the color to use for the backround the button when it is focused and icon.
|
|
2080
2080
|
*/
|
|
2081
2081
|
get: function () {
|
|
2082
|
-
return brushToString(this.i.
|
|
2082
|
+
return brushToString(this.i.qg);
|
|
2083
2083
|
},
|
|
2084
2084
|
set: function (v) {
|
|
2085
|
-
this.i.
|
|
2085
|
+
this.i.qg = stringToBrush(v);
|
|
2086
2086
|
},
|
|
2087
2087
|
enumerable: false,
|
|
2088
2088
|
configurable: true
|
|
@@ -2092,10 +2092,10 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2092
2092
|
* Gets or sets the color to use for the text the button when it is focused and icon.
|
|
2093
2093
|
*/
|
|
2094
2094
|
get: function () {
|
|
2095
|
-
return brushToString(this.i.
|
|
2095
|
+
return brushToString(this.i.qh);
|
|
2096
2096
|
},
|
|
2097
2097
|
set: function (v) {
|
|
2098
|
-
this.i.
|
|
2098
|
+
this.i.qh = stringToBrush(v);
|
|
2099
2099
|
},
|
|
2100
2100
|
enumerable: false,
|
|
2101
2101
|
configurable: true
|
|
@@ -2415,20 +2415,20 @@ var IgxXButtonComponent = /** @class */ /*@__PURE__*/ (function () {
|
|
|
2415
2415
|
});
|
|
2416
2416
|
Object.defineProperty(IgxXButtonComponent.prototype, "horizontalContentAlignment", {
|
|
2417
2417
|
get: function () {
|
|
2418
|
-
return this.i.
|
|
2418
|
+
return this.i.k7;
|
|
2419
2419
|
},
|
|
2420
2420
|
set: function (v) {
|
|
2421
|
-
this.i.
|
|
2421
|
+
this.i.k7 = ensureEnum(HorizontalAlignment_$type, v);
|
|
2422
2422
|
},
|
|
2423
2423
|
enumerable: false,
|
|
2424
2424
|
configurable: true
|
|
2425
2425
|
});
|
|
2426
2426
|
Object.defineProperty(IgxXButtonComponent.prototype, "verticalContentAlignment", {
|
|
2427
2427
|
get: function () {
|
|
2428
|
-
return this.i.
|
|
2428
|
+
return this.i.rb;
|
|
2429
2429
|
},
|
|
2430
2430
|
set: function (v) {
|
|
2431
|
-
this.i.
|
|
2431
|
+
this.i.rb = ensureEnum(VerticalAlignment_$type, v);
|
|
2432
2432
|
},
|
|
2433
2433
|
enumerable: false,
|
|
2434
2434
|
configurable: true
|