igniteui-webcomponents-grids 4.0.4 → 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 +2059 -1378
- package/bundles/igniteui-webcomponents-grids.umd.min.js +1 -1
- package/esm2015/lib/BaseEditorView.js +30 -14
- package/esm2015/lib/CanvasGridCellBase.js +26 -26
- package/esm2015/lib/CanvasSummaryCell.js +2 -2
- package/esm2015/lib/CanvasTextHeaderCell.js +1 -1
- package/esm2015/lib/CheckboxListView_combined.js +553 -389
- package/esm2015/lib/ColumnChooserView_combined.js +9 -9
- package/esm2015/lib/ColumnFilterCondition_combined.js +32 -0
- package/esm2015/lib/ColumnGroupingView_combined.js +1 -1
- package/esm2015/lib/ColumnPinningView_combined.js +7 -7
- package/esm2015/lib/ComboEditorView.js +111 -105
- package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +401 -344
- package/esm2015/lib/DataGridCellLayoutPanel.js +5 -5
- package/esm2015/lib/DateEditorView.js +94 -87
- package/esm2015/lib/EditorCell.js +11 -11
- package/esm2015/lib/FilterCell.js +77 -61
- package/esm2015/lib/FilterCellPresenter.js +6 -3
- package/esm2015/lib/GridColumnFilterOptionsView_combined.js +8 -8
- package/esm2015/lib/GridColumnOptionsView_combined.js +47 -22
- package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +51 -25
- package/esm2015/lib/GridExpansionIndicatorView_combined.js +8 -8
- package/esm2015/lib/GridFilterDialogView_combined.js +5 -5
- package/esm2015/lib/GridSortIndicatorView_combined.js +9 -9
- package/esm2015/lib/ISummaryChooserView_combined.js +12 -11
- package/esm2015/lib/MultiColumnComboBoxView_combined.js +19 -19
- package/esm2015/lib/NumericEditorView.js +3 -3
- package/esm2015/lib/PropertyEditorView_combined.js +40 -40
- package/esm2015/lib/TextEditorView.js +82 -75
- package/esm2015/lib/igc-checkbox-list-component.js +155 -50
- 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/CanvasGridCellBase.js +26 -26
- package/esm5/lib/CanvasSummaryCell.js +2 -2
- package/esm5/lib/CanvasTextHeaderCell.js +1 -1
- package/esm5/lib/CheckboxListView_combined.js +579 -375
- package/esm5/lib/ColumnChooserView_combined.js +9 -9
- package/esm5/lib/ColumnFilterCondition_combined.js +32 -0
- package/esm5/lib/ColumnGroupingView_combined.js +1 -1
- package/esm5/lib/ColumnPinningView_combined.js +7 -7
- package/esm5/lib/ComboEditorView.js +108 -102
- package/esm5/lib/ComparisonOperatorSelectorView_combined.js +408 -343
- package/esm5/lib/DataGridCellLayoutPanel.js +5 -5
- package/esm5/lib/DateEditorView.js +93 -86
- package/esm5/lib/EditorCell.js +11 -11
- package/esm5/lib/FilterCell.js +81 -61
- package/esm5/lib/FilterCellPresenter.js +6 -3
- package/esm5/lib/GridColumnFilterOptionsView_combined.js +8 -8
- package/esm5/lib/GridColumnOptionsView_combined.js +55 -22
- package/esm5/lib/GridColumnSummaryOptionsView_combined.js +59 -25
- package/esm5/lib/GridExpansionIndicatorView_combined.js +8 -8
- package/esm5/lib/GridFilterDialogView_combined.js +5 -5
- package/esm5/lib/GridSortIndicatorView_combined.js +9 -9
- package/esm5/lib/ISummaryChooserView_combined.js +12 -11
- package/esm5/lib/MultiColumnComboBoxView_combined.js +19 -19
- package/esm5/lib/NumericEditorView.js +3 -3
- package/esm5/lib/PropertyEditorView_combined.js +40 -40
- package/esm5/lib/TextEditorView.js +82 -75
- package/esm5/lib/igc-checkbox-list-component.js +195 -50
- 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 +1935 -1395
- package/fesm5/igniteui-webcomponents-grids.js +2057 -1376
- package/grids/3rdpartylicenses.txt +445 -0
- package/grids/combined.js +44 -90
- package/grids/index.d.ts +15 -0
- package/grids/lib/common.d.ts +0 -4
- package/grids/lib/grid-toolbar-exporter-type.d.ts +3 -0
- package/grids/lib/igc-base-date-time-filtering-operand.d.ts +18 -0
- package/grids/lib/igc-base-toolbar-column-actions-directive.d.ts +2 -1
- package/grids/lib/igc-boolean-filtering-operand.d.ts +20 -0
- package/grids/lib/igc-cell-template-context.d.ts +2 -1
- package/grids/lib/igc-column-component.d.ts +3 -2
- package/grids/lib/igc-columns-auto-generated-event-args.d.ts +21 -0
- package/grids/lib/igc-date-filtering-operand.d.ts +20 -0
- package/grids/lib/igc-date-summary-operand.d.ts +75 -0
- package/grids/lib/igc-date-time-filtering-operand.d.ts +15 -0
- package/grids/lib/igc-display-density-base.d.ts +1 -1
- package/grids/lib/igc-exporter-options-base.d.ts +2 -0
- package/grids/lib/igc-filtering-expression.d.ts +33 -0
- package/grids/lib/igc-filtering-expressions-tree.d.ts +6 -4
- package/grids/lib/igc-filtering-operand.d.ts +4 -2
- package/grids/lib/igc-filtering-operation.d.ts +4 -0
- package/grids/lib/igc-grid-base-directive.d.ts +23 -2
- package/grids/lib/igc-grid-component.d.ts +4 -4
- 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-grid-toolbar-exporter-component.d.ts +2 -1
- package/grids/lib/igc-grouped-records.d.ts +1 -1
- package/grids/lib/igc-number-filtering-operand.d.ts +20 -0
- package/grids/lib/igc-number-summary-operand.d.ts +104 -0
- package/grids/lib/igc-pivot-date-dimension.d.ts +1 -20
- package/grids/lib/igc-pivot-grid-component.d.ts +12 -0
- package/grids/lib/igc-row-data-event-args.d.ts +4 -0
- package/grids/lib/igc-sorting-options.d.ts +3 -2
- package/grids/lib/igc-string-filtering-operand.d.ts +29 -0
- package/grids/lib/igc-summary-operand.d.ts +61 -0
- package/grids/lib/igc-time-filtering-operand.d.ts +15 -0
- package/grids/lib/igc-time-summary-operand.d.ts +49 -0
- package/grids/lib/sorting-options-mode.d.ts +3 -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/CheckboxListView_combined.d.ts +120 -96
- 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 +105 -96
- 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 +14 -9
- package/lib/IEditorView.d.ts +2 -0
- package/lib/TextEditorView.d.ts +10 -9
- package/lib/igc-checkbox-list-component.d.ts +40 -0
- 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
|
@@ -9,7 +9,7 @@ import { Base, String_$type, runOn, delegateRemove, delegateCombine, markType, I
|
|
|
9
9
|
import { Dictionary$2 } from "igniteui-webcomponents-core";
|
|
10
10
|
import { XIcon } from "igniteui-webcomponents-inputs";
|
|
11
11
|
import { OperatorSelectorOpeningEventArgs } from "./OperatorSelectorOpeningEventArgs";
|
|
12
|
-
import { Popup } from "igniteui-webcomponents-
|
|
12
|
+
import { Popup } from "igniteui-webcomponents-core";
|
|
13
13
|
import { Rect } from "igniteui-webcomponents-core";
|
|
14
14
|
import { OperatorModel } from "./OperatorModel";
|
|
15
15
|
import { BaseDOMEventProxy } from "igniteui-webcomponents-core";
|
|
@@ -21,6 +21,8 @@ import { ColumnComparisonConditionOperatorType_$type } from "./ColumnComparisonC
|
|
|
21
21
|
import { DataSourceSchemaPropertyType_$type } from "igniteui-webcomponents-core";
|
|
22
22
|
import { OperatorSelectorValueChangedEventArgs } from "./OperatorSelectorValueChangedEventArgs";
|
|
23
23
|
import { TextColumn } from "./TextColumn";
|
|
24
|
+
import { CornerRadius } from "igniteui-webcomponents-core";
|
|
25
|
+
import { Thickness } from "igniteui-webcomponents-core";
|
|
24
26
|
import { ColumnWidth } from "./ColumnWidth";
|
|
25
27
|
import { stringIsNullOrWhiteSpace } from "igniteui-webcomponents-core";
|
|
26
28
|
/**
|
|
@@ -47,24 +49,28 @@ var ComparisonOperatorSelectorView = /** @class */ /*@__PURE__*/ (function (_sup
|
|
|
47
49
|
_this.l = 240;
|
|
48
50
|
return _this;
|
|
49
51
|
}
|
|
50
|
-
ComparisonOperatorSelectorView.prototype.
|
|
52
|
+
ComparisonOperatorSelectorView.prototype.u = function (a) {
|
|
51
53
|
var _this = this;
|
|
52
54
|
if (a == null) {
|
|
53
55
|
var b = this.a;
|
|
54
|
-
b.opening = delegateRemove(b.opening, runOn(this, this.
|
|
56
|
+
b.opening = delegateRemove(b.opening, runOn(this, this.s));
|
|
55
57
|
var c = this.a;
|
|
56
|
-
c.
|
|
58
|
+
c.opened = delegateRemove(c.opened, runOn(this, this.r));
|
|
59
|
+
var d = this.a;
|
|
60
|
+
d.closing = delegateRemove(d.closing, runOn(this, this.n));
|
|
57
61
|
return;
|
|
58
62
|
}
|
|
59
|
-
var d = this.a;
|
|
60
|
-
d.opening = delegateCombine(d.opening, runOn(this, this.r));
|
|
61
63
|
var e = this.a;
|
|
62
|
-
e.
|
|
64
|
+
e.opening = delegateCombine(e.opening, runOn(this, this.s));
|
|
65
|
+
var f = this.a;
|
|
66
|
+
f.opened = delegateCombine(f.opened, runOn(this, this.r));
|
|
67
|
+
var g = this.a;
|
|
68
|
+
g.closing = delegateCombine(g.closing, runOn(this, this.n));
|
|
63
69
|
this.g = a;
|
|
64
70
|
this.d = new Popup();
|
|
65
71
|
this.d.provideRenderer(this.g);
|
|
66
72
|
this.i = this.g.createElement("div");
|
|
67
|
-
this.i.
|
|
73
|
+
this.i.addClass("ig-comparison-operator-selector");
|
|
68
74
|
this.i.setStyleProperty("width", this.l + "px");
|
|
69
75
|
this.d.appendPopupContent(this.i);
|
|
70
76
|
this.h = this.g.createElement("div");
|
|
@@ -74,15 +80,15 @@ var ComparisonOperatorSelectorView = /** @class */ /*@__PURE__*/ (function (_sup
|
|
|
74
80
|
this.h.setStyleProperty("cursor", "pointer");
|
|
75
81
|
this.g.append(this.h);
|
|
76
82
|
this.h.listen("mousedown", runOn(this, this.q));
|
|
77
|
-
this.g.getPortal(this.i, "DataGrid", function (
|
|
78
|
-
_this.m =
|
|
83
|
+
this.g.getPortal(this.i, "DataGrid", function (h) {
|
|
84
|
+
_this.m = h.componentRef;
|
|
79
85
|
_this.m.height = '100%';
|
|
80
86
|
_this.m.scrollbarStyle = 'Default';
|
|
81
87
|
_this.b = (_this.m.i);
|
|
82
|
-
_this.a.
|
|
88
|
+
_this.a.eb(_this.d, _this.c, _this.b);
|
|
83
89
|
}, false);
|
|
84
90
|
};
|
|
85
|
-
ComparisonOperatorSelectorView.prototype.
|
|
91
|
+
ComparisonOperatorSelectorView.prototype.w = function () {
|
|
86
92
|
var rect_ = this.h.getNativeElement().getBoundingClientRect();
|
|
87
93
|
var a = new Rect(4);
|
|
88
94
|
a.left = (rect_.left + window.pageXOffset);
|
|
@@ -109,7 +115,7 @@ var ComparisonOperatorSelectorView = /** @class */ /*@__PURE__*/ (function (_sup
|
|
|
109
115
|
}
|
|
110
116
|
return a;
|
|
111
117
|
};
|
|
112
|
-
ComparisonOperatorSelectorView.prototype.
|
|
118
|
+
ComparisonOperatorSelectorView.prototype.t = function (a, b) {
|
|
113
119
|
var c = a;
|
|
114
120
|
var d = null;
|
|
115
121
|
if (c.element.getChildCount() == 0) {
|
|
@@ -135,16 +141,22 @@ var ComparisonOperatorSelectorView = /** @class */ /*@__PURE__*/ (function (_sup
|
|
|
135
141
|
}
|
|
136
142
|
}
|
|
137
143
|
d.svgPath = b.Icon;
|
|
144
|
+
d.fill = this.a.eq;
|
|
138
145
|
};
|
|
139
146
|
ComparisonOperatorSelectorView.prototype.q = function (a) {
|
|
140
|
-
this.a.
|
|
147
|
+
this.a.em();
|
|
141
148
|
};
|
|
142
|
-
ComparisonOperatorSelectorView.prototype.
|
|
143
|
-
this.i.setStyleProperty("height", stringFormat("{0}px", this.a.
|
|
149
|
+
ComparisonOperatorSelectorView.prototype.s = function (a, b) {
|
|
150
|
+
this.i.setStyleProperty("height", stringFormat("{0}px", this.a.y()));
|
|
144
151
|
this.d.ar();
|
|
145
152
|
document.addEventListener("keydown", runOn(this, this.onDocumentKeyDown), false);
|
|
146
153
|
document.addEventListener("mousedown", runOn(this, this.onDocumentMouseDown), false);
|
|
147
154
|
};
|
|
155
|
+
ComparisonOperatorSelectorView.prototype.r = function (a, b) {
|
|
156
|
+
if ((this.m.notifyDOMInsertion !== undefined)) {
|
|
157
|
+
this.m.notifyDOMInsertion();
|
|
158
|
+
}
|
|
159
|
+
};
|
|
148
160
|
ComparisonOperatorSelectorView.prototype.n = function (a, b) {
|
|
149
161
|
document.removeEventListener("keydown", this.onDocumentKeyDown, false);
|
|
150
162
|
document.removeEventListener("mousedown", this.onDocumentMouseDown, false);
|
|
@@ -152,7 +164,7 @@ var ComparisonOperatorSelectorView = /** @class */ /*@__PURE__*/ (function (_sup
|
|
|
152
164
|
ComparisonOperatorSelectorView.prototype.onDocumentKeyDown = function (a) {
|
|
153
165
|
var b = a;
|
|
154
166
|
if (BaseDOMEventProxy.c0(b) == 8) {
|
|
155
|
-
this.a.
|
|
167
|
+
this.a.d8();
|
|
156
168
|
}
|
|
157
169
|
};
|
|
158
170
|
ComparisonOperatorSelectorView.prototype.onDocumentMouseDown = function (a) {
|
|
@@ -161,10 +173,10 @@ var ComparisonOperatorSelectorView = /** @class */ /*@__PURE__*/ (function (_sup
|
|
|
161
173
|
var d = this.g.rootWrapper.getNativeElement();
|
|
162
174
|
var e = this.i.getNativeElement();
|
|
163
175
|
if (!d.contains(c) && !e.contains(c)) {
|
|
164
|
-
this.a.
|
|
176
|
+
this.a.d8();
|
|
165
177
|
}
|
|
166
178
|
};
|
|
167
|
-
ComparisonOperatorSelectorView.prototype.
|
|
179
|
+
ComparisonOperatorSelectorView.prototype.v = function (a) {
|
|
168
180
|
this.m.dataSource = a;
|
|
169
181
|
};
|
|
170
182
|
ComparisonOperatorSelectorView.$t = markType(ComparisonOperatorSelectorView, 'ComparisonOperatorSelectorView');
|
|
@@ -179,52 +191,59 @@ var ComparisonOperatorSelector = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
179
191
|
function ComparisonOperatorSelector() {
|
|
180
192
|
var _this = _super.call(this) || this;
|
|
181
193
|
_this.propertyChanged = null;
|
|
182
|
-
_this.
|
|
194
|
+
_this.r = null;
|
|
183
195
|
_this.e = null;
|
|
196
|
+
_this.q = null;
|
|
184
197
|
_this.p = null;
|
|
185
198
|
_this.o = null;
|
|
186
|
-
_this.n = null;
|
|
187
199
|
_this.f = null;
|
|
188
|
-
_this.
|
|
200
|
+
_this.n = null;
|
|
201
|
+
_this.v = null;
|
|
189
202
|
_this.u = null;
|
|
190
|
-
_this.t = null;
|
|
191
203
|
_this.g = null;
|
|
192
|
-
_this.
|
|
204
|
+
_this.t = false;
|
|
193
205
|
_this.a = 0;
|
|
194
|
-
_this.
|
|
195
|
-
_this.
|
|
206
|
+
_this.ae = null;
|
|
207
|
+
_this.x = 0;
|
|
196
208
|
_this.c = 0;
|
|
197
|
-
_this.
|
|
209
|
+
_this.w = 250;
|
|
210
|
+
_this.eo = null;
|
|
211
|
+
_this.en = null;
|
|
198
212
|
_this.valueChanged = null;
|
|
199
213
|
_this.opening = null;
|
|
214
|
+
_this.opened = null;
|
|
200
215
|
_this.closing = null;
|
|
201
216
|
_this.e = new ComparisonOperatorSelectorView(_this);
|
|
202
|
-
_this.
|
|
217
|
+
_this.u = new List$1(OperatorModel.$, 0);
|
|
203
218
|
return _this;
|
|
204
219
|
}
|
|
205
|
-
ComparisonOperatorSelector.prototype.
|
|
206
|
-
this.
|
|
220
|
+
ComparisonOperatorSelector.prototype.eg = function (a, b, c) {
|
|
221
|
+
this.ei(a, b, c);
|
|
207
222
|
if (this.propertyChanged != null) {
|
|
208
223
|
this.propertyChanged(this, new PropertyChangedEventArgs(a));
|
|
209
224
|
}
|
|
210
225
|
};
|
|
211
|
-
ComparisonOperatorSelector.prototype.
|
|
226
|
+
ComparisonOperatorSelector.prototype.ei = function (a, b, c) {
|
|
212
227
|
switch (a) {
|
|
213
228
|
case "Value":
|
|
214
|
-
this.
|
|
229
|
+
this.eh(EnumUtil.getEnumValue(ColumnComparisonConditionOperatorType_$type, b), EnumUtil.getEnumValue(ColumnComparisonConditionOperatorType_$type, c));
|
|
215
230
|
break;
|
|
216
231
|
case "DataType":
|
|
217
|
-
this.
|
|
232
|
+
this.d4();
|
|
233
|
+
break;
|
|
234
|
+
case "TextColor":
|
|
235
|
+
case "Background":
|
|
236
|
+
this.ed();
|
|
218
237
|
break;
|
|
219
238
|
}
|
|
220
239
|
};
|
|
221
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
240
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "s", {
|
|
222
241
|
get: function () {
|
|
223
|
-
if (this.
|
|
224
|
-
this.
|
|
225
|
-
this.
|
|
242
|
+
if (this.r == null) {
|
|
243
|
+
this.r = new SRProvider(this.e.g);
|
|
244
|
+
this.r.cb("DataGrid");
|
|
226
245
|
}
|
|
227
|
-
return this.
|
|
246
|
+
return this.r;
|
|
228
247
|
},
|
|
229
248
|
enumerable: true,
|
|
230
249
|
configurable: true
|
|
@@ -237,10 +256,10 @@ var ComparisonOperatorSelector = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
237
256
|
this.g = a;
|
|
238
257
|
if (this.g != null) {
|
|
239
258
|
if (this.g.a == 44) {
|
|
240
|
-
this.
|
|
241
|
-
this.
|
|
259
|
+
this.ae = this.g.c;
|
|
260
|
+
this.x = this.g.b;
|
|
242
261
|
}
|
|
243
|
-
if (!this.
|
|
262
|
+
if (!this.t) {
|
|
244
263
|
this.b = this.g.a;
|
|
245
264
|
}
|
|
246
265
|
}
|
|
@@ -256,7 +275,7 @@ var ComparisonOperatorSelector = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
256
275
|
var b = this.a;
|
|
257
276
|
this.a = a;
|
|
258
277
|
if (b != this.a || this.a == 44) {
|
|
259
|
-
this.
|
|
278
|
+
this.eg("Value", enumGetBox(ColumnComparisonConditionOperatorType_$type, b), enumGetBox(ColumnComparisonConditionOperatorType_$type, this.a));
|
|
260
279
|
}
|
|
261
280
|
},
|
|
262
281
|
enumerable: true,
|
|
@@ -270,388 +289,417 @@ var ComparisonOperatorSelector = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
270
289
|
var b = this.c;
|
|
271
290
|
this.c = a;
|
|
272
291
|
if (b != this.c) {
|
|
273
|
-
this.
|
|
292
|
+
this.eg("DataType", enumGetBox(DataSourceSchemaPropertyType_$type, b), enumGetBox(DataSourceSchemaPropertyType_$type, this.c));
|
|
274
293
|
}
|
|
275
294
|
},
|
|
276
295
|
enumerable: true,
|
|
277
296
|
configurable: true
|
|
278
297
|
});
|
|
279
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
298
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "z", {
|
|
280
299
|
get: function () {
|
|
281
|
-
return this.
|
|
300
|
+
return this.w;
|
|
282
301
|
},
|
|
283
302
|
set: function (a) {
|
|
284
|
-
this.
|
|
303
|
+
this.w = a;
|
|
285
304
|
},
|
|
286
305
|
enumerable: true,
|
|
287
306
|
configurable: true
|
|
288
307
|
});
|
|
289
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
308
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "eq", {
|
|
290
309
|
get: function () {
|
|
291
|
-
|
|
310
|
+
return this.eo;
|
|
311
|
+
},
|
|
312
|
+
set: function (a) {
|
|
313
|
+
var b = this.eo;
|
|
314
|
+
this.eo = a;
|
|
315
|
+
if (b != this.eo) {
|
|
316
|
+
this.eg("TextColor", b, this.eo);
|
|
317
|
+
}
|
|
318
|
+
},
|
|
319
|
+
enumerable: true,
|
|
320
|
+
configurable: true
|
|
321
|
+
});
|
|
322
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "ep", {
|
|
323
|
+
get: function () {
|
|
324
|
+
return this.en;
|
|
325
|
+
},
|
|
326
|
+
set: function (a) {
|
|
327
|
+
var b = this.en;
|
|
328
|
+
this.en = a;
|
|
329
|
+
if (b != this.en) {
|
|
330
|
+
this.eg("Background", b, this.en);
|
|
331
|
+
}
|
|
332
|
+
},
|
|
333
|
+
enumerable: true,
|
|
334
|
+
configurable: true
|
|
335
|
+
});
|
|
336
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "dd", {
|
|
337
|
+
get: function () {
|
|
338
|
+
var a = this.s.b1("ComparisonOperator_True");
|
|
292
339
|
return !stringIsNullOrWhiteSpace(a) ? a : "True";
|
|
293
340
|
},
|
|
294
341
|
enumerable: true,
|
|
295
342
|
configurable: true
|
|
296
343
|
});
|
|
297
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
344
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "ck", {
|
|
298
345
|
get: function () {
|
|
299
|
-
var a = this.
|
|
346
|
+
var a = this.s.b1("ComparisonOperator_False");
|
|
300
347
|
return !stringIsNullOrWhiteSpace(a) ? a : "False";
|
|
301
348
|
},
|
|
302
349
|
enumerable: true,
|
|
303
350
|
configurable: true
|
|
304
351
|
});
|
|
305
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
352
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cj", {
|
|
306
353
|
get: function () {
|
|
307
|
-
var a = this.
|
|
354
|
+
var a = this.s.b1("ComparisonOperator_Equals");
|
|
308
355
|
return !stringIsNullOrWhiteSpace(a) ? a : "Equals";
|
|
309
356
|
},
|
|
310
357
|
enumerable: true,
|
|
311
358
|
configurable: true
|
|
312
359
|
});
|
|
313
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
360
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cz", {
|
|
314
361
|
get: function () {
|
|
315
|
-
var a = this.
|
|
362
|
+
var a = this.s.b1("ComparisonOperator_NotEquals");
|
|
316
363
|
return !stringIsNullOrWhiteSpace(a) ? a : "Not equals";
|
|
317
364
|
},
|
|
318
365
|
enumerable: true,
|
|
319
366
|
configurable: true
|
|
320
367
|
});
|
|
321
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
368
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cr", {
|
|
322
369
|
get: function () {
|
|
323
|
-
var a = this.
|
|
370
|
+
var a = this.s.b1("ComparisonOperator_LessThan");
|
|
324
371
|
return !stringIsNullOrWhiteSpace(a) ? a : "Less than";
|
|
325
372
|
},
|
|
326
373
|
enumerable: true,
|
|
327
374
|
configurable: true
|
|
328
375
|
});
|
|
329
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
376
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cs", {
|
|
330
377
|
get: function () {
|
|
331
|
-
var a = this.
|
|
378
|
+
var a = this.s.b1("ComparisonOperator_LessThanOrEqualTo");
|
|
332
379
|
return !stringIsNullOrWhiteSpace(a) ? a : "Less than or equal to";
|
|
333
380
|
},
|
|
334
381
|
enumerable: true,
|
|
335
382
|
configurable: true
|
|
336
383
|
});
|
|
337
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
384
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cl", {
|
|
338
385
|
get: function () {
|
|
339
|
-
var a = this.
|
|
386
|
+
var a = this.s.b1("ComparisonOperator_GreaterThan");
|
|
340
387
|
return !stringIsNullOrWhiteSpace(a) ? a : "Greater than";
|
|
341
388
|
},
|
|
342
389
|
enumerable: true,
|
|
343
390
|
configurable: true
|
|
344
391
|
});
|
|
345
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
392
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cm", {
|
|
346
393
|
get: function () {
|
|
347
|
-
var a = this.
|
|
394
|
+
var a = this.s.b1("ComparisonOperator_GreaterThanOrEqualTo");
|
|
348
395
|
return !stringIsNullOrWhiteSpace(a) ? a : "Greater than or equal to";
|
|
349
396
|
},
|
|
350
397
|
enumerable: true,
|
|
351
398
|
configurable: true
|
|
352
399
|
});
|
|
353
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
400
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "db", {
|
|
354
401
|
get: function () {
|
|
355
|
-
var a = this.
|
|
402
|
+
var a = this.s.b1("ComparisonOperator_Top");
|
|
356
403
|
return !stringIsNullOrWhiteSpace(a) ? a : "Top";
|
|
357
404
|
},
|
|
358
405
|
enumerable: true,
|
|
359
406
|
configurable: true
|
|
360
407
|
});
|
|
361
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
408
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cb", {
|
|
362
409
|
get: function () {
|
|
363
|
-
var a = this.
|
|
410
|
+
var a = this.s.b1("ComparisonOperator_Bottom");
|
|
364
411
|
return !stringIsNullOrWhiteSpace(a) ? a : "Bottom";
|
|
365
412
|
},
|
|
366
413
|
enumerable: true,
|
|
367
414
|
configurable: true
|
|
368
415
|
});
|
|
369
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
416
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "dc", {
|
|
370
417
|
get: function () {
|
|
371
|
-
var a = this.
|
|
418
|
+
var a = this.s.b1("ComparisonOperator_TopPercentile");
|
|
372
419
|
return !stringIsNullOrWhiteSpace(a) ? a : "Top percentile";
|
|
373
420
|
},
|
|
374
421
|
enumerable: true,
|
|
375
422
|
configurable: true
|
|
376
423
|
});
|
|
377
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
424
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cc", {
|
|
378
425
|
get: function () {
|
|
379
|
-
var a = this.
|
|
426
|
+
var a = this.s.b1("ComparisonOperator_BottomPercentile");
|
|
380
427
|
return !stringIsNullOrWhiteSpace(a) ? a : "Bottom percentile";
|
|
381
428
|
},
|
|
382
429
|
enumerable: true,
|
|
383
430
|
configurable: true
|
|
384
431
|
});
|
|
385
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
432
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c9", {
|
|
386
433
|
get: function () {
|
|
387
|
-
var a = this.
|
|
434
|
+
var a = this.s.b1("ComparisonOperator_Today");
|
|
388
435
|
return !stringIsNullOrWhiteSpace(a) ? a : "Today";
|
|
389
436
|
},
|
|
390
437
|
enumerable: true,
|
|
391
438
|
configurable: true
|
|
392
439
|
});
|
|
393
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
440
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "da", {
|
|
394
441
|
get: function () {
|
|
395
|
-
var a = this.
|
|
442
|
+
var a = this.s.b1("ComparisonOperator_Tomorrow");
|
|
396
443
|
return !stringIsNullOrWhiteSpace(a) ? a : "Tomorrow";
|
|
397
444
|
},
|
|
398
445
|
enumerable: true,
|
|
399
446
|
configurable: true
|
|
400
447
|
});
|
|
401
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
448
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "dg", {
|
|
402
449
|
get: function () {
|
|
403
|
-
var a = this.
|
|
450
|
+
var a = this.s.b1("ComparisonOperator_Yesterday");
|
|
404
451
|
return !stringIsNullOrWhiteSpace(a) ? a : "Yesterday";
|
|
405
452
|
},
|
|
406
453
|
enumerable: true,
|
|
407
454
|
configurable: true
|
|
408
455
|
});
|
|
409
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
456
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c7", {
|
|
410
457
|
get: function () {
|
|
411
|
-
var a = this.
|
|
458
|
+
var a = this.s.b1("ComparisonOperator_ThisWeek");
|
|
412
459
|
return !stringIsNullOrWhiteSpace(a) ? a : "This week";
|
|
413
460
|
},
|
|
414
461
|
enumerable: true,
|
|
415
462
|
configurable: true
|
|
416
463
|
});
|
|
417
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
464
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cw", {
|
|
418
465
|
get: function () {
|
|
419
|
-
var a = this.
|
|
466
|
+
var a = this.s.b1("ComparisonOperator_NextWeek");
|
|
420
467
|
return !stringIsNullOrWhiteSpace(a) ? a : "Next week";
|
|
421
468
|
},
|
|
422
469
|
enumerable: true,
|
|
423
470
|
configurable: true
|
|
424
471
|
});
|
|
425
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
472
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cp", {
|
|
426
473
|
get: function () {
|
|
427
|
-
var a = this.
|
|
474
|
+
var a = this.s.b1("ComparisonOperator_LastWeek");
|
|
428
475
|
return !stringIsNullOrWhiteSpace(a) ? a : "Last week";
|
|
429
476
|
},
|
|
430
477
|
enumerable: true,
|
|
431
478
|
configurable: true
|
|
432
479
|
});
|
|
433
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
480
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c5", {
|
|
434
481
|
get: function () {
|
|
435
|
-
var a = this.
|
|
482
|
+
var a = this.s.b1("ComparisonOperator_ThisMonth");
|
|
436
483
|
return !stringIsNullOrWhiteSpace(a) ? a : "This month";
|
|
437
484
|
},
|
|
438
485
|
enumerable: true,
|
|
439
486
|
configurable: true
|
|
440
487
|
});
|
|
441
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
488
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cu", {
|
|
442
489
|
get: function () {
|
|
443
|
-
var a = this.
|
|
490
|
+
var a = this.s.b1("ComparisonOperator_NextMonth");
|
|
444
491
|
return !stringIsNullOrWhiteSpace(a) ? a : "Next month";
|
|
445
492
|
},
|
|
446
493
|
enumerable: true,
|
|
447
494
|
configurable: true
|
|
448
495
|
});
|
|
449
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
496
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cn", {
|
|
450
497
|
get: function () {
|
|
451
|
-
var a = this.
|
|
498
|
+
var a = this.s.b1("ComparisonOperator_LastMonth");
|
|
452
499
|
return !stringIsNullOrWhiteSpace(a) ? a : "Last month";
|
|
453
500
|
},
|
|
454
501
|
enumerable: true,
|
|
455
502
|
configurable: true
|
|
456
503
|
});
|
|
457
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
504
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c6", {
|
|
458
505
|
get: function () {
|
|
459
|
-
var a = this.
|
|
506
|
+
var a = this.s.b1("ComparisonOperator_ThisQuarter");
|
|
460
507
|
return !stringIsNullOrWhiteSpace(a) ? a : "This quarter";
|
|
461
508
|
},
|
|
462
509
|
enumerable: true,
|
|
463
510
|
configurable: true
|
|
464
511
|
});
|
|
465
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
512
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cv", {
|
|
466
513
|
get: function () {
|
|
467
|
-
var a = this.
|
|
514
|
+
var a = this.s.b1("ComparisonOperator_NextQuarter");
|
|
468
515
|
return !stringIsNullOrWhiteSpace(a) ? a : "Next quarter";
|
|
469
516
|
},
|
|
470
517
|
enumerable: true,
|
|
471
518
|
configurable: true
|
|
472
519
|
});
|
|
473
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
520
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "co", {
|
|
474
521
|
get: function () {
|
|
475
|
-
var a = this.
|
|
522
|
+
var a = this.s.b1("ComparisonOperator_LastQuarter");
|
|
476
523
|
return !stringIsNullOrWhiteSpace(a) ? a : "Last quarter";
|
|
477
524
|
},
|
|
478
525
|
enumerable: true,
|
|
479
526
|
configurable: true
|
|
480
527
|
});
|
|
481
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
528
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c8", {
|
|
482
529
|
get: function () {
|
|
483
|
-
var a = this.
|
|
530
|
+
var a = this.s.b1("ComparisonOperator_ThisYear");
|
|
484
531
|
return !stringIsNullOrWhiteSpace(a) ? a : "This year";
|
|
485
532
|
},
|
|
486
533
|
enumerable: true,
|
|
487
534
|
configurable: true
|
|
488
535
|
});
|
|
489
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
536
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cx", {
|
|
490
537
|
get: function () {
|
|
491
|
-
var a = this.
|
|
538
|
+
var a = this.s.b1("ComparisonOperator_NextYear");
|
|
492
539
|
return !stringIsNullOrWhiteSpace(a) ? a : "Next year";
|
|
493
540
|
},
|
|
494
541
|
enumerable: true,
|
|
495
542
|
configurable: true
|
|
496
543
|
});
|
|
497
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
544
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cq", {
|
|
498
545
|
get: function () {
|
|
499
|
-
var a = this.
|
|
546
|
+
var a = this.s.b1("ComparisonOperator_LastYear");
|
|
500
547
|
return !stringIsNullOrWhiteSpace(a) ? a : "Last year";
|
|
501
548
|
},
|
|
502
549
|
enumerable: true,
|
|
503
550
|
configurable: true
|
|
504
551
|
});
|
|
505
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
552
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "df", {
|
|
506
553
|
get: function () {
|
|
507
|
-
var a = this.
|
|
554
|
+
var a = this.s.b1("ComparisonOperator_YearToDate");
|
|
508
555
|
return !stringIsNullOrWhiteSpace(a) ? a : "Year to date";
|
|
509
556
|
},
|
|
510
557
|
enumerable: true,
|
|
511
558
|
configurable: true
|
|
512
559
|
});
|
|
513
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
560
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c0", {
|
|
514
561
|
get: function () {
|
|
515
|
-
var a = this.
|
|
562
|
+
var a = this.s.b1("ComparisonOperator_Q1");
|
|
516
563
|
return !stringIsNullOrWhiteSpace(a) ? a : "Quarter 1";
|
|
517
564
|
},
|
|
518
565
|
enumerable: true,
|
|
519
566
|
configurable: true
|
|
520
567
|
});
|
|
521
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
568
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c1", {
|
|
522
569
|
get: function () {
|
|
523
|
-
var a = this.
|
|
570
|
+
var a = this.s.b1("ComparisonOperator_Q2");
|
|
524
571
|
return !stringIsNullOrWhiteSpace(a) ? a : "Quarter 2";
|
|
525
572
|
},
|
|
526
573
|
enumerable: true,
|
|
527
574
|
configurable: true
|
|
528
575
|
});
|
|
529
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
576
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c2", {
|
|
530
577
|
get: function () {
|
|
531
|
-
var a = this.
|
|
578
|
+
var a = this.s.b1("ComparisonOperator_Q3");
|
|
532
579
|
return !stringIsNullOrWhiteSpace(a) ? a : "Quarter 3";
|
|
533
580
|
},
|
|
534
581
|
enumerable: true,
|
|
535
582
|
configurable: true
|
|
536
583
|
});
|
|
537
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
584
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c3", {
|
|
538
585
|
get: function () {
|
|
539
|
-
var a = this.
|
|
586
|
+
var a = this.s.b1("ComparisonOperator_Q4");
|
|
540
587
|
return !stringIsNullOrWhiteSpace(a) ? a : "Quarter 4";
|
|
541
588
|
},
|
|
542
589
|
enumerable: true,
|
|
543
590
|
configurable: true
|
|
544
591
|
});
|
|
545
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
592
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "ct", {
|
|
546
593
|
get: function () {
|
|
547
|
-
var a = this.
|
|
594
|
+
var a = this.s.b1("ComparisonOperator_Month");
|
|
548
595
|
return !stringIsNullOrWhiteSpace(a) ? a : "Month";
|
|
549
596
|
},
|
|
550
597
|
enumerable: true,
|
|
551
598
|
configurable: true
|
|
552
599
|
});
|
|
553
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
600
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "de", {
|
|
554
601
|
get: function () {
|
|
555
|
-
var a = this.
|
|
602
|
+
var a = this.s.b1("ComparisonOperator_Year");
|
|
556
603
|
return !stringIsNullOrWhiteSpace(a) ? a : "Year";
|
|
557
604
|
},
|
|
558
605
|
enumerable: true,
|
|
559
606
|
configurable: true
|
|
560
607
|
});
|
|
561
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
608
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "c4", {
|
|
562
609
|
get: function () {
|
|
563
|
-
var a = this.
|
|
610
|
+
var a = this.s.b1("ComparisonOperator_StartsWith");
|
|
564
611
|
return !stringIsNullOrWhiteSpace(a) ? a : "Starts with";
|
|
565
612
|
},
|
|
566
613
|
enumerable: true,
|
|
567
614
|
configurable: true
|
|
568
615
|
});
|
|
569
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
616
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cg", {
|
|
570
617
|
get: function () {
|
|
571
|
-
var a = this.
|
|
618
|
+
var a = this.s.b1("ComparisonOperator_DoesNotStartWith");
|
|
572
619
|
return !stringIsNullOrWhiteSpace(a) ? a : "Does not start with";
|
|
573
620
|
},
|
|
574
621
|
enumerable: true,
|
|
575
622
|
configurable: true
|
|
576
623
|
});
|
|
577
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
624
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "ci", {
|
|
578
625
|
get: function () {
|
|
579
|
-
var a = this.
|
|
626
|
+
var a = this.s.b1("ComparisonOperator_EndsWith");
|
|
580
627
|
return !stringIsNullOrWhiteSpace(a) ? a : "Ends with";
|
|
581
628
|
},
|
|
582
629
|
enumerable: true,
|
|
583
630
|
configurable: true
|
|
584
631
|
});
|
|
585
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
632
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cf", {
|
|
586
633
|
get: function () {
|
|
587
|
-
var a = this.
|
|
634
|
+
var a = this.s.b1("ComparisonOperator_DoesNotEndWith");
|
|
588
635
|
return !stringIsNullOrWhiteSpace(a) ? a : "Does not end with";
|
|
589
636
|
},
|
|
590
637
|
enumerable: true,
|
|
591
638
|
configurable: true
|
|
592
639
|
});
|
|
593
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
640
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cd", {
|
|
594
641
|
get: function () {
|
|
595
|
-
var a = this.
|
|
642
|
+
var a = this.s.b1("ComparisonOperator_Contains");
|
|
596
643
|
return !stringIsNullOrWhiteSpace(a) ? a : "Contains";
|
|
597
644
|
},
|
|
598
645
|
enumerable: true,
|
|
599
646
|
configurable: true
|
|
600
647
|
});
|
|
601
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
648
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "ce", {
|
|
602
649
|
get: function () {
|
|
603
|
-
var a = this.
|
|
650
|
+
var a = this.s.b1("ComparisonOperator_DoesNotContain");
|
|
604
651
|
return !stringIsNullOrWhiteSpace(a) ? a : "Does not contain";
|
|
605
652
|
},
|
|
606
653
|
enumerable: true,
|
|
607
654
|
configurable: true
|
|
608
655
|
});
|
|
609
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
656
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "ch", {
|
|
610
657
|
get: function () {
|
|
611
|
-
var a = this.
|
|
658
|
+
var a = this.s.b1("ComparisonOperator_Empty");
|
|
612
659
|
return !stringIsNullOrWhiteSpace(a) ? a : "Empty";
|
|
613
660
|
},
|
|
614
661
|
enumerable: true,
|
|
615
662
|
configurable: true
|
|
616
663
|
});
|
|
617
|
-
Object.defineProperty(ComparisonOperatorSelector.prototype, "
|
|
664
|
+
Object.defineProperty(ComparisonOperatorSelector.prototype, "cy", {
|
|
618
665
|
get: function () {
|
|
619
|
-
var a = this.
|
|
666
|
+
var a = this.s.b1("ComparisonOperator_NotEmpty");
|
|
620
667
|
return !stringIsNullOrWhiteSpace(a) ? a : "Not empty";
|
|
621
668
|
},
|
|
622
669
|
enumerable: true,
|
|
623
670
|
configurable: true
|
|
624
671
|
});
|
|
625
|
-
ComparisonOperatorSelector.prototype.
|
|
672
|
+
ComparisonOperatorSelector.prototype.ej = function (a) {
|
|
626
673
|
if (a == null) {
|
|
627
|
-
if (this.
|
|
628
|
-
var b = this.
|
|
629
|
-
b.clicked = delegateRemove(b.clicked, runOn(this, this.
|
|
674
|
+
if (this.o != null) {
|
|
675
|
+
var b = this.o;
|
|
676
|
+
b.clicked = delegateRemove(b.clicked, runOn(this, this.ec));
|
|
630
677
|
}
|
|
631
678
|
if (this.f != null) {
|
|
632
679
|
this.f.ae.clear();
|
|
633
680
|
var c = this.f;
|
|
634
|
-
c.cellClicked = delegateRemove(c.cellClicked, runOn(this, this.
|
|
681
|
+
c.cellClicked = delegateRemove(c.cellClicked, runOn(this, this.d9));
|
|
635
682
|
}
|
|
636
|
-
if (this.
|
|
637
|
-
var d = this.
|
|
638
|
-
d.cellUpdating = delegateRemove(d.cellUpdating, runOn(this, this.
|
|
683
|
+
if (this.n != null) {
|
|
684
|
+
var d = this.n;
|
|
685
|
+
d.cellUpdating = delegateRemove(d.cellUpdating, runOn(this, this.el));
|
|
639
686
|
}
|
|
640
687
|
}
|
|
641
|
-
this.e.
|
|
688
|
+
this.e.u(a);
|
|
642
689
|
};
|
|
643
|
-
ComparisonOperatorSelector.prototype.
|
|
644
|
-
this.
|
|
690
|
+
ComparisonOperatorSelector.prototype.ea = function () {
|
|
691
|
+
this.ej(null);
|
|
645
692
|
if (this.f != null) {
|
|
646
693
|
var a = this.f;
|
|
647
|
-
a.cellClicked = delegateRemove(a.cellClicked, runOn(this, this.
|
|
694
|
+
a.cellClicked = delegateRemove(a.cellClicked, runOn(this, this.d9));
|
|
648
695
|
}
|
|
649
|
-
this.
|
|
696
|
+
this.v.clear();
|
|
650
697
|
};
|
|
651
|
-
ComparisonOperatorSelector.prototype.
|
|
652
|
-
this.
|
|
653
|
-
this.
|
|
654
|
-
this.
|
|
698
|
+
ComparisonOperatorSelector.prototype.eb = function (a, b, c) {
|
|
699
|
+
this.q = a;
|
|
700
|
+
this.p = b;
|
|
701
|
+
this.p.svgPath = this.bv(this.b);
|
|
702
|
+
this.p.fill = this.eq;
|
|
655
703
|
this.f = c;
|
|
656
704
|
this.f.iz = false;
|
|
657
705
|
this.f.co = 1;
|
|
@@ -662,38 +710,40 @@ var ComparisonOperatorSelector = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
662
710
|
this.f.oc = 0;
|
|
663
711
|
this.f.go = 3;
|
|
664
712
|
this.f.i6 = false;
|
|
713
|
+
this.f.yr = new CornerRadius(0, 0);
|
|
714
|
+
this.f.aa0 = new Thickness(0, 0);
|
|
665
715
|
var d = this.f;
|
|
666
|
-
d.cellClicked = delegateCombine(d.cellClicked, runOn(this, this.
|
|
667
|
-
this.
|
|
668
|
-
this.
|
|
716
|
+
d.cellClicked = delegateCombine(d.cellClicked, runOn(this, this.d9));
|
|
717
|
+
this.n = new TemplateColumn();
|
|
718
|
+
this.n.width = ((function () {
|
|
669
719
|
var $ret = new ColumnWidth();
|
|
670
720
|
$ret.f = 32;
|
|
671
721
|
$ret.c = false;
|
|
672
722
|
return $ret;
|
|
673
723
|
})());
|
|
674
|
-
this.
|
|
675
|
-
this.
|
|
676
|
-
this.
|
|
677
|
-
var e = this.
|
|
678
|
-
e.cellUpdating = delegateCombine(e.cellUpdating, runOn(this, this.
|
|
679
|
-
this.f.columns.add(this.
|
|
724
|
+
this.n.h2 = this.n.h3 = 4;
|
|
725
|
+
this.n.h4 = this.n.h1 = 0;
|
|
726
|
+
this.n.i8 = "Icon";
|
|
727
|
+
var e = this.n;
|
|
728
|
+
e.cellUpdating = delegateCombine(e.cellUpdating, runOn(this, this.el));
|
|
729
|
+
this.f.columns.add(this.n);
|
|
680
730
|
var f = new TextColumn();
|
|
681
731
|
f.i8 = "DisplayText";
|
|
682
732
|
f.h2 = 0;
|
|
683
733
|
f.e = 0;
|
|
684
734
|
this.f.columns.add(f);
|
|
685
|
-
this.
|
|
735
|
+
this.d4();
|
|
686
736
|
};
|
|
687
|
-
ComparisonOperatorSelector.prototype.
|
|
737
|
+
ComparisonOperatorSelector.prototype.eh = function (a, b) {
|
|
688
738
|
var _this = this;
|
|
689
|
-
this.
|
|
690
|
-
for (var c = 0; c < this.
|
|
691
|
-
if (this.
|
|
692
|
-
this.i = this.
|
|
739
|
+
this.t = true;
|
|
740
|
+
for (var c = 0; c < this.v.count; c++) {
|
|
741
|
+
if (this.v._inner[c].a == b && this.v._inner[c].a != 44) {
|
|
742
|
+
this.i = this.v._inner[c];
|
|
693
743
|
}
|
|
694
744
|
}
|
|
695
|
-
this.
|
|
696
|
-
this.
|
|
745
|
+
this.t = false;
|
|
746
|
+
this.p.svgPath = this.i.Icon;
|
|
697
747
|
if (this.valueChanged != null) {
|
|
698
748
|
this.valueChanged(this, ((function () {
|
|
699
749
|
var $ret = new OperatorSelectorValueChangedEventArgs();
|
|
@@ -703,110 +753,124 @@ var ComparisonOperatorSelector = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
703
753
|
})()));
|
|
704
754
|
}
|
|
705
755
|
};
|
|
706
|
-
ComparisonOperatorSelector.prototype.
|
|
756
|
+
ComparisonOperatorSelector.prototype.ed = function () {
|
|
757
|
+
if (this.p != null) {
|
|
758
|
+
this.p.fill = this.eq;
|
|
759
|
+
}
|
|
760
|
+
if (this.f != null) {
|
|
761
|
+
this.f.zv = this.eq;
|
|
762
|
+
this.f.zt = this.ep;
|
|
763
|
+
}
|
|
764
|
+
};
|
|
765
|
+
ComparisonOperatorSelector.prototype.ef = function () {
|
|
707
766
|
if (this.opening != null) {
|
|
708
767
|
this.opening(this, new OperatorSelectorOpeningEventArgs());
|
|
709
768
|
}
|
|
710
769
|
};
|
|
711
|
-
ComparisonOperatorSelector.prototype.
|
|
770
|
+
ComparisonOperatorSelector.prototype.ee = function () {
|
|
771
|
+
if (this.opened != null) {
|
|
772
|
+
this.opened(this, new OperatorSelectorOpeningEventArgs());
|
|
773
|
+
}
|
|
774
|
+
};
|
|
775
|
+
ComparisonOperatorSelector.prototype.bv = function (a) {
|
|
712
776
|
switch (a) {
|
|
713
|
-
case 7: return ComparisonOperatorSelector.
|
|
714
|
-
case 9: return ComparisonOperatorSelector.
|
|
715
|
-
case 12: return ComparisonOperatorSelector.
|
|
716
|
-
case 13: return ComparisonOperatorSelector.
|
|
717
|
-
case 17: return ComparisonOperatorSelector.
|
|
718
|
-
case 15: return ComparisonOperatorSelector.
|
|
719
|
-
case 40: return ComparisonOperatorSelector.
|
|
720
|
-
case 16: return ComparisonOperatorSelector.
|
|
777
|
+
case 7: return ComparisonOperatorSelector.ab;
|
|
778
|
+
case 9: return ComparisonOperatorSelector.ac;
|
|
779
|
+
case 12: return ComparisonOperatorSelector.ad;
|
|
780
|
+
case 13: return ComparisonOperatorSelector.bn;
|
|
781
|
+
case 17: return ComparisonOperatorSelector.bo;
|
|
782
|
+
case 15: return ComparisonOperatorSelector.bp;
|
|
783
|
+
case 40: return ComparisonOperatorSelector.bq;
|
|
784
|
+
case 16: return ComparisonOperatorSelector.br;
|
|
721
785
|
case 0: return "M5 13.5h14v2H5zm0-5h14v2H5z";
|
|
722
|
-
case 11: return ComparisonOperatorSelector.
|
|
723
|
-
case 4: return ComparisonOperatorSelector.
|
|
724
|
-
case 5: return ComparisonOperatorSelector.
|
|
725
|
-
case 26: return ComparisonOperatorSelector.
|
|
726
|
-
case 29: return ComparisonOperatorSelector.
|
|
727
|
-
case 23: return ComparisonOperatorSelector.
|
|
728
|
-
case 32: return ComparisonOperatorSelector.
|
|
729
|
-
case 2: return ComparisonOperatorSelector.
|
|
730
|
-
case 3: return ComparisonOperatorSelector.
|
|
731
|
-
case 38: return ComparisonOperatorSelector.
|
|
732
|
-
case 24: return ComparisonOperatorSelector.
|
|
733
|
-
case 27: return ComparisonOperatorSelector.
|
|
734
|
-
case 21: return ComparisonOperatorSelector.
|
|
735
|
-
case 30: return ComparisonOperatorSelector.
|
|
736
|
-
case 41: return ComparisonOperatorSelector.
|
|
737
|
-
case 1: return ComparisonOperatorSelector.
|
|
738
|
-
case 34: return ComparisonOperatorSelector.
|
|
739
|
-
case 35: return ComparisonOperatorSelector.
|
|
740
|
-
case 36: return ComparisonOperatorSelector.
|
|
741
|
-
case 37: return ComparisonOperatorSelector.
|
|
742
|
-
case 14: return ComparisonOperatorSelector.
|
|
743
|
-
case 25: return ComparisonOperatorSelector.
|
|
744
|
-
case 28: return ComparisonOperatorSelector.
|
|
745
|
-
case 22: return ComparisonOperatorSelector.
|
|
746
|
-
case 31: return ComparisonOperatorSelector.
|
|
747
|
-
case 18: return ComparisonOperatorSelector.
|
|
748
|
-
case 19: return ComparisonOperatorSelector.
|
|
749
|
-
case 6: return ComparisonOperatorSelector.
|
|
750
|
-
case 8: return ComparisonOperatorSelector.
|
|
751
|
-
case 10: return ComparisonOperatorSelector.
|
|
752
|
-
case 39: return ComparisonOperatorSelector.
|
|
753
|
-
case 33: return ComparisonOperatorSelector.
|
|
754
|
-
case 20: return ComparisonOperatorSelector.
|
|
786
|
+
case 11: return ComparisonOperatorSelector.bt;
|
|
787
|
+
case 4: return ComparisonOperatorSelector.bw;
|
|
788
|
+
case 5: return ComparisonOperatorSelector.bx;
|
|
789
|
+
case 26: return ComparisonOperatorSelector.by;
|
|
790
|
+
case 29: return ComparisonOperatorSelector.bz;
|
|
791
|
+
case 23: return ComparisonOperatorSelector.b0;
|
|
792
|
+
case 32: return ComparisonOperatorSelector.b1;
|
|
793
|
+
case 2: return ComparisonOperatorSelector.b2;
|
|
794
|
+
case 3: return ComparisonOperatorSelector.b3;
|
|
795
|
+
case 38: return ComparisonOperatorSelector.b4;
|
|
796
|
+
case 24: return ComparisonOperatorSelector.b5;
|
|
797
|
+
case 27: return ComparisonOperatorSelector.b6;
|
|
798
|
+
case 21: return ComparisonOperatorSelector.b7;
|
|
799
|
+
case 30: return ComparisonOperatorSelector.b8;
|
|
800
|
+
case 41: return ComparisonOperatorSelector.b9;
|
|
801
|
+
case 1: return ComparisonOperatorSelector.ca;
|
|
802
|
+
case 34: return ComparisonOperatorSelector.dh;
|
|
803
|
+
case 35: return ComparisonOperatorSelector.di;
|
|
804
|
+
case 36: return ComparisonOperatorSelector.dj;
|
|
805
|
+
case 37: return ComparisonOperatorSelector.dk;
|
|
806
|
+
case 14: return ComparisonOperatorSelector.dl;
|
|
807
|
+
case 25: return ComparisonOperatorSelector.dn;
|
|
808
|
+
case 28: return ComparisonOperatorSelector.dp;
|
|
809
|
+
case 22: return ComparisonOperatorSelector.dq;
|
|
810
|
+
case 31: return ComparisonOperatorSelector.dr;
|
|
811
|
+
case 18: return ComparisonOperatorSelector.ds;
|
|
812
|
+
case 19: return ComparisonOperatorSelector.dt;
|
|
813
|
+
case 6: return ComparisonOperatorSelector.du;
|
|
814
|
+
case 8: return ComparisonOperatorSelector.dv;
|
|
815
|
+
case 10: return ComparisonOperatorSelector.dw;
|
|
816
|
+
case 39: return ComparisonOperatorSelector.dy;
|
|
817
|
+
case 33: return ComparisonOperatorSelector.dz;
|
|
818
|
+
case 20: return ComparisonOperatorSelector.d0;
|
|
755
819
|
default: return "";
|
|
756
820
|
}
|
|
757
821
|
};
|
|
758
|
-
ComparisonOperatorSelector.prototype.
|
|
822
|
+
ComparisonOperatorSelector.prototype.bu = function (a) {
|
|
759
823
|
switch (a) {
|
|
760
|
-
case 7: return this.
|
|
761
|
-
case 9: return this.
|
|
762
|
-
case 12: return this.
|
|
763
|
-
case 13: return this.
|
|
764
|
-
case 17: return this.
|
|
765
|
-
case 15: return this.
|
|
766
|
-
case 40: return this.
|
|
767
|
-
case 16: return this.
|
|
768
|
-
case 0: return this.
|
|
769
|
-
case 11: return this.
|
|
770
|
-
case 4: return this.
|
|
771
|
-
case 5: return this.
|
|
772
|
-
case 26: return this.
|
|
773
|
-
case 29: return this.
|
|
774
|
-
case 23: return this.
|
|
775
|
-
case 32: return this.
|
|
776
|
-
case 2: return this.
|
|
777
|
-
case 3: return this.
|
|
778
|
-
case 38: return this.
|
|
779
|
-
case 24: return this.
|
|
780
|
-
case 27: return this.
|
|
781
|
-
case 21: return this.
|
|
782
|
-
case 30: return this.
|
|
783
|
-
case 41: return this.
|
|
784
|
-
case 1: return this.
|
|
785
|
-
case 34: return this.
|
|
786
|
-
case 35: return this.
|
|
787
|
-
case 36: return this.
|
|
788
|
-
case 37: return this.
|
|
789
|
-
case 14: return this.
|
|
790
|
-
case 25: return this.
|
|
791
|
-
case 28: return this.
|
|
792
|
-
case 22: return this.
|
|
793
|
-
case 31: return this.
|
|
794
|
-
case 18: return this.
|
|
795
|
-
case 19: return this.
|
|
796
|
-
case 6: return this.
|
|
797
|
-
case 8: return this.
|
|
798
|
-
case 10: return this.
|
|
799
|
-
case 39: return this.
|
|
800
|
-
case 33: return this.
|
|
801
|
-
case 20: return this.
|
|
824
|
+
case 7: return this.cb;
|
|
825
|
+
case 9: return this.cc;
|
|
826
|
+
case 12: return this.cd;
|
|
827
|
+
case 13: return this.ce;
|
|
828
|
+
case 17: return this.cf;
|
|
829
|
+
case 15: return this.cg;
|
|
830
|
+
case 40: return this.ch;
|
|
831
|
+
case 16: return this.ci;
|
|
832
|
+
case 0: return this.cj;
|
|
833
|
+
case 11: return this.ck;
|
|
834
|
+
case 4: return this.cl;
|
|
835
|
+
case 5: return this.cm;
|
|
836
|
+
case 26: return this.cn;
|
|
837
|
+
case 29: return this.co;
|
|
838
|
+
case 23: return this.cp;
|
|
839
|
+
case 32: return this.cq;
|
|
840
|
+
case 2: return this.cr;
|
|
841
|
+
case 3: return this.cs;
|
|
842
|
+
case 38: return this.ct;
|
|
843
|
+
case 24: return this.cu;
|
|
844
|
+
case 27: return this.cv;
|
|
845
|
+
case 21: return this.cw;
|
|
846
|
+
case 30: return this.cx;
|
|
847
|
+
case 41: return this.cy;
|
|
848
|
+
case 1: return this.cz;
|
|
849
|
+
case 34: return this.c0;
|
|
850
|
+
case 35: return this.c1;
|
|
851
|
+
case 36: return this.c2;
|
|
852
|
+
case 37: return this.c3;
|
|
853
|
+
case 14: return this.c4;
|
|
854
|
+
case 25: return this.c5;
|
|
855
|
+
case 28: return this.c6;
|
|
856
|
+
case 22: return this.c7;
|
|
857
|
+
case 31: return this.c8;
|
|
858
|
+
case 18: return this.c9;
|
|
859
|
+
case 19: return this.da;
|
|
860
|
+
case 6: return this.db;
|
|
861
|
+
case 8: return this.dc;
|
|
862
|
+
case 10: return this.dd;
|
|
863
|
+
case 39: return this.de;
|
|
864
|
+
case 33: return this.df;
|
|
865
|
+
case 20: return this.dg;
|
|
802
866
|
default: return "";
|
|
803
867
|
}
|
|
804
868
|
};
|
|
805
|
-
ComparisonOperatorSelector.prototype.
|
|
806
|
-
this.
|
|
869
|
+
ComparisonOperatorSelector.prototype.d4 = function () {
|
|
870
|
+
this.v = new List$1(OperatorModel.$, 0);
|
|
807
871
|
switch (this.d) {
|
|
808
872
|
case 2:
|
|
809
|
-
this.
|
|
873
|
+
this.d2(this.v);
|
|
810
874
|
break;
|
|
811
875
|
case 10:
|
|
812
876
|
case 6:
|
|
@@ -815,22 +879,22 @@ var ComparisonOperatorSelector = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
815
879
|
case 3:
|
|
816
880
|
case 4:
|
|
817
881
|
case 7:
|
|
818
|
-
this.
|
|
882
|
+
this.d5(this.v);
|
|
819
883
|
break;
|
|
820
884
|
case 8:
|
|
821
|
-
this.
|
|
885
|
+
this.d3(this.v);
|
|
822
886
|
break;
|
|
823
887
|
case 0:
|
|
824
|
-
this.
|
|
888
|
+
this.d6(this.v);
|
|
825
889
|
break;
|
|
826
890
|
}
|
|
827
|
-
this.
|
|
891
|
+
this.v.o(this.u);
|
|
828
892
|
if (this.f != null) {
|
|
829
|
-
this.e.
|
|
830
|
-
if (this.
|
|
831
|
-
this.i = this.
|
|
893
|
+
this.e.v(this.v);
|
|
894
|
+
if (this.v.count > 0) {
|
|
895
|
+
this.i = this.v._inner[0];
|
|
832
896
|
}
|
|
833
|
-
this.e.k = Math.min(this.
|
|
897
|
+
this.e.k = Math.min(this.v.count * this.f.nf + 2, this.z);
|
|
834
898
|
}
|
|
835
899
|
};
|
|
836
900
|
ComparisonOperatorSelector.prototype.h = function (a) {
|
|
@@ -838,16 +902,16 @@ var ComparisonOperatorSelector = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
838
902
|
return ((function () {
|
|
839
903
|
var $ret = new OperatorModel();
|
|
840
904
|
$ret.a = a;
|
|
841
|
-
$ret.DisplayText = _this.
|
|
842
|
-
$ret.Icon = _this.
|
|
905
|
+
$ret.DisplayText = _this.bu(a);
|
|
906
|
+
$ret.Icon = _this.bv(a);
|
|
843
907
|
return $ret;
|
|
844
908
|
})());
|
|
845
909
|
};
|
|
846
|
-
ComparisonOperatorSelector.prototype.
|
|
910
|
+
ComparisonOperatorSelector.prototype.d2 = function (a) {
|
|
847
911
|
a.add(this.h(10));
|
|
848
912
|
a.add(this.h(11));
|
|
849
913
|
};
|
|
850
|
-
ComparisonOperatorSelector.prototype.
|
|
914
|
+
ComparisonOperatorSelector.prototype.d5 = function (a) {
|
|
851
915
|
a.add(this.h(0));
|
|
852
916
|
a.add(this.h(1));
|
|
853
917
|
a.add(this.h(2));
|
|
@@ -855,7 +919,7 @@ var ComparisonOperatorSelector = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
855
919
|
a.add(this.h(4));
|
|
856
920
|
a.add(this.h(5));
|
|
857
921
|
};
|
|
858
|
-
ComparisonOperatorSelector.prototype.
|
|
922
|
+
ComparisonOperatorSelector.prototype.d3 = function (a) {
|
|
859
923
|
a.add(this.h(0));
|
|
860
924
|
a.add(this.h(1));
|
|
861
925
|
a.add(this.h(2));
|
|
@@ -885,7 +949,7 @@ var ComparisonOperatorSelector = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
885
949
|
a.add(this.h(36));
|
|
886
950
|
a.add(this.h(37));
|
|
887
951
|
};
|
|
888
|
-
ComparisonOperatorSelector.prototype.
|
|
952
|
+
ComparisonOperatorSelector.prototype.d6 = function (a) {
|
|
889
953
|
a.add(this.h(0));
|
|
890
954
|
a.add(this.h(1));
|
|
891
955
|
a.add(this.h(14));
|
|
@@ -897,127 +961,128 @@ var ComparisonOperatorSelector = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
897
961
|
a.add(this.h(40));
|
|
898
962
|
a.add(this.h(41));
|
|
899
963
|
};
|
|
900
|
-
ComparisonOperatorSelector.prototype.
|
|
964
|
+
ComparisonOperatorSelector.prototype.y = function () {
|
|
901
965
|
if (this.f != null) {
|
|
902
966
|
var a = Math.min(8, this.f.actualDataSource != null ? this.f.actualDataSource.actualCount : 0);
|
|
903
967
|
return a * (this.f.nf + this.f.oc) + this.f.ne + 2;
|
|
904
968
|
}
|
|
905
969
|
return 0;
|
|
906
970
|
};
|
|
907
|
-
ComparisonOperatorSelector.prototype.
|
|
908
|
-
if (this.
|
|
909
|
-
if (!this.
|
|
910
|
-
this.
|
|
911
|
-
this.
|
|
971
|
+
ComparisonOperatorSelector.prototype.em = function () {
|
|
972
|
+
if (this.q != null) {
|
|
973
|
+
if (!this.q.t) {
|
|
974
|
+
this.ef();
|
|
975
|
+
this.q.showRelativeToExclusionRect(this.e.w(), 1, 0);
|
|
976
|
+
this.ee();
|
|
912
977
|
}
|
|
913
978
|
else {
|
|
914
|
-
this.
|
|
979
|
+
this.q.ao();
|
|
915
980
|
}
|
|
916
981
|
}
|
|
917
982
|
};
|
|
918
|
-
ComparisonOperatorSelector.prototype.
|
|
919
|
-
if (this.
|
|
920
|
-
this.
|
|
983
|
+
ComparisonOperatorSelector.prototype.d8 = function () {
|
|
984
|
+
if (this.q != null) {
|
|
985
|
+
this.q.ao();
|
|
921
986
|
}
|
|
922
987
|
};
|
|
923
|
-
ComparisonOperatorSelector.prototype.
|
|
988
|
+
ComparisonOperatorSelector.prototype.d1 = function (a, b, c, d) {
|
|
924
989
|
var e = ((function () {
|
|
925
990
|
var $ret = new OperatorModel();
|
|
926
991
|
$ret.DisplayText = a;
|
|
927
|
-
$ret.Icon = b != null ? b : ComparisonOperatorSelector.
|
|
992
|
+
$ret.Icon = b != null ? b : ComparisonOperatorSelector.af;
|
|
928
993
|
$ret.a = 44;
|
|
929
994
|
$ret.c = c;
|
|
930
995
|
$ret.b = d;
|
|
931
996
|
return $ret;
|
|
932
997
|
})());
|
|
933
|
-
this.
|
|
934
|
-
if (this.
|
|
935
|
-
this.
|
|
998
|
+
this.u.add(e);
|
|
999
|
+
if (this.v != null) {
|
|
1000
|
+
this.v.add(e);
|
|
936
1001
|
}
|
|
937
1002
|
if (this.f != null && this.f.actualDataSource != null) {
|
|
938
|
-
this.f.actualDataSource.notifyInsertItem(this.
|
|
1003
|
+
this.f.actualDataSource.notifyInsertItem(this.v.count, e);
|
|
939
1004
|
}
|
|
940
1005
|
};
|
|
941
|
-
ComparisonOperatorSelector.prototype.
|
|
942
|
-
if (this.
|
|
1006
|
+
ComparisonOperatorSelector.prototype.d7 = function () {
|
|
1007
|
+
if (this.v == null) {
|
|
943
1008
|
return;
|
|
944
1009
|
}
|
|
945
|
-
for (var a = 0; a < this.
|
|
946
|
-
if (this.
|
|
947
|
-
this.
|
|
1010
|
+
for (var a = 0; a < this.v.count; a++) {
|
|
1011
|
+
if (this.v._inner[a].a == 44) {
|
|
1012
|
+
this.v.removeAt(a);
|
|
948
1013
|
a--;
|
|
949
1014
|
}
|
|
950
1015
|
}
|
|
951
|
-
this.
|
|
1016
|
+
this.u.clear();
|
|
952
1017
|
};
|
|
953
|
-
ComparisonOperatorSelector.prototype.
|
|
1018
|
+
ComparisonOperatorSelector.prototype.ek = function (a, b) {
|
|
954
1019
|
if (a != null) {
|
|
955
|
-
for (var c = 0; c < this.
|
|
956
|
-
if (this.
|
|
957
|
-
this.i = this.
|
|
1020
|
+
for (var c = 0; c < this.u.count; c++) {
|
|
1021
|
+
if (this.u._inner[c].c == a) {
|
|
1022
|
+
this.i = this.u._inner[c];
|
|
958
1023
|
}
|
|
959
1024
|
}
|
|
960
1025
|
}
|
|
961
1026
|
else {
|
|
962
|
-
if (b >= 0 && b < this.
|
|
963
|
-
this.i = this.
|
|
1027
|
+
if (b >= 0 && b < this.u.count) {
|
|
1028
|
+
this.i = this.u._inner[b];
|
|
964
1029
|
}
|
|
965
1030
|
}
|
|
966
1031
|
};
|
|
967
|
-
ComparisonOperatorSelector.prototype.
|
|
968
|
-
this.
|
|
1032
|
+
ComparisonOperatorSelector.prototype.ec = function (a, b) {
|
|
1033
|
+
this.em();
|
|
969
1034
|
};
|
|
970
|
-
ComparisonOperatorSelector.prototype.
|
|
1035
|
+
ComparisonOperatorSelector.prototype.d9 = function (a, b) {
|
|
971
1036
|
var c = b.cellInfo.et;
|
|
972
1037
|
this.i = this.f.actualDataSource.getItemAtIndex(c);
|
|
973
|
-
this.
|
|
1038
|
+
this.d8();
|
|
974
1039
|
};
|
|
975
|
-
ComparisonOperatorSelector.prototype.
|
|
976
|
-
this.e.
|
|
1040
|
+
ComparisonOperatorSelector.prototype.el = function (a, b) {
|
|
1041
|
+
this.e.t(b.content, b.cellInfo.g4);
|
|
977
1042
|
};
|
|
978
1043
|
ComparisonOperatorSelector.$t = markType(ComparisonOperatorSelector, 'ComparisonOperatorSelector', Base.$, [INotifyPropertyChanged_$type]);
|
|
979
|
-
ComparisonOperatorSelector.
|
|
980
|
-
ComparisonOperatorSelector.
|
|
981
|
-
ComparisonOperatorSelector.
|
|
982
|
-
ComparisonOperatorSelector.
|
|
983
|
-
ComparisonOperatorSelector.
|
|
984
|
-
ComparisonOperatorSelector.
|
|
985
|
-
ComparisonOperatorSelector.
|
|
986
|
-
ComparisonOperatorSelector.
|
|
987
|
-
ComparisonOperatorSelector.
|
|
988
|
-
ComparisonOperatorSelector.
|
|
989
|
-
ComparisonOperatorSelector.
|
|
990
|
-
ComparisonOperatorSelector.
|
|
991
|
-
ComparisonOperatorSelector.
|
|
992
|
-
ComparisonOperatorSelector.
|
|
993
|
-
ComparisonOperatorSelector.
|
|
994
|
-
ComparisonOperatorSelector.
|
|
995
|
-
ComparisonOperatorSelector.
|
|
996
|
-
ComparisonOperatorSelector.
|
|
997
|
-
ComparisonOperatorSelector.
|
|
998
|
-
ComparisonOperatorSelector.
|
|
999
|
-
ComparisonOperatorSelector.
|
|
1000
|
-
ComparisonOperatorSelector.
|
|
1001
|
-
ComparisonOperatorSelector.
|
|
1002
|
-
ComparisonOperatorSelector.
|
|
1003
|
-
ComparisonOperatorSelector.
|
|
1004
|
-
ComparisonOperatorSelector.
|
|
1005
|
-
ComparisonOperatorSelector.
|
|
1006
|
-
ComparisonOperatorSelector.
|
|
1007
|
-
ComparisonOperatorSelector.
|
|
1008
|
-
ComparisonOperatorSelector.
|
|
1009
|
-
ComparisonOperatorSelector.
|
|
1010
|
-
ComparisonOperatorSelector.
|
|
1011
|
-
ComparisonOperatorSelector.
|
|
1012
|
-
ComparisonOperatorSelector.
|
|
1013
|
-
ComparisonOperatorSelector.
|
|
1014
|
-
ComparisonOperatorSelector.
|
|
1015
|
-
ComparisonOperatorSelector.
|
|
1016
|
-
ComparisonOperatorSelector.
|
|
1017
|
-
ComparisonOperatorSelector.
|
|
1018
|
-
ComparisonOperatorSelector.
|
|
1019
|
-
ComparisonOperatorSelector.
|
|
1020
|
-
ComparisonOperatorSelector.
|
|
1044
|
+
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 ";
|
|
1045
|
+
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 ";
|
|
1046
|
+
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";
|
|
1047
|
+
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";
|
|
1048
|
+
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";
|
|
1049
|
+
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";
|
|
1050
|
+
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";
|
|
1051
|
+
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";
|
|
1052
|
+
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";
|
|
1053
|
+
ComparisonOperatorSelector.bw = "M6 7.11L15.09 12 6 16.89V19l12-6.46v-1.08L6 5v2.11z";
|
|
1054
|
+
ComparisonOperatorSelector.bx = "M5.99 19h12.02v2H5.99zM18 9.47L6 3v2.11L15.09 10 6 14.9v2.11l12-6.47V9.47z";
|
|
1055
|
+
ComparisonOperatorSelector.b2 = "M6 12.54L18 19v-2.11L8.91 12 18 7.11V5L6 11.46v1.08z";
|
|
1056
|
+
ComparisonOperatorSelector.b3 = "M5.99 19h12.02v2H5.99zM18 14.9L8.91 10 18 5.11V3L6 9.47v1.07l12 6.47V14.9z";
|
|
1057
|
+
ComparisonOperatorSelector.bq = "M5 17h2v2H5zm8 0h2v2h-2zm-8-4h2v2H5zm12 4h2v2h-2zM13 5h2v2h-2zM9 17h2v2H9zm8-8h2v2h-2zm0 4h2v2h-2zm0-8h2v2h-2zM5 9h2v2H5zm0-4h2v2H5zm4 0h2v2H9z";
|
|
1058
|
+
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";
|
|
1059
|
+
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";
|
|
1060
|
+
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";
|
|
1061
|
+
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";
|
|
1062
|
+
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";
|
|
1063
|
+
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";
|
|
1064
|
+
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";
|
|
1065
|
+
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";
|
|
1066
|
+
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";
|
|
1067
|
+
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";
|
|
1068
|
+
ComparisonOperatorSelector.dp = "M12,7V17H22A10,10,0,0,0,12,7Zm-2,5L6,16V13H2V11H6V8Z";
|
|
1069
|
+
ComparisonOperatorSelector.b6 = "M4,9.253A8.03,8.03,0,0,1,9.747,15H4V9.253M2,7V17H12A10,10,0,0,0,2,7ZM18,8v3H14v2h4v3l4-4Z";
|
|
1070
|
+
ComparisonOperatorSelector.bz = "M12,7V17H22A10,10,0,0,0,12,7ZM2,12l4,4V13h4V11H6V8Z";
|
|
1071
|
+
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";
|
|
1072
|
+
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";
|
|
1073
|
+
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";
|
|
1074
|
+
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";
|
|
1075
|
+
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";
|
|
1076
|
+
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";
|
|
1077
|
+
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";
|
|
1078
|
+
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";
|
|
1079
|
+
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";
|
|
1080
|
+
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";
|
|
1081
|
+
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";
|
|
1082
|
+
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";
|
|
1083
|
+
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";
|
|
1084
|
+
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";
|
|
1085
|
+
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";
|
|
1021
1086
|
return ComparisonOperatorSelector;
|
|
1022
1087
|
}(Base));
|
|
1023
1088
|
export { ComparisonOperatorSelector };
|