igniteui-angular-data-grids 20.0.2-beta.1 → 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-data-grids.umd.js +3847 -3535
- package/bundles/igniteui-angular-data-grids.umd.min.js +1 -1
- package/esm2015/lib/CellPresenterBase.js +1 -1
- package/esm2015/lib/CheckboxListView_combined.js +75 -67
- package/esm2015/lib/ColumnFilterCondition_combined.js +3119 -3094
- package/esm2015/lib/ContentCellModelHelper.js +1 -1
- package/esm2015/lib/DataGridScrollerKeyboardListener.js +15 -15
- package/esm2015/lib/GridColumnFilterOptionsView_combined.js +1 -1
- package/esm2015/lib/GridConditionalStyleProperty.js +315 -197
- package/esm2015/lib/GridFilterDialogView_combined.js +1 -1
- package/esm2015/lib/MultiColumnComboBoxView_combined.js +3 -3
- package/esm2015/lib/TemplateHeader.js +1 -1
- package/esm2015/lib/TextIconSetConditionalStyle.js +14 -9
- package/esm2015/lib/igx-data-grid-component.js +28 -0
- package/esm2015/lib/igx-grid-conditional-style-property-component.js +109 -33
- package/esm5/lib/CellPresenterBase.js +1 -1
- package/esm5/lib/CheckboxListView_combined.js +75 -67
- package/esm5/lib/ColumnFilterCondition_combined.js +3096 -3071
- package/esm5/lib/ContentCellModelHelper.js +1 -1
- package/esm5/lib/DataGridScrollerKeyboardListener.js +15 -15
- package/esm5/lib/GridColumnFilterOptionsView_combined.js +1 -1
- package/esm5/lib/GridConditionalStyleProperty.js +332 -186
- package/esm5/lib/GridFilterDialogView_combined.js +1 -1
- package/esm5/lib/MultiColumnComboBoxView_combined.js +3 -3
- package/esm5/lib/TemplateHeader.js +1 -1
- package/esm5/lib/TextIconSetConditionalStyle.js +14 -9
- package/esm5/lib/igx-data-grid-component.js +28 -0
- package/esm5/lib/igx-grid-conditional-style-property-component.js +136 -32
- package/fesm2015/igniteui-angular-data-grids.js +3817 -3561
- package/fesm5/igniteui-angular-data-grids.js +3849 -3537
- package/lib/CheckboxListView_combined.d.ts +25 -24
- package/lib/ColumnFilterCondition_combined.d.ts +533 -525
- package/lib/GridConditionalStyleProperty.d.ts +84 -61
- package/lib/igx-data-grid-component.d.ts +8 -0
- package/lib/igx-grid-conditional-style-property-component.d.ts +21 -3
- package/package.json +5 -5
|
@@ -5,11 +5,13 @@ 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, INotifyPropertyChanged_$type, PropertyChangedEventArgs, enumGetBox, typeGetValue, typeCast, Date_$type, markType } from "igniteui-angular-core";
|
|
8
|
+
import { Base, INotifyPropertyChanged_$type, PropertyChangedEventArgs, enumGetBox, typeGetValue, typeCast, Date_$type, Number_$type, String_$type, Boolean_$type, markType, EnumUtil } from "igniteui-angular-core";
|
|
9
9
|
import { GridConditionalStylePropertyStylingType_$type } from "./GridConditionalStylePropertyStylingType";
|
|
10
10
|
import { GridConditionalStyleBoundType_$type } from "./GridConditionalStyleBoundType";
|
|
11
|
+
import { Brush } from "igniteui-angular-core";
|
|
11
12
|
import { GridConditionFilterStringErrorsParsingEventArgs } from "./GridConditionFilterStringErrorsParsingEventArgs";
|
|
12
13
|
import { FilterExpressionParsingHelper } from "igniteui-angular-core";
|
|
14
|
+
import { FontInfo } from "igniteui-angular-core";
|
|
13
15
|
import { dateMinValue } from "igniteui-angular-core";
|
|
14
16
|
import { isNaN_ } from "igniteui-angular-core";
|
|
15
17
|
import { stringIsNullOrEmpty } from "igniteui-angular-core";
|
|
@@ -20,40 +22,47 @@ var GridConditionalStyleProperty = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
20
22
|
__extends(GridConditionalStyleProperty, _super);
|
|
21
23
|
function GridConditionalStyleProperty() {
|
|
22
24
|
var _this = _super !== null && _super.apply(this, arguments) || this;
|
|
23
|
-
_this.
|
|
25
|
+
_this.ak = 0;
|
|
24
26
|
_this.af = 0;
|
|
25
27
|
_this.ae = 0;
|
|
26
|
-
_this.
|
|
28
|
+
_this.br = null;
|
|
27
29
|
_this.k = null;
|
|
28
|
-
_this.
|
|
30
|
+
_this.bo = null;
|
|
29
31
|
_this.g = null;
|
|
30
32
|
_this.m = null;
|
|
31
|
-
_this.
|
|
33
|
+
_this.bq = null;
|
|
32
34
|
_this.i = null;
|
|
33
35
|
_this.l = null;
|
|
34
|
-
_this.
|
|
36
|
+
_this.bp = null;
|
|
35
37
|
_this.h = null;
|
|
36
38
|
_this.r = null;
|
|
37
|
-
_this.
|
|
39
|
+
_this.bt = null;
|
|
38
40
|
_this.j = null;
|
|
39
|
-
_this.
|
|
40
|
-
_this.
|
|
41
|
-
_this.
|
|
42
|
-
_this.
|
|
43
|
-
_this.
|
|
44
|
-
_this.
|
|
45
|
-
_this.
|
|
46
|
-
_this.
|
|
47
|
-
_this.
|
|
48
|
-
_this.
|
|
49
|
-
_this.
|
|
50
|
-
_this.
|
|
51
|
-
_this.
|
|
41
|
+
_this.a3 = NaN;
|
|
42
|
+
_this.bb = -2147483648;
|
|
43
|
+
_this.an = false;
|
|
44
|
+
_this.ax = new Date();
|
|
45
|
+
_this.ai = null;
|
|
46
|
+
_this.bg = null;
|
|
47
|
+
_this.bs = null;
|
|
48
|
+
_this.c5 = null;
|
|
49
|
+
_this.ao = true;
|
|
50
|
+
_this.bd = null;
|
|
51
|
+
_this.c7 = null;
|
|
52
|
+
_this.c6 = null;
|
|
53
|
+
_this.bf = null;
|
|
54
|
+
_this.be = null;
|
|
55
|
+
_this.bh = null;
|
|
56
|
+
_this.a4 = NaN;
|
|
57
|
+
_this.a6 = NaN;
|
|
58
|
+
_this.a5 = NaN;
|
|
59
|
+
_this.ay = dateMinValue();
|
|
60
|
+
_this.az = dateMinValue();
|
|
52
61
|
_this.e = null;
|
|
53
62
|
_this.b = null;
|
|
54
63
|
_this.a = null;
|
|
55
|
-
_this.
|
|
56
|
-
_this.
|
|
64
|
+
_this.ar = false;
|
|
65
|
+
_this.aq = false;
|
|
57
66
|
_this.filterStringErrorsParsing = null;
|
|
58
67
|
_this.n = null;
|
|
59
68
|
_this.p = null;
|
|
@@ -62,15 +71,15 @@ var GridConditionalStyleProperty = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
62
71
|
_this.propertyChanged = null;
|
|
63
72
|
return _this;
|
|
64
73
|
}
|
|
65
|
-
Object.defineProperty(GridConditionalStyleProperty.prototype, "
|
|
74
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "al", {
|
|
66
75
|
get: function () {
|
|
67
|
-
return this.
|
|
76
|
+
return this.ak;
|
|
68
77
|
},
|
|
69
78
|
set: function (a) {
|
|
70
|
-
var b = this.
|
|
71
|
-
this.
|
|
79
|
+
var b = this.ak;
|
|
80
|
+
this.ak = a;
|
|
72
81
|
if (b != a) {
|
|
73
|
-
this.
|
|
82
|
+
this.c3("StylingType", enumGetBox(GridConditionalStylePropertyStylingType_$type, b), enumGetBox(GridConditionalStylePropertyStylingType_$type, a));
|
|
74
83
|
}
|
|
75
84
|
},
|
|
76
85
|
enumerable: false,
|
|
@@ -84,7 +93,7 @@ var GridConditionalStyleProperty = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
84
93
|
var b = this.af;
|
|
85
94
|
this.af = a;
|
|
86
95
|
if (b != a) {
|
|
87
|
-
this.
|
|
96
|
+
this.c3("MinimumType", enumGetBox(GridConditionalStyleBoundType_$type, b), enumGetBox(GridConditionalStyleBoundType_$type, a));
|
|
88
97
|
}
|
|
89
98
|
},
|
|
90
99
|
enumerable: false,
|
|
@@ -98,21 +107,21 @@ var GridConditionalStyleProperty = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
98
107
|
var b = this.ae;
|
|
99
108
|
this.ae = a;
|
|
100
109
|
if (b != a) {
|
|
101
|
-
this.
|
|
110
|
+
this.c3("MaximumType", enumGetBox(GridConditionalStyleBoundType_$type, b), enumGetBox(GridConditionalStyleBoundType_$type, a));
|
|
102
111
|
}
|
|
103
112
|
},
|
|
104
113
|
enumerable: false,
|
|
105
114
|
configurable: true
|
|
106
115
|
});
|
|
107
|
-
Object.defineProperty(GridConditionalStyleProperty.prototype, "
|
|
116
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "cs", {
|
|
108
117
|
get: function () {
|
|
109
|
-
return this.
|
|
118
|
+
return this.br;
|
|
110
119
|
},
|
|
111
120
|
set: function (a) {
|
|
112
|
-
var b = this.
|
|
113
|
-
this.
|
|
121
|
+
var b = this.br;
|
|
122
|
+
this.br = a;
|
|
114
123
|
if (b != a) {
|
|
115
|
-
this.
|
|
124
|
+
this.c3("PropertyName", b, a);
|
|
116
125
|
}
|
|
117
126
|
},
|
|
118
127
|
enumerable: false,
|
|
@@ -126,21 +135,21 @@ var GridConditionalStyleProperty = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
126
135
|
var b = this.k;
|
|
127
136
|
this.k = a;
|
|
128
137
|
if (b != a) {
|
|
129
|
-
this.
|
|
138
|
+
this.c3("InputValueExpression", b, a);
|
|
130
139
|
}
|
|
131
140
|
},
|
|
132
141
|
enumerable: false,
|
|
133
142
|
configurable: true
|
|
134
143
|
});
|
|
135
|
-
Object.defineProperty(GridConditionalStyleProperty.prototype, "
|
|
144
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "b5", {
|
|
136
145
|
get: function () {
|
|
137
|
-
return this.
|
|
146
|
+
return this.bo;
|
|
138
147
|
},
|
|
139
148
|
set: function (a) {
|
|
140
|
-
var b = this.
|
|
141
|
-
this.
|
|
149
|
+
var b = this.bo;
|
|
150
|
+
this.bo = a;
|
|
142
151
|
if (b != a) {
|
|
143
|
-
this.
|
|
152
|
+
this.c3("InputValueExpressionString", b, a);
|
|
144
153
|
}
|
|
145
154
|
},
|
|
146
155
|
enumerable: false,
|
|
@@ -154,7 +163,7 @@ var GridConditionalStyleProperty = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
154
163
|
var b = this.g;
|
|
155
164
|
this.g = a;
|
|
156
165
|
if (b != a) {
|
|
157
|
-
this.
|
|
166
|
+
this.c3("ActualInputValueExpression", b, a);
|
|
158
167
|
}
|
|
159
168
|
},
|
|
160
169
|
enumerable: false,
|
|
@@ -168,21 +177,21 @@ var GridConditionalStyleProperty = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
168
177
|
var b = this.m;
|
|
169
178
|
this.m = a;
|
|
170
179
|
if (b != a) {
|
|
171
|
-
this.
|
|
180
|
+
this.c3("MinimumInputValueExpression", b, a);
|
|
172
181
|
}
|
|
173
182
|
},
|
|
174
183
|
enumerable: false,
|
|
175
184
|
configurable: true
|
|
176
185
|
});
|
|
177
|
-
Object.defineProperty(GridConditionalStyleProperty.prototype, "
|
|
186
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "cn", {
|
|
178
187
|
get: function () {
|
|
179
|
-
return this.
|
|
188
|
+
return this.bq;
|
|
180
189
|
},
|
|
181
190
|
set: function (a) {
|
|
182
|
-
var b = this.
|
|
183
|
-
this.
|
|
191
|
+
var b = this.bq;
|
|
192
|
+
this.bq = a;
|
|
184
193
|
if (b != a) {
|
|
185
|
-
this.
|
|
194
|
+
this.c3("MinimumInputValueExpressionString", b, a);
|
|
186
195
|
}
|
|
187
196
|
},
|
|
188
197
|
enumerable: false,
|
|
@@ -196,7 +205,7 @@ var GridConditionalStyleProperty = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
196
205
|
var b = this.i;
|
|
197
206
|
this.i = a;
|
|
198
207
|
if (b != a) {
|
|
199
|
-
this.
|
|
208
|
+
this.c3("ActualMinimumInputValueExpression", b, a);
|
|
200
209
|
}
|
|
201
210
|
},
|
|
202
211
|
enumerable: false,
|
|
@@ -210,21 +219,21 @@ var GridConditionalStyleProperty = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
210
219
|
var b = this.l;
|
|
211
220
|
this.l = a;
|
|
212
221
|
if (b != a) {
|
|
213
|
-
this.
|
|
222
|
+
this.c3("MaximumInputValueExpression", b, a);
|
|
214
223
|
}
|
|
215
224
|
},
|
|
216
225
|
enumerable: false,
|
|
217
226
|
configurable: true
|
|
218
227
|
});
|
|
219
|
-
Object.defineProperty(GridConditionalStyleProperty.prototype, "
|
|
228
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "ch", {
|
|
220
229
|
get: function () {
|
|
221
|
-
return this.
|
|
230
|
+
return this.bp;
|
|
222
231
|
},
|
|
223
232
|
set: function (a) {
|
|
224
|
-
var b = this.
|
|
225
|
-
this.
|
|
233
|
+
var b = this.bp;
|
|
234
|
+
this.bp = a;
|
|
226
235
|
if (b != a) {
|
|
227
|
-
this.
|
|
236
|
+
this.c3("MaximumInputValueExpressionString", b, a);
|
|
228
237
|
}
|
|
229
238
|
},
|
|
230
239
|
enumerable: false,
|
|
@@ -238,7 +247,7 @@ var GridConditionalStyleProperty = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
238
247
|
var b = this.h;
|
|
239
248
|
this.h = a;
|
|
240
249
|
if (b != a) {
|
|
241
|
-
this.
|
|
250
|
+
this.c3("ActualMaximumInputValueExpression", b, a);
|
|
242
251
|
}
|
|
243
252
|
},
|
|
244
253
|
enumerable: false,
|
|
@@ -252,21 +261,21 @@ var GridConditionalStyleProperty = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
252
261
|
var b = this.r;
|
|
253
262
|
this.r = a;
|
|
254
263
|
if (b != a) {
|
|
255
|
-
this.
|
|
264
|
+
this.c3("SumInputValueExpression", b, a);
|
|
256
265
|
}
|
|
257
266
|
},
|
|
258
267
|
enumerable: false,
|
|
259
268
|
configurable: true
|
|
260
269
|
});
|
|
261
|
-
Object.defineProperty(GridConditionalStyleProperty.prototype, "
|
|
270
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "cz", {
|
|
262
271
|
get: function () {
|
|
263
|
-
return this.
|
|
272
|
+
return this.bt;
|
|
264
273
|
},
|
|
265
274
|
set: function (a) {
|
|
266
|
-
var b = this.
|
|
267
|
-
this.
|
|
275
|
+
var b = this.bt;
|
|
276
|
+
this.bt = a;
|
|
268
277
|
if (b != a) {
|
|
269
|
-
this.
|
|
278
|
+
this.c3("SumInputValueExpressionString", b, a);
|
|
270
279
|
}
|
|
271
280
|
},
|
|
272
281
|
enumerable: false,
|
|
@@ -280,7 +289,21 @@ var GridConditionalStyleProperty = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
280
289
|
var b = this.j;
|
|
281
290
|
this.j = a;
|
|
282
291
|
if (b != a) {
|
|
283
|
-
this.
|
|
292
|
+
this.c3("ActualSumInputValueExpression", b, a);
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
enumerable: false,
|
|
296
|
+
configurable: true
|
|
297
|
+
});
|
|
298
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "a7", {
|
|
299
|
+
get: function () {
|
|
300
|
+
return this.a3;
|
|
301
|
+
},
|
|
302
|
+
set: function (a) {
|
|
303
|
+
var b = this.a3;
|
|
304
|
+
this.a3 = a;
|
|
305
|
+
if (this.a3 != b) {
|
|
306
|
+
this.c3("DoubleValue", b, a);
|
|
284
307
|
}
|
|
285
308
|
},
|
|
286
309
|
enumerable: false,
|
|
@@ -288,181 +311,265 @@ var GridConditionalStyleProperty = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
288
311
|
});
|
|
289
312
|
Object.defineProperty(GridConditionalStyleProperty.prototype, "bc", {
|
|
290
313
|
get: function () {
|
|
291
|
-
return this.
|
|
314
|
+
return this.bb;
|
|
292
315
|
},
|
|
293
316
|
set: function (a) {
|
|
294
|
-
var b = this.
|
|
295
|
-
this.
|
|
296
|
-
if (this.
|
|
297
|
-
this.
|
|
317
|
+
var b = this.bb;
|
|
318
|
+
this.bb = a;
|
|
319
|
+
if (this.bb != b) {
|
|
320
|
+
this.c3("IntValue", b, a);
|
|
298
321
|
}
|
|
299
322
|
},
|
|
300
323
|
enumerable: false,
|
|
301
324
|
configurable: true
|
|
302
325
|
});
|
|
303
|
-
Object.defineProperty(GridConditionalStyleProperty.prototype, "
|
|
326
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "ap", {
|
|
304
327
|
get: function () {
|
|
305
|
-
return this.
|
|
328
|
+
return this.an;
|
|
306
329
|
},
|
|
307
330
|
set: function (a) {
|
|
308
|
-
var b = this.
|
|
309
|
-
this.
|
|
310
|
-
if (this.
|
|
311
|
-
this.
|
|
331
|
+
var b = this.an;
|
|
332
|
+
this.an = a;
|
|
333
|
+
if (this.an != b) {
|
|
334
|
+
this.c3("BoolValue", b, a);
|
|
312
335
|
}
|
|
313
336
|
},
|
|
314
337
|
enumerable: false,
|
|
315
338
|
configurable: true
|
|
316
339
|
});
|
|
317
|
-
Object.defineProperty(GridConditionalStyleProperty.prototype, "
|
|
340
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "a0", {
|
|
318
341
|
get: function () {
|
|
319
|
-
return this.
|
|
342
|
+
return this.ax;
|
|
320
343
|
},
|
|
321
344
|
set: function (a) {
|
|
322
|
-
var b = this.
|
|
323
|
-
this.
|
|
324
|
-
if (this.
|
|
325
|
-
this.
|
|
345
|
+
var b = this.ax;
|
|
346
|
+
this.ax = a;
|
|
347
|
+
if (+(this.ax) != +b) {
|
|
348
|
+
this.c3("DateValue", b, a);
|
|
326
349
|
}
|
|
327
350
|
},
|
|
328
351
|
enumerable: false,
|
|
329
352
|
configurable: true
|
|
330
353
|
});
|
|
331
|
-
Object.defineProperty(GridConditionalStyleProperty.prototype, "
|
|
354
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "aj", {
|
|
332
355
|
get: function () {
|
|
333
|
-
return this.
|
|
356
|
+
return this.ai;
|
|
334
357
|
},
|
|
335
358
|
set: function (a) {
|
|
336
|
-
var b = this.
|
|
337
|
-
this.
|
|
338
|
-
if (this.
|
|
339
|
-
this.
|
|
359
|
+
var b = this.ai;
|
|
360
|
+
this.ai = a;
|
|
361
|
+
if (this.ai != b) {
|
|
362
|
+
this.c3("FontValue", b, a);
|
|
340
363
|
}
|
|
341
364
|
},
|
|
342
365
|
enumerable: false,
|
|
343
366
|
configurable: true
|
|
344
367
|
});
|
|
345
|
-
Object.defineProperty(GridConditionalStyleProperty.prototype, "
|
|
368
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "bm", {
|
|
346
369
|
get: function () {
|
|
347
|
-
return this.
|
|
370
|
+
return this.bg;
|
|
348
371
|
},
|
|
349
372
|
set: function (a) {
|
|
350
|
-
var b = this.
|
|
351
|
-
this.
|
|
352
|
-
if (this.
|
|
353
|
-
this.
|
|
373
|
+
var b = this.bg;
|
|
374
|
+
this.bg = a;
|
|
375
|
+
if (this.bg != b) {
|
|
376
|
+
this.c3("ObjectValue", b, a);
|
|
354
377
|
}
|
|
355
378
|
},
|
|
356
379
|
enumerable: false,
|
|
357
380
|
configurable: true
|
|
358
381
|
});
|
|
359
|
-
Object.defineProperty(GridConditionalStyleProperty.prototype, "
|
|
382
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "cv", {
|
|
360
383
|
get: function () {
|
|
361
|
-
return this.
|
|
384
|
+
return this.bs;
|
|
362
385
|
},
|
|
363
386
|
set: function (a) {
|
|
364
|
-
var b = this.
|
|
365
|
-
this.
|
|
366
|
-
if (this.
|
|
367
|
-
this.
|
|
387
|
+
var b = this.bs;
|
|
388
|
+
this.bs = a;
|
|
389
|
+
if (this.bs != b) {
|
|
390
|
+
this.c3("StringValue", b, a);
|
|
368
391
|
}
|
|
369
392
|
},
|
|
370
393
|
enumerable: false,
|
|
371
394
|
configurable: true
|
|
372
395
|
});
|
|
373
|
-
Object.defineProperty(GridConditionalStyleProperty.prototype, "
|
|
396
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "c8", {
|
|
374
397
|
get: function () {
|
|
375
|
-
return this.
|
|
398
|
+
return this.c5;
|
|
376
399
|
},
|
|
377
400
|
set: function (a) {
|
|
378
|
-
var b = this.
|
|
379
|
-
this.
|
|
380
|
-
if (this.
|
|
381
|
-
this.
|
|
401
|
+
var b = this.c5;
|
|
402
|
+
this.c5 = a;
|
|
403
|
+
if (this.c5 != b) {
|
|
404
|
+
this.c3("BrushValue", b, a);
|
|
382
405
|
}
|
|
383
406
|
},
|
|
384
407
|
enumerable: false,
|
|
385
408
|
configurable: true
|
|
386
409
|
});
|
|
387
|
-
Object.defineProperty(GridConditionalStyleProperty.prototype, "
|
|
410
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "aw", {
|
|
388
411
|
get: function () {
|
|
389
|
-
return this.
|
|
412
|
+
return this.ao;
|
|
390
413
|
},
|
|
391
414
|
set: function (a) {
|
|
392
|
-
var b = this.
|
|
393
|
-
this.
|
|
394
|
-
if (this.
|
|
395
|
-
this.
|
|
415
|
+
var b = this.ao;
|
|
416
|
+
this.ao = a;
|
|
417
|
+
if (this.ao != b) {
|
|
418
|
+
this.c3("ShouldSetValue", b, a);
|
|
396
419
|
}
|
|
397
420
|
},
|
|
398
421
|
enumerable: false,
|
|
399
422
|
configurable: true
|
|
400
423
|
});
|
|
401
|
-
Object.defineProperty(GridConditionalStyleProperty.prototype, "
|
|
424
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "bj", {
|
|
402
425
|
get: function () {
|
|
403
|
-
return this.
|
|
426
|
+
return this.bd;
|
|
404
427
|
},
|
|
405
428
|
set: function (a) {
|
|
406
|
-
var b = this.
|
|
407
|
-
this.
|
|
408
|
-
if (this.
|
|
409
|
-
this.
|
|
429
|
+
var b = this.bd;
|
|
430
|
+
this.bd = a;
|
|
431
|
+
if (this.bd != b) {
|
|
432
|
+
this.c3("InternalValue", b, a);
|
|
410
433
|
}
|
|
411
434
|
},
|
|
412
435
|
enumerable: false,
|
|
413
436
|
configurable: true
|
|
414
437
|
});
|
|
415
|
-
Object.defineProperty(GridConditionalStyleProperty.prototype, "
|
|
438
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "da", {
|
|
416
439
|
get: function () {
|
|
417
|
-
return this.
|
|
440
|
+
return this.c7;
|
|
418
441
|
},
|
|
419
442
|
set: function (a) {
|
|
420
|
-
var b = this.
|
|
421
|
-
this.
|
|
422
|
-
if (this.
|
|
423
|
-
this.
|
|
443
|
+
var b = this.c7;
|
|
444
|
+
this.c7 = a;
|
|
445
|
+
if (this.c7 != b) {
|
|
446
|
+
this.c3("MinimumColor", b, a);
|
|
424
447
|
}
|
|
425
448
|
},
|
|
426
449
|
enumerable: false,
|
|
427
450
|
configurable: true
|
|
428
451
|
});
|
|
429
|
-
Object.defineProperty(GridConditionalStyleProperty.prototype, "
|
|
452
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "c9", {
|
|
430
453
|
get: function () {
|
|
431
|
-
return this.
|
|
454
|
+
return this.c6;
|
|
432
455
|
},
|
|
433
456
|
set: function (a) {
|
|
434
|
-
var b = this.
|
|
435
|
-
this.
|
|
436
|
-
if (this.
|
|
437
|
-
this.
|
|
457
|
+
var b = this.c6;
|
|
458
|
+
this.c6 = a;
|
|
459
|
+
if (this.c6 != b) {
|
|
460
|
+
this.c3("MaximumColor", b, a);
|
|
438
461
|
}
|
|
439
462
|
},
|
|
440
463
|
enumerable: false,
|
|
441
464
|
configurable: true
|
|
442
465
|
});
|
|
443
|
-
Object.defineProperty(GridConditionalStyleProperty.prototype, "
|
|
466
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "bl", {
|
|
467
|
+
get: function () {
|
|
468
|
+
return this.bf;
|
|
469
|
+
},
|
|
470
|
+
set: function (a) {
|
|
471
|
+
var b = this.bf;
|
|
472
|
+
this.bf = a;
|
|
473
|
+
if (this.bf != b) {
|
|
474
|
+
this.c3("MinimumInputValue", b, a);
|
|
475
|
+
}
|
|
476
|
+
},
|
|
477
|
+
enumerable: false,
|
|
478
|
+
configurable: true
|
|
479
|
+
});
|
|
480
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "bk", {
|
|
444
481
|
get: function () {
|
|
445
|
-
return this.
|
|
482
|
+
return this.be;
|
|
446
483
|
},
|
|
447
484
|
set: function (a) {
|
|
448
|
-
var b = this.
|
|
449
|
-
this.
|
|
450
|
-
if (
|
|
451
|
-
this.
|
|
485
|
+
var b = this.be;
|
|
486
|
+
this.be = a;
|
|
487
|
+
if (this.be != b) {
|
|
488
|
+
this.c3("MaximumInputValue", b, a);
|
|
452
489
|
}
|
|
453
490
|
},
|
|
454
491
|
enumerable: false,
|
|
455
492
|
configurable: true
|
|
456
493
|
});
|
|
457
|
-
Object.defineProperty(GridConditionalStyleProperty.prototype, "
|
|
494
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "bn", {
|
|
495
|
+
get: function () {
|
|
496
|
+
return this.bh;
|
|
497
|
+
},
|
|
498
|
+
set: function (a) {
|
|
499
|
+
var b = this.bh;
|
|
500
|
+
this.bh = a;
|
|
501
|
+
if (this.bh != b) {
|
|
502
|
+
this.c3("SumInputValue", b, a);
|
|
503
|
+
}
|
|
504
|
+
},
|
|
505
|
+
enumerable: false,
|
|
506
|
+
configurable: true
|
|
507
|
+
});
|
|
508
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "a8", {
|
|
509
|
+
get: function () {
|
|
510
|
+
return this.a4;
|
|
511
|
+
},
|
|
512
|
+
set: function (a) {
|
|
513
|
+
var b = this.a4;
|
|
514
|
+
this.a4 = a;
|
|
515
|
+
if (this.a4 != b) {
|
|
516
|
+
this.c3("InternalMaximumNumericInputValue", b, a);
|
|
517
|
+
}
|
|
518
|
+
},
|
|
519
|
+
enumerable: false,
|
|
520
|
+
configurable: true
|
|
521
|
+
});
|
|
522
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "ba", {
|
|
523
|
+
get: function () {
|
|
524
|
+
return this.a6;
|
|
525
|
+
},
|
|
526
|
+
set: function (a) {
|
|
527
|
+
var b = this.a6;
|
|
528
|
+
this.a6 = a;
|
|
529
|
+
if (this.a6 != b) {
|
|
530
|
+
this.c3("InternalSumNumericInputValue", b, a);
|
|
531
|
+
}
|
|
532
|
+
},
|
|
533
|
+
enumerable: false,
|
|
534
|
+
configurable: true
|
|
535
|
+
});
|
|
536
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "a9", {
|
|
458
537
|
get: function () {
|
|
459
|
-
return this.
|
|
538
|
+
return this.a5;
|
|
539
|
+
},
|
|
540
|
+
set: function (a) {
|
|
541
|
+
var b = this.a5;
|
|
542
|
+
this.a5 = a;
|
|
543
|
+
if (this.a5 != b) {
|
|
544
|
+
this.c3("InternalMinimumNumericInputValue", b, a);
|
|
545
|
+
}
|
|
546
|
+
},
|
|
547
|
+
enumerable: false,
|
|
548
|
+
configurable: true
|
|
549
|
+
});
|
|
550
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "a1", {
|
|
551
|
+
get: function () {
|
|
552
|
+
return this.ay;
|
|
553
|
+
},
|
|
554
|
+
set: function (a) {
|
|
555
|
+
var b = this.ay;
|
|
556
|
+
this.ay = a;
|
|
557
|
+
if (+(this.ay) != +b) {
|
|
558
|
+
this.c3("InternalMaximumDateInputValue", b, a);
|
|
559
|
+
}
|
|
560
|
+
},
|
|
561
|
+
enumerable: false,
|
|
562
|
+
configurable: true
|
|
563
|
+
});
|
|
564
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "a2", {
|
|
565
|
+
get: function () {
|
|
566
|
+
return this.az;
|
|
460
567
|
},
|
|
461
568
|
set: function (a) {
|
|
462
|
-
var b = this.
|
|
463
|
-
this.
|
|
464
|
-
if (+(this.
|
|
465
|
-
this.
|
|
569
|
+
var b = this.az;
|
|
570
|
+
this.az = a;
|
|
571
|
+
if (+(this.az) != +b) {
|
|
572
|
+
this.c3("InternalMinimumDateInputValue", b, a);
|
|
466
573
|
}
|
|
467
574
|
},
|
|
468
575
|
enumerable: false,
|
|
@@ -476,7 +583,7 @@ var GridConditionalStyleProperty = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
476
583
|
var b = this.e;
|
|
477
584
|
this.e = a;
|
|
478
585
|
if (this.e != b) {
|
|
479
|
-
this.
|
|
586
|
+
this.c3("ColorCollection", b, a);
|
|
480
587
|
}
|
|
481
588
|
},
|
|
482
589
|
enumerable: false,
|
|
@@ -490,7 +597,7 @@ var GridConditionalStyleProperty = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
490
597
|
var b = this.b;
|
|
491
598
|
this.b = a;
|
|
492
599
|
if (this.b != b) {
|
|
493
|
-
this.
|
|
600
|
+
this.c3("ValueCollection", b, a);
|
|
494
601
|
}
|
|
495
602
|
},
|
|
496
603
|
enumerable: false,
|
|
@@ -504,31 +611,31 @@ var GridConditionalStyleProperty = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
504
611
|
var b = this.a;
|
|
505
612
|
this.a = this.d;
|
|
506
613
|
if (this.a != b) {
|
|
507
|
-
this.
|
|
614
|
+
this.c3("InternalValueCollection", b, this.d);
|
|
508
615
|
}
|
|
509
616
|
},
|
|
510
617
|
enumerable: false,
|
|
511
618
|
configurable: true
|
|
512
619
|
});
|
|
513
|
-
Object.defineProperty(GridConditionalStyleProperty.prototype, "
|
|
620
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "av", {
|
|
514
621
|
get: function () {
|
|
515
|
-
return this.
|
|
622
|
+
return this.at || this.as || this.au;
|
|
516
623
|
},
|
|
517
624
|
enumerable: false,
|
|
518
625
|
configurable: true
|
|
519
626
|
});
|
|
520
|
-
Object.defineProperty(GridConditionalStyleProperty.prototype, "
|
|
627
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "at", {
|
|
521
628
|
get: function () {
|
|
522
|
-
if (this.
|
|
629
|
+
if (this.al == 0) {
|
|
523
630
|
return false;
|
|
524
631
|
}
|
|
525
|
-
if (!isNaN_(this.
|
|
632
|
+
if (!isNaN_(this.a9) && this.ah != 1) {
|
|
526
633
|
return false;
|
|
527
634
|
}
|
|
528
|
-
if (+(this.
|
|
635
|
+
if (+(this.a2) != +(dateMinValue())) {
|
|
529
636
|
return false;
|
|
530
637
|
}
|
|
531
|
-
if (this.u != null && (this.ah != 1 || (!isNaN_(this.
|
|
638
|
+
if (this.u != null && (this.ah != 1 || (!isNaN_(this.a8) && !isNaN_(this.a9)))) {
|
|
532
639
|
return false;
|
|
533
640
|
}
|
|
534
641
|
return true;
|
|
@@ -536,18 +643,18 @@ var GridConditionalStyleProperty = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
536
643
|
enumerable: false,
|
|
537
644
|
configurable: true
|
|
538
645
|
});
|
|
539
|
-
Object.defineProperty(GridConditionalStyleProperty.prototype, "
|
|
646
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "as", {
|
|
540
647
|
get: function () {
|
|
541
|
-
if (this.
|
|
648
|
+
if (this.al == 0) {
|
|
542
649
|
return false;
|
|
543
650
|
}
|
|
544
|
-
if (!isNaN_(this.
|
|
651
|
+
if (!isNaN_(this.a8) && this.ah != 1) {
|
|
545
652
|
return false;
|
|
546
653
|
}
|
|
547
|
-
if (+(this.
|
|
654
|
+
if (+(this.a1) != +(dateMinValue())) {
|
|
548
655
|
return false;
|
|
549
656
|
}
|
|
550
|
-
if (this.t != null && (this.ah != 1 || (!isNaN_(this.
|
|
657
|
+
if (this.t != null && (this.ah != 1 || (!isNaN_(this.a8) && !isNaN_(this.a9)))) {
|
|
551
658
|
return false;
|
|
552
659
|
}
|
|
553
660
|
return true;
|
|
@@ -555,82 +662,89 @@ var GridConditionalStyleProperty = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
555
662
|
enumerable: false,
|
|
556
663
|
configurable: true
|
|
557
664
|
});
|
|
558
|
-
Object.defineProperty(GridConditionalStyleProperty.prototype, "
|
|
665
|
+
Object.defineProperty(GridConditionalStyleProperty.prototype, "au", {
|
|
559
666
|
get: function () {
|
|
560
667
|
return false;
|
|
561
668
|
},
|
|
562
669
|
enumerable: false,
|
|
563
670
|
configurable: true
|
|
564
671
|
});
|
|
565
|
-
GridConditionalStyleProperty.prototype.
|
|
566
|
-
this.
|
|
672
|
+
GridConditionalStyleProperty.prototype.c3 = function (a, b, c) {
|
|
673
|
+
this.c4(a, b, c);
|
|
567
674
|
if (this.propertyChanged != null) {
|
|
568
675
|
this.propertyChanged(this, new PropertyChangedEventArgs(a));
|
|
569
676
|
}
|
|
570
677
|
};
|
|
571
|
-
GridConditionalStyleProperty.prototype.
|
|
678
|
+
GridConditionalStyleProperty.prototype.c4 = function (a, b, c) {
|
|
572
679
|
switch (a) {
|
|
573
|
-
case "
|
|
574
|
-
|
|
680
|
+
case "DoubleValue":
|
|
681
|
+
case "IntValue":
|
|
682
|
+
case "StringValue":
|
|
683
|
+
case "DateValue":
|
|
684
|
+
case "BoolValue":
|
|
685
|
+
case "FontValue":
|
|
686
|
+
case "ObjectValue":
|
|
687
|
+
case "BrushValue":
|
|
688
|
+
this.ar = true;
|
|
575
689
|
break;
|
|
576
690
|
case "ValueCollection":
|
|
577
|
-
this.
|
|
691
|
+
this.aq = true;
|
|
578
692
|
break;
|
|
579
693
|
case "MinimumInputValue":
|
|
580
694
|
if (typeof c === 'number') {
|
|
581
|
-
this.
|
|
695
|
+
this.a9 = c;
|
|
582
696
|
}
|
|
583
697
|
if (typeof c === 'number') {
|
|
584
|
-
this.
|
|
698
|
+
this.a9 = typeGetValue(c);
|
|
585
699
|
}
|
|
586
700
|
if (typeof c === 'number') {
|
|
587
|
-
this.
|
|
701
|
+
this.a9 = c;
|
|
588
702
|
}
|
|
589
703
|
if (typeof c === 'number') {
|
|
590
|
-
this.
|
|
704
|
+
this.a9 = typeGetValue(c);
|
|
591
705
|
}
|
|
592
706
|
if (typeof c === 'number') {
|
|
593
|
-
this.
|
|
707
|
+
this.a9 = typeGetValue(c);
|
|
594
708
|
}
|
|
595
709
|
if (typeCast(Date_$type, c) !== null) {
|
|
596
|
-
this.
|
|
710
|
+
this.a2 = c;
|
|
597
711
|
}
|
|
598
712
|
break;
|
|
599
713
|
case "MaximumInputValue":
|
|
600
714
|
if (typeof c === 'number') {
|
|
601
|
-
this.
|
|
715
|
+
this.a8 = c;
|
|
602
716
|
}
|
|
603
717
|
if (typeof c === 'number') {
|
|
604
|
-
this.
|
|
718
|
+
this.a8 = typeGetValue(c);
|
|
605
719
|
}
|
|
606
720
|
if (typeof c === 'number') {
|
|
607
|
-
this.
|
|
721
|
+
this.a8 = c;
|
|
608
722
|
}
|
|
609
723
|
if (typeof c === 'number') {
|
|
610
|
-
this.
|
|
724
|
+
this.a8 = typeGetValue(c);
|
|
611
725
|
}
|
|
612
726
|
if (typeof c === 'number') {
|
|
613
|
-
this.
|
|
727
|
+
this.a8 = typeGetValue(c);
|
|
614
728
|
}
|
|
615
729
|
if (typeCast(Date_$type, c) !== null) {
|
|
616
|
-
this.
|
|
730
|
+
this.a1 = c;
|
|
617
731
|
}
|
|
618
732
|
break;
|
|
619
733
|
case "SumInputValue":
|
|
620
734
|
if (typeof c === 'number') {
|
|
621
|
-
this.
|
|
735
|
+
this.ba = c;
|
|
622
736
|
}
|
|
623
737
|
if (typeof c === 'number') {
|
|
624
|
-
this.
|
|
738
|
+
this.ba = typeGetValue(c);
|
|
625
739
|
}
|
|
626
740
|
if (typeof c === 'number') {
|
|
627
|
-
this.
|
|
741
|
+
this.ba = c;
|
|
628
742
|
}
|
|
629
743
|
if (typeof c === 'number') {
|
|
630
|
-
this.
|
|
744
|
+
this.ba = typeGetValue(c);
|
|
631
745
|
}
|
|
632
746
|
if (typeof c === 'number') {
|
|
633
|
-
this.
|
|
747
|
+
this.ba = typeGetValue(c);
|
|
634
748
|
}
|
|
635
749
|
break;
|
|
636
750
|
case "InputValueExpression":
|
|
@@ -667,8 +781,8 @@ var GridConditionalStyleProperty = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
667
781
|
if (this.w != null) {
|
|
668
782
|
return this.w;
|
|
669
783
|
}
|
|
670
|
-
if (this.n == null && this.
|
|
671
|
-
var a_1 = FilterExpressionParsingHelper.getFilterExpression(this.
|
|
784
|
+
if (this.n == null && this.b5 != null) {
|
|
785
|
+
var a_1 = FilterExpressionParsingHelper.getFilterExpression(this.b5);
|
|
672
786
|
if (!stringIsNullOrEmpty(a_1.errors)) {
|
|
673
787
|
if (this.filterStringErrorsParsing != null) {
|
|
674
788
|
this.filterStringErrorsParsing(this, ((function () {
|
|
@@ -690,8 +804,8 @@ var GridConditionalStyleProperty = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
690
804
|
if (this.y != null) {
|
|
691
805
|
return this.y;
|
|
692
806
|
}
|
|
693
|
-
if (this.p == null && this.
|
|
694
|
-
var a_2 = FilterExpressionParsingHelper.getFilterExpression(this.
|
|
807
|
+
if (this.p == null && this.cn != null) {
|
|
808
|
+
var a_2 = FilterExpressionParsingHelper.getFilterExpression(this.cn);
|
|
695
809
|
if (!stringIsNullOrEmpty(a_2.errors)) {
|
|
696
810
|
if (this.filterStringErrorsParsing != null) {
|
|
697
811
|
this.filterStringErrorsParsing(this, ((function () {
|
|
@@ -713,8 +827,8 @@ var GridConditionalStyleProperty = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
713
827
|
if (this.x != null) {
|
|
714
828
|
return this.x;
|
|
715
829
|
}
|
|
716
|
-
if (this.o == null && this.
|
|
717
|
-
var a_3 = FilterExpressionParsingHelper.getFilterExpression(this.
|
|
830
|
+
if (this.o == null && this.ch != null) {
|
|
831
|
+
var a_3 = FilterExpressionParsingHelper.getFilterExpression(this.ch);
|
|
718
832
|
if (!stringIsNullOrEmpty(a_3.errors)) {
|
|
719
833
|
if (this.filterStringErrorsParsing != null) {
|
|
720
834
|
this.filterStringErrorsParsing(this, ((function () {
|
|
@@ -736,8 +850,8 @@ var GridConditionalStyleProperty = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
736
850
|
if (this.ad != null) {
|
|
737
851
|
return this.ad;
|
|
738
852
|
}
|
|
739
|
-
if (this.q == null && this.
|
|
740
|
-
var a_4 = FilterExpressionParsingHelper.getFilterExpression(this.
|
|
853
|
+
if (this.q == null && this.cz != null) {
|
|
854
|
+
var a_4 = FilterExpressionParsingHelper.getFilterExpression(this.cz);
|
|
741
855
|
if (!stringIsNullOrEmpty(a_4.errors)) {
|
|
742
856
|
if (this.filterStringErrorsParsing != null) {
|
|
743
857
|
this.filterStringErrorsParsing(this, ((function () {
|
|
@@ -755,6 +869,38 @@ var GridConditionalStyleProperty = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
755
869
|
}
|
|
756
870
|
return this.q;
|
|
757
871
|
};
|
|
872
|
+
GridConditionalStyleProperty.prototype.bi = function (a) {
|
|
873
|
+
if (a == Number_$type) {
|
|
874
|
+
return this.a7;
|
|
875
|
+
}
|
|
876
|
+
if (a == Date_$type) {
|
|
877
|
+
return this.a0;
|
|
878
|
+
}
|
|
879
|
+
if (a == String_$type) {
|
|
880
|
+
return this.cv;
|
|
881
|
+
}
|
|
882
|
+
if (a == Boolean_$type) {
|
|
883
|
+
return this.ap;
|
|
884
|
+
}
|
|
885
|
+
if (a == Base.$) {
|
|
886
|
+
return this.bm;
|
|
887
|
+
}
|
|
888
|
+
if (a == FontInfo.$) {
|
|
889
|
+
return this.aj;
|
|
890
|
+
}
|
|
891
|
+
if (a == Brush.$) {
|
|
892
|
+
return this.c8;
|
|
893
|
+
}
|
|
894
|
+
if (a.isEnumType) {
|
|
895
|
+
if (this.cv != null) {
|
|
896
|
+
return EnumUtil.parse(a, this.cv, true);
|
|
897
|
+
}
|
|
898
|
+
else {
|
|
899
|
+
return EnumUtil.toObject(a, this.bc);
|
|
900
|
+
}
|
|
901
|
+
}
|
|
902
|
+
return null;
|
|
903
|
+
};
|
|
758
904
|
GridConditionalStyleProperty.$t = markType(GridConditionalStyleProperty, 'GridConditionalStyleProperty', Base.$, [INotifyPropertyChanged_$type]);
|
|
759
905
|
return GridConditionalStyleProperty;
|
|
760
906
|
}(Base));
|