igniteui-webcomponents-layouts 3.2.4 → 4.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (90) hide show
  1. package/bundles/igniteui-webcomponents-layouts.umd.js +789 -157
  2. package/bundles/igniteui-webcomponents-layouts.umd.min.js +1 -1
  3. package/esm2015/lib/PropertyEditorPanelView_combined.js +20 -20
  4. package/esm2015/lib/PropertyEditorPropertyDescription_combined.js +84 -58
  5. package/esm2015/lib/PropertyEditorTreeTransformer.js +1 -0
  6. package/esm2015/lib/PropertyEditorValueType.js +2 -1
  7. package/esm2015/lib/ToolActionLabel.js +7 -0
  8. package/esm2015/lib/ToolActionRadio.js +7 -0
  9. package/esm2015/lib/ToolPanelView_combined.js +237 -53
  10. package/esm2015/lib/igc-list-panel-component.js +9 -0
  11. package/esm2015/lib/igc-list-panel-item-model.js +5 -0
  12. package/esm2015/lib/igc-list-panel-template-item-updating-event-args.js +11 -5
  13. package/esm2015/lib/igc-popup-component.js +7 -0
  14. package/esm2015/lib/igc-property-editor-data-source.js +7 -2
  15. package/esm2015/lib/igc-property-editor-description-object.js +5 -0
  16. package/esm2015/lib/igc-property-editor-panel-component.js +5 -0
  17. package/esm2015/lib/igc-property-editor-property-description-component.js +33 -5
  18. package/esm2015/lib/igc-tool-action-checkbox-component.js +14 -0
  19. package/esm2015/lib/igc-tool-action-component.js +21 -0
  20. package/esm2015/lib/igc-tool-action-event-detail.js +12 -6
  21. package/esm2015/lib/igc-tool-action-group-header-component.js +14 -0
  22. package/esm2015/lib/igc-tool-action-icon-button-component.js +14 -0
  23. package/esm2015/lib/igc-tool-action-icon-menu-component.js +14 -0
  24. package/esm2015/lib/igc-tool-action-label-component.js +63 -0
  25. package/esm2015/lib/igc-tool-action-label-module.js +16 -0
  26. package/esm2015/lib/igc-tool-action-menu-base-component.js +14 -0
  27. package/esm2015/lib/igc-tool-action-number-input-component.js +14 -0
  28. package/esm2015/lib/igc-tool-action-performed-event-args.js +11 -5
  29. package/esm2015/lib/igc-tool-action-radio-component.js +69 -0
  30. package/esm2015/lib/igc-tool-action-radio-module.js +16 -0
  31. package/esm2015/lib/igc-tool-action-separator-component.js +14 -0
  32. package/esm2015/lib/igc-tool-panel-component.js +13 -6
  33. package/esm2015/lib/igc-toolbar-component.js +5 -0
  34. package/esm2015/lib/igc-x-expansion-panel-component.js +7 -0
  35. package/esm2015/public_api.js +6 -0
  36. package/esm5/lib/PropertyEditorPanelView_combined.js +20 -20
  37. package/esm5/lib/PropertyEditorPropertyDescription_combined.js +82 -57
  38. package/esm5/lib/PropertyEditorTreeTransformer.js +1 -0
  39. package/esm5/lib/PropertyEditorValueType.js +2 -1
  40. package/esm5/lib/ToolActionLabel.js +7 -0
  41. package/esm5/lib/ToolActionRadio.js +7 -0
  42. package/esm5/lib/ToolPanelView_combined.js +241 -51
  43. package/esm5/lib/igc-list-panel-component.js +9 -0
  44. package/esm5/lib/igc-list-panel-item-model.js +5 -0
  45. package/esm5/lib/igc-list-panel-template-item-updating-event-args.js +11 -5
  46. package/esm5/lib/igc-popup-component.js +7 -0
  47. package/esm5/lib/igc-property-editor-data-source.js +7 -2
  48. package/esm5/lib/igc-property-editor-description-object.js +5 -0
  49. package/esm5/lib/igc-property-editor-panel-component.js +5 -0
  50. package/esm5/lib/igc-property-editor-property-description-component.js +33 -5
  51. package/esm5/lib/igc-tool-action-checkbox-component.js +14 -0
  52. package/esm5/lib/igc-tool-action-component.js +21 -0
  53. package/esm5/lib/igc-tool-action-event-detail.js +12 -6
  54. package/esm5/lib/igc-tool-action-group-header-component.js +14 -0
  55. package/esm5/lib/igc-tool-action-icon-button-component.js +14 -0
  56. package/esm5/lib/igc-tool-action-icon-menu-component.js +14 -0
  57. package/esm5/lib/igc-tool-action-label-component.js +72 -0
  58. package/esm5/lib/igc-tool-action-label-module.js +20 -0
  59. package/esm5/lib/igc-tool-action-menu-base-component.js +14 -0
  60. package/esm5/lib/igc-tool-action-number-input-component.js +14 -0
  61. package/esm5/lib/igc-tool-action-performed-event-args.js +11 -5
  62. package/esm5/lib/igc-tool-action-radio-component.js +82 -0
  63. package/esm5/lib/igc-tool-action-radio-module.js +20 -0
  64. package/esm5/lib/igc-tool-action-separator-component.js +14 -0
  65. package/esm5/lib/igc-tool-panel-component.js +13 -6
  66. package/esm5/lib/igc-toolbar-component.js +5 -0
  67. package/esm5/lib/igc-x-expansion-panel-component.js +7 -0
  68. package/esm5/public_api.js +6 -0
  69. package/fesm2015/igniteui-webcomponents-layouts.js +761 -162
  70. package/fesm5/igniteui-webcomponents-layouts.js +785 -159
  71. package/lib/PropertyEditorPropertyDescription_combined.d.ts +13 -10
  72. package/lib/PropertyEditorValueType.d.ts +2 -1
  73. package/lib/ToolActionLabel.d.ts +1 -0
  74. package/lib/ToolActionRadio.d.ts +1 -0
  75. package/lib/ToolPanelView_combined.d.ts +33 -6
  76. package/lib/igc-property-editor-property-description-component.d.ts +1 -0
  77. package/lib/igc-tool-action-checkbox-component.d.ts +1 -0
  78. package/lib/igc-tool-action-component.d.ts +1 -0
  79. package/lib/igc-tool-action-group-header-component.d.ts +1 -0
  80. package/lib/igc-tool-action-icon-button-component.d.ts +1 -0
  81. package/lib/igc-tool-action-icon-menu-component.d.ts +1 -0
  82. package/lib/igc-tool-action-label-component.d.ts +17 -0
  83. package/lib/igc-tool-action-label-module.d.ts +3 -0
  84. package/lib/igc-tool-action-menu-base-component.d.ts +1 -0
  85. package/lib/igc-tool-action-number-input-component.d.ts +1 -0
  86. package/lib/igc-tool-action-radio-component.d.ts +18 -0
  87. package/lib/igc-tool-action-radio-module.d.ts +3 -0
  88. package/lib/igc-tool-action-separator-component.d.ts +1 -0
  89. package/package.json +3 -3
  90. package/public_api.d.ts +6 -0
@@ -1421,6 +1421,11 @@
1421
1421
  configurable: true
1422
1422
  });
1423
1423
  IgcXExpansionPanelComponent.prototype.findByName = function (name) {
1424
+ if (this.findEphemera) {
1425
+ if (name && name.indexOf("@@e:") == 0) {
1426
+ return this.findEphemera(name);
1427
+ }
1428
+ }
1424
1429
  return null;
1425
1430
  };
1426
1431
  Object.defineProperty(IgcXExpansionPanelComponent.prototype, "hasUserValues", {
@@ -1527,6 +1532,7 @@
1527
1532
  }
1528
1533
  };
1529
1534
  this.i.onCollapsed = igniteuiWebcomponentsCore.delegateCombine(this.i.onCollapsed, this._onCollapsed_wrapped);
1535
+ ;
1530
1536
  },
1531
1537
  enumerable: true,
1532
1538
  configurable: true
@@ -1554,6 +1560,7 @@
1554
1560
  }
1555
1561
  };
1556
1562
  this.i.onExpanded = igniteuiWebcomponentsCore.delegateCombine(this.i.onExpanded, this._onExpanded_wrapped);
1563
+ ;
1557
1564
  },
1558
1565
  enumerable: true,
1559
1566
  configurable: true
@@ -2749,6 +2756,11 @@
2749
2756
  configurable: true
2750
2757
  });
2751
2758
  IgcPopupComponent.prototype.findByName = function (name) {
2759
+ if (this.findEphemera) {
2760
+ if (name && name.indexOf("@@e:") == 0) {
2761
+ return this.findEphemera(name);
2762
+ }
2763
+ }
2752
2764
  return null;
2753
2765
  };
2754
2766
  Object.defineProperty(IgcPopupComponent.prototype, "hasUserValues", {
@@ -2857,6 +2869,7 @@
2857
2869
  }
2858
2870
  };
2859
2871
  this.i.onClosed = igniteuiWebcomponentsCore.delegateCombine(this.i.onClosed, this._onClosed_wrapped);
2872
+ ;
2860
2873
  },
2861
2874
  enumerable: true,
2862
2875
  configurable: true
@@ -2887,6 +2900,7 @@
2887
2900
  }
2888
2901
  };
2889
2902
  this.i.onPopup = igniteuiWebcomponentsCore.delegateCombine(this.i.onPopup, this._onPopup_wrapped);
2903
+ ;
2890
2904
  },
2891
2905
  enumerable: true,
2892
2906
  configurable: true
@@ -2945,12 +2959,13 @@
2945
2959
  PropertyEditorValueType[PropertyEditorValueType["TimeSpan"] = 19] = "TimeSpan";
2946
2960
  PropertyEditorValueType[PropertyEditorValueType["Button"] = 20] = "Button";
2947
2961
  PropertyEditorValueType[PropertyEditorValueType["Slider"] = 21] = "Slider";
2962
+ PropertyEditorValueType[PropertyEditorValueType["TemplateRef"] = 22] = "TemplateRef";
2948
2963
  return PropertyEditorValueType;
2949
2964
  })({});
2950
2965
  /**
2951
2966
  * @hidden
2952
2967
  */
2953
- var PropertyEditorValueType_$type = /*@__PURE__*/ igniteuiWebcomponentsCore.markEnum('PropertyEditorValueType', 'Unhandled,0|Number,1|StringValue,2|Date,3|Brush,4|Color,5|BrushCollection,6|Boolean:boolean1,7|SubType,8|Collection,9|Array,10|Point,11|Size,12|Rect,13|ColorCollection,14|EnumValue,15|MethodRef,16|EventRef,17|DataRef,18|TimeSpan,19|Button,20|Slider,21');
2968
+ var PropertyEditorValueType_$type = /*@__PURE__*/ igniteuiWebcomponentsCore.markEnum('PropertyEditorValueType', 'Unhandled,0|Number,1|StringValue,2|Date,3|Brush,4|Color,5|BrushCollection,6|Boolean:boolean1,7|SubType,8|Collection,9|Array,10|Point,11|Size,12|Rect,13|ColorCollection,14|EnumValue,15|MethodRef,16|EventRef,17|DataRef,18|TimeSpan,19|Button,20|Slider,21|TemplateRef,22');
2954
2969
 
