igniteui-angular-core 13.2.0-beta.3 → 14.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-angular-core.umd.js +1073 -807
- package/bundles/igniteui-angular-core.umd.min.js +1 -1
- package/esm2015/lib/BlazorCodeGeneratingComponentRendererModuleEmitter.js +9 -9
- package/esm2015/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +391 -322
- package/esm2015/lib/CodeGeneratingComponentRendererDataEmitter.js +2 -2
- package/esm2015/lib/CodeGeneratingComponentRendererHandlerEmitter.js +2 -2
- package/esm2015/lib/CodeGeneratingComponentRendererModuleEmitter.js +14 -11
- package/esm2015/lib/CodeGeneratingRendererResult.js +56 -44
- package/esm2015/lib/CodeGenerationFolderTemplate.js +41 -37
- package/esm2015/lib/ComponentRendererAdapter.js +3 -0
- package/esm2015/lib/ComponentRenderer_combined.js +1 -1
- package/esm2015/lib/DataGridPagerDescriptionModule.js +2 -0
- package/esm2015/lib/DescriptionSerializer.js +70 -56
- package/esm2015/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.js +24 -22
- package/esm2015/lib/FinancialChartDescriptionModule.js +2 -0
- package/esm2015/lib/IgcSliderBridge.js +38 -12
- package/esm2015/lib/NativeUIButton.js +2 -1
- package/esm2015/lib/NativeUICheckbox.js +2 -1
- package/esm2015/lib/NativeUIDropDown.js +2 -1
- package/esm2015/lib/NativeUIInput.js +2 -1
- package/esm2015/lib/NativeUIInputsFactory.js +1 -0
- package/esm2015/lib/NativeUISlider.js +26 -11
- package/esm2015/lib/PropertyEditorPropertyDescriptionChangedEventArgsDescription.js +8 -0
- package/esm2015/lib/PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata.js +1 -0
- package/esm2015/lib/StackedFragmentSeriesDescription.js +121 -121
- package/esm2015/lib/StackedFragmentSeriesDescriptionMetadata.js +1 -1
- package/esm2015/lib/TSCodeGeneratingComponentRendererModuleEmitter.js +36 -34
- package/esm2015/lib/WebDropdownGroupDescription.js +2 -10
- package/esm2015/lib/WebDropdownGroupDescriptionMetadata.js +0 -3
- package/esm2015/lib/WebTreeDescriptionModule.js +0 -4
- package/esm2015/lib/WebTreeItemDescription.js +14 -22
- package/esm2015/lib/WebTreeItemDescriptionMetadata.js +1 -2
- package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescription.js +3 -3
- package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +3 -1
- package/esm2015/lib/WebTreeSelectionOptionsEventDetailDescription.js +36 -0
- package/esm2015/lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata.js +38 -0
- package/esm2015/public_api.js +2 -0
- package/esm5/lib/BlazorCodeGeneratingComponentRendererModuleEmitter.js +9 -9
- package/esm5/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +458 -371
- package/esm5/lib/CodeGeneratingComponentRendererDataEmitter.js +2 -2
- package/esm5/lib/CodeGeneratingComponentRendererHandlerEmitter.js +2 -2
- package/esm5/lib/CodeGeneratingComponentRendererModuleEmitter.js +18 -11
- package/esm5/lib/CodeGeneratingRendererResult.js +95 -66
- package/esm5/lib/CodeGenerationFolderTemplate.js +40 -36
- package/esm5/lib/ComponentRendererAdapter.js +3 -0
- package/esm5/lib/ComponentRenderer_combined.js +1 -1
- package/esm5/lib/DataGridPagerDescriptionModule.js +2 -0
- package/esm5/lib/DescriptionSerializer.js +70 -56
- package/esm5/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.js +24 -22
- package/esm5/lib/FinancialChartDescriptionModule.js +2 -0
- package/esm5/lib/IgcSliderBridge.js +38 -12
- package/esm5/lib/NativeUIButton.js +2 -1
- package/esm5/lib/NativeUICheckbox.js +2 -1
- package/esm5/lib/NativeUIDropDown.js +2 -1
- package/esm5/lib/NativeUIInput.js +2 -1
- package/esm5/lib/NativeUIInputsFactory.js +1 -0
- package/esm5/lib/NativeUISlider.js +25 -6
- package/esm5/lib/PropertyEditorPropertyDescriptionChangedEventArgsDescription.js +14 -1
- package/esm5/lib/PropertyEditorPropertyDescriptionChangedEventArgsDescriptionMetadata.js +1 -0
- package/esm5/lib/StackedFragmentSeriesDescription.js +120 -120
- package/esm5/lib/StackedFragmentSeriesDescriptionMetadata.js +1 -1
- package/esm5/lib/TSCodeGeneratingComponentRendererModuleEmitter.js +36 -34
- package/esm5/lib/WebDropdownGroupDescription.js +1 -13
- package/esm5/lib/WebDropdownGroupDescriptionMetadata.js +0 -3
- package/esm5/lib/WebTreeDescriptionModule.js +0 -4
- package/esm5/lib/WebTreeItemDescription.js +13 -25
- package/esm5/lib/WebTreeItemDescriptionMetadata.js +1 -2
- package/esm5/lib/WebTreeSelectionOptionsEventArgsDescription.js +2 -2
- package/esm5/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +3 -1
- package/esm5/lib/WebTreeSelectionOptionsEventDetailDescription.js +46 -0
- package/esm5/lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata.js +42 -0
- package/esm5/public_api.js +2 -0
- package/fesm2015/igniteui-angular-core.js +947 -733
- package/fesm5/igniteui-angular-core.js +1072 -808
- package/lib/BlazorCodeGeneratingComponentRendererModuleEmitter.d.ts +3 -3
- package/lib/CodeGeneratingComponentRendererCodeEmitter_combined.d.ts +120 -114
- package/lib/CodeGeneratingComponentRendererModuleEmitter.d.ts +6 -5
- package/lib/CodeGeneratingRendererResult.d.ts +15 -12
- package/lib/DescriptionSerializer.d.ts +7 -6
- package/lib/DotNetCodeGeneratingComponentRendererModuleEmitter.d.ts +7 -7
- package/lib/IgcSliderBridge.d.ts +7 -3
- package/lib/NativeUISlider.d.ts +9 -6
- package/lib/PropertyEditorPropertyDescriptionChangedEventArgsDescription.d.ts +3 -0
- package/lib/StackedFragmentSeriesDescription.d.ts +46 -46
- package/lib/TSCodeGeneratingComponentRendererModuleEmitter.d.ts +7 -7
- package/lib/WebDropdownGroupDescription.d.ts +0 -4
- package/lib/WebTreeItemDescription.d.ts +6 -9
- package/lib/WebTreeSelectionOptionsEventArgsDescription.d.ts +3 -3
- package/lib/WebTreeSelectionOptionsEventDetailDescription.d.ts +17 -0
- package/lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata.d.ts +13 -0
- package/package.json +4 -4
- package/public_api.d.ts +2 -0
|
@@ -17,20 +17,20 @@ var TSCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE__*/
|
|
|
17
17
|
__extends(TSCodeGeneratingComponentRendererModuleEmitter, _super);
|
|
18
18
|
function TSCodeGeneratingComponentRendererModuleEmitter(a, b, c) {
|
|
19
19
|
var _this = _super.call(this, b, c) || this;
|
|
20
|
-
_this.
|
|
21
|
-
_this.
|
|
22
|
-
_this.
|
|
23
|
-
_this.
|
|
24
|
-
_this.
|
|
20
|
+
_this.p = 0;
|
|
21
|
+
_this.s = 0;
|
|
22
|
+
_this.q = false;
|
|
23
|
+
_this.r = new Dictionary$2(String_$type, List$1.$.specialize(String_$type), 0);
|
|
24
|
+
_this.p = a;
|
|
25
25
|
return _this;
|
|
26
26
|
}
|
|
27
|
-
TSCodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
28
|
-
_super.prototype.
|
|
29
|
-
this.
|
|
27
|
+
TSCodeGeneratingComponentRendererModuleEmitter.prototype.o = function () {
|
|
28
|
+
_super.prototype.o.call(this);
|
|
29
|
+
this.s = 0;
|
|
30
30
|
};
|
|
31
|
-
Object.defineProperty(TSCodeGeneratingComponentRendererModuleEmitter.prototype, "
|
|
31
|
+
Object.defineProperty(TSCodeGeneratingComponentRendererModuleEmitter.prototype, "u", {
|
|
32
32
|
get: function () {
|
|
33
|
-
switch (this.
|
|
33
|
+
switch (this.p) {
|
|
34
34
|
case 1: return "Igx";
|
|
35
35
|
case 2: return "Igr";
|
|
36
36
|
case 3: return "Igc";
|
|
@@ -40,9 +40,9 @@ var TSCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE__*/
|
|
|
40
40
|
enumerable: false,
|
|
41
41
|
configurable: true
|
|
42
42
|
});
|
|
43
|
-
Object.defineProperty(TSCodeGeneratingComponentRendererModuleEmitter.prototype, "
|
|
43
|
+
Object.defineProperty(TSCodeGeneratingComponentRendererModuleEmitter.prototype, "t", {
|
|
44
44
|
get: function () {
|
|
45
|
-
switch (this.
|
|
45
|
+
switch (this.p) {
|
|
46
46
|
case 1: return "angular";
|
|
47
47
|
case 2: return "react";
|
|
48
48
|
case 3: return "webcomponents";
|
|
@@ -52,34 +52,36 @@ var TSCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE__*/
|
|
|
52
52
|
enumerable: false,
|
|
53
53
|
configurable: true
|
|
54
54
|
});
|
|
55
|
-
TSCodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
56
|
-
_super.prototype.
|
|
55
|
+
TSCodeGeneratingComponentRendererModuleEmitter.prototype.l = function (a) {
|
|
56
|
+
_super.prototype.l.call(this, a);
|
|
57
57
|
if (a == "withDescriptions") {
|
|
58
|
-
this.
|
|
58
|
+
this.q = true;
|
|
59
59
|
return;
|
|
60
60
|
}
|
|
61
|
-
var b = "igniteui-" + this.
|
|
61
|
+
var b = "igniteui-" + this.t + "-core";
|
|
62
62
|
var c = "";
|
|
63
63
|
var d = a.split('/');
|
|
64
64
|
if (d.length == 1) {
|
|
65
65
|
c = d[0];
|
|
66
|
+
this.j.addPackageRef(c);
|
|
66
67
|
}
|
|
67
68
|
else {
|
|
68
69
|
b = d[0];
|
|
69
|
-
|
|
70
|
+
this.j.addPackageRef(b);
|
|
71
|
+
b = "igniteui-" + this.t + "-" + b;
|
|
70
72
|
c = d[1];
|
|
71
73
|
}
|
|
72
|
-
if (!this.
|
|
73
|
-
this.
|
|
74
|
+
if (!this.r.containsKey(b)) {
|
|
75
|
+
this.r.addItem(b, new List$1(String_$type, 0));
|
|
74
76
|
}
|
|
75
|
-
var e = this.
|
|
76
|
-
if (this.
|
|
77
|
+
var e = this.r.item(b);
|
|
78
|
+
if (this.s > 0) {
|
|
77
79
|
this.d.k(",");
|
|
78
80
|
}
|
|
79
|
-
this.d.j(this.
|
|
80
|
-
e.add(this.
|
|
81
|
-
if (this.
|
|
82
|
-
if (this.
|
|
81
|
+
this.d.j(this.u + c);
|
|
82
|
+
e.add(this.u + c);
|
|
83
|
+
if (this.q) {
|
|
84
|
+
if (this.s == 0) {
|
|
83
85
|
this.c.k("private _componentRenderer: ComponentRenderer = null;");
|
|
84
86
|
this.c.k("public get renderer(): ComponentRenderer {");
|
|
85
87
|
this.c.h();
|
|
@@ -87,26 +89,26 @@ var TSCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE__*/
|
|
|
87
89
|
this.c.h();
|
|
88
90
|
this.c.k("this._componentRenderer = new ComponentRenderer();");
|
|
89
91
|
this.c.k("var context = this._componentRenderer.context;");
|
|
90
|
-
this.g.addPackageImport("igniteui-" + this.
|
|
92
|
+
this.g.addPackageImport("igniteui-" + this.t + "-core", "ComponentRenderer");
|
|
91
93
|
}
|
|
92
94
|
var f = c;
|
|
93
95
|
if (stringEndsWith(f, "Module")) {
|
|
94
96
|
f = f.substr(0, f.length - ("Module").length);
|
|
95
97
|
f += "DescriptionModule";
|
|
96
98
|
}
|
|
97
|
-
this.g.addPackageImport("igniteui-" + this.
|
|
99
|
+
this.g.addPackageImport("igniteui-" + this.t + "-core", f);
|
|
98
100
|
this.c.k(f + ".register(context);");
|
|
99
101
|
}
|
|
100
|
-
this.
|
|
102
|
+
this.s++;
|
|
101
103
|
};
|
|
102
|
-
TSCodeGeneratingComponentRendererModuleEmitter.prototype.
|
|
104
|
+
TSCodeGeneratingComponentRendererModuleEmitter.prototype.n = function () {
|
|
103
105
|
var e_1, _a, e_2, _b;
|
|
104
|
-
_super.prototype.
|
|
106
|
+
_super.prototype.n.call(this);
|
|
105
107
|
try {
|
|
106
|
-
for (var _c = __values(fromEnum(this.
|
|
108
|
+
for (var _c = __values(fromEnum(this.r.keys)), _d = _c.next(); !_d.done; _d = _c.next()) {
|
|
107
109
|
var a = _d.value;
|
|
108
110
|
var b = a;
|
|
109
|
-
var c = this.
|
|
111
|
+
var c = this.r.item(a);
|
|
110
112
|
try {
|
|
111
113
|
for (var _e = (e_2 = void 0, __values(fromEnum(c))), _f = _e.next(); !_f.done; _f = _e.next()) {
|
|
112
114
|
var d = _f.value;
|
|
@@ -141,10 +143,10 @@ var TSCodeGeneratingComponentRendererModuleEmitter = /** @class */ /*@__PURE__*/
|
|
|
141
143
|
throw e_1.error;
|
|
142
144
|
}
|
|
143
145
|
}
|
|
144
|
-
if (this.
|
|
146
|
+
if (this.q) {
|
|
145
147
|
this.c.f();
|
|
146
148
|
this.c.k("}");
|
|
147
|
-
this.c.k("return this._componentRenderer");
|
|
149
|
+
this.c.k("return this._componentRenderer;");
|
|
148
150
|
this.c.f();
|
|
149
151
|
this.c.k("}");
|
|
150
152
|
}
|
|
@@ -15,7 +15,6 @@ var WebDropdownGroupDescription = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
15
15
|
function WebDropdownGroupDescription() {
|
|
16
16
|
var _this = _super.call(this) || this;
|
|
17
17
|
_this.f = null;
|
|
18
|
-
_this.h = null;
|
|
19
18
|
return _this;
|
|
20
19
|
}
|
|
21
20
|
WebDropdownGroupDescription.prototype.get_type = function () {
|
|
@@ -28,23 +27,12 @@ var WebDropdownGroupDescription = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
28
27
|
enumerable: false,
|
|
29
28
|
configurable: true
|
|
30
29
|
});
|
|
31
|
-
Object.defineProperty(WebDropdownGroupDescription.prototype, "
|
|
30
|
+
Object.defineProperty(WebDropdownGroupDescription.prototype, "size", {
|
|
32
31
|
get: function () {
|
|
33
32
|
return this.f;
|
|
34
33
|
},
|
|
35
34
|
set: function (a) {
|
|
36
35
|
this.f = a;
|
|
37
|
-
this.e("Items");
|
|
38
|
-
},
|
|
39
|
-
enumerable: false,
|
|
40
|
-
configurable: true
|
|
41
|
-
});
|
|
42
|
-
Object.defineProperty(WebDropdownGroupDescription.prototype, "size", {
|
|
43
|
-
get: function () {
|
|
44
|
-
return this.h;
|
|
45
|
-
},
|
|
46
|
-
set: function (a) {
|
|
47
|
-
this.h = a;
|
|
48
36
|
this.e("Size");
|
|
49
37
|
},
|
|
50
38
|
enumerable: false,
|
|
@@ -7,7 +7,6 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
|
|
|
7
7
|
import { __extends } from "tslib";
|
|
8
8
|
import { Base, String_$type, markType } from "./type";
|
|
9
9
|
import { Dictionary$2 } from "./Dictionary$2";
|
|
10
|
-
import { WebDropdownItemDescriptionMetadata } from "./WebDropdownItemDescriptionMetadata";
|
|
11
10
|
import { WebDropdownGroupDescription } from "./WebDropdownGroupDescription";
|
|
12
11
|
/**
|
|
13
12
|
* @hidden
|
|
@@ -26,11 +25,9 @@ var WebDropdownGroupDescriptionMetadata = /** @class */ /*@__PURE__*/ (function
|
|
|
26
25
|
return;
|
|
27
26
|
}
|
|
28
27
|
a.s(WebDropdownGroupDescriptionMetadata.a);
|
|
29
|
-
WebDropdownItemDescriptionMetadata.d(a);
|
|
30
28
|
};
|
|
31
29
|
WebDropdownGroupDescriptionMetadata.c = function (a) {
|
|
32
30
|
a.item("__qualifiedNameTS", "String:DropdownGroup");
|
|
33
|
-
a.item("Items", "Array:WebDropdownItemDescription:DropdownItem");
|
|
34
31
|
a.item("Size", "ExportedType:string:DropdownGroupSize");
|
|
35
32
|
a.item("Size@names", "Small;Medium;Large");
|
|
36
33
|
};
|
|
@@ -17,10 +17,6 @@ var WebTreeDescriptionModule = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
17
17
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
18
18
|
}
|
|
19
19
|
WebTreeDescriptionModule.register = function (a) {
|
|
20
|
-
WebTreeItemDescriptionModule.register(a);
|
|
21
|
-
WebTreeItemDescriptionModule.register(a);
|
|
22
|
-
WebTreeItemDescriptionModule.register(a);
|
|
23
|
-
WebTreeItemDescriptionModule.register(a);
|
|
24
20
|
WebTreeItemDescriptionModule.register(a);
|
|
25
21
|
WebTreeDescriptionMetadata.d(a);
|
|
26
22
|
};
|
|
@@ -15,15 +15,14 @@ var WebTreeItemDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
15
15
|
function WebTreeItemDescription() {
|
|
16
16
|
var _this = _super.call(this) || this;
|
|
17
17
|
_this.f = null;
|
|
18
|
-
_this.
|
|
19
|
-
_this.t = 0;
|
|
18
|
+
_this.r = 0;
|
|
20
19
|
_this.v = null;
|
|
21
20
|
_this.j = false;
|
|
22
21
|
_this.h = false;
|
|
23
22
|
_this.i = false;
|
|
24
|
-
_this.m = false;
|
|
25
23
|
_this.l = false;
|
|
26
|
-
_this.
|
|
24
|
+
_this.k = false;
|
|
25
|
+
_this.t = null;
|
|
27
26
|
return _this;
|
|
28
27
|
}
|
|
29
28
|
WebTreeItemDescription.prototype.get_type = function () {
|
|
@@ -47,23 +46,12 @@ var WebTreeItemDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
47
46
|
enumerable: false,
|
|
48
47
|
configurable: true
|
|
49
48
|
});
|
|
50
|
-
Object.defineProperty(WebTreeItemDescription.prototype, "init", {
|
|
51
|
-
get: function () {
|
|
52
|
-
return this.k;
|
|
53
|
-
},
|
|
54
|
-
set: function (a) {
|
|
55
|
-
this.k = a;
|
|
56
|
-
this.e("Init");
|
|
57
|
-
},
|
|
58
|
-
enumerable: false,
|
|
59
|
-
configurable: true
|
|
60
|
-
});
|
|
61
49
|
Object.defineProperty(WebTreeItemDescription.prototype, "level", {
|
|
62
50
|
get: function () {
|
|
63
|
-
return this.
|
|
51
|
+
return this.r;
|
|
64
52
|
},
|
|
65
53
|
set: function (a) {
|
|
66
|
-
this.
|
|
54
|
+
this.r = a;
|
|
67
55
|
this.e("Level");
|
|
68
56
|
},
|
|
69
57
|
enumerable: false,
|
|
@@ -115,10 +103,10 @@ var WebTreeItemDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
115
103
|
});
|
|
116
104
|
Object.defineProperty(WebTreeItemDescription.prototype, "selected", {
|
|
117
105
|
get: function () {
|
|
118
|
-
return this.
|
|
106
|
+
return this.l;
|
|
119
107
|
},
|
|
120
108
|
set: function (a) {
|
|
121
|
-
this.
|
|
109
|
+
this.l = a;
|
|
122
110
|
this.e("Selected");
|
|
123
111
|
},
|
|
124
112
|
enumerable: false,
|
|
@@ -126,22 +114,22 @@ var WebTreeItemDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
126
114
|
});
|
|
127
115
|
Object.defineProperty(WebTreeItemDescription.prototype, "loading", {
|
|
128
116
|
get: function () {
|
|
129
|
-
return this.
|
|
117
|
+
return this.k;
|
|
130
118
|
},
|
|
131
119
|
set: function (a) {
|
|
132
|
-
this.
|
|
120
|
+
this.k = a;
|
|
133
121
|
this.e("Loading");
|
|
134
122
|
},
|
|
135
123
|
enumerable: false,
|
|
136
124
|
configurable: true
|
|
137
125
|
});
|
|
138
|
-
Object.defineProperty(WebTreeItemDescription.prototype, "
|
|
126
|
+
Object.defineProperty(WebTreeItemDescription.prototype, "value", {
|
|
139
127
|
get: function () {
|
|
140
|
-
return this.
|
|
128
|
+
return this.t;
|
|
141
129
|
},
|
|
142
130
|
set: function (a) {
|
|
143
|
-
this.
|
|
144
|
-
this.e("
|
|
131
|
+
this.t = a;
|
|
132
|
+
this.e("Value");
|
|
145
133
|
},
|
|
146
134
|
enumerable: false,
|
|
147
135
|
configurable: true
|
|
@@ -30,7 +30,6 @@ var WebTreeItemDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_sup
|
|
|
30
30
|
WebTreeItemDescriptionMetadata.c = function (a) {
|
|
31
31
|
a.item("__qualifiedNameTS", "String:TreeItem");
|
|
32
32
|
a.item("Parent", "ExportedType:WebTreeItem");
|
|
33
|
-
a.item("Init", "Boolean");
|
|
34
33
|
a.item("Level", "Number:double");
|
|
35
34
|
a.item("Label", "String");
|
|
36
35
|
a.item("Expanded", "Boolean");
|
|
@@ -38,7 +37,7 @@ var WebTreeItemDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_sup
|
|
|
38
37
|
a.item("Disabled", "Boolean");
|
|
39
38
|
a.item("Selected", "Boolean");
|
|
40
39
|
a.item("Loading", "Boolean");
|
|
41
|
-
a.item("
|
|
40
|
+
a.item("Value", "Unknown");
|
|
42
41
|
};
|
|
43
42
|
WebTreeItemDescriptionMetadata.d = function (a) {
|
|
44
43
|
WebTreeItemDescriptionMetadata.b(a);
|
|
@@ -27,13 +27,13 @@ var WebTreeSelectionOptionsEventArgsDescription = /** @class */ /*@__PURE__*/ (f
|
|
|
27
27
|
enumerable: false,
|
|
28
28
|
configurable: true
|
|
29
29
|
});
|
|
30
|
-
Object.defineProperty(WebTreeSelectionOptionsEventArgsDescription.prototype, "
|
|
30
|
+
Object.defineProperty(WebTreeSelectionOptionsEventArgsDescription.prototype, "detail", {
|
|
31
31
|
get: function () {
|
|
32
32
|
return this.f;
|
|
33
33
|
},
|
|
34
34
|
set: function (a) {
|
|
35
35
|
this.f = a;
|
|
36
|
-
this.e("
|
|
36
|
+
this.e("Detail");
|
|
37
37
|
},
|
|
38
38
|
enumerable: false,
|
|
39
39
|
configurable: true
|
|
@@ -7,6 +7,7 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
|
|
|
7
7
|
import { __extends } from "tslib";
|
|
8
8
|
import { Base, String_$type, markType } from "./type";
|
|
9
9
|
import { Dictionary$2 } from "./Dictionary$2";
|
|
10
|
+
import { WebTreeSelectionOptionsEventDetailDescriptionMetadata } from "./WebTreeSelectionOptionsEventDetailDescriptionMetadata";
|
|
10
11
|
import { WebTreeSelectionOptionsEventArgsDescription } from "./WebTreeSelectionOptionsEventArgsDescription";
|
|
11
12
|
/**
|
|
12
13
|
* @hidden
|
|
@@ -25,10 +26,11 @@ var WebTreeSelectionOptionsEventArgsDescriptionMetadata = /** @class */ /*@__PUR
|
|
|
25
26
|
return;
|
|
26
27
|
}
|
|
27
28
|
a.s(WebTreeSelectionOptionsEventArgsDescriptionMetadata.a);
|
|
29
|
+
WebTreeSelectionOptionsEventDetailDescriptionMetadata.d(a);
|
|
28
30
|
};
|
|
29
31
|
WebTreeSelectionOptionsEventArgsDescriptionMetadata.c = function (a) {
|
|
30
32
|
a.item("__qualifiedNameTS", "String:TreeSelectionOptionsEventArgs");
|
|
31
|
-
a.item("
|
|
33
|
+
a.item("Detail", "ExportedType:WebTreeSelectionOptionsEventDetail");
|
|
32
34
|
};
|
|
33
35
|
WebTreeSelectionOptionsEventArgsDescriptionMetadata.d = function (a) {
|
|
34
36
|
WebTreeSelectionOptionsEventArgsDescriptionMetadata.b(a);
|
|
@@ -0,0 +1,46 @@
|
|
|
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 WebTreeSelectionOptionsEventDetailDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
14
|
+
__extends(WebTreeSelectionOptionsEventDetailDescription, _super);
|
|
15
|
+
function WebTreeSelectionOptionsEventDetailDescription() {
|
|
16
|
+
var _this = _super.call(this) || this;
|
|
17
|
+
_this.f = null;
|
|
18
|
+
return _this;
|
|
19
|
+
}
|
|
20
|
+
WebTreeSelectionOptionsEventDetailDescription.prototype.get_type = function () {
|
|
21
|
+
return "WebTreeSelectionOptionsEventDetail";
|
|
22
|
+
};
|
|
23
|
+
Object.defineProperty(WebTreeSelectionOptionsEventDetailDescription.prototype, "type", {
|
|
24
|
+
get: function () {
|
|
25
|
+
return this.get_type();
|
|
26
|
+
},
|
|
27
|
+
enumerable: false,
|
|
28
|
+
configurable: true
|
|
29
|
+
});
|
|
30
|
+
Object.defineProperty(WebTreeSelectionOptionsEventDetailDescription.prototype, "newSelection", {
|
|
31
|
+
get: function () {
|
|
32
|
+
return this.f;
|
|
33
|
+
},
|
|
34
|
+
set: function (a) {
|
|
35
|
+
this.f = a;
|
|
36
|
+
this.e("NewSelection");
|
|
37
|
+
},
|
|
38
|
+
enumerable: false,
|
|
39
|
+
configurable: true
|
|
40
|
+
});
|
|
41
|
+
WebTreeSelectionOptionsEventDetailDescription.$t = markType(WebTreeSelectionOptionsEventDetailDescription, 'WebTreeSelectionOptionsEventDetailDescription', Description.$);
|
|
42
|
+
WebTreeSelectionOptionsEventDetailDescription.__marshalByValue = true;
|
|
43
|
+
WebTreeSelectionOptionsEventDetailDescription.__marshalByValueAlias = "TreeSelectionOptionsEventDetail";
|
|
44
|
+
return WebTreeSelectionOptionsEventDetailDescription;
|
|
45
|
+
}(Description));
|
|
46
|
+
export { WebTreeSelectionOptionsEventDetailDescription };
|
|
@@ -0,0 +1,42 @@
|
|
|
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 { WebTreeSelectionOptionsEventDetailDescription } from "./WebTreeSelectionOptionsEventDetailDescription";
|
|
11
|
+
/**
|
|
12
|
+
* @hidden
|
|
13
|
+
*/
|
|
14
|
+
var WebTreeSelectionOptionsEventDetailDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
15
|
+
__extends(WebTreeSelectionOptionsEventDetailDescriptionMetadata, _super);
|
|
16
|
+
function WebTreeSelectionOptionsEventDetailDescriptionMetadata() {
|
|
17
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
18
|
+
}
|
|
19
|
+
WebTreeSelectionOptionsEventDetailDescriptionMetadata.b = function (a) {
|
|
20
|
+
if (WebTreeSelectionOptionsEventDetailDescriptionMetadata.a == null) {
|
|
21
|
+
WebTreeSelectionOptionsEventDetailDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
|
|
22
|
+
WebTreeSelectionOptionsEventDetailDescriptionMetadata.c(WebTreeSelectionOptionsEventDetailDescriptionMetadata.a);
|
|
23
|
+
}
|
|
24
|
+
if (a.g(WebTreeSelectionOptionsEventDetailDescriptionMetadata.a)) {
|
|
25
|
+
return;
|
|
26
|
+
}
|
|
27
|
+
a.s(WebTreeSelectionOptionsEventDetailDescriptionMetadata.a);
|
|
28
|
+
};
|
|
29
|
+
WebTreeSelectionOptionsEventDetailDescriptionMetadata.c = function (a) {
|
|
30
|
+
a.item("__qualifiedNameTS", "String:TreeSelectionOptionsEventDetail");
|
|
31
|
+
a.item("NewSelection", "Collection:WebTreeItem:WebTreeItemCollection:WebTreeItem");
|
|
32
|
+
};
|
|
33
|
+
WebTreeSelectionOptionsEventDetailDescriptionMetadata.d = function (a) {
|
|
34
|
+
WebTreeSelectionOptionsEventDetailDescriptionMetadata.b(a);
|
|
35
|
+
a.u("WebTreeSelectionOptionsEventDetail", function () { return new WebTreeSelectionOptionsEventDetailDescription(); });
|
|
36
|
+
a.t("WebTreeSelectionOptionsEventDetail", WebTreeSelectionOptionsEventDetailDescriptionMetadata.a);
|
|
37
|
+
};
|
|
38
|
+
WebTreeSelectionOptionsEventDetailDescriptionMetadata.$t = markType(WebTreeSelectionOptionsEventDetailDescriptionMetadata, 'WebTreeSelectionOptionsEventDetailDescriptionMetadata');
|
|
39
|
+
WebTreeSelectionOptionsEventDetailDescriptionMetadata.a = null;
|
|
40
|
+
return WebTreeSelectionOptionsEventDetailDescriptionMetadata;
|
|
41
|
+
}(Base));
|
|
42
|
+
export { WebTreeSelectionOptionsEventDetailDescriptionMetadata };
|
package/esm5/public_api.js
CHANGED
|
@@ -1397,6 +1397,8 @@ export * from './lib/WebTreeItemDescriptionModule';
|
|
|
1397
1397
|
export * from './lib/WebTreeDescriptionModule';
|
|
1398
1398
|
export * from './lib/WebTreeSelectionOptionsEventArgsDescription';
|
|
1399
1399
|
export * from './lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata';
|
|
1400
|
+
export * from './lib/WebTreeSelectionOptionsEventDetailDescription';
|
|
1401
|
+
export * from './lib/WebTreeSelectionOptionsEventDetailDescriptionMetadata';
|
|
1400
1402
|
export * from './lib/WebValueChangedEventArgsDescription';
|
|
1401
1403
|
export * from './lib/WebValueChangedEventArgsDescriptionMetadata';
|
|
1402
1404
|
export * from './lib/WrapperExpressionDescription';
|