igniteui-webcomponents-layouts 7.1.0-beta.2 → 7.1.0-beta.4
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-layouts.umd.js +5588 -4983
- package/bundles/igniteui-webcomponents-layouts.umd.min.js +1 -1
- package/esm2015/lib/NativeUILayoutFactory_combined.js +4759 -4439
- package/esm2015/lib/PropertyEditorPanelView_combined.js +7 -7
- package/esm2015/lib/igc-combo-editor-component.js +160 -32
- package/esm2015/lib/igc-tool-action-button-component.js +6 -6
- package/esm2015/lib/igc-tool-action-button-pair-component.js +103 -103
- package/esm2015/lib/igc-tool-action-checkbox-component.js +29 -29
- package/esm2015/lib/igc-tool-action-checkbox-group-component.js +10 -10
- package/esm2015/lib/igc-tool-action-checkbox-list-component.js +40 -40
- package/esm2015/lib/igc-tool-action-color-editor-component.js +3 -3
- package/esm2015/lib/igc-tool-action-combo-component.js +8 -8
- package/esm2015/lib/igc-tool-action-component.js +61 -61
- package/esm2015/lib/igc-tool-action-field-selector-component.js +45 -45
- package/esm2015/lib/igc-tool-action-group-header-component.js +6 -6
- package/esm2015/lib/igc-tool-action-icon-button-component.js +31 -31
- package/esm2015/lib/igc-tool-action-icon-menu-component.js +9 -9
- package/esm2015/lib/igc-tool-action-number-input-component.js +3 -3
- package/esm2015/lib/igc-tool-action-radio-component.js +47 -34
- package/esm2015/lib/igc-tool-action-radio-group-component.js +10 -10
- package/esm2015/lib/igc-tool-action-separator-component.js +6 -6
- package/esm2015/lib/igc-tool-action-sub-panel-component.js +3 -3
- package/esm2015/lib/igc-tool-action-text-input-component.js +2 -2
- package/esm2015/lib/igc-tool-panel-component.js +283 -253
- package/esm2015/lib/igc-toolbar-component.js +117 -87
- package/esm5/lib/NativeUILayoutFactory_combined.js +4573 -4197
- package/esm5/lib/PropertyEditorPanelView_combined.js +7 -7
- package/esm5/lib/igc-combo-editor-component.js +160 -32
- package/esm5/lib/igc-tool-action-button-component.js +6 -6
- package/esm5/lib/igc-tool-action-button-pair-component.js +103 -103
- package/esm5/lib/igc-tool-action-checkbox-component.js +29 -29
- package/esm5/lib/igc-tool-action-checkbox-group-component.js +10 -10
- package/esm5/lib/igc-tool-action-checkbox-list-component.js +40 -40
- package/esm5/lib/igc-tool-action-color-editor-component.js +3 -3
- package/esm5/lib/igc-tool-action-combo-component.js +8 -8
- package/esm5/lib/igc-tool-action-component.js +61 -61
- package/esm5/lib/igc-tool-action-field-selector-component.js +45 -45
- package/esm5/lib/igc-tool-action-group-header-component.js +6 -6
- package/esm5/lib/igc-tool-action-icon-button-component.js +31 -31
- package/esm5/lib/igc-tool-action-icon-menu-component.js +9 -9
- package/esm5/lib/igc-tool-action-number-input-component.js +3 -3
- package/esm5/lib/igc-tool-action-radio-component.js +51 -34
- package/esm5/lib/igc-tool-action-radio-group-component.js +10 -10
- package/esm5/lib/igc-tool-action-separator-component.js +6 -6
- package/esm5/lib/igc-tool-action-sub-panel-component.js +3 -3
- package/esm5/lib/igc-tool-action-text-input-component.js +2 -2
- package/esm5/lib/igc-tool-panel-component.js +295 -253
- package/esm5/lib/igc-toolbar-component.js +129 -87
- package/fesm2015/igniteui-webcomponents-layouts.js +5752 -5231
- package/fesm5/igniteui-webcomponents-layouts.js +5588 -4983
- package/lib/NativeUILayoutFactory_combined.d.ts +1040 -997
- package/lib/igc-tool-action-radio-component.d.ts +8 -0
- package/lib/igc-tool-panel-component.d.ts +15 -0
- package/lib/igc-toolbar-component.d.ts +15 -0
- package/package.json +3 -3
|
@@ -235,21 +235,21 @@ let IgcToolPanelComponent = /*@__PURE__*/ (() => {
|
|
|
235
235
|
* Gets or sets if the tool actions should display their submenus on mouse hover.
|
|
236
236
|
*/
|
|
237
237
|
get showOnHover() {
|
|
238
|
-
return this.i.
|
|
238
|
+
return this.i.a7;
|
|
239
239
|
}
|
|
240
240
|
set showOnHover(v) {
|
|
241
|
-
this.i.
|
|
242
|
-
this._a("showOnHover", this.i.
|
|
241
|
+
this.i.a7 = ensureBool(v);
|
|
242
|
+
this._a("showOnHover", this.i.a7);
|
|
243
243
|
}
|
|
244
244
|
/**
|
|
245
245
|
* Gets or sets if the tool action icon buttons should display their tooltips on mouse hover.
|
|
246
246
|
*/
|
|
247
247
|
get showTooltipOnHover() {
|
|
248
|
-
return this.i.
|
|
248
|
+
return this.i.a8;
|
|
249
249
|
}
|
|
250
250
|
set showTooltipOnHover(v) {
|
|
251
|
-
this.i.
|
|
252
|
-
this._a("showTooltipOnHover", this.i.
|
|
251
|
+
this.i.a8 = ensureBool(v);
|
|
252
|
+
this._a("showTooltipOnHover", this.i.a8);
|
|
253
253
|
}
|
|
254
254
|
/**
|
|
255
255
|
* Gets or sets the amount of time to wait when clicking on the icon menu button while the dropdown is opening. If a click was
|
|
@@ -257,21 +257,21 @@ let IgcToolPanelComponent = /*@__PURE__*/ (() => {
|
|
|
257
257
|
* always keep the dropdown open during a hover open and will require an extra click to close.
|
|
258
258
|
*/
|
|
259
259
|
get dropdownClickBuffer() {
|
|
260
|
-
return this.i.
|
|
260
|
+
return this.i.c2;
|
|
261
261
|
}
|
|
262
262
|
set dropdownClickBuffer(v) {
|
|
263
|
-
this.i.
|
|
264
|
-
this._a("dropdownClickBuffer", this.i.
|
|
263
|
+
this.i.c2 = +v;
|
|
264
|
+
this._a("dropdownClickBuffer", this.i.c2);
|
|
265
265
|
}
|
|
266
266
|
/**
|
|
267
267
|
* Prevents clicks on the tool actions from bubbling.
|
|
268
268
|
*/
|
|
269
269
|
get stopPropagation() {
|
|
270
|
-
return this.i.
|
|
270
|
+
return this.i.a9;
|
|
271
271
|
}
|
|
272
272
|
set stopPropagation(v) {
|
|
273
|
-
this.i.
|
|
274
|
-
this._a("stopPropagation", this.i.
|
|
273
|
+
this.i.a9 = ensureBool(v);
|
|
274
|
+
this._a("stopPropagation", this.i.a9);
|
|
275
275
|
}
|
|
276
276
|
/**
|
|
277
277
|
* Gets or sets the text style for the panel.
|
|
@@ -352,441 +352,441 @@ let IgcToolPanelComponent = /*@__PURE__*/ (() => {
|
|
|
352
352
|
* Gets or sets the color to use for the background of the component.
|
|
353
353
|
*/
|
|
354
354
|
get backgroundColor() {
|
|
355
|
-
return brushToString(this.i.
|
|
355
|
+
return brushToString(this.i.jv);
|
|
356
356
|
}
|
|
357
357
|
set backgroundColor(v) {
|
|
358
|
-
this.i.
|
|
359
|
-
this._a("backgroundColor", brushToString(this.i.
|
|
358
|
+
this.i.jv = stringToBrush(v);
|
|
359
|
+
this._a("backgroundColor", brushToString(this.i.jv));
|
|
360
360
|
}
|
|
361
361
|
get actualBackgroundColor() {
|
|
362
|
-
return brushToString(this.i.
|
|
362
|
+
return brushToString(this.i.ja);
|
|
363
363
|
}
|
|
364
364
|
set actualBackgroundColor(v) {
|
|
365
|
-
this.i.
|
|
366
|
-
this._a("actualBackgroundColor", brushToString(this.i.
|
|
365
|
+
this.i.ja = stringToBrush(v);
|
|
366
|
+
this._a("actualBackgroundColor", brushToString(this.i.ja));
|
|
367
367
|
}
|
|
368
368
|
/**
|
|
369
369
|
* Gets or sets the background color for submenus.
|
|
370
370
|
*/
|
|
371
371
|
get submenuBackgroundColor() {
|
|
372
|
-
return brushToString(this.i.
|
|
372
|
+
return brushToString(this.i.ke);
|
|
373
373
|
}
|
|
374
374
|
set submenuBackgroundColor(v) {
|
|
375
|
-
this.i.
|
|
376
|
-
this._a("submenuBackgroundColor", brushToString(this.i.
|
|
375
|
+
this.i.ke = stringToBrush(v);
|
|
376
|
+
this._a("submenuBackgroundColor", brushToString(this.i.ke));
|
|
377
377
|
}
|
|
378
378
|
get actualSubmenuBackgroundColor() {
|
|
379
|
-
return brushToString(this.i.
|
|
379
|
+
return brushToString(this.i.jo);
|
|
380
380
|
}
|
|
381
381
|
set actualSubmenuBackgroundColor(v) {
|
|
382
|
-
this.i.
|
|
383
|
-
this._a("actualSubmenuBackgroundColor", brushToString(this.i.
|
|
382
|
+
this.i.jo = stringToBrush(v);
|
|
383
|
+
this._a("actualSubmenuBackgroundColor", brushToString(this.i.jo));
|
|
384
384
|
}
|
|
385
385
|
/**
|
|
386
386
|
* Gets or sets the group header background color.
|
|
387
387
|
*/
|
|
388
388
|
get groupHeaderBackgroundColor() {
|
|
389
|
-
return brushToString(this.i.
|
|
389
|
+
return brushToString(this.i.j4);
|
|
390
390
|
}
|
|
391
391
|
set groupHeaderBackgroundColor(v) {
|
|
392
|
-
this.i.
|
|
393
|
-
this._a("groupHeaderBackgroundColor", brushToString(this.i.
|
|
392
|
+
this.i.j4 = stringToBrush(v);
|
|
393
|
+
this._a("groupHeaderBackgroundColor", brushToString(this.i.j4));
|
|
394
394
|
}
|
|
395
395
|
get actualGroupHeaderBackgroundColor() {
|
|
396
|
-
return brushToString(this.i.
|
|
396
|
+
return brushToString(this.i.je);
|
|
397
397
|
}
|
|
398
398
|
set actualGroupHeaderBackgroundColor(v) {
|
|
399
|
-
this.i.
|
|
400
|
-
this._a("actualGroupHeaderBackgroundColor", brushToString(this.i.
|
|
399
|
+
this.i.je = stringToBrush(v);
|
|
400
|
+
this._a("actualGroupHeaderBackgroundColor", brushToString(this.i.je));
|
|
401
401
|
}
|
|
402
402
|
/**
|
|
403
403
|
* Gets or sets the separator background color.
|
|
404
404
|
*/
|
|
405
405
|
get separatorBackgroundColor() {
|
|
406
|
-
return brushToString(this.i.
|
|
406
|
+
return brushToString(this.i.kd);
|
|
407
407
|
}
|
|
408
408
|
set separatorBackgroundColor(v) {
|
|
409
|
-
this.i.
|
|
410
|
-
this._a("separatorBackgroundColor", brushToString(this.i.
|
|
409
|
+
this.i.kd = stringToBrush(v);
|
|
410
|
+
this._a("separatorBackgroundColor", brushToString(this.i.kd));
|
|
411
411
|
}
|
|
412
412
|
get actualSeparatorBackgroundColor() {
|
|
413
|
-
return brushToString(this.i.
|
|
413
|
+
return brushToString(this.i.jn);
|
|
414
414
|
}
|
|
415
415
|
set actualSeparatorBackgroundColor(v) {
|
|
416
|
-
this.i.
|
|
417
|
-
this._a("actualSeparatorBackgroundColor", brushToString(this.i.
|
|
416
|
+
this.i.jn = stringToBrush(v);
|
|
417
|
+
this._a("actualSeparatorBackgroundColor", brushToString(this.i.jn));
|
|
418
418
|
}
|
|
419
419
|
/**
|
|
420
420
|
* Gets or sets the group header separator background color.
|
|
421
421
|
*/
|
|
422
422
|
get groupHeaderSeparatorBackgroundColor() {
|
|
423
|
-
return brushToString(this.i.
|
|
423
|
+
return brushToString(this.i.j5);
|
|
424
424
|
}
|
|
425
425
|
set groupHeaderSeparatorBackgroundColor(v) {
|
|
426
|
-
this.i.
|
|
427
|
-
this._a("groupHeaderSeparatorBackgroundColor", brushToString(this.i.
|
|
426
|
+
this.i.j5 = stringToBrush(v);
|
|
427
|
+
this._a("groupHeaderSeparatorBackgroundColor", brushToString(this.i.j5));
|
|
428
428
|
}
|
|
429
429
|
get actualGroupHeaderSeparatorBackgroundColor() {
|
|
430
|
-
return brushToString(this.i.
|
|
430
|
+
return brushToString(this.i.jf);
|
|
431
431
|
}
|
|
432
432
|
set actualGroupHeaderSeparatorBackgroundColor(v) {
|
|
433
|
-
this.i.
|
|
434
|
-
this._a("actualGroupHeaderSeparatorBackgroundColor", brushToString(this.i.
|
|
433
|
+
this.i.jf = stringToBrush(v);
|
|
434
|
+
this._a("actualGroupHeaderSeparatorBackgroundColor", brushToString(this.i.jf));
|
|
435
435
|
}
|
|
436
436
|
/**
|
|
437
437
|
* Gets or sets the hover background color.
|
|
438
438
|
*/
|
|
439
439
|
get hoverBackgroundColor() {
|
|
440
|
-
return brushToString(this.i.
|
|
440
|
+
return brushToString(this.i.j9);
|
|
441
441
|
}
|
|
442
442
|
set hoverBackgroundColor(v) {
|
|
443
|
-
this.i.
|
|
444
|
-
this._a("hoverBackgroundColor", brushToString(this.i.
|
|
443
|
+
this.i.j9 = stringToBrush(v);
|
|
444
|
+
this._a("hoverBackgroundColor", brushToString(this.i.j9));
|
|
445
445
|
}
|
|
446
446
|
get actualHoverBackgroundColor() {
|
|
447
|
-
return brushToString(this.i.
|
|
447
|
+
return brushToString(this.i.jj);
|
|
448
448
|
}
|
|
449
449
|
set actualHoverBackgroundColor(v) {
|
|
450
|
-
this.i.
|
|
451
|
-
this._a("actualHoverBackgroundColor", brushToString(this.i.
|
|
450
|
+
this.i.jj = stringToBrush(v);
|
|
451
|
+
this._a("actualHoverBackgroundColor", brushToString(this.i.jj));
|
|
452
452
|
}
|
|
453
453
|
/**
|
|
454
454
|
* Gets or sets the color to use for the text of the component.
|
|
455
455
|
*/
|
|
456
456
|
get textColor() {
|
|
457
|
-
return brushToString(this.i.
|
|
457
|
+
return brushToString(this.i.kg);
|
|
458
458
|
}
|
|
459
459
|
set textColor(v) {
|
|
460
|
-
this.i.
|
|
461
|
-
this._a("textColor", brushToString(this.i.
|
|
460
|
+
this.i.kg = stringToBrush(v);
|
|
461
|
+
this._a("textColor", brushToString(this.i.kg));
|
|
462
462
|
}
|
|
463
463
|
get actualTextColor() {
|
|
464
|
-
return brushToString(this.i.
|
|
464
|
+
return brushToString(this.i.jq);
|
|
465
465
|
}
|
|
466
466
|
set actualTextColor(v) {
|
|
467
|
-
this.i.
|
|
468
|
-
this._a("actualTextColor", brushToString(this.i.
|
|
467
|
+
this.i.jq = stringToBrush(v);
|
|
468
|
+
this._a("actualTextColor", brushToString(this.i.jq));
|
|
469
469
|
}
|
|
470
470
|
get actualSubtitleTextColor() {
|
|
471
|
-
return brushToString(this.i.
|
|
471
|
+
return brushToString(this.i.jp);
|
|
472
472
|
}
|
|
473
473
|
set actualSubtitleTextColor(v) {
|
|
474
|
-
this.i.
|
|
475
|
-
this._a("actualSubtitleTextColor", brushToString(this.i.
|
|
474
|
+
this.i.jp = stringToBrush(v);
|
|
475
|
+
this._a("actualSubtitleTextColor", brushToString(this.i.jp));
|
|
476
476
|
}
|
|
477
477
|
/**
|
|
478
478
|
* Gets or sets the color to use for the subtitle of the component.
|
|
479
479
|
*/
|
|
480
480
|
get subtitleTextColor() {
|
|
481
|
-
return brushToString(this.i.
|
|
481
|
+
return brushToString(this.i.kf);
|
|
482
482
|
}
|
|
483
483
|
set subtitleTextColor(v) {
|
|
484
|
-
this.i.
|
|
485
|
-
this._a("subtitleTextColor", brushToString(this.i.
|
|
484
|
+
this.i.kf = stringToBrush(v);
|
|
485
|
+
this._a("subtitleTextColor", brushToString(this.i.kf));
|
|
486
486
|
}
|
|
487
487
|
/**
|
|
488
488
|
* Gets or sets the color to use for the text in disabled tool actions.
|
|
489
489
|
*/
|
|
490
490
|
get disabledTextColor() {
|
|
491
|
-
return brushToString(this.i.
|
|
491
|
+
return brushToString(this.i.j1);
|
|
492
492
|
}
|
|
493
493
|
set disabledTextColor(v) {
|
|
494
|
-
this.i.
|
|
495
|
-
this._a("disabledTextColor", brushToString(this.i.
|
|
494
|
+
this.i.j1 = stringToBrush(v);
|
|
495
|
+
this._a("disabledTextColor", brushToString(this.i.j1));
|
|
496
496
|
}
|
|
497
497
|
get actualDisabledTextColor() {
|
|
498
|
-
return brushToString(this.i.
|
|
498
|
+
return brushToString(this.i.jd);
|
|
499
499
|
}
|
|
500
500
|
set actualDisabledTextColor(v) {
|
|
501
|
-
this.i.
|
|
502
|
-
this._a("actualDisabledTextColor", brushToString(this.i.
|
|
501
|
+
this.i.jd = stringToBrush(v);
|
|
502
|
+
this._a("actualDisabledTextColor", brushToString(this.i.jd));
|
|
503
503
|
}
|
|
504
504
|
/**
|
|
505
505
|
* Gets or sets the text color for group header tool actions.
|
|
506
506
|
*/
|
|
507
507
|
get groupHeaderTextColor() {
|
|
508
|
-
return brushToString(this.i.
|
|
508
|
+
return brushToString(this.i.j7);
|
|
509
509
|
}
|
|
510
510
|
set groupHeaderTextColor(v) {
|
|
511
|
-
this.i.
|
|
512
|
-
this._a("groupHeaderTextColor", brushToString(this.i.
|
|
511
|
+
this.i.j7 = stringToBrush(v);
|
|
512
|
+
this._a("groupHeaderTextColor", brushToString(this.i.j7));
|
|
513
513
|
}
|
|
514
514
|
get actualGroupHeaderTextColor() {
|
|
515
|
-
return brushToString(this.i.
|
|
515
|
+
return brushToString(this.i.jh);
|
|
516
516
|
}
|
|
517
517
|
set actualGroupHeaderTextColor(v) {
|
|
518
|
-
this.i.
|
|
519
|
-
this._a("actualGroupHeaderTextColor", brushToString(this.i.
|
|
518
|
+
this.i.jh = stringToBrush(v);
|
|
519
|
+
this._a("actualGroupHeaderTextColor", brushToString(this.i.jh));
|
|
520
520
|
}
|
|
521
521
|
/**
|
|
522
522
|
* Gets or sets the text color for group header subtitle.
|
|
523
523
|
*/
|
|
524
524
|
get groupHeaderSubtitleTextColor() {
|
|
525
|
-
return brushToString(this.i.
|
|
525
|
+
return brushToString(this.i.j6);
|
|
526
526
|
}
|
|
527
527
|
set groupHeaderSubtitleTextColor(v) {
|
|
528
|
-
this.i.
|
|
529
|
-
this._a("groupHeaderSubtitleTextColor", brushToString(this.i.
|
|
528
|
+
this.i.j6 = stringToBrush(v);
|
|
529
|
+
this._a("groupHeaderSubtitleTextColor", brushToString(this.i.j6));
|
|
530
530
|
}
|
|
531
531
|
get actualGroupHeaderSubtitleTextColor() {
|
|
532
|
-
return brushToString(this.i.
|
|
532
|
+
return brushToString(this.i.jg);
|
|
533
533
|
}
|
|
534
534
|
set actualGroupHeaderSubtitleTextColor(v) {
|
|
535
|
-
this.i.
|
|
536
|
-
this._a("actualGroupHeaderSubtitleTextColor", brushToString(this.i.
|
|
535
|
+
this.i.jg = stringToBrush(v);
|
|
536
|
+
this._a("actualGroupHeaderSubtitleTextColor", brushToString(this.i.jg));
|
|
537
537
|
}
|
|
538
538
|
/**
|
|
539
539
|
* Gets or sets the tooltip text color.
|
|
540
540
|
*/
|
|
541
541
|
get toolTipTextColor() {
|
|
542
|
-
return brushToString(this.i.
|
|
542
|
+
return brushToString(this.i.ki);
|
|
543
543
|
}
|
|
544
544
|
set toolTipTextColor(v) {
|
|
545
|
-
this.i.
|
|
546
|
-
this._a("toolTipTextColor", brushToString(this.i.
|
|
545
|
+
this.i.ki = stringToBrush(v);
|
|
546
|
+
this._a("toolTipTextColor", brushToString(this.i.ki));
|
|
547
547
|
}
|
|
548
548
|
get actualToolTipTextColor() {
|
|
549
|
-
return brushToString(this.i.
|
|
549
|
+
return brushToString(this.i.js);
|
|
550
550
|
}
|
|
551
551
|
set actualToolTipTextColor(v) {
|
|
552
|
-
this.i.
|
|
553
|
-
this._a("actualToolTipTextColor", brushToString(this.i.
|
|
552
|
+
this.i.js = stringToBrush(v);
|
|
553
|
+
this._a("actualToolTipTextColor", brushToString(this.i.js));
|
|
554
554
|
}
|
|
555
555
|
/**
|
|
556
556
|
* Gets or sets the tooltip background color.
|
|
557
557
|
*/
|
|
558
558
|
get toolTipBackgroundColor() {
|
|
559
|
-
return brushToString(this.i.
|
|
559
|
+
return brushToString(this.i.kh);
|
|
560
560
|
}
|
|
561
561
|
set toolTipBackgroundColor(v) {
|
|
562
|
-
this.i.
|
|
563
|
-
this._a("toolTipBackgroundColor", brushToString(this.i.
|
|
562
|
+
this.i.kh = stringToBrush(v);
|
|
563
|
+
this._a("toolTipBackgroundColor", brushToString(this.i.kh));
|
|
564
564
|
}
|
|
565
565
|
/**
|
|
566
566
|
* Gets the actual tooltip background color.
|
|
567
567
|
*/
|
|
568
568
|
get actualToolTipBackgroundColor() {
|
|
569
|
-
return brushToString(this.i.
|
|
569
|
+
return brushToString(this.i.jr);
|
|
570
570
|
}
|
|
571
571
|
set actualToolTipBackgroundColor(v) {
|
|
572
|
-
this.i.
|
|
573
|
-
this._a("actualToolTipBackgroundColor", brushToString(this.i.
|
|
572
|
+
this.i.jr = stringToBrush(v);
|
|
573
|
+
this._a("actualToolTipBackgroundColor", brushToString(this.i.jr));
|
|
574
574
|
}
|
|
575
575
|
/**
|
|
576
576
|
* Gets or sets the tooltip corner radius.
|
|
577
577
|
*/
|
|
578
578
|
get toolTipCornerRadius() {
|
|
579
|
-
return this.i.
|
|
579
|
+
return this.i.cu;
|
|
580
580
|
}
|
|
581
581
|
set toolTipCornerRadius(v) {
|
|
582
|
-
this.i.
|
|
583
|
-
this._a("toolTipCornerRadius", this.i.
|
|
582
|
+
this.i.cu = +v;
|
|
583
|
+
this._a("toolTipCornerRadius", this.i.cu);
|
|
584
584
|
}
|
|
585
585
|
/**
|
|
586
586
|
* Gets the actual tooltip corner radius.
|
|
587
587
|
*/
|
|
588
588
|
get actualToolTipCornerRadius() {
|
|
589
|
-
return this.i.
|
|
589
|
+
return this.i.cf;
|
|
590
590
|
}
|
|
591
591
|
set actualToolTipCornerRadius(v) {
|
|
592
|
-
this.i.
|
|
593
|
-
this._a("actualToolTipCornerRadius", this.i.
|
|
592
|
+
this.i.cf = +v;
|
|
593
|
+
this._a("actualToolTipCornerRadius", this.i.cf);
|
|
594
594
|
}
|
|
595
595
|
/**
|
|
596
596
|
* Gets or sets the shadow elevation for the tooltip.
|
|
597
597
|
*/
|
|
598
598
|
get toolTipElevation() {
|
|
599
|
-
return this.i.
|
|
599
|
+
return this.i.cv;
|
|
600
600
|
}
|
|
601
601
|
set toolTipElevation(v) {
|
|
602
|
-
this.i.
|
|
603
|
-
this._a("toolTipElevation", this.i.
|
|
602
|
+
this.i.cv = +v;
|
|
603
|
+
this._a("toolTipElevation", this.i.cv);
|
|
604
604
|
}
|
|
605
605
|
/**
|
|
606
606
|
* Gets the actual shadow elevation used by the tooltip.
|
|
607
607
|
*/
|
|
608
608
|
get actualToolTipElevation() {
|
|
609
|
-
return this.i.
|
|
609
|
+
return this.i.cg;
|
|
610
610
|
}
|
|
611
611
|
set actualToolTipElevation(v) {
|
|
612
|
-
this.i.
|
|
613
|
-
this._a("actualToolTipElevation", this.i.
|
|
612
|
+
this.i.cg = +v;
|
|
613
|
+
this._a("actualToolTipElevation", this.i.cg);
|
|
614
614
|
}
|
|
615
615
|
/**
|
|
616
616
|
* Gets or sets the fill color of icons in the ToolPanel.
|
|
617
617
|
*/
|
|
618
618
|
get iconFill() {
|
|
619
|
-
return brushToString(this.i.
|
|
619
|
+
return brushToString(this.i.ka);
|
|
620
620
|
}
|
|
621
621
|
set iconFill(v) {
|
|
622
|
-
this.i.
|
|
623
|
-
this._a("iconFill", brushToString(this.i.
|
|
622
|
+
this.i.ka = stringToBrush(v);
|
|
623
|
+
this._a("iconFill", brushToString(this.i.ka));
|
|
624
624
|
}
|
|
625
625
|
/**
|
|
626
626
|
* Gets the actual icon fill color.
|
|
627
627
|
*/
|
|
628
628
|
get actualIconFill() {
|
|
629
|
-
return brushToString(this.i.
|
|
629
|
+
return brushToString(this.i.jk);
|
|
630
630
|
}
|
|
631
631
|
set actualIconFill(v) {
|
|
632
|
-
this.i.
|
|
633
|
-
this._a("actualIconFill", brushToString(this.i.
|
|
632
|
+
this.i.jk = stringToBrush(v);
|
|
633
|
+
this._a("actualIconFill", brushToString(this.i.jk));
|
|
634
634
|
}
|
|
635
635
|
/**
|
|
636
636
|
* Gets or sets the stroke color of icons in the ToolPanel.
|
|
637
637
|
*/
|
|
638
638
|
get iconStroke() {
|
|
639
|
-
return brushToString(this.i.
|
|
639
|
+
return brushToString(this.i.kb);
|
|
640
640
|
}
|
|
641
641
|
set iconStroke(v) {
|
|
642
|
-
this.i.
|
|
643
|
-
this._a("iconStroke", brushToString(this.i.
|
|
642
|
+
this.i.kb = stringToBrush(v);
|
|
643
|
+
this._a("iconStroke", brushToString(this.i.kb));
|
|
644
644
|
}
|
|
645
645
|
/**
|
|
646
646
|
* Gets the actual icon stroke color.
|
|
647
647
|
*/
|
|
648
648
|
get actualIconStroke() {
|
|
649
|
-
return brushToString(this.i.
|
|
649
|
+
return brushToString(this.i.jl);
|
|
650
650
|
}
|
|
651
651
|
set actualIconStroke(v) {
|
|
652
|
-
this.i.
|
|
653
|
-
this._a("actualIconStroke", brushToString(this.i.
|
|
652
|
+
this.i.jl = stringToBrush(v);
|
|
653
|
+
this._a("actualIconStroke", brushToString(this.i.jl));
|
|
654
654
|
}
|
|
655
655
|
/**
|
|
656
656
|
* Gets or sets the left padding for separators in the vertical orientation.
|
|
657
657
|
*/
|
|
658
658
|
get separatorVerticalPaddingLeft() {
|
|
659
|
-
return this.i.
|
|
659
|
+
return this.i.cr;
|
|
660
660
|
}
|
|
661
661
|
set separatorVerticalPaddingLeft(v) {
|
|
662
|
-
this.i.
|
|
663
|
-
this._a("separatorVerticalPaddingLeft", this.i.
|
|
662
|
+
this.i.cr = +v;
|
|
663
|
+
this._a("separatorVerticalPaddingLeft", this.i.cr);
|
|
664
664
|
}
|
|
665
665
|
get actualSeparatorVerticalPaddingLeft() {
|
|
666
|
-
return this.i.
|
|
666
|
+
return this.i.cc;
|
|
667
667
|
}
|
|
668
668
|
set actualSeparatorVerticalPaddingLeft(v) {
|
|
669
|
-
this.i.
|
|
670
|
-
this._a("actualSeparatorVerticalPaddingLeft", this.i.
|
|
669
|
+
this.i.cc = +v;
|
|
670
|
+
this._a("actualSeparatorVerticalPaddingLeft", this.i.cc);
|
|
671
671
|
}
|
|
672
672
|
/**
|
|
673
673
|
* Gets or sets the right padding for separators in the vertical orientation.
|
|
674
674
|
*/
|
|
675
675
|
get separatorVerticalPaddingRight() {
|
|
676
|
-
return this.i.
|
|
676
|
+
return this.i.cs;
|
|
677
677
|
}
|
|
678
678
|
set separatorVerticalPaddingRight(v) {
|
|
679
|
-
this.i.
|
|
680
|
-
this._a("separatorVerticalPaddingRight", this.i.
|
|
679
|
+
this.i.cs = +v;
|
|
680
|
+
this._a("separatorVerticalPaddingRight", this.i.cs);
|
|
681
681
|
}
|
|
682
682
|
get actualSeparatorVerticalPaddingRight() {
|
|
683
|
-
return this.i.
|
|
683
|
+
return this.i.cd;
|
|
684
684
|
}
|
|
685
685
|
set actualSeparatorVerticalPaddingRight(v) {
|
|
686
|
-
this.i.
|
|
687
|
-
this._a("actualSeparatorVerticalPaddingRight", this.i.
|
|
686
|
+
this.i.cd = +v;
|
|
687
|
+
this._a("actualSeparatorVerticalPaddingRight", this.i.cd);
|
|
688
688
|
}
|
|
689
689
|
/**
|
|
690
690
|
* Gets or sets the top padding for separators in the vertical orientation.
|
|
691
691
|
*/
|
|
692
692
|
get separatorVerticalPaddingTop() {
|
|
693
|
-
return this.i.
|
|
693
|
+
return this.i.ct;
|
|
694
694
|
}
|
|
695
695
|
set separatorVerticalPaddingTop(v) {
|
|
696
|
-
this.i.
|
|
697
|
-
this._a("separatorVerticalPaddingTop", this.i.
|
|
696
|
+
this.i.ct = +v;
|
|
697
|
+
this._a("separatorVerticalPaddingTop", this.i.ct);
|
|
698
698
|
}
|
|
699
699
|
get actualSeparatorVerticalPaddingTop() {
|
|
700
|
-
return this.i.
|
|
700
|
+
return this.i.ce;
|
|
701
701
|
}
|
|
702
702
|
set actualSeparatorVerticalPaddingTop(v) {
|
|
703
|
-
this.i.
|
|
704
|
-
this._a("actualSeparatorVerticalPaddingTop", this.i.
|
|
703
|
+
this.i.ce = +v;
|
|
704
|
+
this._a("actualSeparatorVerticalPaddingTop", this.i.ce);
|
|
705
705
|
}
|
|
706
706
|
/**
|
|
707
707
|
* Gets or sets the bottom padding for separators in the vertical orientation.
|
|
708
708
|
*/
|
|
709
709
|
get separatorVerticalPaddingBottom() {
|
|
710
|
-
return this.i.
|
|
710
|
+
return this.i.cq;
|
|
711
711
|
}
|
|
712
712
|
set separatorVerticalPaddingBottom(v) {
|
|
713
|
-
this.i.
|
|
714
|
-
this._a("separatorVerticalPaddingBottom", this.i.
|
|
713
|
+
this.i.cq = +v;
|
|
714
|
+
this._a("separatorVerticalPaddingBottom", this.i.cq);
|
|
715
715
|
}
|
|
716
716
|
get actualSeparatorVerticalPaddingBottom() {
|
|
717
|
-
return this.i.
|
|
717
|
+
return this.i.cb;
|
|
718
718
|
}
|
|
719
719
|
set actualSeparatorVerticalPaddingBottom(v) {
|
|
720
|
-
this.i.
|
|
721
|
-
this._a("actualSeparatorVerticalPaddingBottom", this.i.
|
|
720
|
+
this.i.cb = +v;
|
|
721
|
+
this._a("actualSeparatorVerticalPaddingBottom", this.i.cb);
|
|
722
722
|
}
|
|
723
723
|
/**
|
|
724
724
|
* Gets or sets the left padding for separators in the horizontal orientation.
|
|
725
725
|
*/
|
|
726
726
|
get separatorHorizontalPaddingLeft() {
|
|
727
|
-
return this.i.
|
|
727
|
+
return this.i.cn;
|
|
728
728
|
}
|
|
729
729
|
set separatorHorizontalPaddingLeft(v) {
|
|
730
|
-
this.i.
|
|
731
|
-
this._a("separatorHorizontalPaddingLeft", this.i.
|
|
730
|
+
this.i.cn = +v;
|
|
731
|
+
this._a("separatorHorizontalPaddingLeft", this.i.cn);
|
|
732
732
|
}
|
|
733
733
|
get actualSeparatorHorizontalPaddingLeft() {
|
|
734
|
-
return this.i.
|
|
734
|
+
return this.i.b8;
|
|
735
735
|
}
|
|
736
736
|
set actualSeparatorHorizontalPaddingLeft(v) {
|
|
737
|
-
this.i.
|
|
738
|
-
this._a("actualSeparatorHorizontalPaddingLeft", this.i.
|
|
737
|
+
this.i.b8 = +v;
|
|
738
|
+
this._a("actualSeparatorHorizontalPaddingLeft", this.i.b8);
|
|
739
739
|
}
|
|
740
740
|
/**
|
|
741
741
|
* Gets or sets the right padding for separators in the horizontal orientation.
|
|
742
742
|
*/
|
|
743
743
|
get separatorHorizontalPaddingRight() {
|
|
744
|
-
return this.i.
|
|
744
|
+
return this.i.co;
|
|
745
745
|
}
|
|
746
746
|
set separatorHorizontalPaddingRight(v) {
|
|
747
|
-
this.i.
|
|
748
|
-
this._a("separatorHorizontalPaddingRight", this.i.
|
|
747
|
+
this.i.co = +v;
|
|
748
|
+
this._a("separatorHorizontalPaddingRight", this.i.co);
|
|
749
749
|
}
|
|
750
750
|
get actualSeparatorHorizontalPaddingRight() {
|
|
751
|
-
return this.i.
|
|
751
|
+
return this.i.b9;
|
|
752
752
|
}
|
|
753
753
|
set actualSeparatorHorizontalPaddingRight(v) {
|
|
754
|
-
this.i.
|
|
755
|
-
this._a("actualSeparatorHorizontalPaddingRight", this.i.
|
|
754
|
+
this.i.b9 = +v;
|
|
755
|
+
this._a("actualSeparatorHorizontalPaddingRight", this.i.b9);
|
|
756
756
|
}
|
|
757
757
|
/**
|
|
758
758
|
* Gets or sets the top padding for separators in the horizontal orientation.
|
|
759
759
|
*/
|
|
760
760
|
get separatorHorizontalPaddingTop() {
|
|
761
|
-
return this.i.
|
|
761
|
+
return this.i.cp;
|
|
762
762
|
}
|
|
763
763
|
set separatorHorizontalPaddingTop(v) {
|
|
764
|
-
this.i.
|
|
765
|
-
this._a("separatorHorizontalPaddingTop", this.i.
|
|
764
|
+
this.i.cp = +v;
|
|
765
|
+
this._a("separatorHorizontalPaddingTop", this.i.cp);
|
|
766
766
|
}
|
|
767
767
|
get actualSeparatorHorizontalPaddingTop() {
|
|
768
|
-
return this.i.
|
|
768
|
+
return this.i.ca;
|
|
769
769
|
}
|
|
770
770
|
set actualSeparatorHorizontalPaddingTop(v) {
|
|
771
|
-
this.i.
|
|
772
|
-
this._a("actualSeparatorHorizontalPaddingTop", this.i.
|
|
771
|
+
this.i.ca = +v;
|
|
772
|
+
this._a("actualSeparatorHorizontalPaddingTop", this.i.ca);
|
|
773
773
|
}
|
|
774
774
|
/**
|
|
775
775
|
* Gets or sets the bottom padding for separators in the horizontal orientation.
|
|
776
776
|
*/
|
|
777
777
|
get separatorHorizontalPaddingBottom() {
|
|
778
|
-
return this.i.
|
|
778
|
+
return this.i.cm;
|
|
779
779
|
}
|
|
780
780
|
set separatorHorizontalPaddingBottom(v) {
|
|
781
|
-
this.i.
|
|
782
|
-
this._a("separatorHorizontalPaddingBottom", this.i.
|
|
781
|
+
this.i.cm = +v;
|
|
782
|
+
this._a("separatorHorizontalPaddingBottom", this.i.cm);
|
|
783
783
|
}
|
|
784
784
|
get actualSeparatorHorizontalPaddingBottom() {
|
|
785
|
-
return this.i.
|
|
785
|
+
return this.i.b7;
|
|
786
786
|
}
|
|
787
787
|
set actualSeparatorHorizontalPaddingBottom(v) {
|
|
788
|
-
this.i.
|
|
789
|
-
this._a("actualSeparatorHorizontalPaddingBottom", this.i.
|
|
788
|
+
this.i.b7 = +v;
|
|
789
|
+
this._a("actualSeparatorHorizontalPaddingBottom", this.i.b7);
|
|
790
790
|
}
|
|
791
791
|
/**
|
|
792
792
|
* Gets or sets the color to use for the background of the component.
|
|
@@ -802,203 +802,203 @@ let IgcToolPanelComponent = /*@__PURE__*/ (() => {
|
|
|
802
802
|
* Gets or sets the row height for the panel.
|
|
803
803
|
*/
|
|
804
804
|
get rowHeight() {
|
|
805
|
-
return this.i.
|
|
805
|
+
return this.i.c6;
|
|
806
806
|
}
|
|
807
807
|
set rowHeight(v) {
|
|
808
|
-
this.i.
|
|
809
|
-
this._a("rowHeight", this.i.
|
|
808
|
+
this.i.c6 = +v;
|
|
809
|
+
this._a("rowHeight", this.i.c6);
|
|
810
810
|
}
|
|
811
811
|
/**
|
|
812
812
|
* Gets the actual row height used by the panel.
|
|
813
813
|
*/
|
|
814
814
|
get actualRowHeight() {
|
|
815
|
-
return this.i.
|
|
815
|
+
return this.i.b6;
|
|
816
816
|
}
|
|
817
817
|
/**
|
|
818
818
|
* Gets or sets the height to use for the sub panel rows if different than default.
|
|
819
819
|
*/
|
|
820
820
|
get subPanelRowHeight() {
|
|
821
|
-
return this.i.
|
|
821
|
+
return this.i.c7;
|
|
822
822
|
}
|
|
823
823
|
set subPanelRowHeight(v) {
|
|
824
|
-
this.i.
|
|
825
|
-
this._a("subPanelRowHeight", this.i.
|
|
824
|
+
this.i.c7 = +v;
|
|
825
|
+
this._a("subPanelRowHeight", this.i.c7);
|
|
826
826
|
}
|
|
827
827
|
get highlightWidth() {
|
|
828
|
-
return this.i.
|
|
828
|
+
return this.i.ck;
|
|
829
829
|
}
|
|
830
830
|
set highlightWidth(v) {
|
|
831
|
-
this.i.
|
|
832
|
-
this._a("highlightWidth", this.i.
|
|
831
|
+
this.i.ck = +v;
|
|
832
|
+
this._a("highlightWidth", this.i.ck);
|
|
833
833
|
}
|
|
834
834
|
get actualHighlightWidth() {
|
|
835
|
-
return this.i.
|
|
835
|
+
return this.i.b5;
|
|
836
836
|
}
|
|
837
837
|
set actualHighlightWidth(v) {
|
|
838
|
-
this.i.
|
|
839
|
-
this._a("actualHighlightWidth", this.i.
|
|
838
|
+
this.i.b5 = +v;
|
|
839
|
+
this._a("actualHighlightWidth", this.i.b5);
|
|
840
840
|
}
|
|
841
841
|
get highlightRadius() {
|
|
842
|
-
return this.i.
|
|
842
|
+
return this.i.cj;
|
|
843
843
|
}
|
|
844
844
|
set highlightRadius(v) {
|
|
845
|
-
this.i.
|
|
846
|
-
this._a("highlightRadius", this.i.
|
|
845
|
+
this.i.cj = +v;
|
|
846
|
+
this._a("highlightRadius", this.i.cj);
|
|
847
847
|
}
|
|
848
848
|
get actualHighlightRadius() {
|
|
849
|
-
return this.i.
|
|
849
|
+
return this.i.b4;
|
|
850
850
|
}
|
|
851
851
|
set actualHighlightRadius(v) {
|
|
852
|
-
this.i.
|
|
853
|
-
this._a("actualHighlightRadius", this.i.
|
|
852
|
+
this.i.b4 = +v;
|
|
853
|
+
this._a("actualHighlightRadius", this.i.b4);
|
|
854
854
|
}
|
|
855
855
|
get highlightColor() {
|
|
856
|
-
return brushToString(this.i.
|
|
856
|
+
return brushToString(this.i.j8);
|
|
857
857
|
}
|
|
858
858
|
set highlightColor(v) {
|
|
859
|
-
this.i.
|
|
860
|
-
this._a("highlightColor", brushToString(this.i.
|
|
859
|
+
this.i.j8 = stringToBrush(v);
|
|
860
|
+
this._a("highlightColor", brushToString(this.i.j8));
|
|
861
861
|
}
|
|
862
862
|
get actualHighlightColor() {
|
|
863
|
-
return brushToString(this.i.
|
|
863
|
+
return brushToString(this.i.ji);
|
|
864
864
|
}
|
|
865
865
|
set actualHighlightColor(v) {
|
|
866
|
-
this.i.
|
|
867
|
-
this._a("actualHighlightColor", brushToString(this.i.
|
|
866
|
+
this.i.ji = stringToBrush(v);
|
|
867
|
+
this._a("actualHighlightColor", brushToString(this.i.ji));
|
|
868
868
|
}
|
|
869
869
|
get actualAccentColor() {
|
|
870
|
-
return brushToString(this.i.
|
|
870
|
+
return brushToString(this.i.i9);
|
|
871
871
|
}
|
|
872
872
|
set actualAccentColor(v) {
|
|
873
|
-
this.i.
|
|
874
|
-
this._a("actualAccentColor", brushToString(this.i.
|
|
873
|
+
this.i.i9 = stringToBrush(v);
|
|
874
|
+
this._a("actualAccentColor", brushToString(this.i.i9));
|
|
875
875
|
}
|
|
876
876
|
get accentColor() {
|
|
877
|
-
return brushToString(this.i.
|
|
877
|
+
return brushToString(this.i.i8);
|
|
878
878
|
}
|
|
879
879
|
set accentColor(v) {
|
|
880
|
-
this.i.
|
|
881
|
-
this._a("accentColor", brushToString(this.i.
|
|
880
|
+
this.i.i8 = stringToBrush(v);
|
|
881
|
+
this._a("accentColor", brushToString(this.i.i8));
|
|
882
882
|
}
|
|
883
883
|
/**
|
|
884
884
|
* Gets or sets the stroke color for all icon menu dropdown arrows.
|
|
885
885
|
*/
|
|
886
886
|
get menuArrowStroke() {
|
|
887
|
-
return brushToString(this.i.
|
|
887
|
+
return brushToString(this.i.kc);
|
|
888
888
|
}
|
|
889
889
|
set menuArrowStroke(v) {
|
|
890
|
-
this.i.
|
|
891
|
-
this._a("menuArrowStroke", brushToString(this.i.
|
|
890
|
+
this.i.kc = stringToBrush(v);
|
|
891
|
+
this._a("menuArrowStroke", brushToString(this.i.kc));
|
|
892
892
|
}
|
|
893
893
|
/**
|
|
894
894
|
* Gets the actual stroke color for all icon menu dropdown arrows.
|
|
895
895
|
*/
|
|
896
896
|
get actualMenuArrowStroke() {
|
|
897
|
-
return brushToString(this.i.
|
|
897
|
+
return brushToString(this.i.jm);
|
|
898
898
|
}
|
|
899
899
|
set actualMenuArrowStroke(v) {
|
|
900
|
-
this.i.
|
|
901
|
-
this._a("actualMenuArrowStroke", brushToString(this.i.
|
|
900
|
+
this.i.jm = stringToBrush(v);
|
|
901
|
+
this._a("actualMenuArrowStroke", brushToString(this.i.jm));
|
|
902
902
|
}
|
|
903
903
|
/**
|
|
904
904
|
* Gets or sets the background color of the radio when in the unchecked state.
|
|
905
905
|
*/
|
|
906
906
|
get uncheckedBackgroundColor() {
|
|
907
|
-
return brushToString(this.i.
|
|
907
|
+
return brushToString(this.i.kj);
|
|
908
908
|
}
|
|
909
909
|
set uncheckedBackgroundColor(v) {
|
|
910
|
-
this.i.
|
|
911
|
-
this._a("uncheckedBackgroundColor", brushToString(this.i.
|
|
910
|
+
this.i.kj = stringToBrush(v);
|
|
911
|
+
this._a("uncheckedBackgroundColor", brushToString(this.i.kj));
|
|
912
912
|
}
|
|
913
913
|
/**
|
|
914
914
|
* Gets the actual background color of the radio when in the unchecked state.
|
|
915
915
|
*/
|
|
916
916
|
get actualUncheckedBackgroundColor() {
|
|
917
|
-
return brushToString(this.i.
|
|
917
|
+
return brushToString(this.i.jt);
|
|
918
918
|
}
|
|
919
919
|
set actualUncheckedBackgroundColor(v) {
|
|
920
|
-
this.i.
|
|
921
|
-
this._a("actualUncheckedBackgroundColor", brushToString(this.i.
|
|
920
|
+
this.i.jt = stringToBrush(v);
|
|
921
|
+
this._a("actualUncheckedBackgroundColor", brushToString(this.i.jt));
|
|
922
922
|
}
|
|
923
923
|
/**
|
|
924
924
|
* Gets or sets the background color of the radio when in the checked state.
|
|
925
925
|
*/
|
|
926
926
|
get checkedBackgroundColor() {
|
|
927
|
-
return brushToString(this.i.
|
|
927
|
+
return brushToString(this.i.jz);
|
|
928
928
|
}
|
|
929
929
|
set checkedBackgroundColor(v) {
|
|
930
|
-
this.i.
|
|
931
|
-
this._a("checkedBackgroundColor", brushToString(this.i.
|
|
930
|
+
this.i.jz = stringToBrush(v);
|
|
931
|
+
this._a("checkedBackgroundColor", brushToString(this.i.jz));
|
|
932
932
|
}
|
|
933
933
|
/**
|
|
934
934
|
* Gets the actual background color of the radio when in the checked state.
|
|
935
935
|
*/
|
|
936
936
|
get actualCheckedBackgroundColor() {
|
|
937
|
-
return brushToString(this.i.
|
|
937
|
+
return brushToString(this.i.jb);
|
|
938
938
|
}
|
|
939
939
|
set actualCheckedBackgroundColor(v) {
|
|
940
|
-
this.i.
|
|
941
|
-
this._a("actualCheckedBackgroundColor", brushToString(this.i.
|
|
940
|
+
this.i.jb = stringToBrush(v);
|
|
941
|
+
this._a("actualCheckedBackgroundColor", brushToString(this.i.jb));
|
|
942
942
|
}
|
|
943
943
|
/**
|
|
944
944
|
* Gets or sets the border color of the radio when in the unchecked state.
|
|
945
945
|
*/
|
|
946
946
|
get uncheckedBorderColor() {
|
|
947
|
-
return brushToString(this.i.
|
|
947
|
+
return brushToString(this.i.kk);
|
|
948
948
|
}
|
|
949
949
|
set uncheckedBorderColor(v) {
|
|
950
|
-
this.i.
|
|
951
|
-
this._a("uncheckedBorderColor", brushToString(this.i.
|
|
950
|
+
this.i.kk = stringToBrush(v);
|
|
951
|
+
this._a("uncheckedBorderColor", brushToString(this.i.kk));
|
|
952
952
|
}
|
|
953
953
|
/**
|
|
954
954
|
* Gets the actual border color of the radio when in the unchecked state.
|
|
955
955
|
*/
|
|
956
956
|
get actualUncheckedBorderColor() {
|
|
957
|
-
return brushToString(this.i.
|
|
957
|
+
return brushToString(this.i.ju);
|
|
958
958
|
}
|
|
959
959
|
set actualUncheckedBorderColor(v) {
|
|
960
|
-
this.i.
|
|
961
|
-
this._a("actualUncheckedBorderColor", brushToString(this.i.
|
|
960
|
+
this.i.ju = stringToBrush(v);
|
|
961
|
+
this._a("actualUncheckedBorderColor", brushToString(this.i.ju));
|
|
962
962
|
}
|
|
963
963
|
/**
|
|
964
964
|
* Gets or sets the border color of the radio when in the checked state.
|
|
965
965
|
*/
|
|
966
966
|
get checkedBorderColor() {
|
|
967
|
-
return brushToString(this.i.
|
|
967
|
+
return brushToString(this.i.j0);
|
|
968
968
|
}
|
|
969
969
|
set checkedBorderColor(v) {
|
|
970
|
-
this.i.
|
|
971
|
-
this._a("checkedBorderColor", brushToString(this.i.
|
|
970
|
+
this.i.j0 = stringToBrush(v);
|
|
971
|
+
this._a("checkedBorderColor", brushToString(this.i.j0));
|
|
972
972
|
}
|
|
973
973
|
/**
|
|
974
974
|
* Gets the actual border color of the radio when in the checked state.
|
|
975
975
|
*/
|
|
976
976
|
get actualCheckedBorderColor() {
|
|
977
|
-
return brushToString(this.i.
|
|
977
|
+
return brushToString(this.i.jc);
|
|
978
978
|
}
|
|
979
979
|
set actualCheckedBorderColor(v) {
|
|
980
|
-
this.i.
|
|
981
|
-
this._a("actualCheckedBorderColor", brushToString(this.i.
|
|
980
|
+
this.i.jc = stringToBrush(v);
|
|
981
|
+
this._a("actualCheckedBorderColor", brushToString(this.i.jc));
|
|
982
982
|
}
|
|
983
983
|
/**
|
|
984
984
|
* Gets or sets the dropdown delay time in milliseconds.
|
|
985
985
|
*/
|
|
986
986
|
get dropdownDelay() {
|
|
987
|
-
return this.i.
|
|
987
|
+
return this.i.c3;
|
|
988
988
|
}
|
|
989
989
|
set dropdownDelay(v) {
|
|
990
|
-
this.i.
|
|
991
|
-
this._a("dropdownDelay", this.i.
|
|
990
|
+
this.i.c3 = +v;
|
|
991
|
+
this._a("dropdownDelay", this.i.c3);
|
|
992
992
|
}
|
|
993
993
|
/**
|
|
994
994
|
* Gets the actual dropdown delay.
|
|
995
995
|
*/
|
|
996
996
|
get actualDropdownDelay() {
|
|
997
|
-
return this.i.
|
|
997
|
+
return this.i.c1;
|
|
998
998
|
}
|
|
999
999
|
set actualDropdownDelay(v) {
|
|
1000
|
-
this.i.
|
|
1001
|
-
this._a("actualDropdownDelay", this.i.
|
|
1000
|
+
this.i.c1 = +v;
|
|
1001
|
+
this._a("actualDropdownDelay", this.i.c1);
|
|
1002
1002
|
}
|
|
1003
1003
|
/**
|
|
1004
1004
|
* Gets or sets the style of scrollbar.
|
|
@@ -1010,15 +1010,45 @@ let IgcToolPanelComponent = /*@__PURE__*/ (() => {
|
|
|
1010
1010
|
this.i.x = ensureEnum(ScrollbarStyle_$type, v);
|
|
1011
1011
|
this._a("scrollbarStyle", enumToString(ScrollbarStyle_$type, this.i.x));
|
|
1012
1012
|
}
|
|
1013
|
+
/**
|
|
1014
|
+
* Gets or sets the scrollbar background color for checkbox lists hosted in this tool panel's actions.
|
|
1015
|
+
*/
|
|
1016
|
+
get checkboxListScrollbarBackground() {
|
|
1017
|
+
return brushToString(this.i.jx);
|
|
1018
|
+
}
|
|
1019
|
+
set checkboxListScrollbarBackground(v) {
|
|
1020
|
+
this.i.jx = stringToBrush(v);
|
|
1021
|
+
this._a("checkboxListScrollbarBackground", brushToString(this.i.jx));
|
|
1022
|
+
}
|
|
1023
|
+
/**
|
|
1024
|
+
* Gets or sets the scrollbar thumb hover background color for checkbox lists hosted in this tool panel's actions.
|
|
1025
|
+
*/
|
|
1026
|
+
get checkboxListScrollbarHoverBackground() {
|
|
1027
|
+
return brushToString(this.i.jy);
|
|
1028
|
+
}
|
|
1029
|
+
set checkboxListScrollbarHoverBackground(v) {
|
|
1030
|
+
this.i.jy = stringToBrush(v);
|
|
1031
|
+
this._a("checkboxListScrollbarHoverBackground", brushToString(this.i.jy));
|
|
1032
|
+
}
|
|
1033
|
+
/**
|
|
1034
|
+
* Gets or sets the scrollbar thumb active (dragging) background color for checkbox lists hosted in this tool panel's actions.
|
|
1035
|
+
*/
|
|
1036
|
+
get checkboxListScrollbarActiveBackground() {
|
|
1037
|
+
return brushToString(this.i.jw);
|
|
1038
|
+
}
|
|
1039
|
+
set checkboxListScrollbarActiveBackground(v) {
|
|
1040
|
+
this.i.jw = stringToBrush(v);
|
|
1041
|
+
this._a("checkboxListScrollbarActiveBackground", brushToString(this.i.jw));
|
|
1042
|
+
}
|
|
1013
1043
|
/**
|
|
1014
1044
|
* Gets or sets the spacing between items
|
|
1015
1045
|
*/
|
|
1016
1046
|
get itemSpacing() {
|
|
1017
|
-
return this.i.
|
|
1047
|
+
return this.i.cl;
|
|
1018
1048
|
}
|
|
1019
1049
|
set itemSpacing(v) {
|
|
1020
|
-
this.i.
|
|
1021
|
-
this._a("itemSpacing", this.i.
|
|
1050
|
+
this.i.cl = +v;
|
|
1051
|
+
this._a("itemSpacing", this.i.cl);
|
|
1022
1052
|
}
|
|
1023
1053
|
/**
|
|
1024
1054
|
* Gets or sets the mode used when displaying nested actions.
|
|
@@ -1031,7 +1061,7 @@ let IgcToolPanelComponent = /*@__PURE__*/ (() => {
|
|
|
1031
1061
|
this._a("nestedActionMode", enumToString(NestedActionMode_$type, this.i.g));
|
|
1032
1062
|
}
|
|
1033
1063
|
get isOpen() {
|
|
1034
|
-
return this.i.
|
|
1064
|
+
return this.i.a6;
|
|
1035
1065
|
}
|
|
1036
1066
|
findByName(name) {
|
|
1037
1067
|
if (this.findEphemera) {
|
|
@@ -1098,84 +1128,84 @@ let IgcToolPanelComponent = /*@__PURE__*/ (() => {
|
|
|
1098
1128
|
this._inStyling = false;
|
|
1099
1129
|
}
|
|
1100
1130
|
refresh() {
|
|
1101
|
-
this.i.
|
|
1131
|
+
this.i.g3();
|
|
1102
1132
|
}
|
|
1103
1133
|
getDesiredSize() {
|
|
1104
|
-
let iv = this.i.
|
|
1134
|
+
let iv = this.i.kn();
|
|
1105
1135
|
return fromSize(iv);
|
|
1106
1136
|
}
|
|
1107
1137
|
flushRefresh() {
|
|
1108
|
-
this.i.
|
|
1138
|
+
this.i.gi();
|
|
1109
1139
|
}
|
|
1110
1140
|
/**
|
|
1111
1141
|
* Forces any open sub menus to close.
|
|
1112
1142
|
|
|
1113
1143
|
*/
|
|
1114
1144
|
closeSubmenus() {
|
|
1115
|
-
this.i.
|
|
1145
|
+
this.i.gd();
|
|
1116
1146
|
}
|
|
1117
1147
|
exportVisualData() {
|
|
1118
|
-
let iv = this.i.
|
|
1148
|
+
let iv = this.i.c8();
|
|
1119
1149
|
return (iv);
|
|
1120
1150
|
}
|
|
1121
1151
|
exportSerializedVisualData() {
|
|
1122
|
-
let iv = this.i.
|
|
1152
|
+
let iv = this.i.ey();
|
|
1123
1153
|
return (iv);
|
|
1124
1154
|
}
|
|
1125
1155
|
setBrushContextItem(key, value) {
|
|
1126
|
-
this.i.
|
|
1156
|
+
this.i.hc(key, stringToBrush(value));
|
|
1127
1157
|
}
|
|
1128
1158
|
getBrushContextItem(key) {
|
|
1129
|
-
let iv = this.i.
|
|
1159
|
+
let iv = this.i.j2(key);
|
|
1130
1160
|
return brushToString(iv);
|
|
1131
1161
|
}
|
|
1132
1162
|
setBrushCollectionContextItem(key, value) {
|
|
1133
|
-
this.i.
|
|
1163
|
+
this.i.ha(key, toBrushCollection(value));
|
|
1134
1164
|
}
|
|
1135
1165
|
getBrushCollectionContextItem(key) {
|
|
1136
1166
|
let iv = this.i.a(key);
|
|
1137
1167
|
return fromBrushCollection(iv);
|
|
1138
1168
|
}
|
|
1139
1169
|
setDoubleContextItem(key, value) {
|
|
1140
|
-
this.i.
|
|
1170
|
+
this.i.hk(key, value);
|
|
1141
1171
|
}
|
|
1142
1172
|
getDoubleContextItem(key) {
|
|
1143
|
-
let iv = this.i.
|
|
1173
|
+
let iv = this.i.ch(key);
|
|
1144
1174
|
return (iv);
|
|
1145
1175
|
}
|
|
1146
1176
|
setIntContextItem(key, value) {
|
|
1147
|
-
this.i.
|
|
1177
|
+
this.i.hm(key, value);
|
|
1148
1178
|
}
|
|
1149
1179
|
getIntContextItem(key) {
|
|
1150
|
-
let iv = this.i.
|
|
1180
|
+
let iv = this.i.c4(key);
|
|
1151
1181
|
return (iv);
|
|
1152
1182
|
}
|
|
1153
1183
|
setStringContextItem(key, value) {
|
|
1154
|
-
this.i.
|
|
1184
|
+
this.i.ho(key, value);
|
|
1155
1185
|
}
|
|
1156
1186
|
getStringContextItem(key) {
|
|
1157
|
-
let iv = this.i.
|
|
1187
|
+
let iv = this.i.ez(key);
|
|
1158
1188
|
return (iv);
|
|
1159
1189
|
}
|
|
1160
1190
|
setBoolContextItem(key, value) {
|
|
1161
|
-
this.i.
|
|
1191
|
+
this.i.g8(key, value);
|
|
1162
1192
|
}
|
|
1163
1193
|
getBoolContextItem(key) {
|
|
1164
1194
|
let iv = this.i.a2(key);
|
|
1165
1195
|
return (iv);
|
|
1166
1196
|
}
|
|
1167
1197
|
setColorContextItem(key, value) {
|
|
1168
|
-
this.i.
|
|
1198
|
+
this.i.he(key, stringToColor(value));
|
|
1169
1199
|
}
|
|
1170
1200
|
getColorContextItem(key) {
|
|
1171
|
-
let iv = this.i.
|
|
1201
|
+
let iv = this.i.kl(key);
|
|
1172
1202
|
return colorToString(iv);
|
|
1173
1203
|
}
|
|
1174
1204
|
setDataContextItem(key, value) {
|
|
1175
|
-
this.i.
|
|
1205
|
+
this.i.hi(key, value);
|
|
1176
1206
|
}
|
|
1177
1207
|
getDataContextItem(key) {
|
|
1178
|
-
let iv = this.i.
|
|
1208
|
+
let iv = this.i.db(key);
|
|
1179
1209
|
return (iv);
|
|
1180
1210
|
}
|
|
1181
1211
|
get contentRefreshed() {
|