2955
2970
  /*
2956
2971
  THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
@@ -3345,7 +3360,7 @@
3345
3360
  return this.e;
3346
3361
  }
3347
3362
  if (this.e != null) {
3348
- return this.e.d(a, false);
3363
+ return this.e.e(a, false);
3349
3364
  }
3350
3365
  return null;
3351
3366
  };
@@ -3396,20 +3411,21 @@
3396
3411
  tslib_1.__extends(PropertyEditorDataSource, _super);
3397
3412
  function PropertyEditorDataSource() {
3398
3413
  var _this = _super !== null && _super.apply(this, arguments) || this;
3399
- _this.i = null;
3414
+ _this.k = null;
3400
3415
  _this.a = null;
3401
- _this.f = null;
3416
+ _this.g = null;
3402
3417
  _this.propertyChanged = null;
3418
+ _this.j = null;
3403
3419
  return _this;
3404
3420
  }
3405
- Object.defineProperty(PropertyEditorDataSource.prototype, "l", {
3421
+ Object.defineProperty(PropertyEditorDataSource.prototype, "n", {
3406
3422
  get: function () {
3407
- return this.i;
3423
+ return this.k;
3408
3424
  },
3409
3425
  set: function (a) {
3410
- var b = this.i;
3411
- this.i = a;
3412
- this.n("DescriptionType", b, this.i);
3426
+ var b = this.k;
3427
+ this.k = a;
3428
+ this.p("DescriptionType", b, this.k);
3413
3429
  },
3414
3430
  enumerable: true,
3415
3431
  configurable: true
@@ -3421,69 +3437,76 @@
3421
3437
  set: function (a) {
3422
3438
  var b = this.a;
3423
3439
  this.a = a;
3424
- this.n("Context", b, this.a);
3440
+ this.p("Context", b, this.a);
3425
3441
  },
3426
3442
  enumerable: true,
3427
3443
  configurable: true
3428
3444
  });
3429
- Object.defineProperty(PropertyEditorDataSource.prototype, "g", {
3445
+ Object.defineProperty(PropertyEditorDataSource.prototype, "h", {
3430
3446
  get: function () {
3431
- return this.f;
3447
+ return this.g;
3432
3448
  },
3433
3449
  set: function (a) {
3434
- var b = this.f;
3435
- this.f = a;
3436
- this.n("Data", b, this.f);
3450
+ var b = this.g;
3451
+ this.g = a;
3452
+ this.p("Data", b, this.g);
3437
3453
  },
3438
3454
  enumerable: true,
3439
3455
  configurable: true
3440
3456
  });
3441
- PropertyEditorDataSource.prototype.n = function (a, b, c) {
3457
+ PropertyEditorDataSource.prototype.p = function (a, b, c) {
3442
3458
  if (this.propertyChanged != null) {
3443
3459
  this.propertyChanged(this, new igniteuiWebcomponentsCore.PropertyChangedEventArgs(a));
3444
3460
  }
3445
- this.o(a, b, c);
3461
+ this.q(a, b, c);
3446
3462
  };
3447
- PropertyEditorDataSource.prototype.o = function (a, b, c) {
3463
+ PropertyEditorDataSource.prototype.q = function (a, b, c) {
3448
3464
  switch (a) {
3449
3465
  case "DescriptionType":
3450
- this.p();
3466
+ this.r();
3451
3467
  break;
3452
3468
  case "Context":
3453
- this.p();
3469
+ this.r();
3454
3470
  break;
3455
3471
  }
3456
3472
  };
3457
- PropertyEditorDataSource.prototype.e = function (a) {
3458
- var _this = this;
3473
+ PropertyEditorDataSource.d = function (a, b, c) {
3474
+ var d = new PropertyEditorDataSource();
3475
+ d.j = c;
3476
+ d.b = a;
3477
+ d.n = b;
3478
+ d.j = null;
3479
+ return d;
3480
+ };
3481
+ PropertyEditorDataSource.prototype.f = function (a) {
3459
3482
  var b = new PropertyEditorPropertyDescription();
3460
3483
  b.al = a.propertyName;
3461
- b.n = this.h(a);
3484
+ b.n = this.i(a);
3462
3485
  b.ak = a.specificExternalType != null ? a.specificExternalType : a.specificType;
3463
3486
  if (a.knownType == 9) {
3464
3487
  b.ai = a.collectionElementType;
3465
- b.e = ((function () {
3466
- var $ret = new PropertyEditorDataSource();
3467
- $ret.b = _this.a;
3468
- $ret.l = b.ai;
3469
- return $ret;
3470
- })());
3488
+ if (this.j != null && this.j.containsKey(b.ai)) {
3489
+ b.e = this.j.item(b.ai);
3490
+ }
3491
+ else {
3492
+ b.e = PropertyEditorDataSource.d(this.a, b.ai, this.j);
3493
+ }
3471
3494
  }
3472
3495
  if (b.n == 8) {
3473
- b.e = ((function () {
3474
- var $ret = new PropertyEditorDataSource();
3475
- $ret.b = _this.a;
3476
- $ret.l = b.ak;
3477
- return $ret;
3478
- })());
3496
+ if (this.j != null && this.j.containsKey(b.ak)) {
3497
+ b.e = this.j.item(b.ak);
3498
+ }
3499
+ else {
3500
+ b.e = PropertyEditorDataSource.d(this.a, b.ak, this.j);
3501
+ }
3479
3502
  }
3480
3503
  if (b.n == 15) {
3481
- b.c = this.a.c(this.l, b.al);
3504
+ b.c = this.a.c(this.n, b.al);
3482
3505
  b.d = b.d;
3483
3506
  }
3484
3507
  return b;
3485
3508
  };
3486
- PropertyEditorDataSource.prototype.h = function (a) {
3509
+ PropertyEditorDataSource.prototype.i = function (a) {
3487
3510
  switch (a.knownType) {
3488
3511
  case 10: return 10;
3489
3512
  case 7: return 7;
@@ -3493,6 +3516,7 @@
3493
3516
  case 5: return 5;
3494
3517
  case 16: return 14;
3495
3518
  case 20: return 18;
3519
+ case 22: return 22;
3496
3520
  case 15: return 0;
3497
3521
  case 3: return 3;
3498
3522
  case 19: return 17;
@@ -3514,31 +3538,46 @@
3514
3538
  }
3515
3539
  return 0;
3516
3540
  };
3517
- PropertyEditorDataSource.prototype.p = function () {
3541
+ PropertyEditorDataSource.prototype.r = function () {
3518
3542
  var a = new PropertyEditorPropertyDescriptionCollection();
3519
- if (this.l != null && this.b != null) {
3520
- var b = this.b.b(this.l);
3521
- if (b == null) {
3543
+ if (this.n != null && this.b != null) {
3544
+ var b = false;
3545
+ if (this.j == null) {
3546
+ b = true;
3547
+ this.j = new igniteuiWebcomponentsCore.Dictionary$2(igniteuiWebcomponentsCore.String_$type, PropertyEditorDataSource.$, 0);
3548
+ }
3549
+ this.j.item(this.n, this);
3550
+ var c = this.b.b(this.n);
3551
+ if (c == null) {
3522
3552
  return;
3523
3553
  }
3524
- for (var c = 0; c < b.length; c++) {
3525
- if (igniteuiWebcomponentsCore.stringEndsWith(b[c], "@names")) {
3554
+ for (var d = 0; d < c.length; d++) {
3555
+ if (igniteuiWebcomponentsCore.stringEndsWith(c[d], "@names")) {
3526
3556
  continue;
3527
3557
  }
3528
- if (igniteuiWebcomponentsCore.stringEndsWith(b[c], "@nameBinding")) {
3558
+ if (igniteuiWebcomponentsCore.stringEndsWith(c[d], "@nameBinding")) {
3529
3559
  continue;
3530
3560
  }
3531
- var d = this.b.getMetadata(this.l, b[c]);
3532
- var e = this.e(d);
3533
- if (e.n == 0) {
3561
+ if (igniteuiWebcomponentsCore.stringEndsWith(c[d], "@ngQueryList")) {
3534
3562
  continue;
3535
3563
  }
3536
- a.add(e);
3564
+ if (igniteuiWebcomponentsCore.stringEndsWith(c[d], "@mustSetInCode")) {
3565
+ continue;
3566
+ }
3567
+ var e = this.b.getMetadata(this.n, c[d]);
3568
+ var f = this.f(e);
3569
+ if (f.n == 0) {
3570
+ continue;
3571
+ }
3572
+ a.add(f);
3573
+ }
3574
+ if (b) {
3575
+ this.j = null;
3537
3576
  }
3538
3577
  }
3539
- this.g = a;
3578
+ this.h = a;
3540
3579
  };
3541
- PropertyEditorDataSource.prototype.d = function (a, b) {
3580
+ PropertyEditorDataSource.prototype.e = function (a, b) {
3542
3581
  if (a == null) {
3543
3582
  return null;
3544
3583
  }
@@ -3561,9 +3600,9 @@
3561
3600
  g = h.substr(0, k).trim();
3562
3601
  f = h.substr(k + 2).trim();
3563
3602
  }
3564
- if (f != null && f != this.l) {
3603
+ if (f != null && f != this.n) {
3565
3604
  var l = this.c();
3566
- l.l = f;
3605
+ l.n = f;
3567
3606
  e = l;
3568
3607
  continue;
3569
3608
  }
@@ -3581,19 +3620,19 @@
3581
3620
  else {
3582
3621
  if (e != null) {
3583
3622
  var n = e;
3584
- var o = n.d(h, i);
3623
+ var o = n.e(h, i);
3585
3624
  if (o == null) {
3586
3625
  return null;
3587
3626
  }
3588
3627
  e = o;
3589
3628
  }
3590
3629
  else {
3591
- if (this.g == null) {
3630
+ if (this.h == null) {
3592
3631
  return null;
3593
3632
  }
3594
- for (var p = 0; p < this.g.count; p++) {
3595
- if (igniteuiWebcomponentsCore.Base.equalsStatic(this.g._inner[p].al, h)) {
3596
- e = this.g._inner[p];
3633
+ for (var p = 0; p < this.h.count; p++) {
3634
+ if (igniteuiWebcomponentsCore.Base.equalsStatic(this.h._inner[p].al, h)) {
3635
+ e = this.h._inner[p];
3597
3636
  break;
3598
3637
  }
3599
3638
  }
@@ -3610,7 +3649,7 @@
3610
3649
  return ((function () {
3611
3650
  var $ret = new PropertyEditorDataSource();
3612
3651
  $ret.b = _this.b;
3613
- $ret.l = _this.l;
3652
+ $ret.n = _this.n;
3614
3653
  return $ret;
3615
3654
  })());
3616
3655
  };
@@ -3782,6 +3821,11 @@
3782
3821
  configurable: true
3783
3822
  });
3784
3823
  IgcPropertyEditorDescriptionObject.prototype.findByName = function (name) {
3824
+ if (this.findEphemera) {
3825
+ if (name && name.indexOf("@@e:") == 0) {
3826
+ return this.findEphemera(name);
3827
+ }
3828
+ }
3785
3829
  if (this.properties != null && this.properties.findByName && this.properties.findByName(name)) {
3786
3830
  return this.properties.findByName(name);
3787
3831
  }
@@ -4062,11 +4106,25 @@
4062
4106
  if (_super.prototype["connectedCallback"]) {
4063
4107
  _super.prototype["connectedCallback"].call(this);
4064
4108
  }
4109
+ if (this.i.connectedCallback) {
4110
+ this.i.connectedCallback();
4111
+ }
4065
4112
  if (!this._attached) {
4066
4113
  this._attached = true;
4067
4114
  this._flushQueuedAttributes();
4068
4115
  }
4069
4116
  };
4117
+ IgcPropertyEditorPropertyDescriptionComponent.prototype.disconnectedCallback = function () {
4118
+ if (_super.prototype["disconnectedCallback"]) {
4119
+ _super.prototype["disconnectedCallback"].call(this);
4120
+ }
4121
+ if (this.i.disconnectedCallback) {
4122
+ this.i.disconnectedCallback();
4123
+ }
4124
+ if (this._attached) {
4125
+ this._attached = false;
4126
+ }
4127
+ };
4070
4128
  Object.defineProperty(IgcPropertyEditorPropertyDescriptionComponent, "observedAttributes", {
4071
4129
  get: function () {
4072
4130
  if (IgcPropertyEditorPropertyDescriptionComponent._observedAttributesIgcPropertyEditorPropertyDescriptionComponent == null) {
@@ -4253,15 +4311,21 @@
4253
4311
  });
4254
4312
  Object.defineProperty(IgcPropertyEditorPropertyDescriptionComponent.prototype, "complexValue", {
4255
4313
  get: function () {
4256
- if (this.i.g == null) {
4314
+ var r = this.i.g;
4315
+ if (r == null) {
4257
4316
  return null;
4258
4317
  }
4259
- if (!this.i.g.externalObject) {
4318
+ if (!r.externalObject) {
4260
4319
  var e = new IgcPropertyEditorDescriptionObject();
4261
- e._implementation = this.i.g;
4262
- this.i.g.externalObject = e;
4320
+ if (e.i.setNativeElement) {
4321
+ e.i.setNativeElement(r);
4322
+ }
4323
+ else {
4324
+ e._implementation = r;
4325
+ }
4326
+ r.externalObject = e;
4263
4327
  }
4264
- return this.i.g.externalObject;
4328
+ return r.externalObject;
4265
4329
  },
4266
4330
  set: function (v) {
4267
4331
  v == null ? this.i.g = null : this.i.g = v.i;
@@ -4303,6 +4367,11 @@
4303
4367
  configurable: true
4304
4368
  });
4305
4369
  IgcPropertyEditorPropertyDescriptionComponent.prototype.findByName = function (name) {
4370
+ if (this.findEphemera) {
4371
+ if (name && name.indexOf("@@e:") == 0) {
4372
+ return this.findEphemera(name);
4373
+ }
4374
+ }
4306
4375
  if (this.complexValue && this.complexValue.name && this.complexValue.name == name) {
4307
4376
  return this.complexValue;
4308
4377
  }
@@ -4391,6 +4460,7 @@
4391
4460
  }
4392
4461
  };
4393
4462
  this.i.buttonClicked = igniteuiWebcomponentsCore.delegateCombine(this.i.buttonClicked, this._buttonClicked_wrapped);
4463
+ ;
4394
4464
  },
4395
4465
  enumerable: true,
4396
4466
  configurable: true
@@ -4418,6 +4488,7 @@
4418
4488
  }
4419
4489
  };
4420
4490
  this.i.changed = igniteuiWebcomponentsCore.delegateCombine(this.i.changed, this._changed_wrapped);
4491
+ ;
4421
4492
  },
4422
4493
  enumerable: true,
4423
4494
  configurable: true
@@ -4445,6 +4516,7 @@
4445
4516
  }
4446
4517
  };
4447
4518
  this.i.targetPropertyUpdating = igniteuiWebcomponentsCore.delegateCombine(this.i.targetPropertyUpdating, this._targetPropertyUpdating_wrapped);
4519
+ ;
4448
4520
  },
4449
4521
  enumerable: true,
4450
4522
  configurable: true
@@ -4744,6 +4816,7 @@
4744
4816
  case 5: return a.toString();
4745
4817
  case 16: return a;
4746
4818
  case 20: return a;
4819
+ case 22: return a;
4747
4820
  case 15: return a;
4748
4821
  case 3: return a;
4749
4822
  case 19: return a;
@@ -5181,11 +5254,11 @@
5181
5254
  if (this.k == null) {
5182
5255
  this.k = new PropertyEditorDataSource();
5183
5256
  }
5184
- this.k.l = this.b2;
5257
+ this.k.n = this.b2;
5185
5258
  }
5186
5259
  if (this.properties == null || this.properties.count == 0) {
5187
- if (this.k.g != null) {
5188
- this.actualProperties = this.k.g;
5260
+ if (this.k.h != null) {
5261
+ this.actualProperties = this.k.h;
5189
5262
  }
5190
5263
  }
5191
5264
  else {
@@ -5231,8 +5304,8 @@
5231
5304
  this.k.b = this.h;
5232
5305
  }
5233
5306
  if (this.properties == null || this.properties.count == 0) {
5234
- if (this.k.g != null) {
5235
- this.actualProperties = this.k.g;
5307
+ if (this.k.h != null) {
5308
+ this.actualProperties = this.k.h;
5236
5309
  }
5237
5310
  }
5238
5311
  else {
@@ -5326,7 +5399,7 @@
5326
5399
  var c = _c.value;
5327
5400
  var d = c.al;
5328
5401
  if (this.k != null) {
5329
- var e = this.k.d(d, false);
5402
+ var e = this.k.e(d, false);
5330
5403
  if (e != null) {
5331
5404
  if (c.p(e)) {
5332
5405
  b = true;
@@ -5376,11 +5449,11 @@
5376
5449
  var _loop_1 = function (b) {
5377
5450
  var c = b;
5378
5451
  var d = this_1.c.getItemAtIndex(b);
5379
- if (this_1.v.a3 < c + 1) {
5380
- this_1.v.a5(c, 1, this_1.ar);
5452
+ if (this_1.v.a5 < c + 1) {
5453
+ this_1.v.a7(c, 1, this_1.ar);
5381
5454
  }
5382
5455
  else {
5383
- this_1.v.bb(c, 1, this_1.ar);
5456
+ this_1.v.bd(c, 1, this_1.ar);
5384
5457
  }
5385
5458
  if (this_1.an.count < c + 1) {
5386
5459
  this_1.an.add(new igniteuiWebcomponentsCore.List$1(igniteuiWebcomponentsCore.NativeUIComponent.$, 0));
@@ -5397,16 +5470,16 @@
5397
5470
  }
5398
5471
  i.ar = new igniteuiWebcomponentsCore.Thickness(1, 5, 5, 5, 0);
5399
5472
  _this.v.aw(i);
5400
- _this.v.a9(i, c);
5401
- _this.v.a8(i, f);
5473
+ _this.v.bb(i, c);
5474
+ _this.v.ba(i, f);
5402
5475
  e.add(i);
5403
5476
  });
5404
5477
  }
5405
- if (this_1.v.a0 < f + 1) {
5406
- this_1.v.a4(f, 1, g.h);
5478
+ if (this_1.v.a2 < f + 1) {
5479
+ this_1.v.a6(f, 1, g.h);
5407
5480
  }
5408
5481
  else {
5409
- this_1.v.ba(f, 1, g.h);
5482
+ this_1.v.bc(f, 1, g.h);
5410
5483
  }
5411
5484
  var h = e._inner[f];
5412
5485
  var i = "PropertyPath";
@@ -5439,8 +5512,8 @@
5439
5512
  var n = new igniteuiWebcomponentsCore.HashSet$1(igniteuiWebcomponentsCore.NativeUIComponent.$, 0);
5440
5513
  for (var o = this.v.av - 1; o >= 0; o--) {
5441
5514
  var p = this.v.au(o);
5442
- var q = this.v.a2(p);
5443
- var r = this.v.a1(p);
5515
+ var q = this.v.a4(p);
5516
+ var r = this.v.a3(p);
5444
5517
  if ((q + 1) > a || (r + 1) > this.ap.count) {
5445
5518
  n.add_1(p);
5446
5519
  }
@@ -5462,11 +5535,11 @@
5462
5535
  this.an.removeAt(u);
5463
5536
  }
5464
5537
  }
5465
- while (this.v.a3 > a) {
5466
- this.v.a7(this.v.a3 - 1);
5538
+ while (this.v.a5 > a) {
5539
+ this.v.a9(this.v.a5 - 1);
5467
5540
  }
5468
- while (this.v.a0 > this.ap.count) {
5469
- this.v.a6(this.v.a0 - 1);
5541
+ while (this.v.a2 > this.ap.count) {
5542
+ this.v.a8(this.v.a2 - 1);
5470
5543
  }
5471
5544
  };
5472
5545
  PropertyEditorPanel.prototype.dw = function (a, b) {
@@ -7029,6 +7102,11 @@
7029
7102
  configurable: true
7030
7103
  });
7031
7104
  IgcPropertyEditorPanelComponent.prototype.findByName = function (name) {
7105
+ if (this.findEphemera) {
7106
+ if (name && name.indexOf("@@e:") == 0) {
7107
+ return this.findEphemera(name);
7108
+ }
7109
+ }
7032
7110
  if (this.actualDataSource != null && this.actualDataSource.findByName && this.actualDataSource.findByName(name)) {
7033
7111
  return this.actualDataSource.findByName(name);
7034
7112
  }
@@ -8423,6 +8501,11 @@
8423
8501
  configurable: true
8424
8502
  });
8425
8503
  IgcListPanelItemModel.prototype.findByName = function (name) {
8504
+ if (this.findEphemera) {
8505
+ if (name && name.indexOf("@@e:") == 0) {
8506
+ return this.findEphemera(name);
8507
+ }
8508
+ }
8426
8509
  return null;
8427
8510
  };
8428
8511
  return IgcListPanelItemModel;
@@ -8456,15 +8539,21 @@
8456
8539
  };
8457
8540
  Object.defineProperty(IgcListPanelTemplateItemUpdatingEventArgs.prototype, "model", {
8458
8541
  get: function () {
8459
- if (this.i.a == null) {
8542
+ var r = this.i.a;
8543
+ if (r == null) {
8460
8544
  return null;
8461
8545
  }
8462
- if (!this.i.a.externalObject) {
8546
+ if (!r.externalObject) {
8463
8547
  var e = new IgcListPanelItemModel();
8464
- e._implementation = this.i.a;
8465
- this.i.a.externalObject = e;
8548
+ if (e.i.setNativeElement) {
8549
+ e.i.setNativeElement(r);
8550
+ }
8551
+ else {
8552
+ e._implementation = r;
8553
+ }
8554
+ r.externalObject = e;
8466
8555
  }
8467
- return this.i.a.externalObject;
8556
+ return r.externalObject;
8468
8557
  },
8469
8558
  set: function (v) {
8470
8559
  v == null ? this.i.a = null : this.i.a = v.i;
@@ -8927,6 +9016,11 @@
8927
9016
  configurable: true
8928
9017
  });
8929
9018
  IgcListPanelComponent.prototype.findByName = function (name) {
9019
+ if (this.findEphemera) {
9020
+ if (name && name.indexOf("@@e:") == 0) {
9021
+ return this.findEphemera(name);
9022
+ }
9023
+ }
8930
9024
  return null;
8931
9025
  };
8932
9026
  Object.defineProperty(IgcListPanelComponent.prototype, "hasUserValues", {
@@ -9062,6 +9156,7 @@
9062
9156
  }
9063
9157
  };
9064
9158
  this.i.contentRefreshed = igniteuiWebcomponentsCore.delegateCombine(this.i.contentRefreshed, this._contentRefreshed_wrapped);
9159
+ ;
9065
9160
  },
9066
9161
  enumerable: true,
9067
9162
  configurable: true
@@ -9089,6 +9184,7 @@
9089
9184
  }
9090
9185
  };
9091
9186
  this.i.rowUpdating = igniteuiWebcomponentsCore.delegateCombine(this.i.rowUpdating, this._rowUpdating_wrapped);
9187
+ ;
9092
9188
  },
9093
9189
  enumerable: true,
9094
9190
  configurable: true
@@ -9116,6 +9212,7 @@
9116
9212
  }
9117
9213
  };
9118
9214
  this.i.itemWidthRequested = igniteuiWebcomponentsCore.delegateCombine(this.i.itemWidthRequested, this._itemWidthRequested_wrapped);
9215
+ ;
9119
9216
  },
9120
9217
  enumerable: true,
9121
9218
  configurable: true
@@ -9143,6 +9240,7 @@
9143
9240
  }
9144
9241
  };
9145
9242
  this.i.itemHeightRequested = igniteuiWebcomponentsCore.delegateCombine(this.i.itemHeightRequested, this._itemHeightRequested_wrapped);
9243
+ ;
9146
9244
  },
9147
9245
  enumerable: true,
9148
9246
  configurable: true
@@ -9345,8 +9443,8 @@
9345
9443
  }
9346
9444
  var b = a.rootWrapper;
9347
9445
  if (null != b) {
9348
- igniteuiWebcomponentsCore.NativeUI.o(b, this.c.a9);
9349
- igniteuiWebcomponentsCore.NativeUI.k(b, this.c.a6);
9446
+ igniteuiWebcomponentsCore.NativeUI.o(b, this.c.ba);
9447
+ igniteuiWebcomponentsCore.NativeUI.k(b, this.c.a7);
9350
9448
  }
9351
9449
  };
9352
9450
  ToolPanelView.prototype.f = function () {
@@ -9813,12 +9911,18 @@
9813
9911
  b = new ToolActionIconButton();
9814
9912
  break;
9815
9913
  case 4:
9816
- b = new ToolActionNumberInput();
9914
+ b = new ToolActionLabel();
9817
9915
  break;
9818
9916
  case 5:
9819
- b = new ToolActionSeparator();
9917
+ b = new ToolActionNumberInput();
9820
9918
  break;
9821
9919
  case 6:
9920
+ b = new ToolActionRadio();
9921
+ break;
9922
+ case 7:
9923
+ b = new ToolActionSeparator();
9924
+ break;
9925
+ case 8:
9822
9926
  b = new ToolActionIconMenu();
9823
9927
  break;
9824
9928
  case 0: return null;
@@ -9843,6 +9947,163 @@
9843
9947
  ToolAction.$t = igniteuiWebcomponentsCore.markType(ToolAction, 'ToolAction', igniteuiWebcomponentsCore.Base.$, [igniteuiWebcomponentsCore.INotifyPropertyChanged_$type]);
9844
9948
  return ToolAction;
9845
9949
  }(igniteuiWebcomponentsCore.Base));
9950
+ /**
9951
+ * @hidden
9952
+ */
9953
+ var ToolActionLabel = /** @class */ /*@__PURE__*/ (function (_super) {
9954
+ tslib_1.__extends(ToolActionLabel, _super);
9955
+ function ToolActionLabel() {
9956
+ return _super !== null && _super.apply(this, arguments) || this;
9957
+ }
9958
+ ToolActionLabel.prototype.get_f = function () {
9959
+ return 4;
9960
+ };
9961
+ ToolActionLabel.prototype.bf = function (a, b, c, d, e, f, g) {
9962
+ if (a.w == null || igniteuiWebcomponentsCore.EnumUtil.getEnumValue(igniteuiWebcomponentsCore.ToolActionType_$type, a.w) != this.f) {
9963
+ a.a0 = b;
9964
+ if (g.a == 1) {
9965
+ b.d = 0;
9966
+ }
9967
+ else {
9968
+ b.d = 3;
9969
+ }
9970
+ b.a7(0, 2, 1);
9971
+ b.a6(0, 1, igniteuiWebcomponentsCore.isNaN_(g.e) ? 0 : g.e);
9972
+ b.a6(1, 1, igniteuiWebcomponentsCore.isNaN_(g.g) ? 0 : g.g);
9973
+ b.as = new igniteuiWebcomponentsCore.Thickness(1, this.r, this.t, this.s, this.q);
9974
+ if (b.av == 0) {
9975
+ b.aw(c);
9976
+ }
9977
+ b.bb(c, 0);
9978
+ b.ba(c, 1);
9979
+ c.e = 1;
9980
+ b.a1 = igniteuiWebcomponentsCore.runOn(this, this.be);
9981
+ }
9982
+ b.h = f.a.j;
9983
+ b.aj = igniteuiWebcomponentsCore.BrushUtil.g(0, 0, 0, 0);
9984
+ c.au = this.ap;
9985
+ c.al = igniteuiWebcomponentsCore.BrushUtil.g(255, 20, 20, 20);
9986
+ };
9987
+ ToolActionLabel.prototype.be = function (a, b) {
9988
+ this.a9(this.b(false), this);
9989
+ };
9990
+ ToolActionLabel.prototype.bb = function (a, b, c, d) {
9991
+ var _this = this;
9992
+ _super.prototype.bb.call(this, a, b, c, d);
9993
+ var e = c.b;
9994
+ if (e.a0 == null || (e.w == null || igniteuiWebcomponentsCore.EnumUtil.getEnumValue(igniteuiWebcomponentsCore.ToolActionType_$type, e.w) != this.f)) {
9995
+ igniteuiWebcomponentsCore.NativeUIComponent.ab(b.l.r(), [7, 3], function (f) {
9996
+ var g = f[0];
9997
+ var h = f[1];
9998
+ e.a0 = g;
9999
+ _this.bf(e, g, h, a, b, c, d);
10000
+ });
10001
+ ;
10002
+ }
10003
+ else {
10004
+ var f = e.a0;
10005
+ var g = f.au(0);
10006
+ this.bf(e, f, g, a, b, c, d);
10007
+ }
10008
+ };
10009
+ ToolActionLabel.$t = igniteuiWebcomponentsCore.markType(ToolActionLabel, 'ToolActionLabel', ToolAction.$);
10010
+ return ToolActionLabel;
10011
+ }(ToolAction));
10012
+ /**
10013
+ * @hidden
10014
+ */
10015
+ var ToolActionRadio = /** @class */ /*@__PURE__*/ (function (_super) {
10016
+ tslib_1.__extends(ToolActionRadio, _super);
10017
+ function ToolActionRadio() {
10018
+ var _this = _super !== null && _super.apply(this, arguments) || this;
10019
+ _this.bf = null;
10020
+ _this.be = null;
10021
+ return _this;
10022
+ }
10023
+ ToolActionRadio.prototype.get_f = function () {
10024
+ return 6;
10025
+ };
10026
+ ToolActionRadio.prototype.b = function (a) {
10027
+ var b = new ToolActionEventDetail();
10028
+ b.a = this;
10029
+ b.b = this.f;
10030
+ b.d = a;
10031
+ if (this.be != null) {
10032
+ b.c = this.be.aw;
10033
+ }
10034
+ return b;
10035
+ };
10036
+ ToolActionRadio.prototype.x = function () {
10037
+ return this.be.aw;
10038
+ };
10039
+ ToolActionRadio.prototype.bg = function () {
10040
+ if (this.be != null) {
10041
+ this.be.aw = false;
10042
+ }
10043
+ };
10044
+ ToolActionRadio.prototype.o = function (a, b) {
10045
+ return 30;
10046
+ };
10047
+ ToolActionRadio.prototype.bi = function (a, b, c, d, e, f, g, h) {
10048
+ if (a.w == null || igniteuiWebcomponentsCore.EnumUtil.getEnumValue(igniteuiWebcomponentsCore.ToolActionType_$type, a.w) != this.f) {
10049
+ a.a0 = b;
10050
+ if (h.a == 1) {
10051
+ b.d = 0;
10052
+ }
10053
+ else {
10054
+ b.d = 3;
10055
+ }
10056
+ b.a7(0, 2, 1);
10057
+ b.a6(0, 1, igniteuiWebcomponentsCore.isNaN_(h.e) ? 0 : h.e);
10058
+ b.a6(1, 1, igniteuiWebcomponentsCore.isNaN_(h.g) ? 0 : h.g);
10059
+ b.a6(1, 2, 1);
10060
+ b.as = new igniteuiWebcomponentsCore.Thickness(1, this.r, this.t, this.s, this.q);
10061
+ if (b.av == 0) {
10062
+ b.aw(c);
10063
+ b.aw(d);
10064
+ }
10065
+ b.bb(c, 0);
10066
+ b.ba(c, 1);
10067
+ b.bb(d, 0);
10068
+ b.ba(d, 2);
10069
+ this.be = d;
10070
+ d.ax = 25;
10071
+ d.av = true;
10072
+ d.d = 2;
10073
+ d.e = 1;
10074
+ d.au = igniteuiWebcomponentsCore.runOn(this, this.bh);
10075
+ c.e = 1;
10076
+ }
10077
+ b.h = g.a.j;
10078
+ c.au = this.ap;
10079
+ c.al = igniteuiWebcomponentsCore.BrushUtil.g(255, 20, 20, 20);
10080
+ };
10081
+ ToolActionRadio.prototype.bh = function (a, b) {
10082
+ this.a9(this.b(true), this);
10083
+ };
10084
+ ToolActionRadio.prototype.bb = function (a, b, c, d) {
10085
+ var _this = this;
10086
+ _super.prototype.bb.call(this, a, b, c, d);
10087
+ var e = c.b;
10088
+ if (e.a0 == null || (e.w == null || igniteuiWebcomponentsCore.EnumUtil.getEnumValue(igniteuiWebcomponentsCore.ToolActionType_$type, e.w) != this.f)) {
10089
+ igniteuiWebcomponentsCore.NativeUIComponent.ab(b.l.r(), [7, 3, 6], function (f) {
10090
+ var g = f[0];
10091
+ var h = f[1];
10092
+ var i = f[2];
10093
+ e.a0 = g;
10094
+ _this.bi(e, g, h, i, a, b, c, d);
10095
+ });
10096
+ }
10097
+ else {
10098
+ var f = e.a0;
10099
+ var g = f.au(0);
10100
+ var h = f.au(1);
10101
+ this.bi(e, f, g, h, a, b, c, d);
10102
+ }
10103
+ };
10104
+ ToolActionRadio.$t = igniteuiWebcomponentsCore.markType(ToolActionRadio, 'ToolActionRadio', ToolAction.$);
10105
+ return ToolActionRadio;
10106
+ }(ToolAction));
9846
10107
  /**
9847
10108
  * @hidden
9848
10109
  */
