igniteui-webcomponents-inputs 7.0.0 → 7.0.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-webcomponents-inputs.umd.js +3868 -3539
- package/bundles/igniteui-webcomponents-inputs.umd.min.js +1 -1
- package/esm2015/lib/ButtonGroupView_combined.js +642 -628
- package/esm2015/lib/ButtonView_combined.js +2036 -1743
- package/esm2015/lib/CalendarView_combined.js +157 -157
- package/esm2015/lib/CheckboxView_combined.js +39 -39
- package/esm2015/lib/DatePickerView_combined.js +4 -4
- package/esm2015/lib/InputGroupView_combined.js +209 -209
- package/esm2015/lib/NativeUIXInputsFactory_combined.js +35 -35
- package/esm2015/lib/RippleView_combined.js +2 -2
- package/esm2015/lib/ThemeResolver.js +38 -22
- package/esm2015/lib/XButtonBridge.js +53 -45
- package/esm2015/lib/XButtonGroupBridge.js +13 -9
- package/esm2015/lib/XIconButtonBridge.js +2 -2
- package/esm2015/lib/igc-x-button-component.js +567 -567
- package/esm2015/lib/igc-x-button-group-component.js +184 -184
- package/esm5/lib/ButtonGroupView_combined.js +620 -606
- package/esm5/lib/ButtonView_combined.js +1950 -1657
- package/esm5/lib/CalendarView_combined.js +157 -157
- package/esm5/lib/CheckboxView_combined.js +39 -39
- package/esm5/lib/DatePickerView_combined.js +4 -4
- package/esm5/lib/InputGroupView_combined.js +209 -209
- package/esm5/lib/NativeUIXInputsFactory_combined.js +35 -35
- package/esm5/lib/RippleView_combined.js +2 -2
- package/esm5/lib/ThemeResolver.js +38 -22
- package/esm5/lib/XButtonBridge.js +53 -45
- package/esm5/lib/XButtonGroupBridge.js +13 -9
- package/esm5/lib/XIconButtonBridge.js +2 -2
- package/esm5/lib/igc-x-button-component.js +567 -567
- package/esm5/lib/igc-x-button-group-component.js +184 -184
- package/fesm2015/igniteui-webcomponents-inputs.js +3971 -3642
- package/fesm5/igniteui-webcomponents-inputs.js +3869 -3540
- package/lib/ButtonGroupView_combined.d.ts +181 -179
- package/lib/ButtonView_combined.d.ts +479 -478
- package/lib/ThemeResolver.d.ts +18 -15
- package/package.json +2 -2
|
@@ -240,11 +240,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
240
240
|
* Gets or sets the min width to use for the button.
|
|
241
241
|
*/
|
|
242
242
|
get: function () {
|
|
243
|
-
return this.i.
|
|
243
|
+
return this.i.bz;
|
|
244
244
|
},
|
|
245
245
|
set: function (v) {
|
|
246
|
-
this.i.
|
|
247
|
-
this._a("minWidth", this.i.
|
|
246
|
+
this.i.bz = +v;
|
|
247
|
+
this._a("minWidth", this.i.bz);
|
|
248
248
|
},
|
|
249
249
|
enumerable: false,
|
|
250
250
|
configurable: true
|
|
@@ -254,11 +254,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
254
254
|
* Gets or sets the min height to use for the button.
|
|
255
255
|
*/
|
|
256
256
|
get: function () {
|
|
257
|
-
return this.i.
|
|
257
|
+
return this.i.by;
|
|
258
258
|
},
|
|
259
259
|
set: function (v) {
|
|
260
|
-
this.i.
|
|
261
|
-
this._a("minHeight", this.i.
|
|
260
|
+
this.i.by = +v;
|
|
261
|
+
this._a("minHeight", this.i.by);
|
|
262
262
|
},
|
|
263
263
|
enumerable: false,
|
|
264
264
|
configurable: true
|
|
@@ -282,11 +282,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
282
282
|
* Gets or sets the display density to use for the button.
|
|
283
283
|
*/
|
|
284
284
|
get: function () {
|
|
285
|
-
return this.i.
|
|
285
|
+
return this.i.s;
|
|
286
286
|
},
|
|
287
287
|
set: function (v) {
|
|
288
|
-
this.i.
|
|
289
|
-
this._a("density", enumToString(ControlDisplayDensity_$type, this.i.
|
|
288
|
+
this.i.s = ensureEnum(ControlDisplayDensity_$type, v);
|
|
289
|
+
this._a("density", enumToString(ControlDisplayDensity_$type, this.i.s));
|
|
290
290
|
},
|
|
291
291
|
enumerable: false,
|
|
292
292
|
configurable: true
|
|
@@ -296,11 +296,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
296
296
|
* Gets or sets the base built in theme to use for the button.
|
|
297
297
|
*/
|
|
298
298
|
get: function () {
|
|
299
|
-
return this.i.
|
|
299
|
+
return this.i.o;
|
|
300
300
|
},
|
|
301
301
|
set: function (v) {
|
|
302
|
-
this.i.
|
|
303
|
-
this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.
|
|
302
|
+
this.i.o = ensureEnum(BaseControlTheme_$type, v);
|
|
303
|
+
this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.o));
|
|
304
304
|
},
|
|
305
305
|
enumerable: false,
|
|
306
306
|
configurable: true
|
|
@@ -310,11 +310,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
310
310
|
* Gets the actual display density to use for the label.
|
|
311
311
|
*/
|
|
312
312
|
get: function () {
|
|
313
|
-
return this.i.
|
|
313
|
+
return this.i.r;
|
|
314
314
|
},
|
|
315
315
|
set: function (v) {
|
|
316
|
-
this.i.
|
|
317
|
-
this._a("actualDensity", enumToString(ControlDisplayDensity_$type, this.i.
|
|
316
|
+
this.i.r = ensureEnum(ControlDisplayDensity_$type, v);
|
|
317
|
+
this._a("actualDensity", enumToString(ControlDisplayDensity_$type, this.i.r));
|
|
318
318
|
},
|
|
319
319
|
enumerable: false,
|
|
320
320
|
configurable: true
|
|
@@ -324,11 +324,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
324
324
|
* Gets or sets the color to use for the check mark when the checkbox is checked.
|
|
325
325
|
*/
|
|
326
326
|
get: function () {
|
|
327
|
-
return brushToString(this.i.
|
|
327
|
+
return brushToString(this.i.nu);
|
|
328
328
|
},
|
|
329
329
|
set: function (v) {
|
|
330
|
-
this.i.
|
|
331
|
-
this._a("actualBorderColor", brushToString(this.i.
|
|
330
|
+
this.i.nu = stringToBrush(v);
|
|
331
|
+
this._a("actualBorderColor", brushToString(this.i.nu));
|
|
332
332
|
},
|
|
333
333
|
enumerable: false,
|
|
334
334
|
configurable: true
|
|
@@ -338,11 +338,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
338
338
|
* Gets or sets the color to use for the check mark when the checkbox is checked.
|
|
339
339
|
*/
|
|
340
340
|
get: function () {
|
|
341
|
-
return brushToString(this.i.
|
|
341
|
+
return brushToString(this.i.n5);
|
|
342
342
|
},
|
|
343
343
|
set: function (v) {
|
|
344
|
-
this.i.
|
|
345
|
-
this._a("actualUmbraShadowColor", brushToString(this.i.
|
|
344
|
+
this.i.n5 = stringToBrush(v);
|
|
345
|
+
this._a("actualUmbraShadowColor", brushToString(this.i.n5));
|
|
346
346
|
},
|
|
347
347
|
enumerable: false,
|
|
348
348
|
configurable: true
|
|
@@ -352,11 +352,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
352
352
|
* Gets or sets the color to use for the check mark when the checkbox is checked.
|
|
353
353
|
*/
|
|
354
354
|
get: function () {
|
|
355
|
-
return brushToString(this.i.
|
|
355
|
+
return brushToString(this.i.n2);
|
|
356
356
|
},
|
|
357
357
|
set: function (v) {
|
|
358
|
-
this.i.
|
|
359
|
-
this._a("actualPenumbraShadowColor", brushToString(this.i.
|
|
358
|
+
this.i.n2 = stringToBrush(v);
|
|
359
|
+
this._a("actualPenumbraShadowColor", brushToString(this.i.n2));
|
|
360
360
|
},
|
|
361
361
|
enumerable: false,
|
|
362
362
|
configurable: true
|
|
@@ -366,11 +366,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
366
366
|
* Gets or sets the color to use for the check mark when the checkbox is checked.
|
|
367
367
|
*/
|
|
368
368
|
get: function () {
|
|
369
|
-
return brushToString(this.i.
|
|
369
|
+
return brushToString(this.i.ns);
|
|
370
370
|
},
|
|
371
371
|
set: function (v) {
|
|
372
|
-
this.i.
|
|
373
|
-
this._a("actualAmbientShadowColor", brushToString(this.i.
|
|
372
|
+
this.i.ns = stringToBrush(v);
|
|
373
|
+
this._a("actualAmbientShadowColor", brushToString(this.i.ns));
|
|
374
374
|
},
|
|
375
375
|
enumerable: false,
|
|
376
376
|
configurable: true
|
|
@@ -380,11 +380,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
380
380
|
* Gets or sets the color to use for the check mark when the checkbox is checked.
|
|
381
381
|
*/
|
|
382
382
|
get: function () {
|
|
383
|
-
return this.i.
|
|
383
|
+
return this.i.cy;
|
|
384
384
|
},
|
|
385
385
|
set: function (v) {
|
|
386
|
-
this.i.
|
|
387
|
-
this._a("actualRestingElevation", this.i.
|
|
386
|
+
this.i.cy = +v;
|
|
387
|
+
this._a("actualRestingElevation", this.i.cy);
|
|
388
388
|
},
|
|
389
389
|
enumerable: false,
|
|
390
390
|
configurable: true
|
|
@@ -394,11 +394,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
394
394
|
* Gets or sets the color to use for the check mark when the checkbox is checked.
|
|
395
395
|
*/
|
|
396
396
|
get: function () {
|
|
397
|
-
return this.i.
|
|
397
|
+
return this.i.cw;
|
|
398
398
|
},
|
|
399
399
|
set: function (v) {
|
|
400
|
-
this.i.
|
|
401
|
-
this._a("actualFocusElevation", this.i.
|
|
400
|
+
this.i.cw = +v;
|
|
401
|
+
this._a("actualFocusElevation", this.i.cw);
|
|
402
402
|
},
|
|
403
403
|
enumerable: false,
|
|
404
404
|
configurable: true
|
|
@@ -408,11 +408,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
408
408
|
* Gets or sets the color to use for the check mark when the checkbox is checked.
|
|
409
409
|
*/
|
|
410
410
|
get: function () {
|
|
411
|
-
return this.i.
|
|
411
|
+
return this.i.cx;
|
|
412
412
|
},
|
|
413
413
|
set: function (v) {
|
|
414
|
-
this.i.
|
|
415
|
-
this._a("actualHoverElevation", this.i.
|
|
414
|
+
this.i.cx = +v;
|
|
415
|
+
this._a("actualHoverElevation", this.i.cx);
|
|
416
416
|
},
|
|
417
417
|
enumerable: false,
|
|
418
418
|
configurable: true
|
|
@@ -422,83 +422,83 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
422
422
|
* Gets or sets the color to use for the ripple when the button is pressed.
|
|
423
423
|
*/
|
|
424
424
|
get: function () {
|
|
425
|
-
return brushToString(this.i.
|
|
425
|
+
return brushToString(this.i.n3);
|
|
426
426
|
},
|
|
427
427
|
set: function (v) {
|
|
428
|
-
this.i.
|
|
429
|
-
this._a("actualRippleColor", brushToString(this.i.
|
|
428
|
+
this.i.n3 = stringToBrush(v);
|
|
429
|
+
this._a("actualRippleColor", brushToString(this.i.n3));
|
|
430
430
|
},
|
|
431
431
|
enumerable: false,
|
|
432
432
|
configurable: true
|
|
433
433
|
});
|
|
434
434
|
Object.defineProperty(IgcXButtonComponent.prototype, "actualCornerRadiusBottomRight", {
|
|
435
435
|
get: function () {
|
|
436
|
-
return this.i.
|
|
436
|
+
return this.i.k4 ? this.i.k4.c : NaN;
|
|
437
437
|
},
|
|
438
438
|
set: function (v) {
|
|
439
439
|
this.ensureActualCornerRadius();
|
|
440
|
-
this.i.
|
|
441
|
-
this._a("actualCornerRadiusBottomRight", this.i.
|
|
442
|
-
this.i.
|
|
440
|
+
this.i.k4.c = +v;
|
|
441
|
+
this._a("actualCornerRadiusBottomRight", this.i.k4.c);
|
|
442
|
+
this.i.k4 = this.i.k4;
|
|
443
443
|
},
|
|
444
444
|
enumerable: false,
|
|
445
445
|
configurable: true
|
|
446
446
|
});
|
|
447
447
|
Object.defineProperty(IgcXButtonComponent.prototype, "actualCornerRadiusBottomLeft", {
|
|
448
448
|
get: function () {
|
|
449
|
-
return this.i.
|
|
449
|
+
return this.i.k4 ? this.i.k4.b : NaN;
|
|
450
450
|
},
|
|
451
451
|
set: function (v) {
|
|
452
452
|
this.ensureActualCornerRadius();
|
|
453
|
-
this.i.
|
|
454
|
-
this._a("actualCornerRadiusBottomLeft", this.i.
|
|
455
|
-
this.i.
|
|
453
|
+
this.i.k4.b = +v;
|
|
454
|
+
this._a("actualCornerRadiusBottomLeft", this.i.k4.b);
|
|
455
|
+
this.i.k4 = this.i.k4;
|
|
456
456
|
},
|
|
457
457
|
enumerable: false,
|
|
458
458
|
configurable: true
|
|
459
459
|
});
|
|
460
460
|
Object.defineProperty(IgcXButtonComponent.prototype, "actualCornerRadiusTopLeft", {
|
|
461
461
|
get: function () {
|
|
462
|
-
return this.i.
|
|
462
|
+
return this.i.k4 ? this.i.k4.d : NaN;
|
|
463
463
|
},
|
|
464
464
|
set: function (v) {
|
|
465
465
|
this.ensureActualCornerRadius();
|
|
466
|
-
this.i.
|
|
467
|
-
this._a("actualCornerRadiusTopLeft", this.i.
|
|
468
|
-
this.i.
|
|
466
|
+
this.i.k4.d = +v;
|
|
467
|
+
this._a("actualCornerRadiusTopLeft", this.i.k4.d);
|
|
468
|
+
this.i.k4 = this.i.k4;
|
|
469
469
|
},
|
|
470
470
|
enumerable: false,
|
|
471
471
|
configurable: true
|
|
472
472
|
});
|
|
473
473
|
Object.defineProperty(IgcXButtonComponent.prototype, "actualCornerRadiusTopRight", {
|
|
474
474
|
get: function () {
|
|
475
|
-
return this.i.
|
|
475
|
+
return this.i.k4 ? this.i.k4.e : NaN;
|
|
476
476
|
},
|
|
477
477
|
set: function (v) {
|
|
478
478
|
this.ensureActualCornerRadius();
|
|
479
|
-
this.i.
|
|
480
|
-
this._a("actualCornerRadiusTopRight", this.i.
|
|
481
|
-
this.i.
|
|
479
|
+
this.i.k4.e = +v;
|
|
480
|
+
this._a("actualCornerRadiusTopRight", this.i.k4.e);
|
|
481
|
+
this.i.k4 = this.i.k4;
|
|
482
482
|
},
|
|
483
483
|
enumerable: false,
|
|
484
484
|
configurable: true
|
|
485
485
|
});
|
|
486
486
|
IgcXButtonComponent.prototype.ensureActualCornerRadius = function () {
|
|
487
|
-
if (this.i.
|
|
487
|
+
if (this.i.k4) {
|
|
488
488
|
return;
|
|
489
489
|
}
|
|
490
|
-
this.i.
|
|
490
|
+
this.i.k4 = new CornerRadius(2);
|
|
491
491
|
};
|
|
492
492
|
Object.defineProperty(IgcXButtonComponent.prototype, "actualBackgroundColor", {
|
|
493
493
|
/**
|
|
494
494
|
* Gets the color to use for the actual background.
|
|
495
495
|
*/
|
|
496
496
|
get: function () {
|
|
497
|
-
return brushToString(this.i.
|
|
497
|
+
return brushToString(this.i.nt);
|
|
498
498
|
},
|
|
499
499
|
set: function (v) {
|
|
500
|
-
this.i.
|
|
501
|
-
this._a("actualBackgroundColor", brushToString(this.i.
|
|
500
|
+
this.i.nt = stringToBrush(v);
|
|
501
|
+
this._a("actualBackgroundColor", brushToString(this.i.nt));
|
|
502
502
|
},
|
|
503
503
|
enumerable: false,
|
|
504
504
|
configurable: true
|
|
@@ -508,11 +508,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
508
508
|
* Gets the actual color to use for the disabled background of the button.
|
|
509
509
|
*/
|
|
510
510
|
get: function () {
|
|
511
|
-
return brushToString(this.i.
|
|
511
|
+
return brushToString(this.i.nv);
|
|
512
512
|
},
|
|
513
513
|
set: function (v) {
|
|
514
|
-
this.i.
|
|
515
|
-
this._a("actualDisabledBackgroundColor", brushToString(this.i.
|
|
514
|
+
this.i.nv = stringToBrush(v);
|
|
515
|
+
this._a("actualDisabledBackgroundColor", brushToString(this.i.nv));
|
|
516
516
|
},
|
|
517
517
|
enumerable: false,
|
|
518
518
|
configurable: true
|
|
@@ -522,11 +522,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
522
522
|
* Gets the actual color to use for the disabled border of the button.
|
|
523
523
|
*/
|
|
524
524
|
get: function () {
|
|
525
|
-
return brushToString(this.i.
|
|
525
|
+
return brushToString(this.i.nw);
|
|
526
526
|
},
|
|
527
527
|
set: function (v) {
|
|
528
|
-
this.i.
|
|
529
|
-
this._a("actualDisabledBorderColor", brushToString(this.i.
|
|
528
|
+
this.i.nw = stringToBrush(v);
|
|
529
|
+
this._a("actualDisabledBorderColor", brushToString(this.i.nw));
|
|
530
530
|
},
|
|
531
531
|
enumerable: false,
|
|
532
532
|
configurable: true
|
|
@@ -536,11 +536,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
536
536
|
* Gets the actual color to use for the disabled text of the button.
|
|
537
537
|
*/
|
|
538
538
|
get: function () {
|
|
539
|
-
return brushToString(this.i.
|
|
539
|
+
return brushToString(this.i.nx);
|
|
540
540
|
},
|
|
541
541
|
set: function (v) {
|
|
542
|
-
this.i.
|
|
543
|
-
this._a("actualDisabledTextColor", brushToString(this.i.
|
|
542
|
+
this.i.nx = stringToBrush(v);
|
|
543
|
+
this._a("actualDisabledTextColor", brushToString(this.i.nx));
|
|
544
544
|
},
|
|
545
545
|
enumerable: false,
|
|
546
546
|
configurable: true
|
|
@@ -550,11 +550,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
550
550
|
* Gets the actual disabled elevation to use for the button.
|
|
551
551
|
*/
|
|
552
552
|
get: function () {
|
|
553
|
-
return this.i.
|
|
553
|
+
return this.i.cv;
|
|
554
554
|
},
|
|
555
555
|
set: function (v) {
|
|
556
|
-
this.i.
|
|
557
|
-
this._a("actualDisabledElevation", this.i.
|
|
556
|
+
this.i.cv = +v;
|
|
557
|
+
this._a("actualDisabledElevation", this.i.cv);
|
|
558
558
|
},
|
|
559
559
|
enumerable: false,
|
|
560
560
|
configurable: true
|
|
@@ -564,11 +564,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
564
564
|
* Gets the actual disabled elevation to use for the button.
|
|
565
565
|
*/
|
|
566
566
|
get: function () {
|
|
567
|
-
return this.i.
|
|
567
|
+
return this.i.v;
|
|
568
568
|
},
|
|
569
569
|
set: function (v) {
|
|
570
|
-
this.i.
|
|
571
|
-
this._a("actualElevationMode", enumToString(ElevationMode_$type, this.i.
|
|
570
|
+
this.i.v = ensureEnum(ElevationMode_$type, v);
|
|
571
|
+
this._a("actualElevationMode", enumToString(ElevationMode_$type, this.i.v));
|
|
572
572
|
},
|
|
573
573
|
enumerable: false,
|
|
574
574
|
configurable: true
|
|
@@ -578,11 +578,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
578
578
|
* Gets the color to use for the actual background.
|
|
579
579
|
*/
|
|
580
580
|
get: function () {
|
|
581
|
-
return brushToString(this.i.
|
|
581
|
+
return brushToString(this.i.n4);
|
|
582
582
|
},
|
|
583
583
|
set: function (v) {
|
|
584
|
-
this.i.
|
|
585
|
-
this._a("actualTextColor", brushToString(this.i.
|
|
584
|
+
this.i.n4 = stringToBrush(v);
|
|
585
|
+
this._a("actualTextColor", brushToString(this.i.n4));
|
|
586
586
|
},
|
|
587
587
|
enumerable: false,
|
|
588
588
|
configurable: true
|
|
@@ -592,11 +592,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
592
592
|
* Gets the color to use for the actual background.
|
|
593
593
|
*/
|
|
594
594
|
get: function () {
|
|
595
|
-
return brushToString(this.i.
|
|
595
|
+
return brushToString(this.i.n1);
|
|
596
596
|
},
|
|
597
597
|
set: function (v) {
|
|
598
|
-
this.i.
|
|
599
|
-
this._a("actualHoverTextColor", brushToString(this.i.
|
|
598
|
+
this.i.n1 = stringToBrush(v);
|
|
599
|
+
this._a("actualHoverTextColor", brushToString(this.i.n1));
|
|
600
600
|
},
|
|
601
601
|
enumerable: false,
|
|
602
602
|
configurable: true
|
|
@@ -606,11 +606,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
606
606
|
* Gets the color to use for the actual background.
|
|
607
607
|
*/
|
|
608
608
|
get: function () {
|
|
609
|
-
return brushToString(this.i.
|
|
609
|
+
return brushToString(this.i.ny);
|
|
610
610
|
},
|
|
611
611
|
set: function (v) {
|
|
612
|
-
this.i.
|
|
613
|
-
this._a("actualFocusBackgroundColor", brushToString(this.i.
|
|
612
|
+
this.i.ny = stringToBrush(v);
|
|
613
|
+
this._a("actualFocusBackgroundColor", brushToString(this.i.ny));
|
|
614
614
|
},
|
|
615
615
|
enumerable: false,
|
|
616
616
|
configurable: true
|
|
@@ -620,11 +620,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
620
620
|
* Gets the actual color to use for the focused text.
|
|
621
621
|
*/
|
|
622
622
|
get: function () {
|
|
623
|
-
return brushToString(this.i.
|
|
623
|
+
return brushToString(this.i.nz);
|
|
624
624
|
},
|
|
625
625
|
set: function (v) {
|
|
626
|
-
this.i.
|
|
627
|
-
this._a("actualFocusTextColor", brushToString(this.i.
|
|
626
|
+
this.i.nz = stringToBrush(v);
|
|
627
|
+
this._a("actualFocusTextColor", brushToString(this.i.nz));
|
|
628
628
|
},
|
|
629
629
|
enumerable: false,
|
|
630
630
|
configurable: true
|
|
@@ -634,11 +634,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
634
634
|
* Gets the hover color to use for the actual background.
|
|
635
635
|
*/
|
|
636
636
|
get: function () {
|
|
637
|
-
return brushToString(this.i.
|
|
637
|
+
return brushToString(this.i.n0);
|
|
638
638
|
},
|
|
639
639
|
set: function (v) {
|
|
640
|
-
this.i.
|
|
641
|
-
this._a("actualHoverBackgroundColor", brushToString(this.i.
|
|
640
|
+
this.i.n0 = stringToBrush(v);
|
|
641
|
+
this._a("actualHoverBackgroundColor", brushToString(this.i.n0));
|
|
642
642
|
},
|
|
643
643
|
enumerable: false,
|
|
644
644
|
configurable: true
|
|
@@ -648,11 +648,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
648
648
|
* Gets or sets the Width to use for the check mark when the checkbox is checked.
|
|
649
649
|
*/
|
|
650
650
|
get: function () {
|
|
651
|
-
return this.i.
|
|
651
|
+
return this.i.bk;
|
|
652
652
|
},
|
|
653
653
|
set: function (v) {
|
|
654
|
-
this.i.
|
|
655
|
-
this._a("actualBorderWidth", this.i.
|
|
654
|
+
this.i.bk = +v;
|
|
655
|
+
this._a("actualBorderWidth", this.i.bk);
|
|
656
656
|
},
|
|
657
657
|
enumerable: false,
|
|
658
658
|
configurable: true
|
|
@@ -662,11 +662,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
662
662
|
* Gets or sets the color to use for the background of the button when the type is raised.
|
|
663
663
|
*/
|
|
664
664
|
get: function () {
|
|
665
|
-
return brushToString(this.i.
|
|
665
|
+
return brushToString(this.i.q9);
|
|
666
666
|
},
|
|
667
667
|
set: function (v) {
|
|
668
|
-
this.i.
|
|
669
|
-
this._a("raisedBackgroundColor", brushToString(this.i.
|
|
668
|
+
this.i.q9 = stringToBrush(v);
|
|
669
|
+
this._a("raisedBackgroundColor", brushToString(this.i.q9));
|
|
670
670
|
},
|
|
671
671
|
enumerable: false,
|
|
672
672
|
configurable: true
|
|
@@ -676,11 +676,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
676
676
|
* Gets or sets the color to use for the disabled background of the button when the type is raised.
|
|
677
677
|
*/
|
|
678
678
|
get: function () {
|
|
679
|
-
return brushToString(this.i.
|
|
679
|
+
return brushToString(this.i.rb);
|
|
680
680
|
},
|
|
681
681
|
set: function (v) {
|
|
682
|
-
this.i.
|
|
683
|
-
this._a("raisedDisabledBackgroundColor", brushToString(this.i.
|
|
682
|
+
this.i.rb = stringToBrush(v);
|
|
683
|
+
this._a("raisedDisabledBackgroundColor", brushToString(this.i.rb));
|
|
684
684
|
},
|
|
685
685
|
enumerable: false,
|
|
686
686
|
configurable: true
|
|
@@ -690,11 +690,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
690
690
|
* Gets or sets the color to use for the disabled border of the button when the type is raised.
|
|
691
691
|
*/
|
|
692
692
|
get: function () {
|
|
693
|
-
return brushToString(this.i.
|
|
693
|
+
return brushToString(this.i.rc);
|
|
694
694
|
},
|
|
695
695
|
set: function (v) {
|
|
696
|
-
this.i.
|
|
697
|
-
this._a("raisedDisabledBorderColor", brushToString(this.i.
|
|
696
|
+
this.i.rc = stringToBrush(v);
|
|
697
|
+
this._a("raisedDisabledBorderColor", brushToString(this.i.rc));
|
|
698
698
|
},
|
|
699
699
|
enumerable: false,
|
|
700
700
|
configurable: true
|
|
@@ -704,11 +704,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
704
704
|
* Gets or sets the color to use for the disabled text of the button when the type is raised.
|
|
705
705
|
*/
|
|
706
706
|
get: function () {
|
|
707
|
-
return brushToString(this.i.
|
|
707
|
+
return brushToString(this.i.rd);
|
|
708
708
|
},
|
|
709
709
|
set: function (v) {
|
|
710
|
-
this.i.
|
|
711
|
-
this._a("raisedDisabledTextColor", brushToString(this.i.
|
|
710
|
+
this.i.rd = stringToBrush(v);
|
|
711
|
+
this._a("raisedDisabledTextColor", brushToString(this.i.rd));
|
|
712
712
|
},
|
|
713
713
|
enumerable: false,
|
|
714
714
|
configurable: true
|
|
@@ -718,11 +718,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
718
718
|
* Gets or sets the disabled elevation to use for the button when the type is raised.
|
|
719
719
|
*/
|
|
720
720
|
get: function () {
|
|
721
|
-
return this.i.
|
|
721
|
+
return this.i.d3;
|
|
722
722
|
},
|
|
723
723
|
set: function (v) {
|
|
724
|
-
this.i.
|
|
725
|
-
this._a("raisedDisabledElevation", this.i.
|
|
724
|
+
this.i.d3 = +v;
|
|
725
|
+
this._a("raisedDisabledElevation", this.i.d3);
|
|
726
726
|
},
|
|
727
727
|
enumerable: false,
|
|
728
728
|
configurable: true
|
|
@@ -732,11 +732,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
732
732
|
* Gets or sets the hover color to use for the background of the button when the type is raised.
|
|
733
733
|
*/
|
|
734
734
|
get: function () {
|
|
735
|
-
return brushToString(this.i.
|
|
735
|
+
return brushToString(this.i.rg);
|
|
736
736
|
},
|
|
737
737
|
set: function (v) {
|
|
738
|
-
this.i.
|
|
739
|
-
this._a("raisedHoverBackgroundColor", brushToString(this.i.
|
|
738
|
+
this.i.rg = stringToBrush(v);
|
|
739
|
+
this._a("raisedHoverBackgroundColor", brushToString(this.i.rg));
|
|
740
740
|
},
|
|
741
741
|
enumerable: false,
|
|
742
742
|
configurable: true
|
|
@@ -746,11 +746,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
746
746
|
* Gets or sets the border color to use for the button when the type is raised.
|
|
747
747
|
*/
|
|
748
748
|
get: function () {
|
|
749
|
-
return brushToString(this.i.
|
|
749
|
+
return brushToString(this.i.ra);
|
|
750
750
|
},
|
|
751
751
|
set: function (v) {
|
|
752
|
-
this.i.
|
|
753
|
-
this._a("raisedBorderColor", brushToString(this.i.
|
|
752
|
+
this.i.ra = stringToBrush(v);
|
|
753
|
+
this._a("raisedBorderColor", brushToString(this.i.ra));
|
|
754
754
|
},
|
|
755
755
|
enumerable: false,
|
|
756
756
|
configurable: true
|
|
@@ -760,11 +760,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
760
760
|
* Gets or sets the elevation to use for the button when the type is raised.
|
|
761
761
|
*/
|
|
762
762
|
get: function () {
|
|
763
|
-
return this.i.
|
|
763
|
+
return this.i.d6;
|
|
764
764
|
},
|
|
765
765
|
set: function (v) {
|
|
766
|
-
this.i.
|
|
767
|
-
this._a("raisedRestingElevation", this.i.
|
|
766
|
+
this.i.d6 = +v;
|
|
767
|
+
this._a("raisedRestingElevation", this.i.d6);
|
|
768
768
|
},
|
|
769
769
|
enumerable: false,
|
|
770
770
|
configurable: true
|
|
@@ -774,11 +774,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
774
774
|
* Gets or sets the hover elevation to use for the button when the type is raised.
|
|
775
775
|
*/
|
|
776
776
|
get: function () {
|
|
777
|
-
return this.i.
|
|
777
|
+
return this.i.d5;
|
|
778
778
|
},
|
|
779
779
|
set: function (v) {
|
|
780
|
-
this.i.
|
|
781
|
-
this._a("raisedHoverElevation", this.i.
|
|
780
|
+
this.i.d5 = +v;
|
|
781
|
+
this._a("raisedHoverElevation", this.i.d5);
|
|
782
782
|
},
|
|
783
783
|
enumerable: false,
|
|
784
784
|
configurable: true
|
|
@@ -788,11 +788,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
788
788
|
* Gets or sets the focus elevation to use for the button when the type is raised.
|
|
789
789
|
*/
|
|
790
790
|
get: function () {
|
|
791
|
-
return this.i.
|
|
791
|
+
return this.i.d4;
|
|
792
792
|
},
|
|
793
793
|
set: function (v) {
|
|
794
|
-
this.i.
|
|
795
|
-
this._a("raisedFocusElevation", this.i.
|
|
794
|
+
this.i.d4 = +v;
|
|
795
|
+
this._a("raisedFocusElevation", this.i.d4);
|
|
796
796
|
},
|
|
797
797
|
enumerable: false,
|
|
798
798
|
configurable: true
|
|
@@ -802,83 +802,83 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
802
802
|
* Gets or sets the width to use for the button border when the type is raised.
|
|
803
803
|
*/
|
|
804
804
|
get: function () {
|
|
805
|
-
return this.i.
|
|
805
|
+
return this.i.b1;
|
|
806
806
|
},
|
|
807
807
|
set: function (v) {
|
|
808
|
-
this.i.
|
|
809
|
-
this._a("raisedBorderWidth", this.i.
|
|
808
|
+
this.i.b1 = +v;
|
|
809
|
+
this._a("raisedBorderWidth", this.i.b1);
|
|
810
810
|
},
|
|
811
811
|
enumerable: false,
|
|
812
812
|
configurable: true
|
|
813
813
|
});
|
|
814
814
|
Object.defineProperty(IgcXButtonComponent.prototype, "raisedCornerRadiusBottomRight", {
|
|
815
815
|
get: function () {
|
|
816
|
-
return this.i.
|
|
816
|
+
return this.i.lh ? this.i.lh.c : NaN;
|
|
817
817
|
},
|
|
818
818
|
set: function (v) {
|
|
819
819
|
this.ensureRaisedCornerRadius();
|
|
820
|
-
this.i.
|
|
821
|
-
this._a("raisedCornerRadiusBottomRight", this.i.
|
|
822
|
-
this.i.
|
|
820
|
+
this.i.lh.c = +v;
|
|
821
|
+
this._a("raisedCornerRadiusBottomRight", this.i.lh.c);
|
|
822
|
+
this.i.lh = this.i.lh;
|
|
823
823
|
},
|
|
824
824
|
enumerable: false,
|
|
825
825
|
configurable: true
|
|
826
826
|
});
|
|
827
827
|
Object.defineProperty(IgcXButtonComponent.prototype, "raisedCornerRadiusBottomLeft", {
|
|
828
828
|
get: function () {
|
|
829
|
-
return this.i.
|
|
829
|
+
return this.i.lh ? this.i.lh.b : NaN;
|
|
830
830
|
},
|
|
831
831
|
set: function (v) {
|
|
832
832
|
this.ensureRaisedCornerRadius();
|
|
833
|
-
this.i.
|
|
834
|
-
this._a("raisedCornerRadiusBottomLeft", this.i.
|
|
835
|
-
this.i.
|
|
833
|
+
this.i.lh.b = +v;
|
|
834
|
+
this._a("raisedCornerRadiusBottomLeft", this.i.lh.b);
|
|
835
|
+
this.i.lh = this.i.lh;
|
|
836
836
|
},
|
|
837
837
|
enumerable: false,
|
|
838
838
|
configurable: true
|
|
839
839
|
});
|
|
840
840
|
Object.defineProperty(IgcXButtonComponent.prototype, "raisedCornerRadiusTopLeft", {
|
|
841
841
|
get: function () {
|
|
842
|
-
return this.i.
|
|
842
|
+
return this.i.lh ? this.i.lh.d : NaN;
|
|
843
843
|
},
|
|
844
844
|
set: function (v) {
|
|
845
845
|
this.ensureRaisedCornerRadius();
|
|
846
|
-
this.i.
|
|
847
|
-
this._a("raisedCornerRadiusTopLeft", this.i.
|
|
848
|
-
this.i.
|
|
846
|
+
this.i.lh.d = +v;
|
|
847
|
+
this._a("raisedCornerRadiusTopLeft", this.i.lh.d);
|
|
848
|
+
this.i.lh = this.i.lh;
|
|
849
849
|
},
|
|
850
850
|
enumerable: false,
|
|
851
851
|
configurable: true
|
|
852
852
|
});
|
|
853
853
|
Object.defineProperty(IgcXButtonComponent.prototype, "raisedCornerRadiusTopRight", {
|
|
854
854
|
get: function () {
|
|
855
|
-
return this.i.
|
|
855
|
+
return this.i.lh ? this.i.lh.e : NaN;
|
|
856
856
|
},
|
|
857
857
|
set: function (v) {
|
|
858
858
|
this.ensureRaisedCornerRadius();
|
|
859
|
-
this.i.
|
|
860
|
-
this._a("raisedCornerRadiusTopRight", this.i.
|
|
861
|
-
this.i.
|
|
859
|
+
this.i.lh.e = +v;
|
|
860
|
+
this._a("raisedCornerRadiusTopRight", this.i.lh.e);
|
|
861
|
+
this.i.lh = this.i.lh;
|
|
862
862
|
},
|
|
863
863
|
enumerable: false,
|
|
864
864
|
configurable: true
|
|
865
865
|
});
|
|
866
866
|
IgcXButtonComponent.prototype.ensureRaisedCornerRadius = function () {
|
|
867
|
-
if (this.i.
|
|
867
|
+
if (this.i.lh) {
|
|
868
868
|
return;
|
|
869
869
|
}
|
|
870
|
-
this.i.
|
|
870
|
+
this.i.lh = new CornerRadius(2);
|
|
871
871
|
};
|
|
872
872
|
Object.defineProperty(IgcXButtonComponent.prototype, "raisedRippleColor", {
|
|
873
873
|
/**
|
|
874
874
|
* Gets or sets the color to use for the background when the button is pressed and the type is floating action button.
|
|
875
875
|
*/
|
|
876
876
|
get: function () {
|
|
877
|
-
return brushToString(this.i.
|
|
877
|
+
return brushToString(this.i.ri);
|
|
878
878
|
},
|
|
879
879
|
set: function (v) {
|
|
880
|
-
this.i.
|
|
881
|
-
this._a("raisedRippleColor", brushToString(this.i.
|
|
880
|
+
this.i.ri = stringToBrush(v);
|
|
881
|
+
this._a("raisedRippleColor", brushToString(this.i.ri));
|
|
882
882
|
},
|
|
883
883
|
enumerable: false,
|
|
884
884
|
configurable: true
|
|
@@ -888,11 +888,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
888
888
|
* Gets or sets the color to use for the background of the button when the type is flat.
|
|
889
889
|
*/
|
|
890
890
|
get: function () {
|
|
891
|
-
return brushToString(this.i.
|
|
891
|
+
return brushToString(this.i.p8);
|
|
892
892
|
},
|
|
893
893
|
set: function (v) {
|
|
894
|
-
this.i.
|
|
895
|
-
this._a("flatBackgroundColor", brushToString(this.i.
|
|
894
|
+
this.i.p8 = stringToBrush(v);
|
|
895
|
+
this._a("flatBackgroundColor", brushToString(this.i.p8));
|
|
896
896
|
},
|
|
897
897
|
enumerable: false,
|
|
898
898
|
configurable: true
|
|
@@ -902,11 +902,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
902
902
|
* Gets or sets the color to use for the disabled background of the button when the type is flat.
|
|
903
903
|
*/
|
|
904
904
|
get: function () {
|
|
905
|
-
return brushToString(this.i.
|
|
905
|
+
return brushToString(this.i.qa);
|
|
906
906
|
},
|
|
907
907
|
set: function (v) {
|
|
908
|
-
this.i.
|
|
909
|
-
this._a("flatDisabledBackgroundColor", brushToString(this.i.
|
|
908
|
+
this.i.qa = stringToBrush(v);
|
|
909
|
+
this._a("flatDisabledBackgroundColor", brushToString(this.i.qa));
|
|
910
910
|
},
|
|
911
911
|
enumerable: false,
|
|
912
912
|
configurable: true
|
|
@@ -916,11 +916,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
916
916
|
* Gets or sets the color to use for the disabled border of the button when the type is flat.
|
|
917
917
|
*/
|
|
918
918
|
get: function () {
|
|
919
|
-
return brushToString(this.i.
|
|
919
|
+
return brushToString(this.i.qb);
|
|
920
920
|
},
|
|
921
921
|
set: function (v) {
|
|
922
|
-
this.i.
|
|
923
|
-
this._a("flatDisabledBorderColor", brushToString(this.i.
|
|
922
|
+
this.i.qb = stringToBrush(v);
|
|
923
|
+
this._a("flatDisabledBorderColor", brushToString(this.i.qb));
|
|
924
924
|
},
|
|
925
925
|
enumerable: false,
|
|
926
926
|
configurable: true
|
|
@@ -930,11 +930,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
930
930
|
* Gets or sets the color to use for the disabled text of the button when the type is flat.
|
|
931
931
|
*/
|
|
932
932
|
get: function () {
|
|
933
|
-
return brushToString(this.i.
|
|
933
|
+
return brushToString(this.i.qc);
|
|
934
934
|
},
|
|
935
935
|
set: function (v) {
|
|
936
|
-
this.i.
|
|
937
|
-
this._a("flatDisabledTextColor", brushToString(this.i.
|
|
936
|
+
this.i.qc = stringToBrush(v);
|
|
937
|
+
this._a("flatDisabledTextColor", brushToString(this.i.qc));
|
|
938
938
|
},
|
|
939
939
|
enumerable: false,
|
|
940
940
|
configurable: true
|
|
@@ -944,11 +944,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
944
944
|
* Gets or sets the disabled elevation to use for the button when the type is flat.
|
|
945
945
|
*/
|
|
946
946
|
get: function () {
|
|
947
|
-
return this.i.
|
|
947
|
+
return this.i.dp;
|
|
948
948
|
},
|
|
949
949
|
set: function (v) {
|
|
950
|
-
this.i.
|
|
951
|
-
this._a("flatDisabledElevation", this.i.
|
|
950
|
+
this.i.dp = +v;
|
|
951
|
+
this._a("flatDisabledElevation", this.i.dp);
|
|
952
952
|
},
|
|
953
953
|
enumerable: false,
|
|
954
954
|
configurable: true
|
|
@@ -958,11 +958,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
958
958
|
* Gets or sets the hover color to use for the background of the button when the type is flat.
|
|
959
959
|
*/
|
|
960
960
|
get: function () {
|
|
961
|
-
return brushToString(this.i.
|
|
961
|
+
return brushToString(this.i.qf);
|
|
962
962
|
},
|
|
963
963
|
set: function (v) {
|
|
964
|
-
this.i.
|
|
965
|
-
this._a("flatHoverBackgroundColor", brushToString(this.i.
|
|
964
|
+
this.i.qf = stringToBrush(v);
|
|
965
|
+
this._a("flatHoverBackgroundColor", brushToString(this.i.qf));
|
|
966
966
|
},
|
|
967
967
|
enumerable: false,
|
|
968
968
|
configurable: true
|
|
@@ -972,11 +972,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
972
972
|
* Gets or sets the border color to use for the button when the type is flat.
|
|
973
973
|
*/
|
|
974
974
|
get: function () {
|
|
975
|
-
return brushToString(this.i.
|
|
975
|
+
return brushToString(this.i.p9);
|
|
976
976
|
},
|
|
977
977
|
set: function (v) {
|
|
978
|
-
this.i.
|
|
979
|
-
this._a("flatBorderColor", brushToString(this.i.
|
|
978
|
+
this.i.p9 = stringToBrush(v);
|
|
979
|
+
this._a("flatBorderColor", brushToString(this.i.p9));
|
|
980
980
|
},
|
|
981
981
|
enumerable: false,
|
|
982
982
|
configurable: true
|
|
@@ -986,11 +986,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
986
986
|
* Gets or sets the elevation to use for the button when the type is flat.
|
|
987
987
|
*/
|
|
988
988
|
get: function () {
|
|
989
|
-
return this.i.
|
|
989
|
+
return this.i.ds;
|
|
990
990
|
},
|
|
991
991
|
set: function (v) {
|
|
992
|
-
this.i.
|
|
993
|
-
this._a("flatRestingElevation", this.i.
|
|
992
|
+
this.i.ds = +v;
|
|
993
|
+
this._a("flatRestingElevation", this.i.ds);
|
|
994
994
|
},
|
|
995
995
|
enumerable: false,
|
|
996
996
|
configurable: true
|
|
@@ -1000,11 +1000,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1000
1000
|
* Gets or sets the hover elevation to use for the button when the type is flat.
|
|
1001
1001
|
*/
|
|
1002
1002
|
get: function () {
|
|
1003
|
-
return this.i.
|
|
1003
|
+
return this.i.dr;
|
|
1004
1004
|
},
|
|
1005
1005
|
set: function (v) {
|
|
1006
|
-
this.i.
|
|
1007
|
-
this._a("flatHoverElevation", this.i.
|
|
1006
|
+
this.i.dr = +v;
|
|
1007
|
+
this._a("flatHoverElevation", this.i.dr);
|
|
1008
1008
|
},
|
|
1009
1009
|
enumerable: false,
|
|
1010
1010
|
configurable: true
|
|
@@ -1014,11 +1014,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1014
1014
|
* Gets or sets the focus elevation to use for the button when the type is flat.
|
|
1015
1015
|
*/
|
|
1016
1016
|
get: function () {
|
|
1017
|
-
return this.i.
|
|
1017
|
+
return this.i.dq;
|
|
1018
1018
|
},
|
|
1019
1019
|
set: function (v) {
|
|
1020
|
-
this.i.
|
|
1021
|
-
this._a("flatFocusElevation", this.i.
|
|
1020
|
+
this.i.dq = +v;
|
|
1021
|
+
this._a("flatFocusElevation", this.i.dq);
|
|
1022
1022
|
},
|
|
1023
1023
|
enumerable: false,
|
|
1024
1024
|
configurable: true
|
|
@@ -1028,11 +1028,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1028
1028
|
* Gets or sets the color to use for the background when the button is pressed and the type is floating action button.
|
|
1029
1029
|
*/
|
|
1030
1030
|
get: function () {
|
|
1031
|
-
return brushToString(this.i.
|
|
1031
|
+
return brushToString(this.i.qh);
|
|
1032
1032
|
},
|
|
1033
1033
|
set: function (v) {
|
|
1034
|
-
this.i.
|
|
1035
|
-
this._a("flatRippleColor", brushToString(this.i.
|
|
1034
|
+
this.i.qh = stringToBrush(v);
|
|
1035
|
+
this._a("flatRippleColor", brushToString(this.i.qh));
|
|
1036
1036
|
},
|
|
1037
1037
|
enumerable: false,
|
|
1038
1038
|
configurable: true
|
|
@@ -1042,11 +1042,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1042
1042
|
* Gets or sets the color to use for the text of the button when type is flat.
|
|
1043
1043
|
*/
|
|
1044
1044
|
get: function () {
|
|
1045
|
-
return brushToString(this.i.
|
|
1045
|
+
return brushToString(this.i.qi);
|
|
1046
1046
|
},
|
|
1047
1047
|
set: function (v) {
|
|
1048
|
-
this.i.
|
|
1049
|
-
this._a("flatTextColor", brushToString(this.i.
|
|
1048
|
+
this.i.qi = stringToBrush(v);
|
|
1049
|
+
this._a("flatTextColor", brushToString(this.i.qi));
|
|
1050
1050
|
},
|
|
1051
1051
|
enumerable: false,
|
|
1052
1052
|
configurable: true
|
|
@@ -1056,11 +1056,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1056
1056
|
* Gets or sets the color to use for the hovered text of the button when type is flat.
|
|
1057
1057
|
*/
|
|
1058
1058
|
get: function () {
|
|
1059
|
-
return brushToString(this.i.
|
|
1059
|
+
return brushToString(this.i.qg);
|
|
1060
1060
|
},
|
|
1061
1061
|
set: function (v) {
|
|
1062
|
-
this.i.
|
|
1063
|
-
this._a("flatHoverTextColor", brushToString(this.i.
|
|
1062
|
+
this.i.qg = stringToBrush(v);
|
|
1063
|
+
this._a("flatHoverTextColor", brushToString(this.i.qg));
|
|
1064
1064
|
},
|
|
1065
1065
|
enumerable: false,
|
|
1066
1066
|
configurable: true
|
|
@@ -1070,11 +1070,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1070
1070
|
* Gets or sets the color to use for the backround the button when it is focused and flat.
|
|
1071
1071
|
*/
|
|
1072
1072
|
get: function () {
|
|
1073
|
-
return brushToString(this.i.
|
|
1073
|
+
return brushToString(this.i.qd);
|
|
1074
1074
|
},
|
|
1075
1075
|
set: function (v) {
|
|
1076
|
-
this.i.
|
|
1077
|
-
this._a("flatFocusBackgroundColor", brushToString(this.i.
|
|
1076
|
+
this.i.qd = stringToBrush(v);
|
|
1077
|
+
this._a("flatFocusBackgroundColor", brushToString(this.i.qd));
|
|
1078
1078
|
},
|
|
1079
1079
|
enumerable: false,
|
|
1080
1080
|
configurable: true
|
|
@@ -1084,11 +1084,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1084
1084
|
* Gets or sets the color to use for the text the button when it is focused and flat.
|
|
1085
1085
|
*/
|
|
1086
1086
|
get: function () {
|
|
1087
|
-
return brushToString(this.i.
|
|
1087
|
+
return brushToString(this.i.qe);
|
|
1088
1088
|
},
|
|
1089
1089
|
set: function (v) {
|
|
1090
|
-
this.i.
|
|
1091
|
-
this._a("flatFocusTextColor", brushToString(this.i.
|
|
1090
|
+
this.i.qe = stringToBrush(v);
|
|
1091
|
+
this._a("flatFocusTextColor", brushToString(this.i.qe));
|
|
1092
1092
|
},
|
|
1093
1093
|
enumerable: false,
|
|
1094
1094
|
configurable: true
|
|
@@ -1098,83 +1098,83 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1098
1098
|
* Gets or sets the width to use for the button border when the type is flat.
|
|
1099
1099
|
*/
|
|
1100
1100
|
get: function () {
|
|
1101
|
-
return this.i.
|
|
1101
|
+
return this.i.bw;
|
|
1102
1102
|
},
|
|
1103
1103
|
set: function (v) {
|
|
1104
|
-
this.i.
|
|
1105
|
-
this._a("flatBorderWidth", this.i.
|
|
1104
|
+
this.i.bw = +v;
|
|
1105
|
+
this._a("flatBorderWidth", this.i.bw);
|
|
1106
1106
|
},
|
|
1107
1107
|
enumerable: false,
|
|
1108
1108
|
configurable: true
|
|
1109
1109
|
});
|
|
1110
1110
|
Object.defineProperty(IgcXButtonComponent.prototype, "flatCornerRadiusBottomRight", {
|
|
1111
1111
|
get: function () {
|
|
1112
|
-
return this.i.
|
|
1112
|
+
return this.i.ld ? this.i.ld.c : NaN;
|
|
1113
1113
|
},
|
|
1114
1114
|
set: function (v) {
|
|
1115
1115
|
this.ensureFlatCornerRadius();
|
|
1116
|
-
this.i.
|
|
1117
|
-
this._a("flatCornerRadiusBottomRight", this.i.
|
|
1118
|
-
this.i.
|
|
1116
|
+
this.i.ld.c = +v;
|
|
1117
|
+
this._a("flatCornerRadiusBottomRight", this.i.ld.c);
|
|
1118
|
+
this.i.ld = this.i.ld;
|
|
1119
1119
|
},
|
|
1120
1120
|
enumerable: false,
|
|
1121
1121
|
configurable: true
|
|
1122
1122
|
});
|
|
1123
1123
|
Object.defineProperty(IgcXButtonComponent.prototype, "flatCornerRadiusBottomLeft", {
|
|
1124
1124
|
get: function () {
|
|
1125
|
-
return this.i.
|
|
1125
|
+
return this.i.ld ? this.i.ld.b : NaN;
|
|
1126
1126
|
},
|
|
1127
1127
|
set: function (v) {
|
|
1128
1128
|
this.ensureFlatCornerRadius();
|
|
1129
|
-
this.i.
|
|
1130
|
-
this._a("flatCornerRadiusBottomLeft", this.i.
|
|
1131
|
-
this.i.
|
|
1129
|
+
this.i.ld.b = +v;
|
|
1130
|
+
this._a("flatCornerRadiusBottomLeft", this.i.ld.b);
|
|
1131
|
+
this.i.ld = this.i.ld;
|
|
1132
1132
|
},
|
|
1133
1133
|
enumerable: false,
|
|
1134
1134
|
configurable: true
|
|
1135
1135
|
});
|
|
1136
1136
|
Object.defineProperty(IgcXButtonComponent.prototype, "flatCornerRadiusTopLeft", {
|
|
1137
1137
|
get: function () {
|
|
1138
|
-
return this.i.
|
|
1138
|
+
return this.i.ld ? this.i.ld.d : NaN;
|
|
1139
1139
|
},
|
|
1140
1140
|
set: function (v) {
|
|
1141
1141
|
this.ensureFlatCornerRadius();
|
|
1142
|
-
this.i.
|
|
1143
|
-
this._a("flatCornerRadiusTopLeft", this.i.
|
|
1144
|
-
this.i.
|
|
1142
|
+
this.i.ld.d = +v;
|
|
1143
|
+
this._a("flatCornerRadiusTopLeft", this.i.ld.d);
|
|
1144
|
+
this.i.ld = this.i.ld;
|
|
1145
1145
|
},
|
|
1146
1146
|
enumerable: false,
|
|
1147
1147
|
configurable: true
|
|
1148
1148
|
});
|
|
1149
1149
|
Object.defineProperty(IgcXButtonComponent.prototype, "flatCornerRadiusTopRight", {
|
|
1150
1150
|
get: function () {
|
|
1151
|
-
return this.i.
|
|
1151
|
+
return this.i.ld ? this.i.ld.e : NaN;
|
|
1152
1152
|
},
|
|
1153
1153
|
set: function (v) {
|
|
1154
1154
|
this.ensureFlatCornerRadius();
|
|
1155
|
-
this.i.
|
|
1156
|
-
this._a("flatCornerRadiusTopRight", this.i.
|
|
1157
|
-
this.i.
|
|
1155
|
+
this.i.ld.e = +v;
|
|
1156
|
+
this._a("flatCornerRadiusTopRight", this.i.ld.e);
|
|
1157
|
+
this.i.ld = this.i.ld;
|
|
1158
1158
|
},
|
|
1159
1159
|
enumerable: false,
|
|
1160
1160
|
configurable: true
|
|
1161
1161
|
});
|
|
1162
1162
|
IgcXButtonComponent.prototype.ensureFlatCornerRadius = function () {
|
|
1163
|
-
if (this.i.
|
|
1163
|
+
if (this.i.ld) {
|
|
1164
1164
|
return;
|
|
1165
1165
|
}
|
|
1166
|
-
this.i.
|
|
1166
|
+
this.i.ld = new CornerRadius(2);
|
|
1167
1167
|
};
|
|
1168
1168
|
Object.defineProperty(IgcXButtonComponent.prototype, "backgroundColor", {
|
|
1169
1169
|
/**
|
|
1170
1170
|
* Gets or sets the color to use for the background when the button regardless of type.
|
|
1171
1171
|
*/
|
|
1172
1172
|
get: function () {
|
|
1173
|
-
return brushToString(this.i.
|
|
1173
|
+
return brushToString(this.i.n6);
|
|
1174
1174
|
},
|
|
1175
1175
|
set: function (v) {
|
|
1176
|
-
this.i.
|
|
1177
|
-
this._a("backgroundColor", brushToString(this.i.
|
|
1176
|
+
this.i.n6 = stringToBrush(v);
|
|
1177
|
+
this._a("backgroundColor", brushToString(this.i.n6));
|
|
1178
1178
|
},
|
|
1179
1179
|
enumerable: false,
|
|
1180
1180
|
configurable: true
|
|
@@ -1184,11 +1184,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1184
1184
|
* Gets or sets the color to use for the disabled background of the button when the type is disabled.
|
|
1185
1185
|
*/
|
|
1186
1186
|
get: function () {
|
|
1187
|
-
return brushToString(this.i.
|
|
1187
|
+
return brushToString(this.i.pu);
|
|
1188
1188
|
},
|
|
1189
1189
|
set: function (v) {
|
|
1190
|
-
this.i.
|
|
1191
|
-
this._a("disabledBackgroundColor", brushToString(this.i.
|
|
1190
|
+
this.i.pu = stringToBrush(v);
|
|
1191
|
+
this._a("disabledBackgroundColor", brushToString(this.i.pu));
|
|
1192
1192
|
},
|
|
1193
1193
|
enumerable: false,
|
|
1194
1194
|
configurable: true
|
|
@@ -1198,11 +1198,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1198
1198
|
* Gets or sets the color to use for the disabled border of the button when the type is raised.
|
|
1199
1199
|
*/
|
|
1200
1200
|
get: function () {
|
|
1201
|
-
return brushToString(this.i.
|
|
1201
|
+
return brushToString(this.i.pv);
|
|
1202
1202
|
},
|
|
1203
1203
|
set: function (v) {
|
|
1204
|
-
this.i.
|
|
1205
|
-
this._a("disabledBorderColor", brushToString(this.i.
|
|
1204
|
+
this.i.pv = stringToBrush(v);
|
|
1205
|
+
this._a("disabledBorderColor", brushToString(this.i.pv));
|
|
1206
1206
|
},
|
|
1207
1207
|
enumerable: false,
|
|
1208
1208
|
configurable: true
|
|
@@ -1212,11 +1212,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1212
1212
|
* Gets or sets the color to use for the disabled text of the button when the type is raised.
|
|
1213
1213
|
*/
|
|
1214
1214
|
get: function () {
|
|
1215
|
-
return brushToString(this.i.
|
|
1215
|
+
return brushToString(this.i.pw);
|
|
1216
1216
|
},
|
|
1217
1217
|
set: function (v) {
|
|
1218
|
-
this.i.
|
|
1219
|
-
this._a("disabledTextColor", brushToString(this.i.
|
|
1218
|
+
this.i.pw = stringToBrush(v);
|
|
1219
|
+
this._a("disabledTextColor", brushToString(this.i.pw));
|
|
1220
1220
|
},
|
|
1221
1221
|
enumerable: false,
|
|
1222
1222
|
configurable: true
|
|
@@ -1226,11 +1226,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1226
1226
|
* Gets or sets the disabled elevation to use for the button when the type is raised.
|
|
1227
1227
|
*/
|
|
1228
1228
|
get: function () {
|
|
1229
|
-
return this.i.
|
|
1229
|
+
return this.i.dj;
|
|
1230
1230
|
},
|
|
1231
1231
|
set: function (v) {
|
|
1232
|
-
this.i.
|
|
1233
|
-
this._a("disabledElevation", this.i.
|
|
1232
|
+
this.i.dj = +v;
|
|
1233
|
+
this._a("disabledElevation", this.i.dj);
|
|
1234
1234
|
},
|
|
1235
1235
|
enumerable: false,
|
|
1236
1236
|
configurable: true
|
|
@@ -1240,11 +1240,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1240
1240
|
* Gets or sets the disabled elevation to use for the button when the type is raised.
|
|
1241
1241
|
*/
|
|
1242
1242
|
get: function () {
|
|
1243
|
-
return this.i.
|
|
1243
|
+
return this.i.x;
|
|
1244
1244
|
},
|
|
1245
1245
|
set: function (v) {
|
|
1246
|
-
this.i.
|
|
1247
|
-
this._a("elevationMode", enumToString(ElevationMode_$type, this.i.
|
|
1246
|
+
this.i.x = ensureEnum(ElevationMode_$type, v);
|
|
1247
|
+
this._a("elevationMode", enumToString(ElevationMode_$type, this.i.x));
|
|
1248
1248
|
},
|
|
1249
1249
|
enumerable: false,
|
|
1250
1250
|
configurable: true
|
|
@@ -1254,11 +1254,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1254
1254
|
* Gets or sets the hover color to use for the background of the button when the type is hovered.
|
|
1255
1255
|
*/
|
|
1256
1256
|
get: function () {
|
|
1257
|
-
return brushToString(this.i.
|
|
1257
|
+
return brushToString(this.i.ql);
|
|
1258
1258
|
},
|
|
1259
1259
|
set: function (v) {
|
|
1260
|
-
this.i.
|
|
1261
|
-
this._a("hoverBackgroundColor", brushToString(this.i.
|
|
1260
|
+
this.i.ql = stringToBrush(v);
|
|
1261
|
+
this._a("hoverBackgroundColor", brushToString(this.i.ql));
|
|
1262
1262
|
},
|
|
1263
1263
|
enumerable: false,
|
|
1264
1264
|
configurable: true
|
|
@@ -1268,11 +1268,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1268
1268
|
* Gets or sets the border color to use for the button regardless of type.
|
|
1269
1269
|
*/
|
|
1270
1270
|
get: function () {
|
|
1271
|
-
return brushToString(this.i.
|
|
1271
|
+
return brushToString(this.i.n7);
|
|
1272
1272
|
},
|
|
1273
1273
|
set: function (v) {
|
|
1274
|
-
this.i.
|
|
1275
|
-
this._a("borderColor", brushToString(this.i.
|
|
1274
|
+
this.i.n7 = stringToBrush(v);
|
|
1275
|
+
this._a("borderColor", brushToString(this.i.n7));
|
|
1276
1276
|
},
|
|
1277
1277
|
enumerable: false,
|
|
1278
1278
|
configurable: true
|
|
@@ -1282,11 +1282,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1282
1282
|
* Gets or sets the elevation to use for the button regardless of type.
|
|
1283
1283
|
*/
|
|
1284
1284
|
get: function () {
|
|
1285
|
-
return this.i.
|
|
1285
|
+
return this.i.d7;
|
|
1286
1286
|
},
|
|
1287
1287
|
set: function (v) {
|
|
1288
|
-
this.i.
|
|
1289
|
-
this._a("restingElevation", this.i.
|
|
1288
|
+
this.i.d7 = +v;
|
|
1289
|
+
this._a("restingElevation", this.i.d7);
|
|
1290
1290
|
},
|
|
1291
1291
|
enumerable: false,
|
|
1292
1292
|
configurable: true
|
|
@@ -1296,11 +1296,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1296
1296
|
* Gets or sets the hover elevation to use for the button regardless of type.
|
|
1297
1297
|
*/
|
|
1298
1298
|
get: function () {
|
|
1299
|
-
return this.i.
|
|
1299
|
+
return this.i.du;
|
|
1300
1300
|
},
|
|
1301
1301
|
set: function (v) {
|
|
1302
|
-
this.i.
|
|
1303
|
-
this._a("hoverElevation", this.i.
|
|
1302
|
+
this.i.du = +v;
|
|
1303
|
+
this._a("hoverElevation", this.i.du);
|
|
1304
1304
|
},
|
|
1305
1305
|
enumerable: false,
|
|
1306
1306
|
configurable: true
|
|
@@ -1310,11 +1310,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1310
1310
|
* Gets or sets the focus elevation to use for the button regardless of type.
|
|
1311
1311
|
*/
|
|
1312
1312
|
get: function () {
|
|
1313
|
-
return this.i.
|
|
1313
|
+
return this.i.dt;
|
|
1314
1314
|
},
|
|
1315
1315
|
set: function (v) {
|
|
1316
|
-
this.i.
|
|
1317
|
-
this._a("focusElevation", this.i.
|
|
1316
|
+
this.i.dt = +v;
|
|
1317
|
+
this._a("focusElevation", this.i.dt);
|
|
1318
1318
|
},
|
|
1319
1319
|
enumerable: false,
|
|
1320
1320
|
configurable: true
|
|
@@ -1324,16 +1324,16 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1324
1324
|
* Gets or sets the use for the button.
|
|
1325
1325
|
*/
|
|
1326
1326
|
get: function () {
|
|
1327
|
-
if (this.i.
|
|
1327
|
+
if (this.i.ab == null) {
|
|
1328
1328
|
return null;
|
|
1329
1329
|
}
|
|
1330
|
-
return this.i.
|
|
1330
|
+
return this.i.ab.fontString;
|
|
1331
1331
|
},
|
|
1332
1332
|
set: function (v) {
|
|
1333
1333
|
var fi = new FontInfo();
|
|
1334
1334
|
fi.fontString = v;
|
|
1335
|
-
this.i.
|
|
1336
|
-
this._a("textStyle", this.i.
|
|
1335
|
+
this.i.ab = fi;
|
|
1336
|
+
this._a("textStyle", this.i.ab != null ? this.i.ab.fontString : "");
|
|
1337
1337
|
},
|
|
1338
1338
|
enumerable: false,
|
|
1339
1339
|
configurable: true
|
|
@@ -1343,11 +1343,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1343
1343
|
* Gets or sets the color to use for the text of the button regardless of type.
|
|
1344
1344
|
*/
|
|
1345
1345
|
get: function () {
|
|
1346
|
-
return brushToString(this.i.
|
|
1346
|
+
return brushToString(this.i.rl);
|
|
1347
1347
|
},
|
|
1348
1348
|
set: function (v) {
|
|
1349
|
-
this.i.
|
|
1350
|
-
this._a("textColor", brushToString(this.i.
|
|
1349
|
+
this.i.rl = stringToBrush(v);
|
|
1350
|
+
this._a("textColor", brushToString(this.i.rl));
|
|
1351
1351
|
},
|
|
1352
1352
|
enumerable: false,
|
|
1353
1353
|
configurable: true
|
|
@@ -1357,11 +1357,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1357
1357
|
* Gets or sets the color to use for the hovered text of the button regardless of type.
|
|
1358
1358
|
*/
|
|
1359
1359
|
get: function () {
|
|
1360
|
-
return brushToString(this.i.
|
|
1360
|
+
return brushToString(this.i.qm);
|
|
1361
1361
|
},
|
|
1362
1362
|
set: function (v) {
|
|
1363
|
-
this.i.
|
|
1364
|
-
this._a("hoverTextColor", brushToString(this.i.
|
|
1363
|
+
this.i.qm = stringToBrush(v);
|
|
1364
|
+
this._a("hoverTextColor", brushToString(this.i.qm));
|
|
1365
1365
|
},
|
|
1366
1366
|
enumerable: false,
|
|
1367
1367
|
configurable: true
|
|
@@ -1371,11 +1371,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1371
1371
|
* Gets or sets the color to use for the background of the button regardless of type.
|
|
1372
1372
|
*/
|
|
1373
1373
|
get: function () {
|
|
1374
|
-
return brushToString(this.i.
|
|
1374
|
+
return brushToString(this.i.rk);
|
|
1375
1375
|
},
|
|
1376
1376
|
set: function (v) {
|
|
1377
|
-
this.i.
|
|
1378
|
-
this._a("rippleColor", brushToString(this.i.
|
|
1377
|
+
this.i.rk = stringToBrush(v);
|
|
1378
|
+
this._a("rippleColor", brushToString(this.i.rk));
|
|
1379
1379
|
},
|
|
1380
1380
|
enumerable: false,
|
|
1381
1381
|
configurable: true
|
|
@@ -1385,11 +1385,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1385
1385
|
* Gets or sets the color to use for the text of the button when type is raised.
|
|
1386
1386
|
*/
|
|
1387
1387
|
get: function () {
|
|
1388
|
-
return brushToString(this.i.
|
|
1388
|
+
return brushToString(this.i.rj);
|
|
1389
1389
|
},
|
|
1390
1390
|
set: function (v) {
|
|
1391
|
-
this.i.
|
|
1392
|
-
this._a("raisedTextColor", brushToString(this.i.
|
|
1391
|
+
this.i.rj = stringToBrush(v);
|
|
1392
|
+
this._a("raisedTextColor", brushToString(this.i.rj));
|
|
1393
1393
|
},
|
|
1394
1394
|
enumerable: false,
|
|
1395
1395
|
configurable: true
|
|
@@ -1399,11 +1399,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1399
1399
|
* Gets or sets the color to use for the hovered text of the button when type is raised.
|
|
1400
1400
|
*/
|
|
1401
1401
|
get: function () {
|
|
1402
|
-
return brushToString(this.i.
|
|
1402
|
+
return brushToString(this.i.rh);
|
|
1403
1403
|
},
|
|
1404
1404
|
set: function (v) {
|
|
1405
|
-
this.i.
|
|
1406
|
-
this._a("raisedHoverTextColor", brushToString(this.i.
|
|
1405
|
+
this.i.rh = stringToBrush(v);
|
|
1406
|
+
this._a("raisedHoverTextColor", brushToString(this.i.rh));
|
|
1407
1407
|
},
|
|
1408
1408
|
enumerable: false,
|
|
1409
1409
|
configurable: true
|
|
@@ -1413,11 +1413,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1413
1413
|
* Gets or sets the color to use for the backround the button when it is focused and raised.
|
|
1414
1414
|
*/
|
|
1415
1415
|
get: function () {
|
|
1416
|
-
return brushToString(this.i.
|
|
1416
|
+
return brushToString(this.i.re);
|
|
1417
1417
|
},
|
|
1418
1418
|
set: function (v) {
|
|
1419
|
-
this.i.
|
|
1420
|
-
this._a("raisedFocusBackgroundColor", brushToString(this.i.
|
|
1419
|
+
this.i.re = stringToBrush(v);
|
|
1420
|
+
this._a("raisedFocusBackgroundColor", brushToString(this.i.re));
|
|
1421
1421
|
},
|
|
1422
1422
|
enumerable: false,
|
|
1423
1423
|
configurable: true
|
|
@@ -1427,11 +1427,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1427
1427
|
* Gets or sets the color to use for the text the button when it is focused and raised.
|
|
1428
1428
|
*/
|
|
1429
1429
|
get: function () {
|
|
1430
|
-
return brushToString(this.i.
|
|
1430
|
+
return brushToString(this.i.rf);
|
|
1431
1431
|
},
|
|
1432
1432
|
set: function (v) {
|
|
1433
|
-
this.i.
|
|
1434
|
-
this._a("raisedFocusTextColor", brushToString(this.i.
|
|
1433
|
+
this.i.rf = stringToBrush(v);
|
|
1434
|
+
this._a("raisedFocusTextColor", brushToString(this.i.rf));
|
|
1435
1435
|
},
|
|
1436
1436
|
enumerable: false,
|
|
1437
1437
|
configurable: true
|
|
@@ -1441,11 +1441,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1441
1441
|
* Gets or sets the color to use for the backround the button when it is focused.
|
|
1442
1442
|
*/
|
|
1443
1443
|
get: function () {
|
|
1444
|
-
return brushToString(this.i.
|
|
1444
|
+
return brushToString(this.i.qj);
|
|
1445
1445
|
},
|
|
1446
1446
|
set: function (v) {
|
|
1447
|
-
this.i.
|
|
1448
|
-
this._a("focusBackgroundColor", brushToString(this.i.
|
|
1447
|
+
this.i.qj = stringToBrush(v);
|
|
1448
|
+
this._a("focusBackgroundColor", brushToString(this.i.qj));
|
|
1449
1449
|
},
|
|
1450
1450
|
enumerable: false,
|
|
1451
1451
|
configurable: true
|
|
@@ -1455,11 +1455,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1455
1455
|
* Gets or sets the color to use for the text of the button when it is focused.
|
|
1456
1456
|
*/
|
|
1457
1457
|
get: function () {
|
|
1458
|
-
return brushToString(this.i.
|
|
1458
|
+
return brushToString(this.i.qk);
|
|
1459
1459
|
},
|
|
1460
1460
|
set: function (v) {
|
|
1461
|
-
this.i.
|
|
1462
|
-
this._a("focusTextColor", brushToString(this.i.
|
|
1461
|
+
this.i.qk = stringToBrush(v);
|
|
1462
|
+
this._a("focusTextColor", brushToString(this.i.qk));
|
|
1463
1463
|
},
|
|
1464
1464
|
enumerable: false,
|
|
1465
1465
|
configurable: true
|
|
@@ -1469,83 +1469,83 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1469
1469
|
* Gets or sets the width to use for the button border regardless of type.
|
|
1470
1470
|
*/
|
|
1471
1471
|
get: function () {
|
|
1472
|
-
return this.i.
|
|
1472
|
+
return this.i.bl;
|
|
1473
1473
|
},
|
|
1474
1474
|
set: function (v) {
|
|
1475
|
-
this.i.
|
|
1476
|
-
this._a("borderWidth", this.i.
|
|
1475
|
+
this.i.bl = +v;
|
|
1476
|
+
this._a("borderWidth", this.i.bl);
|
|
1477
1477
|
},
|
|
1478
1478
|
enumerable: false,
|
|
1479
1479
|
configurable: true
|
|
1480
1480
|
});
|
|
1481
1481
|
Object.defineProperty(IgcXButtonComponent.prototype, "cornerRadiusBottomRight", {
|
|
1482
1482
|
get: function () {
|
|
1483
|
-
return this.i.
|
|
1483
|
+
return this.i.k6 ? this.i.k6.c : NaN;
|
|
1484
1484
|
},
|
|
1485
1485
|
set: function (v) {
|
|
1486
1486
|
this.ensureCornerRadius();
|
|
1487
|
-
this.i.
|
|
1488
|
-
this._a("cornerRadiusBottomRight", this.i.
|
|
1489
|
-
this.i.
|
|
1487
|
+
this.i.k6.c = +v;
|
|
1488
|
+
this._a("cornerRadiusBottomRight", this.i.k6.c);
|
|
1489
|
+
this.i.k6 = this.i.k6;
|
|
1490
1490
|
},
|
|
1491
1491
|
enumerable: false,
|
|
1492
1492
|
configurable: true
|
|
1493
1493
|
});
|
|
1494
1494
|
Object.defineProperty(IgcXButtonComponent.prototype, "cornerRadiusBottomLeft", {
|
|
1495
1495
|
get: function () {
|
|
1496
|
-
return this.i.
|
|
1496
|
+
return this.i.k6 ? this.i.k6.b : NaN;
|
|
1497
1497
|
},
|
|
1498
1498
|
set: function (v) {
|
|
1499
1499
|
this.ensureCornerRadius();
|
|
1500
|
-
this.i.
|
|
1501
|
-
this._a("cornerRadiusBottomLeft", this.i.
|
|
1502
|
-
this.i.
|
|
1500
|
+
this.i.k6.b = +v;
|
|
1501
|
+
this._a("cornerRadiusBottomLeft", this.i.k6.b);
|
|
1502
|
+
this.i.k6 = this.i.k6;
|
|
1503
1503
|
},
|
|
1504
1504
|
enumerable: false,
|
|
1505
1505
|
configurable: true
|
|
1506
1506
|
});
|
|
1507
1507
|
Object.defineProperty(IgcXButtonComponent.prototype, "cornerRadiusTopLeft", {
|
|
1508
1508
|
get: function () {
|
|
1509
|
-
return this.i.
|
|
1509
|
+
return this.i.k6 ? this.i.k6.d : NaN;
|
|
1510
1510
|
},
|
|
1511
1511
|
set: function (v) {
|
|
1512
1512
|
this.ensureCornerRadius();
|
|
1513
|
-
this.i.
|
|
1514
|
-
this._a("cornerRadiusTopLeft", this.i.
|
|
1515
|
-
this.i.
|
|
1513
|
+
this.i.k6.d = +v;
|
|
1514
|
+
this._a("cornerRadiusTopLeft", this.i.k6.d);
|
|
1515
|
+
this.i.k6 = this.i.k6;
|
|
1516
1516
|
},
|
|
1517
1517
|
enumerable: false,
|
|
1518
1518
|
configurable: true
|
|
1519
1519
|
});
|
|
1520
1520
|
Object.defineProperty(IgcXButtonComponent.prototype, "cornerRadiusTopRight", {
|
|
1521
1521
|
get: function () {
|
|
1522
|
-
return this.i.
|
|
1522
|
+
return this.i.k6 ? this.i.k6.e : NaN;
|
|
1523
1523
|
},
|
|
1524
1524
|
set: function (v) {
|
|
1525
1525
|
this.ensureCornerRadius();
|
|
1526
|
-
this.i.
|
|
1527
|
-
this._a("cornerRadiusTopRight", this.i.
|
|
1528
|
-
this.i.
|
|
1526
|
+
this.i.k6.e = +v;
|
|
1527
|
+
this._a("cornerRadiusTopRight", this.i.k6.e);
|
|
1528
|
+
this.i.k6 = this.i.k6;
|
|
1529
1529
|
},
|
|
1530
1530
|
enumerable: false,
|
|
1531
1531
|
configurable: true
|
|
1532
1532
|
});
|
|
1533
1533
|
IgcXButtonComponent.prototype.ensureCornerRadius = function () {
|
|
1534
|
-
if (this.i.
|
|
1534
|
+
if (this.i.k6) {
|
|
1535
1535
|
return;
|
|
1536
1536
|
}
|
|
1537
|
-
this.i.
|
|
1537
|
+
this.i.k6 = new CornerRadius(2);
|
|
1538
1538
|
};
|
|
1539
1539
|
Object.defineProperty(IgcXButtonComponent.prototype, "outlinedBackgroundColor", {
|
|
1540
1540
|
/**
|
|
1541
1541
|
* Gets or sets the color to use for the background of the button when the type is outlined.
|
|
1542
1542
|
*/
|
|
1543
1543
|
get: function () {
|
|
1544
|
-
return brushToString(this.i.
|
|
1544
|
+
return brushToString(this.i.qy);
|
|
1545
1545
|
},
|
|
1546
1546
|
set: function (v) {
|
|
1547
|
-
this.i.
|
|
1548
|
-
this._a("outlinedBackgroundColor", brushToString(this.i.
|
|
1547
|
+
this.i.qy = stringToBrush(v);
|
|
1548
|
+
this._a("outlinedBackgroundColor", brushToString(this.i.qy));
|
|
1549
1549
|
},
|
|
1550
1550
|
enumerable: false,
|
|
1551
1551
|
configurable: true
|
|
@@ -1555,11 +1555,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1555
1555
|
* Gets or sets the color to use for the disabled background of the button when the type is outlined.
|
|
1556
1556
|
*/
|
|
1557
1557
|
get: function () {
|
|
1558
|
-
return brushToString(this.i.
|
|
1558
|
+
return brushToString(this.i.q0);
|
|
1559
1559
|
},
|
|
1560
1560
|
set: function (v) {
|
|
1561
|
-
this.i.
|
|
1562
|
-
this._a("outlinedDisabledBackgroundColor", brushToString(this.i.
|
|
1561
|
+
this.i.q0 = stringToBrush(v);
|
|
1562
|
+
this._a("outlinedDisabledBackgroundColor", brushToString(this.i.q0));
|
|
1563
1563
|
},
|
|
1564
1564
|
enumerable: false,
|
|
1565
1565
|
configurable: true
|
|
@@ -1569,11 +1569,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1569
1569
|
* Gets or sets the color to use for the disabled border of the button when the type is outlined.
|
|
1570
1570
|
*/
|
|
1571
1571
|
get: function () {
|
|
1572
|
-
return brushToString(this.i.
|
|
1572
|
+
return brushToString(this.i.q1);
|
|
1573
1573
|
},
|
|
1574
1574
|
set: function (v) {
|
|
1575
|
-
this.i.
|
|
1576
|
-
this._a("outlinedDisabledBorderColor", brushToString(this.i.
|
|
1575
|
+
this.i.q1 = stringToBrush(v);
|
|
1576
|
+
this._a("outlinedDisabledBorderColor", brushToString(this.i.q1));
|
|
1577
1577
|
},
|
|
1578
1578
|
enumerable: false,
|
|
1579
1579
|
configurable: true
|
|
@@ -1583,11 +1583,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1583
1583
|
* Gets or sets the color to use for the disabled text of the button when the type is outlined.
|
|
1584
1584
|
*/
|
|
1585
1585
|
get: function () {
|
|
1586
|
-
return brushToString(this.i.
|
|
1586
|
+
return brushToString(this.i.q2);
|
|
1587
1587
|
},
|
|
1588
1588
|
set: function (v) {
|
|
1589
|
-
this.i.
|
|
1590
|
-
this._a("outlinedDisabledTextColor", brushToString(this.i.
|
|
1589
|
+
this.i.q2 = stringToBrush(v);
|
|
1590
|
+
this._a("outlinedDisabledTextColor", brushToString(this.i.q2));
|
|
1591
1591
|
},
|
|
1592
1592
|
enumerable: false,
|
|
1593
1593
|
configurable: true
|
|
@@ -1597,11 +1597,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1597
1597
|
* Gets or sets the disabled elevation to use for the button when the type is outlined.
|
|
1598
1598
|
*/
|
|
1599
1599
|
get: function () {
|
|
1600
|
-
return this.i.
|
|
1600
|
+
return this.i.dz;
|
|
1601
1601
|
},
|
|
1602
1602
|
set: function (v) {
|
|
1603
|
-
this.i.
|
|
1604
|
-
this._a("outlinedDisabledElevation", this.i.
|
|
1603
|
+
this.i.dz = +v;
|
|
1604
|
+
this._a("outlinedDisabledElevation", this.i.dz);
|
|
1605
1605
|
},
|
|
1606
1606
|
enumerable: false,
|
|
1607
1607
|
configurable: true
|
|
@@ -1611,11 +1611,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1611
1611
|
* Gets or sets the hover color to use for the background of the button when the type is hoveredOutlined.
|
|
1612
1612
|
*/
|
|
1613
1613
|
get: function () {
|
|
1614
|
-
return brushToString(this.i.
|
|
1614
|
+
return brushToString(this.i.q5);
|
|
1615
1615
|
},
|
|
1616
1616
|
set: function (v) {
|
|
1617
|
-
this.i.
|
|
1618
|
-
this._a("outlinedHoverBackgroundColor", brushToString(this.i.
|
|
1617
|
+
this.i.q5 = stringToBrush(v);
|
|
1618
|
+
this._a("outlinedHoverBackgroundColor", brushToString(this.i.q5));
|
|
1619
1619
|
},
|
|
1620
1620
|
enumerable: false,
|
|
1621
1621
|
configurable: true
|
|
@@ -1625,11 +1625,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1625
1625
|
* Gets or sets the border color to use for the button when the type is outlined.
|
|
1626
1626
|
*/
|
|
1627
1627
|
get: function () {
|
|
1628
|
-
return brushToString(this.i.
|
|
1628
|
+
return brushToString(this.i.qz);
|
|
1629
1629
|
},
|
|
1630
1630
|
set: function (v) {
|
|
1631
|
-
this.i.
|
|
1632
|
-
this._a("outlinedBorderColor", brushToString(this.i.
|
|
1631
|
+
this.i.qz = stringToBrush(v);
|
|
1632
|
+
this._a("outlinedBorderColor", brushToString(this.i.qz));
|
|
1633
1633
|
},
|
|
1634
1634
|
enumerable: false,
|
|
1635
1635
|
configurable: true
|
|
@@ -1639,11 +1639,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1639
1639
|
* Gets or sets the elevation to use for the button when the type is outlined.
|
|
1640
1640
|
*/
|
|
1641
1641
|
get: function () {
|
|
1642
|
-
return this.i.
|
|
1642
|
+
return this.i.d2;
|
|
1643
1643
|
},
|
|
1644
1644
|
set: function (v) {
|
|
1645
|
-
this.i.
|
|
1646
|
-
this._a("outlinedRestingElevation", this.i.
|
|
1645
|
+
this.i.d2 = +v;
|
|
1646
|
+
this._a("outlinedRestingElevation", this.i.d2);
|
|
1647
1647
|
},
|
|
1648
1648
|
enumerable: false,
|
|
1649
1649
|
configurable: true
|
|
@@ -1653,11 +1653,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1653
1653
|
* Gets or sets the hover elevation to use for the button when the type is outlined.
|
|
1654
1654
|
*/
|
|
1655
1655
|
get: function () {
|
|
1656
|
-
return this.i.
|
|
1656
|
+
return this.i.d1;
|
|
1657
1657
|
},
|
|
1658
1658
|
set: function (v) {
|
|
1659
|
-
this.i.
|
|
1660
|
-
this._a("outlinedHoverElevation", this.i.
|
|
1659
|
+
this.i.d1 = +v;
|
|
1660
|
+
this._a("outlinedHoverElevation", this.i.d1);
|
|
1661
1661
|
},
|
|
1662
1662
|
enumerable: false,
|
|
1663
1663
|
configurable: true
|
|
@@ -1667,11 +1667,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1667
1667
|
* Gets or sets the focus elevation to use for the button when the type is outlined.
|
|
1668
1668
|
*/
|
|
1669
1669
|
get: function () {
|
|
1670
|
-
return this.i.
|
|
1670
|
+
return this.i.d0;
|
|
1671
1671
|
},
|
|
1672
1672
|
set: function (v) {
|
|
1673
|
-
this.i.
|
|
1674
|
-
this._a("outlinedFocusElevation", this.i.
|
|
1673
|
+
this.i.d0 = +v;
|
|
1674
|
+
this._a("outlinedFocusElevation", this.i.d0);
|
|
1675
1675
|
},
|
|
1676
1676
|
enumerable: false,
|
|
1677
1677
|
configurable: true
|
|
@@ -1681,83 +1681,83 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1681
1681
|
* Gets or sets the width to use for the button border when the type is outlined.
|
|
1682
1682
|
*/
|
|
1683
1683
|
get: function () {
|
|
1684
|
-
return this.i.
|
|
1684
|
+
return this.i.b0;
|
|
1685
1685
|
},
|
|
1686
1686
|
set: function (v) {
|
|
1687
|
-
this.i.
|
|
1688
|
-
this._a("outlinedBorderWidth", this.i.
|
|
1687
|
+
this.i.b0 = +v;
|
|
1688
|
+
this._a("outlinedBorderWidth", this.i.b0);
|
|
1689
1689
|
},
|
|
1690
1690
|
enumerable: false,
|
|
1691
1691
|
configurable: true
|
|
1692
1692
|
});
|
|
1693
1693
|
Object.defineProperty(IgcXButtonComponent.prototype, "outlinedCornerRadiusBottomRight", {
|
|
1694
1694
|
get: function () {
|
|
1695
|
-
return this.i.
|
|
1695
|
+
return this.i.lg ? this.i.lg.c : NaN;
|
|
1696
1696
|
},
|
|
1697
1697
|
set: function (v) {
|
|
1698
1698
|
this.ensureOutlinedCornerRadius();
|
|
1699
|
-
this.i.
|
|
1700
|
-
this._a("outlinedCornerRadiusBottomRight", this.i.
|
|
1701
|
-
this.i.
|
|
1699
|
+
this.i.lg.c = +v;
|
|
1700
|
+
this._a("outlinedCornerRadiusBottomRight", this.i.lg.c);
|
|
1701
|
+
this.i.lg = this.i.lg;
|
|
1702
1702
|
},
|
|
1703
1703
|
enumerable: false,
|
|
1704
1704
|
configurable: true
|
|
1705
1705
|
});
|
|
1706
1706
|
Object.defineProperty(IgcXButtonComponent.prototype, "outlinedCornerRadiusBottomLeft", {
|
|
1707
1707
|
get: function () {
|
|
1708
|
-
return this.i.
|
|
1708
|
+
return this.i.lg ? this.i.lg.b : NaN;
|
|
1709
1709
|
},
|
|
1710
1710
|
set: function (v) {
|
|
1711
1711
|
this.ensureOutlinedCornerRadius();
|
|
1712
|
-
this.i.
|
|
1713
|
-
this._a("outlinedCornerRadiusBottomLeft", this.i.
|
|
1714
|
-
this.i.
|
|
1712
|
+
this.i.lg.b = +v;
|
|
1713
|
+
this._a("outlinedCornerRadiusBottomLeft", this.i.lg.b);
|
|
1714
|
+
this.i.lg = this.i.lg;
|
|
1715
1715
|
},
|
|
1716
1716
|
enumerable: false,
|
|
1717
1717
|
configurable: true
|
|
1718
1718
|
});
|
|
1719
1719
|
Object.defineProperty(IgcXButtonComponent.prototype, "outlinedCornerRadiusTopLeft", {
|
|
1720
1720
|
get: function () {
|
|
1721
|
-
return this.i.
|
|
1721
|
+
return this.i.lg ? this.i.lg.d : NaN;
|
|
1722
1722
|
},
|
|
1723
1723
|
set: function (v) {
|
|
1724
1724
|
this.ensureOutlinedCornerRadius();
|
|
1725
|
-
this.i.
|
|
1726
|
-
this._a("outlinedCornerRadiusTopLeft", this.i.
|
|
1727
|
-
this.i.
|
|
1725
|
+
this.i.lg.d = +v;
|
|
1726
|
+
this._a("outlinedCornerRadiusTopLeft", this.i.lg.d);
|
|
1727
|
+
this.i.lg = this.i.lg;
|
|
1728
1728
|
},
|
|
1729
1729
|
enumerable: false,
|
|
1730
1730
|
configurable: true
|
|
1731
1731
|
});
|
|
1732
1732
|
Object.defineProperty(IgcXButtonComponent.prototype, "outlinedCornerRadiusTopRight", {
|
|
1733
1733
|
get: function () {
|
|
1734
|
-
return this.i.
|
|
1734
|
+
return this.i.lg ? this.i.lg.e : NaN;
|
|
1735
1735
|
},
|
|
1736
1736
|
set: function (v) {
|
|
1737
1737
|
this.ensureOutlinedCornerRadius();
|
|
1738
|
-
this.i.
|
|
1739
|
-
this._a("outlinedCornerRadiusTopRight", this.i.
|
|
1740
|
-
this.i.
|
|
1738
|
+
this.i.lg.e = +v;
|
|
1739
|
+
this._a("outlinedCornerRadiusTopRight", this.i.lg.e);
|
|
1740
|
+
this.i.lg = this.i.lg;
|
|
1741
1741
|
},
|
|
1742
1742
|
enumerable: false,
|
|
1743
1743
|
configurable: true
|
|
1744
1744
|
});
|
|
1745
1745
|
IgcXButtonComponent.prototype.ensureOutlinedCornerRadius = function () {
|
|
1746
|
-
if (this.i.
|
|
1746
|
+
if (this.i.lg) {
|
|
1747
1747
|
return;
|
|
1748
1748
|
}
|
|
1749
|
-
this.i.
|
|
1749
|
+
this.i.lg = new CornerRadius(2);
|
|
1750
1750
|
};
|
|
1751
1751
|
Object.defineProperty(IgcXButtonComponent.prototype, "outlinedRippleColor", {
|
|
1752
1752
|
/**
|
|
1753
1753
|
* Gets or sets the color to use for the background when the button is pressed and the type is floating action button.
|
|
1754
1754
|
*/
|
|
1755
1755
|
get: function () {
|
|
1756
|
-
return brushToString(this.i.
|
|
1756
|
+
return brushToString(this.i.q7);
|
|
1757
1757
|
},
|
|
1758
1758
|
set: function (v) {
|
|
1759
|
-
this.i.
|
|
1760
|
-
this._a("outlinedRippleColor", brushToString(this.i.
|
|
1759
|
+
this.i.q7 = stringToBrush(v);
|
|
1760
|
+
this._a("outlinedRippleColor", brushToString(this.i.q7));
|
|
1761
1761
|
},
|
|
1762
1762
|
enumerable: false,
|
|
1763
1763
|
configurable: true
|
|
@@ -1767,11 +1767,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1767
1767
|
* Gets or sets the color to use for the text of the button when type is outlined.
|
|
1768
1768
|
*/
|
|
1769
1769
|
get: function () {
|
|
1770
|
-
return brushToString(this.i.
|
|
1770
|
+
return brushToString(this.i.q8);
|
|
1771
1771
|
},
|
|
1772
1772
|
set: function (v) {
|
|
1773
|
-
this.i.
|
|
1774
|
-
this._a("outlinedTextColor", brushToString(this.i.
|
|
1773
|
+
this.i.q8 = stringToBrush(v);
|
|
1774
|
+
this._a("outlinedTextColor", brushToString(this.i.q8));
|
|
1775
1775
|
},
|
|
1776
1776
|
enumerable: false,
|
|
1777
1777
|
configurable: true
|
|
@@ -1781,11 +1781,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1781
1781
|
* Gets or sets the color to use for the hovered text of the button when type is outlined.
|
|
1782
1782
|
*/
|
|
1783
1783
|
get: function () {
|
|
1784
|
-
return brushToString(this.i.
|
|
1784
|
+
return brushToString(this.i.q6);
|
|
1785
1785
|
},
|
|
1786
1786
|
set: function (v) {
|
|
1787
|
-
this.i.
|
|
1788
|
-
this._a("outlinedHoverTextColor", brushToString(this.i.
|
|
1787
|
+
this.i.q6 = stringToBrush(v);
|
|
1788
|
+
this._a("outlinedHoverTextColor", brushToString(this.i.q6));
|
|
1789
1789
|
},
|
|
1790
1790
|
enumerable: false,
|
|
1791
1791
|
configurable: true
|
|
@@ -1795,11 +1795,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1795
1795
|
* Gets or sets the color to use for the backround the button when it is focused and outlined.
|
|
1796
1796
|
*/
|
|
1797
1797
|
get: function () {
|
|
1798
|
-
return brushToString(this.i.
|
|
1798
|
+
return brushToString(this.i.q3);
|
|
1799
1799
|
},
|
|
1800
1800
|
set: function (v) {
|
|
1801
|
-
this.i.
|
|
1802
|
-
this._a("outlinedFocusBackgroundColor", brushToString(this.i.
|
|
1801
|
+
this.i.q3 = stringToBrush(v);
|
|
1802
|
+
this._a("outlinedFocusBackgroundColor", brushToString(this.i.q3));
|
|
1803
1803
|
},
|
|
1804
1804
|
enumerable: false,
|
|
1805
1805
|
configurable: true
|
|
@@ -1809,11 +1809,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1809
1809
|
* Gets or sets the color to use for the text the button when it is focused and outlined.
|
|
1810
1810
|
*/
|
|
1811
1811
|
get: function () {
|
|
1812
|
-
return brushToString(this.i.
|
|
1812
|
+
return brushToString(this.i.q4);
|
|
1813
1813
|
},
|
|
1814
1814
|
set: function (v) {
|
|
1815
|
-
this.i.
|
|
1816
|
-
this._a("outlinedFocusTextColor", brushToString(this.i.
|
|
1815
|
+
this.i.q4 = stringToBrush(v);
|
|
1816
|
+
this._a("outlinedFocusTextColor", brushToString(this.i.q4));
|
|
1817
1817
|
},
|
|
1818
1818
|
enumerable: false,
|
|
1819
1819
|
configurable: true
|
|
@@ -1823,11 +1823,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1823
1823
|
* Gets or sets the color to use for the background of the button when the type is floating action button.
|
|
1824
1824
|
*/
|
|
1825
1825
|
get: function () {
|
|
1826
|
-
return brushToString(this.i.
|
|
1826
|
+
return brushToString(this.i.px);
|
|
1827
1827
|
},
|
|
1828
1828
|
set: function (v) {
|
|
1829
|
-
this.i.
|
|
1830
|
-
this._a("fabBackgroundColor", brushToString(this.i.
|
|
1829
|
+
this.i.px = stringToBrush(v);
|
|
1830
|
+
this._a("fabBackgroundColor", brushToString(this.i.px));
|
|
1831
1831
|
},
|
|
1832
1832
|
enumerable: false,
|
|
1833
1833
|
configurable: true
|
|
@@ -1837,11 +1837,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1837
1837
|
* Gets or sets the color to use for the disabled background of the button when the type is fab.
|
|
1838
1838
|
*/
|
|
1839
1839
|
get: function () {
|
|
1840
|
-
return brushToString(this.i.
|
|
1840
|
+
return brushToString(this.i.pz);
|
|
1841
1841
|
},
|
|
1842
1842
|
set: function (v) {
|
|
1843
|
-
this.i.
|
|
1844
|
-
this._a("fabDisabledBackgroundColor", brushToString(this.i.
|
|
1843
|
+
this.i.pz = stringToBrush(v);
|
|
1844
|
+
this._a("fabDisabledBackgroundColor", brushToString(this.i.pz));
|
|
1845
1845
|
},
|
|
1846
1846
|
enumerable: false,
|
|
1847
1847
|
configurable: true
|
|
@@ -1851,11 +1851,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1851
1851
|
* Gets or sets the color to use for the disabled border of the button when the type is fab.
|
|
1852
1852
|
*/
|
|
1853
1853
|
get: function () {
|
|
1854
|
-
return brushToString(this.i.
|
|
1854
|
+
return brushToString(this.i.p0);
|
|
1855
1855
|
},
|
|
1856
1856
|
set: function (v) {
|
|
1857
|
-
this.i.
|
|
1858
|
-
this._a("fabDisabledBorderColor", brushToString(this.i.
|
|
1857
|
+
this.i.p0 = stringToBrush(v);
|
|
1858
|
+
this._a("fabDisabledBorderColor", brushToString(this.i.p0));
|
|
1859
1859
|
},
|
|
1860
1860
|
enumerable: false,
|
|
1861
1861
|
configurable: true
|
|
@@ -1865,11 +1865,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1865
1865
|
* Gets or sets the color to use for the disabled text of the button when the type is fab.
|
|
1866
1866
|
*/
|
|
1867
1867
|
get: function () {
|
|
1868
|
-
return brushToString(this.i.
|
|
1868
|
+
return brushToString(this.i.p1);
|
|
1869
1869
|
},
|
|
1870
1870
|
set: function (v) {
|
|
1871
|
-
this.i.
|
|
1872
|
-
this._a("fabDisabledTextColor", brushToString(this.i.
|
|
1871
|
+
this.i.p1 = stringToBrush(v);
|
|
1872
|
+
this._a("fabDisabledTextColor", brushToString(this.i.p1));
|
|
1873
1873
|
},
|
|
1874
1874
|
enumerable: false,
|
|
1875
1875
|
configurable: true
|
|
@@ -1879,11 +1879,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1879
1879
|
* Gets or sets the disabled elevation to use for the button when the type is fab.
|
|
1880
1880
|
*/
|
|
1881
1881
|
get: function () {
|
|
1882
|
-
return this.i.
|
|
1882
|
+
return this.i.dk;
|
|
1883
1883
|
},
|
|
1884
1884
|
set: function (v) {
|
|
1885
|
-
this.i.
|
|
1886
|
-
this._a("fabDisabledElevation", this.i.
|
|
1885
|
+
this.i.dk = +v;
|
|
1886
|
+
this._a("fabDisabledElevation", this.i.dk);
|
|
1887
1887
|
},
|
|
1888
1888
|
enumerable: false,
|
|
1889
1889
|
configurable: true
|
|
@@ -1893,11 +1893,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1893
1893
|
* Gets or sets the hover color to use for the background of the button when the type is hoveredFab.
|
|
1894
1894
|
*/
|
|
1895
1895
|
get: function () {
|
|
1896
|
-
return brushToString(this.i.
|
|
1896
|
+
return brushToString(this.i.p4);
|
|
1897
1897
|
},
|
|
1898
1898
|
set: function (v) {
|
|
1899
|
-
this.i.
|
|
1900
|
-
this._a("fabHoverBackgroundColor", brushToString(this.i.
|
|
1899
|
+
this.i.p4 = stringToBrush(v);
|
|
1900
|
+
this._a("fabHoverBackgroundColor", brushToString(this.i.p4));
|
|
1901
1901
|
},
|
|
1902
1902
|
enumerable: false,
|
|
1903
1903
|
configurable: true
|
|
@@ -1907,11 +1907,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1907
1907
|
* Gets or sets the border color to use for the button when the type is floating action button.
|
|
1908
1908
|
*/
|
|
1909
1909
|
get: function () {
|
|
1910
|
-
return brushToString(this.i.
|
|
1910
|
+
return brushToString(this.i.py);
|
|
1911
1911
|
},
|
|
1912
1912
|
set: function (v) {
|
|
1913
|
-
this.i.
|
|
1914
|
-
this._a("fabBorderColor", brushToString(this.i.
|
|
1913
|
+
this.i.py = stringToBrush(v);
|
|
1914
|
+
this._a("fabBorderColor", brushToString(this.i.py));
|
|
1915
1915
|
},
|
|
1916
1916
|
enumerable: false,
|
|
1917
1917
|
configurable: true
|
|
@@ -1921,11 +1921,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1921
1921
|
* Gets or sets the elevation to use for the button when the type is floating action button.
|
|
1922
1922
|
*/
|
|
1923
1923
|
get: function () {
|
|
1924
|
-
return this.i.
|
|
1924
|
+
return this.i.dn;
|
|
1925
1925
|
},
|
|
1926
1926
|
set: function (v) {
|
|
1927
|
-
this.i.
|
|
1928
|
-
this._a("fabRestingElevation", this.i.
|
|
1927
|
+
this.i.dn = +v;
|
|
1928
|
+
this._a("fabRestingElevation", this.i.dn);
|
|
1929
1929
|
},
|
|
1930
1930
|
enumerable: false,
|
|
1931
1931
|
configurable: true
|
|
@@ -1935,11 +1935,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1935
1935
|
* Gets or sets the hover elevation to use for the button when the type is floating action button.
|
|
1936
1936
|
*/
|
|
1937
1937
|
get: function () {
|
|
1938
|
-
return this.i.
|
|
1938
|
+
return this.i.dm;
|
|
1939
1939
|
},
|
|
1940
1940
|
set: function (v) {
|
|
1941
|
-
this.i.
|
|
1942
|
-
this._a("fabHoverElevation", this.i.
|
|
1941
|
+
this.i.dm = +v;
|
|
1942
|
+
this._a("fabHoverElevation", this.i.dm);
|
|
1943
1943
|
},
|
|
1944
1944
|
enumerable: false,
|
|
1945
1945
|
configurable: true
|
|
@@ -1949,11 +1949,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1949
1949
|
* Gets or sets the focus elevation to use for the button when the type is floating action button.
|
|
1950
1950
|
*/
|
|
1951
1951
|
get: function () {
|
|
1952
|
-
return this.i.
|
|
1952
|
+
return this.i.dl;
|
|
1953
1953
|
},
|
|
1954
1954
|
set: function (v) {
|
|
1955
|
-
this.i.
|
|
1956
|
-
this._a("fabFocusElevation", this.i.
|
|
1955
|
+
this.i.dl = +v;
|
|
1956
|
+
this._a("fabFocusElevation", this.i.dl);
|
|
1957
1957
|
},
|
|
1958
1958
|
enumerable: false,
|
|
1959
1959
|
configurable: true
|
|
@@ -1963,83 +1963,83 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1963
1963
|
* Gets or sets the width to use for the button border when the type is floating action button.
|
|
1964
1964
|
*/
|
|
1965
1965
|
get: function () {
|
|
1966
|
-
return this.i.
|
|
1966
|
+
return this.i.bv;
|
|
1967
1967
|
},
|
|
1968
1968
|
set: function (v) {
|
|
1969
|
-
this.i.
|
|
1970
|
-
this._a("fabBorderWidth", this.i.
|
|
1969
|
+
this.i.bv = +v;
|
|
1970
|
+
this._a("fabBorderWidth", this.i.bv);
|
|
1971
1971
|
},
|
|
1972
1972
|
enumerable: false,
|
|
1973
1973
|
configurable: true
|
|
1974
1974
|
});
|
|
1975
1975
|
Object.defineProperty(IgcXButtonComponent.prototype, "fabCornerRadiusBottomRight", {
|
|
1976
1976
|
get: function () {
|
|
1977
|
-
return this.i.
|
|
1977
|
+
return this.i.lc ? this.i.lc.c : NaN;
|
|
1978
1978
|
},
|
|
1979
1979
|
set: function (v) {
|
|
1980
1980
|
this.ensureFabCornerRadius();
|
|
1981
|
-
this.i.
|
|
1982
|
-
this._a("fabCornerRadiusBottomRight", this.i.
|
|
1983
|
-
this.i.
|
|
1981
|
+
this.i.lc.c = +v;
|
|
1982
|
+
this._a("fabCornerRadiusBottomRight", this.i.lc.c);
|
|
1983
|
+
this.i.lc = this.i.lc;
|
|
1984
1984
|
},
|
|
1985
1985
|
enumerable: false,
|
|
1986
1986
|
configurable: true
|
|
1987
1987
|
});
|
|
1988
1988
|
Object.defineProperty(IgcXButtonComponent.prototype, "fabCornerRadiusBottomLeft", {
|
|
1989
1989
|
get: function () {
|
|
1990
|
-
return this.i.
|
|
1990
|
+
return this.i.lc ? this.i.lc.b : NaN;
|
|
1991
1991
|
},
|
|
1992
1992
|
set: function (v) {
|
|
1993
1993
|
this.ensureFabCornerRadius();
|
|
1994
|
-
this.i.
|
|
1995
|
-
this._a("fabCornerRadiusBottomLeft", this.i.
|
|
1996
|
-
this.i.
|
|
1994
|
+
this.i.lc.b = +v;
|
|
1995
|
+
this._a("fabCornerRadiusBottomLeft", this.i.lc.b);
|
|
1996
|
+
this.i.lc = this.i.lc;
|
|
1997
1997
|
},
|
|
1998
1998
|
enumerable: false,
|
|
1999
1999
|
configurable: true
|
|
2000
2000
|
});
|
|
2001
2001
|
Object.defineProperty(IgcXButtonComponent.prototype, "fabCornerRadiusTopLeft", {
|
|
2002
2002
|
get: function () {
|
|
2003
|
-
return this.i.
|
|
2003
|
+
return this.i.lc ? this.i.lc.d : NaN;
|
|
2004
2004
|
},
|
|
2005
2005
|
set: function (v) {
|
|
2006
2006
|
this.ensureFabCornerRadius();
|
|
2007
|
-
this.i.
|
|
2008
|
-
this._a("fabCornerRadiusTopLeft", this.i.
|
|
2009
|
-
this.i.
|
|
2007
|
+
this.i.lc.d = +v;
|
|
2008
|
+
this._a("fabCornerRadiusTopLeft", this.i.lc.d);
|
|
2009
|
+
this.i.lc = this.i.lc;
|
|
2010
2010
|
},
|
|
2011
2011
|
enumerable: false,
|
|
2012
2012
|
configurable: true
|
|
2013
2013
|
});
|
|
2014
2014
|
Object.defineProperty(IgcXButtonComponent.prototype, "fabCornerRadiusTopRight", {
|
|
2015
2015
|
get: function () {
|
|
2016
|
-
return this.i.
|
|
2016
|
+
return this.i.lc ? this.i.lc.e : NaN;
|
|
2017
2017
|
},
|
|
2018
2018
|
set: function (v) {
|
|
2019
2019
|
this.ensureFabCornerRadius();
|
|
2020
|
-
this.i.
|
|
2021
|
-
this._a("fabCornerRadiusTopRight", this.i.
|
|
2022
|
-
this.i.
|
|
2020
|
+
this.i.lc.e = +v;
|
|
2021
|
+
this._a("fabCornerRadiusTopRight", this.i.lc.e);
|
|
2022
|
+
this.i.lc = this.i.lc;
|
|
2023
2023
|
},
|
|
2024
2024
|
enumerable: false,
|
|
2025
2025
|
configurable: true
|
|
2026
2026
|
});
|
|
2027
2027
|
IgcXButtonComponent.prototype.ensureFabCornerRadius = function () {
|
|
2028
|
-
if (this.i.
|
|
2028
|
+
if (this.i.lc) {
|
|
2029
2029
|
return;
|
|
2030
2030
|
}
|
|
2031
|
-
this.i.
|
|
2031
|
+
this.i.lc = new CornerRadius(2);
|
|
2032
2032
|
};
|
|
2033
2033
|
Object.defineProperty(IgcXButtonComponent.prototype, "fabRippleColor", {
|
|
2034
2034
|
/**
|
|
2035
2035
|
* Gets or sets the color to use for the background when the button is pressed and the type is floating action button.
|
|
2036
2036
|
*/
|
|
2037
2037
|
get: function () {
|
|
2038
|
-
return brushToString(this.i.
|
|
2038
|
+
return brushToString(this.i.p6);
|
|
2039
2039
|
},
|
|
2040
2040
|
set: function (v) {
|
|
2041
|
-
this.i.
|
|
2042
|
-
this._a("fabRippleColor", brushToString(this.i.
|
|
2041
|
+
this.i.p6 = stringToBrush(v);
|
|
2042
|
+
this._a("fabRippleColor", brushToString(this.i.p6));
|
|
2043
2043
|
},
|
|
2044
2044
|
enumerable: false,
|
|
2045
2045
|
configurable: true
|
|
@@ -2049,11 +2049,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2049
2049
|
* Gets or sets the color to use for the text of the button when type is floating action button.
|
|
2050
2050
|
*/
|
|
2051
2051
|
get: function () {
|
|
2052
|
-
return brushToString(this.i.
|
|
2052
|
+
return brushToString(this.i.p7);
|
|
2053
2053
|
},
|
|
2054
2054
|
set: function (v) {
|
|
2055
|
-
this.i.
|
|
2056
|
-
this._a("fabTextColor", brushToString(this.i.
|
|
2055
|
+
this.i.p7 = stringToBrush(v);
|
|
2056
|
+
this._a("fabTextColor", brushToString(this.i.p7));
|
|
2057
2057
|
},
|
|
2058
2058
|
enumerable: false,
|
|
2059
2059
|
configurable: true
|
|
@@ -2063,11 +2063,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2063
2063
|
* Gets or sets the color to use for the hovered text of the button when type is floating action button.
|
|
2064
2064
|
*/
|
|
2065
2065
|
get: function () {
|
|
2066
|
-
return brushToString(this.i.
|
|
2066
|
+
return brushToString(this.i.p5);
|
|
2067
2067
|
},
|
|
2068
2068
|
set: function (v) {
|
|
2069
|
-
this.i.
|
|
2070
|
-
this._a("fabHoverTextColor", brushToString(this.i.
|
|
2069
|
+
this.i.p5 = stringToBrush(v);
|
|
2070
|
+
this._a("fabHoverTextColor", brushToString(this.i.p5));
|
|
2071
2071
|
},
|
|
2072
2072
|
enumerable: false,
|
|
2073
2073
|
configurable: true
|
|
@@ -2077,11 +2077,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2077
2077
|
* Gets or sets the color to use for the backround the button when it is focused and fab.
|
|
2078
2078
|
*/
|
|
2079
2079
|
get: function () {
|
|
2080
|
-
return brushToString(this.i.
|
|
2080
|
+
return brushToString(this.i.p2);
|
|
2081
2081
|
},
|
|
2082
2082
|
set: function (v) {
|
|
2083
|
-
this.i.
|
|
2084
|
-
this._a("fabFocusBackgroundColor", brushToString(this.i.
|
|
2083
|
+
this.i.p2 = stringToBrush(v);
|
|
2084
|
+
this._a("fabFocusBackgroundColor", brushToString(this.i.p2));
|
|
2085
2085
|
},
|
|
2086
2086
|
enumerable: false,
|
|
2087
2087
|
configurable: true
|
|
@@ -2091,11 +2091,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2091
2091
|
* Gets or sets the color to use for the text the button when it is focused and fab.
|
|
2092
2092
|
*/
|
|
2093
2093
|
get: function () {
|
|
2094
|
-
return brushToString(this.i.
|
|
2094
|
+
return brushToString(this.i.p3);
|
|
2095
2095
|
},
|
|
2096
2096
|
set: function (v) {
|
|
2097
|
-
this.i.
|
|
2098
|
-
this._a("fabFocusTextColor", brushToString(this.i.
|
|
2097
|
+
this.i.p3 = stringToBrush(v);
|
|
2098
|
+
this._a("fabFocusTextColor", brushToString(this.i.p3));
|
|
2099
2099
|
},
|
|
2100
2100
|
enumerable: false,
|
|
2101
2101
|
configurable: true
|
|
@@ -2105,11 +2105,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2105
2105
|
* Gets or sets the color to use for the background of the button when the type is icon.
|
|
2106
2106
|
*/
|
|
2107
2107
|
get: function () {
|
|
2108
|
-
return brushToString(this.i.
|
|
2108
|
+
return brushToString(this.i.qn);
|
|
2109
2109
|
},
|
|
2110
2110
|
set: function (v) {
|
|
2111
|
-
this.i.
|
|
2112
|
-
this._a("iconBackgroundColor", brushToString(this.i.
|
|
2111
|
+
this.i.qn = stringToBrush(v);
|
|
2112
|
+
this._a("iconBackgroundColor", brushToString(this.i.qn));
|
|
2113
2113
|
},
|
|
2114
2114
|
enumerable: false,
|
|
2115
2115
|
configurable: true
|
|
@@ -2119,11 +2119,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2119
2119
|
* Gets or sets the color to use for the disabled background of the button when the type is icon.
|
|
2120
2120
|
*/
|
|
2121
2121
|
get: function () {
|
|
2122
|
-
return brushToString(this.i.
|
|
2122
|
+
return brushToString(this.i.qp);
|
|
2123
2123
|
},
|
|
2124
2124
|
set: function (v) {
|
|
2125
|
-
this.i.
|
|
2126
|
-
this._a("iconDisabledBackgroundColor", brushToString(this.i.
|
|
2125
|
+
this.i.qp = stringToBrush(v);
|
|
2126
|
+
this._a("iconDisabledBackgroundColor", brushToString(this.i.qp));
|
|
2127
2127
|
},
|
|
2128
2128
|
enumerable: false,
|
|
2129
2129
|
configurable: true
|
|
@@ -2133,11 +2133,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2133
2133
|
* Gets or sets the color to use for the disabled border of the button when the type is icon.
|
|
2134
2134
|
*/
|
|
2135
2135
|
get: function () {
|
|
2136
|
-
return brushToString(this.i.
|
|
2136
|
+
return brushToString(this.i.qq);
|
|
2137
2137
|
},
|
|
2138
2138
|
set: function (v) {
|
|
2139
|
-
this.i.
|
|
2140
|
-
this._a("iconDisabledBorderColor", brushToString(this.i.
|
|
2139
|
+
this.i.qq = stringToBrush(v);
|
|
2140
|
+
this._a("iconDisabledBorderColor", brushToString(this.i.qq));
|
|
2141
2141
|
},
|
|
2142
2142
|
enumerable: false,
|
|
2143
2143
|
configurable: true
|
|
@@ -2147,11 +2147,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2147
2147
|
* Gets or sets the color to use for the disabled text of the button when the type is icon.
|
|
2148
2148
|
*/
|
|
2149
2149
|
get: function () {
|
|
2150
|
-
return brushToString(this.i.
|
|
2150
|
+
return brushToString(this.i.qr);
|
|
2151
2151
|
},
|
|
2152
2152
|
set: function (v) {
|
|
2153
|
-
this.i.
|
|
2154
|
-
this._a("iconDisabledTextColor", brushToString(this.i.
|
|
2153
|
+
this.i.qr = stringToBrush(v);
|
|
2154
|
+
this._a("iconDisabledTextColor", brushToString(this.i.qr));
|
|
2155
2155
|
},
|
|
2156
2156
|
enumerable: false,
|
|
2157
2157
|
configurable: true
|
|
@@ -2161,11 +2161,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2161
2161
|
* Gets or sets the disabled elevation to use for the button when the type is icon.
|
|
2162
2162
|
*/
|
|
2163
2163
|
get: function () {
|
|
2164
|
-
return this.i.
|
|
2164
|
+
return this.i.dv;
|
|
2165
2165
|
},
|
|
2166
2166
|
set: function (v) {
|
|
2167
|
-
this.i.
|
|
2168
|
-
this._a("iconDisabledElevation", this.i.
|
|
2167
|
+
this.i.dv = +v;
|
|
2168
|
+
this._a("iconDisabledElevation", this.i.dv);
|
|
2169
2169
|
},
|
|
2170
2170
|
enumerable: false,
|
|
2171
2171
|
configurable: true
|
|
@@ -2175,11 +2175,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2175
2175
|
* Gets or sets the hover color to use for the background of the button when the type is hoveredIcon.
|
|
2176
2176
|
*/
|
|
2177
2177
|
get: function () {
|
|
2178
|
-
return brushToString(this.i.
|
|
2178
|
+
return brushToString(this.i.qu);
|
|
2179
2179
|
},
|
|
2180
2180
|
set: function (v) {
|
|
2181
|
-
this.i.
|
|
2182
|
-
this._a("iconHoverBackgroundColor", brushToString(this.i.
|
|
2181
|
+
this.i.qu = stringToBrush(v);
|
|
2182
|
+
this._a("iconHoverBackgroundColor", brushToString(this.i.qu));
|
|
2183
2183
|
},
|
|
2184
2184
|
enumerable: false,
|
|
2185
2185
|
configurable: true
|
|
@@ -2189,11 +2189,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2189
2189
|
* Gets or sets the border color to use for the button when the type is icon.
|
|
2190
2190
|
*/
|
|
2191
2191
|
get: function () {
|
|
2192
|
-
return brushToString(this.i.
|
|
2192
|
+
return brushToString(this.i.qo);
|
|
2193
2193
|
},
|
|
2194
2194
|
set: function (v) {
|
|
2195
|
-
this.i.
|
|
2196
|
-
this._a("iconBorderColor", brushToString(this.i.
|
|
2195
|
+
this.i.qo = stringToBrush(v);
|
|
2196
|
+
this._a("iconBorderColor", brushToString(this.i.qo));
|
|
2197
2197
|
},
|
|
2198
2198
|
enumerable: false,
|
|
2199
2199
|
configurable: true
|
|
@@ -2203,11 +2203,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2203
2203
|
* Gets or sets the elevation to use for the button when the type is icon.
|
|
2204
2204
|
*/
|
|
2205
2205
|
get: function () {
|
|
2206
|
-
return this.i.
|
|
2206
|
+
return this.i.dy;
|
|
2207
2207
|
},
|
|
2208
2208
|
set: function (v) {
|
|
2209
|
-
this.i.
|
|
2210
|
-
this._a("iconRestingElevation", this.i.
|
|
2209
|
+
this.i.dy = +v;
|
|
2210
|
+
this._a("iconRestingElevation", this.i.dy);
|
|
2211
2211
|
},
|
|
2212
2212
|
enumerable: false,
|
|
2213
2213
|
configurable: true
|
|
@@ -2217,11 +2217,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2217
2217
|
* Gets or sets the hover elevation to use for the button when the type is icon.
|
|
2218
2218
|
*/
|
|
2219
2219
|
get: function () {
|
|
2220
|
-
return this.i.
|
|
2220
|
+
return this.i.dx;
|
|
2221
2221
|
},
|
|
2222
2222
|
set: function (v) {
|
|
2223
|
-
this.i.
|
|
2224
|
-
this._a("iconHoverElevation", this.i.
|
|
2223
|
+
this.i.dx = +v;
|
|
2224
|
+
this._a("iconHoverElevation", this.i.dx);
|
|
2225
2225
|
},
|
|
2226
2226
|
enumerable: false,
|
|
2227
2227
|
configurable: true
|
|
@@ -2231,11 +2231,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2231
2231
|
* Gets or sets the focus elevation to use for the button when the type is icon.
|
|
2232
2232
|
*/
|
|
2233
2233
|
get: function () {
|
|
2234
|
-
return this.i.
|
|
2234
|
+
return this.i.dw;
|
|
2235
2235
|
},
|
|
2236
2236
|
set: function (v) {
|
|
2237
|
-
this.i.
|
|
2238
|
-
this._a("iconFocusElevation", this.i.
|
|
2237
|
+
this.i.dw = +v;
|
|
2238
|
+
this._a("iconFocusElevation", this.i.dw);
|
|
2239
2239
|
},
|
|
2240
2240
|
enumerable: false,
|
|
2241
2241
|
configurable: true
|
|
@@ -2245,83 +2245,83 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2245
2245
|
* Gets or sets the width to use for the button border when the type is icon.
|
|
2246
2246
|
*/
|
|
2247
2247
|
get: function () {
|
|
2248
|
-
return this.i.
|
|
2248
|
+
return this.i.bx;
|
|
2249
2249
|
},
|
|
2250
2250
|
set: function (v) {
|
|
2251
|
-
this.i.
|
|
2252
|
-
this._a("iconBorderWidth", this.i.
|
|
2251
|
+
this.i.bx = +v;
|
|
2252
|
+
this._a("iconBorderWidth", this.i.bx);
|
|
2253
2253
|
},
|
|
2254
2254
|
enumerable: false,
|
|
2255
2255
|
configurable: true
|
|
2256
2256
|
});
|
|
2257
2257
|
Object.defineProperty(IgcXButtonComponent.prototype, "iconCornerRadiusBottomRight", {
|
|
2258
2258
|
get: function () {
|
|
2259
|
-
return this.i.
|
|
2259
|
+
return this.i.lf ? this.i.lf.c : NaN;
|
|
2260
2260
|
},
|
|
2261
2261
|
set: function (v) {
|
|
2262
2262
|
this.ensureIconCornerRadius();
|
|
2263
|
-
this.i.
|
|
2264
|
-
this._a("iconCornerRadiusBottomRight", this.i.
|
|
2265
|
-
this.i.
|
|
2263
|
+
this.i.lf.c = +v;
|
|
2264
|
+
this._a("iconCornerRadiusBottomRight", this.i.lf.c);
|
|
2265
|
+
this.i.lf = this.i.lf;
|
|
2266
2266
|
},
|
|
2267
2267
|
enumerable: false,
|
|
2268
2268
|
configurable: true
|
|
2269
2269
|
});
|
|
2270
2270
|
Object.defineProperty(IgcXButtonComponent.prototype, "iconCornerRadiusBottomLeft", {
|
|
2271
2271
|
get: function () {
|
|
2272
|
-
return this.i.
|
|
2272
|
+
return this.i.lf ? this.i.lf.b : NaN;
|
|
2273
2273
|
},
|
|
2274
2274
|
set: function (v) {
|
|
2275
2275
|
this.ensureIconCornerRadius();
|
|
2276
|
-
this.i.
|
|
2277
|
-
this._a("iconCornerRadiusBottomLeft", this.i.
|
|
2278
|
-
this.i.
|
|
2276
|
+
this.i.lf.b = +v;
|
|
2277
|
+
this._a("iconCornerRadiusBottomLeft", this.i.lf.b);
|
|
2278
|
+
this.i.lf = this.i.lf;
|
|
2279
2279
|
},
|
|
2280
2280
|
enumerable: false,
|
|
2281
2281
|
configurable: true
|
|
2282
2282
|
});
|
|
2283
2283
|
Object.defineProperty(IgcXButtonComponent.prototype, "iconCornerRadiusTopLeft", {
|
|
2284
2284
|
get: function () {
|
|
2285
|
-
return this.i.
|
|
2285
|
+
return this.i.lf ? this.i.lf.d : NaN;
|
|
2286
2286
|
},
|
|
2287
2287
|
set: function (v) {
|
|
2288
2288
|
this.ensureIconCornerRadius();
|
|
2289
|
-
this.i.
|
|
2290
|
-
this._a("iconCornerRadiusTopLeft", this.i.
|
|
2291
|
-
this.i.
|
|
2289
|
+
this.i.lf.d = +v;
|
|
2290
|
+
this._a("iconCornerRadiusTopLeft", this.i.lf.d);
|
|
2291
|
+
this.i.lf = this.i.lf;
|
|
2292
2292
|
},
|
|
2293
2293
|
enumerable: false,
|
|
2294
2294
|
configurable: true
|
|
2295
2295
|
});
|
|
2296
2296
|
Object.defineProperty(IgcXButtonComponent.prototype, "iconCornerRadiusTopRight", {
|
|
2297
2297
|
get: function () {
|
|
2298
|
-
return this.i.
|
|
2298
|
+
return this.i.lf ? this.i.lf.e : NaN;
|
|
2299
2299
|
},
|
|
2300
2300
|
set: function (v) {
|
|
2301
2301
|
this.ensureIconCornerRadius();
|
|
2302
|
-
this.i.
|
|
2303
|
-
this._a("iconCornerRadiusTopRight", this.i.
|
|
2304
|
-
this.i.
|
|
2302
|
+
this.i.lf.e = +v;
|
|
2303
|
+
this._a("iconCornerRadiusTopRight", this.i.lf.e);
|
|
2304
|
+
this.i.lf = this.i.lf;
|
|
2305
2305
|
},
|
|
2306
2306
|
enumerable: false,
|
|
2307
2307
|
configurable: true
|
|
2308
2308
|
});
|
|
2309
2309
|
IgcXButtonComponent.prototype.ensureIconCornerRadius = function () {
|
|
2310
|
-
if (this.i.
|
|
2310
|
+
if (this.i.lf) {
|
|
2311
2311
|
return;
|
|
2312
2312
|
}
|
|
2313
|
-
this.i.
|
|
2313
|
+
this.i.lf = new CornerRadius(2);
|
|
2314
2314
|
};
|
|
2315
2315
|
Object.defineProperty(IgcXButtonComponent.prototype, "iconRippleColor", {
|
|
2316
2316
|
/**
|
|
2317
2317
|
* Gets or sets the color to use for the background when the button is pressed and the type is floating action button.
|
|
2318
2318
|
*/
|
|
2319
2319
|
get: function () {
|
|
2320
|
-
return brushToString(this.i.
|
|
2320
|
+
return brushToString(this.i.qw);
|
|
2321
2321
|
},
|
|
2322
2322
|
set: function (v) {
|
|
2323
|
-
this.i.
|
|
2324
|
-
this._a("iconRippleColor", brushToString(this.i.
|
|
2323
|
+
this.i.qw = stringToBrush(v);
|
|
2324
|
+
this._a("iconRippleColor", brushToString(this.i.qw));
|
|
2325
2325
|
},
|
|
2326
2326
|
enumerable: false,
|
|
2327
2327
|
configurable: true
|
|
@@ -2331,11 +2331,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2331
2331
|
* Gets or sets the color to use for the text of the button when type is icon.
|
|
2332
2332
|
*/
|
|
2333
2333
|
get: function () {
|
|
2334
|
-
return brushToString(this.i.
|
|
2334
|
+
return brushToString(this.i.qx);
|
|
2335
2335
|
},
|
|
2336
2336
|
set: function (v) {
|
|
2337
|
-
this.i.
|
|
2338
|
-
this._a("iconTextColor", brushToString(this.i.
|
|
2337
|
+
this.i.qx = stringToBrush(v);
|
|
2338
|
+
this._a("iconTextColor", brushToString(this.i.qx));
|
|
2339
2339
|
},
|
|
2340
2340
|
enumerable: false,
|
|
2341
2341
|
configurable: true
|
|
@@ -2345,11 +2345,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2345
2345
|
* Gets or sets the color to use for the hovered text of the button when type is icon.
|
|
2346
2346
|
*/
|
|
2347
2347
|
get: function () {
|
|
2348
|
-
return brushToString(this.i.
|
|
2348
|
+
return brushToString(this.i.qv);
|
|
2349
2349
|
},
|
|
2350
2350
|
set: function (v) {
|
|
2351
|
-
this.i.
|
|
2352
|
-
this._a("iconHoverTextColor", brushToString(this.i.
|
|
2351
|
+
this.i.qv = stringToBrush(v);
|
|
2352
|
+
this._a("iconHoverTextColor", brushToString(this.i.qv));
|
|
2353
2353
|
},
|
|
2354
2354
|
enumerable: false,
|
|
2355
2355
|
configurable: true
|
|
@@ -2359,11 +2359,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2359
2359
|
* Gets or sets the color to use for the backround the button when it is focused and icon.
|
|
2360
2360
|
*/
|
|
2361
2361
|
get: function () {
|
|
2362
|
-
return brushToString(this.i.
|
|
2362
|
+
return brushToString(this.i.qs);
|
|
2363
2363
|
},
|
|
2364
2364
|
set: function (v) {
|
|
2365
|
-
this.i.
|
|
2366
|
-
this._a("iconFocusBackgroundColor", brushToString(this.i.
|
|
2365
|
+
this.i.qs = stringToBrush(v);
|
|
2366
|
+
this._a("iconFocusBackgroundColor", brushToString(this.i.qs));
|
|
2367
2367
|
},
|
|
2368
2368
|
enumerable: false,
|
|
2369
2369
|
configurable: true
|
|
@@ -2373,11 +2373,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2373
2373
|
* Gets or sets the color to use for the text the button when it is focused and icon.
|
|
2374
2374
|
*/
|
|
2375
2375
|
get: function () {
|
|
2376
|
-
return brushToString(this.i.
|
|
2376
|
+
return brushToString(this.i.qt);
|
|
2377
2377
|
},
|
|
2378
2378
|
set: function (v) {
|
|
2379
|
-
this.i.
|
|
2380
|
-
this._a("iconFocusTextColor", brushToString(this.i.
|
|
2379
|
+
this.i.qt = stringToBrush(v);
|
|
2380
|
+
this._a("iconFocusTextColor", brushToString(this.i.qt));
|
|
2381
2381
|
},
|
|
2382
2382
|
enumerable: false,
|
|
2383
2383
|
configurable: true
|
|
@@ -2387,10 +2387,10 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2387
2387
|
* Gets or sets the id to use for the internal native checkbox.
|
|
2388
2388
|
*/
|
|
2389
2389
|
get: function () {
|
|
2390
|
-
return this.i.
|
|
2390
|
+
return this.i.hz;
|
|
2391
2391
|
},
|
|
2392
2392
|
set: function (v) {
|
|
2393
|
-
this.i.
|
|
2393
|
+
this.i.hz = v;
|
|
2394
2394
|
},
|
|
2395
2395
|
enumerable: false,
|
|
2396
2396
|
configurable: true
|
|
@@ -2400,10 +2400,10 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2400
2400
|
* Gets or sets the id to use for the checkbox.
|
|
2401
2401
|
*/
|
|
2402
2402
|
get: function () {
|
|
2403
|
-
return this.i.
|
|
2403
|
+
return this.i.hx;
|
|
2404
2404
|
},
|
|
2405
2405
|
set: function (v) {
|
|
2406
|
-
this.i.
|
|
2406
|
+
this.i.hx = v;
|
|
2407
2407
|
},
|
|
2408
2408
|
enumerable: false,
|
|
2409
2409
|
configurable: true
|
|
@@ -2413,10 +2413,10 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2413
2413
|
* Gets or sets the id to use for the checkbox.
|
|
2414
2414
|
*/
|
|
2415
2415
|
get: function () {
|
|
2416
|
-
return this.i.
|
|
2416
|
+
return this.i.f1;
|
|
2417
2417
|
},
|
|
2418
2418
|
set: function (v) {
|
|
2419
|
-
this.i.
|
|
2419
|
+
this.i.f1 = v;
|
|
2420
2420
|
},
|
|
2421
2421
|
enumerable: false,
|
|
2422
2422
|
configurable: true
|
|
@@ -2426,10 +2426,10 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2426
2426
|
* Gets or sets the id to use for the checkbox.
|
|
2427
2427
|
*/
|
|
2428
2428
|
get: function () {
|
|
2429
|
-
return this.i.
|
|
2429
|
+
return this.i.g5;
|
|
2430
2430
|
},
|
|
2431
2431
|
set: function (v) {
|
|
2432
|
-
this.i.
|
|
2432
|
+
this.i.g5 = v;
|
|
2433
2433
|
},
|
|
2434
2434
|
enumerable: false,
|
|
2435
2435
|
configurable: true
|
|
@@ -2439,10 +2439,10 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2439
2439
|
* Gets or sets the flex-grow setting for the button.
|
|
2440
2440
|
*/
|
|
2441
2441
|
get: function () {
|
|
2442
|
-
return this.i.
|
|
2442
|
+
return this.i.g7;
|
|
2443
2443
|
},
|
|
2444
2444
|
set: function (v) {
|
|
2445
|
-
this.i.
|
|
2445
|
+
this.i.g7 = v;
|
|
2446
2446
|
},
|
|
2447
2447
|
enumerable: false,
|
|
2448
2448
|
configurable: true
|
|
@@ -2452,10 +2452,10 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2452
2452
|
* Gets or sets the id to use for the checkbox.
|
|
2453
2453
|
*/
|
|
2454
2454
|
get: function () {
|
|
2455
|
-
return this.i.
|
|
2455
|
+
return this.i.fc;
|
|
2456
2456
|
},
|
|
2457
2457
|
set: function (v) {
|
|
2458
|
-
this.i.
|
|
2458
|
+
this.i.fc = v;
|
|
2459
2459
|
},
|
|
2460
2460
|
enumerable: false,
|
|
2461
2461
|
configurable: true
|
|
@@ -2465,10 +2465,10 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2465
2465
|
* Gets or sets value to use for the checkbox.
|
|
2466
2466
|
*/
|
|
2467
2467
|
get: function () {
|
|
2468
|
-
return this.i.
|
|
2468
|
+
return this.i.ef;
|
|
2469
2469
|
},
|
|
2470
2470
|
set: function (v) {
|
|
2471
|
-
this.i.
|
|
2471
|
+
this.i.ef = v;
|
|
2472
2472
|
},
|
|
2473
2473
|
enumerable: false,
|
|
2474
2474
|
configurable: true
|
|
@@ -2478,10 +2478,10 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2478
2478
|
* Gets or sets name to use for the button.
|
|
2479
2479
|
*/
|
|
2480
2480
|
get: function () {
|
|
2481
|
-
return this.i.
|
|
2481
|
+
return this.i.h7;
|
|
2482
2482
|
},
|
|
2483
2483
|
set: function (v) {
|
|
2484
|
-
this.i.
|
|
2484
|
+
this.i.h7 = v;
|
|
2485
2485
|
},
|
|
2486
2486
|
enumerable: false,
|
|
2487
2487
|
configurable: true
|
|
@@ -2491,11 +2491,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2491
2491
|
* Gets or sets TabIndex to use for the checkbox.
|
|
2492
2492
|
*/
|
|
2493
2493
|
get: function () {
|
|
2494
|
-
return this.i.
|
|
2494
|
+
return this.i.d8;
|
|
2495
2495
|
},
|
|
2496
2496
|
set: function (v) {
|
|
2497
|
-
this.i.
|
|
2498
|
-
this._a("tabIndex", this.i.
|
|
2497
|
+
this.i.d8 = +v;
|
|
2498
|
+
this._a("tabIndex", this.i.d8);
|
|
2499
2499
|
},
|
|
2500
2500
|
enumerable: false,
|
|
2501
2501
|
configurable: true
|
|
@@ -2505,10 +2505,10 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2505
2505
|
* Gets or sets the value of the aria-label attribute.
|
|
2506
2506
|
*/
|
|
2507
2507
|
get: function () {
|
|
2508
|
-
return this.i.
|
|
2508
|
+
return this.i.fe;
|
|
2509
2509
|
},
|
|
2510
2510
|
set: function (v) {
|
|
2511
|
-
this.i.
|
|
2511
|
+
this.i.fe = v;
|
|
2512
2512
|
},
|
|
2513
2513
|
enumerable: false,
|
|
2514
2514
|
configurable: true
|
|
@@ -2519,11 +2519,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2519
2519
|
* will use an intrinsic size.
|
|
2520
2520
|
*/
|
|
2521
2521
|
get: function () {
|
|
2522
|
-
return this.i.
|
|
2522
|
+
return this.i.az;
|
|
2523
2523
|
},
|
|
2524
2524
|
set: function (v) {
|
|
2525
|
-
this.i.
|
|
2526
|
-
this._a("fillAvailableSpace", this.i.
|
|
2525
|
+
this.i.az = ensureBool(v);
|
|
2526
|
+
this._a("fillAvailableSpace", this.i.az);
|
|
2527
2527
|
},
|
|
2528
2528
|
enumerable: false,
|
|
2529
2529
|
configurable: true
|
|
@@ -2547,11 +2547,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2547
2547
|
* Gets or sets if the button show use styling to show focus.
|
|
2548
2548
|
*/
|
|
2549
2549
|
get: function () {
|
|
2550
|
-
return this.i.
|
|
2550
|
+
return this.i.a3;
|
|
2551
2551
|
},
|
|
2552
2552
|
set: function (v) {
|
|
2553
|
-
this.i.
|
|
2554
|
-
this._a("isFocusStyleEnabled", this.i.
|
|
2553
|
+
this.i.a3 = ensureBool(v);
|
|
2554
|
+
this._a("isFocusStyleEnabled", this.i.a3);
|
|
2555
2555
|
},
|
|
2556
2556
|
enumerable: false,
|
|
2557
2557
|
configurable: true
|
|
@@ -2561,11 +2561,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2561
2561
|
* Gets or sets whether to disable the ripple effect for the button.
|
|
2562
2562
|
*/
|
|
2563
2563
|
get: function () {
|
|
2564
|
-
return this.i.
|
|
2564
|
+
return this.i.ax;
|
|
2565
2565
|
},
|
|
2566
2566
|
set: function (v) {
|
|
2567
|
-
this.i.
|
|
2568
|
-
this._a("disableRipple", this.i.
|
|
2567
|
+
this.i.ax = ensureBool(v);
|
|
2568
|
+
this._a("disableRipple", this.i.ax);
|
|
2569
2569
|
},
|
|
2570
2570
|
enumerable: false,
|
|
2571
2571
|
configurable: true
|
|
@@ -2575,11 +2575,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2575
2575
|
* Gets whether to actually disable the ripple effect for the button.
|
|
2576
2576
|
*/
|
|
2577
2577
|
get: function () {
|
|
2578
|
-
return this.i.
|
|
2578
|
+
return this.i.at;
|
|
2579
2579
|
},
|
|
2580
2580
|
set: function (v) {
|
|
2581
|
-
this.i.
|
|
2582
|
-
this._a("actualDisableRipple", this.i.
|
|
2581
|
+
this.i.at = ensureBool(v);
|
|
2582
|
+
this._a("actualDisableRipple", this.i.at);
|
|
2583
2583
|
},
|
|
2584
2584
|
enumerable: false,
|
|
2585
2585
|
configurable: true
|
|
@@ -2589,11 +2589,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2589
2589
|
* Gets or sets whether the hover effect is disabled.
|
|
2590
2590
|
*/
|
|
2591
2591
|
get: function () {
|
|
2592
|
-
return this.i.
|
|
2592
|
+
return this.i.av;
|
|
2593
2593
|
},
|
|
2594
2594
|
set: function (v) {
|
|
2595
|
-
this.i.
|
|
2596
|
-
this._a("disableHover", this.i.
|
|
2595
|
+
this.i.av = ensureBool(v);
|
|
2596
|
+
this._a("disableHover", this.i.av);
|
|
2597
2597
|
},
|
|
2598
2598
|
enumerable: false,
|
|
2599
2599
|
configurable: true
|
|
@@ -2603,11 +2603,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2603
2603
|
* Gets or sets whether the checkbox is checked.
|
|
2604
2604
|
*/
|
|
2605
2605
|
get: function () {
|
|
2606
|
-
return this.i.
|
|
2606
|
+
return this.i.a4;
|
|
2607
2607
|
},
|
|
2608
2608
|
set: function (v) {
|
|
2609
|
-
this.i.
|
|
2610
|
-
this._a("isHover", this.i.
|
|
2609
|
+
this.i.a4 = ensureBool(v);
|
|
2610
|
+
this._a("isHover", this.i.a4);
|
|
2611
2611
|
},
|
|
2612
2612
|
enumerable: false,
|
|
2613
2613
|
configurable: true
|
|
@@ -2631,11 +2631,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2631
2631
|
* Gets or sets whether the checkbox transitions are disabled.
|
|
2632
2632
|
*/
|
|
2633
2633
|
get: function () {
|
|
2634
|
-
return this.i.
|
|
2634
|
+
return this.i.ay;
|
|
2635
2635
|
},
|
|
2636
2636
|
set: function (v) {
|
|
2637
|
-
this.i.
|
|
2638
|
-
this._a("disableTransitions", this.i.
|
|
2637
|
+
this.i.ay = ensureBool(v);
|
|
2638
|
+
this._a("disableTransitions", this.i.ay);
|
|
2639
2639
|
},
|
|
2640
2640
|
enumerable: false,
|
|
2641
2641
|
configurable: true
|
|
@@ -2645,11 +2645,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2645
2645
|
* Gets or sets whether the cursor will change into a pointer when the button is hovered.
|
|
2646
2646
|
*/
|
|
2647
2647
|
get: function () {
|
|
2648
|
-
return this.i.
|
|
2648
|
+
return this.i.aw;
|
|
2649
2649
|
},
|
|
2650
2650
|
set: function (v) {
|
|
2651
|
-
this.i.
|
|
2652
|
-
this._a("disablePointer", this.i.
|
|
2651
|
+
this.i.aw = ensureBool(v);
|
|
2652
|
+
this._a("disablePointer", this.i.aw);
|
|
2653
2653
|
},
|
|
2654
2654
|
enumerable: false,
|
|
2655
2655
|
configurable: true
|
|
@@ -2659,11 +2659,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2659
2659
|
* Gets or sets the left padding for the button content.
|
|
2660
2660
|
*/
|
|
2661
2661
|
get: function () {
|
|
2662
|
-
return this.i.
|
|
2662
|
+
return this.i.bn;
|
|
2663
2663
|
},
|
|
2664
2664
|
set: function (v) {
|
|
2665
|
-
this.i.
|
|
2666
|
-
this._a("contentPaddingLeft", this.i.
|
|
2665
|
+
this.i.bn = +v;
|
|
2666
|
+
this._a("contentPaddingLeft", this.i.bn);
|
|
2667
2667
|
},
|
|
2668
2668
|
enumerable: false,
|
|
2669
2669
|
configurable: true
|
|
@@ -2673,11 +2673,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2673
2673
|
* Gets or sets the top padding for the button content.
|
|
2674
2674
|
*/
|
|
2675
2675
|
get: function () {
|
|
2676
|
-
return this.i.
|
|
2676
|
+
return this.i.bp;
|
|
2677
2677
|
},
|
|
2678
2678
|
set: function (v) {
|
|
2679
|
-
this.i.
|
|
2680
|
-
this._a("contentPaddingTop", this.i.
|
|
2679
|
+
this.i.bp = +v;
|
|
2680
|
+
this._a("contentPaddingTop", this.i.bp);
|
|
2681
2681
|
},
|
|
2682
2682
|
enumerable: false,
|
|
2683
2683
|
configurable: true
|
|
@@ -2687,11 +2687,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2687
2687
|
* Gets or sets the right padding for the button content.
|
|
2688
2688
|
*/
|
|
2689
2689
|
get: function () {
|
|
2690
|
-
return this.i.
|
|
2690
|
+
return this.i.bo;
|
|
2691
2691
|
},
|
|
2692
2692
|
set: function (v) {
|
|
2693
|
-
this.i.
|
|
2694
|
-
this._a("contentPaddingRight", this.i.
|
|
2693
|
+
this.i.bo = +v;
|
|
2694
|
+
this._a("contentPaddingRight", this.i.bo);
|
|
2695
2695
|
},
|
|
2696
2696
|
enumerable: false,
|
|
2697
2697
|
configurable: true
|
|
@@ -2701,33 +2701,33 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2701
2701
|
* Gets or sets the bottom padding for the button content.
|
|
2702
2702
|
*/
|
|
2703
2703
|
get: function () {
|
|
2704
|
-
return this.i.
|
|
2704
|
+
return this.i.bm;
|
|
2705
2705
|
},
|
|
2706
2706
|
set: function (v) {
|
|
2707
|
-
this.i.
|
|
2708
|
-
this._a("contentPaddingBottom", this.i.
|
|
2707
|
+
this.i.bm = +v;
|
|
2708
|
+
this._a("contentPaddingBottom", this.i.bm);
|
|
2709
2709
|
},
|
|
2710
2710
|
enumerable: false,
|
|
2711
2711
|
configurable: true
|
|
2712
2712
|
});
|
|
2713
2713
|
Object.defineProperty(IgcXButtonComponent.prototype, "horizontalContentAlignment", {
|
|
2714
2714
|
get: function () {
|
|
2715
|
-
return this.i.
|
|
2715
|
+
return this.i.lj;
|
|
2716
2716
|
},
|
|
2717
2717
|
set: function (v) {
|
|
2718
|
-
this.i.
|
|
2719
|
-
this._a("horizontalContentAlignment", enumToString(HorizontalAlignment_$type, this.i.
|
|
2718
|
+
this.i.lj = ensureEnum(HorizontalAlignment_$type, v);
|
|
2719
|
+
this._a("horizontalContentAlignment", enumToString(HorizontalAlignment_$type, this.i.lj));
|
|
2720
2720
|
},
|
|
2721
2721
|
enumerable: false,
|
|
2722
2722
|
configurable: true
|
|
2723
2723
|
});
|
|
2724
2724
|
Object.defineProperty(IgcXButtonComponent.prototype, "verticalContentAlignment", {
|
|
2725
2725
|
get: function () {
|
|
2726
|
-
return this.i.
|
|
2726
|
+
return this.i.rn;
|
|
2727
2727
|
},
|
|
2728
2728
|
set: function (v) {
|
|
2729
|
-
this.i.
|
|
2730
|
-
this._a("verticalContentAlignment", enumToString(VerticalAlignment_$type, this.i.
|
|
2729
|
+
this.i.rn = ensureEnum(VerticalAlignment_$type, v);
|
|
2730
|
+
this._a("verticalContentAlignment", enumToString(VerticalAlignment_$type, this.i.rn));
|
|
2731
2731
|
},
|
|
2732
2732
|
enumerable: false,
|
|
2733
2733
|
configurable: true
|
|
@@ -2737,11 +2737,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2737
2737
|
* Gets or sets if clicking on the button is allowed to tunnel down to button content.
|
|
2738
2738
|
*/
|
|
2739
2739
|
get: function () {
|
|
2740
|
-
return this.i.
|
|
2740
|
+
return this.i.au;
|
|
2741
2741
|
},
|
|
2742
2742
|
set: function (v) {
|
|
2743
|
-
this.i.
|
|
2744
|
-
this._a("clickTunneling", this.i.
|
|
2743
|
+
this.i.au = ensureBool(v);
|
|
2744
|
+
this._a("clickTunneling", this.i.au);
|
|
2745
2745
|
},
|
|
2746
2746
|
enumerable: false,
|
|
2747
2747
|
configurable: true
|
|
@@ -2751,11 +2751,11 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2751
2751
|
* Gets or sets whether mouse events on the button will bubble up to parent elements.
|
|
2752
2752
|
*/
|
|
2753
2753
|
get: function () {
|
|
2754
|
-
return this.i.
|
|
2754
|
+
return this.i.a6;
|
|
2755
2755
|
},
|
|
2756
2756
|
set: function (v) {
|
|
2757
|
-
this.i.
|
|
2758
|
-
this._a("stopPropagation", this.i.
|
|
2757
|
+
this.i.a6 = ensureBool(v);
|
|
2758
|
+
this._a("stopPropagation", this.i.a6);
|
|
2759
2759
|
},
|
|
2760
2760
|
enumerable: false,
|
|
2761
2761
|
configurable: true
|
|
@@ -2836,7 +2836,7 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2836
2836
|
|
|
2837
2837
|
*/
|
|
2838
2838
|
IgcXButtonComponent.prototype.exportVisualModel = function () {
|
|
2839
|
-
var iv = this.i.
|
|
2839
|
+
var iv = this.i.ec();
|
|
2840
2840
|
return (iv);
|
|
2841
2841
|
};
|
|
2842
2842
|
/**
|
|
@@ -2844,7 +2844,7 @@ export var IgcXButtonComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2844
2844
|
|
|
2845
2845
|
*/
|
|
2846
2846
|
IgcXButtonComponent.prototype.exportSerializedVisualModel = function () {
|
|
2847
|
-
var iv = this.i.
|
|
2847
|
+
var iv = this.i.f5();
|
|
2848
2848
|
return (iv);
|
|
2849
2849
|
};
|
|
2850
2850
|
Object.defineProperty(IgcXButtonComponent.prototype, "clicked", {
|