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
|
@@ -267,31 +267,31 @@ let IgcXButtonGroupComponent = /*@__PURE__*/ (() => {
|
|
|
267
267
|
* Gets or sets the base built in theme to use for the button group.
|
|
268
268
|
*/
|
|
269
269
|
get baseTheme() {
|
|
270
|
-
return this.i.
|
|
270
|
+
return this.i.q;
|
|
271
271
|
}
|
|
272
272
|
set baseTheme(v) {
|
|
273
|
-
this.i.
|
|
274
|
-
this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.
|
|
273
|
+
this.i.q = ensureEnum(BaseControlTheme_$type, v);
|
|
274
|
+
this._a("baseTheme", enumToString(BaseControlTheme_$type, this.i.q));
|
|
275
275
|
}
|
|
276
276
|
/**
|
|
277
277
|
* Gets or sets the display density to use for the button group.
|
|
278
278
|
*/
|
|
279
279
|
get density() {
|
|
280
|
-
return this.i.
|
|
280
|
+
return this.i.u;
|
|
281
281
|
}
|
|
282
282
|
set density(v) {
|
|
283
|
-
this.i.
|
|
284
|
-
this._a("density", enumToString(ControlDisplayDensity_$type, this.i.
|
|
283
|
+
this.i.u = ensureEnum(ControlDisplayDensity_$type, v);
|
|
284
|
+
this._a("density", enumToString(ControlDisplayDensity_$type, this.i.u));
|
|
285
285
|
}
|
|
286
286
|
/**
|
|
287
287
|
* Gets the actual display density to use for the button group.
|
|
288
288
|
*/
|
|
289
289
|
get actualDensity() {
|
|
290
|
-
return this.i.
|
|
290
|
+
return this.i.t;
|
|
291
291
|
}
|
|
292
292
|
set actualDensity(v) {
|
|
293
|
-
this.i.
|
|
294
|
-
this._a("actualDensity", enumToString(ControlDisplayDensity_$type, this.i.
|
|
293
|
+
this.i.t = ensureEnum(ControlDisplayDensity_$type, v);
|
|
294
|
+
this._a("actualDensity", enumToString(ControlDisplayDensity_$type, this.i.t));
|
|
295
295
|
}
|
|
296
296
|
/**
|
|
297
297
|
* Gets the currently selected button indices.
|
|
@@ -310,561 +310,561 @@ let IgcXButtonGroupComponent = /*@__PURE__*/ (() => {
|
|
|
310
310
|
* Gets the actual item corner radius for the appropriate corners.
|
|
311
311
|
*/
|
|
312
312
|
get actualItemCornerRadius() {
|
|
313
|
-
return this.i.
|
|
313
|
+
return this.i.am;
|
|
314
314
|
}
|
|
315
315
|
set actualItemCornerRadius(v) {
|
|
316
|
-
this.i.
|
|
317
|
-
this._a("actualItemCornerRadius", this.i.
|
|
316
|
+
this.i.am = +v;
|
|
317
|
+
this._a("actualItemCornerRadius", this.i.am);
|
|
318
318
|
}
|
|
319
319
|
/**
|
|
320
320
|
* Gets the actual item background color.
|
|
321
321
|
*/
|
|
322
322
|
get actualItemBackgroundColor() {
|
|
323
|
-
return brushToString(this.i.
|
|
323
|
+
return brushToString(this.i.e0);
|
|
324
324
|
}
|
|
325
325
|
set actualItemBackgroundColor(v) {
|
|
326
|
-
this.i.
|
|
327
|
-
this._a("actualItemBackgroundColor", brushToString(this.i.
|
|
326
|
+
this.i.e0 = stringToBrush(v);
|
|
327
|
+
this._a("actualItemBackgroundColor", brushToString(this.i.e0));
|
|
328
328
|
}
|
|
329
329
|
/**
|
|
330
330
|
* Gets the actual item background color.
|
|
331
331
|
*/
|
|
332
332
|
get actualItemDisabledBackgroundColor() {
|
|
333
|
-
return brushToString(this.i.
|
|
333
|
+
return brushToString(this.i.e2);
|
|
334
334
|
}
|
|
335
335
|
set actualItemDisabledBackgroundColor(v) {
|
|
336
|
-
this.i.
|
|
337
|
-
this._a("actualItemDisabledBackgroundColor", brushToString(this.i.
|
|
336
|
+
this.i.e2 = stringToBrush(v);
|
|
337
|
+
this._a("actualItemDisabledBackgroundColor", brushToString(this.i.e2));
|
|
338
338
|
}
|
|
339
339
|
/**
|
|
340
340
|
* Gets the actual item text color.
|
|
341
341
|
*/
|
|
342
342
|
get actualItemTextColor() {
|
|
343
|
-
return brushToString(this.i.
|
|
343
|
+
return brushToString(this.i.e7);
|
|
344
344
|
}
|
|
345
345
|
set actualItemTextColor(v) {
|
|
346
|
-
this.i.
|
|
347
|
-
this._a("actualItemTextColor", brushToString(this.i.
|
|
346
|
+
this.i.e7 = stringToBrush(v);
|
|
347
|
+
this._a("actualItemTextColor", brushToString(this.i.e7));
|
|
348
348
|
}
|
|
349
349
|
/**
|
|
350
350
|
* Gets the actual item text color.
|
|
351
351
|
*/
|
|
352
352
|
get actualItemDisabledTextColor() {
|
|
353
|
-
return brushToString(this.i.
|
|
353
|
+
return brushToString(this.i.e4);
|
|
354
354
|
}
|
|
355
355
|
set actualItemDisabledTextColor(v) {
|
|
356
|
-
this.i.
|
|
357
|
-
this._a("actualItemDisabledTextColor", brushToString(this.i.
|
|
356
|
+
this.i.e4 = stringToBrush(v);
|
|
357
|
+
this._a("actualItemDisabledTextColor", brushToString(this.i.e4));
|
|
358
358
|
}
|
|
359
359
|
/**
|
|
360
360
|
* Gets the actual item border color.
|
|
361
361
|
*/
|
|
362
362
|
get actualItemBorderColor() {
|
|
363
|
-
return brushToString(this.i.
|
|
363
|
+
return brushToString(this.i.e1);
|
|
364
364
|
}
|
|
365
365
|
set actualItemBorderColor(v) {
|
|
366
|
-
this.i.
|
|
367
|
-
this._a("actualItemBorderColor", brushToString(this.i.
|
|
366
|
+
this.i.e1 = stringToBrush(v);
|
|
367
|
+
this._a("actualItemBorderColor", brushToString(this.i.e1));
|
|
368
368
|
}
|
|
369
369
|
/**
|
|
370
370
|
* Gets the actual item border color.
|
|
371
371
|
*/
|
|
372
372
|
get actualItemDisabledBorderColor() {
|
|
373
|
-
return brushToString(this.i.
|
|
373
|
+
return brushToString(this.i.e3);
|
|
374
374
|
}
|
|
375
375
|
set actualItemDisabledBorderColor(v) {
|
|
376
|
-
this.i.
|
|
377
|
-
this._a("actualItemDisabledBorderColor", brushToString(this.i.
|
|
376
|
+
this.i.e3 = stringToBrush(v);
|
|
377
|
+
this._a("actualItemDisabledBorderColor", brushToString(this.i.e3));
|
|
378
378
|
}
|
|
379
379
|
/**
|
|
380
380
|
* Gets the actual item border width.
|
|
381
381
|
*/
|
|
382
382
|
get actualItemBorderWidth() {
|
|
383
|
-
return this.i.
|
|
383
|
+
return this.i.al;
|
|
384
384
|
}
|
|
385
385
|
set actualItemBorderWidth(v) {
|
|
386
|
-
this.i.
|
|
387
|
-
this._a("actualItemBorderWidth", this.i.
|
|
386
|
+
this.i.al = +v;
|
|
387
|
+
this._a("actualItemBorderWidth", this.i.al);
|
|
388
388
|
}
|
|
389
389
|
/**
|
|
390
390
|
* Gets the actual selected item background color.
|
|
391
391
|
*/
|
|
392
392
|
get actualSelectedItemBackgroundColor() {
|
|
393
|
-
return brushToString(this.i.
|
|
393
|
+
return brushToString(this.i.e8);
|
|
394
394
|
}
|
|
395
395
|
set actualSelectedItemBackgroundColor(v) {
|
|
396
|
-
this.i.
|
|
397
|
-
this._a("actualSelectedItemBackgroundColor", brushToString(this.i.
|
|
396
|
+
this.i.e8 = stringToBrush(v);
|
|
397
|
+
this._a("actualSelectedItemBackgroundColor", brushToString(this.i.e8));
|
|
398
398
|
}
|
|
399
399
|
/**
|
|
400
400
|
* Gets the stroke actual selected item text color.
|
|
401
401
|
*/
|
|
402
402
|
get actualSelectedItemTextColor() {
|
|
403
|
-
return brushToString(this.i.
|
|
403
|
+
return brushToString(this.i.fb);
|
|
404
404
|
}
|
|
405
405
|
set actualSelectedItemTextColor(v) {
|
|
406
|
-
this.i.
|
|
407
|
-
this._a("actualSelectedItemTextColor", brushToString(this.i.
|
|
406
|
+
this.i.fb = stringToBrush(v);
|
|
407
|
+
this._a("actualSelectedItemTextColor", brushToString(this.i.fb));
|
|
408
408
|
}
|
|
409
409
|
/**
|
|
410
410
|
* Gets the actual item hovered background color.
|
|
411
411
|
*/
|
|
412
412
|
get actualItemHoverBackgroundColor() {
|
|
413
|
-
return brushToString(this.i.
|
|
413
|
+
return brushToString(this.i.e5);
|
|
414
414
|
}
|
|
415
415
|
set actualItemHoverBackgroundColor(v) {
|
|
416
|
-
this.i.
|
|
417
|
-
this._a("actualItemHoverBackgroundColor", brushToString(this.i.
|
|
416
|
+
this.i.e5 = stringToBrush(v);
|
|
417
|
+
this._a("actualItemHoverBackgroundColor", brushToString(this.i.e5));
|
|
418
418
|
}
|
|
419
419
|
/**
|
|
420
420
|
* Gets the actual item text color.
|
|
421
421
|
*/
|
|
422
422
|
get actualItemHoverTextColor() {
|
|
423
|
-
return brushToString(this.i.
|
|
423
|
+
return brushToString(this.i.e6);
|
|
424
424
|
}
|
|
425
425
|
set actualItemHoverTextColor(v) {
|
|
426
|
-
this.i.
|
|
427
|
-
this._a("actualItemHoverTextColor", brushToString(this.i.
|
|
426
|
+
this.i.e6 = stringToBrush(v);
|
|
427
|
+
this._a("actualItemHoverTextColor", brushToString(this.i.e6));
|
|
428
428
|
}
|
|
429
429
|
/**
|
|
430
430
|
* Gets the actual selected item hovered background color.
|
|
431
431
|
*/
|
|
432
432
|
get actualSelectedItemHoverBackgroundColor() {
|
|
433
|
-
return brushToString(this.i.
|
|
433
|
+
return brushToString(this.i.e9);
|
|
434
434
|
}
|
|
435
435
|
set actualSelectedItemHoverBackgroundColor(v) {
|
|
436
|
-
this.i.
|
|
437
|
-
this._a("actualSelectedItemHoverBackgroundColor", brushToString(this.i.
|
|
436
|
+
this.i.e9 = stringToBrush(v);
|
|
437
|
+
this._a("actualSelectedItemHoverBackgroundColor", brushToString(this.i.e9));
|
|
438
438
|
}
|
|
439
439
|
/**
|
|
440
440
|
* Gets the actual selected item hovered text color.
|
|
441
441
|
*/
|
|
442
442
|
get actualSelectedItemHoverTextColor() {
|
|
443
|
-
return brushToString(this.i.
|
|
443
|
+
return brushToString(this.i.fa);
|
|
444
444
|
}
|
|
445
445
|
set actualSelectedItemHoverTextColor(v) {
|
|
446
|
-
this.i.
|
|
447
|
-
this._a("actualSelectedItemHoverTextColor", brushToString(this.i.
|
|
446
|
+
this.i.fa = stringToBrush(v);
|
|
447
|
+
this._a("actualSelectedItemHoverTextColor", brushToString(this.i.fa));
|
|
448
448
|
}
|
|
449
449
|
/**
|
|
450
450
|
* Gets or sets the corner radius to use for the appropriate corners for the item buttons.
|
|
451
451
|
*/
|
|
452
452
|
get itemCornerRadius() {
|
|
453
|
-
return this.i.
|
|
453
|
+
return this.i.a2;
|
|
454
454
|
}
|
|
455
455
|
set itemCornerRadius(v) {
|
|
456
|
-
this.i.
|
|
457
|
-
this._a("itemCornerRadius", this.i.
|
|
456
|
+
this.i.a2 = +v;
|
|
457
|
+
this._a("itemCornerRadius", this.i.a2);
|
|
458
458
|
}
|
|
459
459
|
/**
|
|
460
460
|
* Gets or sets the color to use the background of the buttons in the group.
|
|
461
461
|
*/
|
|
462
462
|
get itemBackgroundColor() {
|
|
463
|
-
return brushToString(this.i.
|
|
463
|
+
return brushToString(this.i.ho);
|
|
464
464
|
}
|
|
465
465
|
set itemBackgroundColor(v) {
|
|
466
|
-
this.i.
|
|
467
|
-
this._a("itemBackgroundColor", brushToString(this.i.
|
|
466
|
+
this.i.ho = stringToBrush(v);
|
|
467
|
+
this._a("itemBackgroundColor", brushToString(this.i.ho));
|
|
468
468
|
}
|
|
469
469
|
/**
|
|
470
470
|
* Gets or sets the disabled color to use the background of the buttons in the group.
|
|
471
471
|
*/
|
|
472
472
|
get itemDisabledBackgroundColor() {
|
|
473
|
-
return brushToString(this.i.
|
|
473
|
+
return brushToString(this.i.hq);
|
|
474
474
|
}
|
|
475
475
|
set itemDisabledBackgroundColor(v) {
|
|
476
|
-
this.i.
|
|
477
|
-
this._a("itemDisabledBackgroundColor", brushToString(this.i.
|
|
476
|
+
this.i.hq = stringToBrush(v);
|
|
477
|
+
this._a("itemDisabledBackgroundColor", brushToString(this.i.hq));
|
|
478
478
|
}
|
|
479
479
|
/**
|
|
480
480
|
* Gets or sets the color to use the text of the buttons in the group.
|
|
481
481
|
*/
|
|
482
482
|
get itemTextColor() {
|
|
483
|
-
return brushToString(this.i.
|
|
483
|
+
return brushToString(this.i.hv);
|
|
484
484
|
}
|
|
485
485
|
set itemTextColor(v) {
|
|
486
|
-
this.i.
|
|
487
|
-
this._a("itemTextColor", brushToString(this.i.
|
|
486
|
+
this.i.hv = stringToBrush(v);
|
|
487
|
+
this._a("itemTextColor", brushToString(this.i.hv));
|
|
488
488
|
}
|
|
489
489
|
/**
|
|
490
490
|
* Gets or sets the disabled color to use the text of the buttons in the group.
|
|
491
491
|
*/
|
|
492
492
|
get itemDisabledTextColor() {
|
|
493
|
-
return brushToString(this.i.
|
|
493
|
+
return brushToString(this.i.hs);
|
|
494
494
|
}
|
|
495
495
|
set itemDisabledTextColor(v) {
|
|
496
|
-
this.i.
|
|
497
|
-
this._a("itemDisabledTextColor", brushToString(this.i.
|
|
496
|
+
this.i.hs = stringToBrush(v);
|
|
497
|
+
this._a("itemDisabledTextColor", brushToString(this.i.hs));
|
|
498
498
|
}
|
|
499
499
|
/**
|
|
500
500
|
* Gets or sets the color to use the hovered background of the buttons in the group.
|
|
501
501
|
*/
|
|
502
502
|
get itemHoverBackgroundColor() {
|
|
503
|
-
return brushToString(this.i.
|
|
503
|
+
return brushToString(this.i.ht);
|
|
504
504
|
}
|
|
505
505
|
set itemHoverBackgroundColor(v) {
|
|
506
|
-
this.i.
|
|
507
|
-
this._a("itemHoverBackgroundColor", brushToString(this.i.
|
|
506
|
+
this.i.ht = stringToBrush(v);
|
|
507
|
+
this._a("itemHoverBackgroundColor", brushToString(this.i.ht));
|
|
508
508
|
}
|
|
509
509
|
/**
|
|
510
510
|
* Gets or sets the color to use the border of the buttons in the group.
|
|
511
511
|
*/
|
|
512
512
|
get itemBorderColor() {
|
|
513
|
-
return brushToString(this.i.
|
|
513
|
+
return brushToString(this.i.hp);
|
|
514
514
|
}
|
|
515
515
|
set itemBorderColor(v) {
|
|
516
|
-
this.i.
|
|
517
|
-
this._a("itemBorderColor", brushToString(this.i.
|
|
516
|
+
this.i.hp = stringToBrush(v);
|
|
517
|
+
this._a("itemBorderColor", brushToString(this.i.hp));
|
|
518
518
|
}
|
|
519
519
|
/**
|
|
520
520
|
* Gets or sets the disabled color to use the border of the buttons in the group.
|
|
521
521
|
*/
|
|
522
522
|
get itemDisabledBorderColor() {
|
|
523
|
-
return brushToString(this.i.
|
|
523
|
+
return brushToString(this.i.hr);
|
|
524
524
|
}
|
|
525
525
|
set itemDisabledBorderColor(v) {
|
|
526
|
-
this.i.
|
|
527
|
-
this._a("itemDisabledBorderColor", brushToString(this.i.
|
|
526
|
+
this.i.hr = stringToBrush(v);
|
|
527
|
+
this._a("itemDisabledBorderColor", brushToString(this.i.hr));
|
|
528
528
|
}
|
|
529
529
|
/**
|
|
530
530
|
* Gets or sets the border width to use for the buttons in the group.
|
|
531
531
|
*/
|
|
532
532
|
get itemBorderWidth() {
|
|
533
|
-
return this.i.
|
|
533
|
+
return this.i.a1;
|
|
534
534
|
}
|
|
535
535
|
set itemBorderWidth(v) {
|
|
536
|
-
this.i.
|
|
537
|
-
this._a("itemBorderWidth", this.i.
|
|
536
|
+
this.i.a1 = +v;
|
|
537
|
+
this._a("itemBorderWidth", this.i.a1);
|
|
538
538
|
}
|
|
539
539
|
/**
|
|
540
540
|
* Gets or sets the color to use the hovered text of the buttons in the group.
|
|
541
541
|
*/
|
|
542
542
|
get itemHoverTextColor() {
|
|
543
|
-
return brushToString(this.i.
|
|
543
|
+
return brushToString(this.i.hu);
|
|
544
544
|
}
|
|
545
545
|
set itemHoverTextColor(v) {
|
|
546
|
-
this.i.
|
|
547
|
-
this._a("itemHoverTextColor", brushToString(this.i.
|
|
546
|
+
this.i.hu = stringToBrush(v);
|
|
547
|
+
this._a("itemHoverTextColor", brushToString(this.i.hu));
|
|
548
548
|
}
|
|
549
549
|
/**
|
|
550
550
|
* Gets or sets the color to use the background of the buttons in the group that are selected.
|
|
551
551
|
*/
|
|
552
552
|
get selectedItemBackgroundColor() {
|
|
553
|
-
return brushToString(this.i.
|
|
553
|
+
return brushToString(this.i.h8);
|
|
554
554
|
}
|
|
555
555
|
set selectedItemBackgroundColor(v) {
|
|
556
|
-
this.i.
|
|
557
|
-
this._a("selectedItemBackgroundColor", brushToString(this.i.
|
|
556
|
+
this.i.h8 = stringToBrush(v);
|
|
557
|
+
this._a("selectedItemBackgroundColor", brushToString(this.i.h8));
|
|
558
558
|
}
|
|
559
559
|
/**
|
|
560
560
|
* Gets or sets the color to use the text of the buttons in the group that are selected.
|
|
561
561
|
*/
|
|
562
562
|
get selectedItemTextColor() {
|
|
563
|
-
return brushToString(this.i.
|
|
563
|
+
return brushToString(this.i.ib);
|
|
564
564
|
}
|
|
565
565
|
set selectedItemTextColor(v) {
|
|
566
|
-
this.i.
|
|
567
|
-
this._a("selectedItemTextColor", brushToString(this.i.
|
|
566
|
+
this.i.ib = stringToBrush(v);
|
|
567
|
+
this._a("selectedItemTextColor", brushToString(this.i.ib));
|
|
568
568
|
}
|
|
569
569
|
/**
|
|
570
570
|
* Gets or sets the color to use the hovered background of the buttons in the group that are selected.
|
|
571
571
|
*/
|
|
572
572
|
get selectedItemHoverBackgroundColor() {
|
|
573
|
-
return brushToString(this.i.
|
|
573
|
+
return brushToString(this.i.h9);
|
|
574
574
|
}
|
|
575
575
|
set selectedItemHoverBackgroundColor(v) {
|
|
576
|
-
this.i.
|
|
577
|
-
this._a("selectedItemHoverBackgroundColor", brushToString(this.i.
|
|
576
|
+
this.i.h9 = stringToBrush(v);
|
|
577
|
+
this._a("selectedItemHoverBackgroundColor", brushToString(this.i.h9));
|
|
578
578
|
}
|
|
579
579
|
/**
|
|
580
580
|
* Gets or sets the color to use the hovered text of the buttons in the group that are selected.
|
|
581
581
|
*/
|
|
582
582
|
get selectedItemHoverTextColor() {
|
|
583
|
-
return brushToString(this.i.
|
|
583
|
+
return brushToString(this.i.ia);
|
|
584
584
|
}
|
|
585
585
|
set selectedItemHoverTextColor(v) {
|
|
586
|
-
this.i.
|
|
587
|
-
this._a("selectedItemHoverTextColor", brushToString(this.i.
|
|
586
|
+
this.i.ia = stringToBrush(v);
|
|
587
|
+
this._a("selectedItemHoverTextColor", brushToString(this.i.ia));
|
|
588
588
|
}
|
|
589
589
|
/**
|
|
590
590
|
* Gets or sets the corner radius to use for the appropriate corners for the outlined type item buttons.
|
|
591
591
|
*/
|
|
592
592
|
get outlinedItemCornerRadius() {
|
|
593
|
-
return this.i.
|
|
593
|
+
return this.i.a4;
|
|
594
594
|
}
|
|
595
595
|
set outlinedItemCornerRadius(v) {
|
|
596
|
-
this.i.
|
|
597
|
-
this._a("outlinedItemCornerRadius", this.i.
|
|
596
|
+
this.i.a4 = +v;
|
|
597
|
+
this._a("outlinedItemCornerRadius", this.i.a4);
|
|
598
598
|
}
|
|
599
599
|
/**
|
|
600
600
|
* Gets or sets the color to use the background of the buttons in the group when type is outlined.
|
|
601
601
|
*/
|
|
602
602
|
get outlinedItemBackgroundColor() {
|
|
603
|
-
return brushToString(this.i.
|
|
603
|
+
return brushToString(this.i.hw);
|
|
604
604
|
}
|
|
605
605
|
set outlinedItemBackgroundColor(v) {
|
|
606
|
-
this.i.
|
|
607
|
-
this._a("outlinedItemBackgroundColor", brushToString(this.i.
|
|
606
|
+
this.i.hw = stringToBrush(v);
|
|
607
|
+
this._a("outlinedItemBackgroundColor", brushToString(this.i.hw));
|
|
608
608
|
}
|
|
609
609
|
/**
|
|
610
610
|
* Gets or sets the disabled color to use the background of the buttons in the group when type is outlined.
|
|
611
611
|
*/
|
|
612
612
|
get outlinedItemDisabledBackgroundColor() {
|
|
613
|
-
return brushToString(this.i.
|
|
613
|
+
return brushToString(this.i.hy);
|
|
614
614
|
}
|
|
615
615
|
set outlinedItemDisabledBackgroundColor(v) {
|
|
616
|
-
this.i.
|
|
617
|
-
this._a("outlinedItemDisabledBackgroundColor", brushToString(this.i.
|
|
616
|
+
this.i.hy = stringToBrush(v);
|
|
617
|
+
this._a("outlinedItemDisabledBackgroundColor", brushToString(this.i.hy));
|
|
618
618
|
}
|
|
619
619
|
/**
|
|
620
620
|
* Gets or sets the color to use the text of the buttons in the group when type is outlined.
|
|
621
621
|
*/
|
|
622
622
|
get outlinedItemTextColor() {
|
|
623
|
-
return brushToString(this.i.
|
|
623
|
+
return brushToString(this.i.h3);
|
|
624
624
|
}
|
|
625
625
|
set outlinedItemTextColor(v) {
|
|
626
|
-
this.i.
|
|
627
|
-
this._a("outlinedItemTextColor", brushToString(this.i.
|
|
626
|
+
this.i.h3 = stringToBrush(v);
|
|
627
|
+
this._a("outlinedItemTextColor", brushToString(this.i.h3));
|
|
628
628
|
}
|
|
629
629
|
/**
|
|
630
630
|
* Gets or sets the disabled color to use the text of the buttons in the group when type is outlined.
|
|
631
631
|
*/
|
|
632
632
|
get outlinedItemDisabledTextColor() {
|
|
633
|
-
return brushToString(this.i.
|
|
633
|
+
return brushToString(this.i.h0);
|
|
634
634
|
}
|
|
635
635
|
set outlinedItemDisabledTextColor(v) {
|
|
636
|
-
this.i.
|
|
637
|
-
this._a("outlinedItemDisabledTextColor", brushToString(this.i.
|
|
636
|
+
this.i.h0 = stringToBrush(v);
|
|
637
|
+
this._a("outlinedItemDisabledTextColor", brushToString(this.i.h0));
|
|
638
638
|
}
|
|
639
639
|
/**
|
|
640
640
|
* Gets or sets the color to use the hovered background of the buttons in the group when type is outlined.
|
|
641
641
|
*/
|
|
642
642
|
get outlinedItemHoverBackgroundColor() {
|
|
643
|
-
return brushToString(this.i.
|
|
643
|
+
return brushToString(this.i.h1);
|
|
644
644
|
}
|
|
645
645
|
set outlinedItemHoverBackgroundColor(v) {
|
|
646
|
-
this.i.
|
|
647
|
-
this._a("outlinedItemHoverBackgroundColor", brushToString(this.i.
|
|
646
|
+
this.i.h1 = stringToBrush(v);
|
|
647
|
+
this._a("outlinedItemHoverBackgroundColor", brushToString(this.i.h1));
|
|
648
648
|
}
|
|
649
649
|
/**
|
|
650
650
|
* Gets or sets the color to use the border of the buttons in the group when type is outlined.
|
|
651
651
|
*/
|
|
652
652
|
get outlinedItemBorderColor() {
|
|
653
|
-
return brushToString(this.i.
|
|
653
|
+
return brushToString(this.i.hx);
|
|
654
654
|
}
|
|
655
655
|
set outlinedItemBorderColor(v) {
|
|
656
|
-
this.i.
|
|
657
|
-
this._a("outlinedItemBorderColor", brushToString(this.i.
|
|
656
|
+
this.i.hx = stringToBrush(v);
|
|
657
|
+
this._a("outlinedItemBorderColor", brushToString(this.i.hx));
|
|
658
658
|
}
|
|
659
659
|
/**
|
|
660
660
|
* Gets or sets the disabled color to use the border of the buttons in the group when type is outlined.
|
|
661
661
|
*/
|
|
662
662
|
get outlinedItemDisabledBorderColor() {
|
|
663
|
-
return brushToString(this.i.
|
|
663
|
+
return brushToString(this.i.hz);
|
|
664
664
|
}
|
|
665
665
|
set outlinedItemDisabledBorderColor(v) {
|
|
666
|
-
this.i.
|
|
667
|
-
this._a("outlinedItemDisabledBorderColor", brushToString(this.i.
|
|
666
|
+
this.i.hz = stringToBrush(v);
|
|
667
|
+
this._a("outlinedItemDisabledBorderColor", brushToString(this.i.hz));
|
|
668
668
|
}
|
|
669
669
|
/**
|
|
670
670
|
* Gets or sets the border width to use for the buttons in the group when type is outlined.
|
|
671
671
|
*/
|
|
672
672
|
get outlinedItemBorderWidth() {
|
|
673
|
-
return this.i.
|
|
673
|
+
return this.i.a3;
|
|
674
674
|
}
|
|
675
675
|
set outlinedItemBorderWidth(v) {
|
|
676
|
-
this.i.
|
|
677
|
-
this._a("outlinedItemBorderWidth", this.i.
|
|
676
|
+
this.i.a3 = +v;
|
|
677
|
+
this._a("outlinedItemBorderWidth", this.i.a3);
|
|
678
678
|
}
|
|
679
679
|
/**
|
|
680
680
|
* Gets or sets the color to use the hovered text of the buttons in the group when type is outlined.
|
|
681
681
|
*/
|
|
682
682
|
get outlinedItemHoverTextColor() {
|
|
683
|
-
return brushToString(this.i.
|
|
683
|
+
return brushToString(this.i.h2);
|
|
684
684
|
}
|
|
685
685
|
set outlinedItemHoverTextColor(v) {
|
|
686
|
-
this.i.
|
|
687
|
-
this._a("outlinedItemHoverTextColor", brushToString(this.i.
|
|
686
|
+
this.i.h2 = stringToBrush(v);
|
|
687
|
+
this._a("outlinedItemHoverTextColor", brushToString(this.i.h2));
|
|
688
688
|
}
|
|
689
689
|
/**
|
|
690
690
|
* Gets or sets the color to use the background of the buttons in the group that are selected when type is outlined.
|
|
691
691
|
*/
|
|
692
692
|
get outlinedSelectedItemBackgroundColor() {
|
|
693
|
-
return brushToString(this.i.
|
|
693
|
+
return brushToString(this.i.h4);
|
|
694
694
|
}
|
|
695
695
|
set outlinedSelectedItemBackgroundColor(v) {
|
|
696
|
-
this.i.
|
|
697
|
-
this._a("outlinedSelectedItemBackgroundColor", brushToString(this.i.
|
|
696
|
+
this.i.h4 = stringToBrush(v);
|
|
697
|
+
this._a("outlinedSelectedItemBackgroundColor", brushToString(this.i.h4));
|
|
698
698
|
}
|
|
699
699
|
/**
|
|
700
700
|
* Gets or sets the color to use the text of the buttons in the group that are selected when type is outlined.
|
|
701
701
|
*/
|
|
702
702
|
get outlinedSelectedItemTextColor() {
|
|
703
|
-
return brushToString(this.i.
|
|
703
|
+
return brushToString(this.i.h7);
|
|
704
704
|
}
|
|
705
705
|
set outlinedSelectedItemTextColor(v) {
|
|
706
|
-
this.i.
|
|
707
|
-
this._a("outlinedSelectedItemTextColor", brushToString(this.i.
|
|
706
|
+
this.i.h7 = stringToBrush(v);
|
|
707
|
+
this._a("outlinedSelectedItemTextColor", brushToString(this.i.h7));
|
|
708
708
|
}
|
|
709
709
|
/**
|
|
710
710
|
* Gets or sets the color to use the hovered background of the buttons in the group that are selected when type is outlined.
|
|
711
711
|
*/
|
|
712
712
|
get outlinedSelectedItemHoverBackgroundColor() {
|
|
713
|
-
return brushToString(this.i.
|
|
713
|
+
return brushToString(this.i.h5);
|
|
714
714
|
}
|
|
715
715
|
set outlinedSelectedItemHoverBackgroundColor(v) {
|
|
716
|
-
this.i.
|
|
717
|
-
this._a("outlinedSelectedItemHoverBackgroundColor", brushToString(this.i.
|
|
716
|
+
this.i.h5 = stringToBrush(v);
|
|
717
|
+
this._a("outlinedSelectedItemHoverBackgroundColor", brushToString(this.i.h5));
|
|
718
718
|
}
|
|
719
719
|
/**
|
|
720
720
|
* Gets or sets the color to use the hovered text of the buttons in the group that are selected when type is outlined.
|
|
721
721
|
*/
|
|
722
722
|
get outlinedSelectedItemHoverTextColor() {
|
|
723
|
-
return brushToString(this.i.
|
|
723
|
+
return brushToString(this.i.h6);
|
|
724
724
|
}
|
|
725
725
|
set outlinedSelectedItemHoverTextColor(v) {
|
|
726
|
-
this.i.
|
|
727
|
-
this._a("outlinedSelectedItemHoverTextColor", brushToString(this.i.
|
|
726
|
+
this.i.h6 = stringToBrush(v);
|
|
727
|
+
this._a("outlinedSelectedItemHoverTextColor", brushToString(this.i.h6));
|
|
728
728
|
}
|
|
729
729
|
/**
|
|
730
730
|
* Gets or sets the corner radius to use for the appropriate corners for the flat type item buttons.
|
|
731
731
|
*/
|
|
732
732
|
get flatItemCornerRadius() {
|
|
733
|
-
return this.i.
|
|
733
|
+
return this.i.a0;
|
|
734
734
|
}
|
|
735
735
|
set flatItemCornerRadius(v) {
|
|
736
|
-
this.i.
|
|
737
|
-
this._a("flatItemCornerRadius", this.i.
|
|
736
|
+
this.i.a0 = +v;
|
|
737
|
+
this._a("flatItemCornerRadius", this.i.a0);
|
|
738
738
|
}
|
|
739
739
|
/**
|
|
740
740
|
* Gets or sets the color to use the background of the buttons in the group when type is flat.
|
|
741
741
|
*/
|
|
742
742
|
get flatItemBackgroundColor() {
|
|
743
|
-
return brushToString(this.i.
|
|
743
|
+
return brushToString(this.i.hc);
|
|
744
744
|
}
|
|
745
745
|
set flatItemBackgroundColor(v) {
|
|
746
|
-
this.i.
|
|
747
|
-
this._a("flatItemBackgroundColor", brushToString(this.i.
|
|
746
|
+
this.i.hc = stringToBrush(v);
|
|
747
|
+
this._a("flatItemBackgroundColor", brushToString(this.i.hc));
|
|
748
748
|
}
|
|
749
749
|
/**
|
|
750
750
|
* Gets or sets the disabled color to use the background of the buttons in the group when type is flat.
|
|
751
751
|
*/
|
|
752
752
|
get flatItemDisabledBackgroundColor() {
|
|
753
|
-
return brushToString(this.i.
|
|
753
|
+
return brushToString(this.i.he);
|
|
754
754
|
}
|
|
755
755
|
set flatItemDisabledBackgroundColor(v) {
|
|
756
|
-
this.i.
|
|
757
|
-
this._a("flatItemDisabledBackgroundColor", brushToString(this.i.
|
|
756
|
+
this.i.he = stringToBrush(v);
|
|
757
|
+
this._a("flatItemDisabledBackgroundColor", brushToString(this.i.he));
|
|
758
758
|
}
|
|
759
759
|
/**
|
|
760
760
|
* Gets or sets the color to use the text of the buttons in the group when type is flat.
|
|
761
761
|
*/
|
|
762
762
|
get flatItemTextColor() {
|
|
763
|
-
return brushToString(this.i.
|
|
763
|
+
return brushToString(this.i.hj);
|
|
764
764
|
}
|
|
765
765
|
set flatItemTextColor(v) {
|
|
766
|
-
this.i.
|
|
767
|
-
this._a("flatItemTextColor", brushToString(this.i.
|
|
766
|
+
this.i.hj = stringToBrush(v);
|
|
767
|
+
this._a("flatItemTextColor", brushToString(this.i.hj));
|
|
768
768
|
}
|
|
769
769
|
/**
|
|
770
770
|
* Gets or sets the disabled color to use the text of the buttons in the group when type is flat.
|
|
771
771
|
*/
|
|
772
772
|
get flatItemDisabledTextColor() {
|
|
773
|
-
return brushToString(this.i.
|
|
773
|
+
return brushToString(this.i.hg);
|
|
774
774
|
}
|
|
775
775
|
set flatItemDisabledTextColor(v) {
|
|
776
|
-
this.i.
|
|
777
|
-
this._a("flatItemDisabledTextColor", brushToString(this.i.
|
|
776
|
+
this.i.hg = stringToBrush(v);
|
|
777
|
+
this._a("flatItemDisabledTextColor", brushToString(this.i.hg));
|
|
778
778
|
}
|
|
779
779
|
/**
|
|
780
780
|
* Gets or sets the color to use the hovered background of the buttons in the group when type is flat.
|
|
781
781
|
*/
|
|
782
782
|
get flatItemHoverBackgroundColor() {
|
|
783
|
-
return brushToString(this.i.
|
|
783
|
+
return brushToString(this.i.hh);
|
|
784
784
|
}
|
|
785
785
|
set flatItemHoverBackgroundColor(v) {
|
|
786
|
-
this.i.
|
|
787
|
-
this._a("flatItemHoverBackgroundColor", brushToString(this.i.
|
|
786
|
+
this.i.hh = stringToBrush(v);
|
|
787
|
+
this._a("flatItemHoverBackgroundColor", brushToString(this.i.hh));
|
|
788
788
|
}
|
|
789
789
|
/**
|
|
790
790
|
* Gets or sets the color to use the border of the buttons in the group when type is flat.
|
|
791
791
|
*/
|
|
792
792
|
get flatItemBorderColor() {
|
|
793
|
-
return brushToString(this.i.
|
|
793
|
+
return brushToString(this.i.hd);
|
|
794
794
|
}
|
|
795
795
|
set flatItemBorderColor(v) {
|
|
796
|
-
this.i.
|
|
797
|
-
this._a("flatItemBorderColor", brushToString(this.i.
|
|
796
|
+
this.i.hd = stringToBrush(v);
|
|
797
|
+
this._a("flatItemBorderColor", brushToString(this.i.hd));
|
|
798
798
|
}
|
|
799
799
|
/**
|
|
800
800
|
* Gets or sets the disabled color to use the border of the buttons in the group when type is flat.
|
|
801
801
|
*/
|
|
802
802
|
get flatItemDisabledBorderColor() {
|
|
803
|
-
return brushToString(this.i.
|
|
803
|
+
return brushToString(this.i.hf);
|
|
804
804
|
}
|
|
805
805
|
set flatItemDisabledBorderColor(v) {
|
|
806
|
-
this.i.
|
|
807
|
-
this._a("flatItemDisabledBorderColor", brushToString(this.i.
|
|
806
|
+
this.i.hf = stringToBrush(v);
|
|
807
|
+
this._a("flatItemDisabledBorderColor", brushToString(this.i.hf));
|
|
808
808
|
}
|
|
809
809
|
/**
|
|
810
810
|
* Gets or sets the border width to use for the buttons in the group when type is flat.
|
|
811
811
|
*/
|
|
812
812
|
get flatItemBorderWidth() {
|
|
813
|
-
return this.i.
|
|
813
|
+
return this.i.az;
|
|
814
814
|
}
|
|
815
815
|
set flatItemBorderWidth(v) {
|
|
816
|
-
this.i.
|
|
817
|
-
this._a("flatItemBorderWidth", this.i.
|
|
816
|
+
this.i.az = +v;
|
|
817
|
+
this._a("flatItemBorderWidth", this.i.az);
|
|
818
818
|
}
|
|
819
819
|
/**
|
|
820
820
|
* Gets or sets the color to use the hovered text of the buttons in the group when type is flat.
|
|
821
821
|
*/
|
|
822
822
|
get flatItemHoverTextColor() {
|
|
823
|
-
return brushToString(this.i.
|
|
823
|
+
return brushToString(this.i.hi);
|
|
824
824
|
}
|
|
825
825
|
set flatItemHoverTextColor(v) {
|
|
826
|
-
this.i.
|
|
827
|
-
this._a("flatItemHoverTextColor", brushToString(this.i.
|
|
826
|
+
this.i.hi = stringToBrush(v);
|
|
827
|
+
this._a("flatItemHoverTextColor", brushToString(this.i.hi));
|
|
828
828
|
}
|
|
829
829
|
/**
|
|
830
830
|
* Gets or sets the color to use the background of the buttons in the group that are selected when type is flat.
|
|
831
831
|
*/
|
|
832
832
|
get flatSelectedItemBackgroundColor() {
|
|
833
|
-
return brushToString(this.i.
|
|
833
|
+
return brushToString(this.i.hk);
|
|
834
834
|
}
|
|
835
835
|
set flatSelectedItemBackgroundColor(v) {
|
|
836
|
-
this.i.
|
|
837
|
-
this._a("flatSelectedItemBackgroundColor", brushToString(this.i.
|
|
836
|
+
this.i.hk = stringToBrush(v);
|
|
837
|
+
this._a("flatSelectedItemBackgroundColor", brushToString(this.i.hk));
|
|
838
838
|
}
|
|
839
839
|
/**
|
|
840
840
|
* Gets or sets the color to use the text of the buttons in the group that are selected when type is flat.
|
|
841
841
|
*/
|
|
842
842
|
get flatSelectedItemTextColor() {
|
|
843
|
-
return brushToString(this.i.
|
|
843
|
+
return brushToString(this.i.hn);
|
|
844
844
|
}
|
|
845
845
|
set flatSelectedItemTextColor(v) {
|
|
846
|
-
this.i.
|
|
847
|
-
this._a("flatSelectedItemTextColor", brushToString(this.i.
|
|
846
|
+
this.i.hn = stringToBrush(v);
|
|
847
|
+
this._a("flatSelectedItemTextColor", brushToString(this.i.hn));
|
|
848
848
|
}
|
|
849
849
|
/**
|
|
850
850
|
* Gets or sets the color to use the hovered background of the buttons in the group that are selected when type is flat.
|
|
851
851
|
*/
|
|
852
852
|
get flatSelectedItemHoverBackgroundColor() {
|
|
853
|
-
return brushToString(this.i.
|
|
853
|
+
return brushToString(this.i.hl);
|
|
854
854
|
}
|
|
855
855
|
set flatSelectedItemHoverBackgroundColor(v) {
|
|
856
|
-
this.i.
|
|
857
|
-
this._a("flatSelectedItemHoverBackgroundColor", brushToString(this.i.
|
|
856
|
+
this.i.hl = stringToBrush(v);
|
|
857
|
+
this._a("flatSelectedItemHoverBackgroundColor", brushToString(this.i.hl));
|
|
858
858
|
}
|
|
859
859
|
/**
|
|
860
860
|
* Gets or sets the color to use the hovered text of the buttons in the group that are selected when type is flat.
|
|
861
861
|
*/
|
|
862
862
|
get flatSelectedItemHoverTextColor() {
|
|
863
|
-
return brushToString(this.i.
|
|
863
|
+
return brushToString(this.i.hm);
|
|
864
864
|
}
|
|
865
865
|
set flatSelectedItemHoverTextColor(v) {
|
|
866
|
-
this.i.
|
|
867
|
-
this._a("flatSelectedItemHoverTextColor", brushToString(this.i.
|
|
866
|
+
this.i.hm = stringToBrush(v);
|
|
867
|
+
this._a("flatSelectedItemHoverTextColor", brushToString(this.i.hm));
|
|
868
868
|
}
|
|
869
869
|
/**
|
|
870
870
|
* Gets or sets the oreientation to use the button group when type is outlined.
|
|
@@ -880,10 +880,10 @@ let IgcXButtonGroupComponent = /*@__PURE__*/ (() => {
|
|
|
880
880
|
* Gets or sets the id to use for the button group.
|
|
881
881
|
*/
|
|
882
882
|
get id() {
|
|
883
|
-
return this.i.
|
|
883
|
+
return this.i.b6;
|
|
884
884
|
}
|
|
885
885
|
set id(v) {
|
|
886
|
-
this.i.
|
|
886
|
+
this.i.b6 = v;
|
|
887
887
|
}
|
|
888
888
|
/**
|
|
889
889
|
* Gets or sets whether the checkbox is disabled.
|
|
@@ -899,11 +899,11 @@ let IgcXButtonGroupComponent = /*@__PURE__*/ (() => {
|
|
|
899
899
|
* Gets or sets whether the group supports multi-select.
|
|
900
900
|
*/
|
|
901
901
|
get isMultiSelect() {
|
|
902
|
-
return this.i.
|
|
902
|
+
return this.i.aa;
|
|
903
903
|
}
|
|
904
904
|
set isMultiSelect(v) {
|
|
905
|
-
this.i.
|
|
906
|
-
this._a("isMultiSelect", this.i.
|
|
905
|
+
this.i.aa = ensureBool(v);
|
|
906
|
+
this._a("isMultiSelect", this.i.aa);
|
|
907
907
|
}
|
|
908
908
|
findByName(name) {
|
|
909
909
|
if (this.findEphemera) {
|
|
@@ -980,7 +980,7 @@ let IgcXButtonGroupComponent = /*@__PURE__*/ (() => {
|
|
|
980
980
|
|
|
981
981
|
*/
|
|
982
982
|
exportVisualModel() {
|
|
983
|
-
let iv = this.i.
|
|
983
|
+
let iv = this.i.a6();
|
|
984
984
|
return (iv);
|
|
985
985
|
}
|
|
986
986
|
/**
|
|
@@ -988,7 +988,7 @@ let IgcXButtonGroupComponent = /*@__PURE__*/ (() => {
|
|
|
988
988
|
|
|
989
989
|
*/
|
|
990
990
|
exportSerializedVisualModel() {
|
|
991
|
-
let iv = this.i.
|
|
991
|
+
let iv = this.i.br();
|
|
992
992
|
return (iv);
|
|
993
993
|
}
|
|
994
994
|
get selectionChanged() {
|