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
@@ -0,0 +1,84 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ 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.
6
+ */
7
+ import { __extends } from "tslib";
8
+ import { Base, String_$type, markType } from "./type";
9
+ import { Dictionary$2 } from "./Dictionary$2";
10
+ import { WebExpansionPanelDescription } from "./WebExpansionPanelDescription";
11
+ import { WebExpansionPanelComponentEventArgsDescription } from "./WebExpansionPanelComponentEventArgsDescription";
12
+ /**
13
+ * @hidden
14
+ */
15
+ var WebExpansionPanelDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
16
+ __extends(WebExpansionPanelDescriptionMetadata, _super);
17
+ function WebExpansionPanelDescriptionMetadata() {
18
+ return _super !== null && _super.apply(this, arguments) || this;
19
+ }
20
+ WebExpansionPanelDescriptionMetadata.b = function (a) {
21
+ if (WebExpansionPanelDescriptionMetadata.a == null) {
22
+ WebExpansionPanelDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
23
+ WebExpansionPanelDescriptionMetadata.c(WebExpansionPanelDescriptionMetadata.a);
24
+ }
25
+ if (a.g(WebExpansionPanelDescriptionMetadata.a)) {
26
+ return;
27
+ }
28
+ a.s(WebExpansionPanelDescriptionMetadata.a);
29
+ WebExpansionPanelComponentEventArgsDescriptionMetadata.d(a);
30
+ };
31
+ WebExpansionPanelDescriptionMetadata.c = function (a) {
32
+ a.item("__qualifiedNameTS", "String:ExpansionPanel");
33
+ a.item("Open", "Boolean");
34
+ a.item("Disabled", "Boolean");
35
+ a.item("IndicatorPosition", "ExportedType:string:ExpansionPanelIndicatorPosition");
36
+ a.item("IndicatorPosition@names", "Start;End;None");
37
+ a.item("OpeningRef", "EventRef::opening");
38
+ a.item("OpenedRef", "EventRef::opened");
39
+ a.item("ClosingRef", "EventRef::closing");
40
+ a.item("ClosedRef", "EventRef::closed");
41
+ };
42
+ WebExpansionPanelDescriptionMetadata.d = function (a) {
43
+ WebExpansionPanelDescriptionMetadata.b(a);
44
+ a.u("WebExpansionPanel", function () { return new WebExpansionPanelDescription(); });
45
+ a.t("WebExpansionPanel", WebExpansionPanelDescriptionMetadata.a);
46
+ };
47
+ WebExpansionPanelDescriptionMetadata.$t = markType(WebExpansionPanelDescriptionMetadata, 'WebExpansionPanelDescriptionMetadata');
48
+ WebExpansionPanelDescriptionMetadata.a = null;
49
+ return WebExpansionPanelDescriptionMetadata;
50
+ }(Base));
51
+ export { WebExpansionPanelDescriptionMetadata };
52
+ /**
53
+ * @hidden
54
+ */
55
+ var WebExpansionPanelComponentEventArgsDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
56
+ __extends(WebExpansionPanelComponentEventArgsDescriptionMetadata, _super);
57
+ function WebExpansionPanelComponentEventArgsDescriptionMetadata() {
58
+ return _super !== null && _super.apply(this, arguments) || this;
59
+ }
60
+ WebExpansionPanelComponentEventArgsDescriptionMetadata.b = function (a) {
61
+ if (WebExpansionPanelComponentEventArgsDescriptionMetadata.a == null) {
62
+ WebExpansionPanelComponentEventArgsDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
63
+ WebExpansionPanelComponentEventArgsDescriptionMetadata.c(WebExpansionPanelComponentEventArgsDescriptionMetadata.a);
64
+ }
65
+ if (a.g(WebExpansionPanelComponentEventArgsDescriptionMetadata.a)) {
66
+ return;
67
+ }
68
+ a.s(WebExpansionPanelComponentEventArgsDescriptionMetadata.a);
69
+ WebExpansionPanelDescriptionMetadata.d(a);
70
+ };
71
+ WebExpansionPanelComponentEventArgsDescriptionMetadata.c = function (a) {
72
+ a.item("__qualifiedNameTS", "String:ExpansionPanelComponentEventArgs");
73
+ a.item("Detail", "ExportedType:WebExpansionPanel");
74
+ };
75
+ WebExpansionPanelComponentEventArgsDescriptionMetadata.d = function (a) {
76
+ WebExpansionPanelComponentEventArgsDescriptionMetadata.b(a);
77
+ a.u("WebExpansionPanelComponentEventArgs", function () { return new WebExpansionPanelComponentEventArgsDescription(); });
78
+ a.t("WebExpansionPanelComponentEventArgs", WebExpansionPanelComponentEventArgsDescriptionMetadata.a);
79
+ };
80
+ WebExpansionPanelComponentEventArgsDescriptionMetadata.$t = markType(WebExpansionPanelComponentEventArgsDescriptionMetadata, 'WebExpansionPanelComponentEventArgsDescriptionMetadata');
81
+ WebExpansionPanelComponentEventArgsDescriptionMetadata.a = null;
82
+ return WebExpansionPanelComponentEventArgsDescriptionMetadata;
83
+ }(Base));
84
+ export { WebExpansionPanelComponentEventArgsDescriptionMetadata };
@@ -0,0 +1,24 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ 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.
6
+ */
7
+ import { __extends } from "tslib";
8
+ import { Base, markType } from "./type";
9
+ import { WebExpansionPanelDescriptionMetadata } from "./WebExpansionPanelDescriptionMetadata";
10
+ /**
11
+ * @hidden
12
+ */
13
+ var WebExpansionPanelDescriptionModule = /** @class */ /*@__PURE__*/ (function (_super) {
14
+ __extends(WebExpansionPanelDescriptionModule, _super);
15
+ function WebExpansionPanelDescriptionModule() {
16
+ return _super !== null && _super.apply(this, arguments) || this;
17
+ }
18
+ WebExpansionPanelDescriptionModule.register = function (a) {
19
+ WebExpansionPanelDescriptionMetadata.d(a);
20
+ };
21
+ WebExpansionPanelDescriptionModule.$t = markType(WebExpansionPanelDescriptionModule, 'WebExpansionPanelDescriptionModule');
22
+ return WebExpansionPanelDescriptionModule;
23
+ }(Base));
24
+ export { WebExpansionPanelDescriptionModule };
@@ -0,0 +1,97 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ 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.
6
+ */
7
+ import { __extends } from "tslib";
8
+ import { WebInputBaseDescription } from "./WebInputBaseDescription";
9
+ import { markType } from "./type";
10
+ /**
11
+ * @hidden
12
+ */
13
+ var WebMaskInputDescription = /** @class */ /*@__PURE__*/ (function (_super) {
14
+ __extends(WebMaskInputDescription, _super);
15
+ function WebMaskInputDescription() {
16
+ var _this = _super.call(this) || this;
17
+ _this.ae = null;
18
+ _this.ac = false;
19
+ _this.ai = null;
20
+ _this.ah = null;
21
+ _this.af = null;
22
+ _this.ag = null;
23
+ return _this;
24
+ }
25
+ WebMaskInputDescription.prototype.get_type = function () {
26
+ return "WebMaskInput";
27
+ };
28
+ Object.defineProperty(WebMaskInputDescription.prototype, "dir", {
29
+ get: function () {
30
+ return this.ae;
31
+ },
32
+ set: function (a) {
33
+ this.ae = a;
34
+ this.e("Dir");
35
+ },
36
+ enumerable: false,
37
+ configurable: true
38
+ });
39
+ Object.defineProperty(WebMaskInputDescription.prototype, "invalid", {
40
+ get: function () {
41
+ return this.ac;
42
+ },
43
+ set: function (a) {
44
+ this.ac = a;
45
+ this.e("Invalid");
46
+ },
47
+ enumerable: false,
48
+ configurable: true
49
+ });
50
+ Object.defineProperty(WebMaskInputDescription.prototype, "valueMode", {
51
+ get: function () {
52
+ return this.ai;
53
+ },
54
+ set: function (a) {
55
+ this.ai = a;
56
+ this.e("ValueMode");
57
+ },
58
+ enumerable: false,
59
+ configurable: true
60
+ });
61
+ Object.defineProperty(WebMaskInputDescription.prototype, "value", {
62
+ get: function () {
63
+ return this.ah;
64
+ },
65
+ set: function (a) {
66
+ this.ah = a;
67
+ this.e("Value");
68
+ },
69
+ enumerable: false,
70
+ configurable: true
71
+ });
72
+ Object.defineProperty(WebMaskInputDescription.prototype, "mask", {
73
+ get: function () {
74
+ return this.af;
75
+ },
76
+ set: function (a) {
77
+ this.af = a;
78
+ this.e("Mask");
79
+ },
80
+ enumerable: false,
81
+ configurable: true
82
+ });
83
+ Object.defineProperty(WebMaskInputDescription.prototype, "prompt", {
84
+ get: function () {
85
+ return this.ag;
86
+ },
87
+ set: function (a) {
88
+ this.ag = a;
89
+ this.e("Prompt");
90
+ },
91
+ enumerable: false,
92
+ configurable: true
93
+ });
94
+ WebMaskInputDescription.$t = markType(WebMaskInputDescription, 'WebMaskInputDescription', WebInputBaseDescription.$);
95
+ return WebMaskInputDescription;
96
+ }(WebInputBaseDescription));
97
+ export { WebMaskInputDescription };
@@ -0,0 +1,51 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ 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.
6
+ */
7
+ import { __extends } from "tslib";
8
+ import { Base, String_$type, markType } from "./type";
9
+ import { Dictionary$2 } from "./Dictionary$2";
10
+ import { WebInputBaseDescriptionMetadata } from "./WebInputBaseDescriptionMetadata";
11
+ import { WebMaskInputDescription } from "./WebMaskInputDescription";
12
+ /**
13
+ * @hidden
14
+ */
15
+ var WebMaskInputDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
16
+ __extends(WebMaskInputDescriptionMetadata, _super);
17
+ function WebMaskInputDescriptionMetadata() {
18
+ return _super !== null && _super.apply(this, arguments) || this;
19
+ }
20
+ WebMaskInputDescriptionMetadata.b = function (a) {
21
+ if (WebMaskInputDescriptionMetadata.a == null) {
22
+ WebMaskInputDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
23
+ WebMaskInputDescriptionMetadata.c(WebMaskInputDescriptionMetadata.a);
24
+ }
25
+ if (a.g(WebMaskInputDescriptionMetadata.a)) {
26
+ return;
27
+ }
28
+ a.s(WebMaskInputDescriptionMetadata.a);
29
+ };
30
+ WebMaskInputDescriptionMetadata.c = function (a) {
31
+ WebInputBaseDescriptionMetadata.c(a);
32
+ a.item("__qualifiedNameTS", "String:MaskInput");
33
+ a.item("Dir", "ExportedType:string:MaskInputDir");
34
+ a.item("Dir@names", "Ltr;Rtl;Auto");
35
+ a.item("Invalid", "Boolean");
36
+ a.item("ValueMode", "ExportedType:string:MaskInputValueMode");
37
+ a.item("ValueMode@names", "Raw;WithFormatting");
38
+ a.item("Value", "String");
39
+ a.item("Mask", "String");
40
+ a.item("Prompt", "String");
41
+ };
42
+ WebMaskInputDescriptionMetadata.d = function (a) {
43
+ WebMaskInputDescriptionMetadata.b(a);
44
+ a.u("WebMaskInput", function () { return new WebMaskInputDescription(); });
45
+ a.t("WebMaskInput", WebMaskInputDescriptionMetadata.a);
46
+ };
47
+ WebMaskInputDescriptionMetadata.$t = markType(WebMaskInputDescriptionMetadata, 'WebMaskInputDescriptionMetadata');
48
+ WebMaskInputDescriptionMetadata.a = null;
49
+ return WebMaskInputDescriptionMetadata;
50
+ }(Base));
51
+ export { WebMaskInputDescriptionMetadata };
@@ -0,0 +1,26 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ 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.
6
+ */
7
+ import { __extends } from "tslib";
8
+ import { Base, markType } from "./type";
9
+ import { WebInputBaseDescriptionModule } from "./WebInputBaseDescriptionModule";
10
+ import { WebMaskInputDescriptionMetadata } from "./WebMaskInputDescriptionMetadata";
11
+ /**
12
+ * @hidden
13
+ */
14
+ var WebMaskInputDescriptionModule = /** @class */ /*@__PURE__*/ (function (_super) {
15
+ __extends(WebMaskInputDescriptionModule, _super);
16
+ function WebMaskInputDescriptionModule() {
17
+ return _super !== null && _super.apply(this, arguments) || this;
18
+ }
19
+ WebMaskInputDescriptionModule.register = function (a) {
20
+ WebInputBaseDescriptionModule.register(a);
21
+ WebMaskInputDescriptionMetadata.d(a);
22
+ };
23
+ WebMaskInputDescriptionModule.$t = markType(WebMaskInputDescriptionModule, 'WebMaskInputDescriptionModule');
24
+ return WebMaskInputDescriptionModule;
25
+ }(Base));
26
+ export { WebMaskInputDescriptionModule };
@@ -0,0 +1,152 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ 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.
6
+ */
7
+ import { __extends } from "tslib";
8
+ import { Description } from "./Description";
9
+ import { markType } from "./type";
10
+ /**
11
+ * @hidden
12
+ */
13
+ var WebTreeDescription = /** @class */ /*@__PURE__*/ (function (_super) {
14
+ __extends(WebTreeDescription, _super);
15
+ function WebTreeDescription() {
16
+ var _this = _super.call(this) || this;
17
+ _this.f = false;
18
+ _this.n = null;
19
+ _this.i = null;
20
+ _this.p = null;
21
+ _this.o = null;
22
+ _this.m = null;
23
+ _this.l = null;
24
+ _this.k = null;
25
+ _this.j = null;
26
+ _this.h = null;
27
+ return _this;
28
+ }
29
+ WebTreeDescription.prototype.get_type = function () {
30
+ return "WebTree";
31
+ };
32
+ Object.defineProperty(WebTreeDescription.prototype, "type", {
33
+ get: function () {
34
+ return this.get_type();
35
+ },
36
+ enumerable: false,
37
+ configurable: true
38
+ });
39
+ Object.defineProperty(WebTreeDescription.prototype, "singleBranchExpand", {
40
+ get: function () {
41
+ return this.f;
42
+ },
43
+ set: function (a) {
44
+ this.f = a;
45
+ this.e("SingleBranchExpand");
46
+ },
47
+ enumerable: false,
48
+ configurable: true
49
+ });
50
+ Object.defineProperty(WebTreeDescription.prototype, "selection", {
51
+ get: function () {
52
+ return this.n;
53
+ },
54
+ set: function (a) {
55
+ this.n = a;
56
+ this.e("Selection");
57
+ },
58
+ enumerable: false,
59
+ configurable: true
60
+ });
61
+ Object.defineProperty(WebTreeDescription.prototype, "dir", {
62
+ get: function () {
63
+ return this.i;
64
+ },
65
+ set: function (a) {
66
+ this.i = a;
67
+ this.e("Dir");
68
+ },
69
+ enumerable: false,
70
+ configurable: true
71
+ });
72
+ Object.defineProperty(WebTreeDescription.prototype, "size", {
73
+ get: function () {
74
+ return this.p;
75
+ },
76
+ set: function (a) {
77
+ this.p = a;
78
+ this.e("Size");
79
+ },
80
+ enumerable: false,
81
+ configurable: true
82
+ });
83
+ Object.defineProperty(WebTreeDescription.prototype, "selectionChangedRef", {
84
+ get: function () {
85
+ return this.o;
86
+ },
87
+ set: function (a) {
88
+ this.o = a;
89
+ this.e("SelectionChangedRef");
90
+ },
91
+ enumerable: false,
92
+ configurable: true
93
+ });
94
+ Object.defineProperty(WebTreeDescription.prototype, "itemExpandingRef", {
95
+ get: function () {
96
+ return this.m;
97
+ },
98
+ set: function (a) {
99
+ this.m = a;
100
+ this.e("ItemExpandingRef");
101
+ },
102
+ enumerable: false,
103
+ configurable: true
104
+ });
105
+ Object.defineProperty(WebTreeDescription.prototype, "itemExpandedRef", {
106
+ get: function () {
107
+ return this.l;
108
+ },
109
+ set: function (a) {
110
+ this.l = a;
111
+ this.e("ItemExpandedRef");
112
+ },
113
+ enumerable: false,
114
+ configurable: true
115
+ });
116
+ Object.defineProperty(WebTreeDescription.prototype, "itemCollapsingRef", {
117
+ get: function () {
118
+ return this.k;
119
+ },
120
+ set: function (a) {
121
+ this.k = a;
122
+ this.e("ItemCollapsingRef");
123
+ },
124
+ enumerable: false,
125
+ configurable: true
126
+ });
127
+ Object.defineProperty(WebTreeDescription.prototype, "itemCollapsedRef", {
128
+ get: function () {
129
+ return this.j;
130
+ },
131
+ set: function (a) {
132
+ this.j = a;
133
+ this.e("ItemCollapsedRef");
134
+ },
135
+ enumerable: false,
136
+ configurable: true
137
+ });
138
+ Object.defineProperty(WebTreeDescription.prototype, "activeItemRef", {
139
+ get: function () {
140
+ return this.h;
141
+ },
142
+ set: function (a) {
143
+ this.h = a;
144
+ this.e("ActiveItemRef");
145
+ },
146
+ enumerable: false,
147
+ configurable: true
148
+ });
149
+ WebTreeDescription.$t = markType(WebTreeDescription, 'WebTreeDescription', Description.$);
150
+ return WebTreeDescription;
151
+ }(Description));
152
+ export { WebTreeDescription };
@@ -0,0 +1,58 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ 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.
6
+ */
7
+ import { __extends } from "tslib";
8
+ import { Base, String_$type, markType } from "./type";
9
+ import { Dictionary$2 } from "./Dictionary$2";
10
+ import { WebTreeSelectionOptionsEventArgsDescriptionMetadata } from "./WebTreeSelectionOptionsEventArgsDescriptionMetadata";
11
+ import { WebTreeItemComponentEventArgsDescriptionMetadata } from "./WebTreeItemComponentEventArgsDescriptionMetadata";
12
+ import { WebTreeDescription } from "./WebTreeDescription";
13
+ /**
14
+ * @hidden
15
+ */
16
+ var WebTreeDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
17
+ __extends(WebTreeDescriptionMetadata, _super);
18
+ function WebTreeDescriptionMetadata() {
19
+ return _super !== null && _super.apply(this, arguments) || this;
20
+ }
21
+ WebTreeDescriptionMetadata.b = function (a) {
22
+ if (WebTreeDescriptionMetadata.a == null) {
23
+ WebTreeDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
24
+ WebTreeDescriptionMetadata.c(WebTreeDescriptionMetadata.a);
25
+ }
26
+ if (a.g(WebTreeDescriptionMetadata.a)) {
27
+ return;
28
+ }
29
+ a.s(WebTreeDescriptionMetadata.a);
30
+ WebTreeSelectionOptionsEventArgsDescriptionMetadata.d(a);
31
+ WebTreeItemComponentEventArgsDescriptionMetadata.d(a);
32
+ };
33
+ WebTreeDescriptionMetadata.c = function (a) {
34
+ a.item("__qualifiedNameTS", "String:Tree");
35
+ a.item("SingleBranchExpand", "Boolean");
36
+ a.item("Selection", "ExportedType:string:TreeSelection");
37
+ a.item("Selection@names", "Multiple;None;Cascade");
38
+ a.item("Dir", "ExportedType:string:TreeDir");
39
+ a.item("Dir@names", "Ltr;Rtl;Auto");
40
+ a.item("Size", "ExportedType:string:SizableComponentSize");
41
+ a.item("Size@names", "Large;Small;Medium");
42
+ a.item("SelectionChangedRef", "EventRef::selectionChanged");
43
+ a.item("ItemExpandingRef", "EventRef::itemExpanding");
44
+ a.item("ItemExpandedRef", "EventRef::itemExpanded");
45
+ a.item("ItemCollapsingRef", "EventRef::itemCollapsing");
46
+ a.item("ItemCollapsedRef", "EventRef::itemCollapsed");
47
+ a.item("ActiveItemRef", "EventRef::activeItem");
48
+ };
49
+ WebTreeDescriptionMetadata.d = function (a) {
50
+ WebTreeDescriptionMetadata.b(a);
51
+ a.u("WebTree", function () { return new WebTreeDescription(); });
52
+ a.t("WebTree", WebTreeDescriptionMetadata.a);
53
+ };
54
+ WebTreeDescriptionMetadata.$t = markType(WebTreeDescriptionMetadata, 'WebTreeDescriptionMetadata');
55
+ WebTreeDescriptionMetadata.a = null;
56
+ return WebTreeDescriptionMetadata;
57
+ }(Base));
58
+ export { WebTreeDescriptionMetadata };
@@ -0,0 +1,30 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ 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.
6
+ */
7
+ import { __extends } from "tslib";
8
+ import { Base, markType } from "./type";
9
+ import { WebTreeItemDescriptionModule } from "./WebTreeItemDescriptionModule";
10
+ import { WebTreeDescriptionMetadata } from "./WebTreeDescriptionMetadata";
11
+ /**
12
+ * @hidden
13
+ */
14
+ var WebTreeDescriptionModule = /** @class */ /*@__PURE__*/ (function (_super) {
15
+ __extends(WebTreeDescriptionModule, _super);
16
+ function WebTreeDescriptionModule() {
17
+ return _super !== null && _super.apply(this, arguments) || this;
18
+ }
19
+ WebTreeDescriptionModule.register = function (a) {
20
+ WebTreeItemDescriptionModule.register(a);
21
+ WebTreeItemDescriptionModule.register(a);
22
+ WebTreeItemDescriptionModule.register(a);
23
+ WebTreeItemDescriptionModule.register(a);
24
+ WebTreeItemDescriptionModule.register(a);
25
+ WebTreeDescriptionMetadata.d(a);
26
+ };
27
+ WebTreeDescriptionModule.$t = markType(WebTreeDescriptionModule, 'WebTreeDescriptionModule');
28
+ return WebTreeDescriptionModule;
29
+ }(Base));
30
+ export { WebTreeDescriptionModule };
@@ -0,0 +1,44 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ 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.
6
+ */
7
+ import { __extends } from "tslib";
8
+ import { Description } from "./Description";
9
+ import { markType } from "./type";
10
+ /**
11
+ * @hidden
12
+ */
13
+ var WebTreeItemComponentEventArgsDescription = /** @class */ /*@__PURE__*/ (function (_super) {
14
+ __extends(WebTreeItemComponentEventArgsDescription, _super);
15
+ function WebTreeItemComponentEventArgsDescription() {
16
+ var _this = _super.call(this) || this;
17
+ _this.f = null;
18
+ return _this;
19
+ }
20
+ WebTreeItemComponentEventArgsDescription.prototype.get_type = function () {
21
+ return "WebTreeItemComponentEventArgs";
22
+ };
23
+ Object.defineProperty(WebTreeItemComponentEventArgsDescription.prototype, "type", {
24
+ get: function () {
25
+ return this.get_type();
26
+ },
27
+ enumerable: false,
28
+ configurable: true
29
+ });
30
+ Object.defineProperty(WebTreeItemComponentEventArgsDescription.prototype, "detail", {
31
+ get: function () {
32
+ return this.f;
33
+ },
34
+ set: function (a) {
35
+ this.f = a;
36
+ this.e("Detail");
37
+ },
38
+ enumerable: false,
39
+ configurable: true
40
+ });
41
+ WebTreeItemComponentEventArgsDescription.$t = markType(WebTreeItemComponentEventArgsDescription, 'WebTreeItemComponentEventArgsDescription', Description.$);
42
+ return WebTreeItemComponentEventArgsDescription;
43
+ }(Description));
44
+ export { WebTreeItemComponentEventArgsDescription };
@@ -0,0 +1,44 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ 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.
6
+ */
7
+ import { __extends } from "tslib";
8
+ import { Base, String_$type, markType } from "./type";
9
+ import { Dictionary$2 } from "./Dictionary$2";
10
+ import { WebTreeItemDescriptionMetadata } from "./WebTreeItemDescriptionMetadata";
11
+ import { WebTreeItemComponentEventArgsDescription } from "./WebTreeItemComponentEventArgsDescription";
12
+ /**
13
+ * @hidden
14
+ */
15
+ var WebTreeItemComponentEventArgsDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
16
+ __extends(WebTreeItemComponentEventArgsDescriptionMetadata, _super);
17
+ function WebTreeItemComponentEventArgsDescriptionMetadata() {
18
+ return _super !== null && _super.apply(this, arguments) || this;
19
+ }
20
+ WebTreeItemComponentEventArgsDescriptionMetadata.b = function (a) {
21
+ if (WebTreeItemComponentEventArgsDescriptionMetadata.a == null) {
22
+ WebTreeItemComponentEventArgsDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
23
+ WebTreeItemComponentEventArgsDescriptionMetadata.c(WebTreeItemComponentEventArgsDescriptionMetadata.a);
24
+ }
25
+ if (a.g(WebTreeItemComponentEventArgsDescriptionMetadata.a)) {
26
+ return;
27
+ }
28
+ a.s(WebTreeItemComponentEventArgsDescriptionMetadata.a);
29
+ WebTreeItemDescriptionMetadata.d(a);
30
+ };
31
+ WebTreeItemComponentEventArgsDescriptionMetadata.c = function (a) {
32
+ a.item("__qualifiedNameTS", "String:TreeItemComponentEventArgs");
33
+ a.item("Detail", "ExportedType:WebTreeItem");
34
+ };
35
+ WebTreeItemComponentEventArgsDescriptionMetadata.d = function (a) {
36
+ WebTreeItemComponentEventArgsDescriptionMetadata.b(a);
37
+ a.u("WebTreeItemComponentEventArgs", function () { return new WebTreeItemComponentEventArgsDescription(); });
38
+ a.t("WebTreeItemComponentEventArgs", WebTreeItemComponentEventArgsDescriptionMetadata.a);
39
+ };
40
+ WebTreeItemComponentEventArgsDescriptionMetadata.$t = markType(WebTreeItemComponentEventArgsDescriptionMetadata, 'WebTreeItemComponentEventArgsDescriptionMetadata');
41
+ WebTreeItemComponentEventArgsDescriptionMetadata.a = null;
42
+ return WebTreeItemComponentEventArgsDescriptionMetadata;
43
+ }(Base));
44
+ export { WebTreeItemComponentEventArgsDescriptionMetadata };