igniteui-angular-core 13.2.0-beta.0 → 13.2.0-beta.3

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 (74) hide show
  1. package/bundles/igniteui-angular-core.umd.js +1063 -11
  2. package/bundles/igniteui-angular-core.umd.min.js +1 -1
  3. package/esm2015/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +2 -1
  4. package/esm2015/lib/FontDefaults.js +7 -7
  5. package/esm2015/lib/WebDropdownGroupDescriptionMetadata.js +1 -1
  6. package/esm2015/lib/WebExpansionPanelComponentEventArgsDescription.js +34 -0
  7. package/esm2015/lib/WebExpansionPanelComponentEventArgsDescriptionMetadata.js +7 -0
  8. package/esm2015/lib/WebExpansionPanelDescription.js +82 -0
  9. package/esm2015/lib/WebExpansionPanelDescriptionMetadata.js +7 -0
  10. package/esm2015/lib/WebExpansionPanelDescriptionMetadata_combined.js +77 -0
  11. package/esm2015/lib/WebExpansionPanelDescriptionModule.js +20 -0
  12. package/esm2015/lib/WebMaskInputDescription.js +71 -0
  13. package/esm2015/lib/WebMaskInputDescriptionMetadata.js +47 -0
  14. package/esm2015/lib/WebMaskInputDescriptionModule.js +22 -0
  15. package/esm2015/lib/WebTreeDescription.js +106 -0
  16. package/esm2015/lib/WebTreeDescriptionMetadata.js +54 -0
  17. package/esm2015/lib/WebTreeDescriptionModule.js +26 -0
  18. package/esm2015/lib/WebTreeItemComponentEventArgsDescription.js +34 -0
  19. package/esm2015/lib/WebTreeItemComponentEventArgsDescriptionMetadata.js +40 -0
  20. package/esm2015/lib/WebTreeItemDescription.js +106 -0
  21. package/esm2015/lib/WebTreeItemDescriptionMetadata.js +48 -0
  22. package/esm2015/lib/WebTreeItemDescriptionModule.js +20 -0
  23. package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescription.js +34 -0
  24. package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +38 -0
  25. package/esm2015/lib/igx-tooltip-container-component.js +3 -3
  26. package/esm2015/public_api.js +18 -0
  27. package/esm5/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +2 -1
  28. package/esm5/lib/FontDefaults.js +7 -7
  29. package/esm5/lib/WebDropdownGroupDescriptionMetadata.js +1 -1
  30. package/esm5/lib/WebExpansionPanelComponentEventArgsDescription.js +44 -0
  31. package/esm5/lib/WebExpansionPanelComponentEventArgsDescriptionMetadata.js +7 -0
  32. package/esm5/lib/WebExpansionPanelDescription.js +116 -0
  33. package/esm5/lib/WebExpansionPanelDescriptionMetadata.js +7 -0
  34. package/esm5/lib/WebExpansionPanelDescriptionMetadata_combined.js +84 -0
  35. package/esm5/lib/WebExpansionPanelDescriptionModule.js +24 -0
  36. package/esm5/lib/WebMaskInputDescription.js +97 -0
  37. package/esm5/lib/WebMaskInputDescriptionMetadata.js +51 -0
  38. package/esm5/lib/WebMaskInputDescriptionModule.js +26 -0
  39. package/esm5/lib/WebTreeDescription.js +152 -0
  40. package/esm5/lib/WebTreeDescriptionMetadata.js +58 -0
  41. package/esm5/lib/WebTreeDescriptionModule.js +30 -0
  42. package/esm5/lib/WebTreeItemComponentEventArgsDescription.js +44 -0
  43. package/esm5/lib/WebTreeItemComponentEventArgsDescriptionMetadata.js +44 -0
  44. package/esm5/lib/WebTreeItemDescription.js +152 -0
  45. package/esm5/lib/WebTreeItemDescriptionMetadata.js +52 -0
  46. package/esm5/lib/WebTreeItemDescriptionModule.js +24 -0
  47. package/esm5/lib/WebTreeSelectionOptionsEventArgsDescription.js +44 -0
  48. package/esm5/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +42 -0
  49. package/esm5/lib/igx-tooltip-container-component.js +2 -2
  50. package/esm5/public_api.js +18 -0
  51. package/fesm2015/igniteui-angular-core.js +857 -13
  52. package/fesm5/igniteui-angular-core.js +1046 -12
  53. package/lib/WebDropdownGroupDescription.d.ts +2 -2
  54. package/lib/WebExpansionPanelComponentEventArgsDescription.d.ts +15 -0
  55. package/lib/WebExpansionPanelComponentEventArgsDescriptionMetadata.d.ts +1 -0
  56. package/lib/WebExpansionPanelDescription.d.ts +32 -0
  57. package/lib/WebExpansionPanelDescriptionMetadata.d.ts +1 -0
  58. package/lib/WebExpansionPanelDescriptionMetadata_combined.d.ts +23 -0
  59. package/lib/WebExpansionPanelDescriptionModule.d.ts +9 -0
  60. package/lib/WebMaskInputDescription.d.ts +28 -0
  61. package/lib/WebMaskInputDescriptionMetadata.d.ts +13 -0
  62. package/lib/WebMaskInputDescriptionModule.d.ts +9 -0
  63. package/lib/WebTreeDescription.d.ts +41 -0
  64. package/lib/WebTreeDescriptionMetadata.d.ts +13 -0
  65. package/lib/WebTreeDescriptionModule.d.ts +9 -0
  66. package/lib/WebTreeItemComponentEventArgsDescription.d.ts +15 -0
  67. package/lib/WebTreeItemComponentEventArgsDescriptionMetadata.d.ts +13 -0
  68. package/lib/WebTreeItemDescription.d.ts +41 -0
  69. package/lib/WebTreeItemDescriptionMetadata.d.ts +13 -0
  70. package/lib/WebTreeItemDescriptionModule.d.ts +9 -0
  71. package/lib/WebTreeSelectionOptionsEventArgsDescription.d.ts +15 -0
  72. package/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.d.ts +13 -0
  73. package/package.json +1 -1
  74. package/public_api.d.ts +18 -0
@@ -35521,13 +35521,13 @@
35521
35521
  };
35522
35522
  FontDefaults.$t = markType(FontDefaults, 'FontDefaults');
35523
35523
  FontDefaults.legendLabelsBrush = BrushUtil.g(255, 37, 37, 37);
35524
- FontDefaults.legendLabelsFontSizeConst = 14;
35525
- FontDefaults.legendLabelsFontSize = DeviceUtils.f(14);
35524
+ FontDefaults.legendLabelsFontSizeConst = 13;
35525
+ FontDefaults.legendLabelsFontSize = DeviceUtils.f(13);
35526
35526
  FontDefaults.legendLabelsFontConst = "Verdana";
35527
35527
  FontDefaults.legendLabelsFontFamily = FontDefaults.aq("Verdana");
35528
35528
  FontDefaults.dataLegendFontBrush = BrushUtil.g(255, 37, 37, 37);
35529
- FontDefaults.dataLegendFontSizeConst = 14;
35530
- FontDefaults.dataLegendFontSize = DeviceUtils.f(14);
35529
+ FontDefaults.dataLegendFontSizeConst = 13;
35530
+ FontDefaults.dataLegendFontSize = DeviceUtils.f(13);
35531
35531
  FontDefaults.dataLegendFontFamilyConst = "Verdana";
35532
35532
  FontDefaults.dataLegendFontFamily = FontDefaults.aq("Verdana");
35533
35533
  FontDefaults.dataLegendFontWeight = "400";
@@ -35536,8 +35536,8 @@
35536
35536
  FontDefaults.dataLegendFontVariant = "Normal";
35537
35537
  FontDefaults.dataLegendHeaderFontWeight = "600";
35538
35538
  FontDefaults.chartAxisLabelBrush = BrushUtil.g(255, 78, 78, 78);
35539
- FontDefaults.chartFontSizeConst = 14;
35540
- FontDefaults.chartFontSize = DeviceUtils.f(14);
35539
+ FontDefaults.chartFontSizeConst = 13;
35540
+ FontDefaults.chartFontSize = DeviceUtils.f(13);
35541
35541
  FontDefaults.chartFontNameConst = "Verdana";
35542
35542
  FontDefaults.chartFontFamily = FontDefaults.aq("Verdana");
35543
35543
  FontDefaults.chartFontWeight = "400";