@@ -9852,7 +10113,7 @@
9852
10113
  return _super !== null && _super.apply(this, arguments) || this;
9853
10114
  }
9854
10115
  ToolActionSeparator.prototype.get_f = function () {
9855
- return 5;
10116
+ return 7;
9856
10117
  };
9857
10118
  ToolActionSeparator.prototype.a5 = function (a, b) {
9858
10119
  _super.prototype.a5.call(this, a, b);
@@ -9937,14 +10198,14 @@
9937
10198
  else {
9938
10199
  b.d = 3;
9939
10200
  }
9940
- b.a5(0, 2, 1);
9941
- b.a4(0, 1, igniteuiWebcomponentsCore.isNaN_(g.f) ? 0 : g.f);
10201
+ b.a7(0, 2, 1);
10202
+ b.a6(0, 1, igniteuiWebcomponentsCore.isNaN_(g.f) ? 0 : g.f);
9942
10203
  b.as = new igniteuiWebcomponentsCore.Thickness(1, this.r, this.t, this.s, this.q);
9943
10204
  if (b.av == 0) {
9944
10205
  b.aw(c);
9945
10206
  }
9946
- b.a9(c, 0);
9947
- b.a8(c, 0);
10207
+ b.bb(c, 0);
10208
+ b.ba(c, 0);
9948
10209
  this.be = c;
9949
10210
  this.be.av = 2;
9950
10211
  this.be.au = igniteuiWebcomponentsCore.runOn(this, this.bf);
@@ -9997,9 +10258,9 @@
9997
10258
  else {
9998
10259
  b.d = 3;
9999
10260
  }
10000
- b.a5(0, 2, 1);
10001
- b.a4(0, 1, igniteuiWebcomponentsCore.isNaN_(g.e) ? 0 : g.e);
10002
- b.a4(1, 2, 1);
10261
+ b.a7(0, 2, 1);
10262
+ b.a6(0, 1, igniteuiWebcomponentsCore.isNaN_(g.e) ? 0 : g.e);
10263
+ b.a6(1, 2, 1);
10003
10264
  b.as = new igniteuiWebcomponentsCore.Thickness(1, this.r, this.t, this.s, this.q);
10004
10265
  if (b.av == 0) {
10005
10266
  b.aw(c);
@@ -10012,8 +10273,8 @@
10012
10273
  b.aq = new igniteuiWebcomponentsCore.Thickness(1, 0, 0, 0, 2);
10013
10274
  c.au = this.ap;
10014
10275
  c.al = igniteuiWebcomponentsCore.BrushUtil.g(255, 20, 20, 20);
10015
- b.a9(c, 0);
10016
- b.a8(c, 1);
10276
+ b.bb(c, 0);
10277
+ b.ba(c, 1);
10017
10278
  };
10018
10279
  ToolActionGroupHeader.prototype.bb = function (a, b, c, d) {
10019
10280
  var _this = this;
@@ -10186,14 +10447,14 @@
10186
10447
  else {
10187
10448
  b.d = 3;
10188
10449
  }
10189
- b.a5(0, 2, 1);
10190
- b.a4(0, 1, igniteuiWebcomponentsCore.isNaN_(g.f) ? 0 : g.f);
10450
+ b.a7(0, 2, 1);
10451
+ b.a6(0, 1, igniteuiWebcomponentsCore.isNaN_(g.f) ? 0 : g.f);
10191
10452
  b.as = new igniteuiWebcomponentsCore.Thickness(1, this.r, this.t, this.s, this.q);
10192
10453
  if (b.av == 0) {
10193
10454
  b.aw(c);
10194
10455
  }
10195
- b.a9(c, 0);
10196
- b.a8(c, 0);
10456
+ b.bb(c, 0);
10457
+ b.ba(c, 0);
10197
10458
  this.bz = c;
10198
10459
  this.bz.av = 2;
10199
10460
  this.bz.au = igniteuiWebcomponentsCore.runOn(this, this.b0);
@@ -10264,19 +10525,19 @@
10264
10525
  else {
10265
10526
  b.d = 3;
10266
10527
  }
10267
- b.a5(0, 2, 1);
10268
- b.a4(0, 1, igniteuiWebcomponentsCore.isNaN_(h.e) ? 0 : h.e);
10269
- b.a4(1, 1, igniteuiWebcomponentsCore.isNaN_(h.g) ? 0 : h.g);
10270
- b.a4(1, 2, 1);
10528
+ b.a7(0, 2, 1);
10529
+ b.a6(0, 1, igniteuiWebcomponentsCore.isNaN_(h.e) ? 0 : h.e);
10530
+ b.a6(1, 1, igniteuiWebcomponentsCore.isNaN_(h.g) ? 0 : h.g);
10531
+ b.a6(1, 2, 1);
10271
10532
  b.as = new igniteuiWebcomponentsCore.Thickness(1, this.r, this.t, this.s, this.q);
10272
10533
  if (b.av == 0) {
10273
10534
  b.aw(c);
10274
10535
  b.aw(d);
10275
10536
  }
10276
- b.a9(c, 0);
10277
- b.a8(c, 1);
10278
- b.a9(d, 0);
10279
- b.a8(d, 2);
10537
+ b.bb(c, 0);
10538
+ b.ba(c, 1);
10539
+ b.bb(d, 0);
10540
+ b.ba(d, 2);
10280
10541
  this.be = d;
10281
10542
  d.av = true;
10282
10543
  d.d = 2;
@@ -10325,7 +10586,7 @@
10325
10586
  return _this;
10326
10587
  }
10327
10588
  ToolActionNumberInput.prototype.get_f = function () {
10328
- return 4;
10589
+ return 5;
10329
10590
  };
10330
10591
  ToolActionNumberInput.prototype.x = function () {
10331
10592
  return this.bf();
@@ -10342,19 +10603,19 @@
10342
10603
  else {
10343
10604
  b.d = 3;
10344
10605
  }
10345
- b.a5(0, 2, 1);
10346
- b.a4(0, 1, igniteuiWebcomponentsCore.isNaN_(h.e) ? 0 : h.e);
10347
- b.a4(1, 1, igniteuiWebcomponentsCore.isNaN_(h.g) ? 0 : h.g);
10348
- b.a4(1, 2, 1);
10606
+ b.a7(0, 2, 1);
10607
+ b.a6(0, 1, igniteuiWebcomponentsCore.isNaN_(h.e) ? 0 : h.e);
10608
+ b.a6(1, 1, igniteuiWebcomponentsCore.isNaN_(h.g) ? 0 : h.g);
10609
+ b.a6(1, 2, 1);
10349
10610
  b.as = new igniteuiWebcomponentsCore.Thickness(1, this.r, this.t, this.s, this.q);
10350
10611
  if (b.av == 0) {
10351
10612
  b.aw(c);
10352
10613
  b.aw(d);
10353
10614
  }
10354
- b.a9(c, 0);
10355
- b.a8(c, 1);
10356
- b.a9(d, 0);
10357
- b.a8(d, 2);
10615
+ b.bb(c, 0);
10616
+ b.ba(c, 1);
10617
+ b.bb(d, 0);
10618
+ b.ba(d, 2);
10358
10619
  this.be = d;
10359
10620
  d.n = 100;
10360
10621
  d.au = 2;
@@ -10491,8 +10752,8 @@
10491
10752
  _this.v = new igniteuiWebcomponentsCore.Dictionary$2(igniteuiWebcomponentsCore.String_$type, ToolAction.$, 0);
10492
10753
  _this.m = null;
10493
10754
  _this.a = null;
10494
- _this.a4 = ToolPanel.a7;
10495
10755
  _this.a5 = ToolPanel.a8;
10756
+ _this.a6 = ToolPanel.a9;
10496
10757
  _this.b = null;
10497
10758
  _this.z = Number.POSITIVE_INFINITY;
10498
10759
  _this.i = ToolPanel.j;
@@ -10657,7 +10918,7 @@
10657
10918
  }
10658
10919
  this.t = false;
10659
10920
  this.al();
10660
- this.a3();
10921
+ this.a4();
10661
10922
  for (var a = 0; a < this.d.count; a++) {
10662
10923
  this.as(this.d._inner[a]);
10663
10924
  }
@@ -10684,6 +10945,15 @@
10684
10945
  }
