igniteui-webcomponents-grids 4.2.2 → 4.2.4-alpha
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-webcomponents-grids.umd.js +1132 -799
- package/bundles/igniteui-webcomponents-grids.umd.min.js +1 -1
- package/esm2015/lib/BaseEditorView.js +30 -14
- package/esm2015/lib/CheckboxListView_combined.js +1 -0
- package/esm2015/lib/ColumnFilterCondition_combined.js +32 -0
- package/esm2015/lib/ComboEditorView.js +111 -105
- package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +400 -343
- package/esm2015/lib/DateEditorView.js +94 -87
- package/esm2015/lib/EditorCell.js +10 -10
- package/esm2015/lib/FilterCell.js +76 -60
- package/esm2015/lib/FilterCellPresenter.js +6 -3
- package/esm2015/lib/GridColumnOptionsView_combined.js +47 -22
- package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +49 -23
- package/esm2015/lib/ISummaryChooserView_combined.js +1 -0
- package/esm2015/lib/NumericEditorView.js +3 -3
- package/esm2015/lib/TextEditorView.js +82 -75
- package/esm2015/lib/igc-data-grid-comparison-operator-selector-component.js +104 -59
- package/esm2015/lib/igc-grid-column-options-component.js +21 -1
- package/esm2015/lib/igc-grid-column-summary-options-component.js +16 -2
- package/esm5/lib/BaseEditorView.js +34 -14
- package/esm5/lib/CheckboxListView_combined.js +1 -0
- package/esm5/lib/ColumnFilterCondition_combined.js +32 -0
- package/esm5/lib/ComboEditorView.js +108 -102
- package/esm5/lib/ComparisonOperatorSelectorView_combined.js +407 -342
- package/esm5/lib/DateEditorView.js +93 -86
- package/esm5/lib/EditorCell.js +10 -10
- package/esm5/lib/FilterCell.js +80 -60
- package/esm5/lib/FilterCellPresenter.js +6 -3
- package/esm5/lib/GridColumnOptionsView_combined.js +55 -22
- package/esm5/lib/GridColumnSummaryOptionsView_combined.js +57 -23
- package/esm5/lib/ISummaryChooserView_combined.js +1 -0
- package/esm5/lib/NumericEditorView.js +3 -3
- package/esm5/lib/TextEditorView.js +82 -75
- package/esm5/lib/igc-data-grid-comparison-operator-selector-component.js +117 -59
- package/esm5/lib/igc-grid-column-options-component.js +29 -1
- package/esm5/lib/igc-grid-column-summary-options-component.js +24 -2
- package/fesm2015/igniteui-webcomponents-grids.js +1076 -804
- package/fesm5/igniteui-webcomponents-grids.js +1132 -799
- package/grids/3rdpartylicenses.txt +445 -0
- package/grids/combined.js +44 -160
- package/grids/index.d.ts +2 -0
- package/grids/lib/igc-grid-base-directive.d.ts +14 -0
- package/grids/lib/igc-grid-edit-done-event-args.d.ts +5 -1
- package/grids/lib/igc-grid-selection-range.d.ts +1 -0
- package/grids/lib/igc-pivot-date-dimension.d.ts +1 -1
- package/grids/lib/igc-pivot-grid-column.d.ts +32 -0
- package/grids/lib/igc-pivot-grid-record.d.ts +28 -0
- package/grids/lib/igc-row-data-event-args.d.ts +4 -0
- package/grids/styles.css +1 -1
- package/grids/themes/dark/bootstrap.css +1 -1
- package/grids/themes/dark/fluent.css +1 -1
- package/grids/themes/dark/indigo.css +1 -1
- package/grids/themes/dark/material.css +1 -1
- package/grids/themes/light/bootstrap.css +1 -1
- package/grids/themes/light/fluent.css +1 -1
- package/grids/themes/light/indigo.css +1 -1
- package/grids/themes/light/material.css +1 -1
- package/lib/BaseEditorView.d.ts +12 -8
- package/lib/ColumnFilterCondition_combined.d.ts +2 -0
- package/lib/ComboEditorView.d.ts +15 -14
- package/lib/ComboEditorView_ComboExternal.d.ts +1 -0
- package/lib/ComparisonOperatorSelectorView_combined.d.ts +104 -95
- package/lib/DateEditorView.d.ts +13 -12
- package/lib/FilterCell.d.ts +23 -20
- package/lib/GridColumnOptionsView_combined.d.ts +10 -5
- package/lib/GridColumnSummaryOptionsView_combined.d.ts +13 -8
- package/lib/IEditorView.d.ts +2 -0
- package/lib/TextEditorView.d.ts +10 -9
- package/lib/igc-data-grid-comparison-operator-selector-component.d.ts +11 -0
- package/lib/igc-grid-column-options-component.d.ts +8 -0
- package/lib/igc-grid-column-summary-options-component.d.ts +2 -0
- package/package.json +4 -4
|
@@ -13866,6 +13866,7 @@ var Grid = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
13866
13866
|
_this.cv = new EditorDefinition();
|
|
13867
13867
|
_this.cw = new EditRowDefinition();
|
|
13868
13868
|
_this.c5 = new FilterRowDefinition();
|
|
13869
|
+
_this.c5.grid = _this;
|
|
13869
13870
|
_this.aav = _this.aaw;
|
|
13870
13871
|
_this.yn = _this.yo;
|
|
13871
13872
|
_this.yt = GridStyleRepository.ax;
|
|
@@ -31275,6 +31276,12 @@ var FilterRowDefinition = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
31275
31276
|
};
|
|
31276
31277
|
FilterRowDefinition.prototype.c2 = function (a, b) {
|
|
31277
31278
|
switch (b.propertyName) {
|
|
31279
|
+
case "CellTextColor":
|
|
31280
|
+
this.dg();
|
|
31281
|
+
break;
|
|
31282
|
+
case "CellBackground":
|
|
31283
|
+
this.c9();
|
|
31284
|
+
break;
|
|
31278
31285
|
}
|
|
31279
31286
|
};
|
|
31280
31287
|
FilterRowDefinition.prototype.cx = function (a, b, c, d) {
|
|
@@ -31297,6 +31304,31 @@ var FilterRowDefinition = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
31297
31304
|
e.lm = f.ep;
|
|
31298
31305
|
}
|
|
31299
31306
|
};
|
|
31307
|
+
FilterRowDefinition.prototype.dg = function () {
|
|
31308
|
+
if (this.el == null) {
|
|
31309
|
+
if (this.grid != null && this.grid.zv != null) {
|
|
31310
|
+
this.d7 = this.grid.zv;
|
|
31311
|
+
return;
|
|
31312
|
+
}
|
|
31313
|
+
this.d7 = this.eh();
|
|
31314
|
+
}
|
|
31315
|
+
else {
|
|
31316
|
+
this.d7 = this.el;
|
|
31317
|
+
}
|
|
31318
|
+
};
|
|
31319
|
+
FilterRowDefinition.prototype.c9 = function () {
|
|
31320
|
+
if (this.d8 == null) {
|
|
31321
|
+
if (this.grid != null && this.grid.zt != null) {
|
|
31322
|
+
this.d1 = this.grid.zt;
|
|
31323
|
+
}
|
|
31324
|
+
else {
|
|
31325
|
+
this.d1 = this.ec();
|
|
31326
|
+
}
|
|
31327
|
+
}
|
|
31328
|
+
else {
|
|
31329
|
+
this.d1 = this.d8;
|
|
31330
|
+
}
|
|
31331
|
+
};
|
|
31300
31332
|
FilterRowDefinition.$t = markType(FilterRowDefinition, 'FilterRowDefinition', DefinitionBase.$);
|
|
31301
31333
|
return FilterRowDefinition;
|
|
31302
31334
|
}(DefinitionBase));
|
|
@@ -53130,6 +53162,7 @@ var BaseEditorView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
53130
53162
|
_this.h = null;
|
|
53131
53163
|
_this._container = null;
|
|
53132
53164
|
_this.g = false;
|
|
53165
|
+
_this.x = null;
|
|
53133
53166
|
_this.valueProvided = null;
|
|
53134
53167
|
_this.userTyping = null;
|
|
53135
53168
|
_this.lostFocus = null;
|
|
@@ -53156,7 +53189,7 @@ var BaseEditorView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
53156
53189
|
set: function (a) {
|
|
53157
53190
|
var b = this.i;
|
|
53158
53191
|
this.i = a;
|
|
53159
|
-
this.
|
|
53192
|
+
this.u("Value", b, this.i);
|
|
53160
53193
|
},
|
|
53161
53194
|
enumerable: true,
|
|
53162
53195
|
configurable: true
|
|
@@ -53169,7 +53202,7 @@ var BaseEditorView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
53169
53202
|
var b = this.e;
|
|
53170
53203
|
this.e = a;
|
|
53171
53204
|
if (b != this.e) {
|
|
53172
|
-
this.
|
|
53205
|
+
this.u("IsEnabled", b, this.e);
|
|
53173
53206
|
}
|
|
53174
53207
|
},
|
|
53175
53208
|
enumerable: true,
|
|
@@ -53193,28 +53226,42 @@ var BaseEditorView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
53193
53226
|
var b = this.f;
|
|
53194
53227
|
this.f = a;
|
|
53195
53228
|
if (b != this.f) {
|
|
53196
|
-
this.
|
|
53229
|
+
this.u("ShowClearButton", b, this.f);
|
|
53230
|
+
}
|
|
53231
|
+
},
|
|
53232
|
+
enumerable: true,
|
|
53233
|
+
configurable: true
|
|
53234
|
+
});
|
|
53235
|
+
Object.defineProperty(BaseEditorView.prototype, "textColor", {
|
|
53236
|
+
get: function () {
|
|
53237
|
+
return this.x;
|
|
53238
|
+
},
|
|
53239
|
+
set: function (a) {
|
|
53240
|
+
var b = this.x;
|
|
53241
|
+
this.x = a;
|
|
53242
|
+
if (b != this.x) {
|
|
53243
|
+
this.u("TextColor", b, this.x);
|
|
53197
53244
|
}
|
|
53198
53245
|
},
|
|
53199
53246
|
enumerable: true,
|
|
53200
53247
|
configurable: true
|
|
53201
53248
|
});
|
|
53202
|
-
BaseEditorView.prototype.
|
|
53249
|
+
BaseEditorView.prototype.q = function (a, b) {
|
|
53203
53250
|
if (this.valueProvided != null) {
|
|
53204
53251
|
this.valueProvided(this, a, b);
|
|
53205
53252
|
}
|
|
53206
53253
|
};
|
|
53207
|
-
BaseEditorView.prototype.
|
|
53254
|
+
BaseEditorView.prototype.p = function () {
|
|
53208
53255
|
if (this.userTyping != null) {
|
|
53209
53256
|
this.userTyping(this);
|
|
53210
53257
|
}
|
|
53211
53258
|
};
|
|
53212
|
-
BaseEditorView.prototype.
|
|
53259
|
+
BaseEditorView.prototype.o = function () {
|
|
53213
53260
|
if (this.lostFocus != null) {
|
|
53214
53261
|
this.lostFocus(this);
|
|
53215
53262
|
}
|
|
53216
53263
|
};
|
|
53217
|
-
BaseEditorView.prototype.
|
|
53264
|
+
BaseEditorView.prototype.n = function () {
|
|
53218
53265
|
if (this.gotFocus != null) {
|
|
53219
53266
|
this.gotFocus(this);
|
|
53220
53267
|
}
|
|
@@ -53246,31 +53293,36 @@ var BaseEditorView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
53246
53293
|
this.b = this.h.getRequestAnimationFrame();
|
|
53247
53294
|
}
|
|
53248
53295
|
this.b(function () {
|
|
53249
|
-
_this.
|
|
53296
|
+
_this.s();
|
|
53250
53297
|
_this.d = false;
|
|
53251
53298
|
});
|
|
53252
53299
|
this.d = true;
|
|
53253
53300
|
};
|
|
53254
|
-
BaseEditorView.prototype.
|
|
53301
|
+
BaseEditorView.prototype.s = function () {
|
|
53255
53302
|
};
|
|
53256
53303
|
BaseEditorView.prototype.getEditorValue = function () {
|
|
53257
53304
|
return null;
|
|
53258
53305
|
};
|
|
53259
53306
|
BaseEditorView.prototype.setEditorValue = function (a) {
|
|
53260
53307
|
};
|
|
53261
|
-
BaseEditorView.prototype.
|
|
53308
|
+
BaseEditorView.prototype.u = function (a, b, c) {
|
|
53262
53309
|
switch (a) {
|
|
53263
53310
|
case "Value":
|
|
53264
|
-
this.
|
|
53311
|
+
this.w();
|
|
53265
53312
|
break;
|
|
53266
53313
|
case "IsEnabled":
|
|
53267
|
-
this.
|
|
53314
|
+
this.r();
|
|
53315
|
+
break;
|
|
53316
|
+
case "TextColor":
|
|
53317
|
+
this.v();
|
|
53268
53318
|
break;
|
|
53269
53319
|
}
|
|
53270
53320
|
};
|
|
53271
|
-
BaseEditorView.prototype.
|
|
53321
|
+
BaseEditorView.prototype.w = function () {
|
|
53322
|
+
};
|
|
53323
|
+
BaseEditorView.prototype.r = function () {
|
|
53272
53324
|
};
|
|
53273
|
-
BaseEditorView.prototype.
|
|
53325
|
+
BaseEditorView.prototype.v = function () {
|
|
53274
53326
|
};
|
|
53275
53327
|
BaseEditorView.prototype.onInputKeyDown = function (a, b) {
|
|
53276
53328
|
if (!this.g) {
|
|
@@ -53324,9 +53376,9 @@ var TextEditorView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
53324
53376
|
__extends(TextEditorView, _super);
|
|
53325
53377
|
function TextEditorView(a, b, c) {
|
|
53326
53378
|
var _this = _super.call(this, a, c) || this;
|
|
53327
|
-
_this.
|
|
53328
|
-
_this.
|
|
53329
|
-
_this.
|
|
53379
|
+
_this.aa = null;
|
|
53380
|
+
_this.z = null;
|
|
53381
|
+
_this.y = null;
|
|
53330
53382
|
var d = a.createElement("div");
|
|
53331
53383
|
d.setRawStyleProperty("display", "flex");
|
|
53332
53384
|
d.setRawStyleProperty("width", "100%");
|
|
@@ -53334,61 +53386,62 @@ var TextEditorView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
53334
53386
|
d.setRawStyleProperty("height", "38px");
|
|
53335
53387
|
_this.container = d;
|
|
53336
53388
|
var e = a.getSubRenderer(d);
|
|
53337
|
-
_this.
|
|
53338
|
-
_this.
|
|
53339
|
-
_this.
|
|
53340
|
-
_this.
|
|
53341
|
-
_this.
|
|
53342
|
-
_this.
|
|
53343
|
-
var f = e.getExternal(_this.
|
|
53389
|
+
_this.z = new XInputGroup();
|
|
53390
|
+
_this.z.provideContainer(e);
|
|
53391
|
+
_this.z.d = 0;
|
|
53392
|
+
_this.z.j = b;
|
|
53393
|
+
_this.z.n = 3;
|
|
53394
|
+
_this.z.disabled = !_this.isEnabled;
|
|
53395
|
+
var f = e.getExternal(_this.z, e.rootWrapper, null);
|
|
53344
53396
|
var g = a.createElement("div");
|
|
53345
53397
|
g.setRawStyleProperty("width", "100%");
|
|
53346
53398
|
var h = a.getSubRenderer(g);
|
|
53347
|
-
_this.
|
|
53348
|
-
_this.
|
|
53349
|
-
_this.
|
|
53350
|
-
_this.
|
|
53351
|
-
|
|
53352
|
-
_this.
|
|
53353
|
-
_this.
|
|
53399
|
+
_this.y = new XInput();
|
|
53400
|
+
_this.y.provideContainer(h);
|
|
53401
|
+
_this.y.b6 = "text";
|
|
53402
|
+
_this.y.disabled = !_this.isEnabled;
|
|
53403
|
+
_this.y.d1 = _this.textColor;
|
|
53404
|
+
var i = e.getExternal(_this.y, h.rootWrapper, null);
|
|
53405
|
+
_this.z.appendContentChild(g);
|
|
53406
|
+
_this.z.inputs.add(_this.y);
|
|
53354
53407
|
return _this;
|
|
53355
53408
|
}
|
|
53356
53409
|
TextEditorView.prototype.setFont = function (a) {
|
|
53357
|
-
if (this.
|
|
53358
|
-
this.
|
|
53410
|
+
if (this.y != null) {
|
|
53411
|
+
this.y.af = a;
|
|
53359
53412
|
}
|
|
53360
53413
|
};
|
|
53361
53414
|
TextEditorView.prototype.attachEvents = function () {
|
|
53362
|
-
if (this.
|
|
53363
|
-
var a = this.
|
|
53364
|
-
a.changing = delegateCombine(a.changing, runOn(this, this.
|
|
53365
|
-
var b = this.
|
|
53415
|
+
if (this.y != null) {
|
|
53416
|
+
var a = this.y;
|
|
53417
|
+
a.changing = delegateCombine(a.changing, runOn(this, this.ac));
|
|
53418
|
+
var b = this.y;
|
|
53366
53419
|
b.keyDown = delegateCombine(b.keyDown, runOn(this, this.onInputKeyDown));
|
|
53367
|
-
var c = this.
|
|
53368
|
-
c.compositionEnd = delegateCombine(c.compositionEnd, runOn(this, this.
|
|
53369
|
-
var d = this.
|
|
53370
|
-
d.gotFocus = delegateCombine(d.gotFocus, runOn(this, this.
|
|
53371
|
-
var e = this.
|
|
53372
|
-
e.lostFocus = delegateCombine(e.lostFocus, runOn(this, this.
|
|
53420
|
+
var c = this.y;
|
|
53421
|
+
c.compositionEnd = delegateCombine(c.compositionEnd, runOn(this, this.ab));
|
|
53422
|
+
var d = this.y;
|
|
53423
|
+
d.gotFocus = delegateCombine(d.gotFocus, runOn(this, this.ad));
|
|
53424
|
+
var e = this.y;
|
|
53425
|
+
e.lostFocus = delegateCombine(e.lostFocus, runOn(this, this.ae));
|
|
53373
53426
|
}
|
|
53374
53427
|
};
|
|
53375
53428
|
TextEditorView.prototype.detachEvents = function () {
|
|
53376
|
-
if (this.
|
|
53377
|
-
var a = this.
|
|
53378
|
-
a.changing = delegateRemove(a.changing, runOn(this, this.
|
|
53379
|
-
var b = this.
|
|
53429
|
+
if (this.y != null) {
|
|
53430
|
+
var a = this.y;
|
|
53431
|
+
a.changing = delegateRemove(a.changing, runOn(this, this.ac));
|
|
53432
|
+
var b = this.y;
|
|
53380
53433
|
b.keyDown = delegateRemove(b.keyDown, runOn(this, this.onInputKeyDown));
|
|
53381
|
-
var c = this.
|
|
53382
|
-
c.compositionEnd = delegateRemove(c.compositionEnd, runOn(this, this.
|
|
53383
|
-
var d = this.
|
|
53384
|
-
d.gotFocus = delegateRemove(d.gotFocus, runOn(this, this.
|
|
53385
|
-
var e = this.
|
|
53386
|
-
e.lostFocus = delegateRemove(e.lostFocus, runOn(this, this.
|
|
53434
|
+
var c = this.y;
|
|
53435
|
+
c.compositionEnd = delegateRemove(c.compositionEnd, runOn(this, this.ab));
|
|
53436
|
+
var d = this.y;
|
|
53437
|
+
d.gotFocus = delegateRemove(d.gotFocus, runOn(this, this.ad));
|
|
53438
|
+
var e = this.y;
|
|
53439
|
+
e.lostFocus = delegateRemove(e.lostFocus, runOn(this, this.ae));
|
|
53387
53440
|
}
|
|
53388
53441
|
};
|
|
53389
53442
|
TextEditorView.prototype.onTargetChanged = function () {
|
|
53390
|
-
this.
|
|
53391
|
-
if (this.
|
|
53443
|
+
this.aa = null;
|
|
53444
|
+
if (this.y != null) {
|
|
53392
53445
|
this.focus();
|
|
53393
53446
|
}
|
|
53394
53447
|
};
|
|
@@ -53403,73 +53456,79 @@ var TextEditorView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
53403
53456
|
if (this.a.isEditRefocusDesired) {
|
|
53404
53457
|
var a = this.h.rootWrapper.getNativeElement();
|
|
53405
53458
|
if (a == document.activeElement || a.contains(document.activeElement)) {
|
|
53406
|
-
this.
|
|
53459
|
+
this.y.cp();
|
|
53407
53460
|
this.focus();
|
|
53408
53461
|
}
|
|
53409
53462
|
}
|
|
53410
53463
|
};
|
|
53411
|
-
TextEditorView.prototype.
|
|
53464
|
+
TextEditorView.prototype.s = function () {
|
|
53412
53465
|
var _this = this;
|
|
53413
|
-
if (this.
|
|
53414
|
-
this.
|
|
53415
|
-
if (this.
|
|
53416
|
-
window.setTimeout(function () { return _this.
|
|
53466
|
+
if (this.y != null) {
|
|
53467
|
+
this.y.focus(true);
|
|
53468
|
+
if (this.y.b6 != "date") {
|
|
53469
|
+
window.setTimeout(function () { return _this.y.dj(); }, 0);
|
|
53417
53470
|
}
|
|
53418
53471
|
}
|
|
53419
53472
|
};
|
|
53420
|
-
TextEditorView.prototype.
|
|
53421
|
-
if (this.
|
|
53473
|
+
TextEditorView.prototype.w = function () {
|
|
53474
|
+
if (this.y != null) {
|
|
53422
53475
|
if (this.value != null) {
|
|
53423
|
-
this.
|
|
53424
|
-
this.
|
|
53425
|
-
this.
|
|
53476
|
+
this.aa = null;
|
|
53477
|
+
this.y.cm = null;
|
|
53478
|
+
this.y.cm = this.value.toString();
|
|
53426
53479
|
if (this.focusOnValueChanged) {
|
|
53427
|
-
this.
|
|
53480
|
+
this.s();
|
|
53428
53481
|
}
|
|
53429
53482
|
}
|
|
53430
53483
|
else {
|
|
53431
|
-
this.
|
|
53484
|
+
this.y.cm = null;
|
|
53432
53485
|
}
|
|
53433
53486
|
}
|
|
53434
53487
|
};
|
|
53435
|
-
TextEditorView.prototype.
|
|
53436
|
-
if (this.
|
|
53437
|
-
this.
|
|
53488
|
+
TextEditorView.prototype.r = function () {
|
|
53489
|
+
if (this.z != null) {
|
|
53490
|
+
this.z.disabled = !this.isEnabled;
|
|
53438
53491
|
}
|
|
53439
|
-
if (this.
|
|
53440
|
-
this.
|
|
53492
|
+
if (this.y != null) {
|
|
53493
|
+
this.y.disabled = !this.isEnabled;
|
|
53441
53494
|
}
|
|
53442
53495
|
};
|
|
53443
|
-
TextEditorView.prototype.
|
|
53444
|
-
|
|
53496
|
+
TextEditorView.prototype.v = function () {
|
|
53497
|
+
_super.prototype.v.call(this);
|
|
53498
|
+
if (this.y != null) {
|
|
53499
|
+
this.y.d1 = this.textColor;
|
|
53500
|
+
}
|
|
53501
|
+
};
|
|
53502
|
+
TextEditorView.prototype.ac = function (a, b) {
|
|
53503
|
+
this.p();
|
|
53445
53504
|
if (b.isCompositionInProgress) {
|
|
53446
53505
|
return;
|
|
53447
53506
|
}
|
|
53448
|
-
if (this.
|
|
53449
|
-
this.
|
|
53507
|
+
if (this.aa != null && this.aa != b.value) {
|
|
53508
|
+
this.aa = null;
|
|
53450
53509
|
return;
|
|
53451
53510
|
}
|
|
53452
|
-
this.
|
|
53453
|
-
};
|
|
53454
|
-
TextEditorView.prototype.y = function (a, b) {
|
|
53455
|
-
this.x = b.value;
|
|
53456
|
-
this.p(b.value, false);
|
|
53511
|
+
this.q(b.value, false);
|
|
53457
53512
|
};
|
|
53458
53513
|
TextEditorView.prototype.ab = function (a, b) {
|
|
53459
|
-
this.
|
|
53514
|
+
this.aa = b.value;
|
|
53515
|
+
this.q(b.value, false);
|
|
53460
53516
|
};
|
|
53461
|
-
TextEditorView.prototype.
|
|
53462
|
-
this.
|
|
53517
|
+
TextEditorView.prototype.ae = function (a, b) {
|
|
53518
|
+
this.o();
|
|
53519
|
+
};
|
|
53520
|
+
TextEditorView.prototype.ad = function (a, b) {
|
|
53521
|
+
this.n();
|
|
53463
53522
|
};
|
|
53464
53523
|
TextEditorView.prototype.getEditorValue = function () {
|
|
53465
|
-
if (this.
|
|
53466
|
-
return this.
|
|
53524
|
+
if (this.y != null) {
|
|
53525
|
+
return this.y.cm;
|
|
53467
53526
|
}
|
|
53468
53527
|
return null;
|
|
53469
53528
|
};
|
|
53470
53529
|
TextEditorView.prototype.setEditorValue = function (a) {
|
|
53471
|
-
if (this.
|
|
53472
|
-
this.
|
|
53530
|
+
if (this.y != null) {
|
|
53531
|
+
this.y.cm = a;
|
|
53473
53532
|
}
|
|
53474
53533
|
};
|
|
53475
53534
|
TextEditorView.$t = markType(TextEditorView, 'TextEditorView', BaseEditorView.$);
|
|
@@ -53489,15 +53548,15 @@ var NumericEditorView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
53489
53548
|
__extends(NumericEditorView, _super);
|
|
53490
53549
|
function NumericEditorView(a, b, c) {
|
|
53491
53550
|
var _this = _super.call(this, a, b, c) || this;
|
|
53492
|
-
_this.
|
|
53551
|
+
_this.y.b6 = "number";
|
|
53493
53552
|
return _this;
|
|
53494
53553
|
}
|
|
53495
53554
|
NumericEditorView.prototype.getEditorValue = function () {
|
|
53496
|
-
if (this.
|
|
53555
|
+
if (this.y == null || this.y.cm == null) {
|
|
53497
53556
|
return null;
|
|
53498
53557
|
}
|
|
53499
53558
|
var a = NaN;
|
|
53500
|
-
var b = tryParseNumber(this.
|
|
53559
|
+
var b = tryParseNumber(this.y.cm, a);
|
|
53501
53560
|
a = b.p1;
|
|
53502
53561
|
return a;
|
|
53503
53562
|
};
|
|
@@ -53518,11 +53577,11 @@ var DateEditorView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
53518
53577
|
__extends(DateEditorView, _super);
|
|
53519
53578
|
function DateEditorView(a, b, c) {
|
|
53520
53579
|
var _this = _super.call(this, a, c) || this;
|
|
53521
|
-
_this.
|
|
53522
|
-
_this.
|
|
53523
|
-
_this.
|
|
53524
|
-
_this.
|
|
53525
|
-
_this.
|
|
53580
|
+
_this.ad = null;
|
|
53581
|
+
_this.y = null;
|
|
53582
|
+
_this.z = null;
|
|
53583
|
+
_this.ab = false;
|
|
53584
|
+
_this.aa = false;
|
|
53526
53585
|
var d = a.createElement("div");
|
|
53527
53586
|
d.setRawStyleProperty("width", "100%");
|
|
53528
53587
|
d.setRawStyleProperty("margin-top", "-10px");
|
|
@@ -53533,87 +53592,88 @@ var DateEditorView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
53533
53592
|
e.append(f);
|
|
53534
53593
|
var g = a.createElement("div");
|
|
53535
53594
|
e.append(g);
|
|
53536
|
-
_this.
|
|
53537
|
-
_this.
|
|
53538
|
-
_this.
|
|
53539
|
-
_this.
|
|
53540
|
-
_this.
|
|
53541
|
-
_this.
|
|
53542
|
-
_this.
|
|
53543
|
-
|
|
53544
|
-
|
|
53545
|
-
|
|
53595
|
+
_this.y = new DatePicker();
|
|
53596
|
+
_this.y.ar = false;
|
|
53597
|
+
_this.y.provideContainer(e);
|
|
53598
|
+
_this.y.w = b;
|
|
53599
|
+
_this.y.y = 3;
|
|
53600
|
+
_this.y.as = _this.showClearButton;
|
|
53601
|
+
_this.y.at = _this.ac;
|
|
53602
|
+
_this.y.de = _this.textColor;
|
|
53603
|
+
var h = e.getExternal(_this.y, e.rootWrapper, null);
|
|
53604
|
+
if (_this.z != null) {
|
|
53605
|
+
_this.y.ad = _this.z;
|
|
53546
53606
|
}
|
|
53547
53607
|
_this.attachEvents();
|
|
53548
53608
|
return _this;
|
|
53549
53609
|
}
|
|
53550
|
-
Object.defineProperty(DateEditorView.prototype, "
|
|
53610
|
+
Object.defineProperty(DateEditorView.prototype, "ae", {
|
|
53551
53611
|
get: function () {
|
|
53552
|
-
return this.
|
|
53612
|
+
return this.ad;
|
|
53553
53613
|
},
|
|
53554
53614
|
set: function (a) {
|
|
53555
|
-
var b = this.
|
|
53556
|
-
this.
|
|
53557
|
-
if (b != this.
|
|
53558
|
-
this.
|
|
53615
|
+
var b = this.ad;
|
|
53616
|
+
this.ad = a;
|
|
53617
|
+
if (b != this.ad) {
|
|
53618
|
+
this.u("FormatString", b, this.ad);
|
|
53559
53619
|
}
|
|
53560
53620
|
},
|
|
53561
53621
|
enumerable: true,
|
|
53562
53622
|
configurable: true
|
|
53563
53623
|
});
|
|
53564
|
-
Object.defineProperty(DateEditorView.prototype, "
|
|
53624
|
+
Object.defineProperty(DateEditorView.prototype, "ac", {
|
|
53565
53625
|
get: function () {
|
|
53566
|
-
return this.
|
|
53626
|
+
return this.aa;
|
|
53567
53627
|
},
|
|
53568
53628
|
set: function (a) {
|
|
53569
|
-
var b = this.
|
|
53570
|
-
this.
|
|
53571
|
-
if (b != this.
|
|
53572
|
-
this.
|
|
53629
|
+
var b = this.aa;
|
|
53630
|
+
this.aa = a;
|
|
53631
|
+
if (b != this.aa) {
|
|
53632
|
+
this.u("ShowTodayButton", b, this.aa);
|
|
53573
53633
|
}
|
|
53574
53634
|
},
|
|
53575
53635
|
enumerable: true,
|
|
53576
53636
|
configurable: true
|
|
53577
53637
|
});
|
|
53578
53638
|
DateEditorView.prototype.setFont = function (a) {
|
|
53579
|
-
this.
|
|
53580
|
-
if (this.
|
|
53581
|
-
this.
|
|
53639
|
+
this.z = a;
|
|
53640
|
+
if (this.y != null && this.z != null) {
|
|
53641
|
+
this.y.ad = this.z;
|
|
53582
53642
|
}
|
|
53583
53643
|
};
|
|
53584
53644
|
DateEditorView.prototype.attachEvents = function () {
|
|
53585
|
-
if (this.
|
|
53586
|
-
var a = this.
|
|
53645
|
+
if (this.y != null) {
|
|
53646
|
+
var a = this.y;
|
|
53587
53647
|
a.selectedValueChanged = delegateCombine(a.selectedValueChanged, runOn(this, this.onDatePickerValueChanged));
|
|
53588
|
-
var b = this.
|
|
53648
|
+
var b = this.y;
|
|
53589
53649
|
b.gotFocus = delegateCombine(b.gotFocus, runOn(this, this.onDatePickerGotFocus));
|
|
53590
|
-
var c = this.
|
|
53650
|
+
var c = this.y;
|
|
53591
53651
|
c.lostFocus = delegateCombine(c.lostFocus, runOn(this, this.onDatePickerLostFocus));
|
|
53592
|
-
var d = this.
|
|
53652
|
+
var d = this.y;
|
|
53593
53653
|
d.keyDown = delegateCombine(d.keyDown, runOn(this, this.onInputKeyDown));
|
|
53594
|
-
var e = this.
|
|
53654
|
+
var e = this.y;
|
|
53595
53655
|
e.changing = delegateCombine(e.changing, runOn(this, this.onInputChanging));
|
|
53596
53656
|
}
|
|
53597
53657
|
};
|
|
53598
53658
|
DateEditorView.prototype.detachEvents = function () {
|
|
53599
|
-
if (this.
|
|
53600
|
-
var a = this.
|
|
53659
|
+
if (this.y != null) {
|
|
53660
|
+
var a = this.y;
|
|
53601
53661
|
a.selectedValueChanged = delegateRemove(a.selectedValueChanged, runOn(this, this.onDatePickerValueChanged));
|
|
53602
|
-
var b = this.
|
|
53662
|
+
var b = this.y;
|
|
53603
53663
|
b.gotFocus = delegateRemove(b.gotFocus, runOn(this, this.onDatePickerGotFocus));
|
|
53604
|
-
var c = this.
|
|
53664
|
+
var c = this.y;
|
|
53605
53665
|
c.lostFocus = delegateRemove(c.lostFocus, runOn(this, this.onDatePickerLostFocus));
|
|
53606
|
-
var d = this.
|
|
53666
|
+
var d = this.y;
|
|
53607
53667
|
d.keyDown = delegateRemove(d.keyDown, runOn(this, this.onInputKeyDown));
|
|
53608
|
-
var e = this.
|
|
53668
|
+
var e = this.y;
|
|
53609
53669
|
e.changing = delegateRemove(e.changing, runOn(this, this.onInputChanging));
|
|
53610
53670
|
}
|
|
53611
53671
|
};
|
|
53612
53672
|
DateEditorView.prototype.onTargetChanged = function () {
|
|
53613
|
-
if (this.
|
|
53614
|
-
this.
|
|
53673
|
+
if (this.y != null) {
|
|
53674
|
+
this.ab = true;
|
|
53615
53675
|
this.focus();
|
|
53616
|
-
this.
|
|
53676
|
+
this.ab = false;
|
|
53617
53677
|
}
|
|
53618
53678
|
};
|
|
53619
53679
|
DateEditorView.prototype.onEditStarted = function () {
|
|
@@ -53631,93 +53691,99 @@ var DateEditorView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
53631
53691
|
}
|
|
53632
53692
|
}
|
|
53633
53693
|
};
|
|
53634
|
-
DateEditorView.prototype.
|
|
53635
|
-
if (this.
|
|
53636
|
-
this.
|
|
53637
|
-
this.
|
|
53694
|
+
DateEditorView.prototype.s = function () {
|
|
53695
|
+
if (this.y != null) {
|
|
53696
|
+
this.y.focus(true);
|
|
53697
|
+
this.y.cz();
|
|
53638
53698
|
}
|
|
53639
53699
|
};
|
|
53640
|
-
DateEditorView.prototype.
|
|
53641
|
-
if (this.
|
|
53642
|
-
this.
|
|
53700
|
+
DateEditorView.prototype.ag = function () {
|
|
53701
|
+
if (this.y != null) {
|
|
53702
|
+
this.y.cc();
|
|
53643
53703
|
}
|
|
53644
53704
|
};
|
|
53645
|
-
DateEditorView.prototype.
|
|
53646
|
-
_super.prototype.
|
|
53705
|
+
DateEditorView.prototype.u = function (a, b, c) {
|
|
53706
|
+
_super.prototype.u.call(this, a, b, c);
|
|
53647
53707
|
switch (a) {
|
|
53648
53708
|
case "FormatString":
|
|
53649
|
-
this.
|
|
53709
|
+
this.ak();
|
|
53650
53710
|
break;
|
|
53651
53711
|
case "ShowClearButton":
|
|
53652
|
-
if (this.
|
|
53653
|
-
this.
|
|
53712
|
+
if (this.y != null) {
|
|
53713
|
+
this.y.as = this.showClearButton;
|
|
53654
53714
|
}
|
|
53655
53715
|
break;
|
|
53656
53716
|
case "ShowTodayButton":
|
|
53657
|
-
if (this.
|
|
53658
|
-
this.
|
|
53717
|
+
if (this.y != null) {
|
|
53718
|
+
this.y.at = this.ac;
|
|
53659
53719
|
}
|
|
53660
53720
|
break;
|
|
53661
53721
|
}
|
|
53662
53722
|
};
|
|
53663
|
-
DateEditorView.prototype.
|
|
53664
|
-
this.
|
|
53723
|
+
DateEditorView.prototype.ak = function () {
|
|
53724
|
+
this.y.bo = this.ae;
|
|
53665
53725
|
};
|
|
53666
|
-
DateEditorView.prototype.
|
|
53667
|
-
this.
|
|
53668
|
-
if (this.
|
|
53726
|
+
DateEditorView.prototype.w = function () {
|
|
53727
|
+
this.ab = true;
|
|
53728
|
+
if (this.y != null) {
|
|
53669
53729
|
if (this.value == null) {
|
|
53670
|
-
this.
|
|
53730
|
+
this.y.value = dateMinValue();
|
|
53671
53731
|
}
|
|
53672
53732
|
else {
|
|
53673
|
-
this.
|
|
53733
|
+
this.y.value = this.value;
|
|
53674
53734
|
}
|
|
53675
53735
|
if (this.focusOnValueChanged) {
|
|
53676
|
-
this.
|
|
53736
|
+
this.s();
|
|
53677
53737
|
}
|
|
53678
53738
|
}
|
|
53679
|
-
this.
|
|
53739
|
+
this.ab = false;
|
|
53680
53740
|
};
|
|
53681
|
-
DateEditorView.prototype.
|
|
53682
|
-
if (this.
|
|
53683
|
-
this.
|
|
53741
|
+
DateEditorView.prototype.r = function () {
|
|
53742
|
+
if (this.y != null) {
|
|
53743
|
+
this.y.aq = !this.isEnabled;
|
|
53744
|
+
}
|
|
53745
|
+
};
|
|
53746
|
+
DateEditorView.prototype.v = function () {
|
|
53747
|
+
_super.prototype.v.call(this);
|
|
53748
|
+
if (this.y != null) {
|
|
53749
|
+
this.y.de = this.textColor;
|
|
53684
53750
|
}
|
|
53685
53751
|
};
|
|
53686
53752
|
DateEditorView.prototype.onDatePickerValueChanged = function (a, b) {
|
|
53687
|
-
this.
|
|
53753
|
+
this.am();
|
|
53688
53754
|
};
|
|
53689
|
-
DateEditorView.prototype.
|
|
53690
|
-
if (this.
|
|
53755
|
+
DateEditorView.prototype.am = function () {
|
|
53756
|
+
if (this.ab) {
|
|
53691
53757
|
return;
|
|
53692
53758
|
}
|
|
53693
|
-
if (+(this.
|
|
53694
|
-
this.
|
|
53759
|
+
if (+(this.y.value) != +(dateMinValue())) {
|
|
53760
|
+
this.q(this.y.value, false);
|
|
53695
53761
|
}
|
|
53696
|
-
else if (+(this.
|
|
53697
|
-
this.
|
|
53762
|
+
else if (+(this.y.value) == +(dateMinValue())) {
|
|
53763
|
+
this.q(null, false);
|
|
53698
53764
|
}
|
|
53699
53765
|
else {
|
|
53700
|
-
this.
|
|
53766
|
+
this.q(this.value, false);
|
|
53701
53767
|
}
|
|
53702
53768
|
};
|
|
53703
53769
|
DateEditorView.prototype.onInputChanging = function (a, b) {
|
|
53704
|
-
this.
|
|
53770
|
+
this.p();
|
|
53705
53771
|
};
|
|
53706
53772
|
DateEditorView.prototype.onDatePickerLostFocus = function (a, b) {
|
|
53707
|
-
this.
|
|
53773
|
+
this.o();
|
|
53708
53774
|
};
|
|
53709
53775
|
DateEditorView.prototype.onDatePickerGotFocus = function (a, b) {
|
|
53710
|
-
this.
|
|
53776
|
+
this.n();
|
|
53711
53777
|
};
|
|
53712
53778
|
DateEditorView.prototype.getEditorValue = function () {
|
|
53713
|
-
if (this.
|
|
53714
|
-
return this.
|
|
53779
|
+
if (this.y != null) {
|
|
53780
|
+
return this.y.value;
|
|
53715
53781
|
}
|
|
53716
53782
|
return null;
|
|
53717
53783
|
};
|
|
53718
53784
|
DateEditorView.prototype.setEditorValue = function (a) {
|
|
53719
|
-
if (this.
|
|
53720
|
-
this.
|
|
53785
|
+
if (this.y != null) {
|
|
53786
|
+
this.y.value = a != null ? a : dateMinValue();
|
|
53721
53787
|
}
|
|
53722
53788
|
};
|
|
53723
53789
|
DateEditorView.$t = markType(DateEditorView, 'DateEditorView', BaseEditorView.$);
|
|
@@ -53737,130 +53803,130 @@ var ComboEditorView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
53737
53803
|
__extends(ComboEditorView, _super);
|
|
53738
53804
|
function ComboEditorView(a, b, c) {
|
|
53739
53805
|
var _this = _super.call(this, a, c) || this;
|
|
53740
|
-
_this.y = null;
|
|
53741
|
-
_this.x = null;
|
|
53742
|
-
_this.aa = null;
|
|
53743
53806
|
_this.ab = null;
|
|
53807
|
+
_this.aa = null;
|
|
53744
53808
|
_this.ad = null;
|
|
53745
|
-
_this.
|
|
53746
|
-
_this.
|
|
53809
|
+
_this.ae = null;
|
|
53810
|
+
_this.ag = null;
|
|
53811
|
+
_this.y = null;
|
|
53812
|
+
_this.ac = false;
|
|
53747
53813
|
var d = a.createElement("div");
|
|
53748
53814
|
d.setRawStyleProperty("margin-top", "-10px");
|
|
53749
53815
|
d.setRawStyleProperty("height", "38px");
|
|
53750
53816
|
d.setRawStyleProperty("width", "100%");
|
|
53751
53817
|
_this.container = d;
|
|
53752
53818
|
a.getPortal(d, "MultiColumnComboBox", function (e) {
|
|
53753
|
-
_this.
|
|
53754
|
-
_this.
|
|
53755
|
-
_this.
|
|
53756
|
-
_this.
|
|
53757
|
-
_this.
|
|
53758
|
-
_this.
|
|
53759
|
-
_this.
|
|
53760
|
-
_this.
|
|
53761
|
-
_this.
|
|
53762
|
-
_this.
|
|
53763
|
-
if (_this.
|
|
53764
|
-
_this.
|
|
53819
|
+
_this.aa = e.componentRef;
|
|
53820
|
+
_this.ad = _this.aa.i;
|
|
53821
|
+
_this.aa.height = "100%";
|
|
53822
|
+
_this.aa.density = 3;
|
|
53823
|
+
_this.aa.baseTheme = b;
|
|
53824
|
+
_this.aa.labelVisible = false;
|
|
53825
|
+
_this.aa.columnHeadersVisible = false;
|
|
53826
|
+
_this.aa.rowSeparatorsVisible = false;
|
|
53827
|
+
_this.ao();
|
|
53828
|
+
_this.w();
|
|
53829
|
+
if (_this.ab != null) {
|
|
53830
|
+
_this.aa.textStyle = _this.ab.fontString;
|
|
53765
53831
|
}
|
|
53766
53832
|
_this.attachEvents();
|
|
53767
53833
|
}, false);
|
|
53768
53834
|
return _this;
|
|
53769
53835
|
}
|
|
53770
|
-
Object.defineProperty(ComboEditorView.prototype, "
|
|
53836
|
+
Object.defineProperty(ComboEditorView.prototype, "af", {
|
|
53771
53837
|
get: function () {
|
|
53772
|
-
return this.
|
|
53838
|
+
return this.ae;
|
|
53773
53839
|
},
|
|
53774
53840
|
set: function (a) {
|
|
53775
|
-
var b = this.
|
|
53776
|
-
this.
|
|
53777
|
-
if (b != this.
|
|
53778
|
-
this.
|
|
53841
|
+
var b = this.ae;
|
|
53842
|
+
this.ae = a;
|
|
53843
|
+
if (b != this.ae) {
|
|
53844
|
+
this.u("DataSource", b, this.ae);
|
|
53779
53845
|
}
|
|
53780
53846
|
},
|
|
53781
53847
|
enumerable: true,
|
|
53782
53848
|
configurable: true
|
|
53783
53849
|
});
|
|
53784
|
-
Object.defineProperty(ComboEditorView.prototype, "
|
|
53850
|
+
Object.defineProperty(ComboEditorView.prototype, "ai", {
|
|
53785
53851
|
get: function () {
|
|
53786
|
-
return this.
|
|
53852
|
+
return this.ag;
|
|
53787
53853
|
},
|
|
53788
53854
|
set: function (a) {
|
|
53789
|
-
var b = this.
|
|
53790
|
-
this.
|
|
53791
|
-
if (b != this.
|
|
53792
|
-
this.
|
|
53855
|
+
var b = this.ag;
|
|
53856
|
+
this.ag = a;
|
|
53857
|
+
if (b != this.ag) {
|
|
53858
|
+
this.u("TextField", b, this.ag);
|
|
53793
53859
|
}
|
|
53794
53860
|
},
|
|
53795
53861
|
enumerable: true,
|
|
53796
53862
|
configurable: true
|
|
53797
53863
|
});
|
|
53798
|
-
Object.defineProperty(ComboEditorView.prototype, "
|
|
53864
|
+
Object.defineProperty(ComboEditorView.prototype, "z", {
|
|
53799
53865
|
get: function () {
|
|
53800
|
-
return this.
|
|
53866
|
+
return this.y;
|
|
53801
53867
|
},
|
|
53802
53868
|
set: function (a) {
|
|
53803
|
-
var b = this.
|
|
53804
|
-
this.
|
|
53805
|
-
if (b != this.
|
|
53806
|
-
this.
|
|
53869
|
+
var b = this.y;
|
|
53870
|
+
this.y = a;
|
|
53871
|
+
if (b != this.y) {
|
|
53872
|
+
this.u("ValueField", b, this.y);
|
|
53807
53873
|
}
|
|
53808
53874
|
},
|
|
53809
53875
|
enumerable: true,
|
|
53810
53876
|
configurable: true
|
|
53811
53877
|
});
|
|
53812
53878
|
ComboEditorView.prototype.setFont = function (a) {
|
|
53813
|
-
this.
|
|
53814
|
-
if (this.
|
|
53815
|
-
this.
|
|
53879
|
+
this.ab = a;
|
|
53880
|
+
if (this.aa != null && this.ab != null) {
|
|
53881
|
+
this.aa.textStyle = this.ab.fontString;
|
|
53816
53882
|
}
|
|
53817
53883
|
};
|
|
53818
53884
|
ComboEditorView.prototype.attachEvents = function () {
|
|
53819
|
-
if (this.
|
|
53820
|
-
var a = this.
|
|
53885
|
+
if (this.aa != null) {
|
|
53886
|
+
var a = this.aa;
|
|
53821
53887
|
a.selectedValueChanged = delegateCombine(a.selectedValueChanged, runOn(this, this.onComboValueChanged));
|
|
53822
|
-
var b = this.
|
|
53888
|
+
var b = this.aa;
|
|
53823
53889
|
b.textValueChanged = delegateCombine(b.textValueChanged, runOn(this, this.onComboTextChanged));
|
|
53824
|
-
var c = this.
|
|
53890
|
+
var c = this.aa;
|
|
53825
53891
|
c.gotFocus = delegateCombine(c.gotFocus, runOn(this, this.onComboGotFocus));
|
|
53826
|
-
var d = this.
|
|
53892
|
+
var d = this.aa;
|
|
53827
53893
|
d.lostFocus = delegateCombine(d.lostFocus, runOn(this, this.onComboLostFocus));
|
|
53828
|
-
var e = this.
|
|
53894
|
+
var e = this.aa;
|
|
53829
53895
|
e.keyDown = delegateCombine(e.keyDown, runOn(this, this.onInputKeyDown));
|
|
53830
|
-
var f = this.
|
|
53896
|
+
var f = this.aa;
|
|
53831
53897
|
f.changing = delegateCombine(f.changing, runOn(this, this.onInputChanging));
|
|
53832
53898
|
}
|
|
53833
53899
|
};
|
|
53834
53900
|
ComboEditorView.prototype.detachEvents = function () {
|
|
53835
|
-
if (this.
|
|
53836
|
-
var a = this.
|
|
53901
|
+
if (this.aa != null) {
|
|
53902
|
+
var a = this.aa;
|
|
53837
53903
|
a.selectedValueChanged = delegateRemove(a.selectedValueChanged, runOn(this, this.onComboValueChanged));
|
|
53838
|
-
var b = this.
|
|
53904
|
+
var b = this.aa;
|
|
53839
53905
|
b.textValueChanged = delegateRemove(b.textValueChanged, runOn(this, this.onComboTextChanged));
|
|
53840
|
-
var c = this.
|
|
53906
|
+
var c = this.aa;
|
|
53841
53907
|
c.gotFocus = delegateRemove(c.gotFocus, runOn(this, this.onComboGotFocus));
|
|
53842
|
-
var d = this.
|
|
53908
|
+
var d = this.aa;
|
|
53843
53909
|
d.lostFocus = delegateRemove(d.lostFocus, runOn(this, this.onComboLostFocus));
|
|
53844
|
-
var e = this.
|
|
53910
|
+
var e = this.aa;
|
|
53845
53911
|
e.keyDown = delegateRemove(e.keyDown, runOn(this, this.onInputKeyDown));
|
|
53846
|
-
var f = this.
|
|
53912
|
+
var f = this.aa;
|
|
53847
53913
|
f.changing = delegateRemove(f.changing, runOn(this, this.onInputChanging));
|
|
53848
53914
|
}
|
|
53849
53915
|
};
|
|
53850
53916
|
ComboEditorView.prototype.onTargetChanged = function () {
|
|
53851
|
-
if (this.
|
|
53852
|
-
this.
|
|
53853
|
-
if (this.
|
|
53854
|
-
this.
|
|
53917
|
+
if (this.aa != null) {
|
|
53918
|
+
this.ac = true;
|
|
53919
|
+
if (this.aa.value == null && this.aa.text != "") {
|
|
53920
|
+
this.aa.text = "";
|
|
53855
53921
|
}
|
|
53856
53922
|
this.focus();
|
|
53857
|
-
this.
|
|
53923
|
+
this.ac = false;
|
|
53858
53924
|
}
|
|
53859
53925
|
};
|
|
53860
53926
|
ComboEditorView.prototype.onEditStarted = function () {
|
|
53861
53927
|
_super.prototype.onEditStarted.call(this);
|
|
53862
53928
|
var a = this.container.getNativeElement();
|
|
53863
|
-
this.
|
|
53929
|
+
this.aa.defaultColumnWidth = (a.clientWidth - 2).toString();
|
|
53864
53930
|
if (!this.a.isEditRefocusDesired) {
|
|
53865
53931
|
this.focus();
|
|
53866
53932
|
}
|
|
@@ -53874,63 +53940,63 @@ var ComboEditorView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
53874
53940
|
}
|
|
53875
53941
|
}
|
|
53876
53942
|
};
|
|
53877
|
-
ComboEditorView.prototype.
|
|
53878
|
-
if (this.
|
|
53879
|
-
this.
|
|
53880
|
-
this.
|
|
53943
|
+
ComboEditorView.prototype.s = function () {
|
|
53944
|
+
if (this.aa != null) {
|
|
53945
|
+
this.ad.focus(true);
|
|
53946
|
+
this.aa.select();
|
|
53881
53947
|
}
|
|
53882
53948
|
};
|
|
53883
|
-
ComboEditorView.prototype.
|
|
53884
|
-
if (this.
|
|
53885
|
-
this.
|
|
53949
|
+
ComboEditorView.prototype.al = function () {
|
|
53950
|
+
if (this.aa != null) {
|
|
53951
|
+
this.aa.closeUp();
|
|
53886
53952
|
}
|
|
53887
53953
|
};
|
|
53888
|
-
ComboEditorView.prototype.
|
|
53889
|
-
_super.prototype.
|
|
53954
|
+
ComboEditorView.prototype.u = function (a, b, c) {
|
|
53955
|
+
_super.prototype.u.call(this, a, b, c);
|
|
53890
53956
|
switch (a) {
|
|
53891
53957
|
case "DataSource":
|
|
53892
53958
|
case "TextField":
|
|
53893
53959
|
case "ValueField":
|
|
53894
|
-
this.
|
|
53960
|
+
this.ao();
|
|
53895
53961
|
break;
|
|
53896
53962
|
}
|
|
53897
53963
|
};
|
|
53898
|
-
ComboEditorView.prototype.
|
|
53899
|
-
this.
|
|
53900
|
-
if (this.
|
|
53964
|
+
ComboEditorView.prototype.w = function () {
|
|
53965
|
+
this.ac = true;
|
|
53966
|
+
if (this.aa != null) {
|
|
53901
53967
|
if (this.value == null) {
|
|
53902
|
-
this.
|
|
53968
|
+
this.aa.text = " ";
|
|
53903
53969
|
}
|
|
53904
|
-
this.
|
|
53905
|
-
this.
|
|
53970
|
+
this.aa.value = this.value;
|
|
53971
|
+
this.s();
|
|
53906
53972
|
}
|
|
53907
|
-
this.
|
|
53973
|
+
this.ac = false;
|
|
53908
53974
|
};
|
|
53909
|
-
ComboEditorView.prototype.
|
|
53910
|
-
if (this.
|
|
53975
|
+
ComboEditorView.prototype.ao = function () {
|
|
53976
|
+
if (this.aa != null) {
|
|
53911
53977
|
this.detachEvents();
|
|
53912
|
-
this.
|
|
53913
|
-
this.
|
|
53914
|
-
this.
|
|
53915
|
-
if (this.
|
|
53916
|
-
this.
|
|
53978
|
+
this.aa.dataSource = this.af;
|
|
53979
|
+
this.aa.textField = this.ai;
|
|
53980
|
+
this.aa.valueField = this.z;
|
|
53981
|
+
if (this.ai != null) {
|
|
53982
|
+
this.aa.fields = [this.ai];
|
|
53917
53983
|
}
|
|
53918
|
-
else if (this.
|
|
53919
|
-
this.
|
|
53984
|
+
else if (this.z != null && this.z.length > 0) {
|
|
53985
|
+
this.aa.fields = [this.z[0]];
|
|
53920
53986
|
}
|
|
53921
53987
|
else {
|
|
53922
|
-
var a = typeCast(IDataSource_$type, this.
|
|
53988
|
+
var a = typeCast(IDataSource_$type, this.af);
|
|
53923
53989
|
if (a != null && a.actualSchema != null) {
|
|
53924
|
-
this.
|
|
53990
|
+
this.aa.fields = [a.actualSchema.propertyNames[0]];
|
|
53925
53991
|
}
|
|
53926
53992
|
else {
|
|
53927
|
-
var b = (Array.isArray(this.
|
|
53993
|
+
var b = (Array.isArray(this.af));
|
|
53928
53994
|
if (b) {
|
|
53929
|
-
var c = (this.
|
|
53995
|
+
var c = (this.af.length);
|
|
53930
53996
|
if (c > 0) {
|
|
53931
|
-
var d = (Object.keys(this.
|
|
53997
|
+
var d = (Object.keys(this.af[0]));
|
|
53932
53998
|
if (d.length > 0) {
|
|
53933
|
-
this.
|
|
53999
|
+
this.aa.fields = [d[0]];
|
|
53934
54000
|
}
|
|
53935
54001
|
}
|
|
53936
54002
|
}
|
|
@@ -53939,34 +54005,40 @@ var ComboEditorView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
53939
54005
|
this.attachEvents();
|
|
53940
54006
|
}
|
|
53941
54007
|
};
|
|
54008
|
+
ComboEditorView.prototype.v = function () {
|
|
54009
|
+
_super.prototype.v.call(this);
|
|
54010
|
+
if (this.aa != null) {
|
|
54011
|
+
this.aa.textColor = this.textColor._fill;
|
|
54012
|
+
}
|
|
54013
|
+
};
|
|
53942
54014
|
ComboEditorView.prototype.onComboValueChanged = function (a, b) {
|
|
53943
|
-
this.
|
|
54015
|
+
this.as();
|
|
53944
54016
|
};
|
|
53945
54017
|
ComboEditorView.prototype.onComboTextChanged = function (a, b) {
|
|
53946
|
-
this.
|
|
54018
|
+
this.as();
|
|
53947
54019
|
};
|
|
53948
|
-
ComboEditorView.prototype.
|
|
53949
|
-
if (this.
|
|
54020
|
+
ComboEditorView.prototype.as = function () {
|
|
54021
|
+
if (this.ac) {
|
|
53950
54022
|
return;
|
|
53951
54023
|
}
|
|
53952
|
-
if (this.
|
|
53953
|
-
this.
|
|
54024
|
+
if (this.aa.value != null) {
|
|
54025
|
+
this.q(this.aa.value, false);
|
|
53954
54026
|
}
|
|
53955
|
-
else if (this.
|
|
53956
|
-
this.
|
|
54027
|
+
else if (this.aa.value == null && stringIsNullOrWhiteSpace(this.aa.text)) {
|
|
54028
|
+
this.q(null, false);
|
|
53957
54029
|
}
|
|
53958
54030
|
else {
|
|
53959
|
-
this.
|
|
54031
|
+
this.q(this.value, false);
|
|
53960
54032
|
}
|
|
53961
54033
|
};
|
|
53962
54034
|
ComboEditorView.prototype.onInputChanging = function (a, b) {
|
|
53963
|
-
this.
|
|
54035
|
+
this.p();
|
|
53964
54036
|
};
|
|
53965
54037
|
ComboEditorView.prototype.onComboLostFocus = function (a) {
|
|
53966
|
-
this.
|
|
54038
|
+
this.o();
|
|
53967
54039
|
};
|
|
53968
54040
|
ComboEditorView.prototype.onComboGotFocus = function (a) {
|
|
53969
|
-
this.
|
|
54041
|
+
this.n();
|
|
53970
54042
|
};
|
|
53971
54043
|
ComboEditorView.$t = markType(ComboEditorView, 'ComboEditorView', BaseEditorView.$);
|
|
53972
54044
|
return ComboEditorView;
|
|
@@ -54232,18 +54304,18 @@ var EditorCell = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
54232
54304
|
}
|
|
54233
54305
|
this.ct = new ComboEditorView(this.ab, this.f.getTheme(), this.b);
|
|
54234
54306
|
this.ct.setFont(this.cz);
|
|
54235
|
-
this.ct.
|
|
54236
|
-
this.ct.
|
|
54237
|
-
this.ct.
|
|
54307
|
+
this.ct.af = this.dh;
|
|
54308
|
+
this.ct.ai = this.dm;
|
|
54309
|
+
this.ct.z = this.ci;
|
|
54238
54310
|
return this.ct;
|
|
54239
54311
|
};
|
|
54240
54312
|
EditorCell.prototype.ea = function (a, b) {
|
|
54241
54313
|
if (b.g != b.d || b.h != b.e) {
|
|
54242
54314
|
if (this.ct != null) {
|
|
54243
|
-
this.ct.
|
|
54315
|
+
this.ct.al();
|
|
54244
54316
|
}
|
|
54245
54317
|
if (this.cu != null) {
|
|
54246
|
-
this.cu.
|
|
54318
|
+
this.cu.ag();
|
|
54247
54319
|
}
|
|
54248
54320
|
this.d0();
|
|
54249
54321
|
}
|
|
@@ -54316,9 +54388,9 @@ var EditorCell = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
54316
54388
|
};
|
|
54317
54389
|
EditorCell.prototype.d2 = function () {
|
|
54318
54390
|
if (this.ct != null) {
|
|
54319
|
-
this.ct.
|
|
54320
|
-
this.ct.
|
|
54321
|
-
this.ct.
|
|
54391
|
+
this.ct.af = this.dh;
|
|
54392
|
+
this.ct.ai = this.dm;
|
|
54393
|
+
this.ct.z = this.ci;
|
|
54322
54394
|
}
|
|
54323
54395
|
};
|
|
54324
54396
|
EditorCell.prototype.d8 = function () {
|
|
@@ -54353,12 +54425,12 @@ var EditorCell = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
54353
54425
|
};
|
|
54354
54426
|
EditorCell.prototype.d4 = function () {
|
|
54355
54427
|
if (this.cn != null && this.cu == this.cn) {
|
|
54356
|
-
this.cu.
|
|
54428
|
+
this.cu.ae = this.dr;
|
|
54357
54429
|
}
|
|
54358
54430
|
};
|
|
54359
54431
|
EditorCell.prototype.ec = function () {
|
|
54360
54432
|
if (this.cn != null && this.cu == this.cn) {
|
|
54361
|
-
this.cu.
|
|
54433
|
+
this.cu.ac = this.db;
|
|
54362
54434
|
}
|
|
54363
54435
|
};
|
|
54364
54436
|
EditorCell.prototype.eh = function (a, b, c, d, e) {
|
|
@@ -54867,24 +54939,28 @@ var ComparisonOperatorSelectorView = /** @class */ /*@__PURE__*/ (function (_sup
|
|
|
54867
54939
|
_this.l = 240;
|
|
54868
54940
|
return _this;
|
|
54869
54941
|
}
|
|
54870
|
-
ComparisonOperatorSelectorView.prototype.
|
|
54942
|
+
ComparisonOperatorSelectorView.prototype.u = function (a) {
|
|
54871
54943
|
var _this = this;
|
|
54872
54944
|
if (a == null) {
|
|
54873
54945
|
var b = this.a;
|
|
54874
|
-
b.opening = delegateRemove(b.opening, runOn(this, this.
|
|
54946
|
+
b.opening = delegateRemove(b.opening, runOn(this, this.s));
|
|
54875
54947
|
var c = this.a;
|
|
54876
|
-
c.
|
|
54948
|
+
c.opened = delegateRemove(c.opened, runOn(this, this.r));
|
|
54949
|
+
var d = this.a;
|
|
54950
|
+
d.closing = delegateRemove(d.closing, runOn(this, this.n));
|
|
54877
54951
|
return;
|
|
54878
54952
|
}
|
|
54879
|
-
var d = this.a;
|
|
54880
|
-
d.opening = delegateCombine(d.opening, runOn(this, this.r));
|
|
54881
54953
|
var e = this.a;
|
|
54882
|
-
e.
|
|
54954
|
+
e.opening = delegateCombine(e.opening, runOn(this, this.s));
|
|
54955
|
+
var f = this.a;
|
|
54956
|
+
f.opened = delegateCombine(f.opened, runOn(this, this.r));
|
|
54957
|
+
var g = this.a;
|
|
54958
|
+
g.closing = delegateCombine(g.closing, runOn(this, this.n));
|
|
54883
54959
|
this.g = a;
|
|
54884
54960
|
this.d = new Popup();
|
|
54885
54961
|
this.d.provideRenderer(this.g);
|
|
54886
54962
|
this.i = this.g.createElement("div");
|
|
54887
|
-
this.i.
|
|
54963
|
+
this.i.addClass("ig-comparison-operator-selector");
|
|
54888
54964
|
this.i.setStyleProperty("width", this.l + "px");
|
|
54889
54965
|
this.d.appendPopupContent(this.i);
|
|
54890
54966
|
this.h = this.g.createElement("div");
|
|
@@ -54894,15 +54970,15 @@ var ComparisonOperatorSelectorView = /** @class */ /*@__PURE__*/ (function (_sup
|
|
|
54894
54970
|
this.h.setStyleProperty("cursor", "pointer");
|
|
54895
54971
|
this.g.append(this.h);
|
|
54896
54972
|
this.h.listen("mousedown", runOn(this, this.q));
|
|
54897
|
-
this.g.getPortal(this.i, "DataGrid", function (
|
|
54898
|
-
_this.m =
|
|
54973
|
+
this.g.getPortal(this.i, "DataGrid", function (h) {
|
|
54974
|
+
_this.m = h.componentRef;
|
|
54899
54975
|
_this.m.height = '100%';
|
|
54900
54976
|
_this.m.scrollbarStyle = 'Default';
|
|
54901
54977
|
_this.b = (_this.m.i);
|
|
54902
|
-
_this.a.
|
|
54978
|
+
_this.a.eb(_this.d, _this.c, _this.b);
|
|
54903
54979
|
}, false);
|
|
54904
54980
|
};
|
|
54905
|
-
ComparisonOperatorSelectorView.prototype.
|
|
54981
|
+
ComparisonOperatorSelectorView.prototype.w = function () {
|
|
54906
54982
|
var rect_ = this.h.getNativeElement().getBoundingClientRect();
|
|
54907
54983
|
var a = new Rect(4);
|
|
54908
54984
|
a.left = (rect_.left + window.pageXOffset);
|
|
@@ -54929,7 +55005,7 @@ var ComparisonOperatorSelectorView = /** @class */ /*@__PURE__*/ (function (_sup
|
|
|
54929
55005
|
}
|
|
54930
55006
|
return a;
|
|
54931
55007
|
};
|
|
54932
|
-
ComparisonOperatorSelectorView.prototype.
|
|
55008
|
+
ComparisonOperatorSelectorView.prototype.t = function (a, b) {
|
|
54933
55009
|
var c = a;
|
|
54934
55010
|
var d = null;
|
|
54935
55011
|
if (c.element.getChildCount() == 0) {
|
|
@@ -54955,16 +55031,22 @@ var ComparisonOperatorSelectorView = /** @class */ /*@__PURE__*/ (function (_sup
|
|
|
54955
55031
|
}
|
|
54956
55032
|
}
|
|
54957
55033
|
d.svgPath = b.Icon;
|
|
55034
|
+
d.fill = this.a.eq;
|
|
54958
55035
|
};
|
|
54959
55036
|
ComparisonOperatorSelectorView.prototype.q = function (a) {
|
|
54960
|
-
this.a.
|
|
55037
|
+
this.a.em();
|
|
54961
55038
|
};
|
|
54962
|
-
ComparisonOperatorSelectorView.prototype.
|
|
54963
|
-
this.i.setStyleProperty("height", stringFormat("{0}px", this.a.
|
|
55039
|
+
ComparisonOperatorSelectorView.prototype.s = function (a, b) {
|
|
55040
|
+
this.i.setStyleProperty("height", stringFormat("{0}px", this.a.y()));
|
|
54964
55041
|
this.d.ar();
|
|
54965
55042
|
document.addEventListener("keydown", runOn(this, this.onDocumentKeyDown), false);
|
|
54966
55043
|
document.addEventListener("mousedown", runOn(this, this.onDocumentMouseDown), false);
|
|
54967
55044
|
};
|
|
55045
|
+
ComparisonOperatorSelectorView.prototype.r = function (a, b) {
|
|
55046
|
+
if ((this.m.notifyDOMInsertion !== undefined)) {
|
|
55047
|
+
this.m.notifyDOMInsertion();
|
|
55048
|
+
}
|
|
55049
|
+
};
|
|
54968
55050
|
ComparisonOperatorSelectorView.prototype.n = function (a, b) {
|
|
54969
55051
|
document.removeEventListener("keydown", this.onDocumentKeyDown, false);
|
|
54970
55052
|
document.removeEventListener("mousedown", this.onDocumentMouseDown, false);
|
|
@@ -54972,7 +55054,7 @@ var ComparisonOperatorSelectorView = /** @class */ /*@__PURE__*/ (function (_sup
|
|
|
54972
55054
|
ComparisonOperatorSelectorView.prototype.onDocumentKeyDown = function (a) {
|
|
54973
55055
|
var b = a;
|
|
54974
55056
|
if (BaseDOMEventProxy.c0(b) == 8) {
|
|
54975
|
-
this.a.
|
|
55057
|
+
this.a.d8();
|
|
54976
55058
|
}
|
|
54977
55059
|
};
|
|
54978
55060
|
ComparisonOperatorSelectorView.prototype.onDocumentMouseDown = function (a) {
|
|
@@ -54981,10 +55063,10 @@ var ComparisonOperatorSelectorView = /** @class */ /*@__PURE__*/ (function (_sup
|
|
|
54981
55063
|
var d = this.g.rootWrapper.getNativeElement();
|
|
54982
55064
|
var e = this.i.getNativeElement();
|
|
54983
55065
|
if (!d.contains(c) && !e.contains(c)) {
|
|
54984
|
-
this.a.
|
|
55066
|
+
this.a.d8();
|
|
54985
55067
|
}
|
|
54986
55068
|
};
|
|
54987
|
-
ComparisonOperatorSelectorView.prototype.
|
|
55069
|
+
ComparisonOperatorSelectorView.prototype.v = function (a) {
|
|
54988
55070
|
this.m.dataSource = a;
|
|
54989
55071
|
};
|
|
54990
55072
|
ComparisonOperatorSelectorView.$t = markType(ComparisonOperatorSelectorView, 'ComparisonOperatorSelectorView');
|
|
@@ -54998,52 +55080,59 @@ var ComparisonOperatorSelector = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
54998
55080
|
function ComparisonOperatorSelector() {
|
|
54999
55081
|
var _this = _super.call(this) || this;
|
|
55000
55082
|
_this.propertyChanged = null;
|
|
55001
|
-
_this.
|
|
55083
|
+
_this.r = null;
|
|
55002
55084
|
_this.e = null;
|
|
55085
|
+
_this.q = null;
|
|
55003
55086
|
_this.p = null;
|
|
55004
55087
|
_this.o = null;
|
|
55005
|
-
_this.n = null;
|
|
55006
55088
|
_this.f = null;
|
|
55007
|
-
_this.
|
|
55089
|
+
_this.n = null;
|
|
55090
|
+
_this.v = null;
|
|
55008
55091
|
_this.u = null;
|
|
55009
|
-
_this.t = null;
|
|
55010
55092
|
_this.g = null;
|
|
55011
|
-
_this.
|
|
55093
|
+
_this.t = false;
|
|
55012
55094
|
_this.a = 0;
|
|
55013
|
-
_this.
|
|
55014
|
-
_this.
|
|
55095
|
+
_this.ae = null;
|
|
55096
|
+
_this.x = 0;
|
|
55015
55097
|
_this.c = 0;
|
|
55016
|
-
_this.
|
|
55098
|
+
_this.w = 250;
|
|
55099
|
+
_this.eo = null;
|
|
55100
|
+
_this.en = null;
|
|
55017
55101
|
_this.valueChanged = null;
|
|
55018
55102
|
_this.opening = null;
|
|
55103
|
+
_this.opened = null;
|
|
55019
55104
|
_this.closing = null;
|
|
55020
55105
|
_this.e = new ComparisonOperatorSelectorView(_this);
|
|
55021
|
-
_this.
|
|
55106
|
+
_this.u = new List$1(OperatorModel.$, 0);
|
|
55022
55107
|
return _this;
|
|
55023
55108
|
}
|
|
55024
|
-
ComparisonOperatorSelector.prototype.
|
|
55025
|
-
this.
|
|
55109
|
+
ComparisonOperatorSelector.prototype.eg = function (a, b, c) {
|
|
55110
|
+
this.ei(a, b, c);
|
|
55026
55111
|
if (this.propertyChanged != null) {
|
|
55027
55112
|
this.propertyChanged(this, new PropertyChangedEventArgs(a));
|
|
55028
55113
|
}
|
|
55029
55114
|
};
|
|
55030
|
-
ComparisonOperatorSelector.prototype.
|
|
55115
|
+
ComparisonOperatorSelector.prototype.ei = function (a, b, c) {
|
|
55031
55116
|
switch (a) {
|
|
55032
55117
|
case "Value":
|
|
55033
|
-
this.
|
|
55118
|
+
this.eh(EnumUtil.getEnumValue(ColumnComparisonConditionOperatorType_$type, b), EnumUtil.getEnumValue(ColumnComparisonConditionOperatorType_$type, c));
|
|
55034
55119
|
break;
|
|
55035
55120
|
case "DataType":
|
|
55036
|
-
this.
|
|
55121
|
+
this.d4();
|
|
55122
|
+
break;
|
|
55123
|
+
case "TextColor":
|
|
55124
|
+
case "Background":
|
|
55125
|
+
this.ed();
|
|
55037
55126
|
break;
|
|
55038
55127
|
}
|
|
55039
55128
|
};
|
|
55040
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55129
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "s", {
|
|
55041
55130
|
get: function () {
|
|
55042
|
-
if (this.
|
|
55043
|
-
this.
|
|
55044
|
-
this.
|
|
55131
|
+
if (this.r == null) {
|
|
55132
|
+
this.r = new SRProvider(this.e.g);
|
|
55133
|
+
this.r.cb("DataGrid");
|
|
55045
55134
|
}
|
|
55046
|
-
return this.
|
|
55135
|
+
return this.r;
|
|
55047
55136
|
},
|
|
55048
55137
|
enumerable: true,
|
|
55049
55138
|
configurable: true
|
|
@@ -55056,10 +55145,10 @@ var ComparisonOperatorSelector = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
55056
55145
|
this.g = a;
|
|
55057
55146
|
if (this.g != null) {
|
|
55058
55147
|
if (this.g.a == 44) {
|
|
55059
|
-
this.
|
|
55060
|
-
this.
|
|
55148
|
+
this.ae = this.g.c;
|
|
55149
|
+
this.x = this.g.b;
|
|
55061
55150
|
}
|
|
55062
|
-
if (!this.
|
|
55151
|
+
if (!this.t) {
|
|
55063
55152
|
this.b = this.g.a;
|
|
55064
55153
|
}
|
|
55065
55154
|
}
|
|
@@ -55075,7 +55164,7 @@ var ComparisonOperatorSelector = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
55075
55164
|
var b = this.a;
|
|
55076
55165
|
this.a = a;
|
|
55077
55166
|
if (b != this.a || this.a == 44) {
|
|
55078
|
-
this.
|
|
55167
|
+
this.eg("Value", enumGetBox(ColumnComparisonConditionOperatorType_$type, b), enumGetBox(ColumnComparisonConditionOperatorType_$type, this.a));
|
|
55079
55168
|
}
|
|
55080
55169
|
},
|
|
55081
55170
|
enumerable: true,
|
|
@@ -55089,388 +55178,417 @@ var ComparisonOperatorSelector = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
55089
55178
|
var b = this.c;
|
|
55090
55179
|
this.c = a;
|
|
55091
55180
|
if (b != this.c) {
|
|
55092
|
-
this.
|
|
55181
|
+
this.eg("DataType", enumGetBox(DataSourceSchemaPropertyType_$type, b), enumGetBox(DataSourceSchemaPropertyType_$type, this.c));
|
|
55093
55182
|
}
|
|
55094
55183
|
},
|
|
55095
55184
|
enumerable: true,
|
|
55096
55185
|
configurable: true
|
|
55097
55186
|
});
|
|
55098
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55187
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "z", {
|
|
55099
55188
|
get: function () {
|
|
55100
|
-
return this.
|
|
55189
|
+
return this.w;
|
|
55101
55190
|
},
|
|
55102
55191
|
set: function (a) {
|
|
55103
|
-
this.
|
|
55192
|
+
this.w = a;
|
|
55104
55193
|
},
|
|
55105
55194
|
enumerable: true,
|
|
55106
55195
|
configurable: true
|
|
55107
55196
|
});
|
|
55108
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55197
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "eq", {
|
|
55198
|
+
get: function () {
|
|
55199
|
+
return this.eo;
|
|
55200
|
+
},
|
|
55201
|
+
set: function (a) {
|
|
55202
|
+
var b = this.eo;
|
|
55203
|
+
this.eo = a;
|
|
55204
|
+
if (b != this.eo) {
|
|
55205
|
+
this.eg("TextColor", b, this.eo);
|
|
55206
|
+
}
|
|
55207
|
+
},
|
|
55208
|
+
enumerable: true,
|
|
55209
|
+
configurable: true
|
|
55210
|
+
});
|
|
55211
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "ep", {
|
|
55212
|
+
get: function () {
|
|
55213
|
+
return this.en;
|
|
55214
|
+
},
|
|
55215
|
+
set: function (a) {
|
|
55216
|
+
var b = this.en;
|
|
55217
|
+
this.en = a;
|
|
55218
|
+
if (b != this.en) {
|
|
55219
|
+
this.eg("Background", b, this.en);
|
|
55220
|
+
}
|
|
55221
|
+
},
|
|
55222
|
+
enumerable: true,
|
|
55223
|
+
configurable: true
|
|
55224
|
+
});
|
|
55225
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "dd", {
|
|
55109
55226
|
get: function () {
|
|
55110
|
-
var a = this.
|
|
55227
|
+
var a = this.s.b1("ComparisonOperator_True");
|
|
55111
55228
|
return !stringIsNullOrWhiteSpace(a) ? a : "True";
|
|
55112
55229
|
},
|
|
55113
55230
|
enumerable: true,
|
|
55114
55231
|
configurable: true
|
|
55115
55232
|
});
|
|
55116
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55233
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "ck", {
|
|
55117
55234
|
get: function () {
|
|
55118
|
-
var a = this.
|
|
55235
|
+
var a = this.s.b1("ComparisonOperator_False");
|
|
55119
55236
|
return !stringIsNullOrWhiteSpace(a) ? a : "False";
|
|
55120
55237
|
},
|
|
55121
55238
|
enumerable: true,
|
|
55122
55239
|
configurable: true
|
|
55123
55240
|
});
|
|
55124
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55241
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cj", {
|
|
55125
55242
|
get: function () {
|
|
55126
|
-
var a = this.
|
|
55243
|
+
var a = this.s.b1("ComparisonOperator_Equals");
|
|
55127
55244
|
return !stringIsNullOrWhiteSpace(a) ? a : "Equals";
|
|
55128
55245
|
},
|
|
55129
55246
|
enumerable: true,
|
|
55130
55247
|
configurable: true
|
|
55131
55248
|
});
|
|
55132
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55249
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cz", {
|
|
55133
55250
|
get: function () {
|
|
55134
|
-
var a = this.
|
|
55251
|
+
var a = this.s.b1("ComparisonOperator_NotEquals");
|
|
55135
55252
|
return !stringIsNullOrWhiteSpace(a) ? a : "Not equals";
|
|
55136
55253
|
},
|
|
55137
55254
|
enumerable: true,
|
|
55138
55255
|
configurable: true
|
|
55139
55256
|
});
|
|
55140
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55257
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cr", {
|
|
55141
55258
|
get: function () {
|
|
55142
|
-
var a = this.
|
|
55259
|
+
var a = this.s.b1("ComparisonOperator_LessThan");
|
|
55143
55260
|
return !stringIsNullOrWhiteSpace(a) ? a : "Less than";
|
|
55144
55261
|
},
|
|
55145
55262
|
enumerable: true,
|
|
55146
55263
|
configurable: true
|
|
55147
55264
|
});
|
|
55148
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55265
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cs", {
|
|
55149
55266
|
get: function () {
|
|
55150
|
-
var a = this.
|
|
55267
|
+
var a = this.s.b1("ComparisonOperator_LessThanOrEqualTo");
|
|
55151
55268
|
return !stringIsNullOrWhiteSpace(a) ? a : "Less than or equal to";
|
|
55152
55269
|
},
|
|
55153
55270
|
enumerable: true,
|
|
55154
55271
|
configurable: true
|
|
55155
55272
|
});
|
|
55156
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55273
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cl", {
|
|
55157
55274
|
get: function () {
|
|
55158
|
-
var a = this.
|
|
55275
|
+
var a = this.s.b1("ComparisonOperator_GreaterThan");
|
|
55159
55276
|
return !stringIsNullOrWhiteSpace(a) ? a : "Greater than";
|
|
55160
55277
|
},
|
|
55161
55278
|
enumerable: true,
|
|
55162
55279
|
configurable: true
|
|
55163
55280
|
});
|
|
55164
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55281
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cm", {
|
|
55165
55282
|
get: function () {
|
|
55166
|
-
var a = this.
|
|
55283
|
+
var a = this.s.b1("ComparisonOperator_GreaterThanOrEqualTo");
|
|
55167
55284
|
return !stringIsNullOrWhiteSpace(a) ? a : "Greater than or equal to";
|
|
55168
55285
|
},
|
|
55169
55286
|
enumerable: true,
|
|
55170
55287
|
configurable: true
|
|
55171
55288
|
});
|
|
55172
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55289
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "db", {
|
|
55173
55290
|
get: function () {
|
|
55174
|
-
var a = this.
|
|
55291
|
+
var a = this.s.b1("ComparisonOperator_Top");
|
|
55175
55292
|
return !stringIsNullOrWhiteSpace(a) ? a : "Top";
|
|
55176
55293
|
},
|
|
55177
55294
|
enumerable: true,
|
|
55178
55295
|
configurable: true
|
|
55179
55296
|
});
|
|
55180
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55297
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cb", {
|
|
55181
55298
|
get: function () {
|
|
55182
|
-
var a = this.
|
|
55299
|
+
var a = this.s.b1("ComparisonOperator_Bottom");
|
|
55183
55300
|
return !stringIsNullOrWhiteSpace(a) ? a : "Bottom";
|
|
55184
55301
|
},
|
|
55185
55302
|
enumerable: true,
|
|
55186
55303
|
configurable: true
|
|
55187
55304
|
});
|
|
55188
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55305
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "dc", {
|
|
55189
55306
|
get: function () {
|
|
55190
|
-
var a = this.
|
|
55307
|
+
var a = this.s.b1("ComparisonOperator_TopPercentile");
|
|
55191
55308
|
return !stringIsNullOrWhiteSpace(a) ? a : "Top percentile";
|
|
55192
55309
|
},
|
|
55193
55310
|
enumerable: true,
|
|
55194
55311
|
configurable: true
|
|
55195
55312
|
});
|
|
55196
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55313
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cc", {
|
|
55197
55314
|
get: function () {
|
|
55198
|
-
var a = this.
|
|
55315
|
+
var a = this.s.b1("ComparisonOperator_BottomPercentile");
|
|
55199
55316
|
return !stringIsNullOrWhiteSpace(a) ? a : "Bottom percentile";
|
|
55200
55317
|
},
|
|
55201
55318
|
enumerable: true,
|
|
55202
55319
|
configurable: true
|
|
55203
55320
|
});
|
|
55204
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55321
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c9", {
|
|
55205
55322
|
get: function () {
|
|
55206
|
-
var a = this.
|
|
55323
|
+
var a = this.s.b1("ComparisonOperator_Today");
|
|
55207
55324
|
return !stringIsNullOrWhiteSpace(a) ? a : "Today";
|
|
55208
55325
|
},
|
|
55209
55326
|
enumerable: true,
|
|
55210
55327
|
configurable: true
|
|
55211
55328
|
});
|
|
55212
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55329
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "da", {
|
|
55213
55330
|
get: function () {
|
|
55214
|
-
var a = this.
|
|
55331
|
+
var a = this.s.b1("ComparisonOperator_Tomorrow");
|
|
55215
55332
|
return !stringIsNullOrWhiteSpace(a) ? a : "Tomorrow";
|
|
55216
55333
|
},
|
|
55217
55334
|
enumerable: true,
|
|
55218
55335
|
configurable: true
|
|
55219
55336
|
});
|
|
55220
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55337
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "dg", {
|
|
55221
55338
|
get: function () {
|
|
55222
|
-
var a = this.
|
|
55339
|
+
var a = this.s.b1("ComparisonOperator_Yesterday");
|
|
55223
55340
|
return !stringIsNullOrWhiteSpace(a) ? a : "Yesterday";
|
|
55224
55341
|
},
|
|
55225
55342
|
enumerable: true,
|
|
55226
55343
|
configurable: true
|
|
55227
55344
|
});
|
|
55228
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55345
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c7", {
|
|
55229
55346
|
get: function () {
|
|
55230
|
-
var a = this.
|
|
55347
|
+
var a = this.s.b1("ComparisonOperator_ThisWeek");
|
|
55231
55348
|
return !stringIsNullOrWhiteSpace(a) ? a : "This week";
|
|
55232
55349
|
},
|
|
55233
55350
|
enumerable: true,
|
|
55234
55351
|
configurable: true
|
|
55235
55352
|
});
|
|
55236
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55353
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cw", {
|
|
55237
55354
|
get: function () {
|
|
55238
|
-
var a = this.
|
|
55355
|
+
var a = this.s.b1("ComparisonOperator_NextWeek");
|
|
55239
55356
|
return !stringIsNullOrWhiteSpace(a) ? a : "Next week";
|
|
55240
55357
|
},
|
|
55241
55358
|
enumerable: true,
|
|
55242
55359
|
configurable: true
|
|
55243
55360
|
});
|
|
55244
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55361
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cp", {
|
|
55245
55362
|
get: function () {
|
|
55246
|
-
var a = this.
|
|
55363
|
+
var a = this.s.b1("ComparisonOperator_LastWeek");
|
|
55247
55364
|
return !stringIsNullOrWhiteSpace(a) ? a : "Last week";
|
|
55248
55365
|
},
|
|
55249
55366
|
enumerable: true,
|
|
55250
55367
|
configurable: true
|
|
55251
55368
|
});
|
|
55252
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55369
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c5", {
|
|
55253
55370
|
get: function () {
|
|
55254
|
-
var a = this.
|
|
55371
|
+
var a = this.s.b1("ComparisonOperator_ThisMonth");
|
|
55255
55372
|
return !stringIsNullOrWhiteSpace(a) ? a : "This month";
|
|
55256
55373
|
},
|
|
55257
55374
|
enumerable: true,
|
|
55258
55375
|
configurable: true
|
|
55259
55376
|
});
|
|
55260
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55377
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cu", {
|
|
55261
55378
|
get: function () {
|
|
55262
|
-
var a = this.
|
|
55379
|
+
var a = this.s.b1("ComparisonOperator_NextMonth");
|
|
55263
55380
|
return !stringIsNullOrWhiteSpace(a) ? a : "Next month";
|
|
55264
55381
|
},
|
|
55265
55382
|
enumerable: true,
|
|
55266
55383
|
configurable: true
|
|
55267
55384
|
});
|
|
55268
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55385
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cn", {
|
|
55269
55386
|
get: function () {
|
|
55270
|
-
var a = this.
|
|
55387
|
+
var a = this.s.b1("ComparisonOperator_LastMonth");
|
|
55271
55388
|
return !stringIsNullOrWhiteSpace(a) ? a : "Last month";
|
|
55272
55389
|
},
|
|
55273
55390
|
enumerable: true,
|
|
55274
55391
|
configurable: true
|
|
55275
55392
|
});
|
|
55276
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55393
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c6", {
|
|
55277
55394
|
get: function () {
|
|
55278
|
-
var a = this.
|
|
55395
|
+
var a = this.s.b1("ComparisonOperator_ThisQuarter");
|
|
55279
55396
|
return !stringIsNullOrWhiteSpace(a) ? a : "This quarter";
|
|
55280
55397
|
},
|
|
55281
55398
|
enumerable: true,
|
|
55282
55399
|
configurable: true
|
|
55283
55400
|
});
|
|
55284
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55401
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cv", {
|
|
55285
55402
|
get: function () {
|
|
55286
|
-
var a = this.
|
|
55403
|
+
var a = this.s.b1("ComparisonOperator_NextQuarter");
|
|
55287
55404
|
return !stringIsNullOrWhiteSpace(a) ? a : "Next quarter";
|
|
55288
55405
|
},
|
|
55289
55406
|
enumerable: true,
|
|
55290
55407
|
configurable: true
|
|
55291
55408
|
});
|
|
55292
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55409
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "co", {
|
|
55293
55410
|
get: function () {
|
|
55294
|
-
var a = this.
|
|
55411
|
+
var a = this.s.b1("ComparisonOperator_LastQuarter");
|
|
55295
55412
|
return !stringIsNullOrWhiteSpace(a) ? a : "Last quarter";
|
|
55296
55413
|
},
|
|
55297
55414
|
enumerable: true,
|
|
55298
55415
|
configurable: true
|
|
55299
55416
|
});
|
|
55300
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55417
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c8", {
|
|
55301
55418
|
get: function () {
|
|
55302
|
-
var a = this.
|
|
55419
|
+
var a = this.s.b1("ComparisonOperator_ThisYear");
|
|
55303
55420
|
return !stringIsNullOrWhiteSpace(a) ? a : "This year";
|
|
55304
55421
|
},
|
|
55305
55422
|
enumerable: true,
|
|
55306
55423
|
configurable: true
|
|
55307
55424
|
});
|
|
55308
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55425
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cx", {
|
|
55309
55426
|
get: function () {
|
|
55310
|
-
var a = this.
|
|
55427
|
+
var a = this.s.b1("ComparisonOperator_NextYear");
|
|
55311
55428
|
return !stringIsNullOrWhiteSpace(a) ? a : "Next year";
|
|
55312
55429
|
},
|
|
55313
55430
|
enumerable: true,
|
|
55314
55431
|
configurable: true
|
|
55315
55432
|
});
|
|
55316
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55433
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cq", {
|
|
55317
55434
|
get: function () {
|
|
55318
|
-
var a = this.
|
|
55435
|
+
var a = this.s.b1("ComparisonOperator_LastYear");
|
|
55319
55436
|
return !stringIsNullOrWhiteSpace(a) ? a : "Last year";
|
|
55320
55437
|
},
|
|
55321
55438
|
enumerable: true,
|
|
55322
55439
|
configurable: true
|
|
55323
55440
|
});
|
|
55324
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55441
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "df", {
|
|
55325
55442
|
get: function () {
|
|
55326
|
-
var a = this.
|
|
55443
|
+
var a = this.s.b1("ComparisonOperator_YearToDate");
|
|
55327
55444
|
return !stringIsNullOrWhiteSpace(a) ? a : "Year to date";
|
|
55328
55445
|
},
|
|
55329
55446
|
enumerable: true,
|
|
55330
55447
|
configurable: true
|
|
55331
55448
|
});
|
|
55332
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55449
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c0", {
|
|
55333
55450
|
get: function () {
|
|
55334
|
-
var a = this.
|
|
55451
|
+
var a = this.s.b1("ComparisonOperator_Q1");
|
|
55335
55452
|
return !stringIsNullOrWhiteSpace(a) ? a : "Quarter 1";
|
|
55336
55453
|
},
|
|
55337
55454
|
enumerable: true,
|
|
55338
55455
|
configurable: true
|
|
55339
55456
|
});
|
|
55340
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55457
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c1", {
|
|
55341
55458
|
get: function () {
|
|
55342
|
-
var a = this.
|
|
55459
|
+
var a = this.s.b1("ComparisonOperator_Q2");
|
|
55343
55460
|
return !stringIsNullOrWhiteSpace(a) ? a : "Quarter 2";
|
|
55344
55461
|
},
|
|
55345
55462
|
enumerable: true,
|
|
55346
55463
|
configurable: true
|
|
55347
55464
|
});
|
|
55348
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55465
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c2", {
|
|
55349
55466
|
get: function () {
|
|
55350
|
-
var a = this.
|
|
55467
|
+
var a = this.s.b1("ComparisonOperator_Q3");
|
|
55351
55468
|
return !stringIsNullOrWhiteSpace(a) ? a : "Quarter 3";
|
|
55352
55469
|
},
|
|
55353
55470
|
enumerable: true,
|
|
55354
55471
|
configurable: true
|
|
55355
55472
|
});
|
|
55356
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55473
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c3", {
|
|
55357
55474
|
get: function () {
|
|
55358
|
-
var a = this.
|
|
55475
|
+
var a = this.s.b1("ComparisonOperator_Q4");
|
|
55359
55476
|
return !stringIsNullOrWhiteSpace(a) ? a : "Quarter 4";
|
|
55360
55477
|
},
|
|
55361
55478
|
enumerable: true,
|
|
55362
55479
|
configurable: true
|
|
55363
55480
|
});
|
|
55364
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55481
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "ct", {
|
|
55365
55482
|
get: function () {
|
|
55366
|
-
var a = this.
|
|
55483
|
+
var a = this.s.b1("ComparisonOperator_Month");
|
|
55367
55484
|
return !stringIsNullOrWhiteSpace(a) ? a : "Month";
|
|
55368
55485
|
},
|
|
55369
55486
|
enumerable: true,
|
|
55370
55487
|
configurable: true
|
|
55371
55488
|
});
|
|
55372
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55489
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "de", {
|
|
55373
55490
|
get: function () {
|
|
55374
|
-
var a = this.
|
|
55491
|
+
var a = this.s.b1("ComparisonOperator_Year");
|
|
55375
55492
|
return !stringIsNullOrWhiteSpace(a) ? a : "Year";
|
|
55376
55493
|
},
|
|
55377
55494
|
enumerable: true,
|
|
55378
55495
|
configurable: true
|
|
55379
55496
|
});
|
|
55380
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55497
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c4", {
|
|
55381
55498
|
get: function () {
|
|
55382
|
-
var a = this.
|
|
55499
|
+
var a = this.s.b1("ComparisonOperator_StartsWith");
|
|
55383
55500
|
return !stringIsNullOrWhiteSpace(a) ? a : "Starts with";
|
|
55384
55501
|
},
|
|
55385
55502
|
enumerable: true,
|
|
55386
55503
|
configurable: true
|
|
55387
55504
|
});
|
|
55388
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55505
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cg", {
|
|
55389
55506
|
get: function () {
|
|
55390
|
-
var a = this.
|
|
55507
|
+
var a = this.s.b1("ComparisonOperator_DoesNotStartWith");
|
|
55391
55508
|
return !stringIsNullOrWhiteSpace(a) ? a : "Does not start with";
|
|
55392
55509
|
},
|
|
55393
55510
|
enumerable: true,
|
|
55394
55511
|
configurable: true
|
|
55395
55512
|
});
|
|
55396
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55513
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "ci", {
|
|
55397
55514
|
get: function () {
|
|
55398
|
-
var a = this.
|
|
55515
|
+
var a = this.s.b1("ComparisonOperator_EndsWith");
|
|
55399
55516
|
return !stringIsNullOrWhiteSpace(a) ? a : "Ends with";
|
|
55400
55517
|
},
|
|
55401
55518
|
enumerable: true,
|
|
55402
55519
|
configurable: true
|
|
55403
55520
|
});
|
|
55404
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55521
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cf", {
|
|
55405
55522
|
get: function () {
|
|
55406
|
-
var a = this.
|
|
55523
|
+
var a = this.s.b1("ComparisonOperator_DoesNotEndWith");
|
|
55407
55524
|
return !stringIsNullOrWhiteSpace(a) ? a : "Does not end with";
|
|
55408
55525
|
},
|
|
55409
55526
|
enumerable: true,
|
|
55410
55527
|
configurable: true
|
|
55411
55528
|
});
|
|
55412
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55529
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cd", {
|
|
55413
55530
|
get: function () {
|
|
55414
|
-
var a = this.
|
|
55531
|
+
var a = this.s.b1("ComparisonOperator_Contains");
|
|
55415
55532
|
return !stringIsNullOrWhiteSpace(a) ? a : "Contains";
|
|
55416
55533
|
},
|
|
55417
55534
|
enumerable: true,
|
|
55418
55535
|
configurable: true
|
|
55419
55536
|
});
|
|
55420
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55537
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "ce", {
|
|
55421
55538
|
get: function () {
|
|
55422
|
-
var a = this.
|
|
55539
|
+
var a = this.s.b1("ComparisonOperator_DoesNotContain");
|
|
55423
55540
|
return !stringIsNullOrWhiteSpace(a) ? a : "Does not contain";
|
|
55424
55541
|
},
|
|
55425
55542
|
enumerable: true,
|
|
55426
55543
|
configurable: true
|
|
55427
55544
|
});
|
|
55428
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55545
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "ch", {
|
|
55429
55546
|
get: function () {
|
|
55430
|
-
var a = this.
|
|
55547
|
+
var a = this.s.b1("ComparisonOperator_Empty");
|
|
55431
55548
|
return !stringIsNullOrWhiteSpace(a) ? a : "Empty";
|
|
55432
55549
|
},
|
|
55433
55550
|
enumerable: true,
|
|
55434
55551
|
configurable: true
|
|
55435
55552
|
});
|
|
55436
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55553
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cy", {
|
|
55437
55554
|
get: function () {
|
|
55438
|
-
var a = this.
|
|
55555
|
+
var a = this.s.b1("ComparisonOperator_NotEmpty");
|
|
55439
55556
|
return !stringIsNullOrWhiteSpace(a) ? a : "Not empty";
|
|
55440
55557
|
},
|
|
55441
55558
|
enumerable: true,
|
|
55442
55559
|
configurable: true
|
|
55443
55560
|
});
|
|
55444
|
-
ComparisonOperatorSelector.prototype.
|
|
55561
|
+
ComparisonOperatorSelector.prototype.ej = function (a) {
|
|
55445
55562
|
if (a == null) {
|
|
55446
|
-
if (this.
|
|
55447
|
-
var b = this.
|
|
55448
|
-
b.clicked = delegateRemove(b.clicked, runOn(this, this.
|
|
55563
|
+
if (this.o != null) {
|
|
55564
|
+
var b = this.o;
|
|
55565
|
+
b.clicked = delegateRemove(b.clicked, runOn(this, this.ec));
|
|
55449
55566
|
}
|
|
55450
55567
|
if (this.f != null) {
|
|
55451
55568
|
this.f.ae.clear();
|
|
55452
55569
|
var c = this.f;
|
|
55453
|
-
c.cellClicked = delegateRemove(c.cellClicked, runOn(this, this.
|
|
55570
|
+
c.cellClicked = delegateRemove(c.cellClicked, runOn(this, this.d9));
|
|
55454
55571
|
}
|
|
55455
|
-
if (this.
|
|
55456
|
-
var d = this.
|
|
55457
|
-
d.cellUpdating = delegateRemove(d.cellUpdating, runOn(this, this.
|
|
55572
|
+
if (this.n != null) {
|
|
55573
|
+
var d = this.n;
|
|
55574
|
+
d.cellUpdating = delegateRemove(d.cellUpdating, runOn(this, this.el));
|
|
55458
55575
|
}
|
|
55459
55576
|
}
|
|
55460
|
-
this.e.
|
|
55577
|
+
this.e.u(a);
|
|
55461
55578
|
};
|
|
55462
|
-
ComparisonOperatorSelector.prototype.
|
|
55463
|
-
this.
|
|
55579
|
+
ComparisonOperatorSelector.prototype.ea = function () {
|
|
55580
|
+
this.ej(null);
|
|
55464
55581
|
if (this.f != null) {
|
|
55465
55582
|
var a = this.f;
|
|
55466
|
-
a.cellClicked = delegateRemove(a.cellClicked, runOn(this, this.
|
|
55583
|
+
a.cellClicked = delegateRemove(a.cellClicked, runOn(this, this.d9));
|
|
55467
55584
|
}
|
|
55468
|
-
this.
|
|
55585
|
+
this.v.clear();
|
|
55469
55586
|
};
|
|
55470
|
-
ComparisonOperatorSelector.prototype.
|
|
55471
|
-
this.
|
|
55472
|
-
this.
|
|
55473
|
-
this.
|
|
55587
|
+
ComparisonOperatorSelector.prototype.eb = function (a, b, c) {
|
|
55588
|
+
this.q = a;
|
|
55589
|
+
this.p = b;
|
|
55590
|
+
this.p.svgPath = this.bv(this.b);
|
|
55591
|
+
this.p.fill = this.eq;
|
|
55474
55592
|
this.f = c;
|
|
55475
55593
|
this.f.iz = false;
|
|
55476
55594
|
this.f.co = 1;
|
|
@@ -55481,38 +55599,40 @@ var ComparisonOperatorSelector = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
55481
55599
|
this.f.oc = 0;
|
|
55482
55600
|
this.f.go = 3;
|
|
55483
55601
|
this.f.i6 = false;
|
|
55602
|
+
this.f.yr = new CornerRadius(0, 0);
|
|
55603
|
+
this.f.aa0 = new Thickness(0, 0);
|
|
55484
55604
|
var d = this.f;
|
|
55485
|
-
d.cellClicked = delegateCombine(d.cellClicked, runOn(this, this.
|
|
55486
|
-
this.
|
|
55487
|
-
this.
|
|
55605
|
+
d.cellClicked = delegateCombine(d.cellClicked, runOn(this, this.d9));
|
|
55606
|
+
this.n = new TemplateColumn();
|
|
55607
|
+
this.n.width = ((function () {
|
|
55488
55608
|
var $ret = new ColumnWidth();
|
|
55489
55609
|
$ret.f = 32;
|
|
55490
55610
|
$ret.c = false;
|
|
55491
55611
|
return $ret;
|
|
55492
55612
|
})());
|
|
55493
|
-
this.
|
|
55494
|
-
this.
|
|
55495
|
-
this.
|
|
55496
|
-
var e = this.
|
|
55497
|
-
e.cellUpdating = delegateCombine(e.cellUpdating, runOn(this, this.
|
|
55498
|
-
this.f.columns.add(this.
|
|
55613
|
+
this.n.h2 = this.n.h3 = 4;
|
|
55614
|
+
this.n.h4 = this.n.h1 = 0;
|
|
55615
|
+
this.n.i8 = "Icon";
|
|
55616
|
+
var e = this.n;
|
|
55617
|
+
e.cellUpdating = delegateCombine(e.cellUpdating, runOn(this, this.el));
|
|
55618
|
+
this.f.columns.add(this.n);
|
|
55499
55619
|
var f = new TextColumn();
|
|
55500
55620
|
f.i8 = "DisplayText";
|
|
55501
55621
|
f.h2 = 0;
|
|
55502
55622
|
f.e = 0;
|
|
55503
55623
|
this.f.columns.add(f);
|
|
55504
|
-
this.
|
|
55624
|
+
this.d4();
|
|
55505
55625
|
};
|
|
55506
|
-
ComparisonOperatorSelector.prototype.
|
|
55626
|
+
ComparisonOperatorSelector.prototype.eh = function (a, b) {
|
|
55507
55627
|
var _this = this;
|
|
55508
|
-
this.
|
|
55509
|
-
for (var c = 0; c < this.
|
|
55510
|
-
if (this.
|
|
55511
|
-
this.i = this.
|
|
55628
|
+
this.t = true;
|
|
55629
|
+
for (var c = 0; c < this.v.count; c++) {
|
|
55630
|
+
if (this.v._inner[c].a == b && this.v._inner[c].a != 44) {
|
|
55631
|
+
this.i = this.v._inner[c];
|
|
55512
55632
|
}
|
|
55513
55633
|
}
|
|
55514
|
-
this.
|
|
55515
|
-
this.
|
|
55634
|
+
this.t = false;
|
|
55635
|
+
this.p.svgPath = this.i.Icon;
|
|
55516
55636
|
if (this.valueChanged != null) {
|
|
55517
55637
|
this.valueChanged(this, ((function () {
|
|
55518
55638
|
var $ret = new OperatorSelectorValueChangedEventArgs();
|
|
@@ -55522,110 +55642,124 @@ var ComparisonOperatorSelector = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
55522
55642
|
})()));
|
|
55523
55643
|
}
|
|
55524
55644
|
};
|
|
55525
|
-
ComparisonOperatorSelector.prototype.
|
|
55645
|
+
ComparisonOperatorSelector.prototype.ed = function () {
|
|
55646
|
+
if (this.p != null) {
|
|
55647
|
+
this.p.fill = this.eq;
|
|
55648
|
+
}
|
|
55649
|
+
if (this.f != null) {
|
|
55650
|
+
this.f.zv = this.eq;
|
|
55651
|
+
this.f.zt = this.ep;
|
|
55652
|
+
}
|
|
55653
|
+
};
|
|
55654
|
+
ComparisonOperatorSelector.prototype.ef = function () {
|
|
55526
55655
|
if (this.opening != null) {
|
|
55527
55656
|
this.opening(this, new OperatorSelectorOpeningEventArgs());
|
|
55528
55657
|
}
|
|
55529
55658
|
};
|
|
55530
|
-
ComparisonOperatorSelector.prototype.
|
|
55659
|
+
ComparisonOperatorSelector.prototype.ee = function () {
|
|
55660
|
+
if (this.opened != null) {
|
|
55661
|
+
this.opened(this, new OperatorSelectorOpeningEventArgs());
|
|
55662
|
+
}
|
|
55663
|
+
};
|
|
55664
|
+
ComparisonOperatorSelector.prototype.bv = function (a) {
|
|
55531
55665
|
switch (a) {
|
|
55532
|
-
case 7: return ComparisonOperatorSelector.
|
|
55533
|
-
case 9: return ComparisonOperatorSelector.
|
|
55534
|
-
case 12: return ComparisonOperatorSelector.
|
|
55535
|
-
case 13: return ComparisonOperatorSelector.
|
|
55536
|
-
case 17: return ComparisonOperatorSelector.
|
|
55537
|
-
case 15: return ComparisonOperatorSelector.
|
|
55538
|
-
case 40: return ComparisonOperatorSelector.
|
|
55539
|
-
case 16: return ComparisonOperatorSelector.
|
|
55666
|
+
case 7: return ComparisonOperatorSelector.ab;
|
|
55667
|
+
case 9: return ComparisonOperatorSelector.ac;
|
|
55668
|
+
case 12: return ComparisonOperatorSelector.ad;
|
|
55669
|
+
case 13: return ComparisonOperatorSelector.bn;
|
|
55670
|
+
case 17: return ComparisonOperatorSelector.bo;
|
|
55671
|
+
case 15: return ComparisonOperatorSelector.bp;
|
|
55672
|
+
case 40: return ComparisonOperatorSelector.bq;
|
|
55673
|
+
case 16: return ComparisonOperatorSelector.br;
|
|
55540
55674
|
case 0: return "M5 13.5h14v2H5zm0-5h14v2H5z";
|
|
55541
|
-
case 11: return ComparisonOperatorSelector.
|
|
55542
|
-
case 4: return ComparisonOperatorSelector.
|
|
55543
|
-
case 5: return ComparisonOperatorSelector.
|
|
55544
|
-
case 26: return ComparisonOperatorSelector.
|
|
55545
|
-
case 29: return ComparisonOperatorSelector.
|
|
55546
|
-
case 23: return ComparisonOperatorSelector.
|
|
55547
|
-
case 32: return ComparisonOperatorSelector.
|
|
55548
|
-
case 2: return ComparisonOperatorSelector.
|
|
55549
|
-
case 3: return ComparisonOperatorSelector.
|
|
55550
|
-
case 38: return ComparisonOperatorSelector.
|
|
55551
|
-
case 24: return ComparisonOperatorSelector.
|
|
55552
|
-
case 27: return ComparisonOperatorSelector.
|
|
55553
|
-
case 21: return ComparisonOperatorSelector.
|
|
55554
|
-
case 30: return ComparisonOperatorSelector.
|
|
55555
|
-
case 41: return ComparisonOperatorSelector.
|
|
55556
|
-
case 1: return ComparisonOperatorSelector.
|
|
55557
|
-
case 34: return ComparisonOperatorSelector.
|
|
55558
|
-
case 35: return ComparisonOperatorSelector.
|
|
55559
|
-
case 36: return ComparisonOperatorSelector.
|
|
55560
|
-
case 37: return ComparisonOperatorSelector.
|
|
55561
|
-
case 14: return ComparisonOperatorSelector.
|
|
55562
|
-
case 25: return ComparisonOperatorSelector.
|
|
55563
|
-
case 28: return ComparisonOperatorSelector.
|
|
55564
|
-
case 22: return ComparisonOperatorSelector.
|
|
55565
|
-
case 31: return ComparisonOperatorSelector.
|
|
55566
|
-
case 18: return ComparisonOperatorSelector.
|
|
55567
|
-
case 19: return ComparisonOperatorSelector.
|
|
55568
|
-
case 6: return ComparisonOperatorSelector.
|
|
55569
|
-
case 8: return ComparisonOperatorSelector.
|
|
55570
|
-
case 10: return ComparisonOperatorSelector.
|
|
55571
|
-
case 39: return ComparisonOperatorSelector.
|
|
55572
|
-
case 33: return ComparisonOperatorSelector.
|
|
55573
|
-
case 20: return ComparisonOperatorSelector.
|
|
55675
|
+
case 11: return ComparisonOperatorSelector.bt;
|
|
55676
|
+
case 4: return ComparisonOperatorSelector.bw;
|
|
55677
|
+
case 5: return ComparisonOperatorSelector.bx;
|
|
55678
|
+
case 26: return ComparisonOperatorSelector.by;
|
|
55679
|
+
case 29: return ComparisonOperatorSelector.bz;
|
|
55680
|
+
case 23: return ComparisonOperatorSelector.b0;
|
|
55681
|
+
case 32: return ComparisonOperatorSelector.b1;
|
|
55682
|
+
case 2: return ComparisonOperatorSelector.b2;
|
|
55683
|
+
case 3: return ComparisonOperatorSelector.b3;
|
|
55684
|
+
case 38: return ComparisonOperatorSelector.b4;
|
|
55685
|
+
case 24: return ComparisonOperatorSelector.b5;
|
|
55686
|
+
case 27: return ComparisonOperatorSelector.b6;
|
|
55687
|
+
case 21: return ComparisonOperatorSelector.b7;
|
|
55688
|
+
case 30: return ComparisonOperatorSelector.b8;
|
|
55689
|
+
case 41: return ComparisonOperatorSelector.b9;
|
|
55690
|
+
case 1: return ComparisonOperatorSelector.ca;
|
|
55691
|
+
case 34: return ComparisonOperatorSelector.dh;
|
|
55692
|
+
case 35: return ComparisonOperatorSelector.di;
|
|
55693
|
+
case 36: return ComparisonOperatorSelector.dj;
|
|
55694
|
+
case 37: return ComparisonOperatorSelector.dk;
|
|
55695
|
+
case 14: return ComparisonOperatorSelector.dl;
|
|
55696
|
+
case 25: return ComparisonOperatorSelector.dn;
|
|
55697
|
+
case 28: return ComparisonOperatorSelector.dp;
|
|
55698
|
+
case 22: return ComparisonOperatorSelector.dq;
|
|
55699
|
+
case 31: return ComparisonOperatorSelector.dr;
|
|
55700
|
+
case 18: return ComparisonOperatorSelector.ds;
|
|
55701
|
+
case 19: return ComparisonOperatorSelector.dt;
|
|
55702
|
+
case 6: return ComparisonOperatorSelector.du;
|
|
55703
|
+
case 8: return ComparisonOperatorSelector.dv;
|
|
55704
|
+
case 10: return ComparisonOperatorSelector.dw;
|
|
55705
|
+
case 39: return ComparisonOperatorSelector.dy;
|
|
55706
|
+
case 33: return ComparisonOperatorSelector.dz;
|
|
55707
|
+
case 20: return ComparisonOperatorSelector.d0;
|
|
55574
55708
|
default: return "";
|
|
55575
55709
|
}
|
|
55576
55710
|
};
|
|
55577
|
-
ComparisonOperatorSelector.prototype.
|
|
55711
|
+
ComparisonOperatorSelector.prototype.bu = function (a) {
|
|
55578
55712
|
switch (a) {
|
|
55579
|
-
case 7: return this.
|
|
55580
|
-
case 9: return this.
|
|
55581
|
-
case 12: return this.
|
|
55582
|
-
case 13: return this.
|
|
55583
|
-
case 17: return this.
|
|
55584
|
-
case 15: return this.
|
|
55585
|
-
case 40: return this.
|
|
55586
|
-
case 16: return this.
|
|
55587
|
-
case 0: return this.
|
|
55588
|
-
case 11: return this.
|
|
55589
|
-
case 4: return this.
|
|
55590
|
-
case 5: return this.
|
|
55591
|
-
case 26: return this.
|
|
55592
|
-
case 29: return this.
|
|
55593
|
-
case 23: return this.
|
|
55594
|
-
case 32: return this.
|
|
55595
|
-
case 2: return this.
|
|
55596
|
-
case 3: return this.
|
|
55597
|
-
case 38: return this.
|
|
55598
|
-
case 24: return this.
|
|
55599
|
-
case 27: return this.
|
|
55600
|
-
case 21: return this.
|
|
55601
|
-
case 30: return this.
|
|
55602
|
-
case 41: return this.
|
|
55603
|
-
case 1: return this.
|
|
55604
|
-
case 34: return this.
|
|
55605
|
-
case 35: return this.
|
|
55606
|
-
case 36: return this.
|
|
55607
|
-
case 37: return this.
|
|
55608
|
-
case 14: return this.
|
|
55609
|
-
case 25: return this.
|
|
55610
|
-
case 28: return this.
|
|
55611
|
-
case 22: return this.
|
|
55612
|
-
case 31: return this.
|
|
55613
|
-
case 18: return this.
|
|
55614
|
-
case 19: return this.
|
|
55615
|
-
case 6: return this.
|
|
55616
|
-
case 8: return this.
|
|
55617
|
-
case 10: return this.
|
|
55618
|
-
case 39: return this.
|
|
55619
|
-
case 33: return this.
|
|
55620
|
-
case 20: return this.
|
|
55713
|
+
case 7: return this.cb;
|
|
55714
|
+
case 9: return this.cc;
|
|
55715
|
+
case 12: return this.cd;
|
|
55716
|
+
case 13: return this.ce;
|
|
55717
|
+
case 17: return this.cf;
|
|
55718
|
+
case 15: return this.cg;
|
|
55719
|
+
case 40: return this.ch;
|
|
55720
|
+
case 16: return this.ci;
|
|
55721
|
+
case 0: return this.cj;
|
|
55722
|
+
case 11: return this.ck;
|
|
55723
|
+
case 4: return this.cl;
|
|
55724
|
+
case 5: return this.cm;
|
|
55725
|
+
case 26: return this.cn;
|
|
55726
|
+
case 29: return this.co;
|
|
55727
|
+
case 23: return this.cp;
|
|
55728
|
+
case 32: return this.cq;
|
|
55729
|
+
case 2: return this.cr;
|
|
55730
|
+
case 3: return this.cs;
|
|
55731
|
+
case 38: return this.ct;
|
|
55732
|
+
case 24: return this.cu;
|
|
55733
|
+
case 27: return this.cv;
|
|
55734
|
+
case 21: return this.cw;
|
|
55735
|
+
case 30: return this.cx;
|
|
55736
|
+
case 41: return this.cy;
|
|
55737
|
+
case 1: return this.cz;
|
|
55738
|
+
case 34: return this.c0;
|
|
55739
|
+
case 35: return this.c1;
|
|
55740
|
+
case 36: return this.c2;
|
|
55741
|
+
case 37: return this.c3;
|
|
55742
|
+
case 14: return this.c4;
|
|
55743
|
+
case 25: return this.c5;
|
|
55744
|
+
case 28: return this.c6;
|
|
55745
|
+
case 22: return this.c7;
|
|
55746
|
+
case 31: return this.c8;
|
|
55747
|
+
case 18: return this.c9;
|
|
55748
|
+
case 19: return this.da;
|
|
55749
|
+
case 6: return this.db;
|
|
55750
|
+
case 8: return this.dc;
|
|
55751
|
+
case 10: return this.dd;
|
|
55752
|
+
case 39: return this.de;
|
|
55753
|
+
case 33: return this.df;
|
|
55754
|
+
case 20: return this.dg;
|
|
55621
55755
|
default: return "";
|
|
55622
55756
|
}
|
|
55623
55757
|
};
|
|
55624
|
-
ComparisonOperatorSelector.prototype.
|
|
55625
|
-
this.
|
|
55758
|
+
ComparisonOperatorSelector.prototype.d4 = function () {
|
|
55759
|
+
this.v = new List$1(OperatorModel.$, 0);
|
|
55626
55760
|
switch (this.d) {
|
|
55627
55761
|
case 2:
|
|
55628
|
-
this.
|
|
55762
|
+
this.d2(this.v);
|
|
55629
55763
|
break;
|
|
55630
55764
|
case 10:
|
|
55631
55765
|
case 6:
|
|
@@ -55634,22 +55768,22 @@ var ComparisonOperatorSelector = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
55634
55768
|
case 3:
|
|
55635
55769
|
case 4:
|
|
55636
55770
|
case 7:
|
|
55637
|
-
this.
|
|
55771
|
+
this.d5(this.v);
|
|
55638
55772
|
break;
|
|
55639
55773
|
case 8:
|
|
55640
|
-
this.
|
|
55774
|
+
this.d3(this.v);
|
|
55641
55775
|
break;
|
|
55642
55776
|
case 0:
|
|
55643
|
-
this.
|
|
55777
|
+
this.d6(this.v);
|
|
55644
55778
|
break;
|
|
55645
55779
|
}
|
|
55646
|
-
this.
|
|
55780
|
+
this.v.o(this.u);
|
|
55647
55781
|
if (this.f != null) {
|
|
55648
|
-
this.e.
|
|
55649
|
-
if (this.
|
|
55650
|
-
this.i = this.
|
|
55782
|
+
this.e.v(this.v);
|
|
55783
|
+
if (this.v.count > 0) {
|
|
55784
|
+
this.i = this.v._inner[0];
|
|
55651
55785
|
}
|
|
55652
|
-
this.e.k = Math.min(this.
|
|
55786
|
+
this.e.k = Math.min(this.v.count * this.f.nf + 2, this.z);
|
|
55653
55787
|
}
|
|
55654
55788
|
};
|
|
55655
55789
|
ComparisonOperatorSelector.prototype.h = function (a) {
|
|
@@ -55657,16 +55791,16 @@ var ComparisonOperatorSelector = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
55657
55791
|
return ((function () {
|
|
55658
55792
|
var $ret = new OperatorModel();
|
|
55659
55793
|
$ret.a = a;
|
|
55660
|
-
$ret.DisplayText = _this.
|
|
55661
|
-
$ret.Icon = _this.
|
|
55794
|
+
$ret.DisplayText = _this.bu(a);
|
|
55795
|
+
$ret.Icon = _this.bv(a);
|
|
55662
55796
|
return $ret;
|
|
55663
55797
|
})());
|
|
55664
55798
|
};
|
|
55665
|
-
ComparisonOperatorSelector.prototype.
|
|
55799
|
+
ComparisonOperatorSelector.prototype.d2 = function (a) {
|
|
55666
55800
|
a.add(this.h(10));
|
|
55667
55801
|
a.add(this.h(11));
|
|
55668
55802
|
};
|
|
55669
|
-
ComparisonOperatorSelector.prototype.
|
|
55803
|
+
ComparisonOperatorSelector.prototype.d5 = function (a) {
|
|
55670
55804
|
a.add(this.h(0));
|
|
55671
55805
|
a.add(this.h(1));
|
|
55672
55806
|
a.add(this.h(2));
|
|
@@ -55674,7 +55808,7 @@ var ComparisonOperatorSelector = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
55674
55808
|
a.add(this.h(4));
|
|
55675
55809
|
a.add(this.h(5));
|
|
55676
55810
|
};
|
|
55677
|
-
ComparisonOperatorSelector.prototype.
|
|
55811
|
+
ComparisonOperatorSelector.prototype.d3 = function (a) {
|
|
55678
55812
|
a.add(this.h(0));
|
|
55679
55813
|
a.add(this.h(1));
|
|
55680
55814
|
a.add(this.h(2));
|
|
@@ -55704,7 +55838,7 @@ var ComparisonOperatorSelector = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
55704
55838
|
a.add(this.h(36));
|
|
55705
55839
|
a.add(this.h(37));
|
|
55706
55840
|
};
|
|
55707
|
-
ComparisonOperatorSelector.prototype.
|
|
55841
|
+
ComparisonOperatorSelector.prototype.d6 = function (a) {
|
|
55708
55842
|
a.add(this.h(0));
|
|
55709
55843
|
a.add(this.h(1));
|
|
55710
55844
|
a.add(this.h(14));
|
|
@@ -55716,127 +55850,128 @@ var ComparisonOperatorSelector = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
55716
55850
|
a.add(this.h(40));
|
|
55717
55851
|
a.add(this.h(41));
|
|
55718
55852
|
};
|
|
55719
|
-
ComparisonOperatorSelector.prototype.
|
|
55853
|
+
ComparisonOperatorSelector.prototype.y = function () {
|
|
55720
55854
|
if (this.f != null) {
|
|
55721
55855
|
var a = Math.min(8, this.f.actualDataSource != null ? this.f.actualDataSource.actualCount : 0);
|
|
55722
55856
|
return a * (this.f.nf + this.f.oc) + this.f.ne + 2;
|
|
55723
55857
|
}
|
|
55724
55858
|
return 0;
|
|
55725
55859
|
};
|
|
55726
|
-
ComparisonOperatorSelector.prototype.
|
|
55727
|
-
if (this.
|
|
55728
|
-
if (!this.
|
|
55729
|
-
this.
|
|
55730
|
-
this.
|
|
55860
|
+
ComparisonOperatorSelector.prototype.em = function () {
|
|
55861
|
+
if (this.q != null) {
|
|
55862
|
+
if (!this.q.t) {
|
|
55863
|
+
this.ef();
|
|
55864
|
+
this.q.showRelativeToExclusionRect(this.e.w(), 1, 0);
|
|
55865
|
+
this.ee();
|
|
55731
55866
|
}
|
|
55732
55867
|
else {
|
|
55733
|
-
this.
|
|
55868
|
+
this.q.ao();
|
|
55734
55869
|
}
|
|
55735
55870
|
}
|
|
55736
55871
|
};
|
|
55737
|
-
ComparisonOperatorSelector.prototype.
|
|
55738
|
-
if (this.
|
|
55739
|
-
this.
|
|
55872
|
+
ComparisonOperatorSelector.prototype.d8 = function () {
|
|
55873
|
+
if (this.q != null) {
|
|
55874
|
+
this.q.ao();
|
|
55740
55875
|
}
|
|
55741
55876
|
};
|
|
55742
|
-
ComparisonOperatorSelector.prototype.
|
|
55877
|
+
ComparisonOperatorSelector.prototype.d1 = function (a, b, c, d) {
|
|
55743
55878
|
var e = ((function () {
|
|
55744
55879
|
var $ret = new OperatorModel();
|
|
55745
55880
|
$ret.DisplayText = a;
|
|
55746
|
-
$ret.Icon = b != null ? b : ComparisonOperatorSelector.
|
|
55881
|
+
$ret.Icon = b != null ? b : ComparisonOperatorSelector.af;
|
|
55747
55882
|
$ret.a = 44;
|
|
55748
55883
|
$ret.c = c;
|
|
55749
55884
|
$ret.b = d;
|
|
55750
55885
|
return $ret;
|
|
55751
55886
|
})());
|
|
55752
|
-
this.
|
|
55753
|
-
if (this.
|
|
55754
|
-
this.
|
|
55887
|
+
this.u.add(e);
|
|
55888
|
+
if (this.v != null) {
|
|
55889
|
+
this.v.add(e);
|
|
55755
55890
|
}
|
|
55756
55891
|
if (this.f != null && this.f.actualDataSource != null) {
|
|
55757
|
-
this.f.actualDataSource.notifyInsertItem(this.
|
|
55892
|
+
this.f.actualDataSource.notifyInsertItem(this.v.count, e);
|
|
55758
55893
|
}
|
|
55759
55894
|
};
|
|
55760
|
-
ComparisonOperatorSelector.prototype.
|
|
55761
|
-
if (this.
|
|
55895
|
+
ComparisonOperatorSelector.prototype.d7 = function () {
|
|
55896
|
+
if (this.v == null) {
|
|
55762
55897
|
return;
|
|
55763
55898
|
}
|
|
55764
|
-
for (var a = 0; a < this.
|
|
55765
|
-
if (this.
|
|
55766
|
-
this.
|
|
55899
|
+
for (var a = 0; a < this.v.count; a++) {
|
|
55900
|
+
if (this.v._inner[a].a == 44) {
|
|
55901
|
+
this.v.removeAt(a);
|
|
55767
55902
|
a--;
|
|
55768
55903
|
}
|
|
55769
55904
|
}
|
|
55770
|
-
this.
|
|
55905
|
+
this.u.clear();
|
|
55771
55906
|
};
|
|
55772
|
-
ComparisonOperatorSelector.prototype.
|
|
55907
|
+
ComparisonOperatorSelector.prototype.ek = function (a, b) {
|
|
55773
55908
|
if (a != null) {
|
|
55774
|
-
for (var c = 0; c < this.
|
|
55775
|
-
if (this.
|
|
55776
|
-
this.i = this.
|
|
55909
|
+
for (var c = 0; c < this.u.count; c++) {
|
|
55910
|
+
if (this.u._inner[c].c == a) {
|
|
55911
|
+
this.i = this.u._inner[c];
|
|
55777
55912
|
}
|
|
55778
55913
|
}
|
|
55779
55914
|
}
|
|
55780
55915
|
else {
|
|
55781
|
-
if (b >= 0 && b < this.
|
|
55782
|
-
this.i = this.
|
|
55916
|
+
if (b >= 0 && b < this.u.count) {
|
|
55917
|
+
this.i = this.u._inner[b];
|
|
55783
55918
|
}
|
|
55784
55919
|
}
|
|
55785
55920
|
};
|
|
55786
|
-
ComparisonOperatorSelector.prototype.
|
|
55787
|
-
this.
|
|
55921
|
+
ComparisonOperatorSelector.prototype.ec = function (a, b) {
|
|
55922
|
+
this.em();
|
|
55788
55923
|
};
|
|
55789
|
-
ComparisonOperatorSelector.prototype.
|
|
55924
|
+
ComparisonOperatorSelector.prototype.d9 = function (a, b) {
|
|
55790
55925
|
var c = b.cellInfo.et;
|
|
55791
55926
|
this.i = this.f.actualDataSource.getItemAtIndex(c);
|
|
55792
|
-
this.
|
|
55927
|
+
this.d8();
|
|
55793
55928
|
};
|
|
55794
|
-
ComparisonOperatorSelector.prototype.
|
|
55795
|
-
this.e.
|
|
55929
|
+
ComparisonOperatorSelector.prototype.el = function (a, b) {
|
|
55930
|
+
this.e.t(b.content, b.cellInfo.g4);
|
|
55796
55931
|
};
|
|
55797
55932
|
ComparisonOperatorSelector.$t = markType(ComparisonOperatorSelector, 'ComparisonOperatorSelector', Base.$, [INotifyPropertyChanged_$type]);
|
|
55798
|
-
ComparisonOperatorSelector.
|
|
55799
|
-
ComparisonOperatorSelector.
|
|
55800
|
-
ComparisonOperatorSelector.
|
|
55801
|
-
ComparisonOperatorSelector.
|
|
55802
|
-
ComparisonOperatorSelector.
|
|
55803
|
-
ComparisonOperatorSelector.
|
|
55804
|
-
ComparisonOperatorSelector.
|
|
55805
|
-
ComparisonOperatorSelector.
|
|
55806
|
-
ComparisonOperatorSelector.
|
|
55807
|
-
ComparisonOperatorSelector.
|
|
55808
|
-
ComparisonOperatorSelector.
|
|
55809
|
-
ComparisonOperatorSelector.
|
|
55810
|
-
ComparisonOperatorSelector.
|
|
55811
|
-
ComparisonOperatorSelector.
|
|
55812
|
-
ComparisonOperatorSelector.
|
|
55813
|
-
ComparisonOperatorSelector.
|
|
55814
|
-
ComparisonOperatorSelector.
|
|
55815
|
-
ComparisonOperatorSelector.
|
|
55816
|
-
ComparisonOperatorSelector.
|
|
55817
|
-
ComparisonOperatorSelector.
|
|
55818
|
-
ComparisonOperatorSelector.
|
|
55819
|
-
ComparisonOperatorSelector.
|
|
55820
|
-
ComparisonOperatorSelector.
|
|
55821
|
-
ComparisonOperatorSelector.
|
|
55822
|
-
ComparisonOperatorSelector.
|
|
55823
|
-
ComparisonOperatorSelector.
|
|
55824
|
-
ComparisonOperatorSelector.
|
|
55825
|
-
ComparisonOperatorSelector.
|
|
55826
|
-
ComparisonOperatorSelector.
|
|
55827
|
-
ComparisonOperatorSelector.
|
|
55828
|
-
ComparisonOperatorSelector.
|
|
55829
|
-
ComparisonOperatorSelector.
|
|
55830
|
-
ComparisonOperatorSelector.
|
|
55831
|
-
ComparisonOperatorSelector.
|
|
55832
|
-
ComparisonOperatorSelector.
|
|
55833
|
-
ComparisonOperatorSelector.
|
|
55834
|
-
ComparisonOperatorSelector.
|
|
55835
|
-
ComparisonOperatorSelector.
|
|
55836
|
-
ComparisonOperatorSelector.
|
|
55837
|
-
ComparisonOperatorSelector.
|
|
55838
|
-
ComparisonOperatorSelector.
|
|
55839
|
-
ComparisonOperatorSelector.
|
|
55933
|
+
ComparisonOperatorSelector.dw = "M 8 5 A 7 7 0 1 0 15 12 A 7 7 0 0 0 8 5 z M 18 7 A 5 5 0 0 0 15 8.0605469 A 7.48 7.48 0 0 1 15.490234 9.0605469 A 3.89 3.89 0 1 1 15.490234 14.880859 A 8.08 8.08 0 0 1 15 15.880859 A 5 5 0 1 0 18 7 z M 11.179688 8.8203125 L 12.310547 9.9394531 L 7.0703125 15.179688 L 3.6894531 11.810547 L 4.8203125 10.689453 L 7.0703125 12.939453 L 11.179688 8.8203125 z M 16.560547 9.7792969 L 15.779297 10.560547 L 17.210938 12 L 15.779297 13.439453 L 16.560547 14.220703 L 18 12.789062 L 19.439453 14.220703 L 20.220703 13.439453 L 18.789062 12 L 20.220703 10.560547 L 19.439453 9.7792969 L 18 11.210938 L 16.560547 9.7792969 z ";
|
|
55934
|
+
ComparisonOperatorSelector.bt = "M 8 5 A 7 7 0 1 0 15 12 A 7 7 0 0 0 8 5 z M 18 7 A 5 5 0 0 0 15 8.0605469 A 7.48 7.48 0 0 1 15.490234 9.0605469 A 3.89 3.89 0 1 1 15.490234 14.880859 A 8.08 8.08 0 0 1 15 15.880859 A 5 5 0 1 0 18 7 z M 5.2109375 7.6894531 L 8 10.480469 L 10.789062 7.6894531 L 12.310547 9.2109375 L 9.5195312 12 L 12.310547 14.789062 L 10.789062 16.310547 L 8 13.519531 L 5.2109375 16.310547 L 3.6894531 14.789062 L 6.4804688 12 L 3.6894531 9.2109375 L 5.2109375 7.6894531 z M 19.650391 10.150391 L 17.519531 12.269531 L 16.349609 11.119141 L 15.970703 11.490234 L 15.560547 11.900391 L 15.980469 12.320312 L 17 13.339844 L 17.519531 13.849609 L 20.429688 10.929688 L 19.650391 10.150391 z ";
|
|
55935
|
+
ComparisonOperatorSelector.ca = "M17.37 4.71l-1.74-1-2.76 4.79H5v2h6.71l-1.73 3H5v2h3.82l-2.19 3.79 1.74 1 2.76-4.79H19v-2h-6.71l1.73-3H19v-2h-3.82l2.19-3.79z";
|
|
55936
|
+
ComparisonOperatorSelector.ad = "m 3,3 v 18 h 18 v -18 z m 1.9999697,1.9999697 h 14.0000603 v 14.0000603 h -14.0000603 z m 7.2332153,2.9162292 a 3.34,3.34 0 0 0 -0.113159,0.00385 3.54,3.54 0 0 0 -2.2999882,0.7199704 1.93,1.93 0 0 0 -0.8200378,1.6499637 h 1.710023 a 0.93,0.93 0 0 1 0.289947,-0.7099915 1.5,1.5 0 0 1 1.000031,-0.2899476 1.45,1.45 0 0 1 1.00003,0.3500062 1.3,1.3 0 0 1 0.369965,0.9999389 v 0.690033 l -1.369995,-0.03003 a 4.39,4.39 0 0 0 -2.5400401,0.629974 2.07,2.07 0 0 0 -0.8999634,1.78006 2.29,2.29 0 0 0 0.6600038,1.73996 2.63,2.63 0 0 0 1.8900147,0.629974 2.39,2.39 0 0 0 1.320008,-0.369965 3.05,3.05 0 0 0 0.999939,-0.929992 3.72,3.72 0 0 0 0.08002,0.570007 c 0,0.19 0.100034,0.379987 0.160033,0.579986 h 1.789947 a 4.51,4.51 0 0 1 -0.20993,-0.880004 5.5700002,5.5700002 0 0 1 -0.07004,-0.929993 v -3.499969 a 2.44,2.44 0 0 0 -0.839996,-2.0000615 3.34,3.34 0 0 0 -2.106812,-0.7037658 z m -0.315032,4.4605411 a 1.76,1.76 0 0 1 0.08185,0.0033 h 1.400024 v 1.169953 a 1.61,1.61 0 0 1 -0.709992,0.77005 2.27,2.27 0 0 1 -1.210051,0.339935 1.18,1.18 0 0 1 -0.839996,-0.269989 0.92000002,0.92000002 0 0 1 -0.300019,-0.719971 1.16,1.16 0 0 1 0.440003,-0.900055 1.76,1.76 0 0 1 1.138184,-0.393218 z";
|
|
55937
|
+
ComparisonOperatorSelector.bn = "M21 19.74V3H4.26L2.89 1.63 1.63 2.92 3 4.29V21h16.73l1.37 1.37 1.27-1.26zM5 19V6.28l5.28 5.27a3.19 3.19 0 00-.81.38 2.07 2.07 0 00-.9 1.78 2.29 2.29 0 00.66 1.74 2.63 2.63 0 001.89.63 2.39 2.39 0 001.32-.37 3.05 3.05 0 001-.93 3.72 3.72 0 00.08.57c0 .19.1.38.16.58h1L17.73 19zm5.79-6.23a1.31 1.31 0 01.45-.25l1.37 1.36.28.29a1.57 1.57 0 01-.19.15 2.27 2.27 0 01-1.21.34 1.18 1.18 0 01-.84-.27.92.92 0 01-.3-.72 1.16 1.16 0 01.44-.9zm2.6-1.47h-.83l-1.62-1.62.08-.1a1.5 1.5 0 011-.29 1.45 1.45 0 011 .35 1.3 1.3 0 01.37 1zM19 17.74l-3.85-3.85v-3.27a2.44 2.44 0 00-.84-2 3.34 3.34 0 00-2.22-.7 3.64 3.64 0 00-2.24.67L6.26 5H19z";
|
|
55938
|
+
ComparisonOperatorSelector.dl = "M5.9 7.5l-3.9 9h1.7l.7-1.8h4.1l.7 1.8H11l-3.9-9H5.9zM5 13.2l1.5-4.1L8 13.2H5zm7 1.3h2v2h-2v-2zm8 0h2v2h-2v-2zm-4 0h2v2h-2v-2z";
|
|
55939
|
+
ComparisonOperatorSelector.bp = "M3.707,21.707,2.293,20.293l18-18,1.414,1.414ZM6,11H8.757l2-2H6ZM4,3H16.757l2-2H4A2,2,0,0,0,2,3V17.757l2-2ZM6,7h6.757l2-2H6ZM20,21H7.243l-2,2H20a2,2,0,0,0,2-2V6.243l-2,2Z";
|
|
55940
|
+
ComparisonOperatorSelector.br = "M3 14.5h2v2H3zm8 0h2v2h-2zm-4 0h2v2H7zm13.8.3v-3A2.1 2.1 0 0020 10a3 3 0 00-2-.6 3 3 0 00-2 .6 1.7 1.7 0 00-.7 1.5h1.5a.8.8 0 01.3-.7 1.3 1.3 0 01.9-.3 1.3 1.3 0 01.9.4 1.1 1.1 0 01.3.8v.6H18a3.8 3.8 0 00-2.2.6 1.8 1.8 0 00-.8 1.5 2 2 0 00.6 1.6 2.3 2.3 0 001.6.6 2.1 2.1 0 001.2-.4 2.8 2.8 0 00.8-.8 4.3 4.3 0 00.1.5l.1.5H21a4.1 4.1 0 01-.2-.7 5.4 5.4 0 010-1zm-1.6-.5a1.5 1.5 0 01-.6.7 2 2 0 01-1 .2 1.1 1.1 0 01-.8-.2.8.8 0 01-.2-.6 1 1 0 01.3-.8 1.5 1.5 0 011.1-.3h1.2z";
|
|
55941
|
+
ComparisonOperatorSelector.bo = "M20.293,2.293l1.414,1.414-18,18L2.293,20.293ZM18,13H15.243l-2,2H18Zm2,8H7.243l-2,2H20a2,2,0,0,0,2-2V6.242l-2,2Zm-2-4H11.243l-2,2H18ZM4,3H16.757l2-2H4A2,2,0,0,0,2,3V17.757l2-2Z";
|
|
55942
|
+
ComparisonOperatorSelector.bw = "M6 7.11L15.09 12 6 16.89V19l12-6.46v-1.08L6 5v2.11z";
|
|
55943
|
+
ComparisonOperatorSelector.bx = "M5.99 19h12.02v2H5.99zM18 9.47L6 3v2.11L15.09 10 6 14.9v2.11l12-6.47V9.47z";
|
|
55944
|
+
ComparisonOperatorSelector.b2 = "M6 12.54L18 19v-2.11L8.91 12 18 7.11V5L6 11.46v1.08z";
|
|
55945
|
+
ComparisonOperatorSelector.b3 = "M5.99 19h12.02v2H5.99zM18 14.9L8.91 10 18 5.11V3L6 9.47v1.07l12 6.47V14.9z";
|
|
55946
|
+
ComparisonOperatorSelector.bq = "M5 17h2v2H5zm8 0h2v2h-2zm-8-4h2v2H5zm12 4h2v2h-2zM13 5h2v2h-2zM9 17h2v2H9zm8-8h2v2h-2zm0 4h2v2h-2zm0-8h2v2h-2zM5 9h2v2H5zm0-4h2v2H5zm4 0h2v2H9z";
|
|
55947
|
+
ComparisonOperatorSelector.b9 = "M5 9h2v2H5zm4 8h2v2H9zm4 0h2v2h-2zm4-8h2v2h-2zm0-4h2v2h-2zM5 17h2v2H5zm8-12h2v2h-2zm-8 8h2v2H5zm14 2v-2h-2v.47L18.53 15H19zm-8-8V5H9v.46L10.54 7H11zM2.76 1.76L1.5 3.06 20.97 22.5l1.26-1.26-8.89-8.89L2.76 1.76z";
|
|
55948
|
+
ComparisonOperatorSelector.ds = "m 6,1.9999695 v 2.000061 h -1.0000303 a 2,2 0 0 0 -1.9999697,1.9999695 v 13.99997 a 2,2 0 0 0 1.9999697,2.00006 h 14.0000613 a 2,2 0 0 0 1.99997,-2.00006 v -13.99997 a 2,2 0 0 0 -1.99997,-1.9999695 h -1.00003 v -2.000061 h -1.99997 v 2.000061 h -8.0000613 v -2.000061 z m -1.0000303,7.0000305 h 14.0000613 v 10.99997 h -14.0000613 z m 10.4700623,1.99997 -4.880035,4.880035 -2.1199957,-2.119995 -1.0599975,1.059998 3.1799932,3.179992 5.940033,-5.940033 z";
|
|
55949
|
+
ComparisonOperatorSelector.dt = "m 6,1.9999695 v 2.000061 h -1.0000303 c -1.1000002,0 -1.9999697,0.8999693 -1.9999697,1.9999695 v 13.99997 c 0,1.099999 0.8999695,2.00006 1.9999697,2.00006 h 14.0000603 c 1.1,0 1.999969,-0.900061 1.999969,-2.00006 v -13.99997 c 0,-1.1000002 -0.899969,-1.9999695 -1.999969,-1.9999695 h -1.000031 v -2.000061 h -1.999969 v 2.000061 h -8.0000603 v -2.000061 z m -1.0000303,7.0000305 h 14.0000603 v 10.99997 h -14.0000603 z m 8.2999883,1.99997 v 2.600005 h -6.0999763 v 1.800019 h 6.0999763 v 2.600006 l 3.50006,-3.49997 z";
|
|
55950
|
+
ComparisonOperatorSelector.d0 = "M 6,1.9999688 V 4.0000237 H 4.9999697 A 2,1.9999939 0 0 0 3,5.9999872 V 19.999914 a 2,1.9999939 0 0 0 1.9999697,2.000055 H 19.00003 A 2,1.9999939 0 0 0 21,19.999914 V 5.9999872 A 2,1.9999939 0 0 0 19.00003,4.0000237 H 18 V 1.9999688 H 16.00003 V 4.0000237 H 7.9999697 V 1.9999688 Z M 4.9999697,8.9999779 H 19.00003 V 19.999914 H 4.9999697 Z m 5.6800223,1.9999641 -3.4899895,3.50005 3.4899895,3.499959 v -2.619957 h 6.130005 v -1.750025 h -6.130005 z";
|
|
55951
|
+
ComparisonOperatorSelector.dn = "m 6,1.0000305 v 1.9999695 h -1.0000303 a 2,2 0 0 0 -1.9999697,1.9999697 v 15.0000003 a 2,2 0 0 0 1.9999697,2.00006 h 7.0000313 v -2.00006 h -7.0000313 v -12.0000003 h 14.0000613 v 4.0000303 h 1.99997 v -7.0000303 a 2,2 0 0 0 -1.99997,-1.9999697 h -1.00003 v -1.9999695 h -1.99997 v 1.9999695 h -8.0000613 v -1.9999695 z m 0,7.9999695 v 1.99997 h 1.9999697 v -1.99997 z m 4.99997,0 v 1.99997 h 2.000061 v -1.99997 z m 5.000061,0 v 1.99997 h 1.99997 v -1.99997 z m -10.000031,4.00003 v 1.99997 h 1.9999697 v -1.99997 z m 4.99997,0 v 1.99997 h 2.000061 v -1.99997 z m 7.039581,1.025208 a 4.5,4.5 0 1 0 4.960419,4.474732 4.47,4.47 0 0 0 -1.999969,-3.73993 4.5,4.5 0 0 0 -2.96045,-0.734802 z m 1.960419,2.804718 0.709991,0.710083 -2.649993,2.629944 -1.749939,-1.76001 0.689941,-0.709991 1.050018,1.00003 z m -13.99997,0.170014 v 2.00006 h 1.9999697 v -2.00006 z m 4.99997,0 v 2.00006 h 2.000061 v -2.00006 z";
|
|
55952
|
+
ComparisonOperatorSelector.b5 = "m 4.9999689,1.0000305 v 1.9999695 h -0.9999391 a 2,2 0 0 0 -2.000061,1.9999697 v 15.0000003 a 2,2 0 0 0 2.000061,2.00006 h 6.9999382 v -2.00006 h -6.9999382 v -12.0000003 h 13.9999692 v 4.0000303 h 1.999969 v -7.0000303 a 2,2 0 0 0 -1.999969,-1.9999697 h -1.000031 v -1.9999695 h -1.999969 v 1.9999695 h -7.9999694 v -1.9999695 z m 0,7.9999695 v 1.99997 h 2.0000607 v -1.99997 z m 5.0000611,0 v 1.99997 h 1.999969 v -1.99997 z m 4.999969,0 v 1.99997 h 1.999969 v -1.99997 z m -10.0000301,4.00003 v 1.99997 h 2.0000607 v -1.99997 z m 5.0000611,0 v 1.99997 h 1.999969 v -1.99997 z m 7.039489,1.025208 a 4.5,4.5 0 1 0 4.96051,4.474732 4.47,4.47 0 0 0 -2.000061,-3.73993 4.5,4.5 0 0 0 -2.960449,-0.734802 z m 0.96048,1.474732 3,3 -3,3 v -1.99997 h -4.000031 v -1.99997 h 4.000031 z m -13.0000301,1.5 v 2.00006 h 2.0000607 v -2.00006 z m 5.0000611,0 v 2.00006 h 1.999969 v -2.00006 z";
|
|
55953
|
+
ComparisonOperatorSelector.by = "m 4.9999689,1.0000305 v 1.9999695 h -0.9999391 a 2,2 0 0 0 -2.000061,1.9999697 v 15.0000003 a 2,2 0 0 0 2.000061,2.00006 h 6.9999382 v -2.00006 h -6.9999382 v -12.0000003 h 13.9999692 v 4.0000303 h 1.999969 v -7.0000303 a 2,2 0 0 0 -1.999969,-1.9999697 h -1.000031 v -1.9999695 h -1.999969 v 1.9999695 h -7.9999694 v -1.9999695 z m 0,7.9999695 v 1.99997 h 2.0000607 v -1.99997 z m 5.0000611,0 v 1.99997 h 1.999969 v -1.99997 z m 4.999969,0 v 1.99997 h 1.999969 v -1.99997 z m -10.0000301,4.00003 v 1.99997 h 2.0000607 v -1.99997 z m 5.0000611,0 v 1.99997 h 1.999969 v -1.99997 z m 7.499999,0.99994 a 4.48,4.48 0 1 0 4.5,4.5 4.47,4.47 0 0 0 -4.5,-4.5 z m -0.500061,1.5 v 2.00006 h 4.000031 v 1.99997 h -4.000031 v 1.99997 l -3,-3 z m -11.9999991,1.5 v 2.00006 h 2.0000607 v -2.00006 z m 5.0000611,0 v 2.00006 h 1.999969 v -2.00006 z";
|
|
55954
|
+
ComparisonOperatorSelector.dr = "m 4.0000313,1.0000305 v 1.9999695 h -1.0000305 a 2,2 0 0 0 -1.9999695,1.9999697 v 12.0000003 a 2,2 0 0 0 1.9999695,2.00006 h 13.9999702 a 2,2 0 0 0 2.000061,-2.00006 v -12.0000003 a 2,2 0 0 0 -2.000061,-1.9999697 h -0.999939 v -1.9999695 h -2.000061 v 1.9999695 h -7.9999702 v -1.9999695 z m -1.0000305,5.9999998 h 13.9999702 v 9.9999397 h -13.9999702 z m 9.9200142,2.0799867 -4.0699777,4.069977 -1.7700806,-1.769989 -0.8799131,0.889984 2.6499937,2.649994 4.9499827,-4.959961 z m 8.079986,0.920013 v 10.99997 h -13.9999699 v 1.99997 h 13.9999699 a 2,2 0 0 0 1.99997,-1.99997 v -10.99997 z";
|
|
55955
|
+
ComparisonOperatorSelector.b8 = "m 4.0000313,1.0000305 v 1.9999695 h -1.0000305 a 2,2 0 0 0 -1.9999695,1.9999697 v 12.0000003 a 2,2 0 0 0 1.9999695,2.00006 h 13.9999702 a 2,2 0 0 0 2.000061,-2.00006 v -12.0000003 a 2,2 0 0 0 -2.000061,-1.9999697 h -0.999939 v -1.9999695 h -2.000061 v 1.9999695 h -7.9999702 v -1.9999695 z m -1.0000305,5.9999998 h 13.9999702 v 9.9999397 h -13.9999702 z m 8.1299742,1.9999697 v 2.25 h -5.25 v 1.5 h 5.25 v 2.25 l 3,-3 z m 9.870026,1.00003 v 10.99997 h -13.9999699 v 1.99997 h 13.9999699 a 2,2 0 0 0 1.99997,-1.99997 v -10.99997 z";
|
|
55956
|
+
ComparisonOperatorSelector.b1 = "m 4.0000313,1.0000305 v 1.9999695 h -1.0000305 a 2,2 0 0 0 -1.9999695,1.9999697 v 12.0000003 a 2,2 0 0 0 1.9999695,2.00006 h 13.9999702 a 2,2 0 0 0 2.000061,-2.00006 v -12.0000003 a 2,2 0 0 0 -2.000061,-1.9999697 h -0.999939 v -1.9999695 h -2.000061 v 1.9999695 h -7.9999702 v -1.9999695 z m -1.0000305,5.9999998 h 13.9999702 v 9.9999397 h -13.9999702 z m 5.869995,1.9999697 -2.9900208,3 2.9900208,3 v -2.25 h 5.2599792 v -1.5 h -5.2599792 z m 12.1300052,1.00003 v 10.99997 h -13.9999699 v 1.99997 h 13.9999699 a 2,2 0 0 0 1.99997,-1.99997 v -10.99997 z";
|
|
55957
|
+
ComparisonOperatorSelector.dp = "M12,7V17H22A10,10,0,0,0,12,7Zm-2,5L6,16V13H2V11H6V8Z";
|
|
55958
|
+
ComparisonOperatorSelector.b6 = "M4,9.253A8.03,8.03,0,0,1,9.747,15H4V9.253M2,7V17H12A10,10,0,0,0,2,7ZM18,8v3H14v2h4v3l4-4Z";
|
|
55959
|
+
ComparisonOperatorSelector.bz = "M12,7V17H22A10,10,0,0,0,12,7ZM2,12l4,4V13h4V11H6V8Z";
|
|
55960
|
+
ComparisonOperatorSelector.dq = "M22,4V20a2,2,0,0,1-2,2H15V20h5V4H4V20H9v2H4a2,2,0,0,1-2-2V4A2,2,0,0,1,4,2H20A2,2,0,0,1,22,4ZM18,6H6V9H18ZM8,15h3v7h2V15h3l-4-4Z";
|
|
55961
|
+
ComparisonOperatorSelector.b7 = "M20,2H4A2,2,0,0,0,2,4V20a2,2,0,0,0,2,2H20a2,2,0,0,0,2-2V4A2,2,0,0,0,20,2Zm0,18H4V4H20ZM18,9H6V6H18Zm0,5-4,4V15H6V13h8V10Z";
|
|
55962
|
+
ComparisonOperatorSelector.b0 = "M20,2H4A2,2,0,0,0,2,4V20a2,2,0,0,0,2,2H20a2,2,0,0,0,2-2V4A2,2,0,0,0,20,2Zm0,18H4V4H20Zm-2-2H6V15H18ZM10,6V9h8v2H10v3L6,10Z";
|
|
55963
|
+
ComparisonOperatorSelector.dz = "M20,2H4A2,2,0,0,0,2,4V20a2,2,0,0,0,2,2H20a2,2,0,0,0,2-2V4A2,2,0,0,0,20,2Zm0,18H4V4H20ZM5,10H6.127L7.2,11.58,8.258,10H9.379l-1.7,2.465V14H6.677V12.442Zm5.044.74V10h3.745v.74h-1.37V14H11.414V10.74ZM16.926,10a2.667,2.667,0,0,1,.823.123,1.86,1.86,0,0,1,.659.37,1.679,1.679,0,0,1,.435.616,2.205,2.205,0,0,1,.157.868,2.456,2.456,0,0,1-.128.807,1.7,1.7,0,0,1-.387.639,1.828,1.828,0,0,1-.647.423,2.453,2.453,0,0,1-.912.154H14.954V10Zm-.07,3.26a1.46,1.46,0,0,0,.422-.061.951.951,0,0,0,.365-.205,1.007,1.007,0,0,0,.256-.372,1.453,1.453,0,0,0,.1-.56,2.054,2.054,0,0,0-.067-.547,1.046,1.046,0,0,0-.221-.417.973.973,0,0,0-.407-.266,1.818,1.818,0,0,0-.624-.092h-.717v2.52Z";
|
|
55964
|
+
ComparisonOperatorSelector.dh = "M8.5,22a6.5,6.5,0,0,1,0-13h.65v5.85H15v.65A6.508,6.508,0,0,1,8.5,22ZM7.85,10.34a5.2,5.2,0,1,0,5.81,5.81H7.85ZM11,2V13H22A11,11,0,0,0,11,2Zm5,8H15V6h1Z";
|
|
55965
|
+
ComparisonOperatorSelector.di = "M2,8.5a6.5,6.5,0,0,1,13,0v.65H9.15V15H8.5A6.508,6.508,0,0,1,2,8.5Zm11.66-.65a5.2,5.2,0,1,0-5.81,5.81V7.85ZM11,11V22A11,11,0,0,0,22,11Zm4,6H14V13h1Zm2,0H16V13h1Z";
|
|
55966
|
+
ComparisonOperatorSelector.dj = "M15.5,2a6.5,6.5,0,0,1,0,13h-.65V9.15H9V8.5A6.508,6.508,0,0,1,15.5,2Zm.65,11.66a5.2,5.2,0,1,0-5.81-5.81h5.81ZM2,11A11,11,0,0,0,13,22V11Zm5,6H6V13H7Zm2,0H8V13H9Zm2,0H10V13h1Z";
|
|
55967
|
+
ComparisonOperatorSelector.dk = "M22,15.5a6.5,6.5,0,0,1-13,0v-.65h5.85V9h.65A6.508,6.508,0,0,1,22,15.5Zm-11.66.65a5.2,5.2,0,1,0,5.81-5.81v5.81ZM2,13H13V2A11,11,0,0,0,2,13Zm5-2H6V7H7Zm3,0L8,7H9l1,2,1-2h1Z";
|
|
55968
|
+
ComparisonOperatorSelector.b4 = "M20,2H4A2,2,0,0,0,2,4V20a2,2,0,0,0,2,2H20a2,2,0,0,0,2-2V4A2,2,0,0,0,20,2Zm0,18H4V4H20ZM11,9H9V7h2Zm4,0H13V7h2ZM7,13H5V11H7Zm4,0H9V11h2Zm4,0H13V11h2Zm4,0H17V11h2ZM7,17H5V15H7Zm4,0H9V15h2Zm4,0H13V15h2Zm4-8H17V7h2Z";
|
|
55969
|
+
ComparisonOperatorSelector.dy = "M20,2H4A2,2,0,0,0,2,4V20a2,2,0,0,0,2,2H20a2,2,0,0,0,2-2V4A2,2,0,0,0,20,2Zm0,18H4V4H20ZM7.7,11.634a1.151,1.151,0,0,0,.317-.063.618.618,0,0,0,.243-.152.367.367,0,0,0,.1-.264.429.429,0,0,0-.2-.379.79.79,0,0,0-.452-.132.689.689,0,0,0-.533.2A.668.668,0,0,0,7,11.331H6.112a1.428,1.428,0,0,1,.127-.542,1.246,1.246,0,0,1,.321-.42,1.465,1.465,0,0,1,.5-.273A2.022,2.022,0,0,1,7.7,10a2.258,2.258,0,0,1,.55.069,1.7,1.7,0,0,1,.5.206,1.21,1.21,0,0,1,.357.336.784.784,0,0,1,.137.456.8.8,0,0,1-.16.495.815.815,0,0,1-.482.292v.011a1.04,1.04,0,0,1,.6.308.813.813,0,0,1,.216.567,1.041,1.041,0,0,1-.14.539,1.238,1.238,0,0,1-.377.4,1.785,1.785,0,0,1-.544.242A2.605,2.605,0,0,1,7,13.906a1.542,1.542,0,0,1-.54-.272,1.207,1.207,0,0,1-.344-.438A1.322,1.322,0,0,1,6,12.6h.885a.931.931,0,0,0,.058.294.7.7,0,0,0,.151.243.727.727,0,0,0,.246.162.925.925,0,0,0,.35.06.86.86,0,0,0,.531-.162.524.524,0,0,0,.216-.443.5.5,0,0,0-.1-.335.59.59,0,0,0-.259-.168,1.281,1.281,0,0,0-.344-.061c-.125-.005-.244-.008-.357-.008v-.55A2.453,2.453,0,0,0,7.7,11.634Zm4.814-.9a.591.591,0,0,0-.406-.143.684.684,0,0,0-.416.123.949.949,0,0,0-.265.3,1.42,1.42,0,0,0-.144.382,1.989,1.989,0,0,0-.052.363l.012.011a1.072,1.072,0,0,1,.446-.329,1.685,1.685,0,0,1,1.166.008,1.449,1.449,0,0,1,.478.288,1.1,1.1,0,0,1,.269.4,1.306,1.306,0,0,1,.085.457,1.338,1.338,0,0,1-.115.552,1.3,1.3,0,0,1-.327.446,1.549,1.549,0,0,1-.508.3,1.915,1.915,0,0,1-.655.107,1.877,1.877,0,0,1-.858-.174,1.491,1.491,0,0,1-.544-.453,1.7,1.7,0,0,1-.281-.636,3.3,3.3,0,0,1-.079-.724,2.713,2.713,0,0,1,.1-.715,1.924,1.924,0,0,1,.315-.646,1.65,1.65,0,0,1,.556-.471A1.752,1.752,0,0,1,12.118,10a2.055,2.055,0,0,1,.55.071,1.517,1.517,0,0,1,.453.207,1.116,1.116,0,0,1,.32.333,1.177,1.177,0,0,1,.164.456h-.884A.638.638,0,0,0,12.511,10.732Zm-.782,1.257a.627.627,0,0,0-.233.157.664.664,0,0,0-.138.228.821.821,0,0,0-.045.272.732.732,0,0,0,.049.262.7.7,0,0,0,.144.231.706.706,0,0,0,.232.162.783.783,0,0,0,.315.06.692.692,0,0,0,.3-.06.72.72,0,0,0,.219-.16.67.67,0,0,0,.138-.225.773.773,0,0,0,.046-.259.828.828,0,0,0-.043-.266.683.683,0,0,0-.128-.232.624.624,0,0,0-.219-.165.726.726,0,0,0-.311-.063A.836.836,0,0,0,11.729,11.989Zm4.129-1.268-.183.875.013.01a1.2,1.2,0,0,1,.406-.228,1.783,1.783,0,0,1,1.094.036,1.326,1.326,0,0,1,.442.28,1.186,1.186,0,0,1,.275.416,1.355,1.355,0,0,1,.095.509,1.159,1.159,0,0,1-.137.553,1.456,1.456,0,0,1-.371.443,1.694,1.694,0,0,1-.54.288,1.983,1.983,0,0,1-.655.1,2.7,2.7,0,0,1-.638-.074,1.725,1.725,0,0,1-.541-.229,1.226,1.226,0,0,1-.377-.382,1.054,1.054,0,0,1-.147-.531h.93a.607.607,0,0,0,.236.421.922.922,0,0,0,.848.093.773.773,0,0,0,.249-.165.706.706,0,0,0,.157-.237.718.718,0,0,0,.056-.277.754.754,0,0,0-.052-.281.64.64,0,0,0-.158-.231.738.738,0,0,0-.248-.154.932.932,0,0,0-.334-.055.957.957,0,0,0-.406.074.91.91,0,0,0-.3.234h-.838l.452-2.129h2.561v.644Z";
|
|
55970
|
+
ComparisonOperatorSelector.du = "m 8.015625,15 c 0,0 0,0 0,0 8,0 8,0 8,0 -4,-6 -4,-6 -4,-6 z";
|
|
55971
|
+
ComparisonOperatorSelector.ab = "m 8.015625,9 c 0,0 0,0 0,0 8,0 8,0 8,0 -4,6 -4,6 -4,6 z";
|
|
55972
|
+
ComparisonOperatorSelector.dv = "m 10.085911,4.8515625 c -0.514323,0 -0.9227906,0.16686 -1.2255249,0.5005187 -0.3027344,0.3336592 -0.4541016,0.7902023 -0.4541016,1.3696289 0,0.5305992 0.1431986,0.9545592 0.429657,1.2719423 0.2864583,0.3173827 0.6706034,0.4760743 1.1523742,0.4760743 0.4980473,0 0.9008793,-0.1684571 1.2084963,-0.5053711 0.307617,-0.3369141 0.461426,-0.7852885 0.461426,-1.3451846 0,-0.5598956 -0.137564,-0.9944658 -0.412629,-1.3037109 -0.275065,-0.3092446 -0.661651,-0.4638976 -1.159698,-0.4638976 z m 3.88678,0.1073913 -4.4873659,7.0508432 h 0.6982729 l 4.492218,-7.0508432 z m -3.916077,0.4297485 c 0.296224,0 0.529846,0.1098634 0.700745,0.3295899 0.170898,0.2197265 0.256347,0.5264999 0.256347,0.9203798 0,0.4036458 -0.08629,0.7194318 -0.258819,0.9472959 -0.172526,0.2278645 -0.411784,0.3417666 -0.717774,0.3417666 -0.3027341,0 -0.5419919,-0.1098633 -0.7177731,-0.3295899 -0.1757812,-0.2197265 -0.2636718,-0.5264995 -0.2636718,-0.9203798 0,-0.4003908 0.089488,-0.7153322 0.2685242,-0.9448242 0.1790362,-0.2294922 0.423177,-0.3442383 0.7324217,-0.3442383 z m 4.199249,3.0517275 c -0.507812,0 -0.914683,0.168457 -1.220672,0.5053711 -0.30599,0.336914 -0.459046,0.7950544 -0.459046,1.3744811 0,0.527344 0.14329,0.950551 0.429749,1.269562 0.286458,0.31901 0.670511,0.478546 1.152283,0.478546 0.498047,0 0.900879,-0.168457 1.208496,-0.505371 0.307617,-0.336914 0.461426,-0.783692 0.461426,-1.340332 0,-0.5631505 -0.138317,-1.0010075 -0.415009,-1.3135072 -0.276693,-0.3125002 -0.662435,-0.46875 -1.157227,-0.46875 z m -0.0293,0.5517881 c 0.296223,0 0.529754,0.107422 0.700653,0.3222656 0.170898,0.2148441 0.256347,0.5207728 0.256347,0.9179075 0,0.400391 -0.0862,0.715332 -0.258728,0.944825 -0.172526,0.229492 -0.411784,0.344238 -0.717773,0.344238 -0.302735,0 -0.541992,-0.109863 -0.717774,-0.32959 -0.175781,-0.219726 -0.263672,-0.523213 -0.263672,-0.910584 0,-0.4036449 0.08864,-0.7194305 0.266053,-0.9472955 0.177408,-0.2278646 0.422393,-0.3417666 0.734894,-0.3417666 z m -2.210907,4.1797491 -4.000031,5.999999 h 7.99997 z";
|
|
55973
|
+
ComparisonOperatorSelector.ac = "m 8.015625,4.0546875 4.000031,6.0000005 3.999939,-6.0000005 z m 2.070282,8.6795655 c -0.514323,0 -0.9227906,0.16686 -1.2255249,0.500519 -0.3027344,0.333659 -0.4541016,0.790202 -0.4541016,1.369629 0,0.530599 0.1431986,0.954559 0.429657,1.271942 0.2864583,0.317382 0.6706034,0.476073 1.1523742,0.476073 0.4980473,0 0.9008793,-0.168457 1.2084963,-0.50537 0.307617,-0.336914 0.461426,-0.785288 0.461426,-1.345184 0,-0.559896 -0.137564,-0.994466 -0.412629,-1.303711 -0.275065,-0.309245 -0.661651,-0.463898 -1.159698,-0.463898 z m 3.88678,0.107483 -4.4873659,7.05075 h 0.6982729 l 4.492218,-7.05075 z m -3.916077,0.429657 c 0.296224,0 0.529846,0.109863 0.700745,0.32959 0.170898,0.219726 0.256347,0.5265 0.256347,0.92038 0,0.403646 -0.08629,0.719432 -0.258819,0.947296 -0.172526,0.227865 -0.411784,0.341766 -0.717774,0.341766 -0.3027341,0 -0.5419919,-0.109864 -0.7177731,-0.32959 -0.1757812,-0.219726 -0.2636718,-0.526499 -0.2636718,-0.920379 0,-0.400392 0.089488,-0.715333 0.2685242,-0.944825 0.1790362,-0.229492 0.423177,-0.344238 0.7324217,-0.344238 z m 4.199249,3.051726 c -0.507812,0 -0.914683,0.168458 -1.220672,0.505372 -0.30599,0.336914 -0.459046,0.795146 -0.459046,1.374572 0,0.527344 0.14329,0.950459 0.429749,1.269472 0.286458,0.319009 0.670511,0.478545 1.152283,0.478545 0.498047,0 0.900879,-0.168457 1.208496,-0.505371 0.307617,-0.336914 0.461426,-0.783692 0.461426,-1.340332 0,-0.563151 -0.138317,-1.001006 -0.415009,-1.313508 -0.276693,-0.312499 -0.662435,-0.46875 -1.157227,-0.46875 z m -0.0293,0.551789 c 0.296223,0 0.529754,0.107422 0.700653,0.322267 0.170898,0.214842 0.256347,0.520863 0.256347,0.917998 0,0.400392 -0.0862,0.715332 -0.258728,0.944825 -0.172526,0.229492 -0.411784,0.344238 -0.717773,0.344238 -0.302735,0 -0.541992,-0.109863 -0.717774,-0.32959 -0.175781,-0.219727 -0.263672,-0.523305 -0.263672,-0.910674 0,-0.403647 0.08864,-0.719431 0.266053,-0.947297 0.177408,-0.227865 0.422393,-0.341766 0.734894,-0.341767 z";
|
|
55974
|
+
ComparisonOperatorSelector.af = "M12.138 21H8.2a1.171 1.171 0 01-1.152-1.188v-5.937L2.123 4.719A1.187 1.187 0 013.153 3h14.694a1.187 1.187 0 011.03 1.719l-3.763 7a2.2 2.2 0 00-.437.642h-.3a2.206 2.206 0 00-1.922 1.11l-.9 1.553-.058.109a2.246 2.246 0 00.212 2.366 2.185 2.185 0 00-.168 2.462zm9.775-2.319a.21.21 0 01.056.281l-.9 1.564a.226.226 0 01-.27.1l-1.113-.449a3.415 3.415 0 01-.754.438l-.18 1.193a.221.221 0 01-.225.191h-1.8a.228.228 0 01-.225-.191l-.169-1.193a3.233 3.233 0 01-.765-.438l-1.114.449a.236.236 0 01-.281-.1l-.9-1.564a.213.213 0 01.056-.281l.945-.742a5.864 5.864 0 01-.022-.439 2.709 2.709 0 01.045-.439l-.956-.742a.224.224 0 01-.057-.293l.9-1.552a.222.222 0 01.27-.1l1.125.45a3.581 3.581 0 01.754-.438l.169-1.193a.228.228 0 01.225-.193h1.8a.23.23 0 01.225.191l.169 1.193a3.348 3.348 0 01.753.438l1.125-.45a.217.217 0 01.27.1l.9 1.552a.225.225 0 01-.056.293l-.956.742A1.8 1.8 0 0121 17.5c0 .146-.011.293-.023.439zM19.236 17.5a1.609 1.609 0 10-1.609 1.609 1.609 1.609 0 001.609-1.609z";
|
|
55840
55975
|
return ComparisonOperatorSelector;
|
|
55841
55976
|
}(Base));
|
|
55842
55977
|
|
|
@@ -55892,6 +56027,7 @@ var FilterCell = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
55892
56027
|
_this.cx = null;
|
|
55893
56028
|
_this.c7 = null;
|
|
55894
56029
|
_this.ch = null;
|
|
56030
|
+
_this.d6 = null;
|
|
55895
56031
|
_this.c4 = a.createElement("div");
|
|
55896
56032
|
_this.c4.setStyleProperty("display", "flex");
|
|
55897
56033
|
_this.c4.setStyleProperty("flex-direction", "row");
|
|
@@ -55901,7 +56037,7 @@ var FilterCell = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
55901
56037
|
_this.c6 = a.createElement("div");
|
|
55902
56038
|
_this.c2 = a.getSubRenderer(_this.c6);
|
|
55903
56039
|
_this.ck = new ComparisonOperatorSelector();
|
|
55904
|
-
_this.ck.
|
|
56040
|
+
_this.ck.ej(_this.c2);
|
|
55905
56041
|
_this.c6.setStyleProperty("width", "24px");
|
|
55906
56042
|
_this.c6.setStyleProperty("height", "24px");
|
|
55907
56043
|
_this.c4.append(_this.c6);
|
|
@@ -55915,7 +56051,7 @@ var FilterCell = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
55915
56051
|
_this.cw = new XIcon();
|
|
55916
56052
|
_this.cw.provideContainer(a.getSubRenderer(_this.c5));
|
|
55917
56053
|
_this.c4.append(_this.c5);
|
|
55918
|
-
_this.
|
|
56054
|
+
_this.dp();
|
|
55919
56055
|
return _this;
|
|
55920
56056
|
}
|
|
55921
56057
|
FilterCell.prototype.cs = function (a) {
|
|
@@ -55939,30 +56075,30 @@ var FilterCell = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
55939
56075
|
default: return null;
|
|
55940
56076
|
}
|
|
55941
56077
|
};
|
|
55942
|
-
FilterCell.prototype.
|
|
56078
|
+
FilterCell.prototype.d1 = function () {
|
|
55943
56079
|
this.c3.removeChildren();
|
|
55944
56080
|
};
|
|
55945
|
-
FilterCell.prototype.
|
|
56081
|
+
FilterCell.prototype.dm = function () {
|
|
55946
56082
|
this.c3.append(this.cr.container);
|
|
55947
56083
|
};
|
|
55948
|
-
FilterCell.prototype.
|
|
56084
|
+
FilterCell.prototype.du = function () {
|
|
55949
56085
|
if (this.ae.getChildCount() == 0) {
|
|
55950
56086
|
this.ae.append(this.c4);
|
|
55951
56087
|
}
|
|
55952
56088
|
};
|
|
55953
|
-
FilterCell.prototype.
|
|
56089
|
+
FilterCell.prototype.ds = function () {
|
|
55954
56090
|
if (this.ae.getChildCount() > 0) {
|
|
55955
56091
|
this.ae.removeChildren();
|
|
55956
56092
|
}
|
|
55957
56093
|
};
|
|
55958
56094
|
FilterCell.prototype.bp = function (a, b, c) {
|
|
55959
56095
|
_super.prototype.bp.call(this, a, b, c);
|
|
55960
|
-
this.
|
|
56096
|
+
this.d0(a, b, c);
|
|
55961
56097
|
};
|
|
55962
56098
|
FilterCell.prototype.bo = function () {
|
|
55963
|
-
this.
|
|
56099
|
+
this.dy();
|
|
55964
56100
|
};
|
|
55965
|
-
FilterCell.prototype.
|
|
56101
|
+
FilterCell.prototype.d2 = function (a, b, c, d) {
|
|
55966
56102
|
if (this.d != null) {
|
|
55967
56103
|
var e = this.c6.getNativeElement();
|
|
55968
56104
|
this.d.update("SelectorTop", (e.offsetTop));
|
|
@@ -55975,17 +56111,17 @@ var FilterCell = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
55975
56111
|
this.d.update("ClearIconLeft", (g.offsetLeft));
|
|
55976
56112
|
}
|
|
55977
56113
|
};
|
|
55978
|
-
FilterCell.prototype.
|
|
56114
|
+
FilterCell.prototype.dp = function () {
|
|
55979
56115
|
var a = this.ck;
|
|
55980
|
-
a.valueChanged = delegateCombine(a.valueChanged, runOn(this, this.
|
|
56116
|
+
a.valueChanged = delegateCombine(a.valueChanged, runOn(this, this.dz));
|
|
55981
56117
|
this.cw.svgPath = FilterCell.c9;
|
|
55982
|
-
this.
|
|
56118
|
+
this.d4(false);
|
|
55983
56119
|
var b = this.cw;
|
|
55984
|
-
b.clicked = delegateCombine(b.clicked, runOn(this, this.
|
|
56120
|
+
b.clicked = delegateCombine(b.clicked, runOn(this, this.dn));
|
|
55985
56121
|
};
|
|
55986
|
-
FilterCell.prototype.
|
|
56122
|
+
FilterCell.prototype.dy = function () {
|
|
55987
56123
|
if (this.cr == null) {
|
|
55988
|
-
this.
|
|
56124
|
+
this.dt();
|
|
55989
56125
|
}
|
|
55990
56126
|
};
|
|
55991
56127
|
FilterCell.prototype.cn = function () {
|
|
@@ -56025,7 +56161,7 @@ var FilterCell = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
56025
56161
|
}
|
|
56026
56162
|
if (this.ck.b == 44) {
|
|
56027
56163
|
if (this.cq != null && this.cq.count > 0) {
|
|
56028
|
-
var b = this.cq._inner[this.ck.
|
|
56164
|
+
var b = this.cq._inner[this.ck.x];
|
|
56029
56165
|
switch (b.b) {
|
|
56030
56166
|
case 0:
|
|
56031
56167
|
case 1:
|
|
@@ -56042,26 +56178,26 @@ var FilterCell = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
56042
56178
|
}
|
|
56043
56179
|
return a;
|
|
56044
56180
|
};
|
|
56045
|
-
FilterCell.prototype.
|
|
56181
|
+
FilterCell.prototype.d4 = function (a) {
|
|
56046
56182
|
if (this.cw != null) {
|
|
56047
56183
|
this.cw.disabled = !a;
|
|
56048
56184
|
this.cw.z = a ? 1 : 0.3;
|
|
56049
56185
|
}
|
|
56050
56186
|
};
|
|
56051
|
-
FilterCell.prototype.
|
|
56187
|
+
FilterCell.prototype.di = function (a) {
|
|
56052
56188
|
if (!this.cz) {
|
|
56053
56189
|
return;
|
|
56054
56190
|
}
|
|
56055
56191
|
if (this.ck.b == 44) {
|
|
56056
56192
|
if (this.cq != null && this.cq.count > 0) {
|
|
56057
|
-
this.b.applyCustomFilter(this.ck.
|
|
56193
|
+
this.b.applyCustomFilter(this.ck.ae, this.ck.x, a);
|
|
56058
56194
|
}
|
|
56059
56195
|
}
|
|
56060
56196
|
else {
|
|
56061
56197
|
this.b.applyFilter(this.ck.b, a);
|
|
56062
56198
|
}
|
|
56063
56199
|
};
|
|
56064
|
-
FilterCell.prototype.
|
|
56200
|
+
FilterCell.prototype.dj = function () {
|
|
56065
56201
|
if (!this.cz) {
|
|
56066
56202
|
return;
|
|
56067
56203
|
}
|
|
@@ -56069,32 +56205,37 @@ var FilterCell = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
56069
56205
|
this.b.clearFilter();
|
|
56070
56206
|
}
|
|
56071
56207
|
};
|
|
56072
|
-
FilterCell.prototype.
|
|
56208
|
+
FilterCell.prototype.d0 = function (a, b, c) {
|
|
56073
56209
|
switch (a) {
|
|
56074
56210
|
case "DataType":
|
|
56075
|
-
this.
|
|
56211
|
+
this.dr();
|
|
56076
56212
|
break;
|
|
56077
56213
|
case "EditorType":
|
|
56078
|
-
this.
|
|
56214
|
+
this.dt();
|
|
56079
56215
|
break;
|
|
56080
56216
|
case "FontInfo":
|
|
56081
|
-
this.
|
|
56217
|
+
this.dx();
|
|
56082
56218
|
break;
|
|
56083
56219
|
case "Filter":
|
|
56084
|
-
this.
|
|
56220
|
+
this.dv();
|
|
56085
56221
|
break;
|
|
56086
56222
|
case "FilterOperands":
|
|
56087
|
-
this.
|
|
56223
|
+
this.dq();
|
|
56088
56224
|
break;
|
|
56089
56225
|
case "FilterValue":
|
|
56090
|
-
this.
|
|
56226
|
+
this.dw();
|
|
56091
56227
|
break;
|
|
56092
56228
|
case "IsEditorEnabled":
|
|
56093
56229
|
this.cr.isEnabled = this.c1;
|
|
56094
56230
|
break;
|
|
56231
|
+
case "TextColor":
|
|
56232
|
+
this.ck.eq = this.d7;
|
|
56233
|
+
this.cw.fill = this.d7;
|
|
56234
|
+
this.cr.textColor = this.d7;
|
|
56235
|
+
break;
|
|
56095
56236
|
}
|
|
56096
56237
|
};
|
|
56097
|
-
FilterCell.prototype.
|
|
56238
|
+
FilterCell.prototype.dv = function () {
|
|
56098
56239
|
this.cz = false;
|
|
56099
56240
|
if (this.cr != null) {
|
|
56100
56241
|
if (this.ci != null) {
|
|
@@ -56115,7 +56256,7 @@ var FilterCell = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
56115
56256
|
}
|
|
56116
56257
|
else if (typeCast(ColumnCustomFilterCondition.$, this.ci) !== null) {
|
|
56117
56258
|
var c = typeCast(ColumnCustomFilterCondition.$, this.ci);
|
|
56118
|
-
this.ck.
|
|
56259
|
+
this.ck.ek(c.id, c.d);
|
|
56119
56260
|
var d = this.cr.getEditorValue();
|
|
56120
56261
|
if (d != null) {
|
|
56121
56262
|
if (!Base.equalsStatic(d, c.e)) {
|
|
@@ -56145,37 +56286,37 @@ var FilterCell = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
56145
56286
|
}
|
|
56146
56287
|
this.cz = true;
|
|
56147
56288
|
};
|
|
56148
|
-
FilterCell.prototype.
|
|
56149
|
-
this.ck.
|
|
56289
|
+
FilterCell.prototype.dq = function () {
|
|
56290
|
+
this.ck.d7();
|
|
56150
56291
|
for (var a = 0; a < this.cq.count; a++) {
|
|
56151
|
-
this.ck.
|
|
56292
|
+
this.ck.d1(this.cq._inner[a].e, this.cq._inner[a].f, this.cq._inner[a].g, a);
|
|
56152
56293
|
}
|
|
56153
56294
|
};
|
|
56154
|
-
FilterCell.prototype.
|
|
56295
|
+
FilterCell.prototype.dr = function () {
|
|
56155
56296
|
if (this.cj == 11) {
|
|
56156
56297
|
this.c1 = false;
|
|
56157
56298
|
}
|
|
56158
56299
|
this.cm = this.cn();
|
|
56159
56300
|
};
|
|
56160
|
-
FilterCell.prototype.
|
|
56161
|
-
this.
|
|
56301
|
+
FilterCell.prototype.dw = function () {
|
|
56302
|
+
this.d4(this.c8 != null);
|
|
56162
56303
|
if (this.c8 == null || Base.equalsStatic(this.c8, "")) {
|
|
56163
|
-
this.
|
|
56304
|
+
this.dj();
|
|
56164
56305
|
}
|
|
56165
56306
|
else {
|
|
56166
|
-
this.
|
|
56307
|
+
this.di(this.c8);
|
|
56167
56308
|
}
|
|
56168
56309
|
if (this.d != null) {
|
|
56169
56310
|
this.d.update("FilterValue", this.c8);
|
|
56170
56311
|
}
|
|
56171
56312
|
};
|
|
56172
|
-
FilterCell.prototype.
|
|
56313
|
+
FilterCell.prototype.dt = function () {
|
|
56173
56314
|
if (this.cr != null) {
|
|
56174
56315
|
this.cr.detachEvents();
|
|
56175
56316
|
var a = this.cr;
|
|
56176
|
-
a.valueProvided = delegateRemove(a.valueProvided, runOn(this, this.
|
|
56317
|
+
a.valueProvided = delegateRemove(a.valueProvided, runOn(this, this.d3));
|
|
56177
56318
|
}
|
|
56178
|
-
this.
|
|
56319
|
+
this.d1();
|
|
56179
56320
|
this.cr = this.cs(this.cm);
|
|
56180
56321
|
this.cr.onEditStarted();
|
|
56181
56322
|
if (this.cr != null) {
|
|
@@ -56185,19 +56326,19 @@ var FilterCell = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
56185
56326
|
this.cr.focusOnValueChanged = false;
|
|
56186
56327
|
this.cr.showClearButton = false;
|
|
56187
56328
|
var b = this.cr;
|
|
56188
|
-
b.valueProvided = delegateCombine(b.valueProvided, runOn(this, this.
|
|
56189
|
-
this.
|
|
56329
|
+
b.valueProvided = delegateCombine(b.valueProvided, runOn(this, this.d3));
|
|
56330
|
+
this.dm();
|
|
56190
56331
|
}
|
|
56191
|
-
this.
|
|
56332
|
+
this.dn(null, null);
|
|
56192
56333
|
};
|
|
56193
|
-
FilterCell.prototype.
|
|
56334
|
+
FilterCell.prototype.dx = function () {
|
|
56194
56335
|
if (this.cy != null) {
|
|
56195
56336
|
if (this.cr != null) {
|
|
56196
56337
|
this.cr.setFont(this.cy);
|
|
56197
56338
|
}
|
|
56198
56339
|
}
|
|
56199
56340
|
};
|
|
56200
|
-
FilterCell.prototype.
|
|
56341
|
+
FilterCell.prototype.dz = function (a, b) {
|
|
56201
56342
|
this.cm = this.cn();
|
|
56202
56343
|
switch (b.newValue) {
|
|
56203
56344
|
case 40:
|
|
@@ -56237,30 +56378,30 @@ var FilterCell = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
56237
56378
|
}
|
|
56238
56379
|
if (b.newValue == 44) {
|
|
56239
56380
|
if (this.cq != null && this.cq.count > 0) {
|
|
56240
|
-
var c = this.cq._inner[this.ck.
|
|
56381
|
+
var c = this.cq._inner[this.ck.x];
|
|
56241
56382
|
this.c1 = c.d;
|
|
56242
56383
|
}
|
|
56243
56384
|
}
|
|
56244
56385
|
if (!this.c1) {
|
|
56245
|
-
this.
|
|
56246
|
-
this.
|
|
56386
|
+
this.di(null);
|
|
56387
|
+
this.d4(true);
|
|
56247
56388
|
}
|
|
56248
56389
|
else if (this.c8 != null && !Base.equalsStatic(this.c8, "")) {
|
|
56249
|
-
this.
|
|
56390
|
+
this.di(this.c8);
|
|
56250
56391
|
}
|
|
56251
56392
|
else {
|
|
56252
|
-
this.
|
|
56253
|
-
this.
|
|
56393
|
+
this.dj();
|
|
56394
|
+
this.d4(false);
|
|
56254
56395
|
}
|
|
56255
56396
|
if (this.d != null) {
|
|
56256
56397
|
this.d.update("OperatorType", enumGetBox(ColumnComparisonConditionOperatorType_$type, this.ck.b));
|
|
56257
56398
|
}
|
|
56258
56399
|
};
|
|
56259
|
-
FilterCell.prototype.
|
|
56400
|
+
FilterCell.prototype.dn = function (a, b) {
|
|
56260
56401
|
if (b != null) {
|
|
56261
56402
|
if (!this.c1) {
|
|
56262
56403
|
this.ck.b = 0;
|
|
56263
|
-
this.
|
|
56404
|
+
this.dj();
|
|
56264
56405
|
}
|
|
56265
56406
|
}
|
|
56266
56407
|
this.c8 = null;
|
|
@@ -56269,7 +56410,7 @@ var FilterCell = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
56269
56410
|
this.cr.value = null;
|
|
56270
56411
|
}
|
|
56271
56412
|
};
|
|
56272
|
-
FilterCell.prototype.
|
|
56413
|
+
FilterCell.prototype.d3 = function (a, b, c) {
|
|
56273
56414
|
if (this.cm == 2) {
|
|
56274
56415
|
if (typeof b === 'string') {
|
|
56275
56416
|
var d_1;
|
|
@@ -56280,8 +56421,8 @@ var FilterCell = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
56280
56421
|
}
|
|
56281
56422
|
this.c8 = b;
|
|
56282
56423
|
};
|
|
56283
|
-
FilterCell.prototype.
|
|
56284
|
-
this.
|
|
56424
|
+
FilterCell.prototype.d5 = function (a, b, c, d) {
|
|
56425
|
+
this.d2(a, b, c, d);
|
|
56285
56426
|
};
|
|
56286
56427
|
FilterCell.prototype.co = function (a, b) {
|
|
56287
56428
|
if (a != null) {
|
|
@@ -56296,11 +56437,11 @@ var FilterCell = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
56296
56437
|
}
|
|
56297
56438
|
return null;
|
|
56298
56439
|
};
|
|
56299
|
-
FilterCell.prototype.
|
|
56300
|
-
this.
|
|
56440
|
+
FilterCell.prototype.dl = function () {
|
|
56441
|
+
this.du();
|
|
56301
56442
|
};
|
|
56302
|
-
FilterCell.prototype.
|
|
56303
|
-
this.
|
|
56443
|
+
FilterCell.prototype.dk = function () {
|
|
56444
|
+
this.ds();
|
|
56304
56445
|
};
|
|
56305
56446
|
Object.defineProperty(FilterCell.prototype, "cj", {
|
|
56306
56447
|
get: function () {
|
|
@@ -56400,6 +56541,20 @@ var FilterCell = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
56400
56541
|
enumerable: true,
|
|
56401
56542
|
configurable: true
|
|
56402
56543
|
});
|
|
56544
|
+
Object.defineProperty(FilterCell.prototype, "d7", {
|
|
56545
|
+
get: function () {
|
|
56546
|
+
return this.d6;
|
|
56547
|
+
},
|
|
56548
|
+
set: function (a) {
|
|
56549
|
+
var b = this.d6;
|
|
56550
|
+
this.d6 = a;
|
|
56551
|
+
if (b != this.d6) {
|
|
56552
|
+
this.bp("TextColor", b, this.d6);
|
|
56553
|
+
}
|
|
56554
|
+
},
|
|
56555
|
+
enumerable: true,
|
|
56556
|
+
configurable: true
|
|
56557
|
+
});
|
|
56403
56558
|
FilterCell.$t = markType(FilterCell, 'FilterCell', GridCellBase.$);
|
|
56404
56559
|
FilterCell.c9 = "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z";
|
|
56405
56560
|
return FilterCell;
|
|
@@ -56447,16 +56602,19 @@ var FilterCellPresenter = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
56447
56602
|
}
|
|
56448
56603
|
if (b.a3(FilterCellModel.l5)) {
|
|
56449
56604
|
if (b.lu) {
|
|
56450
|
-
this.d.
|
|
56605
|
+
this.d.dl();
|
|
56451
56606
|
}
|
|
56452
56607
|
else {
|
|
56453
|
-
this.d.
|
|
56608
|
+
this.d.dk();
|
|
56454
56609
|
}
|
|
56455
56610
|
}
|
|
56611
|
+
if (b.a3(FilterCellModel.eg)) {
|
|
56612
|
+
this.d.d7 = b.k2;
|
|
56613
|
+
}
|
|
56456
56614
|
}
|
|
56457
56615
|
if (a.be || a.bj) {
|
|
56458
56616
|
if (b.a3(FilterCellModel.gw) || b.a3(FilterCellModel.gx) || b.a3(FilterCellModel.gv) || b.a3(FilterCellModel.fd)) {
|
|
56459
|
-
this.d.
|
|
56617
|
+
this.d.d5(b.cl, b.cm, b.gu, b.fc);
|
|
56460
56618
|
}
|
|
56461
56619
|
}
|
|
56462
56620
|
};
|
|
@@ -71339,6 +71497,7 @@ var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
71339
71497
|
if (null != f) {
|
|
71340
71498
|
f.zv = this.dy;
|
|
71341
71499
|
f.zt = this.di;
|
|
71500
|
+
f.zu = this.di;
|
|
71342
71501
|
}
|
|
71343
71502
|
this.m.ad();
|
|
71344
71503
|
break;
|
|
@@ -80233,6 +80392,7 @@ var SummaryChooser = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
80233
80392
|
this.e.aa = this.m;
|
|
80234
80393
|
this.e.dy = this.ba;
|
|
80235
80394
|
this.e.y = this.i;
|
|
80395
|
+
this.e.di = this.a9;
|
|
80236
80396
|
this.e.as = false;
|
|
80237
80397
|
this.e.aq = false;
|
|
80238
80398
|
this.e.an = false;
|
|
@@ -80398,18 +80558,18 @@ var GridColumnSummaryOptionsView = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
80398
80558
|
this.o = ((function () { var d = GridColumnOptionsUtilities.f(_this.n, _this.e, GridColumnSummaryOptionsView.r, 1, _this.n.p, _this.n.j, new Size(1, 24, 24), a_1, b_1, _this.p, c_1, false, true); a_1 = d.p7; b_1 = d.p8; _this.p = d.p9; c_1 = d.p10; return d.ret; })());
|
|
80399
80559
|
c_1.setStyleProperty("transform", "rotate(-90deg)");
|
|
80400
80560
|
this.g.append(this.o);
|
|
80401
|
-
this.n.
|
|
80561
|
+
this.n.ck(a_1);
|
|
80402
80562
|
}
|
|
80403
80563
|
if (this.n.bx == null) {
|
|
80404
80564
|
var d = new SummaryChooser();
|
|
80405
80565
|
d.a2(this.e);
|
|
80406
|
-
this.n.
|
|
80566
|
+
this.n.co(d);
|
|
80407
80567
|
var e = this.e.createElement("div");
|
|
80408
80568
|
var f = this.e.getSubRenderer(e);
|
|
80409
80569
|
var g = new Popup();
|
|
80410
80570
|
g.provideRenderer(f);
|
|
80411
80571
|
g.appendPopupContent(d.c.container);
|
|
80412
|
-
this.n.
|
|
80572
|
+
this.n.cl(g);
|
|
80413
80573
|
}
|
|
80414
80574
|
document.addEventListener("mousedown", runOn(this, this.s), false);
|
|
80415
80575
|
};
|
|
@@ -80453,7 +80613,7 @@ var GridColumnSummaryOptionsView = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
80453
80613
|
return (window.innerWidth);
|
|
80454
80614
|
};
|
|
80455
80615
|
GridColumnSummaryOptionsView.prototype.s = function (e_) {
|
|
80456
|
-
this.n.
|
|
80616
|
+
this.n.cj();
|
|
80457
80617
|
};
|
|
80458
80618
|
GridColumnSummaryOptionsView.$t = markType(GridColumnSummaryOptionsView, 'GridColumnSummaryOptionsView', GridColumnOptionsViewBase.$);
|
|
80459
80619
|
GridColumnSummaryOptionsView.r = "M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z";
|
|
@@ -80473,6 +80633,8 @@ var GridColumnSummaryOptions = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
80473
80633
|
_this.b2 = 0;
|
|
80474
80634
|
_this.b1 = 0;
|
|
80475
80635
|
_this.b6 = 0;
|
|
80636
|
+
_this.ct = BrushUtil.g(255, 24, 29, 31);
|
|
80637
|
+
_this.cs = BrushUtil.g(255, 248, 248, 248);
|
|
80476
80638
|
return _this;
|
|
80477
80639
|
}
|
|
80478
80640
|
GridColumnSummaryOptions.prototype.f = function () {
|
|
@@ -80492,9 +80654,11 @@ var GridColumnSummaryOptions = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
80492
80654
|
case "ActualSummaryListDensity":
|
|
80493
80655
|
case "BackgroundColor":
|
|
80494
80656
|
case "TextColor":
|
|
80495
|
-
|
|
80496
|
-
|
|
80657
|
+
case "SummaryListTextColor":
|
|
80658
|
+
case "SummaryListBackground":
|
|
80659
|
+
this.cq();
|
|
80497
80660
|
this.cp();
|
|
80661
|
+
this.cr();
|
|
80498
80662
|
break;
|
|
80499
80663
|
case "SummaryListDensity":
|
|
80500
80664
|
this.b3 = this.b5 == 0 ? this.q : this.b5;
|
|
@@ -80707,47 +80871,76 @@ var GridColumnSummaryOptions = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
80707
80871
|
enumerable: true,
|
|
80708
80872
|
configurable: true
|
|
80709
80873
|
});
|
|
80710
|
-
GridColumnSummaryOptions.prototype
|
|
80874
|
+
Object.defineProperty(GridColumnSummaryOptions.prototype, "cv", {
|
|
80875
|
+
get: function () {
|
|
80876
|
+
return this.ct;
|
|
80877
|
+
},
|
|
80878
|
+
set: function (a) {
|
|
80879
|
+
var b = this.ct;
|
|
80880
|
+
this.ct = a;
|
|
80881
|
+
if (b != this.ct) {
|
|
80882
|
+
this.bc("SummaryListTextColor", b, this.ct);
|
|
80883
|
+
}
|
|
80884
|
+
},
|
|
80885
|
+
enumerable: true,
|
|
80886
|
+
configurable: true
|
|
80887
|
+
});
|
|
80888
|
+
Object.defineProperty(GridColumnSummaryOptions.prototype, "cu", {
|
|
80889
|
+
get: function () {
|
|
80890
|
+
return this.cs;
|
|
80891
|
+
},
|
|
80892
|
+
set: function (a) {
|
|
80893
|
+
var b = this.cs;
|
|
80894
|
+
this.cs = a;
|
|
80895
|
+
if (b != this.cs) {
|
|
80896
|
+
this.bc("SummaryListBackground", b, this.cs);
|
|
80897
|
+
}
|
|
80898
|
+
},
|
|
80899
|
+
enumerable: true,
|
|
80900
|
+
configurable: true
|
|
80901
|
+
});
|
|
80902
|
+
GridColumnSummaryOptions.prototype.cj = function () {
|
|
80711
80903
|
if (this.b0 != null && this.b0.t) {
|
|
80712
80904
|
this.b0.ao();
|
|
80713
80905
|
}
|
|
80714
80906
|
};
|
|
80715
|
-
GridColumnSummaryOptions.prototype.
|
|
80907
|
+
GridColumnSummaryOptions.prototype.ck = function (a) {
|
|
80716
80908
|
if (this.by != null) {
|
|
80717
80909
|
var b = this.by;
|
|
80718
|
-
b.clicked = delegateRemove(b.clicked, runOn(this, this.
|
|
80910
|
+
b.clicked = delegateRemove(b.clicked, runOn(this, this.cm));
|
|
80719
80911
|
}
|
|
80720
80912
|
this.by = a;
|
|
80721
80913
|
if (this.by != null) {
|
|
80722
80914
|
var c = this.by;
|
|
80723
|
-
c.clicked = delegateCombine(c.clicked, runOn(this, this.
|
|
80915
|
+
c.clicked = delegateCombine(c.clicked, runOn(this, this.cm));
|
|
80724
80916
|
}
|
|
80725
|
-
this.
|
|
80917
|
+
this.cp();
|
|
80726
80918
|
};
|
|
80727
|
-
GridColumnSummaryOptions.prototype.
|
|
80919
|
+
GridColumnSummaryOptions.prototype.cl = function (a) {
|
|
80728
80920
|
this.b0 = a;
|
|
80729
|
-
this.
|
|
80921
|
+
this.cr();
|
|
80730
80922
|
};
|
|
80731
|
-
GridColumnSummaryOptions.prototype.
|
|
80923
|
+
GridColumnSummaryOptions.prototype.co = function (a) {
|
|
80732
80924
|
if (this.bw != null) {
|
|
80733
80925
|
var b = this.bw;
|
|
80734
|
-
b.summaryChanged = delegateRemove(b.summaryChanged, runOn(this, this.
|
|
80926
|
+
b.summaryChanged = delegateRemove(b.summaryChanged, runOn(this, this.cn));
|
|
80735
80927
|
}
|
|
80736
80928
|
this.bw = a;
|
|
80737
80929
|
if (this.bw != null) {
|
|
80738
80930
|
var c = this.bw;
|
|
80739
|
-
c.summaryChanged = delegateCombine(c.summaryChanged, runOn(this, this.
|
|
80931
|
+
c.summaryChanged = delegateCombine(c.summaryChanged, runOn(this, this.cn));
|
|
80740
80932
|
}
|
|
80741
|
-
this.
|
|
80933
|
+
this.cq();
|
|
80742
80934
|
};
|
|
80743
|
-
GridColumnSummaryOptions.prototype.
|
|
80935
|
+
GridColumnSummaryOptions.prototype.cq = function () {
|
|
80744
80936
|
if (this.bw != null) {
|
|
80745
80937
|
this.bw.j = this.i;
|
|
80746
80938
|
this.bw.n = this.b3;
|
|
80747
|
-
this.bw.ba = this.
|
|
80939
|
+
this.bw.ba = this.cv;
|
|
80940
|
+
this.bw.a9 = this.cu;
|
|
80748
80941
|
}
|
|
80749
80942
|
};
|
|
80750
|
-
GridColumnSummaryOptions.prototype.
|
|
80943
|
+
GridColumnSummaryOptions.prototype.cp = function () {
|
|
80751
80944
|
if (this.by != null) {
|
|
80752
80945
|
this.by.ef = 0;
|
|
80753
80946
|
this.by.ak = false;
|
|
@@ -80755,13 +80948,13 @@ var GridColumnSummaryOptions = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
80755
80948
|
this.bh(this.by);
|
|
80756
80949
|
}
|
|
80757
80950
|
};
|
|
80758
|
-
GridColumnSummaryOptions.prototype.
|
|
80951
|
+
GridColumnSummaryOptions.prototype.cr = function () {
|
|
80759
80952
|
if (this.b0 != null) {
|
|
80760
80953
|
this.b0.a8 = this.bo;
|
|
80761
80954
|
this.b0.q = false;
|
|
80762
80955
|
}
|
|
80763
80956
|
};
|
|
80764
|
-
GridColumnSummaryOptions.prototype.
|
|
80957
|
+
GridColumnSummaryOptions.prototype.cm = function (a, b) {
|
|
80765
80958
|
if (this.b0 == null) {
|
|
80766
80959
|
return;
|
|
80767
80960
|
}
|
|
@@ -80784,7 +80977,7 @@ var GridColumnSummaryOptions = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
80784
80977
|
this.b0.showRelativeToExclusionRect(d, 1, 0);
|
|
80785
80978
|
}
|
|
80786
80979
|
};
|
|
80787
|
-
GridColumnSummaryOptions.prototype.
|
|
80980
|
+
GridColumnSummaryOptions.prototype.cn = function (a, b) {
|
|
80788
80981
|
if (b.a) {
|
|
80789
80982
|
this.b7++;
|
|
80790
80983
|
}
|
|
@@ -80958,6 +81151,28 @@ var IgcGridColumnSummaryOptionsComponent = /** @class */ /*@__PURE__*/ (function
|
|
|
80958
81151
|
enumerable: true,
|
|
80959
81152
|
configurable: true
|
|
80960
81153
|
});
|
|
81154
|
+
Object.defineProperty(IgcGridColumnSummaryOptionsComponent.prototype, "summaryListTextColor", {
|
|
81155
|
+
get: function () {
|
|
81156
|
+
return brushToString(this.i.cv);
|
|
81157
|
+
},
|
|
81158
|
+
set: function (v) {
|
|
81159
|
+
this.i.cv = stringToBrush(v);
|
|
81160
|
+
this._a("summaryListTextColor", brushToString(this.i.cv));
|
|
81161
|
+
},
|
|
81162
|
+
enumerable: true,
|
|
81163
|
+
configurable: true
|
|
81164
|
+
});
|
|
81165
|
+
Object.defineProperty(IgcGridColumnSummaryOptionsComponent.prototype, "summaryListBackground", {
|
|
81166
|
+
get: function () {
|
|
81167
|
+
return brushToString(this.i.cu);
|
|
81168
|
+
},
|
|
81169
|
+
set: function (v) {
|
|
81170
|
+
this.i.cu = stringToBrush(v);
|
|
81171
|
+
this._a("summaryListBackground", brushToString(this.i.cu));
|
|
81172
|
+
},
|
|
81173
|
+
enumerable: true,
|
|
81174
|
+
configurable: true
|
|
81175
|
+
});
|
|
80961
81176
|
IgcGridColumnSummaryOptionsComponent.prototype.onApply = function () {
|
|
80962
81177
|
this.i.bt();
|
|
80963
81178
|
};
|
|
@@ -80965,7 +81180,7 @@ var IgcGridColumnSummaryOptionsComponent = /** @class */ /*@__PURE__*/ (function
|
|
|
80965
81180
|
this.i.bu();
|
|
80966
81181
|
};
|
|
80967
81182
|
IgcGridColumnSummaryOptionsComponent.prototype.closeMenu = function () {
|
|
80968
|
-
this.i.
|
|
81183
|
+
this.i.cj();
|
|
80969
81184
|
};
|
|
80970
81185
|
IgcGridColumnSummaryOptionsComponent._observedAttributesIgcGridColumnSummaryOptionsComponent = null;
|
|
80971
81186
|
IgcGridColumnSummaryOptionsComponent.htmlTagName = "igc-grid-column-summary-options";
|
|
@@ -81715,6 +81930,8 @@ var GridColumnOptions = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
81715
81930
|
_this.b5 = 0;
|
|
81716
81931
|
_this.b3 = 0;
|
|
81717
81932
|
_this.d0 = null;
|
|
81933
|
+
_this.fk = BrushUtil.g(255, 24, 29, 31);
|
|
81934
|
+
_this.fj = BrushUtil.g(255, 248, 248, 248);
|
|
81718
81935
|
_this.applyButtonClick = null;
|
|
81719
81936
|
_this.cancelButtonClick = null;
|
|
81720
81937
|
return _this;
|
|
@@ -81746,14 +81963,14 @@ var GridColumnOptions = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
81746
81963
|
if (null != this.b2) {
|
|
81747
81964
|
this.b2.column = a;
|
|
81748
81965
|
}
|
|
81749
|
-
this.
|
|
81966
|
+
this.fi();
|
|
81750
81967
|
};
|
|
81751
81968
|
GridColumnOptions.prototype.bb = function (a, b) {
|
|
81752
81969
|
_super.prototype.bb.call(this, a, b);
|
|
81753
81970
|
switch (b.propertyName) {
|
|
81754
81971
|
case "HeaderClickAction":
|
|
81755
81972
|
case "ColumnMovingMode":
|
|
81756
|
-
this.
|
|
81973
|
+
this.fi();
|
|
81757
81974
|
break;
|
|
81758
81975
|
}
|
|
81759
81976
|
};
|
|
@@ -81770,7 +81987,7 @@ var GridColumnOptions = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
81770
81987
|
case "PaddingRight":
|
|
81771
81988
|
case "PaddingBottom":
|
|
81772
81989
|
case "PaddingLeft":
|
|
81773
|
-
this.
|
|
81990
|
+
this.fi();
|
|
81774
81991
|
break;
|
|
81775
81992
|
case "ActualLabelTextStyle":
|
|
81776
81993
|
case "ActualBaseTheme":
|
|
@@ -81781,13 +81998,13 @@ var GridColumnOptions = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
81781
81998
|
case "ActualSummaryListDensity":
|
|
81782
81999
|
case "BackgroundColor":
|
|
81783
82000
|
case "TextColor":
|
|
81784
|
-
this.
|
|
82001
|
+
this.fg();
|
|
81785
82002
|
break;
|
|
81786
82003
|
case "ColumnNameTextStyle":
|
|
81787
|
-
this.
|
|
82004
|
+
this.fh();
|
|
81788
82005
|
break;
|
|
81789
82006
|
case "ActualColumnNameTextStyle":
|
|
81790
|
-
this.
|
|
82007
|
+
this.fi();
|
|
81791
82008
|
break;
|
|
81792
82009
|
case "FilterListDensity":
|
|
81793
82010
|
this.b7 = this.filterListDensity == 0 ? this.q : this.filterListDensity;
|
|
@@ -81797,7 +82014,7 @@ var GridColumnOptions = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
81797
82014
|
break;
|
|
81798
82015
|
}
|
|
81799
82016
|
};
|
|
81800
|
-
GridColumnOptions.prototype.
|
|
82017
|
+
GridColumnOptions.prototype.fi = function () {
|
|
81801
82018
|
this.bz.m();
|
|
81802
82019
|
};
|
|
81803
82020
|
Object.defineProperty(GridColumnOptions.prototype, "dx", {
|
|
@@ -82377,6 +82594,34 @@ var GridColumnOptions = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
82377
82594
|
enumerable: true,
|
|
82378
82595
|
configurable: true
|
|
82379
82596
|
});
|
|
82597
|
+
Object.defineProperty(GridColumnOptions.prototype, "fm", {
|
|
82598
|
+
get: function () {
|
|
82599
|
+
return this.fk;
|
|
82600
|
+
},
|
|
82601
|
+
set: function (a) {
|
|
82602
|
+
var b = this.fk;
|
|
82603
|
+
this.fk = a;
|
|
82604
|
+
if (b != this.fk) {
|
|
82605
|
+
this.bc("SummaryListTextColor", b, this.fk);
|
|
82606
|
+
}
|
|
82607
|
+
},
|
|
82608
|
+
enumerable: true,
|
|
82609
|
+
configurable: true
|
|
82610
|
+
});
|
|
82611
|
+
Object.defineProperty(GridColumnOptions.prototype, "fl", {
|
|
82612
|
+
get: function () {
|
|
82613
|
+
return this.fj;
|
|
82614
|
+
},
|
|
82615
|
+
set: function (a) {
|
|
82616
|
+
var b = this.fj;
|
|
82617
|
+
this.fj = a;
|
|
82618
|
+
if (b != this.fj) {
|
|
82619
|
+
this.bc("SummaryListBackground", b, this.fj);
|
|
82620
|
+
}
|
|
82621
|
+
},
|
|
82622
|
+
enumerable: true,
|
|
82623
|
+
configurable: true
|
|
82624
|
+
});
|
|
82380
82625
|
GridColumnOptions.prototype.notifySizeChanged = function () {
|
|
82381
82626
|
this.e.j();
|
|
82382
82627
|
};
|
|
@@ -82402,37 +82647,37 @@ var GridColumnOptions = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
82402
82647
|
this.bv.b7 = this.dv;
|
|
82403
82648
|
this.bv.cc = this.d1;
|
|
82404
82649
|
var t = this.b1;
|
|
82405
|
-
t.propertyChanged = delegateCombine(t.propertyChanged, runOn(this, this.
|
|
82650
|
+
t.propertyChanged = delegateCombine(t.propertyChanged, runOn(this, this.fb));
|
|
82406
82651
|
var u = this.by;
|
|
82407
|
-
u.propertyChanged = delegateCombine(u.propertyChanged, runOn(this, this.
|
|
82652
|
+
u.propertyChanged = delegateCombine(u.propertyChanged, runOn(this, this.fb));
|
|
82408
82653
|
var v = this.b0;
|
|
82409
|
-
v.propertyChanged = delegateCombine(v.propertyChanged, runOn(this, this.
|
|
82654
|
+
v.propertyChanged = delegateCombine(v.propertyChanged, runOn(this, this.fb));
|
|
82410
82655
|
var w = this.bx;
|
|
82411
|
-
w.propertyChanged = delegateCombine(w.propertyChanged, runOn(this, this.
|
|
82656
|
+
w.propertyChanged = delegateCombine(w.propertyChanged, runOn(this, this.fb));
|
|
82412
82657
|
var x = this.bw;
|
|
82413
|
-
x.propertyChanged = delegateCombine(x.propertyChanged, runOn(this, this.
|
|
82658
|
+
x.propertyChanged = delegateCombine(x.propertyChanged, runOn(this, this.fb));
|
|
82414
82659
|
var y = this.bv;
|
|
82415
|
-
y.propertyChanged = delegateCombine(y.propertyChanged, runOn(this, this.
|
|
82660
|
+
y.propertyChanged = delegateCombine(y.propertyChanged, runOn(this, this.fb));
|
|
82416
82661
|
this.b2 = r;
|
|
82417
82662
|
this.bu = s;
|
|
82418
82663
|
this.bu.bz = this.dp;
|
|
82419
82664
|
this.bu.b3 = this.ds;
|
|
82420
82665
|
var z = this.bu;
|
|
82421
|
-
z.applyButtonClick = delegateCombine(z.applyButtonClick, runOn(this, this.
|
|
82666
|
+
z.applyButtonClick = delegateCombine(z.applyButtonClick, runOn(this, this.fd));
|
|
82422
82667
|
var aa = this.bu;
|
|
82423
|
-
aa.cancelButtonClick = delegateCombine(aa.cancelButtonClick, runOn(this, this.
|
|
82424
|
-
this.
|
|
82668
|
+
aa.cancelButtonClick = delegateCombine(aa.cancelButtonClick, runOn(this, this.fe));
|
|
82669
|
+
this.fh();
|
|
82425
82670
|
this.bl();
|
|
82426
82671
|
this.bi();
|
|
82427
|
-
this.
|
|
82672
|
+
this.fg();
|
|
82428
82673
|
};
|
|
82429
82674
|
GridColumnOptions.prototype.d5 = function () {
|
|
82430
82675
|
return stringFormat1("{0}px {1}px {2}px {3}px", this.dj.toString(), this.di.toString(), this.dg.toString(), this.dh.toString());
|
|
82431
82676
|
};
|
|
82432
|
-
GridColumnOptions.prototype.
|
|
82677
|
+
GridColumnOptions.prototype.fh = function () {
|
|
82433
82678
|
this.cf = (null == this.cg) ? this.ci : this.cg;
|
|
82434
82679
|
};
|
|
82435
|
-
GridColumnOptions.prototype.
|
|
82680
|
+
GridColumnOptions.prototype.fg = function () {
|
|
82436
82681
|
var a = [this.b1, this.by, this.b0, this.bx, this.bw, this.bv, this.b2, this.bu];
|
|
82437
82682
|
for (var c = 0; c < a.length; c++) {
|
|
82438
82683
|
var b = a[c];
|
|
@@ -82454,9 +82699,11 @@ var GridColumnOptions = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
82454
82699
|
}
|
|
82455
82700
|
if (null != this.b2) {
|
|
82456
82701
|
this.b2.b5 = this.b8;
|
|
82702
|
+
this.b2.cv = this.fm;
|
|
82703
|
+
this.b2.cu = this.fl;
|
|
82457
82704
|
}
|
|
82458
82705
|
};
|
|
82459
|
-
GridColumnOptions.prototype.
|
|
82706
|
+
GridColumnOptions.prototype.fd = function (a, b) {
|
|
82460
82707
|
var c = [this.b1, this.by, this.b0, this.bx, this.bw, this.bv, this.b2];
|
|
82461
82708
|
for (var e = 0; e < c.length; e++) {
|
|
82462
82709
|
var d = c[e];
|
|
@@ -82466,7 +82713,7 @@ var GridColumnOptions = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
82466
82713
|
this.applyButtonClick(this, b);
|
|
82467
82714
|
}
|
|
82468
82715
|
};
|
|
82469
|
-
GridColumnOptions.prototype.
|
|
82716
|
+
GridColumnOptions.prototype.fe = function (a, b) {
|
|
82470
82717
|
var c = [this.b1, this.by, this.b0, this.bx, this.bw, this.bv, this.b2];
|
|
82471
82718
|
for (var e = 0; e < c.length; e++) {
|
|
82472
82719
|
var d = c[e];
|
|
@@ -82476,7 +82723,7 @@ var GridColumnOptions = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
82476
82723
|
this.cancelButtonClick(this, b);
|
|
82477
82724
|
}
|
|
82478
82725
|
};
|
|
82479
|
-
GridColumnOptions.prototype.
|
|
82726
|
+
GridColumnOptions.prototype.fb = function (a, b) {
|
|
82480
82727
|
switch (b.propertyName) {
|
|
82481
82728
|
}
|
|
82482
82729
|
};
|
|
@@ -83083,6 +83330,34 @@ var IgcGridColumnOptionsComponent = /** @class */ /*@__PURE__*/ (function (_supe
|
|
|
83083
83330
|
enumerable: true,
|
|
83084
83331
|
configurable: true
|
|
83085
83332
|
});
|
|
83333
|
+
Object.defineProperty(IgcGridColumnOptionsComponent.prototype, "summaryListTextColor", {
|
|
83334
|
+
/**
|
|
83335
|
+
* Gets or sets the text color for the summary options menu.
|
|
83336
|
+
*/
|
|
83337
|
+
get: function () {
|
|
83338
|
+
return brushToString(this.i.fm);
|
|
83339
|
+
},
|
|
83340
|
+
set: function (v) {
|
|
83341
|
+
this.i.fm = stringToBrush(v);
|
|
83342
|
+
this._a("summaryListTextColor", brushToString(this.i.fm));
|
|
83343
|
+
},
|
|
83344
|
+
enumerable: true,
|
|
83345
|
+
configurable: true
|
|
83346
|
+
});
|
|
83347
|
+
Object.defineProperty(IgcGridColumnOptionsComponent.prototype, "summaryListBackground", {
|
|
83348
|
+
/**
|
|
83349
|
+
* Gets or sets the background color for the summary options menu.
|
|
83350
|
+
*/
|
|
83351
|
+
get: function () {
|
|
83352
|
+
return brushToString(this.i.fl);
|
|
83353
|
+
},
|
|
83354
|
+
set: function (v) {
|
|
83355
|
+
this.i.fl = stringToBrush(v);
|
|
83356
|
+
this._a("summaryListBackground", brushToString(this.i.fl));
|
|
83357
|
+
},
|
|
83358
|
+
enumerable: true,
|
|
83359
|
+
configurable: true
|
|
83360
|
+
});
|
|
83086
83361
|
Object.defineProperty(IgcGridColumnOptionsComponent.prototype, "applyButtonClick", {
|
|
83087
83362
|
get: function () {
|
|
83088
83363
|
return this._applyButtonClick;
|
|
@@ -91738,6 +92013,8 @@ var IgcDataGridComparisonOperatorSelectorComponent = /** @class */ /*@__PURE__*/
|
|
|
91738
92013
|
_this._valueChanged_wrapped = null;
|
|
91739
92014
|
_this._opening = null;
|
|
91740
92015
|
_this._opening_wrapped = null;
|
|
92016
|
+
_this._opened = null;
|
|
92017
|
+
_this._opened_wrapped = null;
|
|
91741
92018
|
_this._closing = null;
|
|
91742
92019
|
_this._closing_wrapped = null;
|
|
91743
92020
|
if (_this._styling) {
|
|
@@ -91877,10 +92154,10 @@ var IgcDataGridComparisonOperatorSelectorComponent = /** @class */ /*@__PURE__*/
|
|
|
91877
92154
|
* Gets the ID for the custom filter that is selected. Value must be 'Custom' for this property to be valid.
|
|
91878
92155
|
*/
|
|
91879
92156
|
get: function () {
|
|
91880
|
-
return this.i.
|
|
92157
|
+
return this.i.ae;
|
|
91881
92158
|
},
|
|
91882
92159
|
set: function (v) {
|
|
91883
|
-
this.i.
|
|
92160
|
+
this.i.ae = v;
|
|
91884
92161
|
},
|
|
91885
92162
|
enumerable: true,
|
|
91886
92163
|
configurable: true
|
|
@@ -91890,11 +92167,11 @@ var IgcDataGridComparisonOperatorSelectorComponent = /** @class */ /*@__PURE__*/
|
|
|
91890
92167
|
* Gets the index for the custom filter that is selected. Value must be 'Custom' for this property to be valid.
|
|
91891
92168
|
*/
|
|
91892
92169
|
get: function () {
|
|
91893
|
-
return this.i.
|
|
92170
|
+
return this.i.x;
|
|
91894
92171
|
},
|
|
91895
92172
|
set: function (v) {
|
|
91896
|
-
this.i.
|
|
91897
|
-
this._a("customFilterIndex", this.i.
|
|
92173
|
+
this.i.x = +v;
|
|
92174
|
+
this._a("customFilterIndex", this.i.x);
|
|
91898
92175
|
},
|
|
91899
92176
|
enumerable: true,
|
|
91900
92177
|
configurable: true
|
|
@@ -91915,305 +92192,333 @@ var IgcDataGridComparisonOperatorSelectorComponent = /** @class */ /*@__PURE__*/
|
|
|
91915
92192
|
});
|
|
91916
92193
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "maxHeight", {
|
|
91917
92194
|
get: function () {
|
|
91918
|
-
return this.i.
|
|
92195
|
+
return this.i.z;
|
|
92196
|
+
},
|
|
92197
|
+
set: function (v) {
|
|
92198
|
+
this.i.z = +v;
|
|
92199
|
+
this._a("maxHeight", this.i.z);
|
|
92200
|
+
},
|
|
92201
|
+
enumerable: true,
|
|
92202
|
+
configurable: true
|
|
92203
|
+
});
|
|
92204
|
+
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "textColor", {
|
|
92205
|
+
/**
|
|
92206
|
+
* Gets or sets the text color.
|
|
92207
|
+
*/
|
|
92208
|
+
get: function () {
|
|
92209
|
+
return brushToString(this.i.eq);
|
|
91919
92210
|
},
|
|
91920
92211
|
set: function (v) {
|
|
91921
|
-
this.i.
|
|
91922
|
-
this._a("
|
|
92212
|
+
this.i.eq = stringToBrush(v);
|
|
92213
|
+
this._a("textColor", brushToString(this.i.eq));
|
|
92214
|
+
},
|
|
92215
|
+
enumerable: true,
|
|
92216
|
+
configurable: true
|
|
92217
|
+
});
|
|
92218
|
+
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "background", {
|
|
92219
|
+
/**
|
|
92220
|
+
* Gets or sets the background color.
|
|
92221
|
+
*/
|
|
92222
|
+
get: function () {
|
|
92223
|
+
return brushToString(this.i.ep);
|
|
92224
|
+
},
|
|
92225
|
+
set: function (v) {
|
|
92226
|
+
this.i.ep = stringToBrush(v);
|
|
92227
|
+
this._a("background", brushToString(this.i.ep));
|
|
91923
92228
|
},
|
|
91924
92229
|
enumerable: true,
|
|
91925
92230
|
configurable: true
|
|
91926
92231
|
});
|
|
91927
92232
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionTrue", {
|
|
91928
92233
|
get: function () {
|
|
91929
|
-
return this.i.
|
|
92234
|
+
return this.i.dd;
|
|
91930
92235
|
},
|
|
91931
92236
|
enumerable: true,
|
|
91932
92237
|
configurable: true
|
|
91933
92238
|
});
|
|
91934
92239
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionFalse", {
|
|
91935
92240
|
get: function () {
|
|
91936
|
-
return this.i.
|
|
92241
|
+
return this.i.ck;
|
|
91937
92242
|
},
|
|
91938
92243
|
enumerable: true,
|
|
91939
92244
|
configurable: true
|
|
91940
92245
|
});
|
|
91941
92246
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionEquals", {
|
|
91942
92247
|
get: function () {
|
|
91943
|
-
return this.i.
|
|
92248
|
+
return this.i.cj;
|
|
91944
92249
|
},
|
|
91945
92250
|
enumerable: true,
|
|
91946
92251
|
configurable: true
|
|
91947
92252
|
});
|
|
91948
92253
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionNotEquals", {
|
|
91949
92254
|
get: function () {
|
|
91950
|
-
return this.i.
|
|
92255
|
+
return this.i.cz;
|
|
91951
92256
|
},
|
|
91952
92257
|
enumerable: true,
|
|
91953
92258
|
configurable: true
|
|
91954
92259
|
});
|
|
91955
92260
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionLessThan", {
|
|
91956
92261
|
get: function () {
|
|
91957
|
-
return this.i.
|
|
92262
|
+
return this.i.cr;
|
|
91958
92263
|
},
|
|
91959
92264
|
enumerable: true,
|
|
91960
92265
|
configurable: true
|
|
91961
92266
|
});
|
|
91962
92267
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionLessThanOrEqual", {
|
|
91963
92268
|
get: function () {
|
|
91964
|
-
return this.i.
|
|
92269
|
+
return this.i.cs;
|
|
91965
92270
|
},
|
|
91966
92271
|
enumerable: true,
|
|
91967
92272
|
configurable: true
|
|
91968
92273
|
});
|
|
91969
92274
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionGreaterThan", {
|
|
91970
92275
|
get: function () {
|
|
91971
|
-
return this.i.
|
|
92276
|
+
return this.i.cl;
|
|
91972
92277
|
},
|
|
91973
92278
|
enumerable: true,
|
|
91974
92279
|
configurable: true
|
|
91975
92280
|
});
|
|
91976
92281
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionGreaterThanOrEqual", {
|
|
91977
92282
|
get: function () {
|
|
91978
|
-
return this.i.
|
|
92283
|
+
return this.i.cm;
|
|
91979
92284
|
},
|
|
91980
92285
|
enumerable: true,
|
|
91981
92286
|
configurable: true
|
|
91982
92287
|
});
|
|
91983
92288
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionTop", {
|
|
91984
92289
|
get: function () {
|
|
91985
|
-
return this.i.
|
|
92290
|
+
return this.i.db;
|
|
91986
92291
|
},
|
|
91987
92292
|
enumerable: true,
|
|
91988
92293
|
configurable: true
|
|
91989
92294
|
});
|
|
91990
92295
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionBottom", {
|
|
91991
92296
|
get: function () {
|
|
91992
|
-
return this.i.
|
|
92297
|
+
return this.i.cb;
|
|
91993
92298
|
},
|
|
91994
92299
|
enumerable: true,
|
|
91995
92300
|
configurable: true
|
|
91996
92301
|
});
|
|
91997
92302
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionTopPercentile", {
|
|
91998
92303
|
get: function () {
|
|
91999
|
-
return this.i.
|
|
92304
|
+
return this.i.dc;
|
|
92000
92305
|
},
|
|
92001
92306
|
enumerable: true,
|
|
92002
92307
|
configurable: true
|
|
92003
92308
|
});
|
|
92004
92309
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionBottomPercentile", {
|
|
92005
92310
|
get: function () {
|
|
92006
|
-
return this.i.
|
|
92311
|
+
return this.i.cc;
|
|
92007
92312
|
},
|
|
92008
92313
|
enumerable: true,
|
|
92009
92314
|
configurable: true
|
|
92010
92315
|
});
|
|
92011
92316
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionToday", {
|
|
92012
92317
|
get: function () {
|
|
92013
|
-
return this.i.
|
|
92318
|
+
return this.i.c9;
|
|
92014
92319
|
},
|
|
92015
92320
|
enumerable: true,
|
|
92016
92321
|
configurable: true
|
|
92017
92322
|
});
|
|
92018
92323
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionTomorrow", {
|
|
92019
92324
|
get: function () {
|
|
92020
|
-
return this.i.
|
|
92325
|
+
return this.i.da;
|
|
92021
92326
|
},
|
|
92022
92327
|
enumerable: true,
|
|
92023
92328
|
configurable: true
|
|
92024
92329
|
});
|
|
92025
92330
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionYesterday", {
|
|
92026
92331
|
get: function () {
|
|
92027
|
-
return this.i.
|
|
92332
|
+
return this.i.dg;
|
|
92028
92333
|
},
|
|
92029
92334
|
enumerable: true,
|
|
92030
92335
|
configurable: true
|
|
92031
92336
|
});
|
|
92032
92337
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionThisWeek", {
|
|
92033
92338
|
get: function () {
|
|
92034
|
-
return this.i.
|
|
92339
|
+
return this.i.c7;
|
|
92035
92340
|
},
|
|
92036
92341
|
enumerable: true,
|
|
92037
92342
|
configurable: true
|
|
92038
92343
|
});
|
|
92039
92344
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionNextWeek", {
|
|
92040
92345
|
get: function () {
|
|
92041
|
-
return this.i.
|
|
92346
|
+
return this.i.cw;
|
|
92042
92347
|
},
|
|
92043
92348
|
enumerable: true,
|
|
92044
92349
|
configurable: true
|
|
92045
92350
|
});
|
|
92046
92351
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionLastWeek", {
|
|
92047
92352
|
get: function () {
|
|
92048
|
-
return this.i.
|
|
92353
|
+
return this.i.cp;
|
|
92049
92354
|
},
|
|
92050
92355
|
enumerable: true,
|
|
92051
92356
|
configurable: true
|
|
92052
92357
|
});
|
|
92053
92358
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionThisMonth", {
|
|
92054
92359
|
get: function () {
|
|
92055
|
-
return this.i.
|
|
92360
|
+
return this.i.c5;
|
|
92056
92361
|
},
|
|
92057
92362
|
enumerable: true,
|
|
92058
92363
|
configurable: true
|
|
92059
92364
|
});
|
|
92060
92365
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionNextMonth", {
|
|
92061
92366
|
get: function () {
|
|
92062
|
-
return this.i.
|
|
92367
|
+
return this.i.cu;
|
|
92063
92368
|
},
|
|
92064
92369
|
enumerable: true,
|
|
92065
92370
|
configurable: true
|
|
92066
92371
|
});
|
|
92067
92372
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionLastMonth", {
|
|
92068
92373
|
get: function () {
|
|
92069
|
-
return this.i.
|
|
92374
|
+
return this.i.cn;
|
|
92070
92375
|
},
|
|
92071
92376
|
enumerable: true,
|
|
92072
92377
|
configurable: true
|
|
92073
92378
|
});
|
|
92074
92379
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionThisQuarter", {
|
|
92075
92380
|
get: function () {
|
|
92076
|
-
return this.i.
|
|
92381
|
+
return this.i.c6;
|
|
92077
92382
|
},
|
|
92078
92383
|
enumerable: true,
|
|
92079
92384
|
configurable: true
|
|
92080
92385
|
});
|
|
92081
92386
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionNextQuarter", {
|
|
92082
92387
|
get: function () {
|
|
92083
|
-
return this.i.
|
|
92388
|
+
return this.i.cv;
|
|
92084
92389
|
},
|
|
92085
92390
|
enumerable: true,
|
|
92086
92391
|
configurable: true
|
|
92087
92392
|
});
|
|
92088
92393
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionLastQuarter", {
|
|
92089
92394
|
get: function () {
|
|
92090
|
-
return this.i.
|
|
92395
|
+
return this.i.co;
|
|
92091
92396
|
},
|
|
92092
92397
|
enumerable: true,
|
|
92093
92398
|
configurable: true
|
|
92094
92399
|
});
|
|
92095
92400
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionThisYear", {
|
|
92096
92401
|
get: function () {
|
|
92097
|
-
return this.i.
|
|
92402
|
+
return this.i.c8;
|
|
92098
92403
|
},
|
|
92099
92404
|
enumerable: true,
|
|
92100
92405
|
configurable: true
|
|
92101
92406
|
});
|
|
92102
92407
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionNextYear", {
|
|
92103
92408
|
get: function () {
|
|
92104
|
-
return this.i.
|
|
92409
|
+
return this.i.cx;
|
|
92105
92410
|
},
|
|
92106
92411
|
enumerable: true,
|
|
92107
92412
|
configurable: true
|
|
92108
92413
|
});
|
|
92109
92414
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionLastYear", {
|
|
92110
92415
|
get: function () {
|
|
92111
|
-
return this.i.
|
|
92416
|
+
return this.i.cq;
|
|
92112
92417
|
},
|
|
92113
92418
|
enumerable: true,
|
|
92114
92419
|
configurable: true
|
|
92115
92420
|
});
|
|
92116
92421
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionYearToDate", {
|
|
92117
92422
|
get: function () {
|
|
92118
|
-
return this.i.
|
|
92423
|
+
return this.i.df;
|
|
92119
92424
|
},
|
|
92120
92425
|
enumerable: true,
|
|
92121
92426
|
configurable: true
|
|
92122
92427
|
});
|
|
92123
92428
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionQ1", {
|
|
92124
92429
|
get: function () {
|
|
92125
|
-
return this.i.
|
|
92430
|
+
return this.i.c0;
|
|
92126
92431
|
},
|
|
92127
92432
|
enumerable: true,
|
|
92128
92433
|
configurable: true
|
|
92129
92434
|
});
|
|
92130
92435
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionQ2", {
|
|
92131
92436
|
get: function () {
|
|
92132
|
-
return this.i.
|
|
92437
|
+
return this.i.c1;
|
|
92133
92438
|
},
|
|
92134
92439
|
enumerable: true,
|
|
92135
92440
|
configurable: true
|
|
92136
92441
|
});
|
|
92137
92442
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionQ3", {
|
|
92138
92443
|
get: function () {
|
|
92139
|
-
return this.i.
|
|
92444
|
+
return this.i.c2;
|
|
92140
92445
|
},
|
|
92141
92446
|
enumerable: true,
|
|
92142
92447
|
configurable: true
|
|
92143
92448
|
});
|
|
92144
92449
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionQ4", {
|
|
92145
92450
|
get: function () {
|
|
92146
|
-
return this.i.
|
|
92451
|
+
return this.i.c3;
|
|
92147
92452
|
},
|
|
92148
92453
|
enumerable: true,
|
|
92149
92454
|
configurable: true
|
|
92150
92455
|
});
|
|
92151
92456
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionMonth", {
|
|
92152
92457
|
get: function () {
|
|
92153
|
-
return this.i.
|
|
92458
|
+
return this.i.ct;
|
|
92154
92459
|
},
|
|
92155
92460
|
enumerable: true,
|
|
92156
92461
|
configurable: true
|
|
92157
92462
|
});
|
|
92158
92463
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionYear", {
|
|
92159
92464
|
get: function () {
|
|
92160
|
-
return this.i.
|
|
92465
|
+
return this.i.de;
|
|
92161
92466
|
},
|
|
92162
92467
|
enumerable: true,
|
|
92163
92468
|
configurable: true
|
|
92164
92469
|
});
|
|
92165
92470
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionStartsWith", {
|
|
92166
92471
|
get: function () {
|
|
92167
|
-
return this.i.
|
|
92472
|
+
return this.i.c4;
|
|
92168
92473
|
},
|
|
92169
92474
|
enumerable: true,
|
|
92170
92475
|
configurable: true
|
|
92171
92476
|
});
|
|
92172
92477
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionDoesNotStartWith", {
|
|
92173
92478
|
get: function () {
|
|
92174
|
-
return this.i.
|
|
92479
|
+
return this.i.cg;
|
|
92175
92480
|
},
|
|
92176
92481
|
enumerable: true,
|
|
92177
92482
|
configurable: true
|
|
92178
92483
|
});
|
|
92179
92484
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionEndsWith", {
|
|
92180
92485
|
get: function () {
|
|
92181
|
-
return this.i.
|
|
92486
|
+
return this.i.ci;
|
|
92182
92487
|
},
|
|
92183
92488
|
enumerable: true,
|
|
92184
92489
|
configurable: true
|
|
92185
92490
|
});
|
|
92186
92491
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionDoesNotEndWith", {
|
|
92187
92492
|
get: function () {
|
|
92188
|
-
return this.i.
|
|
92493
|
+
return this.i.cf;
|
|
92189
92494
|
},
|
|
92190
92495
|
enumerable: true,
|
|
92191
92496
|
configurable: true
|
|
92192
92497
|
});
|
|
92193
92498
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionContains", {
|
|
92194
92499
|
get: function () {
|
|
92195
|
-
return this.i.
|
|
92500
|
+
return this.i.cd;
|
|
92196
92501
|
},
|
|
92197
92502
|
enumerable: true,
|
|
92198
92503
|
configurable: true
|
|
92199
92504
|
});
|
|
92200
92505
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionDoesNotContain", {
|
|
92201
92506
|
get: function () {
|
|
92202
|
-
return this.i.
|
|
92507
|
+
return this.i.ce;
|
|
92203
92508
|
},
|
|
92204
92509
|
enumerable: true,
|
|
92205
92510
|
configurable: true
|
|
92206
92511
|
});
|
|
92207
92512
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionEmpty", {
|
|
92208
92513
|
get: function () {
|
|
92209
|
-
return this.i.
|
|
92514
|
+
return this.i.ch;
|
|
92210
92515
|
},
|
|
92211
92516
|
enumerable: true,
|
|
92212
92517
|
configurable: true
|
|
92213
92518
|
});
|
|
92214
92519
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionNotEmpty", {
|
|
92215
92520
|
get: function () {
|
|
92216
|
-
return this.i.
|
|
92521
|
+
return this.i.cy;
|
|
92217
92522
|
},
|
|
92218
92523
|
enumerable: true,
|
|
92219
92524
|
configurable: true
|
|
@@ -92284,29 +92589,29 @@ var IgcDataGridComparisonOperatorSelectorComponent = /** @class */ /*@__PURE__*/
|
|
|
92284
92589
|
this._inStyling = false;
|
|
92285
92590
|
};
|
|
92286
92591
|
IgcDataGridComparisonOperatorSelectorComponent.prototype.provideContainer = function (container) {
|
|
92287
|
-
this.i.
|
|
92592
|
+
this.i.ej(container);
|
|
92288
92593
|
};
|
|
92289
92594
|
IgcDataGridComparisonOperatorSelectorComponent.prototype.dispose = function () {
|
|
92290
|
-
this.i.
|
|
92595
|
+
this.i.ea();
|
|
92291
92596
|
};
|
|
92292
92597
|
IgcDataGridComparisonOperatorSelectorComponent.prototype.getDropdownHeight = function () {
|
|
92293
|
-
var iv = this.i.
|
|
92598
|
+
var iv = this.i.y();
|
|
92294
92599
|
return (iv);
|
|
92295
92600
|
};
|
|
92296
92601
|
IgcDataGridComparisonOperatorSelectorComponent.prototype.toggle = function () {
|
|
92297
|
-
this.i.
|
|
92602
|
+
this.i.em();
|
|
92298
92603
|
};
|
|
92299
92604
|
IgcDataGridComparisonOperatorSelectorComponent.prototype.close = function () {
|
|
92300
|
-
this.i.
|
|
92605
|
+
this.i.d8();
|
|
92301
92606
|
};
|
|
92302
92607
|
IgcDataGridComparisonOperatorSelectorComponent.prototype.addCustomOperator = function (name, icon, id, index) {
|
|
92303
|
-
this.i.
|
|
92608
|
+
this.i.d1(name, icon, id, index);
|
|
92304
92609
|
};
|
|
92305
92610
|
IgcDataGridComparisonOperatorSelectorComponent.prototype.clearCustomOperators = function () {
|
|
92306
|
-
this.i.
|
|
92611
|
+
this.i.d7();
|
|
92307
92612
|
};
|
|
92308
92613
|
IgcDataGridComparisonOperatorSelectorComponent.prototype.selectCustomFilter = function (id, index) {
|
|
92309
|
-
this.i.
|
|
92614
|
+
this.i.ek(id, index);
|
|
92310
92615
|
};
|
|
92311
92616
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "valueChanged", {
|
|
92312
92617
|
get: function () {
|
|
@@ -92364,6 +92669,34 @@ var IgcDataGridComparisonOperatorSelectorComponent = /** @class */ /*@__PURE__*/
|
|
|
92364
92669
|
enumerable: true,
|
|
92365
92670
|
configurable: true
|
|
92366
92671
|
});
|
|
92672
|
+
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "opened", {
|
|
92673
|
+
get: function () {
|
|
92674
|
+
return this._opened;
|
|
92675
|
+
},
|
|
92676
|
+
set: function (ev) {
|
|
92677
|
+
var _this = this;
|
|
92678
|
+
if (this._opened_wrapped !== null) {
|
|
92679
|
+
this.i.opened = delegateRemove(this.i.opened, this._opened_wrapped);
|
|
92680
|
+
this._opened_wrapped = null;
|
|
92681
|
+
this._opened = null;
|
|
92682
|
+
}
|
|
92683
|
+
this._opened = ev;
|
|
92684
|
+
this._opened_wrapped = function (o, e) {
|
|
92685
|
+
var outerArgs = new IgcOperatorSelectorOpeningEventArgs();
|
|
92686
|
+
outerArgs._provideImplementation(e);
|
|
92687
|
+
if (_this.beforeOpened) {
|
|
92688
|
+
_this.beforeOpened(_this, outerArgs);
|
|
92689
|
+
}
|
|
92690
|
+
if (_this._opened) {
|
|
92691
|
+
_this._opened(_this, outerArgs);
|
|
92692
|
+
}
|
|
92693
|
+
};
|
|
92694
|
+
this.i.opened = delegateCombine(this.i.opened, this._opened_wrapped);
|
|
92695
|
+
;
|
|
92696
|
+
},
|
|
92697
|
+
enumerable: true,
|
|
92698
|
+
configurable: true
|
|
92699
|
+
});
|
|
92367
92700
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "closing", {
|
|
92368
92701
|
get: function () {
|
|
92369
92702
|
return this._closing;
|