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.
- package/bundles/igniteui-angular-core.umd.js +1063 -11
- package/bundles/igniteui-angular-core.umd.min.js +1 -1
- package/esm2015/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +2 -1
- package/esm2015/lib/FontDefaults.js +7 -7
- package/esm2015/lib/WebDropdownGroupDescriptionMetadata.js +1 -1
- package/esm2015/lib/WebExpansionPanelComponentEventArgsDescription.js +34 -0
- package/esm2015/lib/WebExpansionPanelComponentEventArgsDescriptionMetadata.js +7 -0
- package/esm2015/lib/WebExpansionPanelDescription.js +82 -0
- package/esm2015/lib/WebExpansionPanelDescriptionMetadata.js +7 -0
- package/esm2015/lib/WebExpansionPanelDescriptionMetadata_combined.js +77 -0
- package/esm2015/lib/WebExpansionPanelDescriptionModule.js +20 -0
- package/esm2015/lib/WebMaskInputDescription.js +71 -0
- package/esm2015/lib/WebMaskInputDescriptionMetadata.js +47 -0
- package/esm2015/lib/WebMaskInputDescriptionModule.js +22 -0
- package/esm2015/lib/WebTreeDescription.js +106 -0
- package/esm2015/lib/WebTreeDescriptionMetadata.js +54 -0
- package/esm2015/lib/WebTreeDescriptionModule.js +26 -0
- package/esm2015/lib/WebTreeItemComponentEventArgsDescription.js +34 -0
- package/esm2015/lib/WebTreeItemComponentEventArgsDescriptionMetadata.js +40 -0
- package/esm2015/lib/WebTreeItemDescription.js +106 -0
- package/esm2015/lib/WebTreeItemDescriptionMetadata.js +48 -0
- package/esm2015/lib/WebTreeItemDescriptionModule.js +20 -0
- package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescription.js +34 -0
- package/esm2015/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +38 -0
- package/esm2015/lib/igx-tooltip-container-component.js +3 -3
- package/esm2015/public_api.js +18 -0
- package/esm5/lib/CodeGeneratingComponentRendererCodeEmitter_combined.js +2 -1
- package/esm5/lib/FontDefaults.js +7 -7
- package/esm5/lib/WebDropdownGroupDescriptionMetadata.js +1 -1
- package/esm5/lib/WebExpansionPanelComponentEventArgsDescription.js +44 -0
- package/esm5/lib/WebExpansionPanelComponentEventArgsDescriptionMetadata.js +7 -0
- package/esm5/lib/WebExpansionPanelDescription.js +116 -0
- package/esm5/lib/WebExpansionPanelDescriptionMetadata.js +7 -0
- package/esm5/lib/WebExpansionPanelDescriptionMetadata_combined.js +84 -0
- package/esm5/lib/WebExpansionPanelDescriptionModule.js +24 -0
- package/esm5/lib/WebMaskInputDescription.js +97 -0
- package/esm5/lib/WebMaskInputDescriptionMetadata.js +51 -0
- package/esm5/lib/WebMaskInputDescriptionModule.js +26 -0
- package/esm5/lib/WebTreeDescription.js +152 -0
- package/esm5/lib/WebTreeDescriptionMetadata.js +58 -0
- package/esm5/lib/WebTreeDescriptionModule.js +30 -0
- package/esm5/lib/WebTreeItemComponentEventArgsDescription.js +44 -0
- package/esm5/lib/WebTreeItemComponentEventArgsDescriptionMetadata.js +44 -0
- package/esm5/lib/WebTreeItemDescription.js +152 -0
- package/esm5/lib/WebTreeItemDescriptionMetadata.js +52 -0
- package/esm5/lib/WebTreeItemDescriptionModule.js +24 -0
- package/esm5/lib/WebTreeSelectionOptionsEventArgsDescription.js +44 -0
- package/esm5/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.js +42 -0
- package/esm5/lib/igx-tooltip-container-component.js +2 -2
- package/esm5/public_api.js +18 -0
- package/fesm2015/igniteui-angular-core.js +857 -13
- package/fesm5/igniteui-angular-core.js +1046 -12
- package/lib/WebDropdownGroupDescription.d.ts +2 -2
- package/lib/WebExpansionPanelComponentEventArgsDescription.d.ts +15 -0
- package/lib/WebExpansionPanelComponentEventArgsDescriptionMetadata.d.ts +1 -0
- package/lib/WebExpansionPanelDescription.d.ts +32 -0
- package/lib/WebExpansionPanelDescriptionMetadata.d.ts +1 -0
- package/lib/WebExpansionPanelDescriptionMetadata_combined.d.ts +23 -0
- package/lib/WebExpansionPanelDescriptionModule.d.ts +9 -0
- package/lib/WebMaskInputDescription.d.ts +28 -0
- package/lib/WebMaskInputDescriptionMetadata.d.ts +13 -0
- package/lib/WebMaskInputDescriptionModule.d.ts +9 -0
- package/lib/WebTreeDescription.d.ts +41 -0
- package/lib/WebTreeDescriptionMetadata.d.ts +13 -0
- package/lib/WebTreeDescriptionModule.d.ts +9 -0
- package/lib/WebTreeItemComponentEventArgsDescription.d.ts +15 -0
- package/lib/WebTreeItemComponentEventArgsDescriptionMetadata.d.ts +13 -0
- package/lib/WebTreeItemDescription.d.ts +41 -0
- package/lib/WebTreeItemDescriptionMetadata.d.ts +13 -0
- package/lib/WebTreeItemDescriptionModule.d.ts +9 -0
- package/lib/WebTreeSelectionOptionsEventArgsDescription.d.ts +15 -0
- package/lib/WebTreeSelectionOptionsEventArgsDescriptionMetadata.d.ts +13 -0
- package/package.json +1 -1
- package/public_api.d.ts +18 -0
|
@@ -1431,8 +1431,9 @@ export let DotNetCodeGeneratingComponentRendererDataEmitter = /*@__PURE__*/ (()
|
|
|
1431
1431
|
e = " StateHasChanged();";
|
|
1432
1432
|
}
|
|
1433
1433
|
else {
|
|
1434
|
+
e = " OnPropertyChanged(\"" + this.v(a, false) + "\");";
|
|
1434
1435
|
}
|
|
1435
|
-
if (c.isAsync) {
|
|
1436
|
+
if (c != null && c.isAsync) {
|
|
1436
1437
|
d = this.v(a, false) + ".Fetch().ContinueWith((t) => {" + this.ao(a) + " = t.Result; " + e + " });";
|
|
1437
1438
|
}
|
|
1438
1439
|
this.g.k("private " + this.v(a, false) + " " + this.ao(a) + " = null;");
|
|
@@ -18,13 +18,13 @@ export let FontDefaults = /*@__PURE__*/ (() => {
|
|
|
18
18
|
}
|
|
19
19
|
FontDefaults.$t = markType(FontDefaults, 'FontDefaults');
|
|
20
20
|
FontDefaults.legendLabelsBrush = BrushUtil.g(255, 37, 37, 37);
|
|
21
|
-
FontDefaults.legendLabelsFontSizeConst =
|
|
22
|
-
FontDefaults.legendLabelsFontSize = DeviceUtils.f(
|
|
21
|
+
FontDefaults.legendLabelsFontSizeConst = 13;
|
|
22
|
+
FontDefaults.legendLabelsFontSize = DeviceUtils.f(13);
|
|
23
23
|
FontDefaults.legendLabelsFontConst = "Verdana";
|
|
24
24
|
FontDefaults.legendLabelsFontFamily = FontDefaults.aq("Verdana");
|
|
25
25
|
FontDefaults.dataLegendFontBrush = BrushUtil.g(255, 37, 37, 37);
|
|
26
|
-
FontDefaults.dataLegendFontSizeConst =
|
|
27
|
-
FontDefaults.dataLegendFontSize = DeviceUtils.f(
|
|
26
|
+
FontDefaults.dataLegendFontSizeConst = 13;
|
|
27
|
+
FontDefaults.dataLegendFontSize = DeviceUtils.f(13);
|
|
28
28
|
FontDefaults.dataLegendFontFamilyConst = "Verdana";
|
|
29
29
|
FontDefaults.dataLegendFontFamily = FontDefaults.aq("Verdana");
|
|
30
30
|
FontDefaults.dataLegendFontWeight = "400";
|
|
@@ -33,8 +33,8 @@ export let FontDefaults = /*@__PURE__*/ (() => {
|
|
|
33
33
|
FontDefaults.dataLegendFontVariant = "Normal";
|
|
34
34
|
FontDefaults.dataLegendHeaderFontWeight = "600";
|
|
35
35
|
FontDefaults.chartAxisLabelBrush = BrushUtil.g(255, 78, 78, 78);
|
|
36
|
-
FontDefaults.chartFontSizeConst =
|
|
37
|
-
FontDefaults.chartFontSize = DeviceUtils.f(
|
|
36
|
+
FontDefaults.chartFontSizeConst = 13;
|
|
37
|
+
FontDefaults.chartFontSize = DeviceUtils.f(13);
|
|
38
38
|
FontDefaults.chartFontNameConst = "Verdana";
|
|
39
39
|
FontDefaults.chartFontFamily = FontDefaults.aq("Verdana");
|
|
40
40
|
FontDefaults.chartFontWeight = "400";
|
|
@@ -50,7 +50,7 @@ export let FontDefaults = /*@__PURE__*/ (() => {
|
|
|
50
50
|
FontDefaults.chartSubtitleNameConst = "Verdana";
|
|
51
51
|
FontDefaults.chartSubtitleFontWeight = "600";
|
|
52
52
|
FontDefaults.tooltipLabelsBrush = BrushUtil.g(255, 78, 78, 78);
|
|
53
|
-
FontDefaults.tooltipLabelsFontSizeConst =
|
|
53
|
+
FontDefaults.tooltipLabelsFontSizeConst = 13;
|
|
54
54
|
FontDefaults.tooltipLabelsFontSize = DeviceUtils.f(FontDefaults.tooltipLabelsFontSizeConst);
|
|
55
55
|
FontDefaults.tooltipFontNameConst = "Verdana";
|
|
56
56
|
FontDefaults.tooltipLabelsFontFamily = FontDefaults.aq("Verdana");
|
|
@@ -26,7 +26,7 @@ export let WebDropdownGroupDescriptionMetadata = /*@__PURE__*/ (() => {
|
|
|
26
26
|
}
|
|
27
27
|
static c(a) {
|
|
28
28
|
a.item("__qualifiedNameTS", "String:DropdownGroup");
|
|
29
|
-
a.item("Items", "
|
|
29
|
+
a.item("Items", "Array:WebDropdownItemDescription:DropdownItem");
|
|
30
30
|
a.item("Size", "ExportedType:string:DropdownGroupSize");
|
|
31
31
|
a.item("Size@names", "Small;Medium;Large");
|
|
32
32
|
}
|
|
@@ -0,0 +1,34 @@
|
|
|
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 { Description } from "./Description";
|
|
8
|
+
import { markType } from "./type";
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
export let WebExpansionPanelComponentEventArgsDescription = /*@__PURE__*/ (() => {
|
|
13
|
+
class WebExpansionPanelComponentEventArgsDescription extends Description {
|
|
14
|
+
constructor() {
|
|
15
|
+
super();
|
|
16
|
+
this.f = null;
|
|
17
|
+
}
|
|
18
|
+
get_type() {
|
|
19
|
+
return "WebExpansionPanelComponentEventArgs";
|
|
20
|
+
}
|
|
21
|
+
get type() {
|
|
22
|
+
return this.get_type();
|
|
23
|
+
}
|
|
24
|
+
get detail() {
|
|
25
|
+
return this.f;
|
|
26
|
+
}
|
|
27
|
+
set detail(a) {
|
|
28
|
+
this.f = a;
|
|
29
|
+
this.e("Detail");
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
WebExpansionPanelComponentEventArgsDescription.$t = markType(WebExpansionPanelComponentEventArgsDescription, 'WebExpansionPanelComponentEventArgsDescription', Description.$);
|
|
33
|
+
return WebExpansionPanelComponentEventArgsDescription;
|
|
34
|
+
})();
|
|
@@ -0,0 +1,7 @@
|
|
|
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
|
+
export { WebExpansionPanelComponentEventArgsDescriptionMetadata } from "./WebExpansionPanelDescriptionMetadata_combined";
|
|
@@ -0,0 +1,82 @@
|
|
|
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 { Description } from "./Description";
|
|
8
|
+
import { markType } from "./type";
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
export let WebExpansionPanelDescription = /*@__PURE__*/ (() => {
|
|
13
|
+
class WebExpansionPanelDescription extends Description {
|
|
14
|
+
constructor() {
|
|
15
|
+
super();
|
|
16
|
+
this.g = false;
|
|
17
|
+
this.f = false;
|
|
18
|
+
this.l = null;
|
|
19
|
+
this.n = null;
|
|
20
|
+
this.m = null;
|
|
21
|
+
this.k = null;
|
|
22
|
+
this.j = null;
|
|
23
|
+
}
|
|
24
|
+
get_type() {
|
|
25
|
+
return "WebExpansionPanel";
|
|
26
|
+
}
|
|
27
|
+
get type() {
|
|
28
|
+
return this.get_type();
|
|
29
|
+
}
|
|
30
|
+
get open() {
|
|
31
|
+
return this.g;
|
|
32
|
+
}
|
|
33
|
+
set open(a) {
|
|
34
|
+
this.g = a;
|
|
35
|
+
this.e("Open");
|
|
36
|
+
}
|
|
37
|
+
get disabled() {
|
|
38
|
+
return this.f;
|
|
39
|
+
}
|
|
40
|
+
set disabled(a) {
|
|
41
|
+
this.f = a;
|
|
42
|
+
this.e("Disabled");
|
|
43
|
+
}
|
|
44
|
+
get indicatorPosition() {
|
|
45
|
+
return this.l;
|
|
46
|
+
}
|
|
47
|
+
set indicatorPosition(a) {
|
|
48
|
+
this.l = a;
|
|
49
|
+
this.e("IndicatorPosition");
|
|
50
|
+
}
|
|
51
|
+
get openingRef() {
|
|
52
|
+
return this.n;
|
|
53
|
+
}
|
|
54
|
+
set openingRef(a) {
|
|
55
|
+
this.n = a;
|
|
56
|
+
this.e("OpeningRef");
|
|
57
|
+
}
|
|
58
|
+
get openedRef() {
|
|
59
|
+
return this.m;
|
|
60
|
+
}
|
|
61
|
+
set openedRef(a) {
|
|
62
|
+
this.m = a;
|
|
63
|
+
this.e("OpenedRef");
|
|
64
|
+
}
|
|
65
|
+
get closingRef() {
|
|
66
|
+
return this.k;
|
|
67
|
+
}
|
|
68
|
+
set closingRef(a) {
|
|
69
|
+
this.k = a;
|
|
70
|
+
this.e("ClosingRef");
|
|
71
|
+
}
|
|
72
|
+
get closedRef() {
|
|
73
|
+
return this.j;
|
|
74
|
+
}
|
|
75
|
+
set closedRef(a) {
|
|
76
|
+
this.j = a;
|
|
77
|
+
this.e("ClosedRef");
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
WebExpansionPanelDescription.$t = markType(WebExpansionPanelDescription, 'WebExpansionPanelDescription', Description.$);
|
|
81
|
+
return WebExpansionPanelDescription;
|
|
82
|
+
})();
|
|
@@ -0,0 +1,7 @@
|
|
|
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
|
+
export { WebExpansionPanelDescriptionMetadata } from "./WebExpansionPanelDescriptionMetadata_combined";
|
|
@@ -0,0 +1,77 @@
|
|
|
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 { Base, String_$type, markType } from "./type";
|
|
8
|
+
import { Dictionary$2 } from "./Dictionary$2";
|
|
9
|
+
import { WebExpansionPanelDescription } from "./WebExpansionPanelDescription";
|
|
10
|
+
import { WebExpansionPanelComponentEventArgsDescription } from "./WebExpansionPanelComponentEventArgsDescription";
|
|
11
|
+
/**
|
|
12
|
+
* @hidden
|
|
13
|
+
*/
|
|
14
|
+
export let WebExpansionPanelDescriptionMetadata = /*@__PURE__*/ (() => {
|
|
15
|
+
class WebExpansionPanelDescriptionMetadata extends Base {
|
|
16
|
+
static b(a) {
|
|
17
|
+
if (WebExpansionPanelDescriptionMetadata.a == null) {
|
|
18
|
+
WebExpansionPanelDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
|
|
19
|
+
WebExpansionPanelDescriptionMetadata.c(WebExpansionPanelDescriptionMetadata.a);
|
|
20
|
+
}
|
|
21
|
+
if (a.g(WebExpansionPanelDescriptionMetadata.a)) {
|
|
22
|
+
return;
|
|
23
|
+
}
|
|
24
|
+
a.s(WebExpansionPanelDescriptionMetadata.a);
|
|
25
|
+
WebExpansionPanelComponentEventArgsDescriptionMetadata.d(a);
|
|
26
|
+
}
|
|
27
|
+
static c(a) {
|
|
28
|
+
a.item("__qualifiedNameTS", "String:ExpansionPanel");
|
|
29
|
+
a.item("Open", "Boolean");
|
|
30
|
+
a.item("Disabled", "Boolean");
|
|
31
|
+
a.item("IndicatorPosition", "ExportedType:string:ExpansionPanelIndicatorPosition");
|
|
32
|
+
a.item("IndicatorPosition@names", "Start;End;None");
|
|
33
|
+
a.item("OpeningRef", "EventRef::opening");
|
|
34
|
+
a.item("OpenedRef", "EventRef::opened");
|
|
35
|
+
a.item("ClosingRef", "EventRef::closing");
|
|
36
|
+
a.item("ClosedRef", "EventRef::closed");
|
|
37
|
+
}
|
|
38
|
+
static d(a) {
|
|
39
|
+
WebExpansionPanelDescriptionMetadata.b(a);
|
|
40
|
+
a.u("WebExpansionPanel", () => new WebExpansionPanelDescription());
|
|
41
|
+
a.t("WebExpansionPanel", WebExpansionPanelDescriptionMetadata.a);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
WebExpansionPanelDescriptionMetadata.$t = markType(WebExpansionPanelDescriptionMetadata, 'WebExpansionPanelDescriptionMetadata');
|
|
45
|
+
WebExpansionPanelDescriptionMetadata.a = null;
|
|
46
|
+
return WebExpansionPanelDescriptionMetadata;
|
|
47
|
+
})();
|
|
48
|
+
/**
|
|
49
|
+
* @hidden
|
|
50
|
+
*/
|
|
51
|
+
export let WebExpansionPanelComponentEventArgsDescriptionMetadata = /*@__PURE__*/ (() => {
|
|
52
|
+
class WebExpansionPanelComponentEventArgsDescriptionMetadata extends Base {
|
|
53
|
+
static b(a) {
|
|
54
|
+
if (WebExpansionPanelComponentEventArgsDescriptionMetadata.a == null) {
|
|
55
|
+
WebExpansionPanelComponentEventArgsDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
|
|
56
|
+
WebExpansionPanelComponentEventArgsDescriptionMetadata.c(WebExpansionPanelComponentEventArgsDescriptionMetadata.a);
|
|
57
|
+
}
|
|
58
|
+
if (a.g(WebExpansionPanelComponentEventArgsDescriptionMetadata.a)) {
|
|
59
|
+
return;
|
|
60
|
+
}
|
|
61
|
+
a.s(WebExpansionPanelComponentEventArgsDescriptionMetadata.a);
|
|
62
|
+
WebExpansionPanelDescriptionMetadata.d(a);
|
|
63
|
+
}
|
|
64
|
+
static c(a) {
|
|
65
|
+
a.item("__qualifiedNameTS", "String:ExpansionPanelComponentEventArgs");
|
|
66
|
+
a.item("Detail", "ExportedType:WebExpansionPanel");
|
|
67
|
+
}
|
|
68
|
+
static d(a) {
|
|
69
|
+
WebExpansionPanelComponentEventArgsDescriptionMetadata.b(a);
|
|
70
|
+
a.u("WebExpansionPanelComponentEventArgs", () => new WebExpansionPanelComponentEventArgsDescription());
|
|
71
|
+
a.t("WebExpansionPanelComponentEventArgs", WebExpansionPanelComponentEventArgsDescriptionMetadata.a);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
WebExpansionPanelComponentEventArgsDescriptionMetadata.$t = markType(WebExpansionPanelComponentEventArgsDescriptionMetadata, 'WebExpansionPanelComponentEventArgsDescriptionMetadata');
|
|
75
|
+
WebExpansionPanelComponentEventArgsDescriptionMetadata.a = null;
|
|
76
|
+
return WebExpansionPanelComponentEventArgsDescriptionMetadata;
|
|
77
|
+
})();
|
|
@@ -0,0 +1,20 @@
|
|
|
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 { Base, markType } from "./type";
|
|
8
|
+
import { WebExpansionPanelDescriptionMetadata } from "./WebExpansionPanelDescriptionMetadata";
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
export let WebExpansionPanelDescriptionModule = /*@__PURE__*/ (() => {
|
|
13
|
+
class WebExpansionPanelDescriptionModule extends Base {
|
|
14
|
+
static register(a) {
|
|
15
|
+
WebExpansionPanelDescriptionMetadata.d(a);
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
WebExpansionPanelDescriptionModule.$t = markType(WebExpansionPanelDescriptionModule, 'WebExpansionPanelDescriptionModule');
|
|
19
|
+
return WebExpansionPanelDescriptionModule;
|
|
20
|
+
})();
|
|
@@ -0,0 +1,71 @@
|
|
|
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 { WebInputBaseDescription } from "./WebInputBaseDescription";
|
|
8
|
+
import { markType } from "./type";
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
export let WebMaskInputDescription = /*@__PURE__*/ (() => {
|
|
13
|
+
class WebMaskInputDescription extends WebInputBaseDescription {
|
|
14
|
+
constructor() {
|
|
15
|
+
super();
|
|
16
|
+
this.ae = null;
|
|
17
|
+
this.ac = false;
|
|
18
|
+
this.ai = null;
|
|
19
|
+
this.ah = null;
|
|
20
|
+
this.af = null;
|
|
21
|
+
this.ag = null;
|
|
22
|
+
}
|
|
23
|
+
get_type() {
|
|
24
|
+
return "WebMaskInput";
|
|
25
|
+
}
|
|
26
|
+
get dir() {
|
|
27
|
+
return this.ae;
|
|
28
|
+
}
|
|
29
|
+
set dir(a) {
|
|
30
|
+
this.ae = a;
|
|
31
|
+
this.e("Dir");
|
|
32
|
+
}
|
|
33
|
+
get invalid() {
|
|
34
|
+
return this.ac;
|
|
35
|
+
}
|
|
36
|
+
set invalid(a) {
|
|
37
|
+
this.ac = a;
|
|
38
|
+
this.e("Invalid");
|
|
39
|
+
}
|
|
40
|
+
get valueMode() {
|
|
41
|
+
return this.ai;
|
|
42
|
+
}
|
|
43
|
+
set valueMode(a) {
|
|
44
|
+
this.ai = a;
|
|
45
|
+
this.e("ValueMode");
|
|
46
|
+
}
|
|
47
|
+
get value() {
|
|
48
|
+
return this.ah;
|
|
49
|
+
}
|
|
50
|
+
set value(a) {
|
|
51
|
+
this.ah = a;
|
|
52
|
+
this.e("Value");
|
|
53
|
+
}
|
|
54
|
+
get mask() {
|
|
55
|
+
return this.af;
|
|
56
|
+
}
|
|
57
|
+
set mask(a) {
|
|
58
|
+
this.af = a;
|
|
59
|
+
this.e("Mask");
|
|
60
|
+
}
|
|
61
|
+
get prompt() {
|
|
62
|
+
return this.ag;
|
|
63
|
+
}
|
|
64
|
+
set prompt(a) {
|
|
65
|
+
this.ag = a;
|
|
66
|
+
this.e("Prompt");
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
WebMaskInputDescription.$t = markType(WebMaskInputDescription, 'WebMaskInputDescription', WebInputBaseDescription.$);
|
|
70
|
+
return WebMaskInputDescription;
|
|
71
|
+
})();
|
|
@@ -0,0 +1,47 @@
|
|
|
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 { Base, String_$type, markType } from "./type";
|
|
8
|
+
import { Dictionary$2 } from "./Dictionary$2";
|
|
9
|
+
import { WebInputBaseDescriptionMetadata } from "./WebInputBaseDescriptionMetadata";
|
|
10
|
+
import { WebMaskInputDescription } from "./WebMaskInputDescription";
|
|
11
|
+
/**
|
|
12
|
+
* @hidden
|
|
13
|
+
*/
|
|
14
|
+
export let WebMaskInputDescriptionMetadata = /*@__PURE__*/ (() => {
|
|
15
|
+
class WebMaskInputDescriptionMetadata extends Base {
|
|
16
|
+
static b(a) {
|
|
17
|
+
if (WebMaskInputDescriptionMetadata.a == null) {
|
|
18
|
+
WebMaskInputDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
|
|
19
|
+
WebMaskInputDescriptionMetadata.c(WebMaskInputDescriptionMetadata.a);
|
|
20
|
+
}
|
|
21
|
+
if (a.g(WebMaskInputDescriptionMetadata.a)) {
|
|
22
|
+
return;
|
|
23
|
+
}
|
|
24
|
+
a.s(WebMaskInputDescriptionMetadata.a);
|
|
25
|
+
}
|
|
26
|
+
static c(a) {
|
|
27
|
+
WebInputBaseDescriptionMetadata.c(a);
|
|
28
|
+
a.item("__qualifiedNameTS", "String:MaskInput");
|
|
29
|
+
a.item("Dir", "ExportedType:string:MaskInputDir");
|
|
30
|
+
a.item("Dir@names", "Ltr;Rtl;Auto");
|
|
31
|
+
a.item("Invalid", "Boolean");
|
|
32
|
+
a.item("ValueMode", "ExportedType:string:MaskInputValueMode");
|
|
33
|
+
a.item("ValueMode@names", "Raw;WithFormatting");
|
|
34
|
+
a.item("Value", "String");
|
|
35
|
+
a.item("Mask", "String");
|
|
36
|
+
a.item("Prompt", "String");
|
|
37
|
+
}
|
|
38
|
+
static d(a) {
|
|
39
|
+
WebMaskInputDescriptionMetadata.b(a);
|
|
40
|
+
a.u("WebMaskInput", () => new WebMaskInputDescription());
|
|
41
|
+
a.t("WebMaskInput", WebMaskInputDescriptionMetadata.a);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
WebMaskInputDescriptionMetadata.$t = markType(WebMaskInputDescriptionMetadata, 'WebMaskInputDescriptionMetadata');
|
|
45
|
+
WebMaskInputDescriptionMetadata.a = null;
|
|
46
|
+
return WebMaskInputDescriptionMetadata;
|
|
47
|
+
})();
|
|
@@ -0,0 +1,22 @@
|
|
|
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 { Base, markType } from "./type";
|
|
8
|
+
import { WebInputBaseDescriptionModule } from "./WebInputBaseDescriptionModule";
|
|
9
|
+
import { WebMaskInputDescriptionMetadata } from "./WebMaskInputDescriptionMetadata";
|
|
10
|
+
/**
|
|
11
|
+
* @hidden
|
|
12
|
+
*/
|
|
13
|
+
export let WebMaskInputDescriptionModule = /*@__PURE__*/ (() => {
|
|
14
|
+
class WebMaskInputDescriptionModule extends Base {
|
|
15
|
+
static register(a) {
|
|
16
|
+
WebInputBaseDescriptionModule.register(a);
|
|
17
|
+
WebMaskInputDescriptionMetadata.d(a);
|
|
18
|
+
}
|
|
19
|
+
}
|
|
20
|
+
WebMaskInputDescriptionModule.$t = markType(WebMaskInputDescriptionModule, 'WebMaskInputDescriptionModule');
|
|
21
|
+
return WebMaskInputDescriptionModule;
|
|
22
|
+
})();
|
|
@@ -0,0 +1,106 @@
|
|
|
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 { Description } from "./Description";
|
|
8
|
+
import { markType } from "./type";
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
export let WebTreeDescription = /*@__PURE__*/ (() => {
|
|
13
|
+
class WebTreeDescription extends Description {
|
|
14
|
+
constructor() {
|
|
15
|
+
super();
|
|
16
|
+
this.f = false;
|
|
17
|
+
this.n = null;
|
|
18
|
+
this.i = null;
|
|
19
|
+
this.p = null;
|
|
20
|
+
this.o = null;
|
|
21
|
+
this.m = null;
|
|
22
|
+
this.l = null;
|
|
23
|
+
this.k = null;
|
|
24
|
+
this.j = null;
|
|
25
|
+
this.h = null;
|
|
26
|
+
}
|
|
27
|
+
get_type() {
|
|
28
|
+
return "WebTree";
|
|
29
|
+
}
|
|
30
|
+
get type() {
|
|
31
|
+
return this.get_type();
|
|
32
|
+
}
|
|
33
|
+
get singleBranchExpand() {
|
|
34
|
+
return this.f;
|
|
35
|
+
}
|
|
36
|
+
set singleBranchExpand(a) {
|
|
37
|
+
this.f = a;
|
|
38
|
+
this.e("SingleBranchExpand");
|
|
39
|
+
}
|
|
40
|
+
get selection() {
|
|
41
|
+
return this.n;
|
|
42
|
+
}
|
|
43
|
+
set selection(a) {
|
|
44
|
+
this.n = a;
|
|
45
|
+
this.e("Selection");
|
|
46
|
+
}
|
|
47
|
+
get dir() {
|
|
48
|
+
return this.i;
|
|
49
|
+
}
|
|
50
|
+
set dir(a) {
|
|
51
|
+
this.i = a;
|
|
52
|
+
this.e("Dir");
|
|
53
|
+
}
|
|
54
|
+
get size() {
|
|
55
|
+
return this.p;
|
|
56
|
+
}
|
|
57
|
+
set size(a) {
|
|
58
|
+
this.p = a;
|
|
59
|
+
this.e("Size");
|
|
60
|
+
}
|
|
61
|
+
get selectionChangedRef() {
|
|
62
|
+
return this.o;
|
|
63
|
+
}
|
|
64
|
+
set selectionChangedRef(a) {
|
|
65
|
+
this.o = a;
|
|
66
|
+
this.e("SelectionChangedRef");
|
|
67
|
+
}
|
|
68
|
+
get itemExpandingRef() {
|
|
69
|
+
return this.m;
|
|
70
|
+
}
|
|
71
|
+
set itemExpandingRef(a) {
|
|
72
|
+
this.m = a;
|
|
73
|
+
this.e("ItemExpandingRef");
|
|
74
|
+
}
|
|
75
|
+
get itemExpandedRef() {
|
|
76
|
+
return this.l;
|
|
77
|
+
}
|
|
78
|
+
set itemExpandedRef(a) {
|
|
79
|
+
this.l = a;
|
|
80
|
+
this.e("ItemExpandedRef");
|
|
81
|
+
}
|
|
82
|
+
get itemCollapsingRef() {
|
|
83
|
+
return this.k;
|
|
84
|
+
}
|
|
85
|
+
set itemCollapsingRef(a) {
|
|
86
|
+
this.k = a;
|
|
87
|
+
this.e("ItemCollapsingRef");
|
|
88
|
+
}
|
|
89
|
+
get itemCollapsedRef() {
|
|
90
|
+
return this.j;
|
|
91
|
+
}
|
|
92
|
+
set itemCollapsedRef(a) {
|
|
93
|
+
this.j = a;
|
|
94
|
+
this.e("ItemCollapsedRef");
|
|
95
|
+
}
|
|
96
|
+
get activeItemRef() {
|
|
97
|
+
return this.h;
|
|
98
|
+
}
|
|
99
|
+
set activeItemRef(a) {
|
|
100
|
+
this.h = a;
|
|
101
|
+
this.e("ActiveItemRef");
|
|
102
|
+
}
|
|
103
|
+
}
|
|
104
|
+
WebTreeDescription.$t = markType(WebTreeDescription, 'WebTreeDescription', Description.$);
|
|
105
|
+
return WebTreeDescription;
|
|
106
|
+
})();
|
|
@@ -0,0 +1,54 @@
|
|
|
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 { Base, String_$type, markType } from "./type";
|
|
8
|
+
import { Dictionary$2 } from "./Dictionary$2";
|
|
9
|
+
import { WebTreeSelectionOptionsEventArgsDescriptionMetadata } from "./WebTreeSelectionOptionsEventArgsDescriptionMetadata";
|
|
10
|
+
import { WebTreeItemComponentEventArgsDescriptionMetadata } from "./WebTreeItemComponentEventArgsDescriptionMetadata";
|
|
11
|
+
import { WebTreeDescription } from "./WebTreeDescription";
|
|
12
|
+
/**
|
|
13
|
+
* @hidden
|
|
14
|
+
*/
|
|
15
|
+
export let WebTreeDescriptionMetadata = /*@__PURE__*/ (() => {
|
|
16
|
+
class WebTreeDescriptionMetadata extends Base {
|
|
17
|
+
static b(a) {
|
|
18
|
+
if (WebTreeDescriptionMetadata.a == null) {
|
|
19
|
+
WebTreeDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
|
|
20
|
+
WebTreeDescriptionMetadata.c(WebTreeDescriptionMetadata.a);
|
|
21
|
+
}
|
|
22
|
+
if (a.g(WebTreeDescriptionMetadata.a)) {
|
|
23
|
+
return;
|
|
24
|
+
}
|
|
25
|
+
a.s(WebTreeDescriptionMetadata.a);
|
|
26
|
+
WebTreeSelectionOptionsEventArgsDescriptionMetadata.d(a);
|
|
27
|
+
WebTreeItemComponentEventArgsDescriptionMetadata.d(a);
|
|
28
|
+
}
|
|
29
|
+
static c(a) {
|
|
30
|
+
a.item("__qualifiedNameTS", "String:Tree");
|
|
31
|
+
a.item("SingleBranchExpand", "Boolean");
|
|
32
|
+
a.item("Selection", "ExportedType:string:TreeSelection");
|
|
33
|
+
a.item("Selection@names", "Multiple;None;Cascade");
|
|
34
|
+
a.item("Dir", "ExportedType:string:TreeDir");
|
|
35
|
+
a.item("Dir@names", "Ltr;Rtl;Auto");
|
|
36
|
+
a.item("Size", "ExportedType:string:SizableComponentSize");
|
|
37
|
+
a.item("Size@names", "Large;Small;Medium");
|
|
38
|
+
a.item("SelectionChangedRef", "EventRef::selectionChanged");
|
|
39
|
+
a.item("ItemExpandingRef", "EventRef::itemExpanding");
|
|
40
|
+
a.item("ItemExpandedRef", "EventRef::itemExpanded");
|
|
41
|
+
a.item("ItemCollapsingRef", "EventRef::itemCollapsing");
|
|
42
|
+
a.item("ItemCollapsedRef", "EventRef::itemCollapsed");
|
|
43
|
+
a.item("ActiveItemRef", "EventRef::activeItem");
|
|
44
|
+
}
|
|
45
|
+
static d(a) {
|
|
46
|
+
WebTreeDescriptionMetadata.b(a);
|
|
47
|
+
a.u("WebTree", () => new WebTreeDescription());
|
|
48
|
+
a.t("WebTree", WebTreeDescriptionMetadata.a);
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
WebTreeDescriptionMetadata.$t = markType(WebTreeDescriptionMetadata, 'WebTreeDescriptionMetadata');
|
|
52
|
+
WebTreeDescriptionMetadata.a = null;
|
|
53
|
+
return WebTreeDescriptionMetadata;
|
|
54
|
+
})();
|
|
@@ -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 { Base, markType } from "./type";
|
|
8
|
+
import { WebTreeItemDescriptionModule } from "./WebTreeItemDescriptionModule";
|
|
9
|
+
import { WebTreeDescriptionMetadata } from "./WebTreeDescriptionMetadata";
|
|
10
|
+
/**
|
|
11
|
+
* @hidden
|
|
12
|
+
*/
|
|
13
|
+
export let WebTreeDescriptionModule = /*@__PURE__*/ (() => {
|
|
14
|
+
class WebTreeDescriptionModule extends Base {
|
|
15
|
+
static register(a) {
|
|
16
|
+
WebTreeItemDescriptionModule.register(a);
|
|
17
|
+
WebTreeItemDescriptionModule.register(a);
|
|
18
|
+
WebTreeItemDescriptionModule.register(a);
|
|
19
|
+
WebTreeItemDescriptionModule.register(a);
|
|
20
|
+
WebTreeItemDescriptionModule.register(a);
|
|
21
|
+
WebTreeDescriptionMetadata.d(a);
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
WebTreeDescriptionModule.$t = markType(WebTreeDescriptionModule, 'WebTreeDescriptionModule');
|
|
25
|
+
return WebTreeDescriptionModule;
|
|
26
|
+
})();
|
|
@@ -0,0 +1,34 @@
|
|
|
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 { Description } from "./Description";
|
|
8
|
+
import { markType } from "./type";
|
|
9
|
+
/**
|
|
10
|
+
* @hidden
|
|
11
|
+
*/
|
|
12
|
+
export let WebTreeItemComponentEventArgsDescription = /*@__PURE__*/ (() => {
|
|
13
|
+
class WebTreeItemComponentEventArgsDescription extends Description {
|
|
14
|
+
constructor() {
|
|
15
|
+
super();
|
|
16
|
+
this.f = null;
|
|
17
|
+
}
|
|
18
|
+
get_type() {
|
|
19
|
+
return "WebTreeItemComponentEventArgs";
|
|
20
|
+
}
|
|
21
|
+
get type() {
|
|
22
|
+
return this.get_type();
|
|
23
|
+
}
|
|
24
|
+
get detail() {
|
|
25
|
+
return this.f;
|
|
26
|
+
}
|
|
27
|
+
set detail(a) {
|
|
28
|
+
this.f = a;
|
|
29
|
+
this.e("Detail");
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
WebTreeItemComponentEventArgsDescription.$t = markType(WebTreeItemComponentEventArgsDescription, 'WebTreeItemComponentEventArgsDescription', Description.$);
|
|
33
|
+
return WebTreeItemComponentEventArgsDescription;
|
|
34
|
+
})();
|