10685
10946
  }
10686
10947
  }
10948
+ for (var d = 0; d < this.d.count; d++) {
10949
+ if (this.d._inner[d].f == 6) {
10950
+ var e = this.d._inner[d].bf;
10951
+ if (!this.x.containsKey(e)) {
10952
+ this.x.item(e, new igniteuiWebcomponentsCore.List$1(ToolAction.$, 0));
10953
+ }
10954
+ this.x.item(e).add(this.d._inner[d]);
10955
+ }
10956
+ }
10687
10957
  };
10688
10958
  ToolPanel.prototype.u = function (a) {
10689
10959
  if (a.ao == null) {
@@ -10734,7 +11004,7 @@
10734
11004
  }
10735
11005
  }
10736
11006
  };
10737
- ToolPanel.prototype.a3 = function () {
11007
+ ToolPanel.prototype.a4 = function () {
10738
11008
  this.f = new ToolActionMeasurementContext();
10739
11009
  this.f.a = this.k;
10740
11010
  this.f.b = this.z;
@@ -10752,6 +11022,19 @@
10752
11022
  this.b.bt();
10753
11023
  }
10754
11024
  };
11025
+ ToolPanel.prototype.a3 = function (a) {
11026
+ var b = a.bf;
11027
+ var c = a.ao;
11028
+ if (this.x != null) {
11029
+ if (this.x.containsKey(b)) {
11030
+ for (var d = 0; d < this.x.item(b).count; d++) {
11031
+ if (this.x.item(b)._inner[d].ao != c) {
11032
+ this.x.item(b)._inner[d].bg();
11033
+ }
11034
+ }
11035
+ }
11036
+ }
11037
+ };
10755
11038
  ToolPanel.prototype.ar = function (a, b) {
10756
11039
  this.av();
10757
11040
  };