@@ -35553,7 +35553,7 @@
35553
35553
  FontDefaults.chartSubtitleNameConst = "Verdana";
35554
35554
  FontDefaults.chartSubtitleFontWeight = "600";
35555
35555
  FontDefaults.tooltipLabelsBrush = BrushUtil.g(255, 78, 78, 78);
35556
- FontDefaults.tooltipLabelsFontSizeConst = 14;
35556
+ FontDefaults.tooltipLabelsFontSizeConst = 13;
35557
35557
  FontDefaults.tooltipLabelsFontSize = DeviceUtils.f(FontDefaults.tooltipLabelsFontSizeConst);
35558
35558
  FontDefaults.tooltipFontNameConst = "Verdana";
35559
35559
  FontDefaults.tooltipLabelsFontFamily = FontDefaults.aq("Verdana");
@@ -42867,7 +42867,7 @@
42867
42867
  TypeRegistrar.registerCons("IgxTooltipContainerComponent", IgxTooltipContainerComponent);
42868
42868
  };
42869
42869
  IgxTooltipContainerComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.14", ngImport: i0, type: IgxTooltipContainerComponent, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component });
42870
- IgxTooltipContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.14", type: IgxTooltipContainerComponent, selector: "igx-tooltip-container", inputs: { template: "template", containerTemplate: "containerTemplate", context: "context" }, host: { classAttribute: "ig-tooltip-container igx-tooltip-container" }, viewQueries: [{ propertyName: "_tooltipContent", first: true, predicate: IgxTemplateContentComponent, descendants: true, static: true }], ngImport: i0, template: "\n <ng-template #defaultContainer>\n <div class='ig-tooltip-container-background' *ngIf=\"context !== null && context.item !== null\"\n [style.border-color]=\"context && context.isSubContent ? 'transparent' : '#666'\">\n <igx-template-content *ngIf=\"context !== null\" [template]=\"template\" [context]=\"context\"></igx-template-content>\n </div>\n </ng-template>\n <ng-container *ngTemplateOutlet=\"containerTemplate ? containerTemplate : defaultContainer; context: context\">\n </ng-container>\n ", isInline: true, styles: ["\n .ig-tooltip-container-background {\n padding: 5px; \n padding: var(--tooltip-container-padding, 5px);\n background-color: white; \n background-color: var(--tooltip-container-background-color, white);\n border-style: solid; \n border-style: var(--tooltip-container-border-style, solid);\n border-width: 1px; \n border-width: var(--tooltip-container-border-width, 1px);\n color: rgba(34,34,34,0.8);\n color: var(--tooltip-container-text-color, rgba(34,34,34,0.8));\n font: 14px \"Titillium Web\", Verdana, Arial, sans-serif;\n font: var(--tooltip-container-font, 14px \"Titillium Web\", Verdana, Arial, sans-serif);\n pointer-events: none;\n white-space: nowrap;\n }\n"], components: [{ type: IgxTemplateContentComponent, selector: "igx-template-content", inputs: ["template", "context"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
42870
+ IgxTooltipContainerComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.14", type: IgxTooltipContainerComponent, selector: "igx-tooltip-container", inputs: { template: "template", containerTemplate: "containerTemplate", context: "context" }, host: { classAttribute: "ig-tooltip-container igx-tooltip-container" }, viewQueries: [{ propertyName: "_tooltipContent", first: true, predicate: IgxTemplateContentComponent, descendants: true, static: true }], ngImport: i0, template: "\n <ng-template #defaultContainer>\n <div class='ig-tooltip-container-background' *ngIf=\"context !== null && context.item !== null\"\n [style.border-color]=\"context && context.isSubContent ? 'transparent' : '#666'\">\n <igx-template-content *ngIf=\"context !== null\" [template]=\"template\" [context]=\"context\"></igx-template-content>\n </div>\n </ng-template>\n <ng-container *ngTemplateOutlet=\"containerTemplate ? containerTemplate : defaultContainer; context: context\">\n </ng-container>\n ", isInline: true, styles: ["\n .ig-tooltip-container-background {\n padding: 5px; \n padding: var(--tooltip-container-padding, 5px);\n background-color: white; \n background-color: var(--tooltip-container-background-color, white);\n border-style: solid; \n border-style: var(--tooltip-container-border-style, solid);\n border-width: 1px; \n border-width: var(--tooltip-container-border-width, 1px);\n color: rgba(34,34,34,0.8);\n color: var(--tooltip-container-text-color, rgba(34,34,34,0.8));\n font: 13px \"Titillium Web\", Verdana, Arial, sans-serif;\n font: var(--tooltip-container-font, 13px \"Titillium Web\", Verdana, Arial, sans-serif);\n pointer-events: none;\n white-space: nowrap;\n }\n"], components: [{ type: IgxTemplateContentComponent, selector: "igx-template-content", inputs: ["template", "context"] }], directives: [{ type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
42871
42871
  return IgxTooltipContainerComponent;
42872
42872
  }());
42873
42873
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.14", ngImport: i0, type: IgxTooltipContainerComponent, decorators: [{
@@ -42877,7 +42877,7 @@
42877
42877
  changeDetection: i0.ChangeDetectionStrategy.OnPush,
42878
42878
  host: { class: "ig-tooltip-container igx-tooltip-container" },
42879
42879
  template: "\n <ng-template #defaultContainer>\n <div class='ig-tooltip-container-background' *ngIf=\"context !== null && context.item !== null\"\n [style.border-color]=\"context && context.isSubContent ? 'transparent' : '#666'\">\n <igx-template-content *ngIf=\"context !== null\" [template]=\"template\" [context]=\"context\"></igx-template-content>\n </div>\n </ng-template>\n <ng-container *ngTemplateOutlet=\"containerTemplate ? containerTemplate : defaultContainer; context: context\">\n </ng-container>\n ",
42880
- styles: ["\n .ig-tooltip-container-background {\n padding: 5px; \n padding: var(--tooltip-container-padding, 5px);\n background-color: white; \n background-color: var(--tooltip-container-background-color, white);\n border-style: solid; \n border-style: var(--tooltip-container-border-style, solid);\n border-width: 1px; \n border-width: var(--tooltip-container-border-width, 1px);\n color: rgba(34,34,34,0.8);\n color: var(--tooltip-container-text-color, rgba(34,34,34,0.8));\n font: 14px \"Titillium Web\", Verdana, Arial, sans-serif;\n font: var(--tooltip-container-font, 14px \"Titillium Web\", Verdana, Arial, sans-serif);\n pointer-events: none;\n white-space: nowrap;\n }\n"]
42880
+ styles: ["\n .ig-tooltip-container-background {\n padding: 5px; \n padding: var(--tooltip-container-padding, 5px);\n background-color: white; \n background-color: var(--tooltip-container-background-color, white);\n border-style: solid; \n border-style: var(--tooltip-container-border-style, solid);\n border-width: 1px; \n border-width: var(--tooltip-container-border-width, 1px);\n color: rgba(34,34,34,0.8);\n color: var(--tooltip-container-text-color, rgba(34,34,34,0.8));\n font: 13px \"Titillium Web\", Verdana, Arial, sans-serif;\n font: var(--tooltip-container-font, 13px \"Titillium Web\", Verdana, Arial, sans-serif);\n pointer-events: none;\n white-space: nowrap;\n }\n"]
42881
42881
  }]
42882
42882
  }], ctorParameters: function () { return [{ type: i0.ChangeDetectorRef }]; }, propDecorators: { _tooltipContent: [{
42883
42883
  type: i0.ViewChild,
@@ -67834,8 +67834,9 @@
67834
67834
  e = " StateHasChanged();";
67835
67835
  }
67836
67836
  else {
67837
+ e = " OnPropertyChanged(\"" + this.v(a, false) + "\");";
67837
67838
  }
67838
- if (c.isAsync) {
67839
+ if (c != null && c.isAsync) {
67839
67840
  d = this.v(a, false) + ".Fetch().ContinueWith((t) => {" + this.ao(a) + " = t.Result; " + e + " });";
67840
67841
  }
67841
67842
  this.g.k("private " + this.v(a, false) + " " + this.ao(a) + " = null;");
@@ -170462,7 +170463,7 @@
170462
170463
  };
170463
170464
  WebDropdownGroupDescriptionMetadata.c = function (a) {
170464
170465
  a.item("__qualifiedNameTS", "String:DropdownGroup");
170465
- a.item("Items", "ExportedType:WebDropdownItem");
170466
+ a.item("Items", "Array:WebDropdownItemDescription:DropdownItem");
170466
170467
  a.item("Size", "ExportedType:string:DropdownGroupSize");
170467
170468
  a.item("Size@names", "Small;Medium;Large");
170468
170469
  };
@@ -170627,6 +170628,273 @@
170627
170628
  return WebDropdownDescriptionModule;
170628
170629
  }(Base));
