igniteui-angular-core 20.0.2-beta.2 → 20.0.2-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 +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
package/esm5/lib/{AzureMapsMapImageryDescriptionModule.js → AzureMapsImageryDescriptionModule.js}
RENAMED
|
@@ -6,19 +6,19 @@ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOA
|
|
|
6
6
|
*/
|
|
7
7
|
import { __extends } from "tslib";
|
|
8
8
|
import { Base, markType } from "./type";
|
|
9
|
-
import {
|
|
9
|
+
import { AzureMapsImageryDescriptionMetadata } from "./AzureMapsImageryDescriptionMetadata";
|
|
10
10
|
/**
|
|
11
11
|
* @hidden
|
|
12
12
|
*/
|
|
13
|
-
var
|
|
14
|
-
__extends(
|
|
15
|
-
function
|
|
13
|
+
var AzureMapsImageryDescriptionModule = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
14
|
+
__extends(AzureMapsImageryDescriptionModule, _super);
|
|
15
|
+
function AzureMapsImageryDescriptionModule() {
|
|
16
16
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
17
17
|
}
|
|
18
|
-
|
|
19
|
-
|
|
18
|
+
AzureMapsImageryDescriptionModule.register = function (a) {
|
|
19
|
+
AzureMapsImageryDescriptionMetadata.d(a);
|
|
20
20
|
};
|
|
21
|
-
|
|
22
|
-
return
|
|
21
|
+
AzureMapsImageryDescriptionModule.$t = markType(AzureMapsImageryDescriptionModule, 'AzureMapsImageryDescriptionModule');
|
|
22
|
+
return AzureMapsImageryDescriptionModule;
|
|
23
23
|
}(Base));
|
|
24
|
-
export {
|
|
24
|
+
export { AzureMapsImageryDescriptionModule };
|
|
@@ -9,7 +9,7 @@ import { ObservableCollection$1 } from "./ObservableCollection$1";
|
|
|
9
9
|
import { Brush } from "./Brush";
|
|
10
10
|
import { NotifyCollectionChangedEventArgs } from "./NotifyCollectionChangedEventArgs";
|
|
11
11
|
import { Random } from "./Random";
|
|
12
|
-
import { markType } from "./type";
|
|
12
|
+
import { typeCast, markType } from "./type";
|
|
13
13
|
/**
|
|
14
14
|
* @hidden
|
|
15
15
|
*/
|
|
@@ -49,7 +49,7 @@ var BrushCollection = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
49
49
|
}
|
|
50
50
|
};
|
|
51
51
|
BrushCollection.prototype.equals = function (a) {
|
|
52
|
-
if (a == null) {
|
|
52
|
+
if (a == null || !(typeCast(BrushCollection.$, a) !== null)) {
|
|
53
53
|
return false;
|
|
54
54
|
}
|
|
55
55
|
var b = a;
|
|
@@ -1096,7 +1096,7 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1096
1096
|
var g = f.k(ComponentRenderer.platform);
|
|
1097
1097
|
this.adapter.setPropertyValue(c, g, f, d, e, null);
|
|
1098
1098
|
};
|
|
1099
|
-
ComponentRenderer.prototype.
|
|
1099
|
+
ComponentRenderer.prototype.executeMethod = function (a, b, c) {
|
|
1100
1100
|
var _this = this;
|
|
1101
1101
|
var d = new JsonDictionaryParser();
|
|
1102
1102
|
var e = d.parse(b);
|
|
@@ -1161,7 +1161,7 @@ var ComponentRenderer = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1161
1161
|
});
|
|
1162
1162
|
}
|
|
1163
1163
|
};
|
|
1164
|
-
ComponentRenderer.prototype.
|
|
1164
|
+
ComponentRenderer.prototype.executeMethodWithBuilder = function (a, b, c) {
|
|
1165
1165
|
var _this = this;
|
|
1166
1166
|
var d = new JsonDictionaryParser();
|
|
1167
1167
|
if (!this.ba.containsKey(a)) {
|
|
@@ -14,32 +14,39 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
|
|
|
14
14
|
__extends(GridConditionalStylePropertyDescription, _super);
|
|
15
15
|
function GridConditionalStylePropertyDescription() {
|
|
16
16
|
var _this = _super.call(this) || this;
|
|
17
|
-
_this.
|
|
18
|
-
_this.
|
|
19
|
-
_this.
|
|
20
|
-
_this.
|
|
17
|
+
_this.a0 = null;
|
|
18
|
+
_this.ax = null;
|
|
19
|
+
_this.at = null;
|
|
20
|
+
_this.ay = null;
|
|
21
21
|
_this.n = null;
|
|
22
|
-
_this.
|
|
22
|
+
_this.ap = null;
|
|
23
23
|
_this.j = null;
|
|
24
24
|
_this.p = null;
|
|
25
|
-
_this.
|
|
25
|
+
_this.av = null;
|
|
26
26
|
_this.l = null;
|
|
27
27
|
_this.o = null;
|
|
28
|
-
_this.
|
|
28
|
+
_this.ar = null;
|
|
29
29
|
_this.k = null;
|
|
30
30
|
_this.q = null;
|
|
31
|
-
_this.
|
|
31
|
+
_this.a1 = null;
|
|
32
32
|
_this.m = null;
|
|
33
|
+
_this.ah = 0;
|
|
34
|
+
_this.aj = 0;
|
|
35
|
+
_this.ab = false;
|
|
36
|
+
_this.af = new Date();
|
|
37
|
+
_this.z = null;
|
|
38
|
+
_this.al = null;
|
|
39
|
+
_this.az = null;
|
|
40
|
+
_this.an = null;
|
|
41
|
+
_this.ac = false;
|
|
42
|
+
_this.au = null;
|
|
33
43
|
_this.aq = null;
|
|
34
|
-
_this.
|
|
35
|
-
_this.
|
|
36
|
-
_this.
|
|
37
|
-
_this.aj = null;
|
|
38
|
-
_this.af = null;
|
|
39
|
-
_this.ao = null;
|
|
44
|
+
_this.aw = null;
|
|
45
|
+
_this.as = null;
|
|
46
|
+
_this.a2 = null;
|
|
40
47
|
_this.h = null;
|
|
41
|
-
_this.
|
|
42
|
-
_this.
|
|
48
|
+
_this.a3 = null;
|
|
49
|
+
_this.ao = null;
|
|
43
50
|
return _this;
|
|
44
51
|
}
|
|
45
52
|
GridConditionalStylePropertyDescription.prototype.get_type = function () {
|
|
@@ -54,10 +61,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
|
|
|
54
61
|
});
|
|
55
62
|
Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "stylingType", {
|
|
56
63
|
get: function () {
|
|
57
|
-
return this.
|
|
64
|
+
return this.a0;
|
|
58
65
|
},
|
|
59
66
|
set: function (a) {
|
|
60
|
-
this.
|
|
67
|
+
this.a0 = a;
|
|
61
68
|
this.g("StylingType");
|
|
62
69
|
},
|
|
63
70
|
enumerable: false,
|
|
@@ -65,10 +72,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
|
|
|
65
72
|
});
|
|
66
73
|
Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "minimumType", {
|
|
67
74
|
get: function () {
|
|
68
|
-
return this.
|
|
75
|
+
return this.ax;
|
|
69
76
|
},
|
|
70
77
|
set: function (a) {
|
|
71
|
-
this.
|
|
78
|
+
this.ax = a;
|
|
72
79
|
this.g("MinimumType");
|
|
73
80
|
},
|
|
74
81
|
enumerable: false,
|
|
@@ -76,10 +83,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
|
|
|
76
83
|
});
|
|
77
84
|
Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "maximumType", {
|
|
78
85
|
get: function () {
|
|
79
|
-
return this.
|
|
86
|
+
return this.at;
|
|
80
87
|
},
|
|
81
88
|
set: function (a) {
|
|
82
|
-
this.
|
|
89
|
+
this.at = a;
|
|
83
90
|
this.g("MaximumType");
|
|
84
91
|
},
|
|
85
92
|
enumerable: false,
|
|
@@ -87,10 +94,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
|
|
|
87
94
|
});
|
|
88
95
|
Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "propertyName", {
|
|
89
96
|
get: function () {
|
|
90
|
-
return this.
|
|
97
|
+
return this.ay;
|
|
91
98
|
},
|
|
92
99
|
set: function (a) {
|
|
93
|
-
this.
|
|
100
|
+
this.ay = a;
|
|
94
101
|
this.g("PropertyName");
|
|
95
102
|
},
|
|
96
103
|
enumerable: false,
|
|
@@ -109,10 +116,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
|
|
|
109
116
|
});
|
|
110
117
|
Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "inputValueExpressionString", {
|
|
111
118
|
get: function () {
|
|
112
|
-
return this.
|
|
119
|
+
return this.ap;
|
|
113
120
|
},
|
|
114
121
|
set: function (a) {
|
|
115
|
-
this.
|
|
122
|
+
this.ap = a;
|
|
116
123
|
this.g("InputValueExpressionString");
|
|
117
124
|
},
|
|
118
125
|
enumerable: false,
|
|
@@ -142,10 +149,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
|
|
|
142
149
|
});
|
|
143
150
|
Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "minimumInputValueExpressionString", {
|
|
144
151
|
get: function () {
|
|
145
|
-
return this.
|
|
152
|
+
return this.av;
|
|
146
153
|
},
|
|
147
154
|
set: function (a) {
|
|
148
|
-
this.
|
|
155
|
+
this.av = a;
|
|
149
156
|
this.g("MinimumInputValueExpressionString");
|
|
150
157
|
},
|
|
151
158
|
enumerable: false,
|
|
@@ -175,10 +182,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
|
|
|
175
182
|
});
|
|
176
183
|
Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "maximumInputValueExpressionString", {
|
|
177
184
|
get: function () {
|
|
178
|
-
return this.
|
|
185
|
+
return this.ar;
|
|
179
186
|
},
|
|
180
187
|
set: function (a) {
|
|
181
|
-
this.
|
|
188
|
+
this.ar = a;
|
|
182
189
|
this.g("MaximumInputValueExpressionString");
|
|
183
190
|
},
|
|
184
191
|
enumerable: false,
|
|
@@ -208,10 +215,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
|
|
|
208
215
|
});
|
|
209
216
|
Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "sumInputValueExpressionString", {
|
|
210
217
|
get: function () {
|
|
211
|
-
return this.
|
|
218
|
+
return this.a1;
|
|
212
219
|
},
|
|
213
220
|
set: function (a) {
|
|
214
|
-
this.
|
|
221
|
+
this.a1 = a;
|
|
215
222
|
this.g("SumInputValueExpressionString");
|
|
216
223
|
},
|
|
217
224
|
enumerable: false,
|
|
@@ -228,23 +235,100 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
|
|
|
228
235
|
enumerable: false,
|
|
229
236
|
configurable: true
|
|
230
237
|
});
|
|
231
|
-
Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "
|
|
238
|
+
Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "doubleValue", {
|
|
232
239
|
get: function () {
|
|
233
|
-
return this.
|
|
240
|
+
return this.ah;
|
|
234
241
|
},
|
|
235
242
|
set: function (a) {
|
|
236
|
-
this.
|
|
237
|
-
this.g("
|
|
243
|
+
this.ah = a;
|
|
244
|
+
this.g("DoubleValue");
|
|
238
245
|
},
|
|
239
246
|
enumerable: false,
|
|
240
247
|
configurable: true
|
|
241
248
|
});
|
|
242
|
-
Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "
|
|
249
|
+
Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "intValue", {
|
|
250
|
+
get: function () {
|
|
251
|
+
return this.aj;
|
|
252
|
+
},
|
|
253
|
+
set: function (a) {
|
|
254
|
+
this.aj = a;
|
|
255
|
+
this.g("IntValue");
|
|
256
|
+
},
|
|
257
|
+
enumerable: false,
|
|
258
|
+
configurable: true
|
|
259
|
+
});
|
|
260
|
+
Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "boolValue", {
|
|
261
|
+
get: function () {
|
|
262
|
+
return this.ab;
|
|
263
|
+
},
|
|
264
|
+
set: function (a) {
|
|
265
|
+
this.ab = a;
|
|
266
|
+
this.g("BoolValue");
|
|
267
|
+
},
|
|
268
|
+
enumerable: false,
|
|
269
|
+
configurable: true
|
|
270
|
+
});
|
|
271
|
+
Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "dateValue", {
|
|
272
|
+
get: function () {
|
|
273
|
+
return this.af;
|
|
274
|
+
},
|
|
275
|
+
set: function (a) {
|
|
276
|
+
this.af = a;
|
|
277
|
+
this.g("DateValue");
|
|
278
|
+
},
|
|
279
|
+
enumerable: false,
|
|
280
|
+
configurable: true
|
|
281
|
+
});
|
|
282
|
+
Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "fontValue", {
|
|
243
283
|
get: function () {
|
|
244
284
|
return this.z;
|
|
245
285
|
},
|
|
246
286
|
set: function (a) {
|
|
247
287
|
this.z = a;
|
|
288
|
+
this.g("FontValue");
|
|
289
|
+
},
|
|
290
|
+
enumerable: false,
|
|
291
|
+
configurable: true
|
|
292
|
+
});
|
|
293
|
+
Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "objectValue", {
|
|
294
|
+
get: function () {
|
|
295
|
+
return this.al;
|
|
296
|
+
},
|
|
297
|
+
set: function (a) {
|
|
298
|
+
this.al = a;
|
|
299
|
+
this.g("ObjectValue");
|
|
300
|
+
},
|
|
301
|
+
enumerable: false,
|
|
302
|
+
configurable: true
|
|
303
|
+
});
|
|
304
|
+
Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "stringValue", {
|
|
305
|
+
get: function () {
|
|
306
|
+
return this.az;
|
|
307
|
+
},
|
|
308
|
+
set: function (a) {
|
|
309
|
+
this.az = a;
|
|
310
|
+
this.g("StringValue");
|
|
311
|
+
},
|
|
312
|
+
enumerable: false,
|
|
313
|
+
configurable: true
|
|
314
|
+
});
|
|
315
|
+
Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "brushValue", {
|
|
316
|
+
get: function () {
|
|
317
|
+
return this.an;
|
|
318
|
+
},
|
|
319
|
+
set: function (a) {
|
|
320
|
+
this.an = a;
|
|
321
|
+
this.g("BrushValue");
|
|
322
|
+
},
|
|
323
|
+
enumerable: false,
|
|
324
|
+
configurable: true
|
|
325
|
+
});
|
|
326
|
+
Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "shouldSetValue", {
|
|
327
|
+
get: function () {
|
|
328
|
+
return this.ac;
|
|
329
|
+
},
|
|
330
|
+
set: function (a) {
|
|
331
|
+
this.ac = a;
|
|
248
332
|
this.g("ShouldSetValue");
|
|
249
333
|
},
|
|
250
334
|
enumerable: false,
|
|
@@ -252,10 +336,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
|
|
|
252
336
|
});
|
|
253
337
|
Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "minimumColor", {
|
|
254
338
|
get: function () {
|
|
255
|
-
return this.
|
|
339
|
+
return this.au;
|
|
256
340
|
},
|
|
257
341
|
set: function (a) {
|
|
258
|
-
this.
|
|
342
|
+
this.au = a;
|
|
259
343
|
this.g("MinimumColor");
|
|
260
344
|
},
|
|
261
345
|
enumerable: false,
|
|
@@ -263,10 +347,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
|
|
|
263
347
|
});
|
|
264
348
|
Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "maximumColor", {
|
|
265
349
|
get: function () {
|
|
266
|
-
return this.
|
|
350
|
+
return this.aq;
|
|
267
351
|
},
|
|
268
352
|
set: function (a) {
|
|
269
|
-
this.
|
|
353
|
+
this.aq = a;
|
|
270
354
|
this.g("MaximumColor");
|
|
271
355
|
},
|
|
272
356
|
enumerable: false,
|
|
@@ -274,10 +358,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
|
|
|
274
358
|
});
|
|
275
359
|
Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "minimumInputValueRef", {
|
|
276
360
|
get: function () {
|
|
277
|
-
return this.
|
|
361
|
+
return this.aw;
|
|
278
362
|
},
|
|
279
363
|
set: function (a) {
|
|
280
|
-
this.
|
|
364
|
+
this.aw = a;
|
|
281
365
|
this.g("MinimumInputValueRef");
|
|
282
366
|
},
|
|
283
367
|
enumerable: false,
|
|
@@ -285,10 +369,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
|
|
|
285
369
|
});
|
|
286
370
|
Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "maximumInputValueRef", {
|
|
287
371
|
get: function () {
|
|
288
|
-
return this.
|
|
372
|
+
return this.as;
|
|
289
373
|
},
|
|
290
374
|
set: function (a) {
|
|
291
|
-
this.
|
|
375
|
+
this.as = a;
|
|
292
376
|
this.g("MaximumInputValueRef");
|
|
293
377
|
},
|
|
294
378
|
enumerable: false,
|
|
@@ -296,10 +380,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
|
|
|
296
380
|
});
|
|
297
381
|
Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "sumInputValueRef", {
|
|
298
382
|
get: function () {
|
|
299
|
-
return this.
|
|
383
|
+
return this.a2;
|
|
300
384
|
},
|
|
301
385
|
set: function (a) {
|
|
302
|
-
this.
|
|
386
|
+
this.a2 = a;
|
|
303
387
|
this.g("SumInputValueRef");
|
|
304
388
|
},
|
|
305
389
|
enumerable: false,
|
|
@@ -318,10 +402,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
|
|
|
318
402
|
});
|
|
319
403
|
Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "valueCollectionRef", {
|
|
320
404
|
get: function () {
|
|
321
|
-
return this.
|
|
405
|
+
return this.a3;
|
|
322
406
|
},
|
|
323
407
|
set: function (a) {
|
|
324
|
-
this.
|
|
408
|
+
this.a3 = a;
|
|
325
409
|
this.g("ValueCollectionRef");
|
|
326
410
|
},
|
|
327
411
|
enumerable: false,
|
|
@@ -329,10 +413,10 @@ var GridConditionalStylePropertyDescription = /** @class */ /*@__PURE__*/ (funct
|
|
|
329
413
|
});
|
|
330
414
|
Object.defineProperty(GridConditionalStylePropertyDescription.prototype, "filterStringErrorsParsingRef", {
|
|
331
415
|
get: function () {
|
|
332
|
-
return this.
|
|
416
|
+
return this.ao;
|
|
333
417
|
},
|
|
334
418
|
set: function (a) {
|
|
335
|
-
this.
|
|
419
|
+
this.ao = a;
|
|
336
420
|
this.g("FilterStringErrorsParsingRef");
|
|
337
421
|
},
|
|
338
422
|
enumerable: false,
|
|
@@ -8,6 +8,7 @@ import { __extends } from "tslib";
|
|
|
8
8
|
import { Base, String_$type, markType } from "./type";
|
|
9
9
|
import { Dictionary$2 } from "./Dictionary$2";
|
|
10
10
|
import { FilterExpressionDescriptionMetadata } from "./FilterExpressionDescriptionMetadata";
|
|
11
|
+
import { GridConditionalStyleFontInfoDescriptionMetadata } from "./GridConditionalStyleFontInfoDescriptionMetadata";
|
|
11
12
|
import { GridConditionFilterStringErrorsParsingEventArgsDescriptionMetadata } from "./GridConditionFilterStringErrorsParsingEventArgsDescriptionMetadata";
|
|
12
13
|
import { GridConditionalStylePropertyDescription } from "./GridConditionalStylePropertyDescription";
|
|
13
14
|
/**
|
|
@@ -28,6 +29,7 @@ var GridConditionalStylePropertyDescriptionMetadata = /** @class */ /*@__PURE__*
|
|
|
28
29
|
}
|
|
29
30
|
a.ac(GridConditionalStylePropertyDescriptionMetadata.a);
|
|
30
31
|
FilterExpressionDescriptionMetadata.d(a);
|
|
32
|
+
GridConditionalStyleFontInfoDescriptionMetadata.d(a);
|
|
31
33
|
GridConditionFilterStringErrorsParsingEventArgsDescriptionMetadata.d(a);
|
|
32
34
|
};
|
|
33
35
|
GridConditionalStylePropertyDescriptionMetadata.c = function (a) {
|
|
@@ -50,7 +52,14 @@ var GridConditionalStylePropertyDescriptionMetadata = /** @class */ /*@__PURE__*
|
|
|
50
52
|
a.item("SumInputValueExpression", "ExportedType:IFilterExpression");
|
|
51
53
|
a.item("SumInputValueExpressionString", "String");
|
|
52
54
|
a.item("ActualSumInputValueExpression", "ExportedType:IFilterExpression");
|
|
53
|
-
a.item("
|
|
55
|
+
a.item("DoubleValue", "Number:double");
|
|
56
|
+
a.item("IntValue", "Number:int");
|
|
57
|
+
a.item("BoolValue", "Boolean");
|
|
58
|
+
a.item("DateValue", "Date");
|
|
59
|
+
a.item("FontValue", "ExportedType:GridConditionalStyleFontInfo");
|
|
60
|
+
a.item("ObjectValue", "Unknown");
|
|
61
|
+
a.item("StringValue", "String");
|
|
62
|
+
a.item("BrushValue", "Brush");
|
|
54
63
|
a.item("ShouldSetValue", "Boolean");
|
|
55
64
|
a.item("MinimumColor", "Brush");
|
|
56
65
|
a.item("MaximumColor", "Brush");
|
|
@@ -99,13 +99,13 @@ var LegendBaseDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
99
99
|
enumerable: false,
|
|
100
100
|
configurable: true
|
|
101
101
|
});
|
|
102
|
-
Object.defineProperty(LegendBaseDescription.prototype, "
|
|
102
|
+
Object.defineProperty(LegendBaseDescription.prototype, "legendTextContentChangedRef", {
|
|
103
103
|
get: function () {
|
|
104
104
|
return this.n;
|
|
105
105
|
},
|
|
106
106
|
set: function (a) {
|
|
107
107
|
this.n = a;
|
|
108
|
-
this.g("
|
|
108
|
+
this.g("LegendTextContentChangedRef");
|
|
109
109
|
},
|
|
110
110
|
enumerable: false,
|
|
111
111
|
configurable: true
|
|
@@ -9,7 +9,7 @@ import { Base, String_$type, markType } from "./type";
|
|
|
9
9
|
import { Dictionary$2 } from "./Dictionary$2";
|
|
10
10
|
import { LegendMouseButtonEventArgsDescriptionMetadata } from "./LegendMouseButtonEventArgsDescriptionMetadata";
|
|
11
11
|
import { LegendMouseEventArgsDescriptionMetadata } from "./LegendMouseEventArgsDescriptionMetadata";
|
|
12
|
-
import {
|
|
12
|
+
import { LegendTextContentChangedEventArgsDescriptionMetadata } from "./LegendTextContentChangedEventArgsDescriptionMetadata";
|
|
13
13
|
/**
|
|
14
14
|
* @hidden
|
|
15
15
|
*/
|
|
@@ -32,7 +32,7 @@ var LegendBaseDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_supe
|
|
|
32
32
|
a.ac(LegendBaseDescriptionMetadata.a);
|
|
33
33
|
LegendMouseButtonEventArgsDescriptionMetadata.d(a);
|
|
34
34
|
LegendMouseEventArgsDescriptionMetadata.d(a);
|
|
35
|
-
|
|
35
|
+
LegendTextContentChangedEventArgsDescriptionMetadata.d(a);
|
|
36
36
|
};
|
|
37
37
|
LegendBaseDescriptionMetadata.c = function (a) {
|
|
38
38
|
a.item("LegendItemMouseLeftButtonDownRef", "EventRef::legendItemMouseLeftButtonDown");
|
|
@@ -40,7 +40,7 @@ var LegendBaseDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_supe
|
|
|
40
40
|
a.item("LegendItemMouseEnterRef", "EventRef::legendItemMouseEnter");
|
|
41
41
|
a.item("LegendItemMouseLeaveRef", "EventRef::legendItemMouseLeave");
|
|
42
42
|
a.item("LegendItemMouseMoveRef", "EventRef::legendItemMouseMove");
|
|
43
|
-
a.item("
|
|
43
|
+
a.item("LegendTextContentChangedRef", "EventRef::legendTextContentChanged");
|
|
44
44
|
LegendBaseDescriptionMetadata.e(a);
|
|
45
45
|
};
|
|
46
46
|
LegendBaseDescriptionMetadata.d = function (a) {
|
|
@@ -10,22 +10,22 @@ import { markType } from "./type";
|
|
|
10
10
|
/**
|
|
11
11
|
* @hidden
|
|
12
12
|
*/
|
|
13
|
-
var
|
|
14
|
-
__extends(
|
|
15
|
-
function
|
|
13
|
+
var LegendTextContentChangedEventArgsDescription = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
14
|
+
__extends(LegendTextContentChangedEventArgsDescription, _super);
|
|
15
|
+
function LegendTextContentChangedEventArgsDescription() {
|
|
16
16
|
return _super.call(this) || this;
|
|
17
17
|
}
|
|
18
|
-
|
|
19
|
-
return "
|
|
18
|
+
LegendTextContentChangedEventArgsDescription.prototype.get_type = function () {
|
|
19
|
+
return "LegendTextContentChangedEventArgs";
|
|
20
20
|
};
|
|
21
|
-
Object.defineProperty(
|
|
21
|
+
Object.defineProperty(LegendTextContentChangedEventArgsDescription.prototype, "type", {
|
|
22
22
|
get: function () {
|
|
23
23
|
return this.get_type();
|
|
24
24
|
},
|
|
25
25
|
enumerable: false,
|
|
26
26
|
configurable: true
|
|
27
27
|
});
|
|
28
|
-
|
|
29
|
-
return
|
|
28
|
+
LegendTextContentChangedEventArgsDescription.$t = markType(LegendTextContentChangedEventArgsDescription, 'LegendTextContentChangedEventArgsDescription', Description.$);
|
|
29
|
+
return LegendTextContentChangedEventArgsDescription;
|
|
30
30
|
}(Description));
|
|
31
|
-
export {
|
|
31
|
+
export { LegendTextContentChangedEventArgsDescription };
|
|
@@ -0,0 +1,40 @@
|
|
|
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 { LegendTextContentChangedEventArgsDescription } from "./LegendTextContentChangedEventArgsDescription";
|
|
11
|
+
/**
|
|
12
|
+
* @hidden
|
|
13
|
+
*/
|
|
14
|
+
var LegendTextContentChangedEventArgsDescriptionMetadata = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
15
|
+
__extends(LegendTextContentChangedEventArgsDescriptionMetadata, _super);
|
|
16
|
+
function LegendTextContentChangedEventArgsDescriptionMetadata() {
|
|
17
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
18
|
+
}
|
|
19
|
+
LegendTextContentChangedEventArgsDescriptionMetadata.b = function (a) {
|
|
20
|
+
if (LegendTextContentChangedEventArgsDescriptionMetadata.a == null) {
|
|
21
|
+
LegendTextContentChangedEventArgsDescriptionMetadata.a = new Dictionary$2(String_$type, String_$type, 0);
|
|
22
|
+
LegendTextContentChangedEventArgsDescriptionMetadata.c(LegendTextContentChangedEventArgsDescriptionMetadata.a);
|
|
23
|
+
}
|
|
24
|
+
if (a.k(LegendTextContentChangedEventArgsDescriptionMetadata.a)) {
|
|
25
|
+
return;
|
|
26
|
+
}
|
|
27
|
+
a.ac(LegendTextContentChangedEventArgsDescriptionMetadata.a);
|
|
28
|
+
};
|
|
29
|
+
LegendTextContentChangedEventArgsDescriptionMetadata.c = function (a) {
|
|
30
|
+
};
|
|
31
|
+
LegendTextContentChangedEventArgsDescriptionMetadata.d = function (a) {
|
|
32
|
+
LegendTextContentChangedEventArgsDescriptionMetadata.b(a);
|
|
33
|
+
a.ae("LegendTextContentChangedEventArgs", function () { return new LegendTextContentChangedEventArgsDescription(); });
|
|
34
|
+
a.ad("LegendTextContentChangedEventArgs", LegendTextContentChangedEventArgsDescriptionMetadata.a);
|
|
35
|
+
};
|
|
36
|
+
LegendTextContentChangedEventArgsDescriptionMetadata.$t = markType(LegendTextContentChangedEventArgsDescriptionMetadata, 'LegendTextContentChangedEventArgsDescriptionMetadata');
|
|
37
|
+
LegendTextContentChangedEventArgsDescriptionMetadata.a = null;
|
|
38
|
+
return LegendTextContentChangedEventArgsDescriptionMetadata;
|
|
39
|
+
}(Base));
|
|
40
|
+
export { LegendTextContentChangedEventArgsDescriptionMetadata };
|
|
@@ -5,7 +5,7 @@ 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 { __extends } from "tslib";
|
|
8
|
-
import { Base, toNullable, Point_$type, Number_$type, markType, PointUtil } from "./type";
|
|
8
|
+
import { Base, toNullable, Point_$type, Number_$type, markType, PointUtil, getInstanceType } from "./type";
|
|
9
9
|
import { Brush } from "./Brush";
|
|
10
10
|
import { BrushCollectionUtil } from "./BrushCollectionUtil";
|
|
11
11
|
import { Color } from "./Color";
|
|
@@ -80,6 +80,9 @@ var PlatformAPIHelper = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
80
80
|
if (a == null) {
|
|
81
81
|
return null;
|
|
82
82
|
}
|
|
83
|
+
if (getInstanceType(a) == Brush.$) {
|
|
84
|
+
return a;
|
|
85
|
+
}
|
|
83
86
|
return Brush.create(a);
|
|
84
87
|
};
|
|
85
88
|
PlatformAPIHelper.k = function (a) {
|
|
@@ -98,6 +101,9 @@ var PlatformAPIHelper = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
98
101
|
if (a == null) {
|
|
99
102
|
return null;
|
|
100
103
|
}
|
|
104
|
+
if (getInstanceType(a) == Point_$type) {
|
|
105
|
+
return a;
|
|
106
|
+
}
|
|
101
107
|
var b = a;
|
|
102
108
|
return { $type: Point_$type, x: b["x"], y: b["y"] };
|
|
103
109
|
};
|
|
@@ -105,6 +111,9 @@ var PlatformAPIHelper = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
105
111
|
if (a == null) {
|
|
106
112
|
return null;
|
|
107
113
|
}
|
|
114
|
+
if (getInstanceType(a) == Size.$) {
|
|
115
|
+
return a;
|
|
116
|
+
}
|
|
108
117
|
var b = a;
|
|
109
118
|
return new Size(1, b["width"], b["height"]);
|
|
110
119
|
};
|
|
@@ -112,6 +121,9 @@ var PlatformAPIHelper = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
112
121
|
if (a == null) {
|
|
113
122
|
return null;
|
|
114
123
|
}
|
|
124
|
+
if (getInstanceType(a) == Rect.$) {
|
|
125
|
+
return a;
|
|
126
|
+
}
|
|
115
127
|
var b = a;
|
|
116
128
|
return new Rect(0, b["left"], b["top"], b["width"], b["height"]);
|
|
117
129
|
};
|
|
@@ -119,6 +131,9 @@ var PlatformAPIHelper = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
119
131
|
if (a == null) {
|
|
120
132
|
return null;
|
|
121
133
|
}
|
|
134
|
+
if (getInstanceType(a) == DoubleCollection.$) {
|
|
135
|
+
return a;
|
|
136
|
+
}
|
|
122
137
|
var b = a;
|
|
123
138
|
var c = new DoubleCollection();
|
|
124
139
|
for (var d = 0; d < b.length; d++) {
|