@@ -10817,28 +11100,28 @@
10817
11100
  break;
10818
11101
  }
10819
11102
  };
10820
- Object.defineProperty(ToolPanel.prototype, "a6", {
11103
+ Object.defineProperty(ToolPanel.prototype, "a7", {
10821
11104
  get: function () {
10822
- return this.a4;
11105
+ return this.a5;
10823
11106
  },
10824
11107
  set: function (a) {
10825
- var b = this.a4;
10826
- this.a4 = a;
10827
- if (b != this.a4) {
11108
+ var b = this.a5;
11109
+ this.a5 = a;
11110
+ if (b != this.a5) {
10828
11111
  this.ax("BackgroundColor", b, a);
10829
11112
  }
10830
11113
  },
10831
11114
  enumerable: true,
10832
11115
  configurable: true
10833
11116
  });
10834
- Object.defineProperty(ToolPanel.prototype, "a9", {
11117
+ Object.defineProperty(ToolPanel.prototype, "ba", {
10835
11118
  get: function () {
10836
- return this.a5;
11119
+ return this.a6;
10837
11120
  },
10838
11121
  set: function (a) {
10839
- var b = this.a5;
10840
- this.a5 = a;
10841
- if (b != this.a5) {
11122
+ var b = this.a6;
11123
+ this.a6 = a;
11124
+ if (b != this.a6) {
10842
11125
  this.ax("TextColor", b, a);
10843
11126
  }
10844
11127
  },
@@ -10867,10 +11150,13 @@
10867
11150
  return $ret;
10868
11151
  })()));
10869
11152
  }
11153
+ if (a.f == 6) {
11154
+ this.a3(a);
11155
+ }
10870
11156
  };
10871
11157
  ToolPanel.$t = igniteuiWebcomponentsCore.markType(ToolPanel, 'ToolPanel', igniteuiWebcomponentsCore.Base.$, [igniteuiWebcomponentsCore.INotifyPropertyChanged_$type]);
10872
- ToolPanel.a7 = igniteuiWebcomponentsCore.BrushUtil.g(255, 248, 248, 248);
10873
- ToolPanel.a8 = igniteuiWebcomponentsCore.BrushUtil.g(255, 24, 29, 31);
11158
+ ToolPanel.a8 = igniteuiWebcomponentsCore.BrushUtil.g(255, 248, 248, 248);
11159
+ ToolPanel.a9 = igniteuiWebcomponentsCore.BrushUtil.g(255, 24, 29, 31);
10874
11160
  ToolPanel.j = 0;
10875
11161
  return ToolPanel;
10876
11162
  }(igniteuiWebcomponentsCore.Base));