170629
170630
 
170631
+ /*
170632
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
170633
+ https://www.infragistics.com/legal/license/igultimate-la
170634
+ https://www.infragistics.com/legal/license/igultimate-eula
170635
+ 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.
170636
+ */
170637
+ /**
170638
+ * @hidden
170639
+ */
170640
+ var WebExpansionPanelDescription = /** @class */ /*@__PURE__*/ (function (_super) {
170641
+ tslib.__extends(WebExpansionPanelDescription, _super);
170642
+ function WebExpansionPanelDescription() {
170643
+ var _this = _super.call(this) || this;
170644
+ _this.g = false;
170645
+ _this.f = false;
170646
+ _this.l = null;
170647
+ _this.n = null;
170648
+ _this.m = null;
170649
+ _this.k = null;
170650
+ _this.j = null;
170651
+ return _this;
170652
+ }
170653
+ WebExpansionPanelDescription.prototype.get_type = function () {
170654
+ return "WebExpansionPanel";
170655
+ };
170656
+ Object.defineProperty(WebExpansionPanelDescription.prototype, "type", {
170657
+ get: function () {
170658
+ return this.get_type();
170659
+ },
170660
+ enumerable: false,
170661
+ configurable: true
170662
+ });
170663
+ Object.defineProperty(WebExpansionPanelDescription.prototype, "open", {
170664
+ get: function () {
170665
+ return this.g;
170666
+ },
170667
+ set: function (a) {
170668
+ this.g = a;
170669
+ this.e("Open");
170670
+ },
170671
+ enumerable: false,
170672
+ configurable: true
170673
+ });
170674
+ Object.defineProperty(WebExpansionPanelDescription.prototype, "disabled", {
170675
+ get: function () {
170676
+ return this.f;
170677
+ },
170678
+ set: function (a) {
170679
+ this.f = a;
170680
+ this.e("Disabled");
170681
+ },
170682
+ enumerable: false,
170683
+ configurable: true
170684
+ });
170685
+ Object.defineProperty(WebExpansionPanelDescription.prototype, "indicatorPosition", {
170686
+ get: function () {
170687
+ return this.l;
170688
+ },
170689
+ set: function (a) {
170690
+ this.l = a;
170691
+ this.e("IndicatorPosition");
170692
+ },
170693
+ enumerable: false,
170694
+ configurable: true
170695
+ });
170696
+ Object.defineProperty(WebExpansionPanelDescription.prototype, "openingRef", {
170697
+ get: function () {
170698
+ return this.n;
170699
+ },
170700
+ set: function (a) {
170701
+ this.n = a;
170702
+ this.e("OpeningRef");
170703
+ },
170704
+ enumerable: false,
170705
+ configurable: true
170706
+ });
170707
+ Object.defineProperty(WebExpansionPanelDescription.prototype, "openedRef", {
170708
+ get: function () {
170709
+ return this.m;
170710
+ },
170711
+ set: function (a) {
170712
+ this.m = a;
170713
+ this.e("OpenedRef");
170714
+ },
170715
+ enumerable: false,
170716
+ configurable: true
170717
+ });
170718
+ Object.defineProperty(WebExpansionPanelDescription.prototype, "closingRef", {
170719
+ get: function () {
170720
+ return this.k;
170721
+ },
170722
+ set: function (a) {
170723
+ this.k = a;
170724
+ this.e("ClosingRef");
170725
+ },
170726
+ enumerable: false,
170727
+ configurable: true
170728
+ });
170729
+ Object.defineProperty(WebExpansionPanelDescription.prototype, "closedRef", {
170730
+ get: function () {
170731
+ return this.j;
170732
+ },
170733
+ set: function (a) {
170734
+ this.j = a;
170735
+ this.e("ClosedRef");
170736
+ },
170737
+ enumerable: false,
170738
+ configurable: true
170739
+ });
170740
+ WebExpansionPanelDescription.$t = markType(WebExpansionPanelDescription, 'WebExpansionPanelDescription', Description.$);
170741
+ return WebExpansionPanelDescription;
170742
+ }(Description));
170743
+
170744
+ /*
170745
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
170746
+ https://www.infragistics.com/legal/license/igultimate-la
170747
+ https://www.infragistics.com/legal/license/igultimate-eula
170748
+ 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.
170749
+ */
170750
+ /**
170751
+ * @hidden
170752
+ */
170753
+ var WebExpansionPanelComponentEventArgsDescription = /** @class */ /*@__PURE__*/ (function (_super) {
170754
+ tslib.__extends(WebExpansionPanelComponentEventArgsDescription, _super);
170755
+ function WebExpansionPanelComponentEventArgsDescription() {
170756
+ var _this = _super.call(this) || this;
170757
+ _this.f = null;
170758
+ return _this;
170759
+ }
170760
+ WebExpansionPanelComponentEventArgsDescription.prototype.get_type = function () {
170761
+ return "WebExpansionPanelComponentEventArgs";
170762
+ };
170763
+ Object.defineProperty(WebExpansionPanelComponentEventArgsDescription.prototype, "type", {
170764
+ get: function () {
170765
+ return this.get_type();
170766
+ },
170767
+ enumerable: false,
170768
+ configurable: true
170769
+ });
170770
+ Object.defineProperty(WebExpansionPanelComponentEventArgsDescription.prototype, "detail", {
170771
+ get: function () {
170772
+ return this.f;
170773
+ },
170774
+ set: function (a) {
170775
+ this.f = a;
170776
+ this.e("Detail");
170777
+ },
170778
+ enumerable: false,
170779
+ configurable: true
170780
+ });
170781
+ WebExpansionPanelComponentEventArgsDescription.$t = markType(WebExpansionPanelComponentEventArgsDescription, 'WebExpansionPanelComponentEventArgsDescription', Description.$);
170782
+ return WebExpansionPanelComponentEventArgsDescription;
170783
+ }(Description));
170784
+
170785
+ /*
170786
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
170787
+ https://www.infragistics.com/legal/license/igultimate-la
170788
+ https://www.infragistics.com/legal/license/igultimate-eula
170789
+ 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.
170790
+ */
170791
+ /**
170792
+ * @hidden
170793
+ */
170794
+ var WebExpansionPanelDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
170795
+ tslib.__extends(WebExpansionPanelDescriptionMetadata, _super);
170796
+ function WebExpansionPanelDescriptionMetadata() {
170797
+ return _super !== null && _super.apply(this, arguments) || this;
170798
+ }
170799
+ WebExpansionPanelDescriptionMetadata.b = function (a) {
170800
+ if (WebExpansionPanelDescriptionMetadata.a == null) {
170801
+ WebExpansionPanelDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
170802
+ WebExpansionPanelDescriptionMetadata.c(WebExpansionPanelDescriptionMetadata.a);
170803
+ }
170804
+ if (a.g(WebExpansionPanelDescriptionMetadata.a)) {
170805
+ return;
170806
+ }
170807
+ a.s(WebExpansionPanelDescriptionMetadata.a);
170808
+ WebExpansionPanelComponentEventArgsDescriptionMetadata.d(a);
170809
+ };
170810
+ WebExpansionPanelDescriptionMetadata.c = function (a) {
170811
+ a.item("__qualifiedNameTS", "String:ExpansionPanel");
170812
+ a.item("Open", "Boolean");
170813
+ a.item("Disabled", "Boolean");
170814
+ a.item("IndicatorPosition", "ExportedType:string:ExpansionPanelIndicatorPosition");
170815
+ a.item("IndicatorPosition@names", "Start;End;None");
170816
+ a.item("OpeningRef", "EventRef::opening");
170817
+ a.item("OpenedRef", "EventRef::opened");
170818
+ a.item("ClosingRef", "EventRef::closing");
170819
+ a.item("ClosedRef", "EventRef::closed");
170820
+ };
170821
+ WebExpansionPanelDescriptionMetadata.d = function (a) {
170822
+ WebExpansionPanelDescriptionMetadata.b(a);
170823
+ a.u("WebExpansionPanel", function () { return new WebExpansionPanelDescription(); });
170824
+ a.t("WebExpansionPanel", WebExpansionPanelDescriptionMetadata.a);
170825
+ };
170826
+ WebExpansionPanelDescriptionMetadata.$t = markType(WebExpansionPanelDescriptionMetadata, 'WebExpansionPanelDescriptionMetadata');
170827
+ WebExpansionPanelDescriptionMetadata.a = null;
170828
+ return WebExpansionPanelDescriptionMetadata;
170829
+ }(Base));
170830
+ /**
170831
+ * @hidden
170832
+ */
170833
+ var WebExpansionPanelComponentEventArgsDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
170834
+ tslib.__extends(WebExpansionPanelComponentEventArgsDescriptionMetadata, _super);
170835
+ function WebExpansionPanelComponentEventArgsDescriptionMetadata() {
170836
+ return _super !== null && _super.apply(this, arguments) || this;
170837
+ }
170838
+ WebExpansionPanelComponentEventArgsDescriptionMetadata.b = function (a) {
170839
+ if (WebExpansionPanelComponentEventArgsDescriptionMetadata.a == null) {
170840
+ WebExpansionPanelComponentEventArgsDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
170841
+ WebExpansionPanelComponentEventArgsDescriptionMetadata.c(WebExpansionPanelComponentEventArgsDescriptionMetadata.a);
170842
+ }
170843
+ if (a.g(WebExpansionPanelComponentEventArgsDescriptionMetadata.a)) {
170844
+ return;
170845
+ }
170846
+ a.s(WebExpansionPanelComponentEventArgsDescriptionMetadata.a);
170847
+ WebExpansionPanelDescriptionMetadata.d(a);
170848
+ };
170849
+ WebExpansionPanelComponentEventArgsDescriptionMetadata.c = function (a) {
170850
+ a.item("__qualifiedNameTS", "String:ExpansionPanelComponentEventArgs");
170851
+ a.item("Detail", "ExportedType:WebExpansionPanel");
170852
+ };
170853
+ WebExpansionPanelComponentEventArgsDescriptionMetadata.d = function (a) {
170854
+ WebExpansionPanelComponentEventArgsDescriptionMetadata.b(a);
170855
+ a.u("WebExpansionPanelComponentEventArgs", function () { return new WebExpansionPanelComponentEventArgsDescription(); });
170856
+ a.t("WebExpansionPanelComponentEventArgs", WebExpansionPanelComponentEventArgsDescriptionMetadata.a);
170857
+ };
170858
+ WebExpansionPanelComponentEventArgsDescriptionMetadata.$t = markType(WebExpansionPanelComponentEventArgsDescriptionMetadata, 'WebExpansionPanelComponentEventArgsDescriptionMetadata');
170859
+ WebExpansionPanelComponentEventArgsDescriptionMetadata.a = null;
170860
+ return WebExpansionPanelComponentEventArgsDescriptionMetadata;
170861
+ }(Base));
170862
+
170863
+ /*
170864
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
170865
+ https://www.infragistics.com/legal/license/igultimate-la
170866
+ https://www.infragistics.com/legal/license/igultimate-eula
170867
+ 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.
170868
+ */
170869
+
170870
+ /*
170871
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
170872
+ https://www.infragistics.com/legal/license/igultimate-la
170873
+ https://www.infragistics.com/legal/license/igultimate-eula
170874
+ 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.
170875
+ */
170876
+
170877
+ /*
170878
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
170879
+ https://www.infragistics.com/legal/license/igultimate-la
170880
+ https://www.infragistics.com/legal/license/igultimate-eula
170881
+ 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.
170882
+ */
170883
+ /**
170884
+ * @hidden
170885
+ */
170886
+ var WebExpansionPanelDescriptionModule = /** @class */ /*@__PURE__*/ (function (_super) {
170887
+ tslib.__extends(WebExpansionPanelDescriptionModule, _super);
170888
+ function WebExpansionPanelDescriptionModule() {
170889
+ return _super !== null && _super.apply(this, arguments) || this;
170890
+ }
170891
+ WebExpansionPanelDescriptionModule.register = function (a) {
170892
+ WebExpansionPanelDescriptionMetadata.d(a);
170893
+ };
170894
+ WebExpansionPanelDescriptionModule.$t = markType(WebExpansionPanelDescriptionModule, 'WebExpansionPanelDescriptionModule');
170895
+ return WebExpansionPanelDescriptionModule;
170896
+ }(Base));
170897
+
170630
170898
  /*
170631
170899
  THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
170632
170900
  https://www.infragistics.com/legal/license/igultimate-la
@@ -172439,6 +172707,168 @@
172439
172707
  return WebListDescriptionModule;
172440
172708
  }(Base));
172441
172709
 
172710
+ /*
172711
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
172712
+ https://www.infragistics.com/legal/license/igultimate-la
172713
+ https://www.infragistics.com/legal/license/igultimate-eula
172714
+ 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.
172715
+ */
172716
+ /**
172717
+ * @hidden
172718
+ */
172719
+ var WebMaskInputDescription = /** @class */ /*@__PURE__*/ (function (_super) {
172720
+ tslib.__extends(WebMaskInputDescription, _super);
172721
+ function WebMaskInputDescription() {
172722
+ var _this = _super.call(this) || this;
172723
+ _this.ae = null;
172724
+ _this.ac = false;
172725
+ _this.ai = null;
172726
+ _this.ah = null;
172727
+ _this.af = null;
172728
+ _this.ag = null;
172729
+ return _this;
172730
+ }
172731
+ WebMaskInputDescription.prototype.get_type = function () {
172732
+ return "WebMaskInput";
172733
+ };
172734
+ Object.defineProperty(WebMaskInputDescription.prototype, "dir", {
172735
+ get: function () {
172736
+ return this.ae;
172737
+ },
172738
+ set: function (a) {
172739
+ this.ae = a;
172740
+ this.e("Dir");
172741
+ },
172742
+ enumerable: false,
172743
+ configurable: true
172744
+ });
172745
+ Object.defineProperty(WebMaskInputDescription.prototype, "invalid", {
172746
+ get: function () {
172747
+ return this.ac;
172748
+ },
172749
+ set: function (a) {
172750
+ this.ac = a;
172751
+ this.e("Invalid");
172752
+ },
172753
+ enumerable: false,
172754
+ configurable: true
172755
+ });
172756
+ Object.defineProperty(WebMaskInputDescription.prototype, "valueMode", {
172757
+ get: function () {
172758
+ return this.ai;
172759
+ },
172760
+ set: function (a) {
172761
+ this.ai = a;
172762
+ this.e("ValueMode");
172763
+ },
172764
+ enumerable: false,
172765
+ configurable: true
172766
+ });
172767
+ Object.defineProperty(WebMaskInputDescription.prototype, "value", {
172768
+ get: function () {
172769
+ return this.ah;
172770
+ },
172771
+ set: function (a) {
172772
+ this.ah = a;
172773
+ this.e("Value");
172774
+ },
172775
+ enumerable: false,
172776
+ configurable: true
172777
+ });
172778
+ Object.defineProperty(WebMaskInputDescription.prototype, "mask", {
172779
+ get: function () {
172780
+ return this.af;
172781
+ },
172782
+ set: function (a) {
172783
+ this.af = a;
172784
+ this.e("Mask");
172785
+ },
172786
+ enumerable: false,
172787
+ configurable: true
172788
+ });
172789
+ Object.defineProperty(WebMaskInputDescription.prototype, "prompt", {
172790
+ get: function () {
172791
+ return this.ag;
172792
+ },
172793
+ set: function (a) {
172794
+ this.ag = a;
172795
+ this.e("Prompt");
172796
+ },
172797
+ enumerable: false,
172798
+ configurable: true
172799
+ });
172800
+ WebMaskInputDescription.$t = markType(WebMaskInputDescription, 'WebMaskInputDescription', WebInputBaseDescription.$);
172801
+ return WebMaskInputDescription;
172802
+ }(WebInputBaseDescription));
172803
+
172804
+ /*
172805
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
172806
+ https://www.infragistics.com/legal/license/igultimate-la
172807
+ https://www.infragistics.com/legal/license/igultimate-eula
172808
+ 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.
172809
+ */
172810
+ /**
172811
+ * @hidden
172812
+ */
172813
+ var WebMaskInputDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
172814
+ tslib.__extends(WebMaskInputDescriptionMetadata, _super);
172815
+ function WebMaskInputDescriptionMetadata() {
172816
+ return _super !== null && _super.apply(this, arguments) || this;
172817
+ }
172818
+ WebMaskInputDescriptionMetadata.b = function (a) {
172819
+ if (WebMaskInputDescriptionMetadata.a == null) {
172820
+ WebMaskInputDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
172821
+ WebMaskInputDescriptionMetadata.c(WebMaskInputDescriptionMetadata.a);
172822
+ }
172823
+ if (a.g(WebMaskInputDescriptionMetadata.a)) {
172824
+ return;
172825
+ }
172826
+ a.s(WebMaskInputDescriptionMetadata.a);
172827
+ };
172828
+ WebMaskInputDescriptionMetadata.c = function (a) {
172829
+ WebInputBaseDescriptionMetadata.c(a);
172830
+ a.item("__qualifiedNameTS", "String:MaskInput");
172831
+ a.item("Dir", "ExportedType:string:MaskInputDir");
172832
+ a.item("Dir@names", "Ltr;Rtl;Auto");
172833
+ a.item("Invalid", "Boolean");
172834
+ a.item("ValueMode", "ExportedType:string:MaskInputValueMode");
172835
+ a.item("ValueMode@names", "Raw;WithFormatting");
172836
+ a.item("Value", "String");
172837
+ a.item("Mask", "String");
172838
+ a.item("Prompt", "String");
172839
+ };
172840
+ WebMaskInputDescriptionMetadata.d = function (a) {
172841
+ WebMaskInputDescriptionMetadata.b(a);
172842
+ a.u("WebMaskInput", function () { return new WebMaskInputDescription(); });
172843
+ a.t("WebMaskInput", WebMaskInputDescriptionMetadata.a);
172844
+ };
172845
+ WebMaskInputDescriptionMetadata.$t = markType(WebMaskInputDescriptionMetadata, 'WebMaskInputDescriptionMetadata');
172846
+ WebMaskInputDescriptionMetadata.a = null;
172847
+ return WebMaskInputDescriptionMetadata;
172848
+ }(Base));
172849
+
172850
+ /*
172851
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
172852
+ https://www.infragistics.com/legal/license/igultimate-la
172853
+ https://www.infragistics.com/legal/license/igultimate-eula
172854
+ 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.
172855
+ */
172856
+ /**
172857
+ * @hidden
172858
+ */
172859
+ var WebMaskInputDescriptionModule = /** @class */ /*@__PURE__*/ (function (_super) {
172860
+ tslib.__extends(WebMaskInputDescriptionModule, _super);
172861
+ function WebMaskInputDescriptionModule() {
172862
+ return _super !== null && _super.apply(this, arguments) || this;
172863
+ }
172864
+ WebMaskInputDescriptionModule.register = function (a) {
172865
+ WebInputBaseDescriptionModule.register(a);
172866
+ WebMaskInputDescriptionMetadata.d(a);
172867
+ };
172868
+ WebMaskInputDescriptionModule.$t = markType(WebMaskInputDescriptionModule, 'WebMaskInputDescriptionModule');
172869
+ return WebMaskInputDescriptionModule;
172870
+ }(Base));
172871
+
172442
172872
  /*
172443
172873
  THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
172444
172874
  https://www.infragistics.com/legal/license/igultimate-la
@@ -176046,6 +176476,610 @@
176046
176476
  return WebToastDescriptionModule;
176047
176477
  }(Base));
176048
176478
 
176479
+ /*
176480
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
176481
+ https://www.infragistics.com/legal/license/igultimate-la
176482
+ https://www.infragistics.com/legal/license/igultimate-eula
176483
+ 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.
176484
+ */
176485
+ /**
176486
+ * @hidden
176487
+ */
176488
+ var WebTreeDescription = /** @class */ /*@__PURE__*/ (function (_super) {
176489
+ tslib.__extends(WebTreeDescription, _super);
176490
+ function WebTreeDescription() {
176491
+ var _this = _super.call(this) || this;
176492
+ _this.f = false;
176493
+ _this.n = null;
176494
+ _this.i = null;
176495
+ _this.p = null;
176496
+ _this.o = null;
176497
+ _this.m = null;
176498
+ _this.l = null;
176499
+ _this.k = null;
176500
+ _this.j = null;
176501
+ _this.h = null;
176502
+ return _this;
176503
+ }
176504
+ WebTreeDescription.prototype.get_type = function () {
176505
+ return "WebTree";
176506
+ };
176507
+ Object.defineProperty(WebTreeDescription.prototype, "type", {
176508
+ get: function () {
176509
+ return this.get_type();
176510
+ },
176511
+ enumerable: false,
176512
+ configurable: true
176513
+ });
176514
+ Object.defineProperty(WebTreeDescription.prototype, "singleBranchExpand", {
176515
+ get: function () {
176516
+ return this.f;
176517
+ },
176518
+ set: function (a) {
176519
+ this.f = a;
176520
+ this.e("SingleBranchExpand");
176521
+ },
176522
+ enumerable: false,
176523
+ configurable: true
176524
+ });
176525
+ Object.defineProperty(WebTreeDescription.prototype, "selection", {
176526
+ get: function () {
176527
+ return this.n;
176528
+ },
176529
+ set: function (a) {
176530
+ this.n = a;
176531
+ this.e("Selection");
176532
+ },
176533
+ enumerable: false,
176534
+ configurable: true
176535
+ });
176536
+ Object.defineProperty(WebTreeDescription.prototype, "dir", {
176537
+ get: function () {
176538
+ return this.i;
176539
+ },
176540
+ set: function (a) {
176541
+ this.i = a;
176542
+ this.e("Dir");
176543
+ },
176544
+ enumerable: false,
176545
+ configurable: true
176546
+ });
176547
+ Object.defineProperty(WebTreeDescription.prototype, "size", {
176548
+ get: function () {
176549
+ return this.p;
176550
+ },
176551
+ set: function (a) {
176552
+ this.p = a;
176553
+ this.e("Size");
176554
+ },
176555
+ enumerable: false,
176556
+ configurable: true
176557
+ });
176558
+ Object.defineProperty(WebTreeDescription.prototype, "selectionChangedRef", {
176559
+ get: function () {
176560
+ return this.o;
176561
+ },
176562
+ set: function (a) {
176563
+ this.o = a;
176564
+ this.e("SelectionChangedRef");
176565
+ },
176566
+ enumerable: false,
176567
+ configurable: true
176568
+ });
176569
+ Object.defineProperty(WebTreeDescription.prototype, "itemExpandingRef", {
176570
+ get: function () {
176571
+ return this.m;
176572
+ },
176573
+ set: function (a) {
176574
+ this.m = a;
176575
+ this.e("ItemExpandingRef");
176576
+ },
176577
+ enumerable: false,
176578
+ configurable: true
176579
+ });
176580
+ Object.defineProperty(WebTreeDescription.prototype, "itemExpandedRef", {
176581
+ get: function () {
176582
+ return this.l;
176583
+ },
176584
+ set: function (a) {
176585
+ this.l = a;
176586
+ this.e("ItemExpandedRef");
176587
+ },
176588
+ enumerable: false,
176589
+ configurable: true
176590
+ });
176591
+ Object.defineProperty(WebTreeDescription.prototype, "itemCollapsingRef", {
176592
+ get: function () {
176593
+ return this.k;
176594
+ },
176595
+ set: function (a) {
176596
+ this.k = a;
176597
+ this.e("ItemCollapsingRef");
176598
+ },
176599
+ enumerable: false,
176600
+ configurable: true
176601
+ });
176602
+ Object.defineProperty(WebTreeDescription.prototype, "itemCollapsedRef", {
176603
+ get: function () {
176604
+ return this.j;
176605
+ },
176606
+ set: function (a) {
176607
+ this.j = a;
176608
+ this.e("ItemCollapsedRef");
176609
+ },
176610
+ enumerable: false,
176611
+ configurable: true
176612
+ });
176613
+ Object.defineProperty(WebTreeDescription.prototype, "activeItemRef", {
176614
+ get: function () {
176615
+ return this.h;
176616
+ },
176617
+ set: function (a) {
176618
+ this.h = a;
176619
+ this.e("ActiveItemRef");
176620
+ },
176621
+ enumerable: false,
176622
+ configurable: true
176623
+ });
176624
+ WebTreeDescription.$t = markType(WebTreeDescription, 'WebTreeDescription', Description.$);
176625
+ return WebTreeDescription;
176626
+ }(Description));
176627
+
176628
+ /*
176629
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
176630
+ https://www.infragistics.com/legal/license/igultimate-la
176631
+ https://www.infragistics.com/legal/license/igultimate-eula
176632
+ 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.
176633
+ */
176634
+ /**
176635
+ * @hidden
176636
+ */
176637
+ var WebTreeSelectionOptionsEventArgsDescription = /** @class */ /*@__PURE__*/ (function (_super) {
176638
+ tslib.__extends(WebTreeSelectionOptionsEventArgsDescription, _super);
176639
+ function WebTreeSelectionOptionsEventArgsDescription() {
176640
+ var _this = _super.call(this) || this;
176641
+ _this.f = null;
176642
+ return _this;
176643
+ }
176644
+ WebTreeSelectionOptionsEventArgsDescription.prototype.get_type = function () {
176645
+ return "WebTreeSelectionOptionsEventArgs";
176646
+ };
176647
+ Object.defineProperty(WebTreeSelectionOptionsEventArgsDescription.prototype, "type", {
176648
+ get: function () {
176649
+ return this.get_type();
176650
+ },
176651
+ enumerable: false,
176652
+ configurable: true
176653
+ });
176654
+ Object.defineProperty(WebTreeSelectionOptionsEventArgsDescription.prototype, "newSelection", {
176655
+ get: function () {
176656
+ return this.f;
176657
+ },
176658
+ set: function (a) {
176659
+ this.f = a;
176660
+ this.e("NewSelection");
176661
+ },
176662
+ enumerable: false,
176663
+ configurable: true
176664
+ });
176665
+ WebTreeSelectionOptionsEventArgsDescription.$t = markType(WebTreeSelectionOptionsEventArgsDescription, 'WebTreeSelectionOptionsEventArgsDescription', Description.$);
176666
+ return WebTreeSelectionOptionsEventArgsDescription;
176667
+ }(Description));
176668
+
176669
+ /*
176670
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
176671
+ https://www.infragistics.com/legal/license/igultimate-la
176672
+ https://www.infragistics.com/legal/license/igultimate-eula
176673
+ 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.
176674
+ */
176675
+ /**
176676
+ * @hidden
176677
+ */
176678
+ var WebTreeSelectionOptionsEventArgsDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
176679
+ tslib.__extends(WebTreeSelectionOptionsEventArgsDescriptionMetadata, _super);
176680
+ function WebTreeSelectionOptionsEventArgsDescriptionMetadata() {
176681
+ return _super !== null && _super.apply(this, arguments) || this;
176682
+ }
176683
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.b = function (a) {
176684
+ if (WebTreeSelectionOptionsEventArgsDescriptionMetadata.a == null) {
176685
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
176686
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.c(WebTreeSelectionOptionsEventArgsDescriptionMetadata.a);
176687
+ }
176688
+ if (a.g(WebTreeSelectionOptionsEventArgsDescriptionMetadata.a)) {
176689
+ return;
176690
+ }
176691
+ a.s(WebTreeSelectionOptionsEventArgsDescriptionMetadata.a);
176692
+ };
176693
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.c = function (a) {
176694
+ a.item("__qualifiedNameTS", "String:TreeSelectionOptionsEventArgs");
176695
+ a.item("NewSelection", "Collection:WebTreeItem:WebTreeItemCollection:WebTreeItem");
176696
+ };
176697
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.d = function (a) {
176698
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.b(a);
176699
+ a.u("WebTreeSelectionOptionsEventArgs", function () { return new WebTreeSelectionOptionsEventArgsDescription(); });
176700
+ a.t("WebTreeSelectionOptionsEventArgs", WebTreeSelectionOptionsEventArgsDescriptionMetadata.a);
176701
+ };
176702
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.$t = markType(WebTreeSelectionOptionsEventArgsDescriptionMetadata, 'WebTreeSelectionOptionsEventArgsDescriptionMetadata');
176703
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.a = null;
176704
+ return WebTreeSelectionOptionsEventArgsDescriptionMetadata;
176705
+ }(Base));
176706
+
176707
+ /*
176708
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
176709
+ https://www.infragistics.com/legal/license/igultimate-la
176710
+ https://www.infragistics.com/legal/license/igultimate-eula
176711
+ 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.
176712
+ */
176713
+ /**
176714
+ * @hidden
176715
+ */
176716
+ var WebTreeItemDescription = /** @class */ /*@__PURE__*/ (function (_super) {
176717
+ tslib.__extends(WebTreeItemDescription, _super);
176718
+ function WebTreeItemDescription() {
176719
+ var _this = _super.call(this) || this;
176720
+ _this.f = null;
176721
+ _this.k = false;
176722
+ _this.t = 0;
176723
+ _this.v = null;
176724
+ _this.j = false;
176725
+ _this.h = false;
176726
+ _this.i = false;
176727
+ _this.m = false;
176728
+ _this.l = false;
176729
+ _this.w = null;
176730
+ return _this;
176731
+ }
176732
+ WebTreeItemDescription.prototype.get_type = function () {
176733
+ return "WebTreeItem";
176734
+ };
176735
+ Object.defineProperty(WebTreeItemDescription.prototype, "type", {
176736
+ get: function () {
176737
+ return this.get_type();
176738
+ },
176739
+ enumerable: false,
176740
+ configurable: true
176741
+ });
176742
+ Object.defineProperty(WebTreeItemDescription.prototype, "parent", {
176743
+ get: function () {
176744
+ return this.f;
176745
+ },
176746
+ set: function (a) {
176747
+ this.f = a;
176748
+ this.e("Parent");
176749
+ },
176750
+ enumerable: false,
176751
+ configurable: true
176752
+ });
176753
+ Object.defineProperty(WebTreeItemDescription.prototype, "init", {
176754
+ get: function () {
176755
+ return this.k;
176756
+ },
176757
+ set: function (a) {
176758
+ this.k = a;
176759
+ this.e("Init");
176760
+ },
176761
+ enumerable: false,
176762
+ configurable: true
176763
+ });
176764
+ Object.defineProperty(WebTreeItemDescription.prototype, "level", {
176765
+ get: function () {
176766
+ return this.t;
176767
+ },
176768
+ set: function (a) {
176769
+ this.t = a;
176770
+ this.e("Level");
176771
+ },
176772
+ enumerable: false,
176773
+ configurable: true
176774
+ });
176775
+ Object.defineProperty(WebTreeItemDescription.prototype, "label", {
176776
+ get: function () {
176777
+ return this.v;
176778
+ },
176779
+ set: function (a) {
176780
+ this.v = a;
176781
+ this.e("Label");
176782
+ },
176783
+ enumerable: false,
176784
+ configurable: true
176785
+ });
176786
+ Object.defineProperty(WebTreeItemDescription.prototype, "expanded", {
176787
+ get: function () {
176788
+ return this.j;
176789
+ },
176790
+ set: function (a) {
176791
+ this.j = a;
176792
+ this.e("Expanded");
176793
+ },
176794
+ enumerable: false,
176795
+ configurable: true
176796
+ });
176797
+ Object.defineProperty(WebTreeItemDescription.prototype, "active", {
176798
+ get: function () {
176799
+ return this.h;
176800
+ },
176801
+ set: function (a) {
176802
+ this.h = a;
176803
+ this.e("Active");
176804
+ },
176805
+ enumerable: false,
176806
+ configurable: true
176807
+ });
176808
+ Object.defineProperty(WebTreeItemDescription.prototype, "disabled", {
176809
+ get: function () {
176810
+ return this.i;
176811
+ },
176812
+ set: function (a) {
176813
+ this.i = a;
176814
+ this.e("Disabled");
176815
+ },
176816
+ enumerable: false,
176817
+ configurable: true
176818
+ });
176819
+ Object.defineProperty(WebTreeItemDescription.prototype, "selected", {
176820
+ get: function () {
176821
+ return this.m;
176822
+ },
176823
+ set: function (a) {
176824
+ this.m = a;
176825
+ this.e("Selected");
176826
+ },
176827
+ enumerable: false,
176828
+ configurable: true
176829
+ });
176830
+ Object.defineProperty(WebTreeItemDescription.prototype, "loading", {
176831
+ get: function () {
176832
+ return this.l;
176833
+ },
176834
+ set: function (a) {
176835
+ this.l = a;
176836
+ this.e("Loading");
176837
+ },
176838
+ enumerable: false,
176839
+ configurable: true
176840
+ });
176841
+ Object.defineProperty(WebTreeItemDescription.prototype, "valueRef", {
176842
+ get: function () {
176843
+ return this.w;
176844
+ },
176845
+ set: function (a) {
176846
+ this.w = a;
176847
+ this.e("ValueRef");
176848
+ },
176849
+ enumerable: false,
176850
+ configurable: true
176851
+ });
176852
+ WebTreeItemDescription.$t = markType(WebTreeItemDescription, 'WebTreeItemDescription', Description.$);
176853
+ return WebTreeItemDescription;
176854
+ }(Description));
176855
+
176856
+ /*
176857
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
176858
+ https://www.infragistics.com/legal/license/igultimate-la
176859
+ https://www.infragistics.com/legal/license/igultimate-eula
176860
+ 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.
176861
+ */
176862
+ /**
176863
+ * @hidden
176864
+ */
176865
+ var WebTreeItemDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
176866
+ tslib.__extends(WebTreeItemDescriptionMetadata, _super);
176867
+ function WebTreeItemDescriptionMetadata() {
176868
+ return _super !== null && _super.apply(this, arguments) || this;
176869
+ }
176870
+ WebTreeItemDescriptionMetadata.b = function (a) {
176871
+ if (WebTreeItemDescriptionMetadata.a == null) {
176872
+ WebTreeItemDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
176873
+ WebTreeItemDescriptionMetadata.c(WebTreeItemDescriptionMetadata.a);
176874
+ }
176875
+ if (a.g(WebTreeItemDescriptionMetadata.a)) {
176876
+ return;
176877
+ }
176878
+ a.s(WebTreeItemDescriptionMetadata.a);
176879
+ WebTreeItemDescriptionMetadata.d(a);
176880
+ };
176881
+ WebTreeItemDescriptionMetadata.c = function (a) {
176882
+ a.item("__qualifiedNameTS", "String:TreeItem");
176883
+ a.item("Parent", "ExportedType:WebTreeItem");
176884
+ a.item("Init", "Boolean");
176885
+ a.item("Level", "Number:double");
176886
+ a.item("Label", "String");
176887
+ a.item("Expanded", "Boolean");
176888
+ a.item("Active", "Boolean");
176889
+ a.item("Disabled", "Boolean");
176890
+ a.item("Selected", "Boolean");
176891
+ a.item("Loading", "Boolean");
176892
+ a.item("ValueRef", "(w:Value,wf:Value)DataRef");
176893
+ };
176894
+ WebTreeItemDescriptionMetadata.d = function (a) {
176895
+ WebTreeItemDescriptionMetadata.b(a);
176896
+ a.u("WebTreeItem", function () { return new WebTreeItemDescription(); });
176897
+ a.t("WebTreeItem", WebTreeItemDescriptionMetadata.a);
176898
+ };
176899
+ WebTreeItemDescriptionMetadata.$t = markType(WebTreeItemDescriptionMetadata, 'WebTreeItemDescriptionMetadata');
176900
+ WebTreeItemDescriptionMetadata.a = null;
176901
+ return WebTreeItemDescriptionMetadata;
176902
+ }(Base));
176903
+
176904
+ /*
176905
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
176906
+ https://www.infragistics.com/legal/license/igultimate-la
176907
+ https://www.infragistics.com/legal/license/igultimate-eula
176908
+ 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.
176909
+ */
176910
+ /**
176911
+ * @hidden
176912
+ */
176913
+ var WebTreeItemComponentEventArgsDescription = /** @class */ /*@__PURE__*/ (function (_super) {
176914
+ tslib.__extends(WebTreeItemComponentEventArgsDescription, _super);
176915
+ function WebTreeItemComponentEventArgsDescription() {
176916
+ var _this = _super.call(this) || this;
176917
+ _this.f = null;
176918
+ return _this;
176919
+ }
176920
+ WebTreeItemComponentEventArgsDescription.prototype.get_type = function () {
176921
+ return "WebTreeItemComponentEventArgs";
176922
+ };
176923
+ Object.defineProperty(WebTreeItemComponentEventArgsDescription.prototype, "type", {
176924
+ get: function () {
176925
+ return this.get_type();
176926
+ },
176927
+ enumerable: false,
176928
+ configurable: true
176929
+ });
176930
+ Object.defineProperty(WebTreeItemComponentEventArgsDescription.prototype, "detail", {
176931
+ get: function () {
176932
+ return this.f;
176933
+ },
176934
+ set: function (a) {
176935
+ this.f = a;
176936
+ this.e("Detail");
176937
+ },
176938
+ enumerable: false,
176939
+ configurable: true
176940
+ });
176941
+ WebTreeItemComponentEventArgsDescription.$t = markType(WebTreeItemComponentEventArgsDescription, 'WebTreeItemComponentEventArgsDescription', Description.$);
176942
+ return WebTreeItemComponentEventArgsDescription;
176943
+ }(Description));
176944
+
176945
+ /*
176946
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
176947
+ https://www.infragistics.com/legal/license/igultimate-la
176948
+ https://www.infragistics.com/legal/license/igultimate-eula
176949
+ 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.
176950
+ */
176951
+ /**
176952
+ * @hidden
176953
+ */
176954
+ var WebTreeItemComponentEventArgsDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
176955
+ tslib.__extends(WebTreeItemComponentEventArgsDescriptionMetadata, _super);
176956
+ function WebTreeItemComponentEventArgsDescriptionMetadata() {
176957
+ return _super !== null && _super.apply(this, arguments) || this;
176958
+ }
176959
+ WebTreeItemComponentEventArgsDescriptionMetadata.b = function (a) {
176960
+ if (WebTreeItemComponentEventArgsDescriptionMetadata.a == null) {
176961
+ WebTreeItemComponentEventArgsDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
176962
+ WebTreeItemComponentEventArgsDescriptionMetadata.c(WebTreeItemComponentEventArgsDescriptionMetadata.a);
176963
+ }
176964
+ if (a.g(WebTreeItemComponentEventArgsDescriptionMetadata.a)) {
176965
+ return;
176966
+ }
176967
+ a.s(WebTreeItemComponentEventArgsDescriptionMetadata.a);
176968
+ WebTreeItemDescriptionMetadata.d(a);
176969
+ };
176970
+ WebTreeItemComponentEventArgsDescriptionMetadata.c = function (a) {
176971
+ a.item("__qualifiedNameTS", "String:TreeItemComponentEventArgs");
176972
+ a.item("Detail", "ExportedType:WebTreeItem");
176973
+ };
176974
+ WebTreeItemComponentEventArgsDescriptionMetadata.d = function (a) {
176975
+ WebTreeItemComponentEventArgsDescriptionMetadata.b(a);
176976
+ a.u("WebTreeItemComponentEventArgs", function () { return new WebTreeItemComponentEventArgsDescription(); });
176977
+ a.t("WebTreeItemComponentEventArgs", WebTreeItemComponentEventArgsDescriptionMetadata.a);
176978
+ };
176979
+ WebTreeItemComponentEventArgsDescriptionMetadata.$t = markType(WebTreeItemComponentEventArgsDescriptionMetadata, 'WebTreeItemComponentEventArgsDescriptionMetadata');
176980
+ WebTreeItemComponentEventArgsDescriptionMetadata.a = null;
176981
+ return WebTreeItemComponentEventArgsDescriptionMetadata;
176982
+ }(Base));
176983
+
176984
+ /*
176985
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
176986
+ https://www.infragistics.com/legal/license/igultimate-la
176987
+ https://www.infragistics.com/legal/license/igultimate-eula
176988
+ 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.
176989
+ */
176990
+ /**
176991
+ * @hidden
176992
+ */
176993
+ var WebTreeDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
176994
+ tslib.__extends(WebTreeDescriptionMetadata, _super);
176995
+ function WebTreeDescriptionMetadata() {
176996
+ return _super !== null && _super.apply(this, arguments) || this;
176997
+ }
176998
+ WebTreeDescriptionMetadata.b = function (a) {
176999
+ if (WebTreeDescriptionMetadata.a == null) {
177000
+ WebTreeDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
177001
+ WebTreeDescriptionMetadata.c(WebTreeDescriptionMetadata.a);
177002
+ }
177003
+ if (a.g(WebTreeDescriptionMetadata.a)) {
177004
+ return;
177005
+ }
177006
+ a.s(WebTreeDescriptionMetadata.a);
177007
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.d(a);
177008
+ WebTreeItemComponentEventArgsDescriptionMetadata.d(a);
177009
+ };
177010
+ WebTreeDescriptionMetadata.c = function (a) {
177011
+ a.item("__qualifiedNameTS", "String:Tree");
177012
+ a.item("SingleBranchExpand", "Boolean");
177013
+ a.item("Selection", "ExportedType:string:TreeSelection");
177014
+ a.item("Selection@names", "Multiple;None;Cascade");
177015
+ a.item("Dir", "ExportedType:string:TreeDir");
177016
+ a.item("Dir@names", "Ltr;Rtl;Auto");
177017
+ a.item("Size", "ExportedType:string:SizableComponentSize");
177018
+ a.item("Size@names", "Large;Small;Medium");
177019
+ a.item("SelectionChangedRef", "EventRef::selectionChanged");
177020
+ a.item("ItemExpandingRef", "EventRef::itemExpanding");
177021
+ a.item("ItemExpandedRef", "EventRef::itemExpanded");
177022
+ a.item("ItemCollapsingRef", "EventRef::itemCollapsing");
177023
+ a.item("ItemCollapsedRef", "EventRef::itemCollapsed");
177024
+ a.item("ActiveItemRef", "EventRef::activeItem");
177025
+ };
177026
+ WebTreeDescriptionMetadata.d = function (a) {
177027
+ WebTreeDescriptionMetadata.b(a);
177028
+ a.u("WebTree", function () { return new WebTreeDescription(); });
177029
+ a.t("WebTree", WebTreeDescriptionMetadata.a);
177030
+ };
177031
+ WebTreeDescriptionMetadata.$t = markType(WebTreeDescriptionMetadata, 'WebTreeDescriptionMetadata');
177032
+ WebTreeDescriptionMetadata.a = null;
177033
+ return WebTreeDescriptionMetadata;
177034
+ }(Base));
177035
+
177036
+ /*
177037
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
177038
+ https://www.infragistics.com/legal/license/igultimate-la
177039
+ https://www.infragistics.com/legal/license/igultimate-eula
177040
+ 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.
177041
+ */
177042
+ /**
177043
+ * @hidden
177044
+ */
177045
+ var WebTreeItemDescriptionModule = /** @class */ /*@__PURE__*/ (function (_super) {
177046
+ tslib.__extends(WebTreeItemDescriptionModule, _super);
177047
+ function WebTreeItemDescriptionModule() {
177048
+ return _super !== null && _super.apply(this, arguments) || this;
177049
+ }
177050
+ WebTreeItemDescriptionModule.register = function (a) {
177051
+ WebTreeItemDescriptionMetadata.d(a);
177052
+ };
177053
+ WebTreeItemDescriptionModule.$t = markType(WebTreeItemDescriptionModule, 'WebTreeItemDescriptionModule');
177054
+ return WebTreeItemDescriptionModule;
177055
+ }(Base));
177056
+
177057
+ /*
177058
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
177059
+ https://www.infragistics.com/legal/license/igultimate-la
177060
+ https://www.infragistics.com/legal/license/igultimate-eula
177061
+ 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.
177062
+ */
177063
+ /**
177064
+ * @hidden
177065
+ */
177066
+ var WebTreeDescriptionModule = /** @class */ /*@__PURE__*/ (function (_super) {
177067
+ tslib.__extends(WebTreeDescriptionModule, _super);
177068
+ function WebTreeDescriptionModule() {
177069
+ return _super !== null && _super.apply(this, arguments) || this;
177070
+ }
177071
+ WebTreeDescriptionModule.register = function (a) {
177072
+ WebTreeItemDescriptionModule.register(a);
177073
+ WebTreeItemDescriptionModule.register(a);
177074
+ WebTreeItemDescriptionModule.register(a);
177075
+ WebTreeItemDescriptionModule.register(a);
177076
+ WebTreeItemDescriptionModule.register(a);
177077
+ WebTreeDescriptionMetadata.d(a);
177078
+ };
177079
+ WebTreeDescriptionModule.$t = markType(WebTreeDescriptionModule, 'WebTreeDescriptionModule');
177080
+ return WebTreeDescriptionModule;
177081
+ }(Base));
177082
+
176049
177083
  /*
176050
177084
  THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
176051
177085
  https://www.infragistics.com/legal/license/igultimate-la
@@ -219346,6 +220380,11 @@
219346
220380
  exports.WebDropdownItemDescription = WebDropdownItemDescription;
219347
220381
  exports.WebDropdownItemDescriptionMetadata = WebDropdownItemDescriptionMetadata;
219348
220382
  exports.WebDropdownItemDescriptionModule = WebDropdownItemDescriptionModule;
220383
+ exports.WebExpansionPanelComponentEventArgsDescription = WebExpansionPanelComponentEventArgsDescription;
220384
+ exports.WebExpansionPanelComponentEventArgsDescriptionMetadata = WebExpansionPanelComponentEventArgsDescriptionMetadata;
220385
+ exports.WebExpansionPanelDescription = WebExpansionPanelDescription;
220386
+ exports.WebExpansionPanelDescriptionMetadata = WebExpansionPanelDescriptionMetadata;
220387
+ exports.WebExpansionPanelDescriptionModule = WebExpansionPanelDescriptionModule;
219349
220388
  exports.WebFloatPaneActionDescription = WebFloatPaneActionDescription;
219350
220389
  exports.WebFloatPaneActionDescriptionMetadata = WebFloatPaneActionDescriptionMetadata;
219351
220390
  exports.WebFloatingPaneResizeEventArgsDescription = WebFloatingPaneResizeEventArgsDescription;
@@ -219384,6 +220423,9 @@
219384
220423
  exports.WebListItemDescription = WebListItemDescription;
219385
220424
  exports.WebListItemDescriptionMetadata = WebListItemDescriptionMetadata;
219386
220425
  exports.WebListItemDescriptionModule = WebListItemDescriptionModule;
220426
+ exports.WebMaskInputDescription = WebMaskInputDescription;
220427
+ exports.WebMaskInputDescriptionMetadata = WebMaskInputDescriptionMetadata;
220428
+ exports.WebMaskInputDescriptionModule = WebMaskInputDescriptionModule;
219387
220429
  exports.WebMoveFloatingPaneActionDescription = WebMoveFloatingPaneActionDescription;
219388
220430
  exports.WebMoveFloatingPaneActionDescriptionMetadata = WebMoveFloatingPaneActionDescriptionMetadata;
219389
220431
  exports.WebMoveTabActionDescription = WebMoveTabActionDescription;
@@ -219473,6 +220515,16 @@
219473
220515
  exports.WebToastDescription = WebToastDescription;
219474
220516
  exports.WebToastDescriptionMetadata = WebToastDescriptionMetadata;
219475
220517
  exports.WebToastDescriptionModule = WebToastDescriptionModule;
220518
+ exports.WebTreeDescription = WebTreeDescription;
220519
+ exports.WebTreeDescriptionMetadata = WebTreeDescriptionMetadata;
220520
+ exports.WebTreeDescriptionModule = WebTreeDescriptionModule;
220521
+ exports.WebTreeItemComponentEventArgsDescription = WebTreeItemComponentEventArgsDescription;
220522
+ exports.WebTreeItemComponentEventArgsDescriptionMetadata = WebTreeItemComponentEventArgsDescriptionMetadata;
220523
+ exports.WebTreeItemDescription = WebTreeItemDescription;
220524
+ exports.WebTreeItemDescriptionMetadata = WebTreeItemDescriptionMetadata;
220525
+ exports.WebTreeItemDescriptionModule = WebTreeItemDescriptionModule;
220526
+ exports.WebTreeSelectionOptionsEventArgsDescription = WebTreeSelectionOptionsEventArgsDescription;
220527
+ exports.WebTreeSelectionOptionsEventArgsDescriptionMetadata = WebTreeSelectionOptionsEventArgsDescriptionMetadata;
219476
220528
  exports.WebValueChangedEventArgsDescription = WebValueChangedEventArgsDescription;
219477
220529
  exports.WebValueChangedEventArgsDescriptionMetadata = WebValueChangedEventArgsDescriptionMetadata;
219478
220530
  exports.WeightedCloseIndicatorDescription = WeightedCloseIndicatorDescription;