igniteui-webcomponents-layouts 3.2.4 → 3.5.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
@@ -6,7 +6,7 @@
6
6
  */
7
7
 
8
8
  import { __extends, __spread, __values } from 'tslib';
9
- import { markType, Base, EventArgs, ElevationHelper, NativeUI, AnimationKeyFrameEffect, KeyFrameAnimationFactory, runOn, BaseDOMEventProxy, BrushUtil, stringEmpty, PropertyChangedEventArgs, AnimationKeyFrameProperty, TranslateTransform, AnimationKeyFrameEffectTiming, INotifyPropertyChanged_$type, NamePatcher, PortalManager, WebComponentRenderer, toSpinal, getAllPropertyNames, fromSpinal, RegisterElementHelper, brushToString, stringToBrush, ensureBool, initializePropertiesFromCss, delegateRemove, delegateCombine, IgcHTMLElement, TypeRegistrar, markStruct, ValueType, StringBuilder, Size, stringFormat, Rect, List$1, truncate, AppearanceHelper, toRect, IgcChildContentModule, markEnum, enumGetBox, ObservableCollection$1, stringEndsWith, stringSplit, String_$type, stringContains, stringReplace, typeCast, SyncableObservableCollection$2, IgCollection, SyncableObservableCollection$1, ensureEnum, enumToString, DescriptionTreeNode, JsonDictionaryObject, Number_$type, stringJoin, DescriptionSerializerBuilder, DescriptionSerializer, FontInfo, DOMExecutionContext, RenderingContext, CanvasViewRenderer, NativeUIComponent, FontUtil, DeviceUtils, Dictionary$2, NativeUIInputsFactory, SRProvider, fromEn, LocalDataSource, ComponentRenderer, fromEnum, Thickness, HashSet$1, isNaN_, tryParseNumber, tryParseBool, typeGetValue, CollectionAdapter, NotifyCollectionChangedAction, FastIterationDictionary$2, Stack$1, IDataSource_$type, IDataSourceUpdateNotifier_$type, ToolCommandArgument, ToolCommand, EnumUtil, ToolActionType_$type, NativeUIContent, SvgIconRegistry, Type } from 'igniteui-webcomponents-core';
9
+ import { markType, Base, EventArgs, ElevationHelper, NativeUI, AnimationKeyFrameEffect, KeyFrameAnimationFactory, runOn, BaseDOMEventProxy, BrushUtil, stringEmpty, PropertyChangedEventArgs, AnimationKeyFrameProperty, TranslateTransform, AnimationKeyFrameEffectTiming, INotifyPropertyChanged_$type, NamePatcher, PortalManager, WebComponentRenderer, toSpinal, getAllPropertyNames, fromSpinal, RegisterElementHelper, brushToString, stringToBrush, ensureBool, initializePropertiesFromCss, delegateRemove, delegateCombine, IgcHTMLElement, TypeRegistrar, markStruct, ValueType, StringBuilder, Size, stringFormat, Rect, List$1, truncate, AppearanceHelper, toRect, IgcChildContentModule, markEnum, enumGetBox, ObservableCollection$1, Dictionary$2, String_$type, stringEndsWith, stringSplit, stringContains, stringReplace, typeCast, SyncableObservableCollection$2, IgCollection, SyncableObservableCollection$1, ensureEnum, enumToString, DescriptionTreeNode, JsonDictionaryObject, Number_$type, stringJoin, DescriptionSerializerBuilder, DescriptionSerializer, FontInfo, DOMExecutionContext, RenderingContext, CanvasViewRenderer, NativeUIComponent, FontUtil, DeviceUtils, NativeUIInputsFactory, SRProvider, fromEn, LocalDataSource, ComponentRenderer, fromEnum, Thickness, HashSet$1, isNaN_, tryParseNumber, tryParseBool, typeGetValue, CollectionAdapter, NotifyCollectionChangedAction, FastIterationDictionary$2, Stack$1, IDataSource_$type, IDataSourceUpdateNotifier_$type, ToolCommandArgument, ToolCommand, EnumUtil, ToolActionType_$type, NativeUIContent, SvgIconRegistry, Type } from 'igniteui-webcomponents-core';
10
10
 
11
11
  /*
12
12
  THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
@@ -1418,6 +1418,11 @@ var IgcXExpansionPanelComponent = /** @class */ /*@__PURE__*/ (function (_super)
1418
1418
  configurable: true
1419
1419
  });
1420
1420
  IgcXExpansionPanelComponent.prototype.findByName = function (name) {
1421
+ if (this.findEphemera) {
1422
+ if (name && name.indexOf("@@e:") == 0) {
1423
+ return this.findEphemera(name);
1424
+ }
1425
+ }
1421
1426
  return null;
1422
1427
  };
1423
1428
  Object.defineProperty(IgcXExpansionPanelComponent.prototype, "hasUserValues", {
@@ -1524,6 +1529,7 @@ var IgcXExpansionPanelComponent = /** @class */ /*@__PURE__*/ (function (_super)
1524
1529
  }
1525
1530
  };
1526
1531
  this.i.onCollapsed = delegateCombine(this.i.onCollapsed, this._onCollapsed_wrapped);
1532
+ ;
1527
1533
  },
1528
1534
  enumerable: true,
1529
1535
  configurable: true
@@ -1551,6 +1557,7 @@ var IgcXExpansionPanelComponent = /** @class */ /*@__PURE__*/ (function (_super)
1551
1557
  }
1552
1558
  };
1553
1559
  this.i.onExpanded = delegateCombine(this.i.onExpanded, this._onExpanded_wrapped);
1560
+ ;
1554
1561
  },
1555
1562
  enumerable: true,
1556
1563
  configurable: true
@@ -2746,6 +2753,11 @@ var IgcPopupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2746
2753
  configurable: true
2747
2754
  });
2748
2755
  IgcPopupComponent.prototype.findByName = function (name) {
2756
+ if (this.findEphemera) {
2757
+ if (name && name.indexOf("@@e:") == 0) {
2758
+ return this.findEphemera(name);
2759
+ }
2760
+ }
2749
2761
  return null;
2750
2762
  };
2751
2763
  Object.defineProperty(IgcPopupComponent.prototype, "hasUserValues", {
@@ -2854,6 +2866,7 @@ var IgcPopupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2854
2866
  }
2855
2867
  };
2856
2868
  this.i.onClosed = delegateCombine(this.i.onClosed, this._onClosed_wrapped);
2869
+ ;
2857
2870
  },
2858
2871
  enumerable: true,
2859
2872
  configurable: true
@@ -2884,6 +2897,7 @@ var IgcPopupComponent = /** @class */ /*@__PURE__*/ (function (_super) {
2884
2897
  }
2885
2898
  };
2886
2899
  this.i.onPopup = delegateCombine(this.i.onPopup, this._onPopup_wrapped);
2900
+ ;
2887
2901
  },
2888
2902
  enumerable: true,
2889
2903
  configurable: true
@@ -2942,12 +2956,13 @@ var PropertyEditorValueType = /*@__PURE__*/ (function (PropertyEditorValueType)
2942
2956
  PropertyEditorValueType[PropertyEditorValueType["TimeSpan"] = 19] = "TimeSpan";
2943
2957
  PropertyEditorValueType[PropertyEditorValueType["Button"] = 20] = "Button";
2944
2958
  PropertyEditorValueType[PropertyEditorValueType["Slider"] = 21] = "Slider";
2959
+ PropertyEditorValueType[PropertyEditorValueType["TemplateRef"] = 22] = "TemplateRef";
2945
2960
  return PropertyEditorValueType;
2946
2961
  })({});
2947
2962
  /**
2948
2963
  * @hidden
2949
2964
  */
2950
- var PropertyEditorValueType_$type = /*@__PURE__*/ 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');
2965
+ var PropertyEditorValueType_$type = /*@__PURE__*/ 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');
2951
2966
 
2952
2967
  /*
2953
2968
  THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
@@ -3342,7 +3357,7 @@ var PropertyEditorPropertyDescription = /** @class */ /*@__PURE__*/ (function (_
3342
3357
  return this.e;
3343
3358
  }
3344
3359
  if (this.e != null) {
3345
- return this.e.d(a, false);
3360
+ return this.e.e(a, false);
3346
3361
  }
3347
3362
  return null;
3348
3363
  };