@@ -10956,17 +11242,18 @@
10956
11242
  };
10957
11243
  Object.defineProperty(IgcToolActionEventDetail.prototype, "action", {
10958
11244
  get: function () {
10959
- if (this.i.a == null) {
11245
+ var r = this.i.a;
11246
+ if (r == null) {
10960
11247
  return null;
10961
11248
  }
10962
- if (!this.i.a.externalObject) {
10963
- var e = IgcToolActionComponent._createFromInternal(this.i.a);
11249
+ if (!r.externalObject) {
11250
+ var e = IgcToolActionComponent._createFromInternal(r);
10964
11251
  if (e) {
10965
- e._implementation = this.i.a;
11252
+ e._implementation = r;
10966
11253
  }
10967
- this.i.a.externalObject = e;
11254
+ r.externalObject = e;
10968
11255
  }
10969
- return this.i.a.externalObject;
11256
+ return r.externalObject;
10970
11257
  },
10971
11258
  set: function (v) {
10972
11259
  v == null ? this.i.a = null : this.i.a = v.i;
@@ -11035,6 +11322,11 @@
11035
11322
  configurable: true
11036
11323
  });
11037
11324
  IgcToolActionEventDetail.prototype.findByName = function (name) {
11325
+ if (this.findEphemera) {
11326
+ if (name && name.indexOf("@@e:") == 0) {
11327
+ return this.findEphemera(name);
11328
+ }
11329
+ }
11038
11330
  if (this.action && this.action.name && this.action.name == name) {
11039
11331
  return this.action;
11040
11332
  }
@@ -11143,15 +11435,21 @@
11143
11435
  });
11144
11436
  Object.defineProperty(IgcToolActionPerformedEventArgs.prototype, "detail", {
11145
11437
  get: function () {
11146
- if (this.i.a == null) {
11438
+ var r = this.i.a;
11439
+ if (r == null) {
11147
11440
  return null;
11148
11441
  }
11149
- if (!this.i.a.externalObject) {
11442
+ if (!r.externalObject) {
11150
11443
  var e = new IgcToolActionEventDetail();
11151
- e._implementation = this.i.a;
11152
- this.i.a.externalObject = e;
11444
+ if (e.i.setNativeElement) {
11445
+ e.i.setNativeElement(r);
11446
+ }
11447
+ else {
11448
+ e._implementation = r;
11449
+ }
11450
+ r.externalObject = e;
11153
11451
  }
11154
- return this.i.a.externalObject;
11452
+ return r.externalObject;
11155
11453
  },
11156
11454
  set: function (v) {
11157
11455
  v == null ? this.i.a = null : this.i.a = v.i;
@@ -11293,11 +11591,25 @@
11293
11591
  if (_super.prototype["connectedCallback"]) {
11294
11592
  _super.prototype["connectedCallback"].call(this);
11295
11593
  }
11594
+ if (this.i.connectedCallback) {
11595
+ this.i.connectedCallback();
11596
+ }
11296
11597
  if (!this._attached) {
11297
11598
  this._attached = true;
11298
11599
  this._flushQueuedAttributes();
11299
11600
  }
11300
11601
  };
11602
+ IgcToolActionComponent.prototype.disconnectedCallback = function () {
11603
+ if (_super.prototype["disconnectedCallback"]) {
11604
+ _super.prototype["disconnectedCallback"].call(this);
11605
+ }
11606
+ if (this.i.disconnectedCallback) {
11607
+ this.i.disconnectedCallback();
11608
+ }
11609
+ if (this._attached) {
11610
+ this._attached = false;
11611
+ }
11612
+ };
11301
11613
  Object.defineProperty(IgcToolActionComponent, "observedAttributes", {
11302
11614
  get: function () {
11303
11615
  if (IgcToolActionComponent._observedAttributesIgcToolActionComponent == null) {
@@ -11459,6 +11771,11 @@
11459
11771
  configurable: true
11460
11772
  });
11461
11773
  IgcToolActionComponent.prototype.findByName = function (name) {
11774
+ if (this.findEphemera) {
11775
+ if (name && name.indexOf("@@e:") == 0) {
11776
+ return this.findEphemera(name);
11777
+ }
11778
+ }
11462
11779
  return null;
11463
11780
  };
11464
11781
  Object.defineProperty(IgcToolActionComponent.prototype, "hasUserValues", {
@@ -11544,6 +11861,7 @@
11544
11861
  }
11545
11862
  };
11546
11863
  this.i.onCommand = igniteuiWebcomponentsCore.delegateCombine(this.i.onCommand, this._onCommand_wrapped);
11864
+ ;
11547
11865
  },
11548
11866
  enumerable: true,
11549
11867
  configurable: true
@@ -11571,6 +11889,7 @@
11571
11889
  }
11572
11890
  };
11573
11891
  this.i.performed = igniteuiWebcomponentsCore.delegateCombine(this.i.performed, this._performed_wrapped);
11892
+ ;
11574
11893
  },
11575
11894
  enumerable: true,
11576
11895
  configurable: true
@@ -11931,11 +12250,11 @@
11931
12250
  * Gets or sets the color to use for the background of the component.
11932
12251
  */
11933
12252
  get: function () {
11934
- return igniteuiWebcomponentsCore.brushToString(this.i.a6);
12253
+ return igniteuiWebcomponentsCore.brushToString(this.i.a7);
11935
12254
  },
11936
12255
  set: function (v) {
11937
- this.i.a6 = igniteuiWebcomponentsCore.stringToBrush(v);
11938
- this._a("backgroundColor", igniteuiWebcomponentsCore.brushToString(this.i.a6));
12256
+ this.i.a7 = igniteuiWebcomponentsCore.stringToBrush(v);
12257
+ this._a("backgroundColor", igniteuiWebcomponentsCore.brushToString(this.i.a7));
11939
12258
  },
11940
12259
  enumerable: true,
11941
12260
  configurable: true
@@ -11945,11 +12264,11 @@
11945
12264
  * Gets or sets the color to use for the text of the component.
11946
12265
  */
11947
12266
  get: function () {
11948
- return igniteuiWebcomponentsCore.brushToString(this.i.a9);
12267
+ return igniteuiWebcomponentsCore.brushToString(this.i.ba);
11949
12268
  },
11950
12269
  set: function (v) {
11951
- this.i.a9 = igniteuiWebcomponentsCore.stringToBrush(v);
11952
- this._a("textColor", igniteuiWebcomponentsCore.brushToString(this.i.a9));
12270
+ this.i.ba = igniteuiWebcomponentsCore.stringToBrush(v);
12271
+ this._a("textColor", igniteuiWebcomponentsCore.brushToString(this.i.ba));
11953
12272
  },
11954
12273
  enumerable: true,
11955
12274
  configurable: true
@@ -11969,6 +12288,11 @@
11969
12288
  configurable: true
11970
12289
  });
11971
12290
  IgcToolPanelComponent.prototype.findByName = function (name) {
12291
+ if (this.findEphemera) {
12292
+ if (name && name.indexOf("@@e:") == 0) {
12293
+ return this.findEphemera(name);
12294
+ }
12295
+ }
11972
12296
  if (this.actions != null && this.actions.findByName && this.actions.findByName(name)) {
11973
12297
  return this.actions.findByName(name);
11974
12298
  }
@@ -12054,6 +12378,7 @@
12054
12378
  }
12055
12379
  };
12056
12380
  this.i.contentRefreshed = igniteuiWebcomponentsCore.delegateCombine(this.i.contentRefreshed, this._contentRefreshed_wrapped);
12381
+ ;
12057
12382
  },
12058
12383
  enumerable: true,
12059
12384
  configurable: true
@@ -12081,6 +12406,7 @@
12081
12406
  }
12082
12407
  };
12083
12408
  this.i.onCommand = igniteuiWebcomponentsCore.delegateCombine(this.i.onCommand, this._onCommand_wrapped);
12409
+ ;
12084
12410
  },
12085
12411
  enumerable: true,
12086
12412
  configurable: true
