igniteui-webcomponents-grids 4.2.2 → 4.2.3-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/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-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
|
@@ -13867,6 +13867,7 @@
|
|
|
13867
13867
|
_this.cv = new EditorDefinition();
|
|
13868
13868
|
_this.cw = new EditRowDefinition();
|
|
13869
13869
|
_this.c5 = new FilterRowDefinition();
|
|
13870
|
+
_this.c5.grid = _this;
|
|
13870
13871
|
_this.aav = _this.aaw;
|
|
13871
13872
|
_this.yn = _this.yo;
|
|
13872
13873
|
_this.yt = GridStyleRepository.ax;
|
|
@@ -31276,6 +31277,12 @@
|
|
|
31276
31277
|
};
|
|
31277
31278
|
FilterRowDefinition.prototype.c2 = function (a, b) {
|
|
31278
31279
|
switch (b.propertyName) {
|
|
31280
|
+
case "CellTextColor":
|
|
31281
|
+
this.dg();
|
|
31282
|
+
break;
|
|
31283
|
+
case "CellBackground":
|
|
31284
|
+
this.c9();
|
|
31285
|
+
break;
|
|
31279
31286
|
}
|
|
31280
31287
|
};
|
|
31281
31288
|
FilterRowDefinition.prototype.cx = function (a, b, c, d) {
|
|
@@ -31298,6 +31305,31 @@
|
|
|
31298
31305
|
e.lm = f.ep;
|
|
31299
31306
|
}
|
|
31300
31307
|
};
|
|
31308
|
+
FilterRowDefinition.prototype.dg = function () {
|
|
31309
|
+
if (this.el == null) {
|
|
31310
|
+
if (this.grid != null && this.grid.zv != null) {
|
|
31311
|
+
this.d7 = this.grid.zv;
|
|
31312
|
+
return;
|
|
31313
|
+
}
|
|
31314
|
+
this.d7 = this.eh();
|
|
31315
|
+
}
|
|
31316
|
+
else {
|
|
31317
|
+
this.d7 = this.el;
|
|
31318
|
+
}
|
|
31319
|
+
};
|
|
31320
|
+
FilterRowDefinition.prototype.c9 = function () {
|
|
31321
|
+
if (this.d8 == null) {
|
|
31322
|
+
if (this.grid != null && this.grid.zt != null) {
|
|
31323
|
+
this.d1 = this.grid.zt;
|
|
31324
|
+
}
|
|
31325
|
+
else {
|
|
31326
|
+
this.d1 = this.ec();
|
|
31327
|
+
}
|
|
31328
|
+
}
|
|
31329
|
+
else {
|
|
31330
|
+
this.d1 = this.d8;
|
|
31331
|
+
}
|
|
31332
|
+
};
|
|
31301
31333
|
FilterRowDefinition.$t = igniteuiWebcomponentsCore.markType(FilterRowDefinition, 'FilterRowDefinition', DefinitionBase.$);
|
|
31302
31334
|
return FilterRowDefinition;
|
|
31303
31335
|
}(DefinitionBase));
|
|
@@ -53131,6 +53163,7 @@
|
|
|
53131
53163
|
_this.h = null;
|
|
53132
53164
|
_this._container = null;
|
|
53133
53165
|
_this.g = false;
|
|
53166
|
+
_this.x = null;
|
|
53134
53167
|
_this.valueProvided = null;
|
|
53135
53168
|
_this.userTyping = null;
|
|
53136
53169
|
_this.lostFocus = null;
|
|
@@ -53157,7 +53190,7 @@
|
|
|
53157
53190
|
set: function (a) {
|
|
53158
53191
|
var b = this.i;
|
|
53159
53192
|
this.i = a;
|
|
53160
|
-
this.
|
|
53193
|
+
this.u("Value", b, this.i);
|
|
53161
53194
|
},
|
|
53162
53195
|
enumerable: true,
|
|
53163
53196
|
configurable: true
|
|
@@ -53170,7 +53203,7 @@
|
|
|
53170
53203
|
var b = this.e;
|
|
53171
53204
|
this.e = a;
|
|
53172
53205
|
if (b != this.e) {
|
|
53173
|
-
this.
|
|
53206
|
+
this.u("IsEnabled", b, this.e);
|
|
53174
53207
|
}
|
|
53175
53208
|
},
|
|
53176
53209
|
enumerable: true,
|
|
@@ -53194,28 +53227,42 @@
|
|
|
53194
53227
|
var b = this.f;
|
|
53195
53228
|
this.f = a;
|
|
53196
53229
|
if (b != this.f) {
|
|
53197
|
-
this.
|
|
53230
|
+
this.u("ShowClearButton", b, this.f);
|
|
53231
|
+
}
|
|
53232
|
+
},
|
|
53233
|
+
enumerable: true,
|
|
53234
|
+
configurable: true
|
|
53235
|
+
});
|
|
53236
|
+
Object.defineProperty(BaseEditorView.prototype, "textColor", {
|
|
53237
|
+
get: function () {
|
|
53238
|
+
return this.x;
|
|
53239
|
+
},
|
|
53240
|
+
set: function (a) {
|
|
53241
|
+
var b = this.x;
|
|
53242
|
+
this.x = a;
|
|
53243
|
+
if (b != this.x) {
|
|
53244
|
+
this.u("TextColor", b, this.x);
|
|
53198
53245
|
}
|
|
53199
53246
|
},
|
|
53200
53247
|
enumerable: true,
|
|
53201
53248
|
configurable: true
|
|
53202
53249
|
});
|
|
53203
|
-
BaseEditorView.prototype.
|
|
53250
|
+
BaseEditorView.prototype.q = function (a, b) {
|
|
53204
53251
|
if (this.valueProvided != null) {
|
|
53205
53252
|
this.valueProvided(this, a, b);
|
|
53206
53253
|
}
|
|
53207
53254
|
};
|
|
53208
|
-
BaseEditorView.prototype.
|
|
53255
|
+
BaseEditorView.prototype.p = function () {
|
|
53209
53256
|
if (this.userTyping != null) {
|
|
53210
53257
|
this.userTyping(this);
|
|
53211
53258
|
}
|
|
53212
53259
|
};
|
|
53213
|
-
BaseEditorView.prototype.
|
|
53260
|
+
BaseEditorView.prototype.o = function () {
|
|
53214
53261
|
if (this.lostFocus != null) {
|
|
53215
53262
|
this.lostFocus(this);
|
|
53216
53263
|
}
|
|
53217
53264
|
};
|
|
53218
|
-
BaseEditorView.prototype.
|
|
53265
|
+
BaseEditorView.prototype.n = function () {
|
|
53219
53266
|
if (this.gotFocus != null) {
|
|
53220
53267
|
this.gotFocus(this);
|
|
53221
53268
|
}
|
|
@@ -53247,31 +53294,36 @@
|
|
|
53247
53294
|
this.b = this.h.getRequestAnimationFrame();
|
|
53248
53295
|
}
|
|
53249
53296
|
this.b(function () {
|
|
53250
|
-
_this.
|
|
53297
|
+
_this.s();
|
|
53251
53298
|
_this.d = false;
|
|
53252
53299
|
});
|
|
53253
53300
|
this.d = true;
|
|
53254
53301
|
};
|
|
53255
|
-
BaseEditorView.prototype.
|
|
53302
|
+
BaseEditorView.prototype.s = function () {
|
|
53256
53303
|
};
|
|
53257
53304
|
BaseEditorView.prototype.getEditorValue = function () {
|
|
53258
53305
|
return null;
|
|
53259
53306
|
};
|
|
53260
53307
|
BaseEditorView.prototype.setEditorValue = function (a) {
|
|
53261
53308
|
};
|
|
53262
|
-
BaseEditorView.prototype.
|
|
53309
|
+
BaseEditorView.prototype.u = function (a, b, c) {
|
|
53263
53310
|
switch (a) {
|
|
53264
53311
|
case "Value":
|
|
53265
|
-
this.
|
|
53312
|
+
this.w();
|
|
53266
53313
|
break;
|
|
53267
53314
|
case "IsEnabled":
|
|
53268
|
-
this.
|
|
53315
|
+
this.r();
|
|
53316
|
+
break;
|
|
53317
|
+
case "TextColor":
|
|
53318
|
+
this.v();
|
|
53269
53319
|
break;
|
|
53270
53320
|
}
|
|
53271
53321
|
};
|
|
53272
|
-
BaseEditorView.prototype.
|
|
53322
|
+
BaseEditorView.prototype.w = function () {
|
|
53323
|
+
};
|
|
53324
|
+
BaseEditorView.prototype.r = function () {
|
|
53273
53325
|
};
|
|
53274
|
-
BaseEditorView.prototype.
|
|
53326
|
+
BaseEditorView.prototype.v = function () {
|
|
53275
53327
|
};
|
|
53276
53328
|
BaseEditorView.prototype.onInputKeyDown = function (a, b) {
|
|
53277
53329
|
if (!this.g) {
|
|
@@ -53325,9 +53377,9 @@
|
|
|
53325
53377
|
tslib_1.__extends(TextEditorView, _super);
|
|
53326
53378
|
function TextEditorView(a, b, c) {
|
|
53327
53379
|
var _this = _super.call(this, a, c) || this;
|
|
53328
|
-
_this.
|
|
53329
|
-
_this.
|
|
53330
|
-
_this.
|
|
53380
|
+
_this.aa = null;
|
|
53381
|
+
_this.z = null;
|
|
53382
|
+
_this.y = null;
|
|
53331
53383
|
var d = a.createElement("div");
|
|
53332
53384
|
d.setRawStyleProperty("display", "flex");
|
|
53333
53385
|
d.setRawStyleProperty("width", "100%");
|
|
@@ -53335,61 +53387,62 @@
|
|
|
53335
53387
|
d.setRawStyleProperty("height", "38px");
|
|
53336
53388
|
_this.container = d;
|
|
53337
53389
|
var e = a.getSubRenderer(d);
|
|
53338
|
-
_this.
|
|
53339
|
-
_this.
|
|
53340
|
-
_this.
|
|
53341
|
-
_this.
|
|
53342
|
-
_this.
|
|
53343
|
-
_this.
|
|
53344
|
-
var f = e.getExternal(_this.
|
|
53390
|
+
_this.z = new igniteuiWebcomponentsInputs.XInputGroup();
|
|
53391
|
+
_this.z.provideContainer(e);
|
|
53392
|
+
_this.z.d = 0;
|
|
53393
|
+
_this.z.j = b;
|
|
53394
|
+
_this.z.n = 3;
|
|
53395
|
+
_this.z.disabled = !_this.isEnabled;
|
|
53396
|
+
var f = e.getExternal(_this.z, e.rootWrapper, null);
|
|
53345
53397
|
var g = a.createElement("div");
|
|
53346
53398
|
g.setRawStyleProperty("width", "100%");
|
|
53347
53399
|
var h = a.getSubRenderer(g);
|
|
53348
|
-
_this.
|
|
53349
|
-
_this.
|
|
53350
|
-
_this.
|
|
53351
|
-
_this.
|
|
53352
|
-
|
|
53353
|
-
_this.
|
|
53354
|
-
_this.
|
|
53400
|
+
_this.y = new igniteuiWebcomponentsInputs.XInput();
|
|
53401
|
+
_this.y.provideContainer(h);
|
|
53402
|
+
_this.y.b6 = "text";
|
|
53403
|
+
_this.y.disabled = !_this.isEnabled;
|
|
53404
|
+
_this.y.d1 = _this.textColor;
|
|
53405
|
+
var i = e.getExternal(_this.y, h.rootWrapper, null);
|
|
53406
|
+
_this.z.appendContentChild(g);
|
|
53407
|
+
_this.z.inputs.add(_this.y);
|
|
53355
53408
|
return _this;
|
|
53356
53409
|
}
|
|
53357
53410
|
TextEditorView.prototype.setFont = function (a) {
|
|
53358
|
-
if (this.
|
|
53359
|
-
this.
|
|
53411
|
+
if (this.y != null) {
|
|
53412
|
+
this.y.af = a;
|
|
53360
53413
|
}
|
|
53361
53414
|
};
|
|
53362
53415
|
TextEditorView.prototype.attachEvents = function () {
|
|
53363
|
-
if (this.
|
|
53364
|
-
var a = this.
|
|
53365
|
-
a.changing = igniteuiWebcomponentsCore.delegateCombine(a.changing, igniteuiWebcomponentsCore.runOn(this, this.
|
|
53366
|
-
var b = this.
|
|
53416
|
+
if (this.y != null) {
|
|
53417
|
+
var a = this.y;
|
|
53418
|
+
a.changing = igniteuiWebcomponentsCore.delegateCombine(a.changing, igniteuiWebcomponentsCore.runOn(this, this.ac));
|
|
53419
|
+
var b = this.y;
|
|
53367
53420
|
b.keyDown = igniteuiWebcomponentsCore.delegateCombine(b.keyDown, igniteuiWebcomponentsCore.runOn(this, this.onInputKeyDown));
|
|
53368
|
-
var c = this.
|
|
53369
|
-
c.compositionEnd = igniteuiWebcomponentsCore.delegateCombine(c.compositionEnd, igniteuiWebcomponentsCore.runOn(this, this.
|
|
53370
|
-
var d = this.
|
|
53371
|
-
d.gotFocus = igniteuiWebcomponentsCore.delegateCombine(d.gotFocus, igniteuiWebcomponentsCore.runOn(this, this.
|
|
53372
|
-
var e = this.
|
|
53373
|
-
e.lostFocus = igniteuiWebcomponentsCore.delegateCombine(e.lostFocus, igniteuiWebcomponentsCore.runOn(this, this.
|
|
53421
|
+
var c = this.y;
|
|
53422
|
+
c.compositionEnd = igniteuiWebcomponentsCore.delegateCombine(c.compositionEnd, igniteuiWebcomponentsCore.runOn(this, this.ab));
|
|
53423
|
+
var d = this.y;
|
|
53424
|
+
d.gotFocus = igniteuiWebcomponentsCore.delegateCombine(d.gotFocus, igniteuiWebcomponentsCore.runOn(this, this.ad));
|
|
53425
|
+
var e = this.y;
|
|
53426
|
+
e.lostFocus = igniteuiWebcomponentsCore.delegateCombine(e.lostFocus, igniteuiWebcomponentsCore.runOn(this, this.ae));
|
|
53374
53427
|
}
|
|
53375
53428
|
};
|
|
53376
53429
|
TextEditorView.prototype.detachEvents = function () {
|
|
53377
|
-
if (this.
|
|
53378
|
-
var a = this.
|
|
53379
|
-
a.changing = igniteuiWebcomponentsCore.delegateRemove(a.changing, igniteuiWebcomponentsCore.runOn(this, this.
|
|
53380
|
-
var b = this.
|
|
53430
|
+
if (this.y != null) {
|
|
53431
|
+
var a = this.y;
|
|
53432
|
+
a.changing = igniteuiWebcomponentsCore.delegateRemove(a.changing, igniteuiWebcomponentsCore.runOn(this, this.ac));
|
|
53433
|
+
var b = this.y;
|
|
53381
53434
|
b.keyDown = igniteuiWebcomponentsCore.delegateRemove(b.keyDown, igniteuiWebcomponentsCore.runOn(this, this.onInputKeyDown));
|
|
53382
|
-
var c = this.
|
|
53383
|
-
c.compositionEnd = igniteuiWebcomponentsCore.delegateRemove(c.compositionEnd, igniteuiWebcomponentsCore.runOn(this, this.
|
|
53384
|
-
var d = this.
|
|
53385
|
-
d.gotFocus = igniteuiWebcomponentsCore.delegateRemove(d.gotFocus, igniteuiWebcomponentsCore.runOn(this, this.
|
|
53386
|
-
var e = this.
|
|
53387
|
-
e.lostFocus = igniteuiWebcomponentsCore.delegateRemove(e.lostFocus, igniteuiWebcomponentsCore.runOn(this, this.
|
|
53435
|
+
var c = this.y;
|
|
53436
|
+
c.compositionEnd = igniteuiWebcomponentsCore.delegateRemove(c.compositionEnd, igniteuiWebcomponentsCore.runOn(this, this.ab));
|
|
53437
|
+
var d = this.y;
|
|
53438
|
+
d.gotFocus = igniteuiWebcomponentsCore.delegateRemove(d.gotFocus, igniteuiWebcomponentsCore.runOn(this, this.ad));
|
|
53439
|
+
var e = this.y;
|
|
53440
|
+
e.lostFocus = igniteuiWebcomponentsCore.delegateRemove(e.lostFocus, igniteuiWebcomponentsCore.runOn(this, this.ae));
|
|
53388
53441
|
}
|
|
53389
53442
|
};
|
|
53390
53443
|
TextEditorView.prototype.onTargetChanged = function () {
|
|
53391
|
-
this.
|
|
53392
|
-
if (this.
|
|
53444
|
+
this.aa = null;
|
|
53445
|
+
if (this.y != null) {
|
|
53393
53446
|
this.focus();
|
|
53394
53447
|
}
|
|
53395
53448
|
};
|
|
@@ -53404,73 +53457,79 @@
|
|
|
53404
53457
|
if (this.a.isEditRefocusDesired) {
|
|
53405
53458
|
var a = this.h.rootWrapper.getNativeElement();
|
|
53406
53459
|
if (a == document.activeElement || a.contains(document.activeElement)) {
|
|
53407
|
-
this.
|
|
53460
|
+
this.y.cp();
|
|
53408
53461
|
this.focus();
|
|
53409
53462
|
}
|
|
53410
53463
|
}
|
|
53411
53464
|
};
|
|
53412
|
-
TextEditorView.prototype.
|
|
53465
|
+
TextEditorView.prototype.s = function () {
|
|
53413
53466
|
var _this = this;
|
|
53414
|
-
if (this.
|
|
53415
|
-
this.
|
|
53416
|
-
if (this.
|
|
53417
|
-
window.setTimeout(function () { return _this.
|
|
53467
|
+
if (this.y != null) {
|
|
53468
|
+
this.y.focus(true);
|
|
53469
|
+
if (this.y.b6 != "date") {
|
|
53470
|
+
window.setTimeout(function () { return _this.y.dj(); }, 0);
|
|
53418
53471
|
}
|
|
53419
53472
|
}
|
|
53420
53473
|
};
|
|
53421
|
-
TextEditorView.prototype.
|
|
53422
|
-
if (this.
|
|
53474
|
+
TextEditorView.prototype.w = function () {
|
|
53475
|
+
if (this.y != null) {
|
|
53423
53476
|
if (this.value != null) {
|
|
53424
|
-
this.
|
|
53425
|
-
this.
|
|
53426
|
-
this.
|
|
53477
|
+
this.aa = null;
|
|
53478
|
+
this.y.cm = null;
|
|
53479
|
+
this.y.cm = this.value.toString();
|
|
53427
53480
|
if (this.focusOnValueChanged) {
|
|
53428
|
-
this.
|
|
53481
|
+
this.s();
|
|
53429
53482
|
}
|
|
53430
53483
|
}
|
|
53431
53484
|
else {
|
|
53432
|
-
this.
|
|
53485
|
+
this.y.cm = null;
|
|
53433
53486
|
}
|
|
53434
53487
|
}
|
|
53435
53488
|
};
|
|
53436
|
-
TextEditorView.prototype.
|
|
53437
|
-
if (this.
|
|
53438
|
-
this.
|
|
53489
|
+
TextEditorView.prototype.r = function () {
|
|
53490
|
+
if (this.z != null) {
|
|
53491
|
+
this.z.disabled = !this.isEnabled;
|
|
53439
53492
|
}
|
|
53440
|
-
if (this.
|
|
53441
|
-
this.
|
|
53493
|
+
if (this.y != null) {
|
|
53494
|
+
this.y.disabled = !this.isEnabled;
|
|
53442
53495
|
}
|
|
53443
53496
|
};
|
|
53444
|
-
TextEditorView.prototype.
|
|
53445
|
-
|
|
53497
|
+
TextEditorView.prototype.v = function () {
|
|
53498
|
+
_super.prototype.v.call(this);
|
|
53499
|
+
if (this.y != null) {
|
|
53500
|
+
this.y.d1 = this.textColor;
|
|
53501
|
+
}
|
|
53502
|
+
};
|
|
53503
|
+
TextEditorView.prototype.ac = function (a, b) {
|
|
53504
|
+
this.p();
|
|
53446
53505
|
if (b.isCompositionInProgress) {
|
|
53447
53506
|
return;
|
|
53448
53507
|
}
|
|
53449
|
-
if (this.
|
|
53450
|
-
this.
|
|
53508
|
+
if (this.aa != null && this.aa != b.value) {
|
|
53509
|
+
this.aa = null;
|
|
53451
53510
|
return;
|
|
53452
53511
|
}
|
|
53453
|
-
this.
|
|
53454
|
-
};
|
|
53455
|
-
TextEditorView.prototype.y = function (a, b) {
|
|
53456
|
-
this.x = b.value;
|
|
53457
|
-
this.p(b.value, false);
|
|
53512
|
+
this.q(b.value, false);
|
|
53458
53513
|
};
|
|
53459
53514
|
TextEditorView.prototype.ab = function (a, b) {
|
|
53460
|
-
this.
|
|
53515
|
+
this.aa = b.value;
|
|
53516
|
+
this.q(b.value, false);
|
|
53461
53517
|
};
|
|
53462
|
-
TextEditorView.prototype.
|
|
53463
|
-
this.
|
|
53518
|
+
TextEditorView.prototype.ae = function (a, b) {
|
|
53519
|
+
this.o();
|
|
53520
|
+
};
|
|
53521
|
+
TextEditorView.prototype.ad = function (a, b) {
|
|
53522
|
+
this.n();
|
|
53464
53523
|
};
|
|
53465
53524
|
TextEditorView.prototype.getEditorValue = function () {
|
|
53466
|
-
if (this.
|
|
53467
|
-
return this.
|
|
53525
|
+
if (this.y != null) {
|
|
53526
|
+
return this.y.cm;
|
|
53468
53527
|
}
|
|
53469
53528
|
return null;
|
|
53470
53529
|
};
|
|
53471
53530
|
TextEditorView.prototype.setEditorValue = function (a) {
|
|
53472
|
-
if (this.
|
|
53473
|
-
this.
|
|
53531
|
+
if (this.y != null) {
|
|
53532
|
+
this.y.cm = a;
|
|
53474
53533
|
}
|
|
53475
53534
|
};
|
|
53476
53535
|
TextEditorView.$t = igniteuiWebcomponentsCore.markType(TextEditorView, 'TextEditorView', BaseEditorView.$);
|
|
@@ -53490,15 +53549,15 @@
|
|
|
53490
53549
|
tslib_1.__extends(NumericEditorView, _super);
|
|
53491
53550
|
function NumericEditorView(a, b, c) {
|
|
53492
53551
|
var _this = _super.call(this, a, b, c) || this;
|
|
53493
|
-
_this.
|
|
53552
|
+
_this.y.b6 = "number";
|
|
53494
53553
|
return _this;
|
|
53495
53554
|
}
|
|
53496
53555
|
NumericEditorView.prototype.getEditorValue = function () {
|
|
53497
|
-
if (this.
|
|
53556
|
+
if (this.y == null || this.y.cm == null) {
|
|
53498
53557
|
return null;
|
|
53499
53558
|
}
|
|
53500
53559
|
var a = NaN;
|
|
53501
|
-
var b = igniteuiWebcomponentsCore.tryParseNumber(this.
|
|
53560
|
+
var b = igniteuiWebcomponentsCore.tryParseNumber(this.y.cm, a);
|
|
53502
53561
|
a = b.p1;
|
|
53503
53562
|
return a;
|
|
53504
53563
|
};
|
|
@@ -53519,11 +53578,11 @@
|
|
|
53519
53578
|
tslib_1.__extends(DateEditorView, _super);
|
|
53520
53579
|
function DateEditorView(a, b, c) {
|
|
53521
53580
|
var _this = _super.call(this, a, c) || this;
|
|
53522
|
-
_this.
|
|
53523
|
-
_this.
|
|
53524
|
-
_this.
|
|
53525
|
-
_this.
|
|
53526
|
-
_this.
|
|
53581
|
+
_this.ad = null;
|
|
53582
|
+
_this.y = null;
|
|
53583
|
+
_this.z = null;
|
|
53584
|
+
_this.ab = false;
|
|
53585
|
+
_this.aa = false;
|
|
53527
53586
|
var d = a.createElement("div");
|
|
53528
53587
|
d.setRawStyleProperty("width", "100%");
|
|
53529
53588
|
d.setRawStyleProperty("margin-top", "-10px");
|
|
@@ -53534,87 +53593,88 @@
|
|
|
53534
53593
|
e.append(f);
|
|
53535
53594
|
var g = a.createElement("div");
|
|
53536
53595
|
e.append(g);
|
|
53537
|
-
_this.
|
|
53538
|
-
_this.
|
|
53539
|
-
_this.
|
|
53540
|
-
_this.
|
|
53541
|
-
_this.
|
|
53542
|
-
_this.
|
|
53543
|
-
_this.
|
|
53544
|
-
|
|
53545
|
-
|
|
53546
|
-
|
|
53596
|
+
_this.y = new igniteuiWebcomponentsInputs.DatePicker();
|
|
53597
|
+
_this.y.ar = false;
|
|
53598
|
+
_this.y.provideContainer(e);
|
|
53599
|
+
_this.y.w = b;
|
|
53600
|
+
_this.y.y = 3;
|
|
53601
|
+
_this.y.as = _this.showClearButton;
|
|
53602
|
+
_this.y.at = _this.ac;
|
|
53603
|
+
_this.y.de = _this.textColor;
|
|
53604
|
+
var h = e.getExternal(_this.y, e.rootWrapper, null);
|
|
53605
|
+
if (_this.z != null) {
|
|
53606
|
+
_this.y.ad = _this.z;
|
|
53547
53607
|
}
|
|
53548
53608
|
_this.attachEvents();
|
|
53549
53609
|
return _this;
|
|
53550
53610
|
}
|
|
53551
|
-
Object.defineProperty(DateEditorView.prototype, "
|
|
53611
|
+
Object.defineProperty(DateEditorView.prototype, "ae", {
|
|
53552
53612
|
get: function () {
|
|
53553
|
-
return this.
|
|
53613
|
+
return this.ad;
|
|
53554
53614
|
},
|
|
53555
53615
|
set: function (a) {
|
|
53556
|
-
var b = this.
|
|
53557
|
-
this.
|
|
53558
|
-
if (b != this.
|
|
53559
|
-
this.
|
|
53616
|
+
var b = this.ad;
|
|
53617
|
+
this.ad = a;
|
|
53618
|
+
if (b != this.ad) {
|
|
53619
|
+
this.u("FormatString", b, this.ad);
|
|
53560
53620
|
}
|
|
53561
53621
|
},
|
|
53562
53622
|
enumerable: true,
|
|
53563
53623
|
configurable: true
|
|
53564
53624
|
});
|
|
53565
|
-
Object.defineProperty(DateEditorView.prototype, "
|
|
53625
|
+
Object.defineProperty(DateEditorView.prototype, "ac", {
|
|
53566
53626
|
get: function () {
|
|
53567
|
-
return this.
|
|
53627
|
+
return this.aa;
|
|
53568
53628
|
},
|
|
53569
53629
|
set: function (a) {
|
|
53570
|
-
var b = this.
|
|
53571
|
-
this.
|
|
53572
|
-
if (b != this.
|
|
53573
|
-
this.
|
|
53630
|
+
var b = this.aa;
|
|
53631
|
+
this.aa = a;
|
|
53632
|
+
if (b != this.aa) {
|
|
53633
|
+
this.u("ShowTodayButton", b, this.aa);
|
|
53574
53634
|
}
|
|
53575
53635
|
},
|
|
53576
53636
|
enumerable: true,
|
|
53577
53637
|
configurable: true
|
|
53578
53638
|
});
|
|
53579
53639
|
DateEditorView.prototype.setFont = function (a) {
|
|
53580
|
-
this.
|
|
53581
|
-
if (this.
|
|
53582
|
-
this.
|
|
53640
|
+
this.z = a;
|
|
53641
|
+
if (this.y != null && this.z != null) {
|
|
53642
|
+
this.y.ad = this.z;
|
|
53583
53643
|
}
|
|
53584
53644
|
};
|
|
53585
53645
|
DateEditorView.prototype.attachEvents = function () {
|
|
53586
|
-
if (this.
|
|
53587
|
-
var a = this.
|
|
53646
|
+
if (this.y != null) {
|
|
53647
|
+
var a = this.y;
|
|
53588
53648
|
a.selectedValueChanged = igniteuiWebcomponentsCore.delegateCombine(a.selectedValueChanged, igniteuiWebcomponentsCore.runOn(this, this.onDatePickerValueChanged));
|
|
53589
|
-
var b = this.
|
|
53649
|
+
var b = this.y;
|
|
53590
53650
|
b.gotFocus = igniteuiWebcomponentsCore.delegateCombine(b.gotFocus, igniteuiWebcomponentsCore.runOn(this, this.onDatePickerGotFocus));
|
|
53591
|
-
var c = this.
|
|
53651
|
+
var c = this.y;
|
|
53592
53652
|
c.lostFocus = igniteuiWebcomponentsCore.delegateCombine(c.lostFocus, igniteuiWebcomponentsCore.runOn(this, this.onDatePickerLostFocus));
|
|
53593
|
-
var d = this.
|
|
53653
|
+
var d = this.y;
|
|
53594
53654
|
d.keyDown = igniteuiWebcomponentsCore.delegateCombine(d.keyDown, igniteuiWebcomponentsCore.runOn(this, this.onInputKeyDown));
|
|
53595
|
-
var e = this.
|
|
53655
|
+
var e = this.y;
|
|
53596
53656
|
e.changing = igniteuiWebcomponentsCore.delegateCombine(e.changing, igniteuiWebcomponentsCore.runOn(this, this.onInputChanging));
|
|
53597
53657
|
}
|
|
53598
53658
|
};
|
|
53599
53659
|
DateEditorView.prototype.detachEvents = function () {
|
|
53600
|
-
if (this.
|
|
53601
|
-
var a = this.
|
|
53660
|
+
if (this.y != null) {
|
|
53661
|
+
var a = this.y;
|
|
53602
53662
|
a.selectedValueChanged = igniteuiWebcomponentsCore.delegateRemove(a.selectedValueChanged, igniteuiWebcomponentsCore.runOn(this, this.onDatePickerValueChanged));
|
|
53603
|
-
var b = this.
|
|
53663
|
+
var b = this.y;
|
|
53604
53664
|
b.gotFocus = igniteuiWebcomponentsCore.delegateRemove(b.gotFocus, igniteuiWebcomponentsCore.runOn(this, this.onDatePickerGotFocus));
|
|
53605
|
-
var c = this.
|
|
53665
|
+
var c = this.y;
|
|
53606
53666
|
c.lostFocus = igniteuiWebcomponentsCore.delegateRemove(c.lostFocus, igniteuiWebcomponentsCore.runOn(this, this.onDatePickerLostFocus));
|
|
53607
|
-
var d = this.
|
|
53667
|
+
var d = this.y;
|
|
53608
53668
|
d.keyDown = igniteuiWebcomponentsCore.delegateRemove(d.keyDown, igniteuiWebcomponentsCore.runOn(this, this.onInputKeyDown));
|
|
53609
|
-
var e = this.
|
|
53669
|
+
var e = this.y;
|
|
53610
53670
|
e.changing = igniteuiWebcomponentsCore.delegateRemove(e.changing, igniteuiWebcomponentsCore.runOn(this, this.onInputChanging));
|
|
53611
53671
|
}
|
|
53612
53672
|
};
|
|
53613
53673
|
DateEditorView.prototype.onTargetChanged = function () {
|
|
53614
|
-
if (this.
|
|
53615
|
-
this.
|
|
53674
|
+
if (this.y != null) {
|
|
53675
|
+
this.ab = true;
|
|
53616
53676
|
this.focus();
|
|
53617
|
-
this.
|
|
53677
|
+
this.ab = false;
|
|
53618
53678
|
}
|
|
53619
53679
|
};
|
|
53620
53680
|
DateEditorView.prototype.onEditStarted = function () {
|
|
@@ -53632,93 +53692,99 @@
|
|
|
53632
53692
|
}
|
|
53633
53693
|
}
|
|
53634
53694
|
};
|
|
53635
|
-
DateEditorView.prototype.
|
|
53636
|
-
if (this.
|
|
53637
|
-
this.
|
|
53638
|
-
this.
|
|
53695
|
+
DateEditorView.prototype.s = function () {
|
|
53696
|
+
if (this.y != null) {
|
|
53697
|
+
this.y.focus(true);
|
|
53698
|
+
this.y.cz();
|
|
53639
53699
|
}
|
|
53640
53700
|
};
|
|
53641
|
-
DateEditorView.prototype.
|
|
53642
|
-
if (this.
|
|
53643
|
-
this.
|
|
53701
|
+
DateEditorView.prototype.ag = function () {
|
|
53702
|
+
if (this.y != null) {
|
|
53703
|
+
this.y.cc();
|
|
53644
53704
|
}
|
|
53645
53705
|
};
|
|
53646
|
-
DateEditorView.prototype.
|
|
53647
|
-
_super.prototype.
|
|
53706
|
+
DateEditorView.prototype.u = function (a, b, c) {
|
|
53707
|
+
_super.prototype.u.call(this, a, b, c);
|
|
53648
53708
|
switch (a) {
|
|
53649
53709
|
case "FormatString":
|
|
53650
|
-
this.
|
|
53710
|
+
this.ak();
|
|
53651
53711
|
break;
|
|
53652
53712
|
case "ShowClearButton":
|
|
53653
|
-
if (this.
|
|
53654
|
-
this.
|
|
53713
|
+
if (this.y != null) {
|
|
53714
|
+
this.y.as = this.showClearButton;
|
|
53655
53715
|
}
|
|
53656
53716
|
break;
|
|
53657
53717
|
case "ShowTodayButton":
|
|
53658
|
-
if (this.
|
|
53659
|
-
this.
|
|
53718
|
+
if (this.y != null) {
|
|
53719
|
+
this.y.at = this.ac;
|
|
53660
53720
|
}
|
|
53661
53721
|
break;
|
|
53662
53722
|
}
|
|
53663
53723
|
};
|
|
53664
|
-
DateEditorView.prototype.
|
|
53665
|
-
this.
|
|
53724
|
+
DateEditorView.prototype.ak = function () {
|
|
53725
|
+
this.y.bo = this.ae;
|
|
53666
53726
|
};
|
|
53667
|
-
DateEditorView.prototype.
|
|
53668
|
-
this.
|
|
53669
|
-
if (this.
|
|
53727
|
+
DateEditorView.prototype.w = function () {
|
|
53728
|
+
this.ab = true;
|
|
53729
|
+
if (this.y != null) {
|
|
53670
53730
|
if (this.value == null) {
|
|
53671
|
-
this.
|
|
53731
|
+
this.y.value = igniteuiWebcomponentsCore.dateMinValue();
|
|
53672
53732
|
}
|
|
53673
53733
|
else {
|
|
53674
|
-
this.
|
|
53734
|
+
this.y.value = this.value;
|
|
53675
53735
|
}
|
|
53676
53736
|
if (this.focusOnValueChanged) {
|
|
53677
|
-
this.
|
|
53737
|
+
this.s();
|
|
53678
53738
|
}
|
|
53679
53739
|
}
|
|
53680
|
-
this.
|
|
53740
|
+
this.ab = false;
|
|
53681
53741
|
};
|
|
53682
|
-
DateEditorView.prototype.
|
|
53683
|
-
if (this.
|
|
53684
|
-
this.
|
|
53742
|
+
DateEditorView.prototype.r = function () {
|
|
53743
|
+
if (this.y != null) {
|
|
53744
|
+
this.y.aq = !this.isEnabled;
|
|
53745
|
+
}
|
|
53746
|
+
};
|
|
53747
|
+
DateEditorView.prototype.v = function () {
|
|
53748
|
+
_super.prototype.v.call(this);
|
|
53749
|
+
if (this.y != null) {
|
|
53750
|
+
this.y.de = this.textColor;
|
|
53685
53751
|
}
|
|
53686
53752
|
};
|
|
53687
53753
|
DateEditorView.prototype.onDatePickerValueChanged = function (a, b) {
|
|
53688
|
-
this.
|
|
53754
|
+
this.am();
|
|
53689
53755
|
};
|
|
53690
|
-
DateEditorView.prototype.
|
|
53691
|
-
if (this.
|
|
53756
|
+
DateEditorView.prototype.am = function () {
|
|
53757
|
+
if (this.ab) {
|
|
53692
53758
|
return;
|
|
53693
53759
|
}
|
|
53694
|
-
if (+(this.
|
|
53695
|
-
this.
|
|
53760
|
+
if (+(this.y.value) != +(igniteuiWebcomponentsCore.dateMinValue())) {
|
|
53761
|
+
this.q(this.y.value, false);
|
|
53696
53762
|
}
|
|
53697
|
-
else if (+(this.
|
|
53698
|
-
this.
|
|
53763
|
+
else if (+(this.y.value) == +(igniteuiWebcomponentsCore.dateMinValue())) {
|
|
53764
|
+
this.q(null, false);
|
|
53699
53765
|
}
|
|
53700
53766
|
else {
|
|
53701
|
-
this.
|
|
53767
|
+
this.q(this.value, false);
|
|
53702
53768
|
}
|
|
53703
53769
|
};
|
|
53704
53770
|
DateEditorView.prototype.onInputChanging = function (a, b) {
|
|
53705
|
-
this.
|
|
53771
|
+
this.p();
|
|
53706
53772
|
};
|
|
53707
53773
|
DateEditorView.prototype.onDatePickerLostFocus = function (a, b) {
|
|
53708
|
-
this.
|
|
53774
|
+
this.o();
|
|
53709
53775
|
};
|
|
53710
53776
|
DateEditorView.prototype.onDatePickerGotFocus = function (a, b) {
|
|
53711
|
-
this.
|
|
53777
|
+
this.n();
|
|
53712
53778
|
};
|
|
53713
53779
|
DateEditorView.prototype.getEditorValue = function () {
|
|
53714
|
-
if (this.
|
|
53715
|
-
return this.
|
|
53780
|
+
if (this.y != null) {
|
|
53781
|
+
return this.y.value;
|
|
53716
53782
|
}
|
|
53717
53783
|
return null;
|
|
53718
53784
|
};
|
|
53719
53785
|
DateEditorView.prototype.setEditorValue = function (a) {
|
|
53720
|
-
if (this.
|
|
53721
|
-
this.
|
|
53786
|
+
if (this.y != null) {
|
|
53787
|
+
this.y.value = a != null ? a : igniteuiWebcomponentsCore.dateMinValue();
|
|
53722
53788
|
}
|
|
53723
53789
|
};
|
|
53724
53790
|
DateEditorView.$t = igniteuiWebcomponentsCore.markType(DateEditorView, 'DateEditorView', BaseEditorView.$);
|
|
@@ -53738,130 +53804,130 @@
|
|
|
53738
53804
|
tslib_1.__extends(ComboEditorView, _super);
|
|
53739
53805
|
function ComboEditorView(a, b, c) {
|
|
53740
53806
|
var _this = _super.call(this, a, c) || this;
|
|
53741
|
-
_this.y = null;
|
|
53742
|
-
_this.x = null;
|
|
53743
|
-
_this.aa = null;
|
|
53744
53807
|
_this.ab = null;
|
|
53808
|
+
_this.aa = null;
|
|
53745
53809
|
_this.ad = null;
|
|
53746
|
-
_this.
|
|
53747
|
-
_this.
|
|
53810
|
+
_this.ae = null;
|
|
53811
|
+
_this.ag = null;
|
|
53812
|
+
_this.y = null;
|
|
53813
|
+
_this.ac = false;
|
|
53748
53814
|
var d = a.createElement("div");
|
|
53749
53815
|
d.setRawStyleProperty("margin-top", "-10px");
|
|
53750
53816
|
d.setRawStyleProperty("height", "38px");
|
|
53751
53817
|
d.setRawStyleProperty("width", "100%");
|
|
53752
53818
|
_this.container = d;
|
|
53753
53819
|
a.getPortal(d, "MultiColumnComboBox", function (e) {
|
|
53754
|
-
_this.
|
|
53755
|
-
_this.
|
|
53756
|
-
_this.
|
|
53757
|
-
_this.
|
|
53758
|
-
_this.
|
|
53759
|
-
_this.
|
|
53760
|
-
_this.
|
|
53761
|
-
_this.
|
|
53762
|
-
_this.
|
|
53763
|
-
_this.
|
|
53764
|
-
if (_this.
|
|
53765
|
-
_this.
|
|
53820
|
+
_this.aa = e.componentRef;
|
|
53821
|
+
_this.ad = _this.aa.i;
|
|
53822
|
+
_this.aa.height = "100%";
|
|
53823
|
+
_this.aa.density = 3;
|
|
53824
|
+
_this.aa.baseTheme = b;
|
|
53825
|
+
_this.aa.labelVisible = false;
|
|
53826
|
+
_this.aa.columnHeadersVisible = false;
|
|
53827
|
+
_this.aa.rowSeparatorsVisible = false;
|
|
53828
|
+
_this.ao();
|
|
53829
|
+
_this.w();
|
|
53830
|
+
if (_this.ab != null) {
|
|
53831
|
+
_this.aa.textStyle = _this.ab.fontString;
|
|
53766
53832
|
}
|
|
53767
53833
|
_this.attachEvents();
|
|
53768
53834
|
}, false);
|
|
53769
53835
|
return _this;
|
|
53770
53836
|
}
|
|
53771
|
-
Object.defineProperty(ComboEditorView.prototype, "
|
|
53837
|
+
Object.defineProperty(ComboEditorView.prototype, "af", {
|
|
53772
53838
|
get: function () {
|
|
53773
|
-
return this.
|
|
53839
|
+
return this.ae;
|
|
53774
53840
|
},
|
|
53775
53841
|
set: function (a) {
|
|
53776
|
-
var b = this.
|
|
53777
|
-
this.
|
|
53778
|
-
if (b != this.
|
|
53779
|
-
this.
|
|
53842
|
+
var b = this.ae;
|
|
53843
|
+
this.ae = a;
|
|
53844
|
+
if (b != this.ae) {
|
|
53845
|
+
this.u("DataSource", b, this.ae);
|
|
53780
53846
|
}
|
|
53781
53847
|
},
|
|
53782
53848
|
enumerable: true,
|
|
53783
53849
|
configurable: true
|
|
53784
53850
|
});
|
|
53785
|
-
Object.defineProperty(ComboEditorView.prototype, "
|
|
53851
|
+
Object.defineProperty(ComboEditorView.prototype, "ai", {
|
|
53786
53852
|
get: function () {
|
|
53787
|
-
return this.
|
|
53853
|
+
return this.ag;
|
|
53788
53854
|
},
|
|
53789
53855
|
set: function (a) {
|
|
53790
|
-
var b = this.
|
|
53791
|
-
this.
|
|
53792
|
-
if (b != this.
|
|
53793
|
-
this.
|
|
53856
|
+
var b = this.ag;
|
|
53857
|
+
this.ag = a;
|
|
53858
|
+
if (b != this.ag) {
|
|
53859
|
+
this.u("TextField", b, this.ag);
|
|
53794
53860
|
}
|
|
53795
53861
|
},
|
|
53796
53862
|
enumerable: true,
|
|
53797
53863
|
configurable: true
|
|
53798
53864
|
});
|
|
53799
|
-
Object.defineProperty(ComboEditorView.prototype, "
|
|
53865
|
+
Object.defineProperty(ComboEditorView.prototype, "z", {
|
|
53800
53866
|
get: function () {
|
|
53801
|
-
return this.
|
|
53867
|
+
return this.y;
|
|
53802
53868
|
},
|
|
53803
53869
|
set: function (a) {
|
|
53804
|
-
var b = this.
|
|
53805
|
-
this.
|
|
53806
|
-
if (b != this.
|
|
53807
|
-
this.
|
|
53870
|
+
var b = this.y;
|
|
53871
|
+
this.y = a;
|
|
53872
|
+
if (b != this.y) {
|
|
53873
|
+
this.u("ValueField", b, this.y);
|
|
53808
53874
|
}
|
|
53809
53875
|
},
|
|
53810
53876
|
enumerable: true,
|
|
53811
53877
|
configurable: true
|
|
53812
53878
|
});
|
|
53813
53879
|
ComboEditorView.prototype.setFont = function (a) {
|
|
53814
|
-
this.
|
|
53815
|
-
if (this.
|
|
53816
|
-
this.
|
|
53880
|
+
this.ab = a;
|
|
53881
|
+
if (this.aa != null && this.ab != null) {
|
|
53882
|
+
this.aa.textStyle = this.ab.fontString;
|
|
53817
53883
|
}
|
|
53818
53884
|
};
|
|
53819
53885
|
ComboEditorView.prototype.attachEvents = function () {
|
|
53820
|
-
if (this.
|
|
53821
|
-
var a = this.
|
|
53886
|
+
if (this.aa != null) {
|
|
53887
|
+
var a = this.aa;
|
|
53822
53888
|
a.selectedValueChanged = igniteuiWebcomponentsCore.delegateCombine(a.selectedValueChanged, igniteuiWebcomponentsCore.runOn(this, this.onComboValueChanged));
|
|
53823
|
-
var b = this.
|
|
53889
|
+
var b = this.aa;
|
|
53824
53890
|
b.textValueChanged = igniteuiWebcomponentsCore.delegateCombine(b.textValueChanged, igniteuiWebcomponentsCore.runOn(this, this.onComboTextChanged));
|
|
53825
|
-
var c = this.
|
|
53891
|
+
var c = this.aa;
|
|
53826
53892
|
c.gotFocus = igniteuiWebcomponentsCore.delegateCombine(c.gotFocus, igniteuiWebcomponentsCore.runOn(this, this.onComboGotFocus));
|
|
53827
|
-
var d = this.
|
|
53893
|
+
var d = this.aa;
|
|
53828
53894
|
d.lostFocus = igniteuiWebcomponentsCore.delegateCombine(d.lostFocus, igniteuiWebcomponentsCore.runOn(this, this.onComboLostFocus));
|
|
53829
|
-
var e = this.
|
|
53895
|
+
var e = this.aa;
|
|
53830
53896
|
e.keyDown = igniteuiWebcomponentsCore.delegateCombine(e.keyDown, igniteuiWebcomponentsCore.runOn(this, this.onInputKeyDown));
|
|
53831
|
-
var f = this.
|
|
53897
|
+
var f = this.aa;
|
|
53832
53898
|
f.changing = igniteuiWebcomponentsCore.delegateCombine(f.changing, igniteuiWebcomponentsCore.runOn(this, this.onInputChanging));
|
|
53833
53899
|
}
|
|
53834
53900
|
};
|
|
53835
53901
|
ComboEditorView.prototype.detachEvents = function () {
|
|
53836
|
-
if (this.
|
|
53837
|
-
var a = this.
|
|
53902
|
+
if (this.aa != null) {
|
|
53903
|
+
var a = this.aa;
|
|
53838
53904
|
a.selectedValueChanged = igniteuiWebcomponentsCore.delegateRemove(a.selectedValueChanged, igniteuiWebcomponentsCore.runOn(this, this.onComboValueChanged));
|
|
53839
|
-
var b = this.
|
|
53905
|
+
var b = this.aa;
|
|
53840
53906
|
b.textValueChanged = igniteuiWebcomponentsCore.delegateRemove(b.textValueChanged, igniteuiWebcomponentsCore.runOn(this, this.onComboTextChanged));
|
|
53841
|
-
var c = this.
|
|
53907
|
+
var c = this.aa;
|
|
53842
53908
|
c.gotFocus = igniteuiWebcomponentsCore.delegateRemove(c.gotFocus, igniteuiWebcomponentsCore.runOn(this, this.onComboGotFocus));
|
|
53843
|
-
var d = this.
|
|
53909
|
+
var d = this.aa;
|
|
53844
53910
|
d.lostFocus = igniteuiWebcomponentsCore.delegateRemove(d.lostFocus, igniteuiWebcomponentsCore.runOn(this, this.onComboLostFocus));
|
|
53845
|
-
var e = this.
|
|
53911
|
+
var e = this.aa;
|
|
53846
53912
|
e.keyDown = igniteuiWebcomponentsCore.delegateRemove(e.keyDown, igniteuiWebcomponentsCore.runOn(this, this.onInputKeyDown));
|
|
53847
|
-
var f = this.
|
|
53913
|
+
var f = this.aa;
|
|
53848
53914
|
f.changing = igniteuiWebcomponentsCore.delegateRemove(f.changing, igniteuiWebcomponentsCore.runOn(this, this.onInputChanging));
|
|
53849
53915
|
}
|
|
53850
53916
|
};
|
|
53851
53917
|
ComboEditorView.prototype.onTargetChanged = function () {
|
|
53852
|
-
if (this.
|
|
53853
|
-
this.
|
|
53854
|
-
if (this.
|
|
53855
|
-
this.
|
|
53918
|
+
if (this.aa != null) {
|
|
53919
|
+
this.ac = true;
|
|
53920
|
+
if (this.aa.value == null && this.aa.text != "") {
|
|
53921
|
+
this.aa.text = "";
|
|
53856
53922
|
}
|
|
53857
53923
|
this.focus();
|
|
53858
|
-
this.
|
|
53924
|
+
this.ac = false;
|
|
53859
53925
|
}
|
|
53860
53926
|
};
|
|
53861
53927
|
ComboEditorView.prototype.onEditStarted = function () {
|
|
53862
53928
|
_super.prototype.onEditStarted.call(this);
|
|
53863
53929
|
var a = this.container.getNativeElement();
|
|
53864
|
-
this.
|
|
53930
|
+
this.aa.defaultColumnWidth = (a.clientWidth - 2).toString();
|
|
53865
53931
|
if (!this.a.isEditRefocusDesired) {
|
|
53866
53932
|
this.focus();
|
|
53867
53933
|
}
|
|
@@ -53875,63 +53941,63 @@
|
|
|
53875
53941
|
}
|
|
53876
53942
|
}
|
|
53877
53943
|
};
|
|
53878
|
-
ComboEditorView.prototype.
|
|
53879
|
-
if (this.
|
|
53880
|
-
this.
|
|
53881
|
-
this.
|
|
53944
|
+
ComboEditorView.prototype.s = function () {
|
|
53945
|
+
if (this.aa != null) {
|
|
53946
|
+
this.ad.focus(true);
|
|
53947
|
+
this.aa.select();
|
|
53882
53948
|
}
|
|
53883
53949
|
};
|
|
53884
|
-
ComboEditorView.prototype.
|
|
53885
|
-
if (this.
|
|
53886
|
-
this.
|
|
53950
|
+
ComboEditorView.prototype.al = function () {
|
|
53951
|
+
if (this.aa != null) {
|
|
53952
|
+
this.aa.closeUp();
|
|
53887
53953
|
}
|
|
53888
53954
|
};
|
|
53889
|
-
ComboEditorView.prototype.
|
|
53890
|
-
_super.prototype.
|
|
53955
|
+
ComboEditorView.prototype.u = function (a, b, c) {
|
|
53956
|
+
_super.prototype.u.call(this, a, b, c);
|
|
53891
53957
|
switch (a) {
|
|
53892
53958
|
case "DataSource":
|
|
53893
53959
|
case "TextField":
|
|
53894
53960
|
case "ValueField":
|
|
53895
|
-
this.
|
|
53961
|
+
this.ao();
|
|
53896
53962
|
break;
|
|
53897
53963
|
}
|
|
53898
53964
|
};
|
|
53899
|
-
ComboEditorView.prototype.
|
|
53900
|
-
this.
|
|
53901
|
-
if (this.
|
|
53965
|
+
ComboEditorView.prototype.w = function () {
|
|
53966
|
+
this.ac = true;
|
|
53967
|
+
if (this.aa != null) {
|
|
53902
53968
|
if (this.value == null) {
|
|
53903
|
-
this.
|
|
53969
|
+
this.aa.text = " ";
|
|
53904
53970
|
}
|
|
53905
|
-
this.
|
|
53906
|
-
this.
|
|
53971
|
+
this.aa.value = this.value;
|
|
53972
|
+
this.s();
|
|
53907
53973
|
}
|
|
53908
|
-
this.
|
|
53974
|
+
this.ac = false;
|
|
53909
53975
|
};
|
|
53910
|
-
ComboEditorView.prototype.
|
|
53911
|
-
if (this.
|
|
53976
|
+
ComboEditorView.prototype.ao = function () {
|
|
53977
|
+
if (this.aa != null) {
|
|
53912
53978
|
this.detachEvents();
|
|
53913
|
-
this.
|
|
53914
|
-
this.
|
|
53915
|
-
this.
|
|
53916
|
-
if (this.
|
|
53917
|
-
this.
|
|
53979
|
+
this.aa.dataSource = this.af;
|
|
53980
|
+
this.aa.textField = this.ai;
|
|
53981
|
+
this.aa.valueField = this.z;
|
|
53982
|
+
if (this.ai != null) {
|
|
53983
|
+
this.aa.fields = [this.ai];
|
|
53918
53984
|
}
|
|
53919
|
-
else if (this.
|
|
53920
|
-
this.
|
|
53985
|
+
else if (this.z != null && this.z.length > 0) {
|
|
53986
|
+
this.aa.fields = [this.z[0]];
|
|
53921
53987
|
}
|
|
53922
53988
|
else {
|
|
53923
|
-
var a = igniteuiWebcomponentsCore.typeCast(igniteuiWebcomponentsCore.IDataSource_$type, this.
|
|
53989
|
+
var a = igniteuiWebcomponentsCore.typeCast(igniteuiWebcomponentsCore.IDataSource_$type, this.af);
|
|
53924
53990
|
if (a != null && a.actualSchema != null) {
|
|
53925
|
-
this.
|
|
53991
|
+
this.aa.fields = [a.actualSchema.propertyNames[0]];
|
|
53926
53992
|
}
|
|
53927
53993
|
else {
|
|
53928
|
-
var b = (Array.isArray(this.
|
|
53994
|
+
var b = (Array.isArray(this.af));
|
|
53929
53995
|
if (b) {
|
|
53930
|
-
var c = (this.
|
|
53996
|
+
var c = (this.af.length);
|
|
53931
53997
|
if (c > 0) {
|
|
53932
|
-
var d = (Object.keys(this.
|
|
53998
|
+
var d = (Object.keys(this.af[0]));
|
|
53933
53999
|
if (d.length > 0) {
|
|
53934
|
-
this.
|
|
54000
|
+
this.aa.fields = [d[0]];
|
|
53935
54001
|
}
|
|
53936
54002
|
}
|
|
53937
54003
|
}
|
|
@@ -53940,34 +54006,40 @@
|
|
|
53940
54006
|
this.attachEvents();
|
|
53941
54007
|
}
|
|
53942
54008
|
};
|
|
54009
|
+
ComboEditorView.prototype.v = function () {
|
|
54010
|
+
_super.prototype.v.call(this);
|
|
54011
|
+
if (this.aa != null) {
|
|
54012
|
+
this.aa.textColor = this.textColor._fill;
|
|
54013
|
+
}
|
|
54014
|
+
};
|
|
53943
54015
|
ComboEditorView.prototype.onComboValueChanged = function (a, b) {
|
|
53944
|
-
this.
|
|
54016
|
+
this.as();
|
|
53945
54017
|
};
|
|
53946
54018
|
ComboEditorView.prototype.onComboTextChanged = function (a, b) {
|
|
53947
|
-
this.
|
|
54019
|
+
this.as();
|
|
53948
54020
|
};
|
|
53949
|
-
ComboEditorView.prototype.
|
|
53950
|
-
if (this.
|
|
54021
|
+
ComboEditorView.prototype.as = function () {
|
|
54022
|
+
if (this.ac) {
|
|
53951
54023
|
return;
|
|
53952
54024
|
}
|
|
53953
|
-
if (this.
|
|
53954
|
-
this.
|
|
54025
|
+
if (this.aa.value != null) {
|
|
54026
|
+
this.q(this.aa.value, false);
|
|
53955
54027
|
}
|
|
53956
|
-
else if (this.
|
|
53957
|
-
this.
|
|
54028
|
+
else if (this.aa.value == null && igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(this.aa.text)) {
|
|
54029
|
+
this.q(null, false);
|
|
53958
54030
|
}
|
|
53959
54031
|
else {
|
|
53960
|
-
this.
|
|
54032
|
+
this.q(this.value, false);
|
|
53961
54033
|
}
|
|
53962
54034
|
};
|
|
53963
54035
|
ComboEditorView.prototype.onInputChanging = function (a, b) {
|
|
53964
|
-
this.
|
|
54036
|
+
this.p();
|
|
53965
54037
|
};
|
|
53966
54038
|
ComboEditorView.prototype.onComboLostFocus = function (a) {
|
|
53967
|
-
this.
|
|
54039
|
+
this.o();
|
|
53968
54040
|
};
|
|
53969
54041
|
ComboEditorView.prototype.onComboGotFocus = function (a) {
|
|
53970
|
-
this.
|
|
54042
|
+
this.n();
|
|
53971
54043
|
};
|
|
53972
54044
|
ComboEditorView.$t = igniteuiWebcomponentsCore.markType(ComboEditorView, 'ComboEditorView', BaseEditorView.$);
|
|
53973
54045
|
return ComboEditorView;
|
|
@@ -54233,18 +54305,18 @@
|
|
|
54233
54305
|
}
|
|
54234
54306
|
this.ct = new ComboEditorView(this.ab, this.f.getTheme(), this.b);
|
|
54235
54307
|
this.ct.setFont(this.cz);
|
|
54236
|
-
this.ct.
|
|
54237
|
-
this.ct.
|
|
54238
|
-
this.ct.
|
|
54308
|
+
this.ct.af = this.dh;
|
|
54309
|
+
this.ct.ai = this.dm;
|
|
54310
|
+
this.ct.z = this.ci;
|
|
54239
54311
|
return this.ct;
|
|
54240
54312
|
};
|
|
54241
54313
|
EditorCell.prototype.ea = function (a, b) {
|
|
54242
54314
|
if (b.g != b.d || b.h != b.e) {
|
|
54243
54315
|
if (this.ct != null) {
|
|
54244
|
-
this.ct.
|
|
54316
|
+
this.ct.al();
|
|
54245
54317
|
}
|
|
54246
54318
|
if (this.cu != null) {
|
|
54247
|
-
this.cu.
|
|
54319
|
+
this.cu.ag();
|
|
54248
54320
|
}
|
|
54249
54321
|
this.d0();
|
|
54250
54322
|
}
|
|
@@ -54317,9 +54389,9 @@
|
|
|
54317
54389
|
};
|
|
54318
54390
|
EditorCell.prototype.d2 = function () {
|
|
54319
54391
|
if (this.ct != null) {
|
|
54320
|
-
this.ct.
|
|
54321
|
-
this.ct.
|
|
54322
|
-
this.ct.
|
|
54392
|
+
this.ct.af = this.dh;
|
|
54393
|
+
this.ct.ai = this.dm;
|
|
54394
|
+
this.ct.z = this.ci;
|
|
54323
54395
|
}
|
|
54324
54396
|
};
|
|
54325
54397
|
EditorCell.prototype.d8 = function () {
|
|
@@ -54354,12 +54426,12 @@
|
|
|
54354
54426
|
};
|
|
54355
54427
|
EditorCell.prototype.d4 = function () {
|
|
54356
54428
|
if (this.cn != null && this.cu == this.cn) {
|
|
54357
|
-
this.cu.
|
|
54429
|
+
this.cu.ae = this.dr;
|
|
54358
54430
|
}
|
|
54359
54431
|
};
|
|
54360
54432
|
EditorCell.prototype.ec = function () {
|
|
54361
54433
|
if (this.cn != null && this.cu == this.cn) {
|
|
54362
|
-
this.cu.
|
|
54434
|
+
this.cu.ac = this.db;
|
|
54363
54435
|
}
|
|
54364
54436
|
};
|
|
54365
54437
|
EditorCell.prototype.eh = function (a, b, c, d, e) {
|
|
@@ -54868,24 +54940,28 @@
|
|
|
54868
54940
|
_this.l = 240;
|
|
54869
54941
|
return _this;
|
|
54870
54942
|
}
|
|
54871
|
-
ComparisonOperatorSelectorView.prototype.
|
|
54943
|
+
ComparisonOperatorSelectorView.prototype.u = function (a) {
|
|
54872
54944
|
var _this = this;
|
|
54873
54945
|
if (a == null) {
|
|
54874
54946
|
var b = this.a;
|
|
54875
|
-
b.opening = igniteuiWebcomponentsCore.delegateRemove(b.opening, igniteuiWebcomponentsCore.runOn(this, this.
|
|
54947
|
+
b.opening = igniteuiWebcomponentsCore.delegateRemove(b.opening, igniteuiWebcomponentsCore.runOn(this, this.s));
|
|
54876
54948
|
var c = this.a;
|
|
54877
|
-
c.
|
|
54949
|
+
c.opened = igniteuiWebcomponentsCore.delegateRemove(c.opened, igniteuiWebcomponentsCore.runOn(this, this.r));
|
|
54950
|
+
var d = this.a;
|
|
54951
|
+
d.closing = igniteuiWebcomponentsCore.delegateRemove(d.closing, igniteuiWebcomponentsCore.runOn(this, this.n));
|
|
54878
54952
|
return;
|
|
54879
54953
|
}
|
|
54880
|
-
var d = this.a;
|
|
54881
|
-
d.opening = igniteuiWebcomponentsCore.delegateCombine(d.opening, igniteuiWebcomponentsCore.runOn(this, this.r));
|
|
54882
54954
|
var e = this.a;
|
|
54883
|
-
e.
|
|
54955
|
+
e.opening = igniteuiWebcomponentsCore.delegateCombine(e.opening, igniteuiWebcomponentsCore.runOn(this, this.s));
|
|
54956
|
+
var f = this.a;
|
|
54957
|
+
f.opened = igniteuiWebcomponentsCore.delegateCombine(f.opened, igniteuiWebcomponentsCore.runOn(this, this.r));
|
|
54958
|
+
var g = this.a;
|
|
54959
|
+
g.closing = igniteuiWebcomponentsCore.delegateCombine(g.closing, igniteuiWebcomponentsCore.runOn(this, this.n));
|
|
54884
54960
|
this.g = a;
|
|
54885
54961
|
this.d = new igniteuiWebcomponentsCore.Popup();
|
|
54886
54962
|
this.d.provideRenderer(this.g);
|
|
54887
54963
|
this.i = this.g.createElement("div");
|
|
54888
|
-
this.i.
|
|
54964
|
+
this.i.addClass("ig-comparison-operator-selector");
|
|
54889
54965
|
this.i.setStyleProperty("width", this.l + "px");
|
|
54890
54966
|
this.d.appendPopupContent(this.i);
|
|
54891
54967
|
this.h = this.g.createElement("div");
|
|
@@ -54895,15 +54971,15 @@
|
|
|
54895
54971
|
this.h.setStyleProperty("cursor", "pointer");
|
|
54896
54972
|
this.g.append(this.h);
|
|
54897
54973
|
this.h.listen("mousedown", igniteuiWebcomponentsCore.runOn(this, this.q));
|
|
54898
|
-
this.g.getPortal(this.i, "DataGrid", function (
|
|
54899
|
-
_this.m =
|
|
54974
|
+
this.g.getPortal(this.i, "DataGrid", function (h) {
|
|
54975
|
+
_this.m = h.componentRef;
|
|
54900
54976
|
_this.m.height = '100%';
|
|
54901
54977
|
_this.m.scrollbarStyle = 'Default';
|
|
54902
54978
|
_this.b = (_this.m.i);
|
|
54903
|
-
_this.a.
|
|
54979
|
+
_this.a.eb(_this.d, _this.c, _this.b);
|
|
54904
54980
|
}, false);
|
|
54905
54981
|
};
|
|
54906
|
-
ComparisonOperatorSelectorView.prototype.
|
|
54982
|
+
ComparisonOperatorSelectorView.prototype.w = function () {
|
|
54907
54983
|
var rect_ = this.h.getNativeElement().getBoundingClientRect();
|
|
54908
54984
|
var a = new igniteuiWebcomponentsCore.Rect(4);
|
|
54909
54985
|
a.left = (rect_.left + window.pageXOffset);
|
|
@@ -54930,7 +55006,7 @@
|
|
|
54930
55006
|
}
|
|
54931
55007
|
return a;
|
|
54932
55008
|
};
|
|
54933
|
-
ComparisonOperatorSelectorView.prototype.
|
|
55009
|
+
ComparisonOperatorSelectorView.prototype.t = function (a, b) {
|
|
54934
55010
|
var c = a;
|
|
54935
55011
|
var d = null;
|
|
54936
55012
|
if (c.element.getChildCount() == 0) {
|
|
@@ -54956,16 +55032,22 @@
|
|
|
54956
55032
|
}
|
|
54957
55033
|
}
|
|
54958
55034
|
d.svgPath = b.Icon;
|
|
55035
|
+
d.fill = this.a.eq;
|
|
54959
55036
|
};
|
|
54960
55037
|
ComparisonOperatorSelectorView.prototype.q = function (a) {
|
|
54961
|
-
this.a.
|
|
55038
|
+
this.a.em();
|
|
54962
55039
|
};
|
|
54963
|
-
ComparisonOperatorSelectorView.prototype.
|
|
54964
|
-
this.i.setStyleProperty("height", igniteuiWebcomponentsCore.stringFormat("{0}px", this.a.
|
|
55040
|
+
ComparisonOperatorSelectorView.prototype.s = function (a, b) {
|
|
55041
|
+
this.i.setStyleProperty("height", igniteuiWebcomponentsCore.stringFormat("{0}px", this.a.y()));
|
|
54965
55042
|
this.d.ar();
|
|
54966
55043
|
document.addEventListener("keydown", igniteuiWebcomponentsCore.runOn(this, this.onDocumentKeyDown), false);
|
|
54967
55044
|
document.addEventListener("mousedown", igniteuiWebcomponentsCore.runOn(this, this.onDocumentMouseDown), false);
|
|
54968
55045
|
};
|
|
55046
|
+
ComparisonOperatorSelectorView.prototype.r = function (a, b) {
|
|
55047
|
+
if ((this.m.notifyDOMInsertion !== undefined)) {
|
|
55048
|
+
this.m.notifyDOMInsertion();
|
|
55049
|
+
}
|
|
55050
|
+
};
|
|
54969
55051
|
ComparisonOperatorSelectorView.prototype.n = function (a, b) {
|
|
54970
55052
|
document.removeEventListener("keydown", this.onDocumentKeyDown, false);
|
|
54971
55053
|
document.removeEventListener("mousedown", this.onDocumentMouseDown, false);
|
|
@@ -54973,7 +55055,7 @@
|
|
|
54973
55055
|
ComparisonOperatorSelectorView.prototype.onDocumentKeyDown = function (a) {
|
|
54974
55056
|
var b = a;
|
|
54975
55057
|
if (igniteuiWebcomponentsCore.BaseDOMEventProxy.c0(b) == 8) {
|
|
54976
|
-
this.a.
|
|
55058
|
+
this.a.d8();
|
|
54977
55059
|
}
|
|
54978
55060
|
};
|
|
54979
55061
|
ComparisonOperatorSelectorView.prototype.onDocumentMouseDown = function (a) {
|
|
@@ -54982,10 +55064,10 @@
|
|
|
54982
55064
|
var d = this.g.rootWrapper.getNativeElement();
|
|
54983
55065
|
var e = this.i.getNativeElement();
|
|
54984
55066
|
if (!d.contains(c) && !e.contains(c)) {
|
|
54985
|
-
this.a.
|
|
55067
|
+
this.a.d8();
|
|
54986
55068
|
}
|
|
54987
55069
|
};
|
|
54988
|
-
ComparisonOperatorSelectorView.prototype.
|
|
55070
|
+
ComparisonOperatorSelectorView.prototype.v = function (a) {
|
|
54989
55071
|
this.m.dataSource = a;
|
|
54990
55072
|
};
|
|
54991
55073
|
ComparisonOperatorSelectorView.$t = igniteuiWebcomponentsCore.markType(ComparisonOperatorSelectorView, 'ComparisonOperatorSelectorView');
|
|
@@ -54999,52 +55081,59 @@
|
|
|
54999
55081
|
function ComparisonOperatorSelector() {
|
|
55000
55082
|
var _this = _super.call(this) || this;
|
|
55001
55083
|
_this.propertyChanged = null;
|
|
55002
|
-
_this.
|
|
55084
|
+
_this.r = null;
|
|
55003
55085
|
_this.e = null;
|
|
55086
|
+
_this.q = null;
|
|
55004
55087
|
_this.p = null;
|
|
55005
55088
|
_this.o = null;
|
|
55006
|
-
_this.n = null;
|
|
55007
55089
|
_this.f = null;
|
|
55008
|
-
_this.
|
|
55090
|
+
_this.n = null;
|
|
55091
|
+
_this.v = null;
|
|
55009
55092
|
_this.u = null;
|
|
55010
|
-
_this.t = null;
|
|
55011
55093
|
_this.g = null;
|
|
55012
|
-
_this.
|
|
55094
|
+
_this.t = false;
|
|
55013
55095
|
_this.a = 0;
|
|
55014
|
-
_this.
|
|
55015
|
-
_this.
|
|
55096
|
+
_this.ae = null;
|
|
55097
|
+
_this.x = 0;
|
|
55016
55098
|
_this.c = 0;
|
|
55017
|
-
_this.
|
|
55099
|
+
_this.w = 250;
|
|
55100
|
+
_this.eo = null;
|
|
55101
|
+
_this.en = null;
|
|
55018
55102
|
_this.valueChanged = null;
|
|
55019
55103
|
_this.opening = null;
|
|
55104
|
+
_this.opened = null;
|
|
55020
55105
|
_this.closing = null;
|
|
55021
55106
|
_this.e = new ComparisonOperatorSelectorView(_this);
|
|
55022
|
-
_this.
|
|
55107
|
+
_this.u = new igniteuiWebcomponentsCore.List$1(OperatorModel.$, 0);
|
|
55023
55108
|
return _this;
|
|
55024
55109
|
}
|
|
55025
|
-
ComparisonOperatorSelector.prototype.
|
|
55026
|
-
this.
|
|
55110
|
+
ComparisonOperatorSelector.prototype.eg = function (a, b, c) {
|
|
55111
|
+
this.ei(a, b, c);
|
|
55027
55112
|
if (this.propertyChanged != null) {
|
|
55028
55113
|
this.propertyChanged(this, new igniteuiWebcomponentsCore.PropertyChangedEventArgs(a));
|
|
55029
55114
|
}
|
|
55030
55115
|
};
|
|
55031
|
-
ComparisonOperatorSelector.prototype.
|
|
55116
|
+
ComparisonOperatorSelector.prototype.ei = function (a, b, c) {
|
|
55032
55117
|
switch (a) {
|
|
55033
55118
|
case "Value":
|
|
55034
|
-
this.
|
|
55119
|
+
this.eh(igniteuiWebcomponentsCore.EnumUtil.getEnumValue(ColumnComparisonConditionOperatorType_$type, b), igniteuiWebcomponentsCore.EnumUtil.getEnumValue(ColumnComparisonConditionOperatorType_$type, c));
|
|
55035
55120
|
break;
|
|
55036
55121
|
case "DataType":
|
|
55037
|
-
this.
|
|
55122
|
+
this.d4();
|
|
55123
|
+
break;
|
|
55124
|
+
case "TextColor":
|
|
55125
|
+
case "Background":
|
|
55126
|
+
this.ed();
|
|
55038
55127
|
break;
|
|
55039
55128
|
}
|
|
55040
55129
|
};
|
|
55041
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55130
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "s", {
|
|
55042
55131
|
get: function () {
|
|
55043
|
-
if (this.
|
|
55044
|
-
this.
|
|
55045
|
-
this.
|
|
55132
|
+
if (this.r == null) {
|
|
55133
|
+
this.r = new igniteuiWebcomponentsCore.SRProvider(this.e.g);
|
|
55134
|
+
this.r.cb("DataGrid");
|
|
55046
55135
|
}
|
|
55047
|
-
return this.
|
|
55136
|
+
return this.r;
|
|
55048
55137
|
},
|
|
55049
55138
|
enumerable: true,
|
|
55050
55139
|
configurable: true
|
|
@@ -55057,10 +55146,10 @@
|
|
|
55057
55146
|
this.g = a;
|
|
55058
55147
|
if (this.g != null) {
|
|
55059
55148
|
if (this.g.a == 44) {
|
|
55060
|
-
this.
|
|
55061
|
-
this.
|
|
55149
|
+
this.ae = this.g.c;
|
|
55150
|
+
this.x = this.g.b;
|
|
55062
55151
|
}
|
|
55063
|
-
if (!this.
|
|
55152
|
+
if (!this.t) {
|
|
55064
55153
|
this.b = this.g.a;
|
|
55065
55154
|
}
|
|
55066
55155
|
}
|
|
@@ -55076,7 +55165,7 @@
|
|
|
55076
55165
|
var b = this.a;
|
|
55077
55166
|
this.a = a;
|
|
55078
55167
|
if (b != this.a || this.a == 44) {
|
|
55079
|
-
this.
|
|
55168
|
+
this.eg("Value", igniteuiWebcomponentsCore.enumGetBox(ColumnComparisonConditionOperatorType_$type, b), igniteuiWebcomponentsCore.enumGetBox(ColumnComparisonConditionOperatorType_$type, this.a));
|
|
55080
55169
|
}
|
|
55081
55170
|
},
|
|
55082
55171
|
enumerable: true,
|
|
@@ -55090,388 +55179,417 @@
|
|
|
55090
55179
|
var b = this.c;
|
|
55091
55180
|
this.c = a;
|
|
55092
55181
|
if (b != this.c) {
|
|
55093
|
-
this.
|
|
55182
|
+
this.eg("DataType", igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.DataSourceSchemaPropertyType_$type, b), igniteuiWebcomponentsCore.enumGetBox(igniteuiWebcomponentsCore.DataSourceSchemaPropertyType_$type, this.c));
|
|
55094
55183
|
}
|
|
55095
55184
|
},
|
|
55096
55185
|
enumerable: true,
|
|
55097
55186
|
configurable: true
|
|
55098
55187
|
});
|
|
55099
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55188
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "z", {
|
|
55100
55189
|
get: function () {
|
|
55101
|
-
return this.
|
|
55190
|
+
return this.w;
|
|
55102
55191
|
},
|
|
55103
55192
|
set: function (a) {
|
|
55104
|
-
this.
|
|
55193
|
+
this.w = a;
|
|
55105
55194
|
},
|
|
55106
55195
|
enumerable: true,
|
|
55107
55196
|
configurable: true
|
|
55108
55197
|
});
|
|
55109
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55198
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "eq", {
|
|
55199
|
+
get: function () {
|
|
55200
|
+
return this.eo;
|
|
55201
|
+
},
|
|
55202
|
+
set: function (a) {
|
|
55203
|
+
var b = this.eo;
|
|
55204
|
+
this.eo = a;
|
|
55205
|
+
if (b != this.eo) {
|
|
55206
|
+
this.eg("TextColor", b, this.eo);
|
|
55207
|
+
}
|
|
55208
|
+
},
|
|
55209
|
+
enumerable: true,
|
|
55210
|
+
configurable: true
|
|
55211
|
+
});
|
|
55212
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "ep", {
|
|
55213
|
+
get: function () {
|
|
55214
|
+
return this.en;
|
|
55215
|
+
},
|
|
55216
|
+
set: function (a) {
|
|
55217
|
+
var b = this.en;
|
|
55218
|
+
this.en = a;
|
|
55219
|
+
if (b != this.en) {
|
|
55220
|
+
this.eg("Background", b, this.en);
|
|
55221
|
+
}
|
|
55222
|
+
},
|
|
55223
|
+
enumerable: true,
|
|
55224
|
+
configurable: true
|
|
55225
|
+
});
|
|
55226
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "dd", {
|
|
55110
55227
|
get: function () {
|
|
55111
|
-
var a = this.
|
|
55228
|
+
var a = this.s.b1("ComparisonOperator_True");
|
|
55112
55229
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "True";
|
|
55113
55230
|
},
|
|
55114
55231
|
enumerable: true,
|
|
55115
55232
|
configurable: true
|
|
55116
55233
|
});
|
|
55117
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55234
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "ck", {
|
|
55118
55235
|
get: function () {
|
|
55119
|
-
var a = this.
|
|
55236
|
+
var a = this.s.b1("ComparisonOperator_False");
|
|
55120
55237
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "False";
|
|
55121
55238
|
},
|
|
55122
55239
|
enumerable: true,
|
|
55123
55240
|
configurable: true
|
|
55124
55241
|
});
|
|
55125
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55242
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cj", {
|
|
55126
55243
|
get: function () {
|
|
55127
|
-
var a = this.
|
|
55244
|
+
var a = this.s.b1("ComparisonOperator_Equals");
|
|
55128
55245
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Equals";
|
|
55129
55246
|
},
|
|
55130
55247
|
enumerable: true,
|
|
55131
55248
|
configurable: true
|
|
55132
55249
|
});
|
|
55133
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55250
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cz", {
|
|
55134
55251
|
get: function () {
|
|
55135
|
-
var a = this.
|
|
55252
|
+
var a = this.s.b1("ComparisonOperator_NotEquals");
|
|
55136
55253
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Not equals";
|
|
55137
55254
|
},
|
|
55138
55255
|
enumerable: true,
|
|
55139
55256
|
configurable: true
|
|
55140
55257
|
});
|
|
55141
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55258
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cr", {
|
|
55142
55259
|
get: function () {
|
|
55143
|
-
var a = this.
|
|
55260
|
+
var a = this.s.b1("ComparisonOperator_LessThan");
|
|
55144
55261
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Less than";
|
|
55145
55262
|
},
|
|
55146
55263
|
enumerable: true,
|
|
55147
55264
|
configurable: true
|
|
55148
55265
|
});
|
|
55149
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55266
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cs", {
|
|
55150
55267
|
get: function () {
|
|
55151
|
-
var a = this.
|
|
55268
|
+
var a = this.s.b1("ComparisonOperator_LessThanOrEqualTo");
|
|
55152
55269
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Less than or equal to";
|
|
55153
55270
|
},
|
|
55154
55271
|
enumerable: true,
|
|
55155
55272
|
configurable: true
|
|
55156
55273
|
});
|
|
55157
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55274
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cl", {
|
|
55158
55275
|
get: function () {
|
|
55159
|
-
var a = this.
|
|
55276
|
+
var a = this.s.b1("ComparisonOperator_GreaterThan");
|
|
55160
55277
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Greater than";
|
|
55161
55278
|
},
|
|
55162
55279
|
enumerable: true,
|
|
55163
55280
|
configurable: true
|
|
55164
55281
|
});
|
|
55165
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55282
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cm", {
|
|
55166
55283
|
get: function () {
|
|
55167
|
-
var a = this.
|
|
55284
|
+
var a = this.s.b1("ComparisonOperator_GreaterThanOrEqualTo");
|
|
55168
55285
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Greater than or equal to";
|
|
55169
55286
|
},
|
|
55170
55287
|
enumerable: true,
|
|
55171
55288
|
configurable: true
|
|
55172
55289
|
});
|
|
55173
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55290
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "db", {
|
|
55174
55291
|
get: function () {
|
|
55175
|
-
var a = this.
|
|
55292
|
+
var a = this.s.b1("ComparisonOperator_Top");
|
|
55176
55293
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Top";
|
|
55177
55294
|
},
|
|
55178
55295
|
enumerable: true,
|
|
55179
55296
|
configurable: true
|
|
55180
55297
|
});
|
|
55181
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55298
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cb", {
|
|
55182
55299
|
get: function () {
|
|
55183
|
-
var a = this.
|
|
55300
|
+
var a = this.s.b1("ComparisonOperator_Bottom");
|
|
55184
55301
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Bottom";
|
|
55185
55302
|
},
|
|
55186
55303
|
enumerable: true,
|
|
55187
55304
|
configurable: true
|
|
55188
55305
|
});
|
|
55189
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55306
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "dc", {
|
|
55190
55307
|
get: function () {
|
|
55191
|
-
var a = this.
|
|
55308
|
+
var a = this.s.b1("ComparisonOperator_TopPercentile");
|
|
55192
55309
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Top percentile";
|
|
55193
55310
|
},
|
|
55194
55311
|
enumerable: true,
|
|
55195
55312
|
configurable: true
|
|
55196
55313
|
});
|
|
55197
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55314
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cc", {
|
|
55198
55315
|
get: function () {
|
|
55199
|
-
var a = this.
|
|
55316
|
+
var a = this.s.b1("ComparisonOperator_BottomPercentile");
|
|
55200
55317
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Bottom percentile";
|
|
55201
55318
|
},
|
|
55202
55319
|
enumerable: true,
|
|
55203
55320
|
configurable: true
|
|
55204
55321
|
});
|
|
55205
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55322
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c9", {
|
|
55206
55323
|
get: function () {
|
|
55207
|
-
var a = this.
|
|
55324
|
+
var a = this.s.b1("ComparisonOperator_Today");
|
|
55208
55325
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Today";
|
|
55209
55326
|
},
|
|
55210
55327
|
enumerable: true,
|
|
55211
55328
|
configurable: true
|
|
55212
55329
|
});
|
|
55213
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55330
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "da", {
|
|
55214
55331
|
get: function () {
|
|
55215
|
-
var a = this.
|
|
55332
|
+
var a = this.s.b1("ComparisonOperator_Tomorrow");
|
|
55216
55333
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Tomorrow";
|
|
55217
55334
|
},
|
|
55218
55335
|
enumerable: true,
|
|
55219
55336
|
configurable: true
|
|
55220
55337
|
});
|
|
55221
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55338
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "dg", {
|
|
55222
55339
|
get: function () {
|
|
55223
|
-
var a = this.
|
|
55340
|
+
var a = this.s.b1("ComparisonOperator_Yesterday");
|
|
55224
55341
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Yesterday";
|
|
55225
55342
|
},
|
|
55226
55343
|
enumerable: true,
|
|
55227
55344
|
configurable: true
|
|
55228
55345
|
});
|
|
55229
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55346
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c7", {
|
|
55230
55347
|
get: function () {
|
|
55231
|
-
var a = this.
|
|
55348
|
+
var a = this.s.b1("ComparisonOperator_ThisWeek");
|
|
55232
55349
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "This week";
|
|
55233
55350
|
},
|
|
55234
55351
|
enumerable: true,
|
|
55235
55352
|
configurable: true
|
|
55236
55353
|
});
|
|
55237
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55354
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cw", {
|
|
55238
55355
|
get: function () {
|
|
55239
|
-
var a = this.
|
|
55356
|
+
var a = this.s.b1("ComparisonOperator_NextWeek");
|
|
55240
55357
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Next week";
|
|
55241
55358
|
},
|
|
55242
55359
|
enumerable: true,
|
|
55243
55360
|
configurable: true
|
|
55244
55361
|
});
|
|
55245
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55362
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cp", {
|
|
55246
55363
|
get: function () {
|
|
55247
|
-
var a = this.
|
|
55364
|
+
var a = this.s.b1("ComparisonOperator_LastWeek");
|
|
55248
55365
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Last week";
|
|
55249
55366
|
},
|
|
55250
55367
|
enumerable: true,
|
|
55251
55368
|
configurable: true
|
|
55252
55369
|
});
|
|
55253
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55370
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c5", {
|
|
55254
55371
|
get: function () {
|
|
55255
|
-
var a = this.
|
|
55372
|
+
var a = this.s.b1("ComparisonOperator_ThisMonth");
|
|
55256
55373
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "This month";
|
|
55257
55374
|
},
|
|
55258
55375
|
enumerable: true,
|
|
55259
55376
|
configurable: true
|
|
55260
55377
|
});
|
|
55261
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55378
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cu", {
|
|
55262
55379
|
get: function () {
|
|
55263
|
-
var a = this.
|
|
55380
|
+
var a = this.s.b1("ComparisonOperator_NextMonth");
|
|
55264
55381
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Next month";
|
|
55265
55382
|
},
|
|
55266
55383
|
enumerable: true,
|
|
55267
55384
|
configurable: true
|
|
55268
55385
|
});
|
|
55269
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55386
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cn", {
|
|
55270
55387
|
get: function () {
|
|
55271
|
-
var a = this.
|
|
55388
|
+
var a = this.s.b1("ComparisonOperator_LastMonth");
|
|
55272
55389
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Last month";
|
|
55273
55390
|
},
|
|
55274
55391
|
enumerable: true,
|
|
55275
55392
|
configurable: true
|
|
55276
55393
|
});
|
|
55277
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55394
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c6", {
|
|
55278
55395
|
get: function () {
|
|
55279
|
-
var a = this.
|
|
55396
|
+
var a = this.s.b1("ComparisonOperator_ThisQuarter");
|
|
55280
55397
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "This quarter";
|
|
55281
55398
|
},
|
|
55282
55399
|
enumerable: true,
|
|
55283
55400
|
configurable: true
|
|
55284
55401
|
});
|
|
55285
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55402
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cv", {
|
|
55286
55403
|
get: function () {
|
|
55287
|
-
var a = this.
|
|
55404
|
+
var a = this.s.b1("ComparisonOperator_NextQuarter");
|
|
55288
55405
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Next quarter";
|
|
55289
55406
|
},
|
|
55290
55407
|
enumerable: true,
|
|
55291
55408
|
configurable: true
|
|
55292
55409
|
});
|
|
55293
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55410
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "co", {
|
|
55294
55411
|
get: function () {
|
|
55295
|
-
var a = this.
|
|
55412
|
+
var a = this.s.b1("ComparisonOperator_LastQuarter");
|
|
55296
55413
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Last quarter";
|
|
55297
55414
|
},
|
|
55298
55415
|
enumerable: true,
|
|
55299
55416
|
configurable: true
|
|
55300
55417
|
});
|
|
55301
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55418
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c8", {
|
|
55302
55419
|
get: function () {
|
|
55303
|
-
var a = this.
|
|
55420
|
+
var a = this.s.b1("ComparisonOperator_ThisYear");
|
|
55304
55421
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "This year";
|
|
55305
55422
|
},
|
|
55306
55423
|
enumerable: true,
|
|
55307
55424
|
configurable: true
|
|
55308
55425
|
});
|
|
55309
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55426
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cx", {
|
|
55310
55427
|
get: function () {
|
|
55311
|
-
var a = this.
|
|
55428
|
+
var a = this.s.b1("ComparisonOperator_NextYear");
|
|
55312
55429
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Next year";
|
|
55313
55430
|
},
|
|
55314
55431
|
enumerable: true,
|
|
55315
55432
|
configurable: true
|
|
55316
55433
|
});
|
|
55317
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55434
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cq", {
|
|
55318
55435
|
get: function () {
|
|
55319
|
-
var a = this.
|
|
55436
|
+
var a = this.s.b1("ComparisonOperator_LastYear");
|
|
55320
55437
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Last year";
|
|
55321
55438
|
},
|
|
55322
55439
|
enumerable: true,
|
|
55323
55440
|
configurable: true
|
|
55324
55441
|
});
|
|
55325
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55442
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "df", {
|
|
55326
55443
|
get: function () {
|
|
55327
|
-
var a = this.
|
|
55444
|
+
var a = this.s.b1("ComparisonOperator_YearToDate");
|
|
55328
55445
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Year to date";
|
|
55329
55446
|
},
|
|
55330
55447
|
enumerable: true,
|
|
55331
55448
|
configurable: true
|
|
55332
55449
|
});
|
|
55333
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55450
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c0", {
|
|
55334
55451
|
get: function () {
|
|
55335
|
-
var a = this.
|
|
55452
|
+
var a = this.s.b1("ComparisonOperator_Q1");
|
|
55336
55453
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Quarter 1";
|
|
55337
55454
|
},
|
|
55338
55455
|
enumerable: true,
|
|
55339
55456
|
configurable: true
|
|
55340
55457
|
});
|
|
55341
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55458
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c1", {
|
|
55342
55459
|
get: function () {
|
|
55343
|
-
var a = this.
|
|
55460
|
+
var a = this.s.b1("ComparisonOperator_Q2");
|
|
55344
55461
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Quarter 2";
|
|
55345
55462
|
},
|
|
55346
55463
|
enumerable: true,
|
|
55347
55464
|
configurable: true
|
|
55348
55465
|
});
|
|
55349
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55466
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c2", {
|
|
55350
55467
|
get: function () {
|
|
55351
|
-
var a = this.
|
|
55468
|
+
var a = this.s.b1("ComparisonOperator_Q3");
|
|
55352
55469
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Quarter 3";
|
|
55353
55470
|
},
|
|
55354
55471
|
enumerable: true,
|
|
55355
55472
|
configurable: true
|
|
55356
55473
|
});
|
|
55357
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55474
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c3", {
|
|
55358
55475
|
get: function () {
|
|
55359
|
-
var a = this.
|
|
55476
|
+
var a = this.s.b1("ComparisonOperator_Q4");
|
|
55360
55477
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Quarter 4";
|
|
55361
55478
|
},
|
|
55362
55479
|
enumerable: true,
|
|
55363
55480
|
configurable: true
|
|
55364
55481
|
});
|
|
55365
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55482
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "ct", {
|
|
55366
55483
|
get: function () {
|
|
55367
|
-
var a = this.
|
|
55484
|
+
var a = this.s.b1("ComparisonOperator_Month");
|
|
55368
55485
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Month";
|
|
55369
55486
|
},
|
|
55370
55487
|
enumerable: true,
|
|
55371
55488
|
configurable: true
|
|
55372
55489
|
});
|
|
55373
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55490
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "de", {
|
|
55374
55491
|
get: function () {
|
|
55375
|
-
var a = this.
|
|
55492
|
+
var a = this.s.b1("ComparisonOperator_Year");
|
|
55376
55493
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Year";
|
|
55377
55494
|
},
|
|
55378
55495
|
enumerable: true,
|
|
55379
55496
|
configurable: true
|
|
55380
55497
|
});
|
|
55381
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55498
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c4", {
|
|
55382
55499
|
get: function () {
|
|
55383
|
-
var a = this.
|
|
55500
|
+
var a = this.s.b1("ComparisonOperator_StartsWith");
|
|
55384
55501
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Starts with";
|
|
55385
55502
|
},
|
|
55386
55503
|
enumerable: true,
|
|
55387
55504
|
configurable: true
|
|
55388
55505
|
});
|
|
55389
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55506
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cg", {
|
|
55390
55507
|
get: function () {
|
|
55391
|
-
var a = this.
|
|
55508
|
+
var a = this.s.b1("ComparisonOperator_DoesNotStartWith");
|
|
55392
55509
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Does not start with";
|
|
55393
55510
|
},
|
|
55394
55511
|
enumerable: true,
|
|
55395
55512
|
configurable: true
|
|
55396
55513
|
});
|
|
55397
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55514
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "ci", {
|
|
55398
55515
|
get: function () {
|
|
55399
|
-
var a = this.
|
|
55516
|
+
var a = this.s.b1("ComparisonOperator_EndsWith");
|
|
55400
55517
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Ends with";
|
|
55401
55518
|
},
|
|
55402
55519
|
enumerable: true,
|
|
55403
55520
|
configurable: true
|
|
55404
55521
|
});
|
|
55405
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55522
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cf", {
|
|
55406
55523
|
get: function () {
|
|
55407
|
-
var a = this.
|
|
55524
|
+
var a = this.s.b1("ComparisonOperator_DoesNotEndWith");
|
|
55408
55525
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Does not end with";
|
|
55409
55526
|
},
|
|
55410
55527
|
enumerable: true,
|
|
55411
55528
|
configurable: true
|
|
55412
55529
|
});
|
|
55413
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55530
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cd", {
|
|
55414
55531
|
get: function () {
|
|
55415
|
-
var a = this.
|
|
55532
|
+
var a = this.s.b1("ComparisonOperator_Contains");
|
|
55416
55533
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Contains";
|
|
55417
55534
|
},
|
|
55418
55535
|
enumerable: true,
|
|
55419
55536
|
configurable: true
|
|
55420
55537
|
});
|
|
55421
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55538
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "ce", {
|
|
55422
55539
|
get: function () {
|
|
55423
|
-
var a = this.
|
|
55540
|
+
var a = this.s.b1("ComparisonOperator_DoesNotContain");
|
|
55424
55541
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Does not contain";
|
|
55425
55542
|
},
|
|
55426
55543
|
enumerable: true,
|
|
55427
55544
|
configurable: true
|
|
55428
55545
|
});
|
|
55429
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55546
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "ch", {
|
|
55430
55547
|
get: function () {
|
|
55431
|
-
var a = this.
|
|
55548
|
+
var a = this.s.b1("ComparisonOperator_Empty");
|
|
55432
55549
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Empty";
|
|
55433
55550
|
},
|
|
55434
55551
|
enumerable: true,
|
|
55435
55552
|
configurable: true
|
|
55436
55553
|
});
|
|
55437
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
55554
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cy", {
|
|
55438
55555
|
get: function () {
|
|
55439
|
-
var a = this.
|
|
55556
|
+
var a = this.s.b1("ComparisonOperator_NotEmpty");
|
|
55440
55557
|
return !igniteuiWebcomponentsCore.stringIsNullOrWhiteSpace(a) ? a : "Not empty";
|
|
55441
55558
|
},
|
|
55442
55559
|
enumerable: true,
|
|
55443
55560
|
configurable: true
|
|
55444
55561
|
});
|
|
55445
|
-
ComparisonOperatorSelector.prototype.
|
|
55562
|
+
ComparisonOperatorSelector.prototype.ej = function (a) {
|
|
55446
55563
|
if (a == null) {
|
|
55447
|
-
if (this.
|
|
55448
|
-
var b = this.
|
|
55449
|
-
b.clicked = igniteuiWebcomponentsCore.delegateRemove(b.clicked, igniteuiWebcomponentsCore.runOn(this, this.
|
|
55564
|
+
if (this.o != null) {
|
|
55565
|
+
var b = this.o;
|
|
55566
|
+
b.clicked = igniteuiWebcomponentsCore.delegateRemove(b.clicked, igniteuiWebcomponentsCore.runOn(this, this.ec));
|
|
55450
55567
|
}
|
|
55451
55568
|
if (this.f != null) {
|
|
55452
55569
|
this.f.ae.clear();
|
|
55453
55570
|
var c = this.f;
|
|
55454
|
-
c.cellClicked = igniteuiWebcomponentsCore.delegateRemove(c.cellClicked, igniteuiWebcomponentsCore.runOn(this, this.
|
|
55571
|
+
c.cellClicked = igniteuiWebcomponentsCore.delegateRemove(c.cellClicked, igniteuiWebcomponentsCore.runOn(this, this.d9));
|
|
55455
55572
|
}
|
|
55456
|
-
if (this.
|
|
55457
|
-
var d = this.
|
|
55458
|
-
d.cellUpdating = igniteuiWebcomponentsCore.delegateRemove(d.cellUpdating, igniteuiWebcomponentsCore.runOn(this, this.
|
|
55573
|
+
if (this.n != null) {
|
|
55574
|
+
var d = this.n;
|
|
55575
|
+
d.cellUpdating = igniteuiWebcomponentsCore.delegateRemove(d.cellUpdating, igniteuiWebcomponentsCore.runOn(this, this.el));
|
|
55459
55576
|
}
|
|
55460
55577
|
}
|
|
55461
|
-
this.e.
|
|
55578
|
+
this.e.u(a);
|
|
55462
55579
|
};
|
|
55463
|
-
ComparisonOperatorSelector.prototype.
|
|
55464
|
-
this.
|
|
55580
|
+
ComparisonOperatorSelector.prototype.ea = function () {
|
|
55581
|
+
this.ej(null);
|
|
55465
55582
|
if (this.f != null) {
|
|
55466
55583
|
var a = this.f;
|
|
55467
|
-
a.cellClicked = igniteuiWebcomponentsCore.delegateRemove(a.cellClicked, igniteuiWebcomponentsCore.runOn(this, this.
|
|
55584
|
+
a.cellClicked = igniteuiWebcomponentsCore.delegateRemove(a.cellClicked, igniteuiWebcomponentsCore.runOn(this, this.d9));
|
|
55468
55585
|
}
|
|
55469
|
-
this.
|
|
55586
|
+
this.v.clear();
|
|
55470
55587
|
};
|
|
55471
|
-
ComparisonOperatorSelector.prototype.
|
|
55472
|
-
this.
|
|
55473
|
-
this.
|
|
55474
|
-
this.
|
|
55588
|
+
ComparisonOperatorSelector.prototype.eb = function (a, b, c) {
|
|
55589
|
+
this.q = a;
|
|
55590
|
+
this.p = b;
|
|
55591
|
+
this.p.svgPath = this.bv(this.b);
|
|
55592
|
+
this.p.fill = this.eq;
|
|
55475
55593
|
this.f = c;
|
|
55476
55594
|
this.f.iz = false;
|
|
55477
55595
|
this.f.co = 1;
|
|
@@ -55482,38 +55600,40 @@
|
|
|
55482
55600
|
this.f.oc = 0;
|
|
55483
55601
|
this.f.go = 3;
|
|
55484
55602
|
this.f.i6 = false;
|
|
55603
|
+
this.f.yr = new igniteuiWebcomponentsCore.CornerRadius(0, 0);
|
|
55604
|
+
this.f.aa0 = new igniteuiWebcomponentsCore.Thickness(0, 0);
|
|
55485
55605
|
var d = this.f;
|
|
55486
|
-
d.cellClicked = igniteuiWebcomponentsCore.delegateCombine(d.cellClicked, igniteuiWebcomponentsCore.runOn(this, this.
|
|
55487
|
-
this.
|
|
55488
|
-
this.
|
|
55606
|
+
d.cellClicked = igniteuiWebcomponentsCore.delegateCombine(d.cellClicked, igniteuiWebcomponentsCore.runOn(this, this.d9));
|
|
55607
|
+
this.n = new TemplateColumn();
|
|
55608
|
+
this.n.width = ((function () {
|
|
55489
55609
|
var $ret = new ColumnWidth();
|
|
55490
55610
|
$ret.f = 32;
|
|
55491
55611
|
$ret.c = false;
|
|
55492
55612
|
return $ret;
|
|
55493
55613
|
})());
|
|
55494
|
-
this.
|
|
55495
|
-
this.
|
|
55496
|
-
this.
|
|
55497
|
-
var e = this.
|
|
55498
|
-
e.cellUpdating = igniteuiWebcomponentsCore.delegateCombine(e.cellUpdating, igniteuiWebcomponentsCore.runOn(this, this.
|
|
55499
|
-
this.f.columns.add(this.
|
|
55614
|
+
this.n.h2 = this.n.h3 = 4;
|
|
55615
|
+
this.n.h4 = this.n.h1 = 0;
|
|
55616
|
+
this.n.i8 = "Icon";
|
|
55617
|
+
var e = this.n;
|
|
55618
|
+
e.cellUpdating = igniteuiWebcomponentsCore.delegateCombine(e.cellUpdating, igniteuiWebcomponentsCore.runOn(this, this.el));
|
|
55619
|
+
this.f.columns.add(this.n);
|
|
55500
55620
|
var f = new TextColumn();
|
|
55501
55621
|
f.i8 = "DisplayText";
|
|
55502
55622
|
f.h2 = 0;
|
|
55503
55623
|
f.e = 0;
|
|
55504
55624
|
this.f.columns.add(f);
|
|
55505
|
-
this.
|
|
55625
|
+
this.d4();
|
|
55506
55626
|
};
|
|
55507
|
-
ComparisonOperatorSelector.prototype.
|
|
55627
|
+
ComparisonOperatorSelector.prototype.eh = function (a, b) {
|
|
55508
55628
|
var _this = this;
|
|
55509
|
-
this.
|
|
55510
|
-
for (var c = 0; c < this.
|
|
55511
|
-
if (this.
|
|
55512
|
-
this.i = this.
|
|
55629
|
+
this.t = true;
|
|
55630
|
+
for (var c = 0; c < this.v.count; c++) {
|
|
55631
|
+
if (this.v._inner[c].a == b && this.v._inner[c].a != 44) {
|
|
55632
|
+
this.i = this.v._inner[c];
|
|
55513
55633
|
}
|
|
55514
55634
|
}
|
|
55515
|
-
this.
|
|
55516
|
-
this.
|
|
55635
|
+
this.t = false;
|
|
55636
|
+
this.p.svgPath = this.i.Icon;
|
|
55517
55637
|
if (this.valueChanged != null) {
|
|
55518
55638
|
this.valueChanged(this, ((function () {
|
|
55519
55639
|
var $ret = new OperatorSelectorValueChangedEventArgs();
|
|
@@ -55523,110 +55643,124 @@
|
|
|
55523
55643
|
})()));
|
|
55524
55644
|
}
|
|
55525
55645
|
};
|
|
55526
|
-
ComparisonOperatorSelector.prototype.
|
|
55646
|
+
ComparisonOperatorSelector.prototype.ed = function () {
|
|
55647
|
+
if (this.p != null) {
|
|
55648
|
+
this.p.fill = this.eq;
|
|
55649
|
+
}
|
|
55650
|
+
if (this.f != null) {
|
|
55651
|
+
this.f.zv = this.eq;
|
|
55652
|
+
this.f.zt = this.ep;
|
|
55653
|
+
}
|
|
55654
|
+
};
|
|
55655
|
+
ComparisonOperatorSelector.prototype.ef = function () {
|
|
55527
55656
|
if (this.opening != null) {
|
|
55528
55657
|
this.opening(this, new OperatorSelectorOpeningEventArgs());
|
|
55529
55658
|
}
|
|
55530
55659
|
};
|
|
55531
|
-
ComparisonOperatorSelector.prototype.
|
|
55660
|
+
ComparisonOperatorSelector.prototype.ee = function () {
|
|
55661
|
+
if (this.opened != null) {
|
|
55662
|
+
this.opened(this, new OperatorSelectorOpeningEventArgs());
|
|
55663
|
+
}
|
|
55664
|
+
};
|
|
55665
|
+
ComparisonOperatorSelector.prototype.bv = function (a) {
|
|
55532
55666
|
switch (a) {
|
|
55533
|
-
case 7: return ComparisonOperatorSelector.
|
|
55534
|
-
case 9: return ComparisonOperatorSelector.
|
|
55535
|
-
case 12: return ComparisonOperatorSelector.
|
|
55536
|
-
case 13: return ComparisonOperatorSelector.
|
|
55537
|
-
case 17: return ComparisonOperatorSelector.
|
|
55538
|
-
case 15: return ComparisonOperatorSelector.
|
|
55539
|
-
case 40: return ComparisonOperatorSelector.
|
|
55540
|
-
case 16: return ComparisonOperatorSelector.
|
|
55667
|
+
case 7: return ComparisonOperatorSelector.ab;
|
|
55668
|
+
case 9: return ComparisonOperatorSelector.ac;
|
|
55669
|
+
case 12: return ComparisonOperatorSelector.ad;
|
|
55670
|
+
case 13: return ComparisonOperatorSelector.bn;
|
|
55671
|
+
case 17: return ComparisonOperatorSelector.bo;
|
|
55672
|
+
case 15: return ComparisonOperatorSelector.bp;
|
|
55673
|
+
case 40: return ComparisonOperatorSelector.bq;
|
|
55674
|
+
case 16: return ComparisonOperatorSelector.br;
|
|
55541
55675
|
case 0: return "M5 13.5h14v2H5zm0-5h14v2H5z";
|
|
55542
|
-
case 11: return ComparisonOperatorSelector.
|
|
55543
|
-
case 4: return ComparisonOperatorSelector.
|
|
55544
|
-
case 5: return ComparisonOperatorSelector.
|
|
55545
|
-
case 26: return ComparisonOperatorSelector.
|
|
55546
|
-
case 29: return ComparisonOperatorSelector.
|
|
55547
|
-
case 23: return ComparisonOperatorSelector.
|
|
55548
|
-
case 32: return ComparisonOperatorSelector.
|
|
55549
|
-
case 2: return ComparisonOperatorSelector.
|
|
55550
|
-
case 3: return ComparisonOperatorSelector.
|
|
55551
|
-
case 38: return ComparisonOperatorSelector.
|
|
55552
|
-
case 24: return ComparisonOperatorSelector.
|
|
55553
|
-
case 27: return ComparisonOperatorSelector.
|
|
55554
|
-
case 21: return ComparisonOperatorSelector.
|
|
55555
|
-
case 30: return ComparisonOperatorSelector.
|
|
55556
|
-
case 41: return ComparisonOperatorSelector.
|
|
55557
|
-
case 1: return ComparisonOperatorSelector.
|
|
55558
|
-
case 34: return ComparisonOperatorSelector.
|
|
55559
|
-
case 35: return ComparisonOperatorSelector.
|
|
55560
|
-
case 36: return ComparisonOperatorSelector.
|
|
55561
|
-
case 37: return ComparisonOperatorSelector.
|
|
55562
|
-
case 14: return ComparisonOperatorSelector.
|
|
55563
|
-
case 25: return ComparisonOperatorSelector.
|
|
55564
|
-
case 28: return ComparisonOperatorSelector.
|
|
55565
|
-
case 22: return ComparisonOperatorSelector.
|
|
55566
|
-
case 31: return ComparisonOperatorSelector.
|
|
55567
|
-
case 18: return ComparisonOperatorSelector.
|
|
55568
|
-
case 19: return ComparisonOperatorSelector.
|
|
55569
|
-
case 6: return ComparisonOperatorSelector.
|
|
55570
|
-
case 8: return ComparisonOperatorSelector.
|
|
55571
|
-
case 10: return ComparisonOperatorSelector.
|
|
55572
|
-
case 39: return ComparisonOperatorSelector.
|
|
55573
|
-
case 33: return ComparisonOperatorSelector.
|
|
55574
|
-
case 20: return ComparisonOperatorSelector.
|
|
55676
|
+
case 11: return ComparisonOperatorSelector.bt;
|
|
55677
|
+
case 4: return ComparisonOperatorSelector.bw;
|
|
55678
|
+
case 5: return ComparisonOperatorSelector.bx;
|
|
55679
|
+
case 26: return ComparisonOperatorSelector.by;
|
|
55680
|
+
case 29: return ComparisonOperatorSelector.bz;
|
|
55681
|
+
case 23: return ComparisonOperatorSelector.b0;
|
|
55682
|
+
case 32: return ComparisonOperatorSelector.b1;
|
|
55683
|
+
case 2: return ComparisonOperatorSelector.b2;
|
|
55684
|
+
case 3: return ComparisonOperatorSelector.b3;
|
|
55685
|
+
case 38: return ComparisonOperatorSelector.b4;
|
|
55686
|
+
case 24: return ComparisonOperatorSelector.b5;
|
|
55687
|
+
case 27: return ComparisonOperatorSelector.b6;
|
|
55688
|
+
case 21: return ComparisonOperatorSelector.b7;
|
|
55689
|
+
case 30: return ComparisonOperatorSelector.b8;
|
|
55690
|
+
case 41: return ComparisonOperatorSelector.b9;
|
|
55691
|
+
case 1: return ComparisonOperatorSelector.ca;
|
|
55692
|
+
case 34: return ComparisonOperatorSelector.dh;
|
|
55693
|
+
case 35: return ComparisonOperatorSelector.di;
|
|
55694
|
+
case 36: return ComparisonOperatorSelector.dj;
|
|
55695
|
+
case 37: return ComparisonOperatorSelector.dk;
|
|
55696
|
+
case 14: return ComparisonOperatorSelector.dl;
|
|
55697
|
+
case 25: return ComparisonOperatorSelector.dn;
|
|
55698
|
+
case 28: return ComparisonOperatorSelector.dp;
|
|
55699
|
+
case 22: return ComparisonOperatorSelector.dq;
|
|
55700
|
+
case 31: return ComparisonOperatorSelector.dr;
|
|
55701
|
+
case 18: return ComparisonOperatorSelector.ds;
|
|
55702
|
+
case 19: return ComparisonOperatorSelector.dt;
|
|
55703
|
+
case 6: return ComparisonOperatorSelector.du;
|
|
55704
|
+
case 8: return ComparisonOperatorSelector.dv;
|
|
55705
|
+
case 10: return ComparisonOperatorSelector.dw;
|
|
55706
|
+
case 39: return ComparisonOperatorSelector.dy;
|
|
55707
|
+
case 33: return ComparisonOperatorSelector.dz;
|
|
55708
|
+
case 20: return ComparisonOperatorSelector.d0;
|
|
55575
55709
|
default: return "";
|
|
55576
55710
|
}
|
|
55577
55711
|
};
|
|
55578
|
-
ComparisonOperatorSelector.prototype.
|
|
55712
|
+
ComparisonOperatorSelector.prototype.bu = function (a) {
|
|
55579
55713
|
switch (a) {
|
|
55580
|
-
case 7: return this.
|
|
55581
|
-
case 9: return this.
|
|
55582
|
-
case 12: return this.
|
|
55583
|
-
case 13: return this.
|
|
55584
|
-
case 17: return this.
|
|
55585
|
-
case 15: return this.
|
|
55586
|
-
case 40: return this.
|
|
55587
|
-
case 16: return this.
|
|
55588
|
-
case 0: return this.
|
|
55589
|
-
case 11: return this.
|
|
55590
|
-
case 4: return this.
|
|
55591
|
-
case 5: return this.
|
|
55592
|
-
case 26: return this.
|
|
55593
|
-
case 29: return this.
|
|
55594
|
-
case 23: return this.
|
|
55595
|
-
case 32: return this.
|
|
55596
|
-
case 2: return this.
|
|
55597
|
-
case 3: return this.
|
|
55598
|
-
case 38: return this.
|
|
55599
|
-
case 24: return this.
|
|
55600
|
-
case 27: return this.
|
|
55601
|
-
case 21: return this.
|
|
55602
|
-
case 30: return this.
|
|
55603
|
-
case 41: return this.
|
|
55604
|
-
case 1: return this.
|
|
55605
|
-
case 34: return this.
|
|
55606
|
-
case 35: return this.
|
|
55607
|
-
case 36: return this.
|
|
55608
|
-
case 37: return this.
|
|
55609
|
-
case 14: return this.
|
|
55610
|
-
case 25: return this.
|
|
55611
|
-
case 28: return this.
|
|
55612
|
-
case 22: return this.
|
|
55613
|
-
case 31: return this.
|
|
55614
|
-
case 18: return this.
|
|
55615
|
-
case 19: return this.
|
|
55616
|
-
case 6: return this.
|
|
55617
|
-
case 8: return this.
|
|
55618
|
-
case 10: return this.
|
|
55619
|
-
case 39: return this.
|
|
55620
|
-
case 33: return this.
|
|
55621
|
-
case 20: return this.
|
|
55714
|
+
case 7: return this.cb;
|
|
55715
|
+
case 9: return this.cc;
|
|
55716
|
+
case 12: return this.cd;
|
|
55717
|
+
case 13: return this.ce;
|
|
55718
|
+
case 17: return this.cf;
|
|
55719
|
+
case 15: return this.cg;
|
|
55720
|
+
case 40: return this.ch;
|
|
55721
|
+
case 16: return this.ci;
|
|
55722
|
+
case 0: return this.cj;
|
|
55723
|
+
case 11: return this.ck;
|
|
55724
|
+
case 4: return this.cl;
|
|
55725
|
+
case 5: return this.cm;
|
|
55726
|
+
case 26: return this.cn;
|
|
55727
|
+
case 29: return this.co;
|
|
55728
|
+
case 23: return this.cp;
|
|
55729
|
+
case 32: return this.cq;
|
|
55730
|
+
case 2: return this.cr;
|
|
55731
|
+
case 3: return this.cs;
|
|
55732
|
+
case 38: return this.ct;
|
|
55733
|
+
case 24: return this.cu;
|
|
55734
|
+
case 27: return this.cv;
|
|
55735
|
+
case 21: return this.cw;
|
|
55736
|
+
case 30: return this.cx;
|
|
55737
|
+
case 41: return this.cy;
|
|
55738
|
+
case 1: return this.cz;
|
|
55739
|
+
case 34: return this.c0;
|
|
55740
|
+
case 35: return this.c1;
|
|
55741
|
+
case 36: return this.c2;
|
|
55742
|
+
case 37: return this.c3;
|
|
55743
|
+
case 14: return this.c4;
|
|
55744
|
+
case 25: return this.c5;
|
|
55745
|
+
case 28: return this.c6;
|
|
55746
|
+
case 22: return this.c7;
|
|
55747
|
+
case 31: return this.c8;
|
|
55748
|
+
case 18: return this.c9;
|
|
55749
|
+
case 19: return this.da;
|
|
55750
|
+
case 6: return this.db;
|
|
55751
|
+
case 8: return this.dc;
|
|
55752
|
+
case 10: return this.dd;
|
|
55753
|
+
case 39: return this.de;
|
|
55754
|
+
case 33: return this.df;
|
|
55755
|
+
case 20: return this.dg;
|
|
55622
55756
|
default: return "";
|
|
55623
55757
|
}
|
|
55624
55758
|
};
|
|
55625
|
-
ComparisonOperatorSelector.prototype.
|
|
55626
|
-
this.
|
|
55759
|
+
ComparisonOperatorSelector.prototype.d4 = function () {
|
|
55760
|
+
this.v = new igniteuiWebcomponentsCore.List$1(OperatorModel.$, 0);
|
|
55627
55761
|
switch (this.d) {
|
|
55628
55762
|
case 2:
|
|
55629
|
-
this.
|
|
55763
|
+
this.d2(this.v);
|
|
55630
55764
|
break;
|
|
55631
55765
|
case 10:
|
|
55632
55766
|
case 6:
|
|
@@ -55635,22 +55769,22 @@
|
|
|
55635
55769
|
case 3:
|
|
55636
55770
|
case 4:
|
|
55637
55771
|
case 7:
|
|
55638
|
-
this.
|
|
55772
|
+
this.d5(this.v);
|
|
55639
55773
|
break;
|
|
55640
55774
|
case 8:
|
|
55641
|
-
this.
|
|
55775
|
+
this.d3(this.v);
|
|
55642
55776
|
break;
|
|
55643
55777
|
case 0:
|
|
55644
|
-
this.
|
|
55778
|
+
this.d6(this.v);
|
|
55645
55779
|
break;
|
|
55646
55780
|
}
|
|
55647
|
-
this.
|
|
55781
|
+
this.v.o(this.u);
|
|
55648
55782
|
if (this.f != null) {
|
|
55649
|
-
this.e.
|
|
55650
|
-
if (this.
|
|
55651
|
-
this.i = this.
|
|
55783
|
+
this.e.v(this.v);
|
|
55784
|
+
if (this.v.count > 0) {
|
|
55785
|
+
this.i = this.v._inner[0];
|
|
55652
55786
|
}
|
|
55653
|
-
this.e.k = Math.min(this.
|
|
55787
|
+
this.e.k = Math.min(this.v.count * this.f.nf + 2, this.z);
|
|
55654
55788
|
}
|
|
55655
55789
|
};
|
|
55656
55790
|
ComparisonOperatorSelector.prototype.h = function (a) {
|
|
@@ -55658,16 +55792,16 @@
|
|
|
55658
55792
|
return ((function () {
|
|
55659
55793
|
var $ret = new OperatorModel();
|
|
55660
55794
|
$ret.a = a;
|
|
55661
|
-
$ret.DisplayText = _this.
|
|
55662
|
-
$ret.Icon = _this.
|
|
55795
|
+
$ret.DisplayText = _this.bu(a);
|
|
55796
|
+
$ret.Icon = _this.bv(a);
|
|
55663
55797
|
return $ret;
|
|
55664
55798
|
})());
|
|
55665
55799
|
};
|
|
55666
|
-
ComparisonOperatorSelector.prototype.
|
|
55800
|
+
ComparisonOperatorSelector.prototype.d2 = function (a) {
|
|
55667
55801
|
a.add(this.h(10));
|
|
55668
55802
|
a.add(this.h(11));
|
|
55669
55803
|
};
|
|
55670
|
-
ComparisonOperatorSelector.prototype.
|
|
55804
|
+
ComparisonOperatorSelector.prototype.d5 = function (a) {
|
|
55671
55805
|
a.add(this.h(0));
|
|
55672
55806
|
a.add(this.h(1));
|
|
55673
55807
|
a.add(this.h(2));
|
|
@@ -55675,7 +55809,7 @@
|
|
|
55675
55809
|
a.add(this.h(4));
|
|
55676
55810
|
a.add(this.h(5));
|
|
55677
55811
|
};
|
|
55678
|
-
ComparisonOperatorSelector.prototype.
|
|
55812
|
+
ComparisonOperatorSelector.prototype.d3 = function (a) {
|
|
55679
55813
|
a.add(this.h(0));
|
|
55680
55814
|
a.add(this.h(1));
|
|
55681
55815
|
a.add(this.h(2));
|
|
@@ -55705,7 +55839,7 @@
|
|
|
55705
55839
|
a.add(this.h(36));
|
|
55706
55840
|
a.add(this.h(37));
|
|
55707
55841
|
};
|
|
55708
|
-
ComparisonOperatorSelector.prototype.
|
|
55842
|
+
ComparisonOperatorSelector.prototype.d6 = function (a) {
|
|
55709
55843
|
a.add(this.h(0));
|
|
55710
55844
|
a.add(this.h(1));
|
|
55711
55845
|
a.add(this.h(14));
|
|
@@ -55717,127 +55851,128 @@
|
|
|
55717
55851
|
a.add(this.h(40));
|
|
55718
55852
|
a.add(this.h(41));
|
|
55719
55853
|
};
|
|
55720
|
-
ComparisonOperatorSelector.prototype.
|
|
55854
|
+
ComparisonOperatorSelector.prototype.y = function () {
|
|
55721
55855
|
if (this.f != null) {
|
|
55722
55856
|
var a = Math.min(8, this.f.actualDataSource != null ? this.f.actualDataSource.actualCount : 0);
|
|
55723
55857
|
return a * (this.f.nf + this.f.oc) + this.f.ne + 2;
|
|
55724
55858
|
}
|
|
55725
55859
|
return 0;
|
|
55726
55860
|
};
|
|
55727
|
-
ComparisonOperatorSelector.prototype.
|
|
55728
|
-
if (this.
|
|
55729
|
-
if (!this.
|
|
55730
|
-
this.
|
|
55731
|
-
this.
|
|
55861
|
+
ComparisonOperatorSelector.prototype.em = function () {
|
|
55862
|
+
if (this.q != null) {
|
|
55863
|
+
if (!this.q.t) {
|
|
55864
|
+
this.ef();
|
|
55865
|
+
this.q.showRelativeToExclusionRect(this.e.w(), 1, 0);
|
|
55866
|
+
this.ee();
|
|
55732
55867
|
}
|
|
55733
55868
|
else {
|
|
55734
|
-
this.
|
|
55869
|
+
this.q.ao();
|
|
55735
55870
|
}
|
|
55736
55871
|
}
|
|
55737
55872
|
};
|
|
55738
|
-
ComparisonOperatorSelector.prototype.
|
|
55739
|
-
if (this.
|
|
55740
|
-
this.
|
|
55873
|
+
ComparisonOperatorSelector.prototype.d8 = function () {
|
|
55874
|
+
if (this.q != null) {
|
|
55875
|
+
this.q.ao();
|
|
55741
55876
|
}
|
|
55742
55877
|
};
|
|
55743
|
-
ComparisonOperatorSelector.prototype.
|
|
55878
|
+
ComparisonOperatorSelector.prototype.d1 = function (a, b, c, d) {
|
|
55744
55879
|
var e = ((function () {
|
|
55745
55880
|
var $ret = new OperatorModel();
|
|
55746
55881
|
$ret.DisplayText = a;
|
|
55747
|
-
$ret.Icon = b != null ? b : ComparisonOperatorSelector.
|
|
55882
|
+
$ret.Icon = b != null ? b : ComparisonOperatorSelector.af;
|
|
55748
55883
|
$ret.a = 44;
|
|
55749
55884
|
$ret.c = c;
|
|
55750
55885
|
$ret.b = d;
|
|
55751
55886
|
return $ret;
|
|
55752
55887
|
})());
|
|
55753
|
-
this.
|
|
55754
|
-
if (this.
|
|
55755
|
-
this.
|
|
55888
|
+
this.u.add(e);
|
|
55889
|
+
if (this.v != null) {
|
|
55890
|
+
this.v.add(e);
|
|
55756
55891
|
}
|
|
55757
55892
|
if (this.f != null && this.f.actualDataSource != null) {
|
|
55758
|
-
this.f.actualDataSource.notifyInsertItem(this.
|
|
55893
|
+
this.f.actualDataSource.notifyInsertItem(this.v.count, e);
|
|
55759
55894
|
}
|
|
55760
55895
|
};
|
|
55761
|
-
ComparisonOperatorSelector.prototype.
|
|
55762
|
-
if (this.
|
|
55896
|
+
ComparisonOperatorSelector.prototype.d7 = function () {
|
|
55897
|
+
if (this.v == null) {
|
|
55763
55898
|
return;
|
|
55764
55899
|
}
|
|
55765
|
-
for (var a = 0; a < this.
|
|
55766
|
-
if (this.
|
|
55767
|
-
this.
|
|
55900
|
+
for (var a = 0; a < this.v.count; a++) {
|
|
55901
|
+
if (this.v._inner[a].a == 44) {
|
|
55902
|
+
this.v.removeAt(a);
|
|
55768
55903
|
a--;
|
|
55769
55904
|
}
|
|
55770
55905
|
}
|
|
55771
|
-
this.
|
|
55906
|
+
this.u.clear();
|
|
55772
55907
|
};
|
|
55773
|
-
ComparisonOperatorSelector.prototype.
|
|
55908
|
+
ComparisonOperatorSelector.prototype.ek = function (a, b) {
|
|
55774
55909
|
if (a != null) {
|
|
55775
|
-
for (var c = 0; c < this.
|
|
55776
|
-
if (this.
|
|
55777
|
-
this.i = this.
|
|
55910
|
+
for (var c = 0; c < this.u.count; c++) {
|
|
55911
|
+
if (this.u._inner[c].c == a) {
|
|
55912
|
+
this.i = this.u._inner[c];
|
|
55778
55913
|
}
|
|
55779
55914
|
}
|
|
55780
55915
|
}
|
|
55781
55916
|
else {
|
|
55782
|
-
if (b >= 0 && b < this.
|
|
55783
|
-
this.i = this.
|
|
55917
|
+
if (b >= 0 && b < this.u.count) {
|
|
55918
|
+
this.i = this.u._inner[b];
|
|
55784
55919
|
}
|
|
55785
55920
|
}
|
|
55786
55921
|
};
|
|
55787
|
-
ComparisonOperatorSelector.prototype.
|
|
55788
|
-
this.
|
|
55922
|
+
ComparisonOperatorSelector.prototype.ec = function (a, b) {
|
|
55923
|
+
this.em();
|
|
55789
55924
|
};
|
|
55790
|
-
ComparisonOperatorSelector.prototype.
|
|
55925
|
+
ComparisonOperatorSelector.prototype.d9 = function (a, b) {
|
|
55791
55926
|
var c = b.cellInfo.et;
|
|
55792
55927
|
this.i = this.f.actualDataSource.getItemAtIndex(c);
|
|
55793
|
-
this.
|
|
55928
|
+
this.d8();
|
|
55794
55929
|
};
|
|
55795
|
-
ComparisonOperatorSelector.prototype.
|
|
55796
|
-
this.e.
|
|
55930
|
+
ComparisonOperatorSelector.prototype.el = function (a, b) {
|
|
55931
|
+
this.e.t(b.content, b.cellInfo.g4);
|
|
55797
55932
|
};
|
|
55798
55933
|
ComparisonOperatorSelector.$t = igniteuiWebcomponentsCore.markType(ComparisonOperatorSelector, 'ComparisonOperatorSelector', igniteuiWebcomponentsCore.Base.$, [igniteuiWebcomponentsCore.INotifyPropertyChanged_$type]);
|
|
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.
|
|
55840
|
-
ComparisonOperatorSelector.
|
|
55934
|
+
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 ";
|
|
55935
|
+
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 ";
|
|
55936
|
+
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";
|
|
55937
|
+
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";
|
|
55938
|
+
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";
|
|
55939
|
+
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";
|
|
55940
|
+
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";
|
|
55941
|
+
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";
|
|
55942
|
+
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";
|
|
55943
|
+
ComparisonOperatorSelector.bw = "M6 7.11L15.09 12 6 16.89V19l12-6.46v-1.08L6 5v2.11z";
|
|
55944
|
+
ComparisonOperatorSelector.bx = "M5.99 19h12.02v2H5.99zM18 9.47L6 3v2.11L15.09 10 6 14.9v2.11l12-6.47V9.47z";
|
|
55945
|
+
ComparisonOperatorSelector.b2 = "M6 12.54L18 19v-2.11L8.91 12 18 7.11V5L6 11.46v1.08z";
|
|
55946
|
+
ComparisonOperatorSelector.b3 = "M5.99 19h12.02v2H5.99zM18 14.9L8.91 10 18 5.11V3L6 9.47v1.07l12 6.47V14.9z";
|
|
55947
|
+
ComparisonOperatorSelector.bq = "M5 17h2v2H5zm8 0h2v2h-2zm-8-4h2v2H5zm12 4h2v2h-2zM13 5h2v2h-2zM9 17h2v2H9zm8-8h2v2h-2zm0 4h2v2h-2zm0-8h2v2h-2zM5 9h2v2H5zm0-4h2v2H5zm4 0h2v2H9z";
|
|
55948
|
+
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";
|
|
55949
|
+
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";
|
|
55950
|
+
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";
|
|
55951
|
+
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";
|
|
55952
|
+
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";
|
|
55953
|
+
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";
|
|
55954
|
+
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";
|
|
55955
|
+
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";
|
|
55956
|
+
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";
|
|
55957
|
+
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";
|
|
55958
|
+
ComparisonOperatorSelector.dp = "M12,7V17H22A10,10,0,0,0,12,7Zm-2,5L6,16V13H2V11H6V8Z";
|
|
55959
|
+
ComparisonOperatorSelector.b6 = "M4,9.253A8.03,8.03,0,0,1,9.747,15H4V9.253M2,7V17H12A10,10,0,0,0,2,7ZM18,8v3H14v2h4v3l4-4Z";
|
|
55960
|
+
ComparisonOperatorSelector.bz = "M12,7V17H22A10,10,0,0,0,12,7ZM2,12l4,4V13h4V11H6V8Z";
|
|
55961
|
+
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";
|
|
55962
|
+
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";
|
|
55963
|
+
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";
|
|
55964
|
+
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";
|
|
55965
|
+
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";
|
|
55966
|
+
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";
|
|
55967
|
+
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";
|
|
55968
|
+
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";
|
|
55969
|
+
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";
|
|
55970
|
+
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";
|
|
55971
|
+
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";
|
|
55972
|
+
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";
|
|
55973
|
+
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";
|
|
55974
|
+
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";
|
|
55975
|
+
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";
|
|
55841
55976
|
return ComparisonOperatorSelector;
|
|
55842
55977
|
}(igniteuiWebcomponentsCore.Base));
|
|
55843
55978
|
|
|
@@ -55893,6 +56028,7 @@
|
|
|
55893
56028
|
_this.cx = null;
|
|
55894
56029
|
_this.c7 = null;
|
|
55895
56030
|
_this.ch = null;
|
|
56031
|
+
_this.d6 = null;
|
|
55896
56032
|
_this.c4 = a.createElement("div");
|
|
55897
56033
|
_this.c4.setStyleProperty("display", "flex");
|
|
55898
56034
|
_this.c4.setStyleProperty("flex-direction", "row");
|
|
@@ -55902,7 +56038,7 @@
|
|
|
55902
56038
|
_this.c6 = a.createElement("div");
|
|
55903
56039
|
_this.c2 = a.getSubRenderer(_this.c6);
|
|
55904
56040
|
_this.ck = new ComparisonOperatorSelector();
|
|
55905
|
-
_this.ck.
|
|
56041
|
+
_this.ck.ej(_this.c2);
|
|
55906
56042
|
_this.c6.setStyleProperty("width", "24px");
|
|
55907
56043
|
_this.c6.setStyleProperty("height", "24px");
|
|
55908
56044
|
_this.c4.append(_this.c6);
|
|
@@ -55916,7 +56052,7 @@
|
|
|
55916
56052
|
_this.cw = new igniteuiWebcomponentsInputs.XIcon();
|
|
55917
56053
|
_this.cw.provideContainer(a.getSubRenderer(_this.c5));
|
|
55918
56054
|
_this.c4.append(_this.c5);
|
|
55919
|
-
_this.
|
|
56055
|
+
_this.dp();
|
|
55920
56056
|
return _this;
|
|
55921
56057
|
}
|
|
55922
56058
|
FilterCell.prototype.cs = function (a) {
|
|
@@ -55940,30 +56076,30 @@
|
|
|
55940
56076
|
default: return null;
|
|
55941
56077
|
}
|
|
55942
56078
|
};
|
|
55943
|
-
FilterCell.prototype.
|
|
56079
|
+
FilterCell.prototype.d1 = function () {
|
|
55944
56080
|
this.c3.removeChildren();
|
|
55945
56081
|
};
|
|
55946
|
-
FilterCell.prototype.
|
|
56082
|
+
FilterCell.prototype.dm = function () {
|
|
55947
56083
|
this.c3.append(this.cr.container);
|
|
55948
56084
|
};
|
|
55949
|
-
FilterCell.prototype.
|
|
56085
|
+
FilterCell.prototype.du = function () {
|
|
55950
56086
|
if (this.ae.getChildCount() == 0) {
|
|
55951
56087
|
this.ae.append(this.c4);
|
|
55952
56088
|
}
|
|
55953
56089
|
};
|
|
55954
|
-
FilterCell.prototype.
|
|
56090
|
+
FilterCell.prototype.ds = function () {
|
|
55955
56091
|
if (this.ae.getChildCount() > 0) {
|
|
55956
56092
|
this.ae.removeChildren();
|
|
55957
56093
|
}
|
|
55958
56094
|
};
|
|
55959
56095
|
FilterCell.prototype.bp = function (a, b, c) {
|
|
55960
56096
|
_super.prototype.bp.call(this, a, b, c);
|
|
55961
|
-
this.
|
|
56097
|
+
this.d0(a, b, c);
|
|
55962
56098
|
};
|
|
55963
56099
|
FilterCell.prototype.bo = function () {
|
|
55964
|
-
this.
|
|
56100
|
+
this.dy();
|
|
55965
56101
|
};
|
|
55966
|
-
FilterCell.prototype.
|
|
56102
|
+
FilterCell.prototype.d2 = function (a, b, c, d) {
|
|
55967
56103
|
if (this.d != null) {
|
|
55968
56104
|
var e = this.c6.getNativeElement();
|
|
55969
56105
|
this.d.update("SelectorTop", (e.offsetTop));
|
|
@@ -55976,17 +56112,17 @@
|
|
|
55976
56112
|
this.d.update("ClearIconLeft", (g.offsetLeft));
|
|
55977
56113
|
}
|
|
55978
56114
|
};
|
|
55979
|
-
FilterCell.prototype.
|
|
56115
|
+
FilterCell.prototype.dp = function () {
|
|
55980
56116
|
var a = this.ck;
|
|
55981
|
-
a.valueChanged = igniteuiWebcomponentsCore.delegateCombine(a.valueChanged, igniteuiWebcomponentsCore.runOn(this, this.
|
|
56117
|
+
a.valueChanged = igniteuiWebcomponentsCore.delegateCombine(a.valueChanged, igniteuiWebcomponentsCore.runOn(this, this.dz));
|
|
55982
56118
|
this.cw.svgPath = FilterCell.c9;
|
|
55983
|
-
this.
|
|
56119
|
+
this.d4(false);
|
|
55984
56120
|
var b = this.cw;
|
|
55985
|
-
b.clicked = igniteuiWebcomponentsCore.delegateCombine(b.clicked, igniteuiWebcomponentsCore.runOn(this, this.
|
|
56121
|
+
b.clicked = igniteuiWebcomponentsCore.delegateCombine(b.clicked, igniteuiWebcomponentsCore.runOn(this, this.dn));
|
|
55986
56122
|
};
|
|
55987
|
-
FilterCell.prototype.
|
|
56123
|
+
FilterCell.prototype.dy = function () {
|
|
55988
56124
|
if (this.cr == null) {
|
|
55989
|
-
this.
|
|
56125
|
+
this.dt();
|
|
55990
56126
|
}
|
|
55991
56127
|
};
|
|
55992
56128
|
FilterCell.prototype.cn = function () {
|
|
@@ -56026,7 +56162,7 @@
|
|
|
56026
56162
|
}
|
|
56027
56163
|
if (this.ck.b == 44) {
|
|
56028
56164
|
if (this.cq != null && this.cq.count > 0) {
|
|
56029
|
-
var b = this.cq._inner[this.ck.
|
|
56165
|
+
var b = this.cq._inner[this.ck.x];
|
|
56030
56166
|
switch (b.b) {
|
|
56031
56167
|
case 0:
|
|
56032
56168
|
case 1:
|
|
@@ -56043,26 +56179,26 @@
|
|
|
56043
56179
|
}
|
|
56044
56180
|
return a;
|
|
56045
56181
|
};
|
|
56046
|
-
FilterCell.prototype.
|
|
56182
|
+
FilterCell.prototype.d4 = function (a) {
|
|
56047
56183
|
if (this.cw != null) {
|
|
56048
56184
|
this.cw.disabled = !a;
|
|
56049
56185
|
this.cw.z = a ? 1 : 0.3;
|
|
56050
56186
|
}
|
|
56051
56187
|
};
|
|
56052
|
-
FilterCell.prototype.
|
|
56188
|
+
FilterCell.prototype.di = function (a) {
|
|
56053
56189
|
if (!this.cz) {
|
|
56054
56190
|
return;
|
|
56055
56191
|
}
|
|
56056
56192
|
if (this.ck.b == 44) {
|
|
56057
56193
|
if (this.cq != null && this.cq.count > 0) {
|
|
56058
|
-
this.b.applyCustomFilter(this.ck.
|
|
56194
|
+
this.b.applyCustomFilter(this.ck.ae, this.ck.x, a);
|
|
56059
56195
|
}
|
|
56060
56196
|
}
|
|
56061
56197
|
else {
|
|
56062
56198
|
this.b.applyFilter(this.ck.b, a);
|
|
56063
56199
|
}
|
|
56064
56200
|
};
|
|
56065
|
-
FilterCell.prototype.
|
|
56201
|
+
FilterCell.prototype.dj = function () {
|
|
56066
56202
|
if (!this.cz) {
|
|
56067
56203
|
return;
|
|
56068
56204
|
}
|
|
@@ -56070,32 +56206,37 @@
|
|
|
56070
56206
|
this.b.clearFilter();
|
|
56071
56207
|
}
|
|
56072
56208
|
};
|
|
56073
|
-
FilterCell.prototype.
|
|
56209
|
+
FilterCell.prototype.d0 = function (a, b, c) {
|
|
56074
56210
|
switch (a) {
|
|
56075
56211
|
case "DataType":
|
|
56076
|
-
this.
|
|
56212
|
+
this.dr();
|
|
56077
56213
|
break;
|
|
56078
56214
|
case "EditorType":
|
|
56079
|
-
this.
|
|
56215
|
+
this.dt();
|
|
56080
56216
|
break;
|
|
56081
56217
|
case "FontInfo":
|
|
56082
|
-
this.
|
|
56218
|
+
this.dx();
|
|
56083
56219
|
break;
|
|
56084
56220
|
case "Filter":
|
|
56085
|
-
this.
|
|
56221
|
+
this.dv();
|
|
56086
56222
|
break;
|
|
56087
56223
|
case "FilterOperands":
|
|
56088
|
-
this.
|
|
56224
|
+
this.dq();
|
|
56089
56225
|
break;
|
|
56090
56226
|
case "FilterValue":
|
|
56091
|
-
this.
|
|
56227
|
+
this.dw();
|
|
56092
56228
|
break;
|
|
56093
56229
|
case "IsEditorEnabled":
|
|
56094
56230
|
this.cr.isEnabled = this.c1;
|
|
56095
56231
|
break;
|
|
56232
|
+
case "TextColor":
|
|
56233
|
+
this.ck.eq = this.d7;
|
|
56234
|
+
this.cw.fill = this.d7;
|
|
56235
|
+
this.cr.textColor = this.d7;
|
|
56236
|
+
break;
|
|
56096
56237
|
}
|
|
56097
56238
|
};
|
|
56098
|
-
FilterCell.prototype.
|
|
56239
|
+
FilterCell.prototype.dv = function () {
|
|
56099
56240
|
this.cz = false;
|
|
56100
56241
|
if (this.cr != null) {
|
|
56101
56242
|
if (this.ci != null) {
|
|
@@ -56116,7 +56257,7 @@
|
|
|
56116
56257
|
}
|
|
56117
56258
|
else if (igniteuiWebcomponentsCore.typeCast(ColumnCustomFilterCondition.$, this.ci) !== null) {
|
|
56118
56259
|
var c = igniteuiWebcomponentsCore.typeCast(ColumnCustomFilterCondition.$, this.ci);
|
|
56119
|
-
this.ck.
|
|
56260
|
+
this.ck.ek(c.id, c.d);
|
|
56120
56261
|
var d = this.cr.getEditorValue();
|
|
56121
56262
|
if (d != null) {
|
|
56122
56263
|
if (!igniteuiWebcomponentsCore.Base.equalsStatic(d, c.e)) {
|
|
@@ -56146,37 +56287,37 @@
|
|
|
56146
56287
|
}
|
|
56147
56288
|
this.cz = true;
|
|
56148
56289
|
};
|
|
56149
|
-
FilterCell.prototype.
|
|
56150
|
-
this.ck.
|
|
56290
|
+
FilterCell.prototype.dq = function () {
|
|
56291
|
+
this.ck.d7();
|
|
56151
56292
|
for (var a = 0; a < this.cq.count; a++) {
|
|
56152
|
-
this.ck.
|
|
56293
|
+
this.ck.d1(this.cq._inner[a].e, this.cq._inner[a].f, this.cq._inner[a].g, a);
|
|
56153
56294
|
}
|
|
56154
56295
|
};
|
|
56155
|
-
FilterCell.prototype.
|
|
56296
|
+
FilterCell.prototype.dr = function () {
|
|
56156
56297
|
if (this.cj == 11) {
|
|
56157
56298
|
this.c1 = false;
|
|
56158
56299
|
}
|
|
56159
56300
|
this.cm = this.cn();
|
|
56160
56301
|
};
|
|
56161
|
-
FilterCell.prototype.
|
|
56162
|
-
this.
|
|
56302
|
+
FilterCell.prototype.dw = function () {
|
|
56303
|
+
this.d4(this.c8 != null);
|
|
56163
56304
|
if (this.c8 == null || igniteuiWebcomponentsCore.Base.equalsStatic(this.c8, "")) {
|
|
56164
|
-
this.
|
|
56305
|
+
this.dj();
|
|
56165
56306
|
}
|
|
56166
56307
|
else {
|
|
56167
|
-
this.
|
|
56308
|
+
this.di(this.c8);
|
|
56168
56309
|
}
|
|
56169
56310
|
if (this.d != null) {
|
|
56170
56311
|
this.d.update("FilterValue", this.c8);
|
|
56171
56312
|
}
|
|
56172
56313
|
};
|
|
56173
|
-
FilterCell.prototype.
|
|
56314
|
+
FilterCell.prototype.dt = function () {
|
|
56174
56315
|
if (this.cr != null) {
|
|
56175
56316
|
this.cr.detachEvents();
|
|
56176
56317
|
var a = this.cr;
|
|
56177
|
-
a.valueProvided = igniteuiWebcomponentsCore.delegateRemove(a.valueProvided, igniteuiWebcomponentsCore.runOn(this, this.
|
|
56318
|
+
a.valueProvided = igniteuiWebcomponentsCore.delegateRemove(a.valueProvided, igniteuiWebcomponentsCore.runOn(this, this.d3));
|
|
56178
56319
|
}
|
|
56179
|
-
this.
|
|
56320
|
+
this.d1();
|
|
56180
56321
|
this.cr = this.cs(this.cm);
|
|
56181
56322
|
this.cr.onEditStarted();
|
|
56182
56323
|
if (this.cr != null) {
|
|
@@ -56186,19 +56327,19 @@
|
|
|
56186
56327
|
this.cr.focusOnValueChanged = false;
|
|
56187
56328
|
this.cr.showClearButton = false;
|
|
56188
56329
|
var b = this.cr;
|
|
56189
|
-
b.valueProvided = igniteuiWebcomponentsCore.delegateCombine(b.valueProvided, igniteuiWebcomponentsCore.runOn(this, this.
|
|
56190
|
-
this.
|
|
56330
|
+
b.valueProvided = igniteuiWebcomponentsCore.delegateCombine(b.valueProvided, igniteuiWebcomponentsCore.runOn(this, this.d3));
|
|
56331
|
+
this.dm();
|
|
56191
56332
|
}
|
|
56192
|
-
this.
|
|
56333
|
+
this.dn(null, null);
|
|
56193
56334
|
};
|
|
56194
|
-
FilterCell.prototype.
|
|
56335
|
+
FilterCell.prototype.dx = function () {
|
|
56195
56336
|
if (this.cy != null) {
|
|
56196
56337
|
if (this.cr != null) {
|
|
56197
56338
|
this.cr.setFont(this.cy);
|
|
56198
56339
|
}
|
|
56199
56340
|
}
|
|
56200
56341
|
};
|
|
56201
|
-
FilterCell.prototype.
|
|
56342
|
+
FilterCell.prototype.dz = function (a, b) {
|
|
56202
56343
|
this.cm = this.cn();
|
|
56203
56344
|
switch (b.newValue) {
|
|
56204
56345
|
case 40:
|
|
@@ -56238,30 +56379,30 @@
|
|
|
56238
56379
|
}
|
|
56239
56380
|
if (b.newValue == 44) {
|
|
56240
56381
|
if (this.cq != null && this.cq.count > 0) {
|
|
56241
|
-
var c = this.cq._inner[this.ck.
|
|
56382
|
+
var c = this.cq._inner[this.ck.x];
|
|
56242
56383
|
this.c1 = c.d;
|
|
56243
56384
|
}
|
|
56244
56385
|
}
|
|
56245
56386
|
if (!this.c1) {
|
|
56246
|
-
this.
|
|
56247
|
-
this.
|
|
56387
|
+
this.di(null);
|
|
56388
|
+
this.d4(true);
|
|
56248
56389
|
}
|
|
56249
56390
|
else if (this.c8 != null && !igniteuiWebcomponentsCore.Base.equalsStatic(this.c8, "")) {
|
|
56250
|
-
this.
|
|
56391
|
+
this.di(this.c8);
|
|
56251
56392
|
}
|
|
56252
56393
|
else {
|
|
56253
|
-
this.
|
|
56254
|
-
this.
|
|
56394
|
+
this.dj();
|
|
56395
|
+
this.d4(false);
|
|
56255
56396
|
}
|
|
56256
56397
|
if (this.d != null) {
|
|
56257
56398
|
this.d.update("OperatorType", igniteuiWebcomponentsCore.enumGetBox(ColumnComparisonConditionOperatorType_$type, this.ck.b));
|
|
56258
56399
|
}
|
|
56259
56400
|
};
|
|
56260
|
-
FilterCell.prototype.
|
|
56401
|
+
FilterCell.prototype.dn = function (a, b) {
|
|
56261
56402
|
if (b != null) {
|
|
56262
56403
|
if (!this.c1) {
|
|
56263
56404
|
this.ck.b = 0;
|
|
56264
|
-
this.
|
|
56405
|
+
this.dj();
|
|
56265
56406
|
}
|
|
56266
56407
|
}
|
|
56267
56408
|
this.c8 = null;
|
|
@@ -56270,7 +56411,7 @@
|
|
|
56270
56411
|
this.cr.value = null;
|
|
56271
56412
|
}
|
|
56272
56413
|
};
|
|
56273
|
-
FilterCell.prototype.
|
|
56414
|
+
FilterCell.prototype.d3 = function (a, b, c) {
|
|
56274
56415
|
if (this.cm == 2) {
|
|
56275
56416
|
if (typeof b === 'string') {
|
|
56276
56417
|
var d_1;
|
|
@@ -56281,8 +56422,8 @@
|
|
|
56281
56422
|
}
|
|
56282
56423
|
this.c8 = b;
|
|
56283
56424
|
};
|
|
56284
|
-
FilterCell.prototype.
|
|
56285
|
-
this.
|
|
56425
|
+
FilterCell.prototype.d5 = function (a, b, c, d) {
|
|
56426
|
+
this.d2(a, b, c, d);
|
|
56286
56427
|
};
|
|
56287
56428
|
FilterCell.prototype.co = function (a, b) {
|
|
56288
56429
|
if (a != null) {
|
|
@@ -56297,11 +56438,11 @@
|
|
|
56297
56438
|
}
|
|
56298
56439
|
return null;
|
|
56299
56440
|
};
|
|
56300
|
-
FilterCell.prototype.
|
|
56301
|
-
this.
|
|
56441
|
+
FilterCell.prototype.dl = function () {
|
|
56442
|
+
this.du();
|
|
56302
56443
|
};
|
|
56303
|
-
FilterCell.prototype.
|
|
56304
|
-
this.
|
|
56444
|
+
FilterCell.prototype.dk = function () {
|
|
56445
|
+
this.ds();
|
|
56305
56446
|
};
|
|
56306
56447
|
Object.defineProperty(FilterCell.prototype, "cj", {
|
|
56307
56448
|
get: function () {
|
|
@@ -56401,6 +56542,20 @@
|
|
|
56401
56542
|
enumerable: true,
|
|
56402
56543
|
configurable: true
|
|
56403
56544
|
});
|
|
56545
|
+
Object.defineProperty(FilterCell.prototype, "d7", {
|
|
56546
|
+
get: function () {
|
|
56547
|
+
return this.d6;
|
|
56548
|
+
},
|
|
56549
|
+
set: function (a) {
|
|
56550
|
+
var b = this.d6;
|
|
56551
|
+
this.d6 = a;
|
|
56552
|
+
if (b != this.d6) {
|
|
56553
|
+
this.bp("TextColor", b, this.d6);
|
|
56554
|
+
}
|
|
56555
|
+
},
|
|
56556
|
+
enumerable: true,
|
|
56557
|
+
configurable: true
|
|
56558
|
+
});
|
|
56404
56559
|
FilterCell.$t = igniteuiWebcomponentsCore.markType(FilterCell, 'FilterCell', GridCellBase.$);
|
|
56405
56560
|
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";
|
|
56406
56561
|
return FilterCell;
|
|
@@ -56448,16 +56603,19 @@
|
|
|
56448
56603
|
}
|
|
56449
56604
|
if (b.a3(FilterCellModel.l5)) {
|
|
56450
56605
|
if (b.lu) {
|
|
56451
|
-
this.d.
|
|
56606
|
+
this.d.dl();
|
|
56452
56607
|
}
|
|
56453
56608
|
else {
|
|
56454
|
-
this.d.
|
|
56609
|
+
this.d.dk();
|
|
56455
56610
|
}
|
|
56456
56611
|
}
|
|
56612
|
+
if (b.a3(FilterCellModel.eg)) {
|
|
56613
|
+
this.d.d7 = b.k2;
|
|
56614
|
+
}
|
|
56457
56615
|
}
|
|
56458
56616
|
if (a.be || a.bj) {
|
|
56459
56617
|
if (b.a3(FilterCellModel.gw) || b.a3(FilterCellModel.gx) || b.a3(FilterCellModel.gv) || b.a3(FilterCellModel.fd)) {
|
|
56460
|
-
this.d.
|
|
56618
|
+
this.d.d5(b.cl, b.cm, b.gu, b.fc);
|
|
56461
56619
|
}
|
|
56462
56620
|
}
|
|
56463
56621
|
};
|
|
@@ -71340,6 +71498,7 @@
|
|
|
71340
71498
|
if (null != f) {
|
|
71341
71499
|
f.zv = this.dy;
|
|
71342
71500
|
f.zt = this.di;
|
|
71501
|
+
f.zu = this.di;
|
|
71343
71502
|
}
|
|
71344
71503
|
this.m.ad();
|
|
71345
71504
|
break;
|
|
@@ -80234,6 +80393,7 @@
|
|
|
80234
80393
|
this.e.aa = this.m;
|
|
80235
80394
|
this.e.dy = this.ba;
|
|
80236
80395
|
this.e.y = this.i;
|
|
80396
|
+
this.e.di = this.a9;
|
|
80237
80397
|
this.e.as = false;
|
|
80238
80398
|
this.e.aq = false;
|
|
80239
80399
|
this.e.an = false;
|
|
@@ -80399,18 +80559,18 @@
|
|
|
80399
80559
|
this.o = ((function () { var d = GridColumnOptionsUtilities.f(_this.n, _this.e, GridColumnSummaryOptionsView.r, 1, _this.n.p, _this.n.j, new igniteuiWebcomponentsCore.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; })());
|
|
80400
80560
|
c_1.setStyleProperty("transform", "rotate(-90deg)");
|
|
80401
80561
|
this.g.append(this.o);
|
|
80402
|
-
this.n.
|
|
80562
|
+
this.n.ck(a_1);
|
|
80403
80563
|
}
|
|
80404
80564
|
if (this.n.bx == null) {
|
|
80405
80565
|
var d = new SummaryChooser();
|
|
80406
80566
|
d.a2(this.e);
|
|
80407
|
-
this.n.
|
|
80567
|
+
this.n.co(d);
|
|
80408
80568
|
var e = this.e.createElement("div");
|
|
80409
80569
|
var f = this.e.getSubRenderer(e);
|
|
80410
80570
|
var g = new igniteuiWebcomponentsCore.Popup();
|
|
80411
80571
|
g.provideRenderer(f);
|
|
80412
80572
|
g.appendPopupContent(d.c.container);
|
|
80413
|
-
this.n.
|
|
80573
|
+
this.n.cl(g);
|
|
80414
80574
|
}
|
|
80415
80575
|
document.addEventListener("mousedown", igniteuiWebcomponentsCore.runOn(this, this.s), false);
|
|
80416
80576
|
};
|
|
@@ -80454,7 +80614,7 @@
|
|
|
80454
80614
|
return (window.innerWidth);
|
|
80455
80615
|
};
|
|
80456
80616
|
GridColumnSummaryOptionsView.prototype.s = function (e_) {
|
|
80457
|
-
this.n.
|
|
80617
|
+
this.n.cj();
|
|
80458
80618
|
};
|
|
80459
80619
|
GridColumnSummaryOptionsView.$t = igniteuiWebcomponentsCore.markType(GridColumnSummaryOptionsView, 'GridColumnSummaryOptionsView', GridColumnOptionsViewBase.$);
|
|
80460
80620
|
GridColumnSummaryOptionsView.r = "M16.59 8.59L12 13.17 7.41 8.59 6 10l6 6 6-6z";
|
|
@@ -80474,6 +80634,8 @@
|
|
|
80474
80634
|
_this.b2 = 0;
|
|
80475
80635
|
_this.b1 = 0;
|
|
80476
80636
|
_this.b6 = 0;
|
|
80637
|
+
_this.ct = igniteuiWebcomponentsCore.BrushUtil.g(255, 24, 29, 31);
|
|
80638
|
+
_this.cs = igniteuiWebcomponentsCore.BrushUtil.g(255, 248, 248, 248);
|
|
80477
80639
|
return _this;
|
|
80478
80640
|
}
|
|
80479
80641
|
GridColumnSummaryOptions.prototype.f = function () {
|
|
@@ -80493,9 +80655,11 @@
|
|
|
80493
80655
|
case "ActualSummaryListDensity":
|
|
80494
80656
|
case "BackgroundColor":
|
|
80495
80657
|
case "TextColor":
|
|
80496
|
-
|
|
80497
|
-
|
|
80658
|
+
case "SummaryListTextColor":
|
|
80659
|
+
case "SummaryListBackground":
|
|
80660
|
+
this.cq();
|
|
80498
80661
|
this.cp();
|
|
80662
|
+
this.cr();
|
|
80499
80663
|
break;
|
|
80500
80664
|
case "SummaryListDensity":
|
|
80501
80665
|
this.b3 = this.b5 == 0 ? this.q : this.b5;
|
|
@@ -80708,47 +80872,76 @@
|
|
|
80708
80872
|
enumerable: true,
|
|
80709
80873
|
configurable: true
|
|
80710
80874
|
});
|
|
80711
|
-
GridColumnSummaryOptions.prototype
|
|
80875
|
+
Object.defineProperty(GridColumnSummaryOptions.prototype, "cv", {
|
|
80876
|
+
get: function () {
|
|
80877
|
+
return this.ct;
|
|
80878
|
+
},
|
|
80879
|
+
set: function (a) {
|
|
80880
|
+
var b = this.ct;
|
|
80881
|
+
this.ct = a;
|
|
80882
|
+
if (b != this.ct) {
|
|
80883
|
+
this.bc("SummaryListTextColor", b, this.ct);
|
|
80884
|
+
}
|
|
80885
|
+
},
|
|
80886
|
+
enumerable: true,
|
|
80887
|
+
configurable: true
|
|
80888
|
+
});
|
|
80889
|
+
Object.defineProperty(GridColumnSummaryOptions.prototype, "cu", {
|
|
80890
|
+
get: function () {
|
|
80891
|
+
return this.cs;
|
|
80892
|
+
},
|
|
80893
|
+
set: function (a) {
|
|
80894
|
+
var b = this.cs;
|
|
80895
|
+
this.cs = a;
|
|
80896
|
+
if (b != this.cs) {
|
|
80897
|
+
this.bc("SummaryListBackground", b, this.cs);
|
|
80898
|
+
}
|
|
80899
|
+
},
|
|
80900
|
+
enumerable: true,
|
|
80901
|
+
configurable: true
|
|
80902
|
+
});
|
|
80903
|
+
GridColumnSummaryOptions.prototype.cj = function () {
|
|
80712
80904
|
if (this.b0 != null && this.b0.t) {
|
|
80713
80905
|
this.b0.ao();
|
|
80714
80906
|
}
|
|
80715
80907
|
};
|
|
80716
|
-
GridColumnSummaryOptions.prototype.
|
|
80908
|
+
GridColumnSummaryOptions.prototype.ck = function (a) {
|
|
80717
80909
|
if (this.by != null) {
|
|
80718
80910
|
var b = this.by;
|
|
80719
|
-
b.clicked = igniteuiWebcomponentsCore.delegateRemove(b.clicked, igniteuiWebcomponentsCore.runOn(this, this.
|
|
80911
|
+
b.clicked = igniteuiWebcomponentsCore.delegateRemove(b.clicked, igniteuiWebcomponentsCore.runOn(this, this.cm));
|
|
80720
80912
|
}
|
|
80721
80913
|
this.by = a;
|
|
80722
80914
|
if (this.by != null) {
|
|
80723
80915
|
var c = this.by;
|
|
80724
|
-
c.clicked = igniteuiWebcomponentsCore.delegateCombine(c.clicked, igniteuiWebcomponentsCore.runOn(this, this.
|
|
80916
|
+
c.clicked = igniteuiWebcomponentsCore.delegateCombine(c.clicked, igniteuiWebcomponentsCore.runOn(this, this.cm));
|
|
80725
80917
|
}
|
|
80726
|
-
this.
|
|
80918
|
+
this.cp();
|
|
80727
80919
|
};
|
|
80728
|
-
GridColumnSummaryOptions.prototype.
|
|
80920
|
+
GridColumnSummaryOptions.prototype.cl = function (a) {
|
|
80729
80921
|
this.b0 = a;
|
|
80730
|
-
this.
|
|
80922
|
+
this.cr();
|
|
80731
80923
|
};
|
|
80732
|
-
GridColumnSummaryOptions.prototype.
|
|
80924
|
+
GridColumnSummaryOptions.prototype.co = function (a) {
|
|
80733
80925
|
if (this.bw != null) {
|
|
80734
80926
|
var b = this.bw;
|
|
80735
|
-
b.summaryChanged = igniteuiWebcomponentsCore.delegateRemove(b.summaryChanged, igniteuiWebcomponentsCore.runOn(this, this.
|
|
80927
|
+
b.summaryChanged = igniteuiWebcomponentsCore.delegateRemove(b.summaryChanged, igniteuiWebcomponentsCore.runOn(this, this.cn));
|
|
80736
80928
|
}
|
|
80737
80929
|
this.bw = a;
|
|
80738
80930
|
if (this.bw != null) {
|
|
80739
80931
|
var c = this.bw;
|
|
80740
|
-
c.summaryChanged = igniteuiWebcomponentsCore.delegateCombine(c.summaryChanged, igniteuiWebcomponentsCore.runOn(this, this.
|
|
80932
|
+
c.summaryChanged = igniteuiWebcomponentsCore.delegateCombine(c.summaryChanged, igniteuiWebcomponentsCore.runOn(this, this.cn));
|
|
80741
80933
|
}
|
|
80742
|
-
this.
|
|
80934
|
+
this.cq();
|
|
80743
80935
|
};
|
|
80744
|
-
GridColumnSummaryOptions.prototype.
|
|
80936
|
+
GridColumnSummaryOptions.prototype.cq = function () {
|
|
80745
80937
|
if (this.bw != null) {
|
|
80746
80938
|
this.bw.j = this.i;
|
|
80747
80939
|
this.bw.n = this.b3;
|
|
80748
|
-
this.bw.ba = this.
|
|
80940
|
+
this.bw.ba = this.cv;
|
|
80941
|
+
this.bw.a9 = this.cu;
|
|
80749
80942
|
}
|
|
80750
80943
|
};
|
|
80751
|
-
GridColumnSummaryOptions.prototype.
|
|
80944
|
+
GridColumnSummaryOptions.prototype.cp = function () {
|
|
80752
80945
|
if (this.by != null) {
|
|
80753
80946
|
this.by.ef = 0;
|
|
80754
80947
|
this.by.ak = false;
|
|
@@ -80756,13 +80949,13 @@
|
|
|
80756
80949
|
this.bh(this.by);
|
|
80757
80950
|
}
|
|
80758
80951
|
};
|
|
80759
|
-
GridColumnSummaryOptions.prototype.
|
|
80952
|
+
GridColumnSummaryOptions.prototype.cr = function () {
|
|
80760
80953
|
if (this.b0 != null) {
|
|
80761
80954
|
this.b0.a8 = this.bo;
|
|
80762
80955
|
this.b0.q = false;
|
|
80763
80956
|
}
|
|
80764
80957
|
};
|
|
80765
|
-
GridColumnSummaryOptions.prototype.
|
|
80958
|
+
GridColumnSummaryOptions.prototype.cm = function (a, b) {
|
|
80766
80959
|
if (this.b0 == null) {
|
|
80767
80960
|
return;
|
|
80768
80961
|
}
|
|
@@ -80785,7 +80978,7 @@
|
|
|
80785
80978
|
this.b0.showRelativeToExclusionRect(d, 1, 0);
|
|
80786
80979
|
}
|
|
80787
80980
|
};
|
|
80788
|
-
GridColumnSummaryOptions.prototype.
|
|
80981
|
+
GridColumnSummaryOptions.prototype.cn = function (a, b) {
|
|
80789
80982
|
if (b.a) {
|
|
80790
80983
|
this.b7++;
|
|
80791
80984
|
}
|
|
@@ -80959,6 +81152,28 @@
|
|
|
80959
81152
|
enumerable: true,
|
|
80960
81153
|
configurable: true
|
|
80961
81154
|
});
|
|
81155
|
+
Object.defineProperty(IgcGridColumnSummaryOptionsComponent.prototype, "summaryListTextColor", {
|
|
81156
|
+
get: function () {
|
|
81157
|
+
return igniteuiWebcomponentsCore.brushToString(this.i.cv);
|
|
81158
|
+
},
|
|
81159
|
+
set: function (v) {
|
|
81160
|
+
this.i.cv = igniteuiWebcomponentsCore.stringToBrush(v);
|
|
81161
|
+
this._a("summaryListTextColor", igniteuiWebcomponentsCore.brushToString(this.i.cv));
|
|
81162
|
+
},
|
|
81163
|
+
enumerable: true,
|
|
81164
|
+
configurable: true
|
|
81165
|
+
});
|
|
81166
|
+
Object.defineProperty(IgcGridColumnSummaryOptionsComponent.prototype, "summaryListBackground", {
|
|
81167
|
+
get: function () {
|
|
81168
|
+
return igniteuiWebcomponentsCore.brushToString(this.i.cu);
|
|
81169
|
+
},
|
|
81170
|
+
set: function (v) {
|
|
81171
|
+
this.i.cu = igniteuiWebcomponentsCore.stringToBrush(v);
|
|
81172
|
+
this._a("summaryListBackground", igniteuiWebcomponentsCore.brushToString(this.i.cu));
|
|
81173
|
+
},
|
|
81174
|
+
enumerable: true,
|
|
81175
|
+
configurable: true
|
|
81176
|
+
});
|
|
80962
81177
|
IgcGridColumnSummaryOptionsComponent.prototype.onApply = function () {
|
|
80963
81178
|
this.i.bt();
|
|
80964
81179
|
};
|
|
@@ -80966,7 +81181,7 @@
|
|
|
80966
81181
|
this.i.bu();
|
|
80967
81182
|
};
|
|
80968
81183
|
IgcGridColumnSummaryOptionsComponent.prototype.closeMenu = function () {
|
|
80969
|
-
this.i.
|
|
81184
|
+
this.i.cj();
|
|
80970
81185
|
};
|
|
80971
81186
|
IgcGridColumnSummaryOptionsComponent._observedAttributesIgcGridColumnSummaryOptionsComponent = null;
|
|
80972
81187
|
IgcGridColumnSummaryOptionsComponent.htmlTagName = "igc-grid-column-summary-options";
|
|
@@ -81716,6 +81931,8 @@
|
|
|
81716
81931
|
_this.b5 = 0;
|
|
81717
81932
|
_this.b3 = 0;
|
|
81718
81933
|
_this.d0 = null;
|
|
81934
|
+
_this.fk = igniteuiWebcomponentsCore.BrushUtil.g(255, 24, 29, 31);
|
|
81935
|
+
_this.fj = igniteuiWebcomponentsCore.BrushUtil.g(255, 248, 248, 248);
|
|
81719
81936
|
_this.applyButtonClick = null;
|
|
81720
81937
|
_this.cancelButtonClick = null;
|
|
81721
81938
|
return _this;
|
|
@@ -81747,14 +81964,14 @@
|
|
|
81747
81964
|
if (null != this.b2) {
|
|
81748
81965
|
this.b2.column = a;
|
|
81749
81966
|
}
|
|
81750
|
-
this.
|
|
81967
|
+
this.fi();
|
|
81751
81968
|
};
|
|
81752
81969
|
GridColumnOptions.prototype.bb = function (a, b) {
|
|
81753
81970
|
_super.prototype.bb.call(this, a, b);
|
|
81754
81971
|
switch (b.propertyName) {
|
|
81755
81972
|
case "HeaderClickAction":
|
|
81756
81973
|
case "ColumnMovingMode":
|
|
81757
|
-
this.
|
|
81974
|
+
this.fi();
|
|
81758
81975
|
break;
|
|
81759
81976
|
}
|
|
81760
81977
|
};
|
|
@@ -81771,7 +81988,7 @@
|
|
|
81771
81988
|
case "PaddingRight":
|
|
81772
81989
|
case "PaddingBottom":
|
|
81773
81990
|
case "PaddingLeft":
|
|
81774
|
-
this.
|
|
81991
|
+
this.fi();
|
|
81775
81992
|
break;
|
|
81776
81993
|
case "ActualLabelTextStyle":
|
|
81777
81994
|
case "ActualBaseTheme":
|
|
@@ -81782,13 +81999,13 @@
|
|
|
81782
81999
|
case "ActualSummaryListDensity":
|
|
81783
82000
|
case "BackgroundColor":
|
|
81784
82001
|
case "TextColor":
|
|
81785
|
-
this.
|
|
82002
|
+
this.fg();
|
|
81786
82003
|
break;
|
|
81787
82004
|
case "ColumnNameTextStyle":
|
|
81788
|
-
this.
|
|
82005
|
+
this.fh();
|
|
81789
82006
|
break;
|
|
81790
82007
|
case "ActualColumnNameTextStyle":
|
|
81791
|
-
this.
|
|
82008
|
+
this.fi();
|
|
81792
82009
|
break;
|
|
81793
82010
|
case "FilterListDensity":
|
|
81794
82011
|
this.b7 = this.filterListDensity == 0 ? this.q : this.filterListDensity;
|
|
@@ -81798,7 +82015,7 @@
|
|
|
81798
82015
|
break;
|
|
81799
82016
|
}
|
|
81800
82017
|
};
|
|
81801
|
-
GridColumnOptions.prototype.
|
|
82018
|
+
GridColumnOptions.prototype.fi = function () {
|
|
81802
82019
|
this.bz.m();
|
|
81803
82020
|
};
|
|
81804
82021
|
Object.defineProperty(GridColumnOptions.prototype, "dx", {
|
|
@@ -82378,6 +82595,34 @@
|
|
|
82378
82595
|
enumerable: true,
|
|
82379
82596
|
configurable: true
|
|
82380
82597
|
});
|
|
82598
|
+
Object.defineProperty(GridColumnOptions.prototype, "fm", {
|
|
82599
|
+
get: function () {
|
|
82600
|
+
return this.fk;
|
|
82601
|
+
},
|
|
82602
|
+
set: function (a) {
|
|
82603
|
+
var b = this.fk;
|
|
82604
|
+
this.fk = a;
|
|
82605
|
+
if (b != this.fk) {
|
|
82606
|
+
this.bc("SummaryListTextColor", b, this.fk);
|
|
82607
|
+
}
|
|
82608
|
+
},
|
|
82609
|
+
enumerable: true,
|
|
82610
|
+
configurable: true
|
|
82611
|
+
});
|
|
82612
|
+
Object.defineProperty(GridColumnOptions.prototype, "fl", {
|
|
82613
|
+
get: function () {
|
|
82614
|
+
return this.fj;
|
|
82615
|
+
},
|
|
82616
|
+
set: function (a) {
|
|
82617
|
+
var b = this.fj;
|
|
82618
|
+
this.fj = a;
|
|
82619
|
+
if (b != this.fj) {
|
|
82620
|
+
this.bc("SummaryListBackground", b, this.fj);
|
|
82621
|
+
}
|
|
82622
|
+
},
|
|
82623
|
+
enumerable: true,
|
|
82624
|
+
configurable: true
|
|
82625
|
+
});
|
|
82381
82626
|
GridColumnOptions.prototype.notifySizeChanged = function () {
|
|
82382
82627
|
this.e.j();
|
|
82383
82628
|
};
|
|
@@ -82403,37 +82648,37 @@
|
|
|
82403
82648
|
this.bv.b7 = this.dv;
|
|
82404
82649
|
this.bv.cc = this.d1;
|
|
82405
82650
|
var t = this.b1;
|
|
82406
|
-
t.propertyChanged = igniteuiWebcomponentsCore.delegateCombine(t.propertyChanged, igniteuiWebcomponentsCore.runOn(this, this.
|
|
82651
|
+
t.propertyChanged = igniteuiWebcomponentsCore.delegateCombine(t.propertyChanged, igniteuiWebcomponentsCore.runOn(this, this.fb));
|
|
82407
82652
|
var u = this.by;
|
|
82408
|
-
u.propertyChanged = igniteuiWebcomponentsCore.delegateCombine(u.propertyChanged, igniteuiWebcomponentsCore.runOn(this, this.
|
|
82653
|
+
u.propertyChanged = igniteuiWebcomponentsCore.delegateCombine(u.propertyChanged, igniteuiWebcomponentsCore.runOn(this, this.fb));
|
|
82409
82654
|
var v = this.b0;
|
|
82410
|
-
v.propertyChanged = igniteuiWebcomponentsCore.delegateCombine(v.propertyChanged, igniteuiWebcomponentsCore.runOn(this, this.
|
|
82655
|
+
v.propertyChanged = igniteuiWebcomponentsCore.delegateCombine(v.propertyChanged, igniteuiWebcomponentsCore.runOn(this, this.fb));
|
|
82411
82656
|
var w = this.bx;
|
|
82412
|
-
w.propertyChanged = igniteuiWebcomponentsCore.delegateCombine(w.propertyChanged, igniteuiWebcomponentsCore.runOn(this, this.
|
|
82657
|
+
w.propertyChanged = igniteuiWebcomponentsCore.delegateCombine(w.propertyChanged, igniteuiWebcomponentsCore.runOn(this, this.fb));
|
|
82413
82658
|
var x = this.bw;
|
|
82414
|
-
x.propertyChanged = igniteuiWebcomponentsCore.delegateCombine(x.propertyChanged, igniteuiWebcomponentsCore.runOn(this, this.
|
|
82659
|
+
x.propertyChanged = igniteuiWebcomponentsCore.delegateCombine(x.propertyChanged, igniteuiWebcomponentsCore.runOn(this, this.fb));
|
|
82415
82660
|
var y = this.bv;
|
|
82416
|
-
y.propertyChanged = igniteuiWebcomponentsCore.delegateCombine(y.propertyChanged, igniteuiWebcomponentsCore.runOn(this, this.
|
|
82661
|
+
y.propertyChanged = igniteuiWebcomponentsCore.delegateCombine(y.propertyChanged, igniteuiWebcomponentsCore.runOn(this, this.fb));
|
|
82417
82662
|
this.b2 = r;
|
|
82418
82663
|
this.bu = s;
|
|
82419
82664
|
this.bu.bz = this.dp;
|
|
82420
82665
|
this.bu.b3 = this.ds;
|
|
82421
82666
|
var z = this.bu;
|
|
82422
|
-
z.applyButtonClick = igniteuiWebcomponentsCore.delegateCombine(z.applyButtonClick, igniteuiWebcomponentsCore.runOn(this, this.
|
|
82667
|
+
z.applyButtonClick = igniteuiWebcomponentsCore.delegateCombine(z.applyButtonClick, igniteuiWebcomponentsCore.runOn(this, this.fd));
|
|
82423
82668
|
var aa = this.bu;
|
|
82424
|
-
aa.cancelButtonClick = igniteuiWebcomponentsCore.delegateCombine(aa.cancelButtonClick, igniteuiWebcomponentsCore.runOn(this, this.
|
|
82425
|
-
this.
|
|
82669
|
+
aa.cancelButtonClick = igniteuiWebcomponentsCore.delegateCombine(aa.cancelButtonClick, igniteuiWebcomponentsCore.runOn(this, this.fe));
|
|
82670
|
+
this.fh();
|
|
82426
82671
|
this.bl();
|
|
82427
82672
|
this.bi();
|
|
82428
|
-
this.
|
|
82673
|
+
this.fg();
|
|
82429
82674
|
};
|
|
82430
82675
|
GridColumnOptions.prototype.d5 = function () {
|
|
82431
82676
|
return igniteuiWebcomponentsCore.stringFormat1("{0}px {1}px {2}px {3}px", this.dj.toString(), this.di.toString(), this.dg.toString(), this.dh.toString());
|
|
82432
82677
|
};
|
|
82433
|
-
GridColumnOptions.prototype.
|
|
82678
|
+
GridColumnOptions.prototype.fh = function () {
|
|
82434
82679
|
this.cf = (null == this.cg) ? this.ci : this.cg;
|
|
82435
82680
|
};
|
|
82436
|
-
GridColumnOptions.prototype.
|
|
82681
|
+
GridColumnOptions.prototype.fg = function () {
|
|
82437
82682
|
var a = [this.b1, this.by, this.b0, this.bx, this.bw, this.bv, this.b2, this.bu];
|
|
82438
82683
|
for (var c = 0; c < a.length; c++) {
|
|
82439
82684
|
var b = a[c];
|
|
@@ -82455,9 +82700,11 @@
|
|
|
82455
82700
|
}
|
|
82456
82701
|
if (null != this.b2) {
|
|
82457
82702
|
this.b2.b5 = this.b8;
|
|
82703
|
+
this.b2.cv = this.fm;
|
|
82704
|
+
this.b2.cu = this.fl;
|
|
82458
82705
|
}
|
|
82459
82706
|
};
|
|
82460
|
-
GridColumnOptions.prototype.
|
|
82707
|
+
GridColumnOptions.prototype.fd = function (a, b) {
|
|
82461
82708
|
var c = [this.b1, this.by, this.b0, this.bx, this.bw, this.bv, this.b2];
|
|
82462
82709
|
for (var e = 0; e < c.length; e++) {
|
|
82463
82710
|
var d = c[e];
|
|
@@ -82467,7 +82714,7 @@
|
|
|
82467
82714
|
this.applyButtonClick(this, b);
|
|
82468
82715
|
}
|
|
82469
82716
|
};
|
|
82470
|
-
GridColumnOptions.prototype.
|
|
82717
|
+
GridColumnOptions.prototype.fe = function (a, b) {
|
|
82471
82718
|
var c = [this.b1, this.by, this.b0, this.bx, this.bw, this.bv, this.b2];
|
|
82472
82719
|
for (var e = 0; e < c.length; e++) {
|
|
82473
82720
|
var d = c[e];
|
|
@@ -82477,7 +82724,7 @@
|
|
|
82477
82724
|
this.cancelButtonClick(this, b);
|
|
82478
82725
|
}
|
|
82479
82726
|
};
|
|
82480
|
-
GridColumnOptions.prototype.
|
|
82727
|
+
GridColumnOptions.prototype.fb = function (a, b) {
|
|
82481
82728
|
switch (b.propertyName) {
|
|
82482
82729
|
}
|
|
82483
82730
|
};
|
|
@@ -83084,6 +83331,34 @@
|
|
|
83084
83331
|
enumerable: true,
|
|
83085
83332
|
configurable: true
|
|
83086
83333
|
});
|
|
83334
|
+
Object.defineProperty(IgcGridColumnOptionsComponent.prototype, "summaryListTextColor", {
|
|
83335
|
+
/**
|
|
83336
|
+
* Gets or sets the text color for the summary options menu.
|
|
83337
|
+
*/
|
|
83338
|
+
get: function () {
|
|
83339
|
+
return igniteuiWebcomponentsCore.brushToString(this.i.fm);
|
|
83340
|
+
},
|
|
83341
|
+
set: function (v) {
|
|
83342
|
+
this.i.fm = igniteuiWebcomponentsCore.stringToBrush(v);
|
|
83343
|
+
this._a("summaryListTextColor", igniteuiWebcomponentsCore.brushToString(this.i.fm));
|
|
83344
|
+
},
|
|
83345
|
+
enumerable: true,
|
|
83346
|
+
configurable: true
|
|
83347
|
+
});
|
|
83348
|
+
Object.defineProperty(IgcGridColumnOptionsComponent.prototype, "summaryListBackground", {
|
|
83349
|
+
/**
|
|
83350
|
+
* Gets or sets the background color for the summary options menu.
|
|
83351
|
+
*/
|
|
83352
|
+
get: function () {
|
|
83353
|
+
return igniteuiWebcomponentsCore.brushToString(this.i.fl);
|
|
83354
|
+
},
|
|
83355
|
+
set: function (v) {
|
|
83356
|
+
this.i.fl = igniteuiWebcomponentsCore.stringToBrush(v);
|
|
83357
|
+
this._a("summaryListBackground", igniteuiWebcomponentsCore.brushToString(this.i.fl));
|
|
83358
|
+
},
|
|
83359
|
+
enumerable: true,
|
|
83360
|
+
configurable: true
|
|
83361
|
+
});
|
|
83087
83362
|
Object.defineProperty(IgcGridColumnOptionsComponent.prototype, "applyButtonClick", {
|
|
83088
83363
|
get: function () {
|
|
83089
83364
|
return this._applyButtonClick;
|
|
@@ -91739,6 +92014,8 @@
|
|
|
91739
92014
|
_this._valueChanged_wrapped = null;
|
|
91740
92015
|
_this._opening = null;
|
|
91741
92016
|
_this._opening_wrapped = null;
|
|
92017
|
+
_this._opened = null;
|
|
92018
|
+
_this._opened_wrapped = null;
|
|
91742
92019
|
_this._closing = null;
|
|
91743
92020
|
_this._closing_wrapped = null;
|
|
91744
92021
|
if (_this._styling) {
|
|
@@ -91878,10 +92155,10 @@
|
|
|
91878
92155
|
* Gets the ID for the custom filter that is selected. Value must be 'Custom' for this property to be valid.
|
|
91879
92156
|
*/
|
|
91880
92157
|
get: function () {
|
|
91881
|
-
return this.i.
|
|
92158
|
+
return this.i.ae;
|
|
91882
92159
|
},
|
|
91883
92160
|
set: function (v) {
|
|
91884
|
-
this.i.
|
|
92161
|
+
this.i.ae = v;
|
|
91885
92162
|
},
|
|
91886
92163
|
enumerable: true,
|
|
91887
92164
|
configurable: true
|
|
@@ -91891,11 +92168,11 @@
|
|
|
91891
92168
|
* Gets the index for the custom filter that is selected. Value must be 'Custom' for this property to be valid.
|
|
91892
92169
|
*/
|
|
91893
92170
|
get: function () {
|
|
91894
|
-
return this.i.
|
|
92171
|
+
return this.i.x;
|
|
91895
92172
|
},
|
|
91896
92173
|
set: function (v) {
|
|
91897
|
-
this.i.
|
|
91898
|
-
this._a("customFilterIndex", this.i.
|
|
92174
|
+
this.i.x = +v;
|
|
92175
|
+
this._a("customFilterIndex", this.i.x);
|
|
91899
92176
|
},
|
|
91900
92177
|
enumerable: true,
|
|
91901
92178
|
configurable: true
|
|
@@ -91916,305 +92193,333 @@
|
|
|
91916
92193
|
});
|
|
91917
92194
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "maxHeight", {
|
|
91918
92195
|
get: function () {
|
|
91919
|
-
return this.i.
|
|
92196
|
+
return this.i.z;
|
|
92197
|
+
},
|
|
92198
|
+
set: function (v) {
|
|
92199
|
+
this.i.z = +v;
|
|
92200
|
+
this._a("maxHeight", this.i.z);
|
|
92201
|
+
},
|
|
92202
|
+
enumerable: true,
|
|
92203
|
+
configurable: true
|
|
92204
|
+
});
|
|
92205
|
+
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "textColor", {
|
|
92206
|
+
/**
|
|
92207
|
+
* Gets or sets the text color.
|
|
92208
|
+
*/
|
|
92209
|
+
get: function () {
|
|
92210
|
+
return igniteuiWebcomponentsCore.brushToString(this.i.eq);
|
|
91920
92211
|
},
|
|
91921
92212
|
set: function (v) {
|
|
91922
|
-
this.i.
|
|
91923
|
-
this._a("
|
|
92213
|
+
this.i.eq = igniteuiWebcomponentsCore.stringToBrush(v);
|
|
92214
|
+
this._a("textColor", igniteuiWebcomponentsCore.brushToString(this.i.eq));
|
|
92215
|
+
},
|
|
92216
|
+
enumerable: true,
|
|
92217
|
+
configurable: true
|
|
92218
|
+
});
|
|
92219
|
+
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "background", {
|
|
92220
|
+
/**
|
|
92221
|
+
* Gets or sets the background color.
|
|
92222
|
+
*/
|
|
92223
|
+
get: function () {
|
|
92224
|
+
return igniteuiWebcomponentsCore.brushToString(this.i.ep);
|
|
92225
|
+
},
|
|
92226
|
+
set: function (v) {
|
|
92227
|
+
this.i.ep = igniteuiWebcomponentsCore.stringToBrush(v);
|
|
92228
|
+
this._a("background", igniteuiWebcomponentsCore.brushToString(this.i.ep));
|
|
91924
92229
|
},
|
|
91925
92230
|
enumerable: true,
|
|
91926
92231
|
configurable: true
|
|
91927
92232
|
});
|
|
91928
92233
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionTrue", {
|
|
91929
92234
|
get: function () {
|
|
91930
|
-
return this.i.
|
|
92235
|
+
return this.i.dd;
|
|
91931
92236
|
},
|
|
91932
92237
|
enumerable: true,
|
|
91933
92238
|
configurable: true
|
|
91934
92239
|
});
|
|
91935
92240
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionFalse", {
|
|
91936
92241
|
get: function () {
|
|
91937
|
-
return this.i.
|
|
92242
|
+
return this.i.ck;
|
|
91938
92243
|
},
|
|
91939
92244
|
enumerable: true,
|
|
91940
92245
|
configurable: true
|
|
91941
92246
|
});
|
|
91942
92247
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionEquals", {
|
|
91943
92248
|
get: function () {
|
|
91944
|
-
return this.i.
|
|
92249
|
+
return this.i.cj;
|
|
91945
92250
|
},
|
|
91946
92251
|
enumerable: true,
|
|
91947
92252
|
configurable: true
|
|
91948
92253
|
});
|
|
91949
92254
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionNotEquals", {
|
|
91950
92255
|
get: function () {
|
|
91951
|
-
return this.i.
|
|
92256
|
+
return this.i.cz;
|
|
91952
92257
|
},
|
|
91953
92258
|
enumerable: true,
|
|
91954
92259
|
configurable: true
|
|
91955
92260
|
});
|
|
91956
92261
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionLessThan", {
|
|
91957
92262
|
get: function () {
|
|
91958
|
-
return this.i.
|
|
92263
|
+
return this.i.cr;
|
|
91959
92264
|
},
|
|
91960
92265
|
enumerable: true,
|
|
91961
92266
|
configurable: true
|
|
91962
92267
|
});
|
|
91963
92268
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionLessThanOrEqual", {
|
|
91964
92269
|
get: function () {
|
|
91965
|
-
return this.i.
|
|
92270
|
+
return this.i.cs;
|
|
91966
92271
|
},
|
|
91967
92272
|
enumerable: true,
|
|
91968
92273
|
configurable: true
|
|
91969
92274
|
});
|
|
91970
92275
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionGreaterThan", {
|
|
91971
92276
|
get: function () {
|
|
91972
|
-
return this.i.
|
|
92277
|
+
return this.i.cl;
|
|
91973
92278
|
},
|
|
91974
92279
|
enumerable: true,
|
|
91975
92280
|
configurable: true
|
|
91976
92281
|
});
|
|
91977
92282
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionGreaterThanOrEqual", {
|
|
91978
92283
|
get: function () {
|
|
91979
|
-
return this.i.
|
|
92284
|
+
return this.i.cm;
|
|
91980
92285
|
},
|
|
91981
92286
|
enumerable: true,
|
|
91982
92287
|
configurable: true
|
|
91983
92288
|
});
|
|
91984
92289
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionTop", {
|
|
91985
92290
|
get: function () {
|
|
91986
|
-
return this.i.
|
|
92291
|
+
return this.i.db;
|
|
91987
92292
|
},
|
|
91988
92293
|
enumerable: true,
|
|
91989
92294
|
configurable: true
|
|
91990
92295
|
});
|
|
91991
92296
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionBottom", {
|
|
91992
92297
|
get: function () {
|
|
91993
|
-
return this.i.
|
|
92298
|
+
return this.i.cb;
|
|
91994
92299
|
},
|
|
91995
92300
|
enumerable: true,
|
|
91996
92301
|
configurable: true
|
|
91997
92302
|
});
|
|
91998
92303
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionTopPercentile", {
|
|
91999
92304
|
get: function () {
|
|
92000
|
-
return this.i.
|
|
92305
|
+
return this.i.dc;
|
|
92001
92306
|
},
|
|
92002
92307
|
enumerable: true,
|
|
92003
92308
|
configurable: true
|
|
92004
92309
|
});
|
|
92005
92310
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionBottomPercentile", {
|
|
92006
92311
|
get: function () {
|
|
92007
|
-
return this.i.
|
|
92312
|
+
return this.i.cc;
|
|
92008
92313
|
},
|
|
92009
92314
|
enumerable: true,
|
|
92010
92315
|
configurable: true
|
|
92011
92316
|
});
|
|
92012
92317
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionToday", {
|
|
92013
92318
|
get: function () {
|
|
92014
|
-
return this.i.
|
|
92319
|
+
return this.i.c9;
|
|
92015
92320
|
},
|
|
92016
92321
|
enumerable: true,
|
|
92017
92322
|
configurable: true
|
|
92018
92323
|
});
|
|
92019
92324
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionTomorrow", {
|
|
92020
92325
|
get: function () {
|
|
92021
|
-
return this.i.
|
|
92326
|
+
return this.i.da;
|
|
92022
92327
|
},
|
|
92023
92328
|
enumerable: true,
|
|
92024
92329
|
configurable: true
|
|
92025
92330
|
});
|
|
92026
92331
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionYesterday", {
|
|
92027
92332
|
get: function () {
|
|
92028
|
-
return this.i.
|
|
92333
|
+
return this.i.dg;
|
|
92029
92334
|
},
|
|
92030
92335
|
enumerable: true,
|
|
92031
92336
|
configurable: true
|
|
92032
92337
|
});
|
|
92033
92338
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionThisWeek", {
|
|
92034
92339
|
get: function () {
|
|
92035
|
-
return this.i.
|
|
92340
|
+
return this.i.c7;
|
|
92036
92341
|
},
|
|
92037
92342
|
enumerable: true,
|
|
92038
92343
|
configurable: true
|
|
92039
92344
|
});
|
|
92040
92345
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionNextWeek", {
|
|
92041
92346
|
get: function () {
|
|
92042
|
-
return this.i.
|
|
92347
|
+
return this.i.cw;
|
|
92043
92348
|
},
|
|
92044
92349
|
enumerable: true,
|
|
92045
92350
|
configurable: true
|
|
92046
92351
|
});
|
|
92047
92352
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionLastWeek", {
|
|
92048
92353
|
get: function () {
|
|
92049
|
-
return this.i.
|
|
92354
|
+
return this.i.cp;
|
|
92050
92355
|
},
|
|
92051
92356
|
enumerable: true,
|
|
92052
92357
|
configurable: true
|
|
92053
92358
|
});
|
|
92054
92359
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionThisMonth", {
|
|
92055
92360
|
get: function () {
|
|
92056
|
-
return this.i.
|
|
92361
|
+
return this.i.c5;
|
|
92057
92362
|
},
|
|
92058
92363
|
enumerable: true,
|
|
92059
92364
|
configurable: true
|
|
92060
92365
|
});
|
|
92061
92366
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionNextMonth", {
|
|
92062
92367
|
get: function () {
|
|
92063
|
-
return this.i.
|
|
92368
|
+
return this.i.cu;
|
|
92064
92369
|
},
|
|
92065
92370
|
enumerable: true,
|
|
92066
92371
|
configurable: true
|
|
92067
92372
|
});
|
|
92068
92373
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionLastMonth", {
|
|
92069
92374
|
get: function () {
|
|
92070
|
-
return this.i.
|
|
92375
|
+
return this.i.cn;
|
|
92071
92376
|
},
|
|
92072
92377
|
enumerable: true,
|
|
92073
92378
|
configurable: true
|
|
92074
92379
|
});
|
|
92075
92380
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionThisQuarter", {
|
|
92076
92381
|
get: function () {
|
|
92077
|
-
return this.i.
|
|
92382
|
+
return this.i.c6;
|
|
92078
92383
|
},
|
|
92079
92384
|
enumerable: true,
|
|
92080
92385
|
configurable: true
|
|
92081
92386
|
});
|
|
92082
92387
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionNextQuarter", {
|
|
92083
92388
|
get: function () {
|
|
92084
|
-
return this.i.
|
|
92389
|
+
return this.i.cv;
|
|
92085
92390
|
},
|
|
92086
92391
|
enumerable: true,
|
|
92087
92392
|
configurable: true
|
|
92088
92393
|
});
|
|
92089
92394
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionLastQuarter", {
|
|
92090
92395
|
get: function () {
|
|
92091
|
-
return this.i.
|
|
92396
|
+
return this.i.co;
|
|
92092
92397
|
},
|
|
92093
92398
|
enumerable: true,
|
|
92094
92399
|
configurable: true
|
|
92095
92400
|
});
|
|
92096
92401
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionThisYear", {
|
|
92097
92402
|
get: function () {
|
|
92098
|
-
return this.i.
|
|
92403
|
+
return this.i.c8;
|
|
92099
92404
|
},
|
|
92100
92405
|
enumerable: true,
|
|
92101
92406
|
configurable: true
|
|
92102
92407
|
});
|
|
92103
92408
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionNextYear", {
|
|
92104
92409
|
get: function () {
|
|
92105
|
-
return this.i.
|
|
92410
|
+
return this.i.cx;
|
|
92106
92411
|
},
|
|
92107
92412
|
enumerable: true,
|
|
92108
92413
|
configurable: true
|
|
92109
92414
|
});
|
|
92110
92415
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionLastYear", {
|
|
92111
92416
|
get: function () {
|
|
92112
|
-
return this.i.
|
|
92417
|
+
return this.i.cq;
|
|
92113
92418
|
},
|
|
92114
92419
|
enumerable: true,
|
|
92115
92420
|
configurable: true
|
|
92116
92421
|
});
|
|
92117
92422
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionYearToDate", {
|
|
92118
92423
|
get: function () {
|
|
92119
|
-
return this.i.
|
|
92424
|
+
return this.i.df;
|
|
92120
92425
|
},
|
|
92121
92426
|
enumerable: true,
|
|
92122
92427
|
configurable: true
|
|
92123
92428
|
});
|
|
92124
92429
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionQ1", {
|
|
92125
92430
|
get: function () {
|
|
92126
|
-
return this.i.
|
|
92431
|
+
return this.i.c0;
|
|
92127
92432
|
},
|
|
92128
92433
|
enumerable: true,
|
|
92129
92434
|
configurable: true
|
|
92130
92435
|
});
|
|
92131
92436
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionQ2", {
|
|
92132
92437
|
get: function () {
|
|
92133
|
-
return this.i.
|
|
92438
|
+
return this.i.c1;
|
|
92134
92439
|
},
|
|
92135
92440
|
enumerable: true,
|
|
92136
92441
|
configurable: true
|
|
92137
92442
|
});
|
|
92138
92443
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionQ3", {
|
|
92139
92444
|
get: function () {
|
|
92140
|
-
return this.i.
|
|
92445
|
+
return this.i.c2;
|
|
92141
92446
|
},
|
|
92142
92447
|
enumerable: true,
|
|
92143
92448
|
configurable: true
|
|
92144
92449
|
});
|
|
92145
92450
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionQ4", {
|
|
92146
92451
|
get: function () {
|
|
92147
|
-
return this.i.
|
|
92452
|
+
return this.i.c3;
|
|
92148
92453
|
},
|
|
92149
92454
|
enumerable: true,
|
|
92150
92455
|
configurable: true
|
|
92151
92456
|
});
|
|
92152
92457
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionMonth", {
|
|
92153
92458
|
get: function () {
|
|
92154
|
-
return this.i.
|
|
92459
|
+
return this.i.ct;
|
|
92155
92460
|
},
|
|
92156
92461
|
enumerable: true,
|
|
92157
92462
|
configurable: true
|
|
92158
92463
|
});
|
|
92159
92464
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionYear", {
|
|
92160
92465
|
get: function () {
|
|
92161
|
-
return this.i.
|
|
92466
|
+
return this.i.de;
|
|
92162
92467
|
},
|
|
92163
92468
|
enumerable: true,
|
|
92164
92469
|
configurable: true
|
|
92165
92470
|
});
|
|
92166
92471
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionStartsWith", {
|
|
92167
92472
|
get: function () {
|
|
92168
|
-
return this.i.
|
|
92473
|
+
return this.i.c4;
|
|
92169
92474
|
},
|
|
92170
92475
|
enumerable: true,
|
|
92171
92476
|
configurable: true
|
|
92172
92477
|
});
|
|
92173
92478
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionDoesNotStartWith", {
|
|
92174
92479
|
get: function () {
|
|
92175
|
-
return this.i.
|
|
92480
|
+
return this.i.cg;
|
|
92176
92481
|
},
|
|
92177
92482
|
enumerable: true,
|
|
92178
92483
|
configurable: true
|
|
92179
92484
|
});
|
|
92180
92485
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionEndsWith", {
|
|
92181
92486
|
get: function () {
|
|
92182
|
-
return this.i.
|
|
92487
|
+
return this.i.ci;
|
|
92183
92488
|
},
|
|
92184
92489
|
enumerable: true,
|
|
92185
92490
|
configurable: true
|
|
92186
92491
|
});
|
|
92187
92492
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionDoesNotEndWith", {
|
|
92188
92493
|
get: function () {
|
|
92189
|
-
return this.i.
|
|
92494
|
+
return this.i.cf;
|
|
92190
92495
|
},
|
|
92191
92496
|
enumerable: true,
|
|
92192
92497
|
configurable: true
|
|
92193
92498
|
});
|
|
92194
92499
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionContains", {
|
|
92195
92500
|
get: function () {
|
|
92196
|
-
return this.i.
|
|
92501
|
+
return this.i.cd;
|
|
92197
92502
|
},
|
|
92198
92503
|
enumerable: true,
|
|
92199
92504
|
configurable: true
|
|
92200
92505
|
});
|
|
92201
92506
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionDoesNotContain", {
|
|
92202
92507
|
get: function () {
|
|
92203
|
-
return this.i.
|
|
92508
|
+
return this.i.ce;
|
|
92204
92509
|
},
|
|
92205
92510
|
enumerable: true,
|
|
92206
92511
|
configurable: true
|
|
92207
92512
|
});
|
|
92208
92513
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionEmpty", {
|
|
92209
92514
|
get: function () {
|
|
92210
|
-
return this.i.
|
|
92515
|
+
return this.i.ch;
|
|
92211
92516
|
},
|
|
92212
92517
|
enumerable: true,
|
|
92213
92518
|
configurable: true
|
|
92214
92519
|
});
|
|
92215
92520
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "operatorCaptionNotEmpty", {
|
|
92216
92521
|
get: function () {
|
|
92217
|
-
return this.i.
|
|
92522
|
+
return this.i.cy;
|
|
92218
92523
|
},
|
|
92219
92524
|
enumerable: true,
|
|
92220
92525
|
configurable: true
|
|
@@ -92285,29 +92590,29 @@
|
|
|
92285
92590
|
this._inStyling = false;
|
|
92286
92591
|
};
|
|
92287
92592
|
IgcDataGridComparisonOperatorSelectorComponent.prototype.provideContainer = function (container) {
|
|
92288
|
-
this.i.
|
|
92593
|
+
this.i.ej(container);
|
|
92289
92594
|
};
|
|
92290
92595
|
IgcDataGridComparisonOperatorSelectorComponent.prototype.dispose = function () {
|
|
92291
|
-
this.i.
|
|
92596
|
+
this.i.ea();
|
|
92292
92597
|
};
|
|
92293
92598
|
IgcDataGridComparisonOperatorSelectorComponent.prototype.getDropdownHeight = function () {
|
|
92294
|
-
var iv = this.i.
|
|
92599
|
+
var iv = this.i.y();
|
|
92295
92600
|
return (iv);
|
|
92296
92601
|
};
|
|
92297
92602
|
IgcDataGridComparisonOperatorSelectorComponent.prototype.toggle = function () {
|
|
92298
|
-
this.i.
|
|
92603
|
+
this.i.em();
|
|
92299
92604
|
};
|
|
92300
92605
|
IgcDataGridComparisonOperatorSelectorComponent.prototype.close = function () {
|
|
92301
|
-
this.i.
|
|
92606
|
+
this.i.d8();
|
|
92302
92607
|
};
|
|
92303
92608
|
IgcDataGridComparisonOperatorSelectorComponent.prototype.addCustomOperator = function (name, icon, id, index) {
|
|
92304
|
-
this.i.
|
|
92609
|
+
this.i.d1(name, icon, id, index);
|
|
92305
92610
|
};
|
|
92306
92611
|
IgcDataGridComparisonOperatorSelectorComponent.prototype.clearCustomOperators = function () {
|
|
92307
|
-
this.i.
|
|
92612
|
+
this.i.d7();
|
|
92308
92613
|
};
|
|
92309
92614
|
IgcDataGridComparisonOperatorSelectorComponent.prototype.selectCustomFilter = function (id, index) {
|
|
92310
|
-
this.i.
|
|
92615
|
+
this.i.ek(id, index);
|
|
92311
92616
|
};
|
|
92312
92617
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "valueChanged", {
|
|
92313
92618
|
get: function () {
|
|
@@ -92365,6 +92670,34 @@
|
|
|
92365
92670
|
enumerable: true,
|
|
92366
92671
|
configurable: true
|
|
92367
92672
|
});
|
|
92673
|
+
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "opened", {
|
|
92674
|
+
get: function () {
|
|
92675
|
+
return this._opened;
|
|
92676
|
+
},
|
|
92677
|
+
set: function (ev) {
|
|
92678
|
+
var _this = this;
|
|
92679
|
+
if (this._opened_wrapped !== null) {
|
|
92680
|
+
this.i.opened = igniteuiWebcomponentsCore.delegateRemove(this.i.opened, this._opened_wrapped);
|
|
92681
|
+
this._opened_wrapped = null;
|
|
92682
|
+
this._opened = null;
|
|
92683
|
+
}
|
|
92684
|
+
this._opened = ev;
|
|
92685
|
+
this._opened_wrapped = function (o, e) {
|
|
92686
|
+
var outerArgs = new IgcOperatorSelectorOpeningEventArgs();
|
|
92687
|
+
outerArgs._provideImplementation(e);
|
|
92688
|
+
if (_this.beforeOpened) {
|
|
92689
|
+
_this.beforeOpened(_this, outerArgs);
|
|
92690
|
+
}
|
|
92691
|
+
if (_this._opened) {
|
|
92692
|
+
_this._opened(_this, outerArgs);
|
|
92693
|
+
}
|
|
92694
|
+
};
|
|
92695
|
+
this.i.opened = igniteuiWebcomponentsCore.delegateCombine(this.i.opened, this._opened_wrapped);
|
|
92696
|
+
;
|
|
92697
|
+
},
|
|
92698
|
+
enumerable: true,
|
|
92699
|
+
configurable: true
|
|
92700
|
+
});
|
|
92368
92701
|
Object.defineProperty(IgcDataGridComparisonOperatorSelectorComponent.prototype, "closing", {
|
|
92369
92702
|
get: function () {
|
|
92370
92703
|
return this._closing;
|