igniteui-angular-core 20.0.2-beta.2 → 20.1.0-beta.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 +448 -353
- package/bundles/igniteui-angular-core.umd.min.js +1 -1
- package/esm2015/lib/{AzureMapsMapImageryDescription.js → AzureMapsImageryDescription.js} +5 -5
- package/esm2015/lib/AzureMapsImageryDescriptionMetadata.js +45 -0
- package/esm2015/lib/{AzureMapsMapImageryDescriptionModule.js → AzureMapsImageryDescriptionModule.js} +6 -6
- package/esm2015/lib/BrushCollection.js +2 -2
- package/esm2015/lib/ComponentRenderer_combined.js +2 -2
- package/esm2015/lib/GridConditionalStylePropertyDescription.js +109 -53
- package/esm2015/lib/GridConditionalStylePropertyDescriptionMetadata.js +10 -1
- package/esm2015/lib/LegendBaseDescription.js +3 -3
- package/esm2015/lib/LegendBaseDescriptionMetadata.js +3 -3
- package/esm2015/lib/{LegendSizeChangedEventArgsDescription.js → LegendTextContentChangedEventArgsDescription.js} +5 -5
- package/esm2015/lib/LegendTextContentChangedEventArgsDescriptionMetadata.js +36 -0
- package/esm2015/lib/PlatformAPIHelper.js +16 -1
- package/esm2015/lib/XamMultiScaleImageView_combined.js +98 -110
- package/esm2015/public_api.js +5 -5
- package/esm5/lib/{AzureMapsMapImageryDescription.js → AzureMapsImageryDescription.js} +14 -14
- package/esm5/lib/AzureMapsImageryDescriptionMetadata.js +49 -0
- package/esm5/lib/{AzureMapsMapImageryDescriptionModule.js → AzureMapsImageryDescriptionModule.js} +9 -9
- package/esm5/lib/BrushCollection.js +2 -2
- package/esm5/lib/ComponentRenderer_combined.js +2 -2
- package/esm5/lib/GridConditionalStylePropertyDescription.js +135 -51
- package/esm5/lib/GridConditionalStylePropertyDescriptionMetadata.js +10 -1
- package/esm5/lib/LegendBaseDescription.js +2 -2
- package/esm5/lib/LegendBaseDescriptionMetadata.js +3 -3
- package/esm5/lib/{LegendSizeChangedEventArgsDescription.js → LegendTextContentChangedEventArgsDescription.js} +9 -9
- package/esm5/lib/LegendTextContentChangedEventArgsDescriptionMetadata.js +40 -0
- package/esm5/lib/PlatformAPIHelper.js +16 -1
- package/esm5/lib/XamMultiScaleImageView_combined.js +97 -109
- package/esm5/public_api.js +5 -5
- package/fesm2015/igniteui-angular-core.js +377 -310
- package/fesm5/igniteui-angular-core.js +444 -349
- package/lib/{AzureMapsMapImageryDescription.d.ts → AzureMapsImageryDescription.d.ts} +1 -1
- package/lib/{AzureMapsMapImageryDescriptionMetadata.d.ts → AzureMapsImageryDescriptionMetadata.d.ts} +1 -1
- package/lib/{AzureMapsMapImageryDescriptionModule.d.ts → AzureMapsImageryDescriptionModule.d.ts} +1 -1
- package/lib/ComponentRenderer_combined.d.ts +2 -2
- package/lib/GridConditionalStylePropertyDescription.d.ts +40 -18
- package/lib/IChartLegend.d.ts +1 -0
- package/lib/LegendBaseDescription.d.ts +2 -2
- package/lib/{LegendSizeChangedEventArgsDescription.d.ts → LegendTextContentChangedEventArgsDescription.d.ts} +1 -1
- package/lib/{LegendSizeChangedEventArgsDescriptionMetadata.d.ts → LegendTextContentChangedEventArgsDescriptionMetadata.d.ts} +1 -1
- package/lib/XamMultiScaleImageView_combined.d.ts +36 -40
- package/package.json +1 -1
- package/public_api.d.ts +5 -5
- package/esm2015/lib/AzureMapsMapImageryDescriptionMetadata.js +0 -45
- package/esm2015/lib/LegendSizeChangedEventArgsDescriptionMetadata.js +0 -36
- package/esm5/lib/AzureMapsMapImageryDescriptionMetadata.js +0 -49
- package/esm5/lib/LegendSizeChangedEventArgsDescriptionMetadata.js +0 -40
|
@@ -9,8 +9,8 @@ import { markType } from "./type";
|
|
|
9
9
|
/**
|
|
10
10
|
* @hidden
|
|
11
11
|
*/
|
|
12
|
-
export let
|
|
13
|
-
class
|
|
12
|
+
export let AzureMapsImageryDescription = /*@__PURE__*/ (() => {
|
|
13
|
+
class AzureMapsImageryDescription extends GeographicMapImageryDescription {
|
|
14
14
|
constructor() {
|
|
15
15
|
super();
|
|
16
16
|
this.ag = null;
|
|
@@ -21,7 +21,7 @@ export let AzureMapsMapImageryDescription = /*@__PURE__*/ (() => {
|
|
|
21
21
|
this.ac = new Date();
|
|
22
22
|
}
|
|
23
23
|
get_type() {
|
|
24
|
-
return "
|
|
24
|
+
return "AzureMapsImagery";
|
|
25
25
|
}
|
|
26
26
|
get cultureName() {
|
|
27
27
|
return this.ag;
|
|
@@ -66,6 +66,6 @@ export let AzureMapsMapImageryDescription = /*@__PURE__*/ (() => {
|
|
|
66
66
|
this.g("Timestamp");
|
|
67
67
|
}
|
|
68
68
|
}
|
|
69
|
-
|
|
70
|
-
return
|
|
69
|
+
AzureMapsImageryDescription.$t = markType(AzureMapsImageryDescription, 'AzureMapsImageryDescription', GeographicMapImageryDescription.$);
|
|
70
|
+
return AzureMapsImageryDescription;
|
|
71
71
|
})();
|
|
@@ -0,0 +1,45 @@
|
|
|
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 { GeographicMapImageryDescriptionMetadata } from "./GeographicMapImageryDescriptionMetadata";
|
|
10
|
+
import { AzureMapsImageryDescription } from "./AzureMapsImageryDescription";
|
|
11
|
+
/**
|
|
12
|
+
* @hidden
|
|
13
|
+
*/
|
|
14
|
+
export let AzureMapsImageryDescriptionMetadata = /*@__PURE__*/ (() => {
|
|
15
|
+
class AzureMapsImageryDescriptionMetadata extends Base {
|
|
16
|
+
static b(a) {
|
|
17
|
+
if (AzureMapsImageryDescriptionMetadata.a == null) {
|
|
18
|
+
AzureMapsImageryDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
|
|
19
|
+
AzureMapsImageryDescriptionMetadata.c(AzureMapsImageryDescriptionMetadata.a);
|
|
20
|
+
}
|
|
21
|
+
if (a.k(AzureMapsImageryDescriptionMetadata.a)) {
|
|
22
|
+
return;
|
|
23
|
+
}
|
|
24
|
+
a.ac(AzureMapsImageryDescriptionMetadata.a);
|
|
25
|
+
}
|
|
26
|
+
static c(a) {
|
|
27
|
+
GeographicMapImageryDescriptionMetadata.c(a);
|
|
28
|
+
a.item("CultureName", "String");
|
|
29
|
+
a.item("ApiKey", "String");
|
|
30
|
+
a.item("ApiVersion", "String");
|
|
31
|
+
a.item("ImageryStyle", "ExportedType:string:AzureMapsImageryStyle");
|
|
32
|
+
a.item("ImageryStyle@names", "Road;Satellite;DarkGrey;LabelsRoadOverlay;LabelsDarkGreyOverlay;HybridRoadOverlay;HybridDarkGreyOverlay;TerraOverlay;WeatherRadarOverlay;WeatherInfraredOverlay;TrafficAbsoluteOverlay;TrafficRelativeOverlay;TrafficRelativeDarkOverlay;TrafficDelayOverlay;TrafficReducedOverlay");
|
|
33
|
+
a.item("LocalizedView", "String");
|
|
34
|
+
a.item("Timestamp", "Date");
|
|
35
|
+
}
|
|
36
|
+
static d(a) {
|
|
37
|
+
AzureMapsImageryDescriptionMetadata.b(a);
|
|
38
|
+
a.ae("AzureMapsImagery", () => new AzureMapsImageryDescription());
|
|
39
|
+
a.ad("AzureMapsImagery", AzureMapsImageryDescriptionMetadata.a);
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
AzureMapsImageryDescriptionMetadata.$t = markType(AzureMapsImageryDescriptionMetadata, 'AzureMapsImageryDescriptionMetadata');
|
|
43
|
+
AzureMapsImageryDescriptionMetadata.a = null;
|
|
44
|
+
return AzureMapsImageryDescriptionMetadata;
|
|
45
|
+
})();
|
package/esm2015/lib/{AzureMapsMapImageryDescriptionModule.js → AzureMapsImageryDescriptionModule.js}
RENAMED
|
@@ -5,16 +5,16 @@ https://www.infragistics.com/legal/license/igultimate-eula
|
|
|
5
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
6
|
*/
|
|
7
7
|
import { Base, markType } from "./type";
|
|
8
|
-
import {
|
|
8
|
+
import { AzureMapsImageryDescriptionMetadata } from "./AzureMapsImageryDescriptionMetadata";
|
|
9
9
|
/**
|
|
10
10
|
* @hidden
|
|
11
11
|
*/
|
|
12
|
-
export let
|
|
13
|
-
class
|
|
12
|
+
export let AzureMapsImageryDescriptionModule = /*@__PURE__*/ (() => {
|
|
13
|
+
class AzureMapsImageryDescriptionModule extends Base {
|
|
14
14
|
static register(a) {
|
|
15
|
-
|
|
15
|
+
AzureMapsImageryDescriptionMetadata.d(a);
|
|
16
16
|
}
|
|
17
17
|
}
|
|
18
|
-
|
|
19
|
-
return
|
|
18
|
+
AzureMapsImageryDescriptionModule.$t = markType(AzureMapsImageryDescriptionModule, 'AzureMapsImageryDescriptionModule');
|
|
19
|
+
return AzureMapsImageryDescriptionModule;
|
|
20
20
|
})();
|
|
@@ -8,7 +8,7 @@ import { ObservableCollection$1 } from "./ObservableCollection$1";
|
|
|
8
8
|
import { Brush } from "./Brush";
|
|
9
9
|
import { NotifyCollectionChangedEventArgs } from "./NotifyCollectionChangedEventArgs";
|
|
10
10
|
import { Random } from "./Random";
|
|
11
|
-
import { markType } from "./type";
|
|
11
|
+
import { typeCast, markType } from "./type";
|
|
12
12
|
/**
|
|
13
13
|
* @hidden
|
|
14
14
|
*/
|
|
@@ -43,7 +43,7 @@ export let BrushCollection = /*@__PURE__*/ (() => {
|
|
|
43
43
|
}
|
|
44
44
|
}
|
|
45
45
|
equals(a) {
|
|
46
|
-
if (a == null) {
|
|
46
|
+
if (a == null || !(typeCast(BrushCollection.$, a) !== null)) {
|
|
47
47
|
return false;
|
|
48
48
|
}
|
|
49
49
|
let b = a;
|
|
@@ -892,7 +892,7 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
892
892
|
let g = f.k(ComponentRenderer.platform);
|
|
893
893
|
this.adapter.setPropertyValue(c, g, f, d, e, null);
|
|
894
894
|
}
|
|
895
|
-
|
|
895
|
+
executeMethod(a, b, c) {
|
|
896
896
|
let d = new JsonDictionaryParser();
|
|
897
897
|
let e = d.parse(b);
|
|
898
898
|
if (!this.ba.containsKey(a)) {
|
|
@@ -956,7 +956,7 @@ export let ComponentRenderer = /*@__PURE__*/ (() => {
|
|
|
956
956
|
});
|
|
957
957
|
}
|
|
958
958
|
}
|
|
959
|
-
|
|
959
|
+
executeMethodWithBuilder(a, b, c) {
|
|
960
960
|
let d = new JsonDictionaryParser();
|
|
961
961
|
if (!this.ba.containsKey(a)) {
|
|
962
962
|
this.ba.item(a, new ContainerState());
|
|
@@ -13,32 +13,39 @@ export let GridConditionalStylePropertyDescription = /*@__PURE__*/ (() => {
|
|
|
13
13
|
class GridConditionalStylePropertyDescription extends Description {
|
|
14
14
|
constructor() {
|
|
15
15
|
super();
|
|
16
|
-
this.
|
|
17
|
-
this.
|
|
18
|
-
this.
|
|
19
|
-
this.
|
|
16
|
+
this.a0 = null;
|
|
17
|
+
this.ax = null;
|
|
18
|
+
this.at = null;
|
|
19
|
+
this.ay = null;
|
|
20
20
|
this.n = null;
|
|
21
|
-
this.
|
|
21
|
+
this.ap = null;
|
|
22
22
|
this.j = null;
|
|
23
23
|
this.p = null;
|
|
24
|
-
this.
|
|
24
|
+
this.av = null;
|
|
25
25
|
this.l = null;
|
|
26
26
|
this.o = null;
|
|
27
|
-
this.
|
|
27
|
+
this.ar = null;
|
|
28
28
|
this.k = null;
|
|
29
29
|
this.q = null;
|
|
30
|
-
this.
|
|
30
|
+
this.a1 = null;
|
|
31
31
|
this.m = null;
|
|
32
|
+
this.ah = 0;
|
|
33
|
+
this.aj = 0;
|
|
34
|
+
this.ab = false;
|
|
35
|
+
this.af = new Date();
|
|
36
|
+
this.z = null;
|
|
37
|
+
this.al = null;
|
|
38
|
+
this.az = null;
|
|
39
|
+
this.an = null;
|
|
40
|
+
this.ac = false;
|
|
41
|
+
this.au = null;
|
|
32
42
|
this.aq = null;
|
|
33
|
-
this.
|
|
34
|
-
this.
|
|
35
|
-
this.
|
|
36
|
-
this.aj = null;
|
|
37
|
-
this.af = null;
|
|
38
|
-
this.ao = null;
|
|
43
|
+
this.aw = null;
|
|
44
|
+
this.as = null;
|
|
45
|
+
this.a2 = null;
|
|
39
46
|
this.h = null;
|
|
40
|
-
this.
|
|
41
|
-
this.
|
|
47
|
+
this.a3 = null;
|
|
48
|
+
this.ao = null;
|
|
42
49
|
}
|
|
43
50
|
get_type() {
|
|
44
51
|
return "GridConditionalStyleProperty";
|
|
@@ -47,31 +54,31 @@ export let GridConditionalStylePropertyDescription = /*@__PURE__*/ (() => {
|
|
|
47
54
|
return this.get_type();
|
|
48
55
|
}
|
|
49
56
|
get stylingType() {
|
|
50
|
-
return this.
|
|
57
|
+
return this.a0;
|
|
51
58
|
}
|
|
52
59
|
set stylingType(a) {
|
|
53
|
-
this.
|
|
60
|
+
this.a0 = a;
|
|
54
61
|
this.g("StylingType");
|
|
55
62
|
}
|
|
56
63
|
get minimumType() {
|
|
57
|
-
return this.
|
|
64
|
+
return this.ax;
|
|
58
65
|
}
|
|
59
66
|
set minimumType(a) {
|
|
60
|
-
this.
|
|
67
|
+
this.ax = a;
|
|
61
68
|
this.g("MinimumType");
|
|
62
69
|
}
|
|
63
70
|
get maximumType() {
|
|
64
|
-
return this.
|
|
71
|
+
return this.at;
|
|
65
72
|
}
|
|
66
73
|
set maximumType(a) {
|
|
67
|
-
this.
|
|
74
|
+
this.at = a;
|
|
68
75
|
this.g("MaximumType");
|
|
69
76
|
}
|
|
70
77
|
get propertyName() {
|
|
71
|
-
return this.
|
|
78
|
+
return this.ay;
|
|
72
79
|
}
|
|
73
80
|
set propertyName(a) {
|
|
74
|
-
this.
|
|
81
|
+
this.ay = a;
|
|
75
82
|
this.g("PropertyName");
|
|
76
83
|
}
|
|
77
84
|
get inputValueExpression() {
|
|
@@ -82,10 +89,10 @@ export let GridConditionalStylePropertyDescription = /*@__PURE__*/ (() => {
|
|
|
82
89
|
this.g("InputValueExpression");
|
|
83
90
|
}
|
|
84
91
|
get inputValueExpressionString() {
|
|
85
|
-
return this.
|
|
92
|
+
return this.ap;
|
|
86
93
|
}
|
|
87
94
|
set inputValueExpressionString(a) {
|
|
88
|
-
this.
|
|
95
|
+
this.ap = a;
|
|
89
96
|
this.g("InputValueExpressionString");
|
|
90
97
|
}
|
|
91
98
|
get actualInputValueExpression() {
|
|
@@ -103,10 +110,10 @@ export let GridConditionalStylePropertyDescription = /*@__PURE__*/ (() => {
|
|
|
103
110
|
this.g("MinimumInputValueExpression");
|
|
104
111
|
}
|
|
105
112
|
get minimumInputValueExpressionString() {
|
|
106
|
-
return this.
|
|
113
|
+
return this.av;
|
|
107
114
|
}
|
|
108
115
|
set minimumInputValueExpressionString(a) {
|
|
109
|
-
this.
|
|
116
|
+
this.av = a;
|
|
110
117
|
this.g("MinimumInputValueExpressionString");
|
|
111
118
|
}
|
|
112
119
|
get actualMinimumInputValueExpression() {
|
|
@@ -124,10 +131,10 @@ export let GridConditionalStylePropertyDescription = /*@__PURE__*/ (() => {
|
|
|
124
131
|
this.g("MaximumInputValueExpression");
|
|
125
132
|
}
|
|
126
133
|
get maximumInputValueExpressionString() {
|
|
127
|
-
return this.
|
|
134
|
+
return this.ar;
|
|
128
135
|
}
|
|
129
136
|
set maximumInputValueExpressionString(a) {
|
|
130
|
-
this.
|
|
137
|
+
this.ar = a;
|
|
131
138
|
this.g("MaximumInputValueExpressionString");
|
|
132
139
|
}
|
|
133
140
|
get actualMaximumInputValueExpression() {
|
|
@@ -145,10 +152,10 @@ export let GridConditionalStylePropertyDescription = /*@__PURE__*/ (() => {
|
|
|
145
152
|
this.g("SumInputValueExpression");
|
|
146
153
|
}
|
|
147
154
|
get sumInputValueExpressionString() {
|
|
148
|
-
return this.
|
|
155
|
+
return this.a1;
|
|
149
156
|
}
|
|
150
157
|
set sumInputValueExpressionString(a) {
|
|
151
|
-
this.
|
|
158
|
+
this.a1 = a;
|
|
152
159
|
this.g("SumInputValueExpressionString");
|
|
153
160
|
}
|
|
154
161
|
get actualSumInputValueExpression() {
|
|
@@ -158,53 +165,102 @@ export let GridConditionalStylePropertyDescription = /*@__PURE__*/ (() => {
|
|
|
158
165
|
this.m = a;
|
|
159
166
|
this.g("ActualSumInputValueExpression");
|
|
160
167
|
}
|
|
161
|
-
get
|
|
162
|
-
return this.
|
|
168
|
+
get doubleValue() {
|
|
169
|
+
return this.ah;
|
|
163
170
|
}
|
|
164
|
-
set
|
|
165
|
-
this.
|
|
166
|
-
this.g("
|
|
171
|
+
set doubleValue(a) {
|
|
172
|
+
this.ah = a;
|
|
173
|
+
this.g("DoubleValue");
|
|
167
174
|
}
|
|
168
|
-
get
|
|
175
|
+
get intValue() {
|
|
176
|
+
return this.aj;
|
|
177
|
+
}
|
|
178
|
+
set intValue(a) {
|
|
179
|
+
this.aj = a;
|
|
180
|
+
this.g("IntValue");
|
|
181
|
+
}
|
|
182
|
+
get boolValue() {
|
|
183
|
+
return this.ab;
|
|
184
|
+
}
|
|
185
|
+
set boolValue(a) {
|
|
186
|
+
this.ab = a;
|
|
187
|
+
this.g("BoolValue");
|
|
188
|
+
}
|
|
189
|
+
get dateValue() {
|
|
190
|
+
return this.af;
|
|
191
|
+
}
|
|
192
|
+
set dateValue(a) {
|
|
193
|
+
this.af = a;
|
|
194
|
+
this.g("DateValue");
|
|
195
|
+
}
|
|
196
|
+
get fontValue() {
|
|
169
197
|
return this.z;
|
|
170
198
|
}
|
|
171
|
-
set
|
|
199
|
+
set fontValue(a) {
|
|
172
200
|
this.z = a;
|
|
201
|
+
this.g("FontValue");
|
|
202
|
+
}
|
|
203
|
+
get objectValue() {
|
|
204
|
+
return this.al;
|
|
205
|
+
}
|
|
206
|
+
set objectValue(a) {
|
|
207
|
+
this.al = a;
|
|
208
|
+
this.g("ObjectValue");
|
|
209
|
+
}
|
|
210
|
+
get stringValue() {
|
|
211
|
+
return this.az;
|
|
212
|
+
}
|
|
213
|
+
set stringValue(a) {
|
|
214
|
+
this.az = a;
|
|
215
|
+
this.g("StringValue");
|
|
216
|
+
}
|
|
217
|
+
get brushValue() {
|
|
218
|
+
return this.an;
|
|
219
|
+
}
|
|
220
|
+
set brushValue(a) {
|
|
221
|
+
this.an = a;
|
|
222
|
+
this.g("BrushValue");
|
|
223
|
+
}
|
|
224
|
+
get shouldSetValue() {
|
|
225
|
+
return this.ac;
|
|
226
|
+
}
|
|
227
|
+
set shouldSetValue(a) {
|
|
228
|
+
this.ac = a;
|
|
173
229
|
this.g("ShouldSetValue");
|
|
174
230
|
}
|
|
175
231
|
get minimumColor() {
|
|
176
|
-
return this.
|
|
232
|
+
return this.au;
|
|
177
233
|
}
|
|
178
234
|
set minimumColor(a) {
|
|
179
|
-
this.
|
|
235
|
+
this.au = a;
|
|
180
236
|
this.g("MinimumColor");
|
|
181
237
|
}
|
|
182
238
|
get maximumColor() {
|
|
183
|
-
return this.
|
|
239
|
+
return this.aq;
|
|
184
240
|
}
|
|
185
241
|
set maximumColor(a) {
|
|
186
|
-
this.
|
|
242
|
+
this.aq = a;
|
|
187
243
|
this.g("MaximumColor");
|
|
188
244
|
}
|
|
189
245
|
get minimumInputValueRef() {
|
|
190
|
-
return this.
|
|
246
|
+
return this.aw;
|
|
191
247
|
}
|
|
192
248
|
set minimumInputValueRef(a) {
|
|
193
|
-
this.
|
|
249
|
+
this.aw = a;
|
|
194
250
|
this.g("MinimumInputValueRef");
|
|
195
251
|
}
|
|
196
252
|
get maximumInputValueRef() {
|
|
197
|
-
return this.
|
|
253
|
+
return this.as;
|
|
198
254
|
}
|
|
199
255
|
set maximumInputValueRef(a) {
|
|
200
|
-
this.
|
|
256
|
+
this.as = a;
|
|
201
257
|
this.g("MaximumInputValueRef");
|
|
202
258
|
}
|
|
203
259
|
get sumInputValueRef() {
|
|
204
|
-
return this.
|
|
260
|
+
return this.a2;
|
|
205
261
|
}
|
|
206
262
|
set sumInputValueRef(a) {
|
|
207
|
-
this.
|
|
263
|
+
this.a2 = a;
|
|
208
264
|
this.g("SumInputValueRef");
|
|
209
265
|
}
|
|
210
266
|
get colorCollection() {
|
|
@@ -215,17 +271,17 @@ export let GridConditionalStylePropertyDescription = /*@__PURE__*/ (() => {
|
|
|
215
271
|
this.g("ColorCollection");
|
|
216
272
|
}
|
|
217
273
|
get valueCollectionRef() {
|
|
218
|
-
return this.
|
|
274
|
+
return this.a3;
|
|
219
275
|
}
|
|
220
276
|
set valueCollectionRef(a) {
|
|
221
|
-
this.
|
|
277
|
+
this.a3 = a;
|
|
222
278
|
this.g("ValueCollectionRef");
|
|
223
279
|
}
|
|
224
280
|
get filterStringErrorsParsingRef() {
|
|
225
|
-
return this.
|
|
281
|
+
return this.ao;
|
|
226
282
|
}
|
|
227
283
|
set filterStringErrorsParsingRef(a) {
|
|
228
|
-
this.
|
|
284
|
+
this.ao = a;
|
|
229
285
|
this.g("FilterStringErrorsParsingRef");
|
|
230
286
|
}
|
|
231
287
|
}
|
|
@@ -7,6 +7,7 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
|
|
|
7
7
|
import { Base, String_$type, markType } from "./type";
|
|
8
8
|
import { Dictionary$2 } from "./Dictionary$2";
|
|
9
9
|
import { FilterExpressionDescriptionMetadata } from "./FilterExpressionDescriptionMetadata";
|
|
10
|
+
import { GridConditionalStyleFontInfoDescriptionMetadata } from "./GridConditionalStyleFontInfoDescriptionMetadata";
|
|
10
11
|
import { GridConditionFilterStringErrorsParsingEventArgsDescriptionMetadata } from "./GridConditionFilterStringErrorsParsingEventArgsDescriptionMetadata";
|
|
11
12
|
import { GridConditionalStylePropertyDescription } from "./GridConditionalStylePropertyDescription";
|
|
12
13
|
/**
|
|
@@ -24,6 +25,7 @@ export let GridConditionalStylePropertyDescriptionMetadata = /*@__PURE__*/ (() =
|
|
|
24
25
|
}
|
|
25
26
|
a.ac(GridConditionalStylePropertyDescriptionMetadata.a);
|
|
26
27
|
FilterExpressionDescriptionMetadata.d(a);
|
|
28
|
+
GridConditionalStyleFontInfoDescriptionMetadata.d(a);
|
|
27
29
|
GridConditionFilterStringErrorsParsingEventArgsDescriptionMetadata.d(a);
|
|
28
30
|
}
|
|
29
31
|
static c(a) {
|
|
@@ -46,7 +48,14 @@ export let GridConditionalStylePropertyDescriptionMetadata = /*@__PURE__*/ (() =
|
|
|
46
48
|
a.item("SumInputValueExpression", "ExportedType:IFilterExpression");
|
|
47
49
|
a.item("SumInputValueExpressionString", "String");
|
|
48
50
|
a.item("ActualSumInputValueExpression", "ExportedType:IFilterExpression");
|
|
49
|
-
a.item("
|
|
51
|
+
a.item("DoubleValue", "Number:double");
|
|
52
|
+
a.item("IntValue", "Number:int");
|
|
53
|
+
a.item("BoolValue", "Boolean");
|
|
54
|
+
a.item("DateValue", "Date");
|
|
55
|
+
a.item("FontValue", "ExportedType:GridConditionalStyleFontInfo");
|
|
56
|
+
a.item("ObjectValue", "Unknown");
|
|
57
|
+
a.item("StringValue", "String");
|
|
58
|
+
a.item("BrushValue", "Brush");
|
|
50
59
|
a.item("ShouldSetValue", "Boolean");
|
|
51
60
|
a.item("MinimumColor", "Brush");
|
|
52
61
|
a.item("MaximumColor", "Brush");
|
|
@@ -69,12 +69,12 @@ export let LegendBaseDescription = /*@__PURE__*/ (() => {
|
|
|
69
69
|
this.m = a;
|
|
70
70
|
this.g("LegendItemMouseMoveRef");
|
|
71
71
|
}
|
|
72
|
-
get
|
|
72
|
+
get legendTextContentChangedRef() {
|
|
73
73
|
return this.n;
|
|
74
74
|
}
|
|
75
|
-
set
|
|
75
|
+
set legendTextContentChangedRef(a) {
|
|
76
76
|
this.n = a;
|
|
77
|
-
this.g("
|
|
77
|
+
this.g("LegendTextContentChangedRef");
|
|
78
78
|
}
|
|
79
79
|
}
|
|
80
80
|
LegendBaseDescription.$t = markType(LegendBaseDescription, 'LegendBaseDescription', Description.$);
|
|
@@ -8,7 +8,7 @@ import { Base, String_$type, markType } from "./type";
|
|
|
8
8
|
import { Dictionary$2 } from "./Dictionary$2";
|
|
9
9
|
import { LegendMouseButtonEventArgsDescriptionMetadata } from "./LegendMouseButtonEventArgsDescriptionMetadata";
|
|
10
10
|
import { LegendMouseEventArgsDescriptionMetadata } from "./LegendMouseEventArgsDescriptionMetadata";
|
|
11
|
-
import {
|
|
11
|
+
import { LegendTextContentChangedEventArgsDescriptionMetadata } from "./LegendTextContentChangedEventArgsDescriptionMetadata";
|
|
12
12
|
/**
|
|
13
13
|
* @hidden
|
|
14
14
|
*/
|
|
@@ -28,7 +28,7 @@ export let LegendBaseDescriptionMetadata = /*@__PURE__*/ (() => {
|
|
|
28
28
|
a.ac(LegendBaseDescriptionMetadata.a);
|
|
29
29
|
LegendMouseButtonEventArgsDescriptionMetadata.d(a);
|
|
30
30
|
LegendMouseEventArgsDescriptionMetadata.d(a);
|
|
31
|
-
|
|
31
|
+
LegendTextContentChangedEventArgsDescriptionMetadata.d(a);
|
|
32
32
|
}
|
|
33
33
|
static c(a) {
|
|
34
34
|
a.item("LegendItemMouseLeftButtonDownRef", "EventRef::legendItemMouseLeftButtonDown");
|
|
@@ -36,7 +36,7 @@ export let LegendBaseDescriptionMetadata = /*@__PURE__*/ (() => {
|
|
|
36
36
|
a.item("LegendItemMouseEnterRef", "EventRef::legendItemMouseEnter");
|
|
37
37
|
a.item("LegendItemMouseLeaveRef", "EventRef::legendItemMouseLeave");
|
|
38
38
|
a.item("LegendItemMouseMoveRef", "EventRef::legendItemMouseMove");
|
|
39
|
-
a.item("
|
|
39
|
+
a.item("LegendTextContentChangedRef", "EventRef::legendTextContentChanged");
|
|
40
40
|
LegendBaseDescriptionMetadata.e(a);
|
|
41
41
|
}
|
|
42
42
|
static d(a) {
|
|
@@ -9,18 +9,18 @@ import { markType } from "./type";
|
|
|
9
9
|
/**
|
|
10
10
|
* @hidden
|
|
11
11
|
*/
|
|
12
|
-
export let
|
|
13
|
-
class
|
|
12
|
+
export let LegendTextContentChangedEventArgsDescription = /*@__PURE__*/ (() => {
|
|
13
|
+
class LegendTextContentChangedEventArgsDescription extends Description {
|
|
14
14
|
constructor() {
|
|
15
15
|
super();
|
|
16
16
|
}
|
|
17
17
|
get_type() {
|
|
18
|
-
return "
|
|
18
|
+
return "LegendTextContentChangedEventArgs";
|
|
19
19
|
}
|
|
20
20
|
get type() {
|
|
21
21
|
return this.get_type();
|
|
22
22
|
}
|
|
23
23
|
}
|
|
24
|
-
|
|
25
|
-
return
|
|
24
|
+
LegendTextContentChangedEventArgsDescription.$t = markType(LegendTextContentChangedEventArgsDescription, 'LegendTextContentChangedEventArgsDescription', Description.$);
|
|
25
|
+
return LegendTextContentChangedEventArgsDescription;
|
|
26
26
|
})();
|
|
@@ -0,0 +1,36 @@
|
|
|
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 { LegendTextContentChangedEventArgsDescription } from "./LegendTextContentChangedEventArgsDescription";
|
|
10
|
+
/**
|
|
11
|
+
* @hidden
|
|
12
|
+
*/
|
|
13
|
+
export let LegendTextContentChangedEventArgsDescriptionMetadata = /*@__PURE__*/ (() => {
|
|
14
|
+
class LegendTextContentChangedEventArgsDescriptionMetadata extends Base {
|
|
15
|
+
static b(a) {
|
|
16
|
+
if (LegendTextContentChangedEventArgsDescriptionMetadata.a == null) {
|
|
17
|
+
LegendTextContentChangedEventArgsDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
|
|
18
|
+
LegendTextContentChangedEventArgsDescriptionMetadata.c(LegendTextContentChangedEventArgsDescriptionMetadata.a);
|
|
19
|
+
}
|
|
20
|
+
if (a.k(LegendTextContentChangedEventArgsDescriptionMetadata.a)) {
|
|
21
|
+
return;
|
|
22
|
+
}
|
|
23
|
+
a.ac(LegendTextContentChangedEventArgsDescriptionMetadata.a);
|
|
24
|
+
}
|
|
25
|
+
static c(a) {
|
|
26
|
+
}
|
|
27
|
+
static d(a) {
|
|
28
|
+
LegendTextContentChangedEventArgsDescriptionMetadata.b(a);
|
|
29
|
+
a.ae("LegendTextContentChangedEventArgs", () => new LegendTextContentChangedEventArgsDescription());
|
|
30
|
+
a.ad("LegendTextContentChangedEventArgs", LegendTextContentChangedEventArgsDescriptionMetadata.a);
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
LegendTextContentChangedEventArgsDescriptionMetadata.$t = markType(LegendTextContentChangedEventArgsDescriptionMetadata, 'LegendTextContentChangedEventArgsDescriptionMetadata');
|
|
34
|
+
LegendTextContentChangedEventArgsDescriptionMetadata.a = null;
|
|
35
|
+
return LegendTextContentChangedEventArgsDescriptionMetadata;
|
|
36
|
+
})();
|
|
@@ -4,7 +4,7 @@ https://www.infragistics.com/legal/license/igultimate-la
|
|
|
4
4
|
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
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
6
|
*/
|
|
7
|
-
import { Base, toNullable, Point_$type, Number_$type, markType, PointUtil } from "./type";
|
|
7
|
+
import { Base, toNullable, Point_$type, Number_$type, markType, PointUtil, getInstanceType } from "./type";
|
|
8
8
|
import { Brush } from "./Brush";
|
|
9
9
|
import { BrushCollectionUtil } from "./BrushCollectionUtil";
|
|
10
10
|
import { Color } from "./Color";
|
|
@@ -76,6 +76,9 @@ export let PlatformAPIHelper = /*@__PURE__*/ (() => {
|
|
|
76
76
|
if (a == null) {
|
|
77
77
|
return null;
|
|
78
78
|
}
|
|
79
|
+
if (getInstanceType(a) == Brush.$) {
|
|
80
|
+
return a;
|
|
81
|
+
}
|
|
79
82
|
return Brush.create(a);
|
|
80
83
|
}
|
|
81
84
|
static k(a) {
|
|
@@ -94,6 +97,9 @@ export let PlatformAPIHelper = /*@__PURE__*/ (() => {
|
|
|
94
97
|
if (a == null) {
|
|
95
98
|
return null;
|
|
96
99
|
}
|
|
100
|
+
if (getInstanceType(a) == Point_$type) {
|
|
101
|
+
return a;
|
|
102
|
+
}
|
|
97
103
|
let b = a;
|
|
98
104
|
return { $type: Point_$type, x: b["x"], y: b["y"] };
|
|
99
105
|
}
|
|
@@ -101,6 +107,9 @@ export let PlatformAPIHelper = /*@__PURE__*/ (() => {
|
|
|
101
107
|
if (a == null) {
|
|
102
108
|
return null;
|
|
103
109
|
}
|
|
110
|
+
if (getInstanceType(a) == Size.$) {
|
|
111
|
+
return a;
|
|
112
|
+
}
|
|
104
113
|
let b = a;
|
|
105
114
|
return new Size(1, b["width"], b["height"]);
|
|
106
115
|
}
|
|
@@ -108,6 +117,9 @@ export let PlatformAPIHelper = /*@__PURE__*/ (() => {
|
|
|
108
117
|
if (a == null) {
|
|
109
118
|
return null;
|
|
110
119
|
}
|
|
120
|
+
if (getInstanceType(a) == Rect.$) {
|
|
121
|
+
return a;
|
|
122
|
+
}
|
|
111
123
|
let b = a;
|
|
112
124
|
return new Rect(0, b["left"], b["top"], b["width"], b["height"]);
|
|
113
125
|
}
|
|
@@ -115,6 +127,9 @@ export let PlatformAPIHelper = /*@__PURE__*/ (() => {
|
|
|
115
127
|
if (a == null) {
|
|
116
128
|
return null;
|
|
117
129
|
}
|
|
130
|
+
if (getInstanceType(a) == DoubleCollection.$) {
|
|
131
|
+
return a;
|
|
132
|
+
}
|
|
118
133
|
let b = a;
|
|
119
134
|
let c = new DoubleCollection();
|
|
120
135
|
for (let d = 0; d < b.length; d++) {
|