@@ -3393,20 +3408,21 @@ var PropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function (_super) {
3393
3408
  __extends(PropertyEditorDataSource, _super);
3394
3409
  function PropertyEditorDataSource() {
3395
3410
  var _this = _super !== null && _super.apply(this, arguments) || this;
3396
- _this.i = null;
3411
+ _this.k = null;
3397
3412
  _this.a = null;
3398
- _this.f = null;
3413
+ _this.g = null;
3399
3414
  _this.propertyChanged = null;
3415
+ _this.j = null;
3400
3416
  return _this;
3401
3417
  }
3402
- Object.defineProperty(PropertyEditorDataSource.prototype, "l", {
3418
+ Object.defineProperty(PropertyEditorDataSource.prototype, "n", {
3403
3419
  get: function () {
3404
- return this.i;
3420
+ return this.k;
3405
3421
  },
3406
3422
  set: function (a) {
3407
- var b = this.i;
3408
- this.i = a;
3409
- this.n("DescriptionType", b, this.i);
3423
+ var b = this.k;
3424
+ this.k = a;
3425
+ this.p("DescriptionType", b, this.k);
3410
3426
  },
3411
3427
  enumerable: true,
3412
3428
  configurable: true
@@ -3418,69 +3434,76 @@ var PropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function (_super) {
3418
3434
  set: function (a) {
3419
3435
  var b = this.a;
3420
3436
  this.a = a;
3421
- this.n("Context", b, this.a);
3437
+ this.p("Context", b, this.a);
3422
3438
  },
3423
3439
  enumerable: true,
3424
3440
  configurable: true
3425
3441
  });
3426
- Object.defineProperty(PropertyEditorDataSource.prototype, "g", {
3442
+ Object.defineProperty(PropertyEditorDataSource.prototype, "h", {
3427
3443
  get: function () {
3428
- return this.f;
3444
+ return this.g;
3429
3445
  },
3430
3446
  set: function (a) {
3431
- var b = this.f;
3432
- this.f = a;
3433
- this.n("Data", b, this.f);
3447
+ var b = this.g;
3448
+ this.g = a;
3449
+ this.p("Data", b, this.g);
3434
3450
  },
3435
3451
  enumerable: true,
3436
3452
  configurable: true
3437
3453
  });
3438
- PropertyEditorDataSource.prototype.n = function (a, b, c) {
3454
+ PropertyEditorDataSource.prototype.p = function (a, b, c) {
3439
3455
  if (this.propertyChanged != null) {
3440
3456
  this.propertyChanged(this, new PropertyChangedEventArgs(a));
3441
3457
  }
3442
- this.o(a, b, c);
3458
+ this.q(a, b, c);
3443
3459
  };
3444
- PropertyEditorDataSource.prototype.o = function (a, b, c) {
3460
+ PropertyEditorDataSource.prototype.q = function (a, b, c) {
3445
3461
  switch (a) {
3446
3462
  case "DescriptionType":
3447
- this.p();
3463
+ this.r();
3448
3464
  break;
3449
3465
  case "Context":
3450
- this.p();
3466
+ this.r();
3451
3467
  break;
3452
3468
  }
3453
3469
  };
3454
- PropertyEditorDataSource.prototype.e = function (a) {
3455
- var _this = this;
3470
+ PropertyEditorDataSource.d = function (a, b, c) {
3471
+ var d = new PropertyEditorDataSource();
3472
+ d.j = c;
3473
+ d.b = a;
3474
+ d.n = b;
3475
+ d.j = null;
3476
+ return d;
3477
+ };
3478
+ PropertyEditorDataSource.prototype.f = function (a) {
3456
3479
  var b = new PropertyEditorPropertyDescription();
3457
3480
  b.al = a.propertyName;
3458
- b.n = this.h(a);
3481
+ b.n = this.i(a);
3459
3482
  b.ak = a.specificExternalType != null ? a.specificExternalType : a.specificType;
3460
3483
  if (a.knownType == 9) {
3461
3484
  b.ai = a.collectionElementType;
3462
- b.e = ((function () {
3463
- var $ret = new PropertyEditorDataSource();
3464
- $ret.b = _this.a;
3465
- $ret.l = b.ai;
3466
- return $ret;
3467
- })());
3485
+ if (this.j != null && this.j.containsKey(b.ai)) {
3486
+ b.e = this.j.item(b.ai);
3487
+ }
3488
+ else {
3489
+ b.e = PropertyEditorDataSource.d(this.a, b.ai, this.j);
3490
+ }
3468
3491
  }
3469
3492
  if (b.n == 8) {
3470
- b.e = ((function () {
3471
- var $ret = new PropertyEditorDataSource();
3472
- $ret.b = _this.a;
3473
- $ret.l = b.ak;
3474
- return $ret;
3475
- })());
3493
+ if (this.j != null && this.j.containsKey(b.ak)) {
3494
+ b.e = this.j.item(b.ak);
3495
+ }
3496
+ else {
3497
+ b.e = PropertyEditorDataSource.d(this.a, b.ak, this.j);
3498
+ }
3476
3499
  }
3477
3500
  if (b.n == 15) {
3478
- b.c = this.a.c(this.l, b.al);
3501
+ b.c = this.a.c(this.n, b.al);
3479
3502
  b.d = b.d;
3480
3503
  }
3481
3504
  return b;
3482
3505
  };
3483
- PropertyEditorDataSource.prototype.h = function (a) {
3506
+ PropertyEditorDataSource.prototype.i = function (a) {
3484
3507
  switch (a.knownType) {
3485
3508
  case 10: return 10;
3486
3509
  case 7: return 7;
@@ -3490,6 +3513,7 @@ var PropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function (_super) {
3490
3513
  case 5: return 5;
3491
3514
  case 16: return 14;
3492
3515
  case 20: return 18;
3516
+ case 22: return 22;
3493
3517
  case 15: return 0;
3494
3518
  case 3: return 3;
3495
3519
  case 19: return 17;
@@ -3511,31 +3535,46 @@ var PropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function (_super) {
3511
3535
  }
3512
3536
  return 0;
3513
3537
  };
3514
- PropertyEditorDataSource.prototype.p = function () {
3538
+ PropertyEditorDataSource.prototype.r = function () {
3515
3539
  var a = new PropertyEditorPropertyDescriptionCollection();
3516
- if (this.l != null && this.b != null) {
3517
- var b = this.b.b(this.l);
3518
- if (b == null) {
3540
+ if (this.n != null && this.b != null) {
3541
+ var b = false;
3542
+ if (this.j == null) {
3543
+ b = true;
3544
+ this.j = new Dictionary$2(String_$type, PropertyEditorDataSource.$, 0);
3545
+ }
3546
+ this.j.item(this.n, this);
3547
+ var c = this.b.b(this.n);
3548
+ if (c == null) {
3519
3549
  return;
3520
3550
  }
3521
- for (var c = 0; c < b.length; c++) {
3522
- if (stringEndsWith(b[c], "@names")) {
3551
+ for (var d = 0; d < c.length; d++) {
3552
+ if (stringEndsWith(c[d], "@names")) {
3523
3553
  continue;
3524
3554
  }
3525
- if (stringEndsWith(b[c], "@nameBinding")) {
3555
+ if (stringEndsWith(c[d], "@nameBinding")) {
3526
3556
  continue;
3527
3557
  }
3528
- var d = this.b.getMetadata(this.l, b[c]);
3529
- var e = this.e(d);
3530
- if (e.n == 0) {
3558
+ if (stringEndsWith(c[d], "@ngQueryList")) {
3531
3559
  continue;
3532
3560
  }
3533
- a.add(e);
3561
+ if (stringEndsWith(c[d], "@mustSetInCode")) {
3562
+ continue;
3563
+ }
3564
+ var e = this.b.getMetadata(this.n, c[d]);
3565
+ var f = this.f(e);
3566
+ if (f.n == 0) {
3567
+ continue;
3568
+ }
3569
+ a.add(f);
3570
+ }
3571
+ if (b) {
3572
+ this.j = null;
3534
3573
  }
3535
3574
  }
3536
- this.g = a;
3575
+ this.h = a;
3537
3576
  };
3538
- PropertyEditorDataSource.prototype.d = function (a, b) {
3577
+ PropertyEditorDataSource.prototype.e = function (a, b) {
3539
3578
  if (a == null) {
3540
3579
  return null;
3541
3580
  }
@@ -3558,9 +3597,9 @@ var PropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function (_super) {
3558
3597
  g = h.substr(0, k).trim();
3559
3598
  f = h.substr(k + 2).trim();
3560
3599
  }
3561
- if (f != null && f != this.l) {
3600
+ if (f != null && f != this.n) {
3562
3601
  var l = this.c();
3563
- l.l = f;
3602
+ l.n = f;
3564
3603
  e = l;
3565
3604
  continue;
3566
3605
  }
@@ -3578,19 +3617,19 @@ var PropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function (_super) {
3578
3617
  else {
3579
3618
  if (e != null) {
3580
3619
  var n = e;
3581
- var o = n.d(h, i);
3620
+ var o = n.e(h, i);
3582
3621
  if (o == null) {
3583
3622
  return null;
3584
3623
  }
3585
3624
  e = o;
3586
3625
  }
3587
3626
  else {
3588
- if (this.g == null) {
3627
+ if (this.h == null) {
3589
3628
  return null;
3590
3629
  }
3591
- for (var p = 0; p < this.g.count; p++) {
3592
- if (Base.equalsStatic(this.g._inner[p].al, h)) {
3593
- e = this.g._inner[p];
3630
+ for (var p = 0; p < this.h.count; p++) {
3631
+ if (Base.equalsStatic(this.h._inner[p].al, h)) {
3632
+ e = this.h._inner[p];
3594
3633
  break;
3595
3634
  }
3596
3635
  }
@@ -3607,7 +3646,7 @@ var PropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function (_super) {
3607
3646
  return ((function () {
3608
3647
  var $ret = new PropertyEditorDataSource();
3609
3648
  $ret.b = _this.b;
3610
- $ret.l = _this.l;
3649
+ $ret.n = _this.n;
3611
3650
  return $ret;
3612
3651
  })());
3613
3652
  };
@@ -3779,6 +3818,11 @@ var IgcPropertyEditorDescriptionObject = /** @class */ /*@__PURE__*/ (function (
3779
3818
  configurable: true
3780
3819
  });
3781
3820
  IgcPropertyEditorDescriptionObject.prototype.findByName = function (name) {
3821
+ if (this.findEphemera) {
3822
+ if (name && name.indexOf("@@e:") == 0) {
3823
+ return this.findEphemera(name);
3824
+ }
3825
+ }
3782
3826
  if (this.properties != null && this.properties.findByName && this.properties.findByName(name)) {
3783
3827
  return this.properties.findByName(name);
3784
3828
  }
@@ -4059,11 +4103,25 @@ var IgcPropertyEditorPropertyDescriptionComponent = /** @class */ /*@__PURE__*/
4059
4103
  if (_super.prototype["connectedCallback"]) {
4060
4104
  _super.prototype["connectedCallback"].call(this);
4061
4105
  }
4106
+ if (this.i.connectedCallback) {
4107
+ this.i.connectedCallback();
4108
+ }
4062
4109
  if (!this._attached) {
4063
4110
  this._attached = true;
4064
4111
  this._flushQueuedAttributes();
4065
4112
  }
4066
4113
  };
4114
+ IgcPropertyEditorPropertyDescriptionComponent.prototype.disconnectedCallback = function () {
4115
+ if (_super.prototype["disconnectedCallback"]) {
4116
+ _super.prototype["disconnectedCallback"].call(this);
4117
+ }
4118
+ if (this.i.disconnectedCallback) {
4119
+ this.i.disconnectedCallback();
4120
+ }
4121
+ if (this._attached) {
4122
+ this._attached = false;
4123
+ }
4124
+ };
4067
4125
  Object.defineProperty(IgcPropertyEditorPropertyDescriptionComponent, "observedAttributes", {
4068
4126
  get: function () {
4069
4127
  if (IgcPropertyEditorPropertyDescriptionComponent._observedAttributesIgcPropertyEditorPropertyDescriptionComponent == null) {
@@ -4250,15 +4308,21 @@ var IgcPropertyEditorPropertyDescriptionComponent = /** @class */ /*@__PURE__*/
4250
4308
  });
4251
4309
  Object.defineProperty(IgcPropertyEditorPropertyDescriptionComponent.prototype, "complexValue", {
4252
4310
  get: function () {
4253
- if (this.i.g == null) {
4311
+ var r = this.i.g;
4312
+ if (r == null) {
4254
4313
  return null;
4255
4314
  }
4256
- if (!this.i.g.externalObject) {
4315
+ if (!r.externalObject) {
4257
4316
  var e = new IgcPropertyEditorDescriptionObject();
4258
- e._implementation = this.i.g;
4259
- this.i.g.externalObject = e;
4317
+ if (e.i.setNativeElement) {
4318
+ e.i.setNativeElement(r);
4319
+ }
4320
+ else {
4321
+ e._implementation = r;
4322
+ }
4323
+ r.externalObject = e;
4260
4324
  }
4261
- return this.i.g.externalObject;
4325
+ return r.externalObject;
4262
4326
  },
4263
4327
  set: function (v) {
4264
4328
  v == null ? this.i.g = null : this.i.g = v.i;
@@ -4300,6 +4364,11 @@ var IgcPropertyEditorPropertyDescriptionComponent = /** @class */ /*@__PURE__*/
4300
4364
  configurable: true
4301
4365
  });
4302
4366
  IgcPropertyEditorPropertyDescriptionComponent.prototype.findByName = function (name) {
4367
+ if (this.findEphemera) {
4368
+ if (name && name.indexOf("@@e:") == 0) {
4369
+ return this.findEphemera(name);
4370
+ }
4371
+ }
4303
4372
  if (this.complexValue && this.complexValue.name && this.complexValue.name == name) {
4304
4373
  return this.complexValue;
4305
4374
  }
@@ -4388,6 +4457,7 @@ var IgcPropertyEditorPropertyDescriptionComponent = /** @class */ /*@__PURE__*/
4388
4457
  }
4389
4458
  };
4390
4459
  this.i.buttonClicked = delegateCombine(this.i.buttonClicked, this._buttonClicked_wrapped);
4460
+ ;
4391
4461
  },
4392
4462
  enumerable: true,
4393
4463
  configurable: true
@@ -4415,6 +4485,7 @@ var IgcPropertyEditorPropertyDescriptionComponent = /** @class */ /*@__PURE__*/
4415
4485
  }
4416
4486
  };
4417
4487
  this.i.changed = delegateCombine(this.i.changed, this._changed_wrapped);
4488
+ ;
4418
4489
  },
4419
4490
  enumerable: true,
4420
4491
  configurable: true
@@ -4442,6 +4513,7 @@ var IgcPropertyEditorPropertyDescriptionComponent = /** @class */ /*@__PURE__*/
4442
4513
  }
4443
4514
  };
4444
4515
  this.i.targetPropertyUpdating = delegateCombine(this.i.targetPropertyUpdating, this._targetPropertyUpdating_wrapped);
4516
+ ;
4445
4517
  },
4446
4518
  enumerable: true,
4447
4519
  configurable: true
@@ -4741,6 +4813,7 @@ var PropertyEditorTreeTransformer = /** @class */ /*@__PURE__*/ (function (_supe
4741
4813
  case 5: return a.toString();
4742
4814
  case 16: return a;
4743
4815
  case 20: return a;
4816
+ case 22: return a;
4744
4817
  case 15: return a;
4745
4818
  case 3: return a;
4746
4819
  case 19: return a;
@@ -5178,11 +5251,11 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
5178
5251
  if (this.k == null) {
5179
5252
  this.k = new PropertyEditorDataSource();
5180
5253
  }
5181
- this.k.l = this.b2;
5254
+ this.k.n = this.b2;
5182
5255
  }
5183
5256
  if (this.properties == null || this.properties.count == 0) {
5184
- if (this.k.g != null) {
5185
- this.actualProperties = this.k.g;
5257
+ if (this.k.h != null) {
5258
+ this.actualProperties = this.k.h;
5186
5259
  }
5187
5260
  }
5188
5261
  else {
@@ -5228,8 +5301,8 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
5228
5301
  this.k.b = this.h;
5229
5302
  }
5230
5303
  if (this.properties == null || this.properties.count == 0) {
5231
- if (this.k.g != null) {
5232
- this.actualProperties = this.k.g;
5304
+ if (this.k.h != null) {
5305
+ this.actualProperties = this.k.h;
5233
5306
  }
5234
5307
  }
5235
5308
  else {
@@ -5323,7 +5396,7 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
5323
5396
  var c = _c.value;
5324
5397
  var d = c.al;
5325
5398
  if (this.k != null) {
5326
- var e = this.k.d(d, false);
5399
+ var e = this.k.e(d, false);
5327
5400
  if (e != null) {
5328
5401
  if (c.p(e)) {
5329
5402
  b = true;
@@ -5373,11 +5446,11 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
5373
5446
  var _loop_1 = function (b) {
5374
5447
  var c = b;
5375
5448
  var d = this_1.c.getItemAtIndex(b);
5376
- if (this_1.v.a3 < c + 1) {
5377
- this_1.v.a5(c, 1, this_1.ar);
5449
+ if (this_1.v.a5 < c + 1) {
5450
+ this_1.v.a7(c, 1, this_1.ar);
5378
5451
  }
5379
5452
  else {
5380
- this_1.v.bb(c, 1, this_1.ar);
5453
+ this_1.v.bd(c, 1, this_1.ar);
5381
5454
  }
5382
5455
  if (this_1.an.count < c + 1) {
5383
5456
  this_1.an.add(new List$1(NativeUIComponent.$, 0));
@@ -5394,16 +5467,16 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
5394
5467
  }
5395
5468
  i.ar = new Thickness(1, 5, 5, 5, 0);
5396
5469
  _this.v.aw(i);
5397
- _this.v.a9(i, c);
5398
- _this.v.a8(i, f);
5470
+ _this.v.bb(i, c);
5471
+ _this.v.ba(i, f);
5399
5472
  e.add(i);
5400
5473
  });
5401
5474
  }
5402
- if (this_1.v.a0 < f + 1) {
5403
- this_1.v.a4(f, 1, g.h);
5475
+ if (this_1.v.a2 < f + 1) {
5476
+ this_1.v.a6(f, 1, g.h);
5404
5477
  }
5405
5478
  else {
5406
- this_1.v.ba(f, 1, g.h);
5479
+ this_1.v.bc(f, 1, g.h);
5407
5480
  }
5408
5481
  var h = e._inner[f];
5409
5482
  var i = "PropertyPath";
@@ -5436,8 +5509,8 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
5436
5509
  var n = new HashSet$1(NativeUIComponent.$, 0);
5437
5510
  for (var o = this.v.av - 1; o >= 0; o--) {
5438
5511
  var p = this.v.au(o);
5439
- var q = this.v.a2(p);
5440
- var r = this.v.a1(p);
5512
+ var q = this.v.a4(p);
5513
+ var r = this.v.a3(p);
5441
5514
  if ((q + 1) > a || (r + 1) > this.ap.count) {
5442
5515
  n.add_1(p);
5443
5516
  }
@@ -5459,11 +5532,11 @@ var PropertyEditorPanel = /** @class */ /*@__PURE__*/ (function (_super) {
5459
5532
  this.an.removeAt(u);
5460
5533
  }
5461
5534
  }
5462
- while (this.v.a3 > a) {
5463
- this.v.a7(this.v.a3 - 1);
5535
+ while (this.v.a5 > a) {
5536
+ this.v.a9(this.v.a5 - 1);
5464
5537
  }
5465
- while (this.v.a0 > this.ap.count) {
5466
- this.v.a6(this.v.a0 - 1);
5538
+ while (this.v.a2 > this.ap.count) {
5539
+ this.v.a8(this.v.a2 - 1);
5467
5540
  }
5468
5541
  };
5469
5542
  PropertyEditorPanel.prototype.dw = function (a, b) {
@@ -7026,6 +7099,11 @@ var IgcPropertyEditorPanelComponent = /** @class */ /*@__PURE__*/ (function (_su
7026
7099
  configurable: true
7027
7100
  });
7028
7101
  IgcPropertyEditorPanelComponent.prototype.findByName = function (name) {
7102
+ if (this.findEphemera) {
7103
+ if (name && name.indexOf("@@e:") == 0) {
7104
+ return this.findEphemera(name);
7105
+ }
7106
+ }
7029
7107
  if (this.actualDataSource != null && this.actualDataSource.findByName && this.actualDataSource.findByName(name)) {
7030
7108
  return this.actualDataSource.findByName(name);
7031
7109
  }
@@ -8420,6 +8498,11 @@ var IgcListPanelItemModel = /** @class */ /*@__PURE__*/ (function () {
8420
8498
  configurable: true
8421
8499
  });
8422
8500
  IgcListPanelItemModel.prototype.findByName = function (name) {
8501
+ if (this.findEphemera) {
8502
+ if (name && name.indexOf("@@e:") == 0) {
8503
+ return this.findEphemera(name);
8504
+ }
8505
+ }
8423
8506
  return null;
8424
8507
  };
8425
8508
  return IgcListPanelItemModel;
@@ -8453,15 +8536,21 @@ var IgcListPanelTemplateItemUpdatingEventArgs = /** @class */ /*@__PURE__*/ (fun
8453
8536
  };
8454
8537
  Object.defineProperty(IgcListPanelTemplateItemUpdatingEventArgs.prototype, "model", {
8455
8538
  get: function () {
8456
- if (this.i.a == null) {
8539
+ var r = this.i.a;
8540
+ if (r == null) {
8457
8541
  return null;
8458
8542
  }
8459
- if (!this.i.a.externalObject) {
8543
+ if (!r.externalObject) {
8460
8544
  var e = new IgcListPanelItemModel();
8461
- e._implementation = this.i.a;
8462
- this.i.a.externalObject = e;
8545
+ if (e.i.setNativeElement) {
8546
+ e.i.setNativeElement(r);
8547
+ }
8548
+ else {
8549
+ e._implementation = r;
8550
+ }
8551
+ r.externalObject = e;
8463
8552
  }
8464
- return this.i.a.externalObject;
8553
+ return r.externalObject;
8465
8554
  },
8466
8555
  set: function (v) {
8467
8556
  v == null ? this.i.a = null : this.i.a = v.i;
@@ -8924,6 +9013,11 @@ var IgcListPanelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
8924
9013
  configurable: true
8925
9014
  });
8926
9015
  IgcListPanelComponent.prototype.findByName = function (name) {
9016
+ if (this.findEphemera) {
9017
+ if (name && name.indexOf("@@e:") == 0) {
9018
+ return this.findEphemera(name);
9019
+ }
9020
+ }
8927
9021
  return null;
8928
9022
  };
8929
9023
  Object.defineProperty(IgcListPanelComponent.prototype, "hasUserValues", {
@@ -9059,6 +9153,7 @@ var IgcListPanelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
9059
9153
  }
9060
9154
  };
9061
9155
  this.i.contentRefreshed = delegateCombine(this.i.contentRefreshed, this._contentRefreshed_wrapped);
9156
+ ;
9062
9157
  },
9063
9158
  enumerable: true,
9064
9159
  configurable: true
@@ -9086,6 +9181,7 @@ var IgcListPanelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
9086
9181
  }
9087
9182
  };
9088
9183
  this.i.rowUpdating = delegateCombine(this.i.rowUpdating, this._rowUpdating_wrapped);
9184
+ ;
9089
9185
  },
9090
9186
  enumerable: true,
9091
9187
  configurable: true
@@ -9113,6 +9209,7 @@ var IgcListPanelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
9113
9209
  }
9114
9210
  };
9115
9211
  this.i.itemWidthRequested = delegateCombine(this.i.itemWidthRequested, this._itemWidthRequested_wrapped);
9212
+ ;
9116
9213
  },
9117
9214
  enumerable: true,
9118
9215
  configurable: true
@@ -9140,6 +9237,7 @@ var IgcListPanelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
9140
9237
  }
9141
9238
  };
9142
9239
  this.i.itemHeightRequested = delegateCombine(this.i.itemHeightRequested, this._itemHeightRequested_wrapped);
9240
+ ;
9143
9241
  },
9144
9242
  enumerable: true,
9145
9243
  configurable: true
@@ -9342,8 +9440,8 @@ var ToolPanelView = /** @class */ /*@__PURE__*/ (function (_super) {
9342
9440
  }
9343
9441
  var b = a.rootWrapper;
9344
9442
  if (null != b) {
9345
- NativeUI.o(b, this.c.a9);
9346
- NativeUI.k(b, this.c.a6);
9443
+ NativeUI.o(b, this.c.ba);
9444
+ NativeUI.k(b, this.c.a7);
9347
9445
  }
9348
9446
  };
9349
9447
  ToolPanelView.prototype.f = function () {
@@ -9810,12 +9908,18 @@ var ToolAction = /** @class */ /*@__PURE__*/ (function (_super) {
9810
9908
  b = new ToolActionIconButton();
9811
9909
  break;
9812
9910
  case 4:
9813
- b = new ToolActionNumberInput();
9911
+ b = new ToolActionLabel();
9814
9912
  break;
9815
9913
  case 5:
9816
- b = new ToolActionSeparator();
9914
+ b = new ToolActionNumberInput();
9817
9915
  break;
9818
9916
  case 6:
9917
+ b = new ToolActionRadio();
9918
+ break;
9919
+ case 7:
9920
+ b = new ToolActionSeparator();
9921
+ break;
9922
+ case 8:
9819
9923
  b = new ToolActionIconMenu();
9820
9924
  break;
9821
9925
  case 0: return null;
@@ -9840,6 +9944,163 @@ var ToolAction = /** @class */ /*@__PURE__*/ (function (_super) {
9840
9944
  ToolAction.$t = markType(ToolAction, 'ToolAction', Base.$, [INotifyPropertyChanged_$type]);
9841
9945
  return ToolAction;
9842
9946
  }(Base));
9947
+ /**
9948
+ * @hidden
9949
+ */
9950
+ var ToolActionLabel = /** @class */ /*@__PURE__*/ (function (_super) {
9951
+ __extends(ToolActionLabel, _super);
9952
+ function ToolActionLabel() {
9953
+ return _super !== null && _super.apply(this, arguments) || this;
9954
+ }
9955
+ ToolActionLabel.prototype.get_f = function () {
9956
+ return 4;
9957
+ };
9958
+ ToolActionLabel.prototype.bf = function (a, b, c, d, e, f, g) {
9959
+ if (a.w == null || EnumUtil.getEnumValue(ToolActionType_$type, a.w) != this.f) {
9960
+ a.a0 = b;
9961
+ if (g.a == 1) {
9962
+ b.d = 0;
9963
+ }
9964
+ else {
9965
+ b.d = 3;
9966
+ }
9967
+ b.a7(0, 2, 1);
9968
+ b.a6(0, 1, isNaN_(g.e) ? 0 : g.e);
9969
+ b.a6(1, 1, isNaN_(g.g) ? 0 : g.g);
9970
+ b.as = new Thickness(1, this.r, this.t, this.s, this.q);
9971
+ if (b.av == 0) {
9972
+ b.aw(c);
9973
+ }
9974
+ b.bb(c, 0);
9975
+ b.ba(c, 1);
9976
+ c.e = 1;
9977
+ b.a1 = runOn(this, this.be);
9978
+ }
9979
+ b.h = f.a.j;
9980
+ b.aj = BrushUtil.g(0, 0, 0, 0);
9981
+ c.au = this.ap;
9982
+ c.al = BrushUtil.g(255, 20, 20, 20);
9983
+ };
9984
+ ToolActionLabel.prototype.be = function (a, b) {
9985
+ this.a9(this.b(false), this);
9986
+ };
9987
+ ToolActionLabel.prototype.bb = function (a, b, c, d) {
9988
+ var _this = this;
9989
+ _super.prototype.bb.call(this, a, b, c, d);
9990
+ var e = c.b;
9991
+ if (e.a0 == null || (e.w == null || EnumUtil.getEnumValue(ToolActionType_$type, e.w) != this.f)) {
9992
+ NativeUIComponent.ab(b.l.r(), [7, 3], function (f) {
9993
+ var g = f[0];
9994
+ var h = f[1];
9995
+ e.a0 = g;
9996
+ _this.bf(e, g, h, a, b, c, d);
9997
+ });
9998
+ ;
9999
+ }
10000
+ else {
10001
+ var f = e.a0;
10002
+ var g = f.au(0);
10003
+ this.bf(e, f, g, a, b, c, d);
10004
+ }
10005
+ };
10006
+ ToolActionLabel.$t = markType(ToolActionLabel, 'ToolActionLabel', ToolAction.$);
10007
+ return ToolActionLabel;
10008
+ }(ToolAction));
10009
+ /**
10010
+ * @hidden
10011
+ */
10012
+ var ToolActionRadio = /** @class */ /*@__PURE__*/ (function (_super) {
10013
+ __extends(ToolActionRadio, _super);
10014
+ function ToolActionRadio() {
10015
+ var _this = _super !== null && _super.apply(this, arguments) || this;
10016
+ _this.bf = null;
10017
+ _this.be = null;
10018
+ return _this;
10019
+ }
10020
+ ToolActionRadio.prototype.get_f = function () {
10021
+ return 6;
10022
+ };
10023
+ ToolActionRadio.prototype.b = function (a) {
10024
+ var b = new ToolActionEventDetail();
10025
+ b.a = this;
10026
+ b.b = this.f;
10027
+ b.d = a;
10028
+ if (this.be != null) {
10029
+ b.c = this.be.aw;
10030
+ }
10031
+ return b;
10032
+ };
10033
+ ToolActionRadio.prototype.x = function () {
10034
+ return this.be.aw;
10035
+ };
10036
+ ToolActionRadio.prototype.bg = function () {
10037
+ if (this.be != null) {
10038
+ this.be.aw = false;
10039
+ }
10040
+ };
10041
+ ToolActionRadio.prototype.o = function (a, b) {
10042
+ return 30;
10043
+ };
10044
+ ToolActionRadio.prototype.bi = function (a, b, c, d, e, f, g, h) {
10045
+ if (a.w == null || EnumUtil.getEnumValue(ToolActionType_$type, a.w) != this.f) {
10046
+ a.a0 = b;
10047
+ if (h.a == 1) {
10048
+ b.d = 0;
10049
+ }
10050
+ else {
10051
+ b.d = 3;
10052
+ }
10053
+ b.a7(0, 2, 1);
10054
+ b.a6(0, 1, isNaN_(h.e) ? 0 : h.e);
10055
+ b.a6(1, 1, isNaN_(h.g) ? 0 : h.g);
10056
+ b.a6(1, 2, 1);
10057
+ b.as = new Thickness(1, this.r, this.t, this.s, this.q);
10058
+ if (b.av == 0) {
10059
+ b.aw(c);
10060
+ b.aw(d);
10061
+ }
10062
+ b.bb(c, 0);
10063
+ b.ba(c, 1);
10064
+ b.bb(d, 0);
10065
+ b.ba(d, 2);
10066
+ this.be = d;
10067
+ d.ax = 25;
10068
+ d.av = true;
10069
+ d.d = 2;
10070
+ d.e = 1;
10071
+ d.au = runOn(this, this.bh);
10072
+ c.e = 1;
10073
+ }
10074
+ b.h = g.a.j;
10075
+ c.au = this.ap;
10076
+ c.al = BrushUtil.g(255, 20, 20, 20);
10077
+ };
10078
+ ToolActionRadio.prototype.bh = function (a, b) {
10079
+ this.a9(this.b(true), this);
10080
+ };
10081
+ ToolActionRadio.prototype.bb = function (a, b, c, d) {
10082
+ var _this = this;
10083
+ _super.prototype.bb.call(this, a, b, c, d);
10084
+ var e = c.b;
10085
+ if (e.a0 == null || (e.w == null || EnumUtil.getEnumValue(ToolActionType_$type, e.w) != this.f)) {
10086
+ NativeUIComponent.ab(b.l.r(), [7, 3, 6], function (f) {
10087
+ var g = f[0];
10088
+ var h = f[1];
10089
+ var i = f[2];
10090
+ e.a0 = g;
10091
+ _this.bi(e, g, h, i, a, b, c, d);
10092
+ });
10093
+ }
10094
+ else {
10095
+ var f = e.a0;
10096
+ var g = f.au(0);
10097
+ var h = f.au(1);
10098
+ this.bi(e, f, g, h, a, b, c, d);
10099
+ }
10100
+ };
10101
+ ToolActionRadio.$t = markType(ToolActionRadio, 'ToolActionRadio', ToolAction.$);
10102
+ return ToolActionRadio;
10103
+ }(ToolAction));
9843
10104
  /**
9844
10105
  * @hidden
9845
10106
  */
@@ -9849,7 +10110,7 @@ var ToolActionSeparator = /** @class */ /*@__PURE__*/ (function (_super) {
9849
10110
  return _super !== null && _super.apply(this, arguments) || this;
9850
10111
  }
9851
10112
  ToolActionSeparator.prototype.get_f = function () {
9852
- return 5;
10113
+ return 7;
9853
10114
  };
9854
10115
  ToolActionSeparator.prototype.a5 = function (a, b) {
9855
10116
  _super.prototype.a5.call(this, a, b);
@@ -9934,14 +10195,14 @@ var ToolActionIconButton = /** @class */ /*@__PURE__*/ (function (_super) {
9934
10195
  else {
9935
10196
  b.d = 3;
9936
10197
  }
9937
- b.a5(0, 2, 1);
9938
- b.a4(0, 1, isNaN_(g.f) ? 0 : g.f);
10198
+ b.a7(0, 2, 1);
10199
+ b.a6(0, 1, isNaN_(g.f) ? 0 : g.f);
9939
10200
  b.as = new Thickness(1, this.r, this.t, this.s, this.q);
9940
10201
  if (b.av == 0) {
9941
10202
  b.aw(c);
9942
10203
  }
9943
- b.a9(c, 0);
9944
- b.a8(c, 0);
10204
+ b.bb(c, 0);
10205
+ b.ba(c, 0);
9945
10206
  this.be = c;
9946
10207
  this.be.av = 2;
9947
10208
  this.be.au = runOn(this, this.bf);
@@ -9994,9 +10255,9 @@ var ToolActionGroupHeader = /** @class */ /*@__PURE__*/ (function (_super) {
9994
10255
  else {
9995
10256
  b.d = 3;
9996
10257
  }
9997
- b.a5(0, 2, 1);
9998
- b.a4(0, 1, isNaN_(g.e) ? 0 : g.e);
9999
- b.a4(1, 2, 1);
10258
+ b.a7(0, 2, 1);
10259
+ b.a6(0, 1, isNaN_(g.e) ? 0 : g.e);
10260
+ b.a6(1, 2, 1);
10000
10261
  b.as = new Thickness(1, this.r, this.t, this.s, this.q);
10001
10262
  if (b.av == 0) {
10002
10263
  b.aw(c);
@@ -10009,8 +10270,8 @@ var ToolActionGroupHeader = /** @class */ /*@__PURE__*/ (function (_super) {
10009
10270
  b.aq = new Thickness(1, 0, 0, 0, 2);
10010
10271
  c.au = this.ap;
10011
10272
  c.al = BrushUtil.g(255, 20, 20, 20);
10012
- b.a9(c, 0);
10013
- b.a8(c, 1);
10273
+ b.bb(c, 0);
10274
+ b.ba(c, 1);
10014
10275
  };
10015
10276
  ToolActionGroupHeader.prototype.bb = function (a, b, c, d) {
10016
10277
  var _this = this;
@@ -10183,14 +10444,14 @@ var ToolActionIconMenu = /** @class */ /*@__PURE__*/ (function (_super) {
10183
10444
  else {
10184
10445
  b.d = 3;
10185
10446
  }
10186
- b.a5(0, 2, 1);
10187
- b.a4(0, 1, isNaN_(g.f) ? 0 : g.f);
10447
+ b.a7(0, 2, 1);
10448
+ b.a6(0, 1, isNaN_(g.f) ? 0 : g.f);
10188
10449
  b.as = new Thickness(1, this.r, this.t, this.s, this.q);
10189
10450
  if (b.av == 0) {
10190
10451
  b.aw(c);
10191
10452
  }
10192
- b.a9(c, 0);
10193
- b.a8(c, 0);
10453
+ b.bb(c, 0);
10454
+ b.ba(c, 0);
10194
10455
  this.bz = c;
10195
10456
  this.bz.av = 2;
10196
10457
  this.bz.au = runOn(this, this.b0);
@@ -10261,19 +10522,19 @@ var ToolActionCheckbox = /** @class */ /*@__PURE__*/ (function (_super) {
10261
10522
  else {
10262
10523
  b.d = 3;
10263
10524
  }
10264
- b.a5(0, 2, 1);
10265
- b.a4(0, 1, isNaN_(h.e) ? 0 : h.e);
10266
- b.a4(1, 1, isNaN_(h.g) ? 0 : h.g);
10267
- b.a4(1, 2, 1);
10525
+ b.a7(0, 2, 1);
10526
+ b.a6(0, 1, isNaN_(h.e) ? 0 : h.e);
10527
+ b.a6(1, 1, isNaN_(h.g) ? 0 : h.g);
10528
+ b.a6(1, 2, 1);
10268
10529
  b.as = new Thickness(1, this.r, this.t, this.s, this.q);
10269
10530
  if (b.av == 0) {
10270
10531
  b.aw(c);
10271
10532
  b.aw(d);
10272
10533
  }
10273
- b.a9(c, 0);
10274
- b.a8(c, 1);
10275
- b.a9(d, 0);
10276
- b.a8(d, 2);
10534
+ b.bb(c, 0);
10535
+ b.ba(c, 1);
10536
+ b.bb(d, 0);
10537
+ b.ba(d, 2);
10277
10538
  this.be = d;
10278
10539
  d.av = true;
10279
10540
  d.d = 2;
@@ -10322,7 +10583,7 @@ var ToolActionNumberInput = /** @class */ /*@__PURE__*/ (function (_super) {
10322
10583
  return _this;
10323
10584
  }
10324
10585
  ToolActionNumberInput.prototype.get_f = function () {
10325
- return 4;
10586
+ return 5;
10326
10587
  };
10327
10588
  ToolActionNumberInput.prototype.x = function () {
10328
10589
  return this.bf();
@@ -10339,19 +10600,19 @@ var ToolActionNumberInput = /** @class */ /*@__PURE__*/ (function (_super) {
10339
10600
  else {
10340
10601
  b.d = 3;
10341
10602
  }
10342
- b.a5(0, 2, 1);
10343
- b.a4(0, 1, isNaN_(h.e) ? 0 : h.e);
10344
- b.a4(1, 1, isNaN_(h.g) ? 0 : h.g);
10345
- b.a4(1, 2, 1);
10603
+ b.a7(0, 2, 1);
10604
+ b.a6(0, 1, isNaN_(h.e) ? 0 : h.e);
10605
+ b.a6(1, 1, isNaN_(h.g) ? 0 : h.g);
10606
+ b.a6(1, 2, 1);
10346
10607
  b.as = new Thickness(1, this.r, this.t, this.s, this.q);
10347
10608
  if (b.av == 0) {
10348
10609
  b.aw(c);
10349
10610
  b.aw(d);
10350
10611
  }
10351
- b.a9(c, 0);
10352
- b.a8(c, 1);
10353
- b.a9(d, 0);
10354
- b.a8(d, 2);
10612
+ b.bb(c, 0);
10613
+ b.ba(c, 1);
10614
+ b.bb(d, 0);
10615
+ b.ba(d, 2);
10355
10616
  this.be = d;
10356
10617
  d.n = 100;
10357
10618
  d.au = 2;
@@ -10488,8 +10749,8 @@ var ToolPanel = /** @class */ /*@__PURE__*/ (function (_super) {
10488
10749
  _this.v = new Dictionary$2(String_$type, ToolAction.$, 0);
10489
10750
  _this.m = null;
10490
10751
  _this.a = null;
10491
- _this.a4 = ToolPanel.a7;
10492
10752
  _this.a5 = ToolPanel.a8;
10753
+ _this.a6 = ToolPanel.a9;
10493
10754
  _this.b = null;
10494
10755
  _this.z = Number.POSITIVE_INFINITY;
10495
10756
  _this.i = ToolPanel.j;
@@ -10654,7 +10915,7 @@ var ToolPanel = /** @class */ /*@__PURE__*/ (function (_super) {
10654
10915
  }
10655
10916
  this.t = false;
10656
10917
  this.al();
10657
- this.a3();
10918
+ this.a4();
10658
10919
  for (var a = 0; a < this.d.count; a++) {
10659
10920
  this.as(this.d._inner[a]);
10660
10921
  }
@@ -10681,6 +10942,15 @@ var ToolPanel = /** @class */ /*@__PURE__*/ (function (_super) {
10681
10942
  }
10682
10943
  }
10683
10944
  }
10945
+ for (var d = 0; d < this.d.count; d++) {
10946
+ if (this.d._inner[d].f == 6) {
10947
+ var e = this.d._inner[d].bf;
10948
+ if (!this.x.containsKey(e)) {
10949
+ this.x.item(e, new List$1(ToolAction.$, 0));
10950
+ }
10951
+ this.x.item(e).add(this.d._inner[d]);
10952
+ }
10953
+ }
10684
10954
  };
10685
10955
  ToolPanel.prototype.u = function (a) {
10686
10956
  if (a.ao == null) {
@@ -10731,7 +11001,7 @@ var ToolPanel = /** @class */ /*@__PURE__*/ (function (_super) {
10731
11001
  }
10732
11002
  }
10733
11003
  };
10734
- ToolPanel.prototype.a3 = function () {
11004
+ ToolPanel.prototype.a4 = function () {
10735
11005
  this.f = new ToolActionMeasurementContext();
10736
11006
  this.f.a = this.k;
10737
11007
  this.f.b = this.z;
@@ -10749,6 +11019,19 @@ var ToolPanel = /** @class */ /*@__PURE__*/ (function (_super) {
10749
11019
  this.b.bt();
10750
11020
  }
10751
11021
  };
11022
+ ToolPanel.prototype.a3 = function (a) {
11023
+ var b = a.bf;
11024
+ var c = a.ao;
11025
+ if (this.x != null) {
11026
+ if (this.x.containsKey(b)) {
11027
+ for (var d = 0; d < this.x.item(b).count; d++) {
11028
+ if (this.x.item(b)._inner[d].ao != c) {
11029
+ this.x.item(b)._inner[d].bg();
11030
+ }
11031
+ }
11032
+ }
11033
+ }
11034
+ };
10752
11035
  ToolPanel.prototype.ar = function (a, b) {
10753
11036
  this.av();
10754
11037
  };
@@ -10814,28 +11097,28 @@ var ToolPanel = /** @class */ /*@__PURE__*/ (function (_super) {
10814
11097
  break;
10815
11098
  }
10816
11099
  };
10817
- Object.defineProperty(ToolPanel.prototype, "a6", {
11100
+ Object.defineProperty(ToolPanel.prototype, "a7", {
10818
11101
  get: function () {
10819
- return this.a4;
11102
+ return this.a5;
10820
11103
  },
10821
11104
  set: function (a) {
10822
- var b = this.a4;
10823
- this.a4 = a;
10824
- if (b != this.a4) {
11105
+ var b = this.a5;
11106
+ this.a5 = a;
11107
+ if (b != this.a5) {
10825
11108
  this.ax("BackgroundColor", b, a);
10826
11109
  }
10827
11110
  },
10828
11111
  enumerable: true,
10829
11112
  configurable: true
10830
11113
  });
10831
- Object.defineProperty(ToolPanel.prototype, "a9", {
11114
+ Object.defineProperty(ToolPanel.prototype, "ba", {
10832
11115
  get: function () {
10833
- return this.a5;
11116
+ return this.a6;
10834
11117
  },
10835
11118
  set: function (a) {
10836
- var b = this.a5;
10837
- this.a5 = a;
10838
- if (b != this.a5) {
11119
+ var b = this.a6;
11120
+ this.a6 = a;
11121
+ if (b != this.a6) {
10839
11122
  this.ax("TextColor", b, a);
10840
11123
  }
10841
11124
  },
@@ -10864,10 +11147,13 @@ var ToolPanel = /** @class */ /*@__PURE__*/ (function (_super) {
10864
11147
  return $ret;
10865
11148
  })()));
10866
11149
  }
11150
+ if (a.f == 6) {
11151
+ this.a3(a);
11152
+ }
10867
11153
  };
10868
11154
  ToolPanel.$t = markType(ToolPanel, 'ToolPanel', Base.$, [INotifyPropertyChanged_$type]);
10869
- ToolPanel.a7 = BrushUtil.g(255, 248, 248, 248);
10870
- ToolPanel.a8 = BrushUtil.g(255, 24, 29, 31);
11155
+ ToolPanel.a8 = BrushUtil.g(255, 248, 248, 248);
11156
+ ToolPanel.a9 = BrushUtil.g(255, 24, 29, 31);
10871
11157
  ToolPanel.j = 0;
10872
11158
  return ToolPanel;
10873
11159
  }(Base));
@@ -10953,17 +11239,18 @@ var IgcToolActionEventDetail = /** @class */ /*@__PURE__*/ (function () {
10953
11239
  };
10954
11240
  Object.defineProperty(IgcToolActionEventDetail.prototype, "action", {
10955
11241
  get: function () {
10956
- if (this.i.a == null) {
11242
+ var r = this.i.a;
11243
+ if (r == null) {
10957
11244
  return null;
10958
11245
  }
10959
- if (!this.i.a.externalObject) {
10960
- var e = IgcToolActionComponent._createFromInternal(this.i.a);
11246
+ if (!r.externalObject) {
11247
+ var e = IgcToolActionComponent._createFromInternal(r);
10961
11248
  if (e) {
10962
- e._implementation = this.i.a;
11249
+ e._implementation = r;
10963
11250
  }
10964
- this.i.a.externalObject = e;
11251
+ r.externalObject = e;
10965
11252
  }
10966
- return this.i.a.externalObject;
11253
+ return r.externalObject;
10967
11254
  },
10968
11255
  set: function (v) {
10969
11256
  v == null ? this.i.a = null : this.i.a = v.i;
@@ -11032,6 +11319,11 @@ var IgcToolActionEventDetail = /** @class */ /*@__PURE__*/ (function () {
11032
11319
  configurable: true
11033
11320
  });
11034
11321
  IgcToolActionEventDetail.prototype.findByName = function (name) {
11322
+ if (this.findEphemera) {
11323
+ if (name && name.indexOf("@@e:") == 0) {
11324
+ return this.findEphemera(name);
11325
+ }
11326
+ }
11035
11327
  if (this.action && this.action.name && this.action.name == name) {
11036
11328
  return this.action;
11037
11329
  }
@@ -11140,15 +11432,21 @@ var IgcToolActionPerformedEventArgs = /** @class */ /*@__PURE__*/ (function () {
11140
11432
  });
11141
11433
  Object.defineProperty(IgcToolActionPerformedEventArgs.prototype, "detail", {
11142
11434
  get: function () {
11143
- if (this.i.a == null) {
11435
+ var r = this.i.a;
11436
+ if (r == null) {
11144
11437
  return null;
11145
11438
  }
11146
- if (!this.i.a.externalObject) {
11439
+ if (!r.externalObject) {
11147
11440
  var e = new IgcToolActionEventDetail();
11148
- e._implementation = this.i.a;
11149
- this.i.a.externalObject = e;
11441
+ if (e.i.setNativeElement) {
11442
+ e.i.setNativeElement(r);
11443
+ }
11444
+ else {
11445
+ e._implementation = r;
11446
+ }
11447
+ r.externalObject = e;
11150
11448
  }
11151
- return this.i.a.externalObject;
11449
+ return r.externalObject;
11152
11450
  },
11153
11451
  set: function (v) {
11154
11452
  v == null ? this.i.a = null : this.i.a = v.i;
@@ -11290,11 +11588,25 @@ var IgcToolActionComponent = /** @class */ /*@__PURE__*/ (function (_super) {
11290
11588
  if (_super.prototype["connectedCallback"]) {
11291
11589
  _super.prototype["connectedCallback"].call(this);
11292
11590
  }
11591
+ if (this.i.connectedCallback) {
11592
+ this.i.connectedCallback();
11593
+ }
11293
11594
  if (!this._attached) {
11294
11595
  this._attached = true;
11295
11596
  this._flushQueuedAttributes();
11296
11597
  }
11297
11598
  };
11599
+ IgcToolActionComponent.prototype.disconnectedCallback = function () {
11600
+ if (_super.prototype["disconnectedCallback"]) {
11601
+ _super.prototype["disconnectedCallback"].call(this);
11602
+ }
11603
+ if (this.i.disconnectedCallback) {
11604
+ this.i.disconnectedCallback();
11605
+ }
11606
+ if (this._attached) {
11607
+ this._attached = false;
11608
+ }
11609
+ };
11298
11610
  Object.defineProperty(IgcToolActionComponent, "observedAttributes", {
11299
11611
  get: function () {
11300
11612
  if (IgcToolActionComponent._observedAttributesIgcToolActionComponent == null) {
@@ -11456,6 +11768,11 @@ var IgcToolActionComponent = /** @class */ /*@__PURE__*/ (function (_super) {
11456
11768
  configurable: true
11457
11769
  });
11458
11770
  IgcToolActionComponent.prototype.findByName = function (name) {
11771
+ if (this.findEphemera) {
11772
+ if (name && name.indexOf("@@e:") == 0) {
11773
+ return this.findEphemera(name);
11774
+ }
11775
+ }
11459
11776
  return null;
11460
11777
  };
11461
11778
  Object.defineProperty(IgcToolActionComponent.prototype, "hasUserValues", {
@@ -11541,6 +11858,7 @@ var IgcToolActionComponent = /** @class */ /*@__PURE__*/ (function (_super) {
11541
11858
  }
11542
11859
  };
11543
11860
  this.i.onCommand = delegateCombine(this.i.onCommand, this._onCommand_wrapped);
11861
+ ;
11544
11862
  },
11545
11863
  enumerable: true,
11546
11864
  configurable: true
@@ -11568,6 +11886,7 @@ var IgcToolActionComponent = /** @class */ /*@__PURE__*/ (function (_super) {
11568
11886
  }
11569
11887
  };
11570
11888
  this.i.performed = delegateCombine(this.i.performed, this._performed_wrapped);
11889
+ ;
11571
11890
  },
11572
11891
  enumerable: true,
11573
11892
  configurable: true
@@ -11928,11 +12247,11 @@ var IgcToolPanelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
11928
12247
  * Gets or sets the color to use for the background of the component.
11929
12248
  */
11930
12249
  get: function () {
11931
- return brushToString(this.i.a6);
12250
+ return brushToString(this.i.a7);
11932
12251
  },
11933
12252
  set: function (v) {
11934
- this.i.a6 = stringToBrush(v);
11935
- this._a("backgroundColor", brushToString(this.i.a6));
12253
+ this.i.a7 = stringToBrush(v);
12254
+ this._a("backgroundColor", brushToString(this.i.a7));
11936
12255
  },
11937
12256
  enumerable: true,
11938
12257
  configurable: true
@@ -11942,11 +12261,11 @@ var IgcToolPanelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
11942
12261
  * Gets or sets the color to use for the text of the component.
11943
12262
  */
11944
12263
  get: function () {
11945
- return brushToString(this.i.a9);
12264
+ return brushToString(this.i.ba);
11946
12265
  },
11947
12266
  set: function (v) {
11948
- this.i.a9 = stringToBrush(v);
11949
- this._a("textColor", brushToString(this.i.a9));
12267
+ this.i.ba = stringToBrush(v);
12268
+ this._a("textColor", brushToString(this.i.ba));
11950
12269
  },
11951
12270
  enumerable: true,
11952
12271
  configurable: true
@@ -11966,6 +12285,11 @@ var IgcToolPanelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
11966
12285
  configurable: true
11967
12286
  });
11968
12287
  IgcToolPanelComponent.prototype.findByName = function (name) {
12288
+ if (this.findEphemera) {
12289
+ if (name && name.indexOf("@@e:") == 0) {
12290
+ return this.findEphemera(name);
12291
+ }
12292
+ }
11969
12293
  if (this.actions != null && this.actions.findByName && this.actions.findByName(name)) {
11970
12294
  return this.actions.findByName(name);
11971
12295
  }
@@ -12051,6 +12375,7 @@ var IgcToolPanelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
12051
12375
  }
12052
12376
  };
12053
12377
  this.i.contentRefreshed = delegateCombine(this.i.contentRefreshed, this._contentRefreshed_wrapped);
12378
+ ;
12054
12379
  },
12055
12380
  enumerable: true,
12056
12381
  configurable: true
@@ -12078,6 +12403,7 @@ var IgcToolPanelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
12078
12403
  }
12079
12404
  };
12080
12405
  this.i.onCommand = delegateCombine(this.i.onCommand, this._onCommand_wrapped);
12406
+ ;
12081
12407
  },
12082
12408
  enumerable: true,
12083
12409
  configurable: true
@@ -12995,6 +13321,11 @@ var IgcToolbarComponent = /** @class */ /*@__PURE__*/ (function (_super) {
12995
13321
  configurable: true
12996
13322
  });
12997
13323
  IgcToolbarComponent.prototype.findByName = function (name) {
13324
+ if (this.findEphemera) {
13325
+ if (name && name.indexOf("@@e:") == 0) {
13326
+ return this.findEphemera(name);
13327
+ }
13328
+ }
12998
13329
  if (this.autoGeneratedActions != null && this.autoGeneratedActions.findByName && this.autoGeneratedActions.findByName(name)) {
12999
13330
  return this.autoGeneratedActions.findByName(name);
13000
13331
  }
@@ -13098,11 +13429,25 @@ var IgcToolActionCheckboxComponent = /** @class */ /*@__PURE__*/ (function (_sup
13098
13429
  if (_super.prototype["connectedCallback"]) {
13099
13430
  _super.prototype["connectedCallback"].call(this);
13100
13431
  }
13432
+ if (this.i.connectedCallback) {
13433
+ this.i.connectedCallback();
13434
+ }
13101
13435
  if (!this._attached) {
13102
13436
  this._attached = true;
13103
13437
  this._flushQueuedAttributes();
13104
13438
  }
13105
13439
  };
13440
+ IgcToolActionCheckboxComponent.prototype.disconnectedCallback = function () {
13441
+ if (_super.prototype["disconnectedCallback"]) {
13442
+ _super.prototype["disconnectedCallback"].call(this);
13443
+ }
13444
+ if (this.i.disconnectedCallback) {
13445
+ this.i.disconnectedCallback();
13446
+ }
13447
+ if (this._attached) {
13448
+ this._attached = false;
13449
+ }
13450
+ };
13106
13451
  Object.defineProperty(IgcToolActionCheckboxComponent, "observedAttributes", {
13107
13452
  get: function () {
13108
13453
  if (IgcToolActionCheckboxComponent._observedAttributesIgcToolActionCheckboxComponent == null) {
@@ -13175,11 +13520,25 @@ var IgcToolActionGroupHeaderComponent = /** @class */ /*@__PURE__*/ (function (_
13175
13520
  if (_super.prototype["connectedCallback"]) {
13176
13521
  _super.prototype["connectedCallback"].call(this);
13177
13522
  }
13523
+ if (this.i.connectedCallback) {
13524
+ this.i.connectedCallback();
13525
+ }
13178
13526
  if (!this._attached) {
13179
13527
  this._attached = true;
13180
13528
  this._flushQueuedAttributes();
13181
13529
  }
13182
13530
  };
13531
+ IgcToolActionGroupHeaderComponent.prototype.disconnectedCallback = function () {
13532
+ if (_super.prototype["disconnectedCallback"]) {
13533
+ _super.prototype["disconnectedCallback"].call(this);
13534
+ }
13535
+ if (this.i.disconnectedCallback) {
13536
+ this.i.disconnectedCallback();
13537
+ }
13538
+ if (this._attached) {
13539
+ this._attached = false;
13540
+ }
13541
+ };
13183
13542
  Object.defineProperty(IgcToolActionGroupHeaderComponent, "observedAttributes", {
13184
13543
  get: function () {
13185
13544
  if (IgcToolActionGroupHeaderComponent._observedAttributesIgcToolActionGroupHeaderComponent == null) {
@@ -13252,11 +13611,25 @@ var IgcToolActionNumberInputComponent = /** @class */ /*@__PURE__*/ (function (_
13252
13611
  if (_super.prototype["connectedCallback"]) {
13253
13612
  _super.prototype["connectedCallback"].call(this);
13254
13613
  }
13614
+ if (this.i.connectedCallback) {
13615
+ this.i.connectedCallback();
13616
+ }
13255
13617
  if (!this._attached) {
13256
13618
  this._attached = true;
13257
13619
  this._flushQueuedAttributes();
13258
13620
  }
13259
13621
  };
13622
+ IgcToolActionNumberInputComponent.prototype.disconnectedCallback = function () {
13623
+ if (_super.prototype["disconnectedCallback"]) {
13624
+ _super.prototype["disconnectedCallback"].call(this);
13625
+ }
13626
+ if (this.i.disconnectedCallback) {
13627
+ this.i.disconnectedCallback();
13628
+ }
13629
+ if (this._attached) {
13630
+ this._attached = false;
13631
+ }
13632
+ };
13260
13633
  Object.defineProperty(IgcToolActionNumberInputComponent, "observedAttributes", {
13261
13634
  get: function () {
13262
13635
  if (IgcToolActionNumberInputComponent._observedAttributesIgcToolActionNumberInputComponent == null) {
@@ -13329,11 +13702,25 @@ var IgcToolActionIconButtonComponent = /** @class */ /*@__PURE__*/ (function (_s
13329
13702
  if (_super.prototype["connectedCallback"]) {
13330
13703
  _super.prototype["connectedCallback"].call(this);
13331
13704
  }
13705
+ if (this.i.connectedCallback) {
13706
+ this.i.connectedCallback();
13707
+ }
13332
13708
  if (!this._attached) {
13333
13709
  this._attached = true;
13334
13710
  this._flushQueuedAttributes();
13335
13711
  }
13336
13712
  };
13713
+ IgcToolActionIconButtonComponent.prototype.disconnectedCallback = function () {
13714
+ if (_super.prototype["disconnectedCallback"]) {
13715
+ _super.prototype["disconnectedCallback"].call(this);
13716
+ }
13717
+ if (this.i.disconnectedCallback) {
13718
+ this.i.disconnectedCallback();
13719
+ }
13720
+ if (this._attached) {
13721
+ this._attached = false;
13722
+ }
13723
+ };
13337
13724
  Object.defineProperty(IgcToolActionIconButtonComponent, "observedAttributes", {
13338
13725
  get: function () {
13339
13726
  if (IgcToolActionIconButtonComponent._observedAttributesIgcToolActionIconButtonComponent == null) {
@@ -13401,11 +13788,25 @@ var IgcToolActionMenuBaseComponent = /** @class */ /*@__PURE__*/ (function (_sup
13401
13788
  if (_super.prototype["connectedCallback"]) {
13402
13789
  _super.prototype["connectedCallback"].call(this);
13403
13790
  }
13791
+ if (this.i.connectedCallback) {
13792
+ this.i.connectedCallback();
13793
+ }
13404
13794
  if (!this._attached) {
13405
13795
  this._attached = true;
13406
13796
  this._flushQueuedAttributes();
13407
13797
  }
13408
13798
  };
13799
+ IgcToolActionMenuBaseComponent.prototype.disconnectedCallback = function () {
13800
+ if (_super.prototype["disconnectedCallback"]) {
13801
+ _super.prototype["disconnectedCallback"].call(this);
13802
+ }
13803
+ if (this.i.disconnectedCallback) {
13804
+ this.i.disconnectedCallback();
13805
+ }
13806
+ if (this._attached) {
13807
+ this._attached = false;
13808
+ }
13809
+ };
13409
13810
  Object.defineProperty(IgcToolActionMenuBaseComponent, "observedAttributes", {
13410
13811
  get: function () {
13411
13812
  if (IgcToolActionMenuBaseComponent._observedAttributesIgcToolActionMenuBaseComponent == null) {
@@ -13502,11 +13903,25 @@ var IgcToolActionIconMenuComponent = /** @class */ /*@__PURE__*/ (function (_sup
13502
13903
  if (_super.prototype["connectedCallback"]) {
13503
13904
  _super.prototype["connectedCallback"].call(this);
13504
13905
  }
13906
+ if (this.i.connectedCallback) {
13907
+ this.i.connectedCallback();
13908
+ }
13505
13909
  if (!this._attached) {
13506
13910
  this._attached = true;
13507
13911
  this._flushQueuedAttributes();
13508
13912
  }
13509
13913
  };
13914
+ IgcToolActionIconMenuComponent.prototype.disconnectedCallback = function () {
13915
+ if (_super.prototype["disconnectedCallback"]) {
13916
+ _super.prototype["disconnectedCallback"].call(this);
13917
+ }
13918
+ if (this.i.disconnectedCallback) {
13919
+ this.i.disconnectedCallback();
13920
+ }
13921
+ if (this._attached) {
13922
+ this._attached = false;
13923
+ }
13924
+ };
13510
13925
  Object.defineProperty(IgcToolActionIconMenuComponent, "observedAttributes", {
13511
13926
  get: function () {
13512
13927
  if (IgcToolActionIconMenuComponent._observedAttributesIgcToolActionIconMenuComponent == null) {
@@ -13700,6 +14115,198 @@ https://www.infragistics.com/legal/license/igultimate-eula
13700
14115
  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.
13701
14116
  */
13702
14117
 
14118
+ var IgcToolActionLabelComponent = /** @class */ /*@__PURE__*/ (function (_super) {
14119
+ __extends(IgcToolActionLabelComponent, _super);
14120
+ function IgcToolActionLabelComponent() {
14121
+ return _super.call(this) || this;
14122
+ }
14123
+ IgcToolActionLabelComponent.prototype.createImplementation = function () {
14124
+ return new ToolActionLabel();
14125
+ };
14126
+ Object.defineProperty(IgcToolActionLabelComponent.prototype, "i", {
14127
+ /**
14128
+ * @hidden
14129
+ */
14130
+ get: function () {
14131
+ return this._implementation;
14132
+ },
14133
+ enumerable: true,
14134
+ configurable: true
14135
+ });
14136
+ IgcToolActionLabelComponent.prototype.connectedCallback = function () {
14137
+ if (_super.prototype["connectedCallback"]) {
14138
+ _super.prototype["connectedCallback"].call(this);
14139
+ }
14140
+ if (this.i.connectedCallback) {
14141
+ this.i.connectedCallback();
14142
+ }
14143
+ if (!this._attached) {
14144
+ this._attached = true;
14145
+ this._flushQueuedAttributes();
14146
+ }
14147
+ };
14148
+ IgcToolActionLabelComponent.prototype.disconnectedCallback = function () {
14149
+ if (_super.prototype["disconnectedCallback"]) {
14150
+ _super.prototype["disconnectedCallback"].call(this);
14151
+ }
14152
+ if (this.i.disconnectedCallback) {
14153
+ this.i.disconnectedCallback();
14154
+ }
14155
+ if (this._attached) {
14156
+ this._attached = false;
14157
+ }
14158
+ };
14159
+ Object.defineProperty(IgcToolActionLabelComponent, "observedAttributes", {
14160
+ get: function () {
14161
+ if (IgcToolActionLabelComponent._observedAttributesIgcToolActionLabelComponent == null) {
14162
+ var names = getAllPropertyNames(IgcToolActionLabelComponent);
14163
+ for (var i = 0; i < names.length; i++) {
14164
+ names[i] = toSpinal(names[i]);
14165
+ }
14166
+ IgcToolActionLabelComponent._observedAttributesIgcToolActionLabelComponent = names;
14167
+ }
14168
+ return IgcToolActionLabelComponent._observedAttributesIgcToolActionLabelComponent;
14169
+ },
14170
+ enumerable: true,
14171
+ configurable: true
14172
+ });
14173
+ IgcToolActionLabelComponent.register = function () {
14174
+ if (!IgcToolActionLabelComponent._isElementRegistered) {
14175
+ IgcToolActionLabelComponent._isElementRegistered = true;
14176
+ RegisterElementHelper.registerElement(IgcToolActionLabelComponent.htmlTagName, IgcToolActionLabelComponent);
14177
+ }
14178
+ };
14179
+ IgcToolActionLabelComponent._observedAttributesIgcToolActionLabelComponent = null;
14180
+ IgcToolActionLabelComponent.htmlTagName = "igc-tool-action-label";
14181
+ IgcToolActionLabelComponent._isElementRegistered = false;
14182
+ return IgcToolActionLabelComponent;
14183
+ }(IgcToolActionComponent));
14184
+
14185
+ /*
14186
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
14187
+ https://www.infragistics.com/legal/license/igultimate-la
14188
+ https://www.infragistics.com/legal/license/igultimate-eula
14189
+ 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.
14190
+ */
14191
+ var IgcToolActionLabelModule = /** @class */ /*@__PURE__*/ (function () {
14192
+ function IgcToolActionLabelModule() {
14193
+ }
14194
+ IgcToolActionLabelModule.register = function () {
14195
+ IgcToolActionLabelComponent.register();
14196
+ TypeRegistrar.registerCons("IgcToolActionLabelComponent", IgcToolActionLabelComponent);
14197
+ TypeRegistrar.register("ToolActionLabel", ToolActionLabel.$type);
14198
+ };
14199
+ return IgcToolActionLabelModule;
14200
+ }());
14201
+
14202
+ /*
14203
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
14204
+ https://www.infragistics.com/legal/license/igultimate-la
14205
+ https://www.infragistics.com/legal/license/igultimate-eula
14206
+ 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.
14207
+ */
14208
+
14209
+ var IgcToolActionRadioComponent = /** @class */ /*@__PURE__*/ (function (_super) {
14210
+ __extends(IgcToolActionRadioComponent, _super);
14211
+ function IgcToolActionRadioComponent() {
14212
+ return _super.call(this) || this;
14213
+ }
14214
+ IgcToolActionRadioComponent.prototype.createImplementation = function () {
14215
+ return new ToolActionRadio();
14216
+ };
14217
+ Object.defineProperty(IgcToolActionRadioComponent.prototype, "i", {
14218
+ /**
14219
+ * @hidden
14220
+ */
14221
+ get: function () {
14222
+ return this._implementation;
14223
+ },
14224
+ enumerable: true,
14225
+ configurable: true
14226
+ });
14227
+ IgcToolActionRadioComponent.prototype.connectedCallback = function () {
14228
+ if (_super.prototype["connectedCallback"]) {
14229
+ _super.prototype["connectedCallback"].call(this);
14230
+ }
14231
+ if (this.i.connectedCallback) {
14232
+ this.i.connectedCallback();
14233
+ }
14234
+ if (!this._attached) {
14235
+ this._attached = true;
14236
+ this._flushQueuedAttributes();
14237
+ }
14238
+ };
14239
+ IgcToolActionRadioComponent.prototype.disconnectedCallback = function () {
14240
+ if (_super.prototype["disconnectedCallback"]) {
14241
+ _super.prototype["disconnectedCallback"].call(this);
14242
+ }
14243
+ if (this.i.disconnectedCallback) {
14244
+ this.i.disconnectedCallback();
14245
+ }
14246
+ if (this._attached) {
14247
+ this._attached = false;
14248
+ }
14249
+ };
14250
+ Object.defineProperty(IgcToolActionRadioComponent, "observedAttributes", {
14251
+ get: function () {
14252
+ if (IgcToolActionRadioComponent._observedAttributesIgcToolActionRadioComponent == null) {
14253
+ var names = getAllPropertyNames(IgcToolActionRadioComponent);
14254
+ for (var i = 0; i < names.length; i++) {
14255
+ names[i] = toSpinal(names[i]);
14256
+ }
14257
+ IgcToolActionRadioComponent._observedAttributesIgcToolActionRadioComponent = names;
14258
+ }
14259
+ return IgcToolActionRadioComponent._observedAttributesIgcToolActionRadioComponent;
14260
+ },
14261
+ enumerable: true,
14262
+ configurable: true
14263
+ });
14264
+ IgcToolActionRadioComponent.register = function () {
14265
+ if (!IgcToolActionRadioComponent._isElementRegistered) {
14266
+ IgcToolActionRadioComponent._isElementRegistered = true;
14267
+ RegisterElementHelper.registerElement(IgcToolActionRadioComponent.htmlTagName, IgcToolActionRadioComponent);
14268
+ }
14269
+ };
14270
+ Object.defineProperty(IgcToolActionRadioComponent.prototype, "radioGroup", {
14271
+ get: function () {
14272
+ return this.i.bf;
14273
+ },
14274
+ set: function (v) {
14275
+ this.i.bf = v;
14276
+ },
14277
+ enumerable: true,
14278
+ configurable: true
14279
+ });
14280
+ IgcToolActionRadioComponent._observedAttributesIgcToolActionRadioComponent = null;
14281
+ IgcToolActionRadioComponent.htmlTagName = "igc-tool-action-radio";
14282
+ IgcToolActionRadioComponent._isElementRegistered = false;
14283
+ return IgcToolActionRadioComponent;
14284
+ }(IgcToolActionComponent));
14285
+
14286
+ /*
14287
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
14288
+ https://www.infragistics.com/legal/license/igultimate-la
14289
+ https://www.infragistics.com/legal/license/igultimate-eula
14290
+ 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.
14291
+ */
14292
+ var IgcToolActionRadioModule = /** @class */ /*@__PURE__*/ (function () {
14293
+ function IgcToolActionRadioModule() {
14294
+ }
14295
+ IgcToolActionRadioModule.register = function () {
14296
+ IgcToolActionRadioComponent.register();
14297
+ TypeRegistrar.registerCons("IgcToolActionRadioComponent", IgcToolActionRadioComponent);
14298
+ TypeRegistrar.register("ToolActionRadio", ToolActionRadio.$type);
14299
+ };
14300
+ return IgcToolActionRadioModule;
14301
+ }());
14302
+
14303
+ /*
14304
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
14305
+ https://www.infragistics.com/legal/license/igultimate-la
14306
+ https://www.infragistics.com/legal/license/igultimate-eula
14307
+ 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.
14308
+ */
14309
+
13703
14310
  var IgcToolActionSeparatorComponent = /** @class */ /*@__PURE__*/ (function (_super) {
13704
14311
  __extends(IgcToolActionSeparatorComponent, _super);
13705
14312
  function IgcToolActionSeparatorComponent() {
@@ -13722,11 +14329,25 @@ var IgcToolActionSeparatorComponent = /** @class */ /*@__PURE__*/ (function (_su
13722
14329
  if (_super.prototype["connectedCallback"]) {
13723
14330
  _super.prototype["connectedCallback"].call(this);
13724
14331
  }
14332
+ if (this.i.connectedCallback) {
14333
+ this.i.connectedCallback();
14334
+ }
13725
14335
  if (!this._attached) {
13726
14336
  this._attached = true;
13727
14337
  this._flushQueuedAttributes();
13728
14338
  }
13729
14339
  };
14340
+ IgcToolActionSeparatorComponent.prototype.disconnectedCallback = function () {
14341
+ if (_super.prototype["disconnectedCallback"]) {
14342
+ _super.prototype["disconnectedCallback"].call(this);
14343
+ }
14344
+ if (this.i.disconnectedCallback) {
14345
+ this.i.disconnectedCallback();
14346
+ }
14347
+ if (this._attached) {
14348
+ this._attached = false;
14349
+ }
14350
+ };
13730
14351
  Object.defineProperty(IgcToolActionSeparatorComponent, "observedAttributes", {
13731
14352
  get: function () {
13732
14353
  if (IgcToolActionSeparatorComponent._observedAttributesIgcToolActionSeparatorComponent == null) {
@@ -14025,10 +14646,10 @@ var IgcPropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function () {
14025
14646
  };
14026
14647
  Object.defineProperty(IgcPropertyEditorDataSource.prototype, "descriptionType", {
14027
14648
  get: function () {
14028
- return this.i.l;
14649
+ return this.i.n;
14029
14650
  },
14030
14651
  set: function (v) {
14031
- this.i.l = v;
14652
+ this.i.n = v;
14032
14653
  },
14033
14654
  enumerable: true,
14034
14655
  configurable: true
@@ -14044,9 +14665,14 @@ var IgcPropertyEditorDataSource = /** @class */ /*@__PURE__*/ (function () {
14044
14665
  configurable: true
14045
14666
  });
14046
14667
  IgcPropertyEditorDataSource.prototype.findByName = function (name) {
14668
+ if (this.findEphemera) {
14669
+ if (name && name.indexOf("@@e:") == 0) {
14670
+ return this.findEphemera(name);
14671
+ }
14672
+ }
14047
14673
  return null;
14048
14674
  };
14049
14675
  return IgcPropertyEditorDataSource;
14050
14676
  }());
14051
14677
 
14052
- export { ExpansionPanelUtilities, ExpansionPanelView, HorizontalPropertyEditorPanelDataSource, IExternalListPanel_$type, IExternalToolPanel_$type, IExternalToolbar_$type, IListPanelView_$type, IPropertyEditorPanelView_$type, IToolPanelView_$type, IToolbarView_$type, IgcHorizontalPropertyEditorPanelDataSource, IgcListPanelComponent, IgcListPanelContentRefreshedEventArgs, IgcListPanelItemModel, IgcListPanelModule, IgcListPanelTemplateHeightRequestedEventArgs, IgcListPanelTemplateItemUpdatingEventArgs, IgcListPanelTemplateWidthRequestedEventArgs, IgcOnClosedEventArgs, IgcOnCollapsedEventArgs, IgcOnExpandedEventArgs, IgcOnPopupEventArgs, IgcPopupComponent, IgcPopupModule, IgcPropertyEditorDataSource, IgcPropertyEditorDescriptionObject, IgcPropertyEditorDescriptionObjectCollection, IgcPropertyEditorPanelComponent, IgcPropertyEditorPanelModule, IgcPropertyEditorPropertyDescriptionButtonClickEventArgs, IgcPropertyEditorPropertyDescriptionChangedEventArgs, IgcPropertyEditorPropertyDescriptionCollection, IgcPropertyEditorPropertyDescriptionComponent, IgcPropertyEditorPropertyDescriptionModule, IgcPropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs, IgcToolActionCheckboxComponent, IgcToolActionCheckboxModule, IgcToolActionCollection, IgcToolActionComponent, IgcToolActionEventDetail, IgcToolActionEventDetailCollection, IgcToolActionGroupHeaderComponent, IgcToolActionGroupHeaderModule, IgcToolActionIconButtonComponent, IgcToolActionIconButtonModule, IgcToolActionIconMenuComponent, IgcToolActionIconMenuModule, IgcToolActionMenuBaseComponent, IgcToolActionModule, IgcToolActionNumberInputComponent, IgcToolActionNumberInputModule, IgcToolActionPerformedEventArgs, IgcToolActionSeparatorComponent, IgcToolActionSeparatorModule, IgcToolCommandEventArgs, IgcToolPanelComponent, IgcToolPanelContentRefreshedEventArgs, IgcToolPanelModule, IgcToolbarComponent, IgcToolbarModule, IgcXExpansionPanelComponent, IgcXExpansionPanelModule, ListPanel, ListPanelContentRefreshedEventArgs, ListPanelDataBindingEventArgs, ListPanelDataSourceNotificationBridge, ListPanelItemModel, ListPanelItemPresenter, ListPanelLayoutPanel, ListPanelOrientation, ListPanelOrientation_$type, ListPanelTemplateHeightRequestedEventArgs, ListPanelTemplateItemUpdatingEventArgs, ListPanelTemplateWidthRequestedEventArgs, ListPanelView, OnClosedEventArgs, OnCollapsedEventArgs, OnExpandedEventArgs, OnPopupEventArgs, Popup, PopupAlignment, PopupAlignment_$type, PopupDirection, PopupDirection_$type, PopupView, PopupVisualModelExport, Popup_InnerAnimationInfo, Popup_OuterAnimationInfo, PropertyEditorDataSource, PropertyEditorDescriptionObject, PropertyEditorDescriptionObjectCollection, PropertyEditorPanel, PropertyEditorPanelColumnDefinition, PropertyEditorPanelColumnFieldType_$type, PropertyEditorPanelColumnType_$type, PropertyEditorPanelDataBindingEventArgs, PropertyEditorPanelDropDownDataListItem, PropertyEditorPanelTemplateCellUpdatingEventArgs, PropertyEditorPanelView, PropertyEditorPropertyDescription, PropertyEditorPropertyDescriptionButtonClickEventArgs, PropertyEditorPropertyDescriptionChangedEventArgs, PropertyEditorPropertyDescriptionCollection, PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs, PropertyEditorTreeTransformer, PropertyEditorValueType, PropertyEditorValueType_$type, ToolAction, ToolActionCheckbox, ToolActionCollection, ToolActionEventDetail, ToolActionEventDetailCollection, ToolActionGroupHeader, ToolActionIconButton, ToolActionIconMenu, ToolActionMeasurementContext, ToolActionMenuBase, ToolActionNumberInput, ToolActionPerformedEventArgs, ToolActionSeparator, ToolCommandEventArgs, ToolPanel, ToolPanelContentRefreshedEventArgs, ToolPanelOrientation, ToolPanelOrientation_$type, ToolPanelView, Toolbar, ToolbarIconManager, ToolbarOrientation, ToolbarOrientation_$type, ToolbarView, XExpansionPanel };
14678
+ export { ExpansionPanelUtilities, ExpansionPanelView, HorizontalPropertyEditorPanelDataSource, IExternalListPanel_$type, IExternalToolPanel_$type, IExternalToolbar_$type, IListPanelView_$type, IPropertyEditorPanelView_$type, IToolPanelView_$type, IToolbarView_$type, IgcHorizontalPropertyEditorPanelDataSource, IgcListPanelComponent, IgcListPanelContentRefreshedEventArgs, IgcListPanelItemModel, IgcListPanelModule, IgcListPanelTemplateHeightRequestedEventArgs, IgcListPanelTemplateItemUpdatingEventArgs, IgcListPanelTemplateWidthRequestedEventArgs, IgcOnClosedEventArgs, IgcOnCollapsedEventArgs, IgcOnExpandedEventArgs, IgcOnPopupEventArgs, IgcPopupComponent, IgcPopupModule, IgcPropertyEditorDataSource, IgcPropertyEditorDescriptionObject, IgcPropertyEditorDescriptionObjectCollection, IgcPropertyEditorPanelComponent, IgcPropertyEditorPanelModule, IgcPropertyEditorPropertyDescriptionButtonClickEventArgs, IgcPropertyEditorPropertyDescriptionChangedEventArgs, IgcPropertyEditorPropertyDescriptionCollection, IgcPropertyEditorPropertyDescriptionComponent, IgcPropertyEditorPropertyDescriptionModule, IgcPropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs, IgcToolActionCheckboxComponent, IgcToolActionCheckboxModule, IgcToolActionCollection, IgcToolActionComponent, IgcToolActionEventDetail, IgcToolActionEventDetailCollection, IgcToolActionGroupHeaderComponent, IgcToolActionGroupHeaderModule, IgcToolActionIconButtonComponent, IgcToolActionIconButtonModule, IgcToolActionIconMenuComponent, IgcToolActionIconMenuModule, IgcToolActionLabelComponent, IgcToolActionLabelModule, IgcToolActionMenuBaseComponent, IgcToolActionModule, IgcToolActionNumberInputComponent, IgcToolActionNumberInputModule, IgcToolActionPerformedEventArgs, IgcToolActionRadioComponent, IgcToolActionRadioModule, IgcToolActionSeparatorComponent, IgcToolActionSeparatorModule, IgcToolCommandEventArgs, IgcToolPanelComponent, IgcToolPanelContentRefreshedEventArgs, IgcToolPanelModule, IgcToolbarComponent, IgcToolbarModule, IgcXExpansionPanelComponent, IgcXExpansionPanelModule, ListPanel, ListPanelContentRefreshedEventArgs, ListPanelDataBindingEventArgs, ListPanelDataSourceNotificationBridge, ListPanelItemModel, ListPanelItemPresenter, ListPanelLayoutPanel, ListPanelOrientation, ListPanelOrientation_$type, ListPanelTemplateHeightRequestedEventArgs, ListPanelTemplateItemUpdatingEventArgs, ListPanelTemplateWidthRequestedEventArgs, ListPanelView, OnClosedEventArgs, OnCollapsedEventArgs, OnExpandedEventArgs, OnPopupEventArgs, Popup, PopupAlignment, PopupAlignment_$type, PopupDirection, PopupDirection_$type, PopupView, PopupVisualModelExport, Popup_InnerAnimationInfo, Popup_OuterAnimationInfo, PropertyEditorDataSource, PropertyEditorDescriptionObject, PropertyEditorDescriptionObjectCollection, PropertyEditorPanel, PropertyEditorPanelColumnDefinition, PropertyEditorPanelColumnFieldType_$type, PropertyEditorPanelColumnType_$type, PropertyEditorPanelDataBindingEventArgs, PropertyEditorPanelDropDownDataListItem, PropertyEditorPanelTemplateCellUpdatingEventArgs, PropertyEditorPanelView, PropertyEditorPropertyDescription, PropertyEditorPropertyDescriptionButtonClickEventArgs, PropertyEditorPropertyDescriptionChangedEventArgs, PropertyEditorPropertyDescriptionCollection, PropertyEditorPropertyDescriptionTargetPropertyUpdatingEventArgs, PropertyEditorTreeTransformer, PropertyEditorValueType, PropertyEditorValueType_$type, ToolAction, ToolActionCheckbox, ToolActionCollection, ToolActionEventDetail, ToolActionEventDetailCollection, ToolActionGroupHeader, ToolActionIconButton, ToolActionIconMenu, ToolActionLabel, ToolActionMeasurementContext, ToolActionMenuBase, ToolActionNumberInput, ToolActionPerformedEventArgs, ToolActionRadio, ToolActionSeparator, ToolCommandEventArgs, ToolPanel, ToolPanelContentRefreshedEventArgs, ToolPanelOrientation, ToolPanelOrientation_$type, ToolPanelView, Toolbar, ToolbarIconManager, ToolbarOrientation, ToolbarOrientation_$type, ToolbarView, XExpansionPanel };