@@ -12998,6 +13324,11 @@
12998
13324
  configurable: true
12999
13325
  });
13000
13326
  IgcToolbarComponent.prototype.findByName = function (name) {
13327
+ if (this.findEphemera) {
13328
+ if (name && name.indexOf("@@e:") == 0) {
13329
+ return this.findEphemera(name);
13330
+ }
13331
+ }
13001
13332
  if (this.autoGeneratedActions != null && this.autoGeneratedActions.findByName && this.autoGeneratedActions.findByName(name)) {
13002
13333
  return this.autoGeneratedActions.findByName(name);
13003
13334
  }
@@ -13101,11 +13432,25 @@
13101
13432
  if (_super.prototype["connectedCallback"]) {
13102
13433
  _super.prototype["connectedCallback"].call(this);
13103
13434
  }
13435
+ if (this.i.connectedCallback) {
13436
+ this.i.connectedCallback();
13437
+ }
13104
13438
  if (!this._attached) {
13105
13439
  this._attached = true;
13106
13440
  this._flushQueuedAttributes();
13107
13441
  }
13108
13442
  };
13443
+ IgcToolActionCheckboxComponent.prototype.disconnectedCallback = function () {
13444
+ if (_super.prototype["disconnectedCallback"]) {
13445
+ _super.prototype["disconnectedCallback"].call(this);
13446
+ }
13447
+ if (this.i.disconnectedCallback) {
13448
+ this.i.disconnectedCallback();
13449
+ }
13450
+ if (this._attached) {
13451
+ this._attached = false;
13452
+ }
13453
+ };
13109
13454
  Object.defineProperty(IgcToolActionCheckboxComponent, "observedAttributes", {
13110
13455
  get: function () {
13111
13456
  if (IgcToolActionCheckboxComponent._observedAttributesIgcToolActionCheckboxComponent == null) {
@@ -13178,11 +13523,25 @@
13178
13523
  if (_super.prototype["connectedCallback"]) {
13179
13524
  _super.prototype["connectedCallback"].call(this);
13180
13525
  }
13526
+ if (this.i.connectedCallback) {
13527
+ this.i.connectedCallback();
13528
+ }
13181
13529
  if (!this._attached) {
13182
13530
  this._attached = true;
13183
13531
  this._flushQueuedAttributes();
13184
13532
  }
13185
13533
  };
13534
+ IgcToolActionGroupHeaderComponent.prototype.disconnectedCallback = function () {
13535
+ if (_super.prototype["disconnectedCallback"]) {
13536
+ _super.prototype["disconnectedCallback"].call(this);
13537
+ }
13538
+ if (this.i.disconnectedCallback) {
13539
+ this.i.disconnectedCallback();
13540
+ }
13541
+ if (this._attached) {
13542
+ this._attached = false;
13543
+ }
13544
+ };
13186
13545
  Object.defineProperty(IgcToolActionGroupHeaderComponent, "observedAttributes", {
13187
13546
  get: function () {
13188
13547
  if (IgcToolActionGroupHeaderComponent._observedAttributesIgcToolActionGroupHeaderComponent == null) {
@@ -13255,11 +13614,25 @@
13255
13614
  if (_super.prototype["connectedCallback"]) {
13256
13615
  _super.prototype["connectedCallback"].call(this);
13257
13616
  }
13617
+ if (this.i.connectedCallback) {
13618
+ this.i.connectedCallback();
13619
+ }
13258
13620
  if (!this._attached) {
13259
13621
  this._attached = true;
13260
13622
  this._flushQueuedAttributes();
13261
13623
  }
13262
13624
  };
13625
+ IgcToolActionNumberInputComponent.prototype.disconnectedCallback = function () {
13626
+ if (_super.prototype["disconnectedCallback"]) {
13627
+ _super.prototype["disconnectedCallback"].call(this);
13628
+ }
13629
+ if (this.i.disconnectedCallback) {
13630
+ this.i.disconnectedCallback();
13631
+ }
13632
+ if (this._attached) {
13633
+ this._attached = false;
13634
+ }
13635
+ };
13263
13636
  Object.defineProperty(IgcToolActionNumberInputComponent, "observedAttributes", {
13264
13637
  get: function () {
13265
13638
  if (IgcToolActionNumberInputComponent._observedAttributesIgcToolActionNumberInputComponent == null) {
@@ -13332,11 +13705,25 @@
13332
13705
  if (_super.prototype["connectedCallback"]) {
13333
13706
  _super.prototype["connectedCallback"].call(this);
13334
13707
  }
13708
+ if (this.i.connectedCallback) {
13709
+ this.i.connectedCallback();
13710
+ }
13335
13711
  if (!this._attached) {
13336
13712
  this._attached = true;
13337
13713
  this._flushQueuedAttributes();
13338
13714
  }
13339
13715
  };
13716
+ IgcToolActionIconButtonComponent.prototype.disconnectedCallback = function () {
13717
+ if (_super.prototype["disconnectedCallback"]) {
13718
+ _super.prototype["disconnectedCallback"].call(this);
13719
+ }
13720
+ if (this.i.disconnectedCallback) {
13721
+ this.i.disconnectedCallback();
13722
+ }
13723
+ if (this._attached) {
13724
+ this._attached = false;
13725
+ }
13726
+ };
13340
13727
  Object.defineProperty(IgcToolActionIconButtonComponent, "observedAttributes", {
13341
13728
  get: function () {
13342
13729
  if (IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent == null) {
@@ -13404,11 +13791,25 @@
13404
13791
  if (_super.prototype["connectedCallback"]) {
13405
13792
  _super.prototype["connectedCallback"].call(this);
13406
13793
  }
13794
+ if (this.i.connectedCallback) {
13795
+ this.i.connectedCallback();
13796
+ }
13407
13797
  if (!this._attached) {
13408
13798
  this._attached = true;
13409
13799
  this._flushQueuedAttributes();
13410
13800
  }
13411
13801
  };
13802
+ IgcToolActionMenuBaseComponent.prototype.disconnectedCallback = function () {
13803
+ if (_super.prototype["disconnectedCallback"]) {
13804
+ _super.prototype["disconnectedCallback"].call(this);
13805
+ }
13806
+ if (this.i.disconnectedCallback) {
13807
+ this.i.disconnectedCallback();
13808
+ }
13809
+ if (this._attached) {
13810
+ this._attached = false;
13811
+ }
13812
+ };
13412
13813
  Object.defineProperty(IgcToolActionMenuBaseComponent, "observedAttributes", {
13413
13814
  get: function () {
13414
13815
  if (IgcToolActionMenuBaseComponent._observedAttributesIgcToolActionMenuBaseComponent == null) {
@@ -13505,11 +13906,25 @@
13505
13906
  if (_super.prototype["connectedCallback"]) {
13506
13907
  _super.prototype["connectedCallback"].call(this);
13507
13908
  }
13909
+ if (this.i.connectedCallback) {
13910
+ this.i.connectedCallback();
13911
+ }
13508
13912
  if (!this._attached) {
13509
13913
  this._attached = true;
13510
13914
  this._flushQueuedAttributes();
13511
13915
  }
13512
13916
  };
13917
+ IgcToolActionIconMenuComponent.prototype.disconnectedCallback = function () {
13918
+ if (_super.prototype["disconnectedCallback"]) {
13919
+ _super.prototype["disconnectedCallback"].call(this);
13920
+ }
13921
+ if (this.i.disconnectedCallback) {
13922
+ this.i.disconnectedCallback();
13923
+ }
13924
+ if (this._attached) {
13925
+ this._attached = false;
13926
+ }
13927
+ };
13513
13928
  Object.defineProperty(IgcToolActionIconMenuComponent, "observedAttributes", {
13514
13929
  get: function () {
13515
13930
  if (IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent == null) {
@@ -13703,6 +14118,198 @@
13703
14118
  GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
13704
14119
  */
13705
14120
 
14121
+ var IgcToolActionLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
14122
+ tslib_1.__extends(IgcToolActionLabelComponent, _super);
14123
+ function IgcToolActionLabelComponent() {
14124
+ return _super.call(this) || this;
14125
+ }
14126
+ IgcToolActionLabelComponent.prototype.createImplementation = function () {
14127
+ return new ToolActionLabel();
14128
+ };
14129
+ Object.defineProperty(IgcToolActionLabelComponent.prototype, "i", {
14130
+ /**
14131
+ * @hidden
14132
+ */
14133
+ get: function () {
14134
+ return this._implementation;
14135
+ },
14136
+ enumerable: true,
14137
+ configurable: true
14138
+ });
14139
+ IgcToolActionLabelComponent.prototype.connectedCallback = function () {
14140
+ if (_super.prototype["connectedCallback"]) {
14141
+ _super.prototype["connectedCallback"].call(this);
14142
+ }
14143
+ if (this.i.connectedCallback) {
14144
+ this.i.connectedCallback();
14145
+ }
14146
+ if (!this._attached) {
14147
+ this._attached = true;
14148
+ this._flushQueuedAttributes();
14149
+ }
14150
+ };
14151
+ IgcToolActionLabelComponent.prototype.disconnectedCallback = function () {
14152
+ if (_super.prototype["disconnectedCallback"]) {
14153
+ _super.prototype["disconnectedCallback"].call(this);
14154
+ }
14155
+ if (this.i.disconnectedCallback) {
14156
+ this.i.disconnectedCallback();
14157
+ }
14158
+ if (this._attached) {
14159
+ this._attached = false;
14160
+ }
14161
+ };
14162
+ Object.defineProperty(IgcToolActionLabelComponent, "observedAttributes", {
14163
+ get: function () {
14164
+ if (IgcToolActionLabelComponent._observedAttributesIgcToolActionLabelComponent == null) {
14165
+ var names = igniteuiWebcomponentsCore.getAllPropertyNames(IgcToolActionLabelComponent);
14166
+ for (var i = 0; i < names.length; i++) {
14167
+ names[i] = igniteuiWebcomponentsCore.toSpinal(names[i]);
14168
+ }
14169
+ IgcToolActionLabelComponent._observedAttributesIgcToolActionLabelComponent = names;
14170
+ }
14171
+ return IgcToolActionLabelComponent._observedAttributesIgcToolActionLabelComponent;
14172
+ },
14173
+ enumerable: true,
14174
+ configurable: true
14175
+ });
14176
+ IgcToolActionLabelComponent.register = function () {
14177
+ if (!IgcToolActionLabelComponent._isElementRegistered) {
14178
+ IgcToolActionLabelComponent._isElementRegistered = true;
14179
+ igniteuiWebcomponentsCore.RegisterElementHelper.registerElement(IgcToolActionLabelComponent.htmlTagName, IgcToolActionLabelComponent);
14180
+ }
14181
+ };
14182
+ IgcToolActionLabelComponent._observedAttributesIgcToolActionLabelComponent = null;
14183
+ IgcToolActionLabelComponent.htmlTagName = "igc-tool-action-label";
14184
+ IgcToolActionLabelComponent._isElementRegistered = false;
14185
+ return IgcToolActionLabelComponent;
14186
+ }(IgcToolActionComponent));
14187
+
14188
+ /*
14189
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
14190
+ https://www.infragistics.com/legal/license/igultimate-la
14191
+ https://www.infragistics.com/legal/license/igultimate-eula
14192
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
14193
+ */
14194
+ var IgcToolActionLabelModule = /** @class */ /*@__PURE__*/ (function () {
14195
+ function IgcToolActionLabelModule() {
14196
+ }
14197
+ IgcToolActionLabelModule.register = function () {
14198
+ IgcToolActionLabelComponent.register();
14199
+ igniteuiWebcomponentsCore.TypeRegistrar.registerCons("IgcToolActionLabelComponent", IgcToolActionLabelComponent);
14200
+ igniteuiWebcomponentsCore.TypeRegistrar.register("ToolActionLabel", ToolActionLabel.$type);
14201
+ };
14202
+ return IgcToolActionLabelModule;
14203
+ }());
14204
+
14205
+ /*
14206
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
14207
+ https://www.infragistics.com/legal/license/igultimate-la
14208
+ https://www.infragistics.com/legal/license/igultimate-eula
14209
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
14210
+ */
14211
+
14212
+ var IgcToolActionRadioComponent = /** @class */ /*@__PURE__*/ (function (_super) {
14213
+ tslib_1.__extends(IgcToolActionRadioComponent, _super);
14214
+ function IgcToolActionRadioComponent() {
14215
+ return _super.call(this) || this;
14216
+ }
14217
+ IgcToolActionRadioComponent.prototype.createImplementation = function () {
14218
+ return new ToolActionRadio();
14219
+ };
14220
+ Object.defineProperty(IgcToolActionRadioComponent.prototype, "i", {
14221
+ /**
14222
+ * @hidden
14223
+ */
14224
+ get: function () {
14225
+ return this._implementation;
14226
+ },
14227
+ enumerable: true,
14228
+ configurable: true
14229
+ });
14230
+ IgcToolActionRadioComponent.prototype.connectedCallback = function () {
14231
+ if (_super.prototype["connectedCallback"]) {
14232
+ _super.prototype["connectedCallback"].call(this);
14233
+ }
14234
+ if (this.i.connectedCallback) {
14235
+ this.i.connectedCallback();
14236
+ }
14237
+ if (!this._attached) {
14238
+ this._attached = true;
14239
+ this._flushQueuedAttributes();
14240
+ }
14241
+ };
14242
+ IgcToolActionRadioComponent.prototype.disconnectedCallback = function () {
14243
+ if (_super.prototype["disconnectedCallback"]) {
14244
+ _super.prototype["disconnectedCallback"].call(this);
14245
+ }
14246
+ if (this.i.disconnectedCallback) {
14247
+ this.i.disconnectedCallback();
14248
+ }
14249
+ if (this._attached) {
14250
+ this._attached = false;
14251
+ }
14252
+ };
14253
+ Object.defineProperty(IgcToolActionRadioComponent, "observedAttributes", {
14254
+ get: function () {
14255
+ if (IgcToolActionRadioComponent._observedAttributesIgcToolActionRadioComponent == null) {
14256
+ var names = igniteuiWebcomponentsCore.getAllPropertyNames(IgcToolActionRadioComponent);
14257
+ for (var i = 0; i < names.length; i++) {
14258
+ names[i] = igniteuiWebcomponentsCore.toSpinal(names[i]);
14259
+ }
14260
+ IgcToolActionRadioComponent._observedAttributesIgcToolActionRadioComponent = names;
14261
+ }
14262
+ return IgcToolActionRadioComponent._observedAttributesIgcToolActionRadioComponent;
14263
+ },
14264
+ enumerable: true,
14265
+ configurable: true
14266
+ });
14267
+ IgcToolActionRadioComponent.register = function () {
14268
+ if (!IgcToolActionRadioComponent._isElementRegistered) {
14269
+ IgcToolActionRadioComponent._isElementRegistered = true;
14270
+ igniteuiWebcomponentsCore.RegisterElementHelper.registerElement(IgcToolActionRadioComponent.htmlTagName, IgcToolActionRadioComponent);
14271
+ }
14272
+ };
14273
+ Object.defineProperty(IgcToolActionRadioComponent.prototype, "radioGroup", {
14274
+ get: function () {
14275
+ return this.i.bf;
14276
+ },
14277
+ set: function (v) {
14278
+ this.i.bf = v;
14279
+ },
14280
+ enumerable: true,
14281
+ configurable: true
14282
+ });
14283
+ IgcToolActionRadioComponent._observedAttributesIgcToolActionRadioComponent = null;
14284
+ IgcToolActionRadioComponent.htmlTagName = "igc-tool-action-radio";
14285
+ IgcToolActionRadioComponent._isElementRegistered = false;
14286
+ return IgcToolActionRadioComponent;
14287
+ }(IgcToolActionComponent));
14288
+
14289
+ /*
14290
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
14291
+ https://www.infragistics.com/legal/license/igultimate-la
14292
+ https://www.infragistics.com/legal/license/igultimate-eula
14293
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
14294
+ */
14295
+ var IgcToolActionRadioModule = /** @class */ /*@__PURE__*/ (function () {
14296
+ function IgcToolActionRadioModule() {
14297
+ }
14298
+ IgcToolActionRadioModule.register = function () {
14299
+ IgcToolActionRadioComponent.register();
14300
+ igniteuiWebcomponentsCore.TypeRegistrar.registerCons("IgcToolActionRadioComponent", IgcToolActionRadioComponent);
14301
+ igniteuiWebcomponentsCore.TypeRegistrar.register("ToolActionRadio", ToolActionRadio.$type);
14302
+ };
14303
+ return IgcToolActionRadioModule;
14304
+ }());
14305
+
14306
+ /*
14307
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
14308
+ https://www.infragistics.com/legal/license/igultimate-la
14309
+ https://www.infragistics.com/legal/license/igultimate-eula
14310
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
14311
+ */
14312
+
13706
14313
  var IgcToolActionSeparatorComponent = /** @class */ /*@__PURE__*/ (function (_super) {
13707
14314
  tslib_1.__extends(IgcToolActionSeparatorComponent, _super);
13708
14315
  function IgcToolActionSeparatorComponent() {
@@ -13725,11 +14332,25 @@
13725
14332
  if (_super.prototype["connectedCallback"]) {
13726
14333
  _super.prototype["connectedCallback"].call(this);
13727
14334
  }
14335
+ if (this.i.connectedCallback) {
14336
+ this.i.connectedCallback();
14337
+ }
13728
14338
  if (!this._attached) {
13729
14339
  this._attached = true;
13730
14340
  this._flushQueuedAttributes();
13731
14341
  }
13732
14342
  };
14343
+ IgcToolActionSeparatorComponent.prototype.disconnectedCallback = function () {
14344
+ if (_super.prototype["disconnectedCallback"]) {
14345
+ _super.prototype["disconnectedCallback"].call(this);
14346
+ }
14347
+ if (this.i.disconnectedCallback) {
14348
+ this.i.disconnectedCallback();
14349
+ }
14350
+ if (this._attached) {
14351
+ this._attached = false;
14352
+ }
14353
+ };
13733
14354
  Object.defineProperty(IgcToolActionSeparatorComponent, "observedAttributes", {
13734
14355
  get: function () {
13735
14356
  if (IgcToolActionSeparatorComponent._observedAttributesIgcToolActionSeparatorComponent == null) {
@@ -14028,10 +14649,10 @@
14028
14649
  };
14029
14650
  Object.defineProperty(IgcPropertyEditorDataSource.prototype, "descriptionType", {
14030
14651
  get: function () {
14031
- return this.i.l;
14652
+ return this.i.n;
14032
14653
  },
14033
14654
  set: function (v) {
14034
- this.i.l = v;
14655
+ this.i.n = v;
14035
14656
  },
14036
14657
  enumerable: true,
14037
14658
  configurable: true
@@ -14047,6 +14668,11 @@
14047
14668
  configurable: true
14048
14669
  });
14049
14670
  IgcPropertyEditorDataSource.prototype.findByName = function (name) {
14671
+ if (this.findEphemera) {
14672
+ if (name && name.indexOf("@@e:") == 0) {
14673
+ return this.findEphemera(name);
14674
+ }
14675
+ }
14050
14676
  return null;
14051
14677
  };
14052
14678
  return IgcPropertyEditorDataSource;
@@ -14099,11 +14725,15 @@
14099
14725
  exports.IgcToolActionIconButtonModule = IgcToolActionIconButtonModule;
14100
14726
  exports.IgcToolActionIconMenuComponent = IgcToolActionIconMenuComponent;
14101
14727
  exports.IgcToolActionIconMenuModule = IgcToolActionIconMenuModule;
14728
+ exports.IgcToolActionLabelComponent = IgcToolActionLabelComponent;
14729
+ exports.IgcToolActionLabelModule = IgcToolActionLabelModule;
14102
14730
  exports.IgcToolActionMenuBaseComponent = IgcToolActionMenuBaseComponent;
14103
14731
  exports.IgcToolActionModule = IgcToolActionModule;
14104
14732
  exports.IgcToolActionNumberInputComponent = IgcToolActionNumberInputComponent;
14105
14733
  exports.IgcToolActionNumberInputModule = IgcToolActionNumberInputModule;
14106
14734
  exports.IgcToolActionPerformedEventArgs = IgcToolActionPerformedEventArgs;
14735
+ exports.IgcToolActionRadioComponent = IgcToolActionRadioComponent;
14736
+ exports.IgcToolActionRadioModule = IgcToolActionRadioModule;
14107
14737
  exports.IgcToolActionSeparatorComponent = IgcToolActionSeparatorComponent;
14108
14738
  exports.IgcToolActionSeparatorModule = IgcToolActionSeparatorModule;
14109
14739
  exports.IgcToolCommandEventArgs = IgcToolCommandEventArgs;
@@ -14167,10 +14797,12 @@
14167
14797
  exports.ToolActionGroupHeader = ToolActionGroupHeader;
14168
14798
  exports.ToolActionIconButton = ToolActionIconButton;
14169
14799
  exports.ToolActionIconMenu = ToolActionIconMenu;
14800
+ exports.ToolActionLabel = ToolActionLabel;
14170
14801
  exports.ToolActionMeasurementContext = ToolActionMeasurementContext;
14171
14802
  exports.ToolActionMenuBase = ToolActionMenuBase;
14172
14803
  exports.ToolActionNumberInput = ToolActionNumberInput;
14173
14804
  exports.ToolActionPerformedEventArgs = ToolActionPerformedEventArgs;
14805
+ exports.ToolActionRadio = ToolActionRadio;
14174
14806
  exports.ToolActionSeparator = ToolActionSeparator;
14175
14807
  exports.ToolCommandEventArgs = ToolCommandEventArgs;
14176
14808
  exports.ToolPanel = ToolPanel;