igniteui-webcomponents-grids 4.2.2 → 4.2.4-alpha
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-webcomponents-grids.umd.js +1132 -799
- package/bundles/igniteui-webcomponents-grids.umd.min.js +1 -1
- package/esm2015/lib/BaseEditorView.js +30 -14
- package/esm2015/lib/CheckboxListView_combined.js +1 -0
- package/esm2015/lib/ColumnFilterCondition_combined.js +32 -0
- package/esm2015/lib/ComboEditorView.js +111 -105
- package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +400 -343
- package/esm2015/lib/DateEditorView.js +94 -87
- package/esm2015/lib/EditorCell.js +10 -10
- package/esm2015/lib/FilterCell.js +76 -60
- package/esm2015/lib/FilterCellPresenter.js +6 -3
- package/esm2015/lib/GridColumnOptionsView_combined.js +47 -22
- package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +49 -23
- package/esm2015/lib/ISummaryChooserView_combined.js +1 -0
- package/esm2015/lib/NumericEditorView.js +3 -3
- package/esm2015/lib/TextEditorView.js +82 -75
- package/esm2015/lib/igc-data-grid-comparison-operator-selector-component.js +104 -59
- package/esm2015/lib/igc-grid-column-options-component.js +21 -1
- package/esm2015/lib/igc-grid-column-summary-options-component.js +16 -2
- package/esm5/lib/BaseEditorView.js +34 -14
- package/esm5/lib/CheckboxListView_combined.js +1 -0
- package/esm5/lib/ColumnFilterCondition_combined.js +32 -0
- package/esm5/lib/ComboEditorView.js +108 -102
- package/esm5/lib/ComparisonOperatorSelectorView_combined.js +407 -342
- package/esm5/lib/DateEditorView.js +93 -86
- package/esm5/lib/EditorCell.js +10 -10
- package/esm5/lib/FilterCell.js +80 -60
- package/esm5/lib/FilterCellPresenter.js +6 -3
- package/esm5/lib/GridColumnOptionsView_combined.js +55 -22
- package/esm5/lib/GridColumnSummaryOptionsView_combined.js +57 -23
- package/esm5/lib/ISummaryChooserView_combined.js +1 -0
- package/esm5/lib/NumericEditorView.js +3 -3
- package/esm5/lib/TextEditorView.js +82 -75
- package/esm5/lib/igc-data-grid-comparison-operator-selector-component.js +117 -59
- package/esm5/lib/igc-grid-column-options-component.js +29 -1
- package/esm5/lib/igc-grid-column-summary-options-component.js +24 -2
- package/fesm2015/igniteui-webcomponents-grids.js +1076 -804
- package/fesm5/igniteui-webcomponents-grids.js +1132 -799
- package/grids/3rdpartylicenses.txt +445 -0
- package/grids/combined.js +44 -160
- package/grids/index.d.ts +2 -0
- package/grids/lib/igc-grid-base-directive.d.ts +14 -0
- package/grids/lib/igc-grid-edit-done-event-args.d.ts +5 -1
- package/grids/lib/igc-grid-selection-range.d.ts +1 -0
- package/grids/lib/igc-pivot-date-dimension.d.ts +1 -1
- package/grids/lib/igc-pivot-grid-column.d.ts +32 -0
- package/grids/lib/igc-pivot-grid-record.d.ts +28 -0
- package/grids/lib/igc-row-data-event-args.d.ts +4 -0
- package/grids/styles.css +1 -1
- package/grids/themes/dark/bootstrap.css +1 -1
- package/grids/themes/dark/fluent.css +1 -1
- package/grids/themes/dark/indigo.css +1 -1
- package/grids/themes/dark/material.css +1 -1
- package/grids/themes/light/bootstrap.css +1 -1
- package/grids/themes/light/fluent.css +1 -1
- package/grids/themes/light/indigo.css +1 -1
- package/grids/themes/light/material.css +1 -1
- package/lib/BaseEditorView.d.ts +12 -8
- package/lib/ColumnFilterCondition_combined.d.ts +2 -0
- package/lib/ComboEditorView.d.ts +15 -14
- package/lib/ComboEditorView_ComboExternal.d.ts +1 -0
- package/lib/ComparisonOperatorSelectorView_combined.d.ts +104 -95
- package/lib/DateEditorView.d.ts +13 -12
- package/lib/FilterCell.d.ts +23 -20
- package/lib/GridColumnOptionsView_combined.d.ts +10 -5
- package/lib/GridColumnSummaryOptionsView_combined.d.ts +13 -8
- package/lib/IEditorView.d.ts +2 -0
- package/lib/TextEditorView.d.ts +10 -9
- package/lib/igc-data-grid-comparison-operator-selector-component.d.ts +11 -0
- package/lib/igc-grid-column-options-component.d.ts +8 -0
- package/lib/igc-grid-column-summary-options-component.d.ts +2 -0
- package/package.json +4 -4
|
@@ -20,6 +20,8 @@ import { ColumnComparisonConditionOperatorType_$type } from "./ColumnComparisonC
|
|
|
20
20
|
import { DataSourceSchemaPropertyType_$type } from "igniteui-webcomponents-core";
|
|
21
21
|
import { OperatorSelectorValueChangedEventArgs } from "./OperatorSelectorValueChangedEventArgs";
|
|
22
22
|
import { TextColumn } from "./TextColumn";
|
|
23
|
+
import { CornerRadius } from "igniteui-webcomponents-core";
|
|
24
|
+
import { Thickness } from "igniteui-webcomponents-core";
|
|
23
25
|
import { ColumnWidth } from "./ColumnWidth";
|
|
24
26
|
import { stringIsNullOrWhiteSpace } from "igniteui-webcomponents-core";
|
|
25
27
|
/**
|
|
@@ -45,23 +47,27 @@ export let ComparisonOperatorSelectorView = /*@__PURE__*/ (() => {
|
|
|
45
47
|
this.a = a;
|
|
46
48
|
this.l = 240;
|
|
47
49
|
}
|
|
48
|
-
|
|
50
|
+
u(a) {
|
|
49
51
|
if (a == null) {
|
|
50
52
|
let b = this.a;
|
|
51
|
-
b.opening = delegateRemove(b.opening, runOn(this, this.
|
|
53
|
+
b.opening = delegateRemove(b.opening, runOn(this, this.s));
|
|
52
54
|
let c = this.a;
|
|
53
|
-
c.
|
|
55
|
+
c.opened = delegateRemove(c.opened, runOn(this, this.r));
|
|
56
|
+
let d = this.a;
|
|
57
|
+
d.closing = delegateRemove(d.closing, runOn(this, this.n));
|
|
54
58
|
return;
|
|
55
59
|
}
|
|
56
|
-
let d = this.a;
|
|
57
|
-
d.opening = delegateCombine(d.opening, runOn(this, this.r));
|
|
58
60
|
let e = this.a;
|
|
59
|
-
e.
|
|
61
|
+
e.opening = delegateCombine(e.opening, runOn(this, this.s));
|
|
62
|
+
let f = this.a;
|
|
63
|
+
f.opened = delegateCombine(f.opened, runOn(this, this.r));
|
|
64
|
+
let g = this.a;
|
|
65
|
+
g.closing = delegateCombine(g.closing, runOn(this, this.n));
|
|
60
66
|
this.g = a;
|
|
61
67
|
this.d = new Popup();
|
|
62
68
|
this.d.provideRenderer(this.g);
|
|
63
69
|
this.i = this.g.createElement("div");
|
|
64
|
-
this.i.
|
|
70
|
+
this.i.addClass("ig-comparison-operator-selector");
|
|
65
71
|
this.i.setStyleProperty("width", this.l + "px");
|
|
66
72
|
this.d.appendPopupContent(this.i);
|
|
67
73
|
this.h = this.g.createElement("div");
|
|
@@ -71,15 +77,15 @@ export let ComparisonOperatorSelectorView = /*@__PURE__*/ (() => {
|
|
|
71
77
|
this.h.setStyleProperty("cursor", "pointer");
|
|
72
78
|
this.g.append(this.h);
|
|
73
79
|
this.h.listen("mousedown", runOn(this, this.q));
|
|
74
|
-
this.g.getPortal(this.i, "DataGrid", (
|
|
75
|
-
this.m =
|
|
80
|
+
this.g.getPortal(this.i, "DataGrid", (h) => {
|
|
81
|
+
this.m = h.componentRef;
|
|
76
82
|
this.m.height = '100%';
|
|
77
83
|
this.m.scrollbarStyle = 'Default';
|
|
78
84
|
this.b = (this.m.i);
|
|
79
|
-
this.a.
|
|
85
|
+
this.a.eb(this.d, this.c, this.b);
|
|
80
86
|
}, false);
|
|
81
87
|
}
|
|
82
|
-
|
|
88
|
+
w() {
|
|
83
89
|
let rect_ = this.h.getNativeElement().getBoundingClientRect();
|
|
84
90
|
let a = new Rect(4);
|
|
85
91
|
a.left = (rect_.left + window.pageXOffset);
|
|
@@ -106,7 +112,7 @@ export let ComparisonOperatorSelectorView = /*@__PURE__*/ (() => {
|
|
|
106
112
|
}
|
|
107
113
|
return a;
|
|
108
114
|
}
|
|
109
|
-
|
|
115
|
+
t(a, b) {
|
|
110
116
|
let c = a;
|
|
111
117
|
let d = null;
|
|
112
118
|
if (c.element.getChildCount() == 0) {
|
|
@@ -132,16 +138,22 @@ export let ComparisonOperatorSelectorView = /*@__PURE__*/ (() => {
|
|
|
132
138
|
}
|
|
133
139
|
}
|
|
134
140
|
d.svgPath = b.Icon;
|
|
141
|
+
d.fill = this.a.eq;
|
|
135
142
|
}
|
|
136
143
|
q(a) {
|
|
137
|
-
this.a.
|
|
144
|
+
this.a.em();
|
|
138
145
|
}
|
|
139
|
-
|
|
140
|
-
this.i.setStyleProperty("height", stringFormat("{0}px", this.a.
|
|
146
|
+
s(a, b) {
|
|
147
|
+
this.i.setStyleProperty("height", stringFormat("{0}px", this.a.y()));
|
|
141
148
|
this.d.ar();
|
|
142
149
|
document.addEventListener("keydown", runOn(this, this.onDocumentKeyDown), false);
|
|
143
150
|
document.addEventListener("mousedown", runOn(this, this.onDocumentMouseDown), false);
|
|
144
151
|
}
|
|
152
|
+
r(a, b) {
|
|
153
|
+
if ((this.m.notifyDOMInsertion !== undefined)) {
|
|
154
|
+
this.m.notifyDOMInsertion();
|
|
155
|
+
}
|
|
156
|
+
}
|
|
145
157
|
n(a, b) {
|
|
146
158
|
document.removeEventListener("keydown", this.onDocumentKeyDown, false);
|
|
147
159
|
document.removeEventListener("mousedown", this.onDocumentMouseDown, false);
|
|
@@ -149,7 +161,7 @@ export let ComparisonOperatorSelectorView = /*@__PURE__*/ (() => {
|
|
|
149
161
|
onDocumentKeyDown(a) {
|
|
150
162
|
let b = a;
|
|
151
163
|
if (BaseDOMEventProxy.c0(b) == 8) {
|
|
152
|
-
this.a.
|
|
164
|
+
this.a.d8();
|
|
153
165
|
}
|
|
154
166
|
}
|
|
155
167
|
onDocumentMouseDown(a) {
|
|
@@ -158,10 +170,10 @@ export let ComparisonOperatorSelectorView = /*@__PURE__*/ (() => {
|
|
|
158
170
|
let d = this.g.rootWrapper.getNativeElement();
|
|
159
171
|
let e = this.i.getNativeElement();
|
|
160
172
|
if (!d.contains(c) && !e.contains(c)) {
|
|
161
|
-
this.a.
|
|
173
|
+
this.a.d8();
|
|
162
174
|
}
|
|
163
175
|
}
|
|
164
|
-
|
|
176
|
+
v(a) {
|
|
165
177
|
this.m.dataSource = a;
|
|
166
178
|
}
|
|
167
179
|
}
|
|
@@ -176,50 +188,57 @@ export let ComparisonOperatorSelector = /*@__PURE__*/ (() => {
|
|
|
176
188
|
constructor() {
|
|
177
189
|
super();
|
|
178
190
|
this.propertyChanged = null;
|
|
179
|
-
this.
|
|
191
|
+
this.r = null;
|
|
180
192
|
this.e = null;
|
|
193
|
+
this.q = null;
|
|
181
194
|
this.p = null;
|
|
182
195
|
this.o = null;
|
|
183
|
-
this.n = null;
|
|
184
196
|
this.f = null;
|
|
185
|
-
this.
|
|
197
|
+
this.n = null;
|
|
198
|
+
this.v = null;
|
|
186
199
|
this.u = null;
|
|
187
|
-
this.t = null;
|
|
188
200
|
this.g = null;
|
|
189
|
-
this.
|
|
201
|
+
this.t = false;
|
|
190
202
|
this.a = 0;
|
|
191
|
-
this.
|
|
192
|
-
this.
|
|
203
|
+
this.ae = null;
|
|
204
|
+
this.x = 0;
|
|
193
205
|
this.c = 0;
|
|
194
|
-
this.
|
|
206
|
+
this.w = 250;
|
|
207
|
+
this.eo = null;
|
|
208
|
+
this.en = null;
|
|
195
209
|
this.valueChanged = null;
|
|
196
210
|
this.opening = null;
|
|
211
|
+
this.opened = null;
|
|
197
212
|
this.closing = null;
|
|
198
213
|
this.e = new ComparisonOperatorSelectorView(this);
|
|
199
|
-
this.
|
|
214
|
+
this.u = new List$1(OperatorModel.$, 0);
|
|
200
215
|
}
|
|
201
|
-
|
|
202
|
-
this.
|
|
216
|
+
eg(a, b, c) {
|
|
217
|
+
this.ei(a, b, c);
|
|
203
218
|
if (this.propertyChanged != null) {
|
|
204
219
|
this.propertyChanged(this, new PropertyChangedEventArgs(a));
|
|
205
220
|
}
|
|
206
221
|
}
|
|
207
|
-
|
|
222
|
+
ei(a, b, c) {
|
|
208
223
|
switch (a) {
|
|
209
224
|
case "Value":
|
|
210
|
-
this.
|
|
225
|
+
this.eh(EnumUtil.getEnumValue(ColumnComparisonConditionOperatorType_$type, b), EnumUtil.getEnumValue(ColumnComparisonConditionOperatorType_$type, c));
|
|
211
226
|
break;
|
|
212
227
|
case "DataType":
|
|
213
|
-
this.
|
|
228
|
+
this.d4();
|
|
229
|
+
break;
|
|
230
|
+
case "TextColor":
|
|
231
|
+
case "Background":
|
|
232
|
+
this.ed();
|
|
214
233
|
break;
|
|
215
234
|
}
|
|
216
235
|
}
|
|
217
|
-
get
|
|
218
|
-
if (this.
|
|
219
|
-
this.
|
|
220
|
-
this.
|
|
236
|
+
get s() {
|
|
237
|
+
if (this.r == null) {
|
|
238
|
+
this.r = new SRProvider(this.e.g);
|
|
239
|
+
this.r.cb("DataGrid");
|
|
221
240
|
}
|
|
222
|
-
return this.
|
|
241
|
+
return this.r;
|
|
223
242
|
}
|
|
224
243
|
get i() {
|
|
225
244
|
return this.g;
|
|
@@ -228,10 +247,10 @@ export let ComparisonOperatorSelector = /*@__PURE__*/ (() => {
|
|
|
228
247
|
this.g = a;
|
|
229
248
|
if (this.g != null) {
|
|
230
249
|
if (this.g.a == 44) {
|
|
231
|
-
this.
|
|
232
|
-
this.
|
|
250
|
+
this.ae = this.g.c;
|
|
251
|
+
this.x = this.g.b;
|
|
233
252
|
}
|
|
234
|
-
if (!this.
|
|
253
|
+
if (!this.t) {
|
|
235
254
|
this.b = this.g.a;
|
|
236
255
|
}
|
|
237
256
|
}
|
|
@@ -243,7 +262,7 @@ export let ComparisonOperatorSelector = /*@__PURE__*/ (() => {
|
|
|
243
262
|
let b = this.a;
|
|
244
263
|
this.a = a;
|
|
245
264
|
if (b != this.a || this.a == 44) {
|
|
246
|
-
this.
|
|
265
|
+
this.eg("Value", enumGetBox(ColumnComparisonConditionOperatorType_$type, b), enumGetBox(ColumnComparisonConditionOperatorType_$type, this.a));
|
|
247
266
|
}
|
|
248
267
|
}
|
|
249
268
|
get d() {
|
|
@@ -253,213 +272,234 @@ export let ComparisonOperatorSelector = /*@__PURE__*/ (() => {
|
|
|
253
272
|
let b = this.c;
|
|
254
273
|
this.c = a;
|
|
255
274
|
if (b != this.c) {
|
|
256
|
-
this.
|
|
275
|
+
this.eg("DataType", enumGetBox(DataSourceSchemaPropertyType_$type, b), enumGetBox(DataSourceSchemaPropertyType_$type, this.c));
|
|
257
276
|
}
|
|
258
277
|
}
|
|
259
|
-
get
|
|
260
|
-
return this.
|
|
278
|
+
get z() {
|
|
279
|
+
return this.w;
|
|
261
280
|
}
|
|
262
|
-
set
|
|
263
|
-
this.
|
|
281
|
+
set z(a) {
|
|
282
|
+
this.w = a;
|
|
264
283
|
}
|
|
265
|
-
get
|
|
266
|
-
|
|
284
|
+
get eq() {
|
|
285
|
+
return this.eo;
|
|
286
|
+
}
|
|
287
|
+
set eq(a) {
|
|
288
|
+
let b = this.eo;
|
|
289
|
+
this.eo = a;
|
|
290
|
+
if (b != this.eo) {
|
|
291
|
+
this.eg("TextColor", b, this.eo);
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
get ep() {
|
|
295
|
+
return this.en;
|
|
296
|
+
}
|
|
297
|
+
set ep(a) {
|
|
298
|
+
let b = this.en;
|
|
299
|
+
this.en = a;
|
|
300
|
+
if (b != this.en) {
|
|
301
|
+
this.eg("Background", b, this.en);
|
|
302
|
+
}
|
|
303
|
+
}
|
|
304
|
+
get dd() {
|
|
305
|
+
let a = this.s.b1("ComparisonOperator_True");
|
|
267
306
|
return !stringIsNullOrWhiteSpace(a) ? a : "True";
|
|
268
307
|
}
|
|
269
|
-
get
|
|
270
|
-
let a = this.
|
|
308
|
+
get ck() {
|
|
309
|
+
let a = this.s.b1("ComparisonOperator_False");
|
|
271
310
|
return !stringIsNullOrWhiteSpace(a) ? a : "False";
|
|
272
311
|
}
|
|
273
|
-
get
|
|
274
|
-
let a = this.
|
|
312
|
+
get cj() {
|
|
313
|
+
let a = this.s.b1("ComparisonOperator_Equals");
|
|
275
314
|
return !stringIsNullOrWhiteSpace(a) ? a : "Equals";
|
|
276
315
|
}
|
|
277
|
-
get
|
|
278
|
-
let a = this.
|
|
316
|
+
get cz() {
|
|
317
|
+
let a = this.s.b1("ComparisonOperator_NotEquals");
|
|
279
318
|
return !stringIsNullOrWhiteSpace(a) ? a : "Not equals";
|
|
280
319
|
}
|
|
281
|
-
get
|
|
282
|
-
let a = this.
|
|
320
|
+
get cr() {
|
|
321
|
+
let a = this.s.b1("ComparisonOperator_LessThan");
|
|
283
322
|
return !stringIsNullOrWhiteSpace(a) ? a : "Less than";
|
|
284
323
|
}
|
|
285
|
-
get
|
|
286
|
-
let a = this.
|
|
324
|
+
get cs() {
|
|
325
|
+
let a = this.s.b1("ComparisonOperator_LessThanOrEqualTo");
|
|
287
326
|
return !stringIsNullOrWhiteSpace(a) ? a : "Less than or equal to";
|
|
288
327
|
}
|
|
289
|
-
get
|
|
290
|
-
let a = this.
|
|
328
|
+
get cl() {
|
|
329
|
+
let a = this.s.b1("ComparisonOperator_GreaterThan");
|
|
291
330
|
return !stringIsNullOrWhiteSpace(a) ? a : "Greater than";
|
|
292
331
|
}
|
|
293
|
-
get
|
|
294
|
-
let a = this.
|
|
332
|
+
get cm() {
|
|
333
|
+
let a = this.s.b1("ComparisonOperator_GreaterThanOrEqualTo");
|
|
295
334
|
return !stringIsNullOrWhiteSpace(a) ? a : "Greater than or equal to";
|
|
296
335
|
}
|
|
297
|
-
get
|
|
298
|
-
let a = this.
|
|
336
|
+
get db() {
|
|
337
|
+
let a = this.s.b1("ComparisonOperator_Top");
|
|
299
338
|
return !stringIsNullOrWhiteSpace(a) ? a : "Top";
|
|
300
339
|
}
|
|
301
|
-
get
|
|
302
|
-
let a = this.
|
|
340
|
+
get cb() {
|
|
341
|
+
let a = this.s.b1("ComparisonOperator_Bottom");
|
|
303
342
|
return !stringIsNullOrWhiteSpace(a) ? a : "Bottom";
|
|
304
343
|
}
|
|
305
|
-
get
|
|
306
|
-
let a = this.
|
|
344
|
+
get dc() {
|
|
345
|
+
let a = this.s.b1("ComparisonOperator_TopPercentile");
|
|
307
346
|
return !stringIsNullOrWhiteSpace(a) ? a : "Top percentile";
|
|
308
347
|
}
|
|
309
|
-
get
|
|
310
|
-
let a = this.
|
|
348
|
+
get cc() {
|
|
349
|
+
let a = this.s.b1("ComparisonOperator_BottomPercentile");
|
|
311
350
|
return !stringIsNullOrWhiteSpace(a) ? a : "Bottom percentile";
|
|
312
351
|
}
|
|
313
|
-
get
|
|
314
|
-
let a = this.
|
|
352
|
+
get c9() {
|
|
353
|
+
let a = this.s.b1("ComparisonOperator_Today");
|
|
315
354
|
return !stringIsNullOrWhiteSpace(a) ? a : "Today";
|
|
316
355
|
}
|
|
317
|
-
get
|
|
318
|
-
let a = this.
|
|
356
|
+
get da() {
|
|
357
|
+
let a = this.s.b1("ComparisonOperator_Tomorrow");
|
|
319
358
|
return !stringIsNullOrWhiteSpace(a) ? a : "Tomorrow";
|
|
320
359
|
}
|
|
321
|
-
get
|
|
322
|
-
let a = this.
|
|
360
|
+
get dg() {
|
|
361
|
+
let a = this.s.b1("ComparisonOperator_Yesterday");
|
|
323
362
|
return !stringIsNullOrWhiteSpace(a) ? a : "Yesterday";
|
|
324
363
|
}
|
|
325
|
-
get
|
|
326
|
-
let a = this.
|
|
364
|
+
get c7() {
|
|
365
|
+
let a = this.s.b1("ComparisonOperator_ThisWeek");
|
|
327
366
|
return !stringIsNullOrWhiteSpace(a) ? a : "This week";
|
|
328
367
|
}
|
|
329
|
-
get
|
|
330
|
-
let a = this.
|
|
368
|
+
get cw() {
|
|
369
|
+
let a = this.s.b1("ComparisonOperator_NextWeek");
|
|
331
370
|
return !stringIsNullOrWhiteSpace(a) ? a : "Next week";
|
|
332
371
|
}
|
|
333
|
-
get
|
|
334
|
-
let a = this.
|
|
372
|
+
get cp() {
|
|
373
|
+
let a = this.s.b1("ComparisonOperator_LastWeek");
|
|
335
374
|
return !stringIsNullOrWhiteSpace(a) ? a : "Last week";
|
|
336
375
|
}
|
|
337
|
-
get
|
|
338
|
-
let a = this.
|
|
376
|
+
get c5() {
|
|
377
|
+
let a = this.s.b1("ComparisonOperator_ThisMonth");
|
|
339
378
|
return !stringIsNullOrWhiteSpace(a) ? a : "This month";
|
|
340
379
|
}
|
|
341
|
-
get
|
|
342
|
-
let a = this.
|
|
380
|
+
get cu() {
|
|
381
|
+
let a = this.s.b1("ComparisonOperator_NextMonth");
|
|
343
382
|
return !stringIsNullOrWhiteSpace(a) ? a : "Next month";
|
|
344
383
|
}
|
|
345
|
-
get
|
|
346
|
-
let a = this.
|
|
384
|
+
get cn() {
|
|
385
|
+
let a = this.s.b1("ComparisonOperator_LastMonth");
|
|
347
386
|
return !stringIsNullOrWhiteSpace(a) ? a : "Last month";
|
|
348
387
|
}
|
|
349
|
-
get
|
|
350
|
-
let a = this.
|
|
388
|
+
get c6() {
|
|
389
|
+
let a = this.s.b1("ComparisonOperator_ThisQuarter");
|
|
351
390
|
return !stringIsNullOrWhiteSpace(a) ? a : "This quarter";
|
|
352
391
|
}
|
|
353
|
-
get
|
|
354
|
-
let a = this.
|
|
392
|
+
get cv() {
|
|
393
|
+
let a = this.s.b1("ComparisonOperator_NextQuarter");
|
|
355
394
|
return !stringIsNullOrWhiteSpace(a) ? a : "Next quarter";
|
|
356
395
|
}
|
|
357
|
-
get
|
|
358
|
-
let a = this.
|
|
396
|
+
get co() {
|
|
397
|
+
let a = this.s.b1("ComparisonOperator_LastQuarter");
|
|
359
398
|
return !stringIsNullOrWhiteSpace(a) ? a : "Last quarter";
|
|
360
399
|
}
|
|
361
|
-
get
|
|
362
|
-
let a = this.
|
|
400
|
+
get c8() {
|
|
401
|
+
let a = this.s.b1("ComparisonOperator_ThisYear");
|
|
363
402
|
return !stringIsNullOrWhiteSpace(a) ? a : "This year";
|
|
364
403
|
}
|
|
365
|
-
get
|
|
366
|
-
let a = this.
|
|
404
|
+
get cx() {
|
|
405
|
+
let a = this.s.b1("ComparisonOperator_NextYear");
|
|
367
406
|
return !stringIsNullOrWhiteSpace(a) ? a : "Next year";
|
|
368
407
|
}
|
|
369
|
-
get
|
|
370
|
-
let a = this.
|
|
408
|
+
get cq() {
|
|
409
|
+
let a = this.s.b1("ComparisonOperator_LastYear");
|
|
371
410
|
return !stringIsNullOrWhiteSpace(a) ? a : "Last year";
|
|
372
411
|
}
|
|
373
|
-
get
|
|
374
|
-
let a = this.
|
|
412
|
+
get df() {
|
|
413
|
+
let a = this.s.b1("ComparisonOperator_YearToDate");
|
|
375
414
|
return !stringIsNullOrWhiteSpace(a) ? a : "Year to date";
|
|
376
415
|
}
|
|
377
|
-
get
|
|
378
|
-
let a = this.
|
|
416
|
+
get c0() {
|
|
417
|
+
let a = this.s.b1("ComparisonOperator_Q1");
|
|
379
418
|
return !stringIsNullOrWhiteSpace(a) ? a : "Quarter 1";
|
|
380
419
|
}
|
|
381
|
-
get
|
|
382
|
-
let a = this.
|
|
420
|
+
get c1() {
|
|
421
|
+
let a = this.s.b1("ComparisonOperator_Q2");
|
|
383
422
|
return !stringIsNullOrWhiteSpace(a) ? a : "Quarter 2";
|
|
384
423
|
}
|
|
385
|
-
get
|
|
386
|
-
let a = this.
|
|
424
|
+
get c2() {
|
|
425
|
+
let a = this.s.b1("ComparisonOperator_Q3");
|
|
387
426
|
return !stringIsNullOrWhiteSpace(a) ? a : "Quarter 3";
|
|
388
427
|
}
|
|
389
|
-
get
|
|
390
|
-
let a = this.
|
|
428
|
+
get c3() {
|
|
429
|
+
let a = this.s.b1("ComparisonOperator_Q4");
|
|
391
430
|
return !stringIsNullOrWhiteSpace(a) ? a : "Quarter 4";
|
|
392
431
|
}
|
|
393
|
-
get
|
|
394
|
-
let a = this.
|
|
432
|
+
get ct() {
|
|
433
|
+
let a = this.s.b1("ComparisonOperator_Month");
|
|
395
434
|
return !stringIsNullOrWhiteSpace(a) ? a : "Month";
|
|
396
435
|
}
|
|
397
|
-
get
|
|
398
|
-
let a = this.
|
|
436
|
+
get de() {
|
|
437
|
+
let a = this.s.b1("ComparisonOperator_Year");
|
|
399
438
|
return !stringIsNullOrWhiteSpace(a) ? a : "Year";
|
|
400
439
|
}
|
|
401
|
-
get
|
|
402
|
-
let a = this.
|
|
440
|
+
get c4() {
|
|
441
|
+
let a = this.s.b1("ComparisonOperator_StartsWith");
|
|
403
442
|
return !stringIsNullOrWhiteSpace(a) ? a : "Starts with";
|
|
404
443
|
}
|
|
405
|
-
get
|
|
406
|
-
let a = this.
|
|
444
|
+
get cg() {
|
|
445
|
+
let a = this.s.b1("ComparisonOperator_DoesNotStartWith");
|
|
407
446
|
return !stringIsNullOrWhiteSpace(a) ? a : "Does not start with";
|
|
408
447
|
}
|
|
409
|
-
get
|
|
410
|
-
let a = this.
|
|
448
|
+
get ci() {
|
|
449
|
+
let a = this.s.b1("ComparisonOperator_EndsWith");
|
|
411
450
|
return !stringIsNullOrWhiteSpace(a) ? a : "Ends with";
|
|
412
451
|
}
|
|
413
|
-
get
|
|
414
|
-
let a = this.
|
|
452
|
+
get cf() {
|
|
453
|
+
let a = this.s.b1("ComparisonOperator_DoesNotEndWith");
|
|
415
454
|
return !stringIsNullOrWhiteSpace(a) ? a : "Does not end with";
|
|
416
455
|
}
|
|
417
|
-
get
|
|
418
|
-
let a = this.
|
|
456
|
+
get cd() {
|
|
457
|
+
let a = this.s.b1("ComparisonOperator_Contains");
|
|
419
458
|
return !stringIsNullOrWhiteSpace(a) ? a : "Contains";
|
|
420
459
|
}
|
|
421
|
-
get
|
|
422
|
-
let a = this.
|
|
460
|
+
get ce() {
|
|
461
|
+
let a = this.s.b1("ComparisonOperator_DoesNotContain");
|
|
423
462
|
return !stringIsNullOrWhiteSpace(a) ? a : "Does not contain";
|
|
424
463
|
}
|
|
425
|
-
get
|
|
426
|
-
let a = this.
|
|
464
|
+
get ch() {
|
|
465
|
+
let a = this.s.b1("ComparisonOperator_Empty");
|
|
427
466
|
return !stringIsNullOrWhiteSpace(a) ? a : "Empty";
|
|
428
467
|
}
|
|
429
|
-
get
|
|
430
|
-
let a = this.
|
|
468
|
+
get cy() {
|
|
469
|
+
let a = this.s.b1("ComparisonOperator_NotEmpty");
|
|
431
470
|
return !stringIsNullOrWhiteSpace(a) ? a : "Not empty";
|
|
432
471
|
}
|
|
433
|
-
|
|
472
|
+
ej(a) {
|
|
434
473
|
if (a == null) {
|
|
435
|
-
if (this.
|
|
436
|
-
let b = this.
|
|
437
|
-
b.clicked = delegateRemove(b.clicked, runOn(this, this.
|
|
474
|
+
if (this.o != null) {
|
|
475
|
+
let b = this.o;
|
|
476
|
+
b.clicked = delegateRemove(b.clicked, runOn(this, this.ec));
|
|
438
477
|
}
|
|
439
478
|
if (this.f != null) {
|
|
440
479
|
this.f.ae.clear();
|
|
441
480
|
let c = this.f;
|
|
442
|
-
c.cellClicked = delegateRemove(c.cellClicked, runOn(this, this.
|
|
481
|
+
c.cellClicked = delegateRemove(c.cellClicked, runOn(this, this.d9));
|
|
443
482
|
}
|
|
444
|
-
if (this.
|
|
445
|
-
let d = this.
|
|
446
|
-
d.cellUpdating = delegateRemove(d.cellUpdating, runOn(this, this.
|
|
483
|
+
if (this.n != null) {
|
|
484
|
+
let d = this.n;
|
|
485
|
+
d.cellUpdating = delegateRemove(d.cellUpdating, runOn(this, this.el));
|
|
447
486
|
}
|
|
448
487
|
}
|
|
449
|
-
this.e.
|
|
488
|
+
this.e.u(a);
|
|
450
489
|
}
|
|
451
|
-
|
|
452
|
-
this.
|
|
490
|
+
ea() {
|
|
491
|
+
this.ej(null);
|
|
453
492
|
if (this.f != null) {
|
|
454
493
|
let a = this.f;
|
|
455
|
-
a.cellClicked = delegateRemove(a.cellClicked, runOn(this, this.
|
|
494
|
+
a.cellClicked = delegateRemove(a.cellClicked, runOn(this, this.d9));
|
|
456
495
|
}
|
|
457
|
-
this.
|
|
496
|
+
this.v.clear();
|
|
458
497
|
}
|
|
459
|
-
|
|
460
|
-
this.
|
|
461
|
-
this.
|
|
462
|
-
this.
|
|
498
|
+
eb(a, b, c) {
|
|
499
|
+
this.q = a;
|
|
500
|
+
this.p = b;
|
|
501
|
+
this.p.svgPath = this.bv(this.b);
|
|
502
|
+
this.p.fill = this.eq;
|
|
463
503
|
this.f = c;
|
|
464
504
|
this.f.iz = false;
|
|
465
505
|
this.f.co = 1;
|
|
@@ -470,37 +510,39 @@ export let ComparisonOperatorSelector = /*@__PURE__*/ (() => {
|
|
|
470
510
|
this.f.oc = 0;
|
|
471
511
|
this.f.go = 3;
|
|
472
512
|
this.f.i6 = false;
|
|
513
|
+
this.f.yr = new CornerRadius(0, 0);
|
|
514
|
+
this.f.aa0 = new Thickness(0, 0);
|
|
473
515
|
let d = this.f;
|
|
474
|
-
d.cellClicked = delegateCombine(d.cellClicked, runOn(this, this.
|
|
475
|
-
this.
|
|
476
|
-
this.
|
|
516
|
+
d.cellClicked = delegateCombine(d.cellClicked, runOn(this, this.d9));
|
|
517
|
+
this.n = new TemplateColumn();
|
|
518
|
+
this.n.width = ((() => {
|
|
477
519
|
let $ret = new ColumnWidth();
|
|
478
520
|
$ret.f = 32;
|
|
479
521
|
$ret.c = false;
|
|
480
522
|
return $ret;
|
|
481
523
|
})());
|
|
482
|
-
this.
|
|
483
|
-
this.
|
|
484
|
-
this.
|
|
485
|
-
let e = this.
|
|
486
|
-
e.cellUpdating = delegateCombine(e.cellUpdating, runOn(this, this.
|
|
487
|
-
this.f.columns.add(this.
|
|
524
|
+
this.n.h2 = this.n.h3 = 4;
|
|
525
|
+
this.n.h4 = this.n.h1 = 0;
|
|
526
|
+
this.n.i8 = "Icon";
|
|
527
|
+
let e = this.n;
|
|
528
|
+
e.cellUpdating = delegateCombine(e.cellUpdating, runOn(this, this.el));
|
|
529
|
+
this.f.columns.add(this.n);
|
|
488
530
|
let f = new TextColumn();
|
|
489
531
|
f.i8 = "DisplayText";
|
|
490
532
|
f.h2 = 0;
|
|
491
533
|
f.e = 0;
|
|
492
534
|
this.f.columns.add(f);
|
|
493
|
-
this.
|
|
535
|
+
this.d4();
|
|
494
536
|
}
|
|
495
|
-
|
|
496
|
-
this.
|
|
497
|
-
for (let c = 0; c < this.
|
|
498
|
-
if (this.
|
|
499
|
-
this.i = this.
|
|
537
|
+
eh(a, b) {
|
|
538
|
+
this.t = true;
|
|
539
|
+
for (let c = 0; c < this.v.count; c++) {
|
|
540
|
+
if (this.v._inner[c].a == b && this.v._inner[c].a != 44) {
|
|
541
|
+
this.i = this.v._inner[c];
|
|
500
542
|
}
|
|
501
543
|
}
|
|
502
|
-
this.
|
|
503
|
-
this.
|
|
544
|
+
this.t = false;
|
|
545
|
+
this.p.svgPath = this.i.Icon;
|
|
504
546
|
if (this.valueChanged != null) {
|
|
505
547
|
this.valueChanged(this, ((() => {
|
|
506
548
|
let $ret = new OperatorSelectorValueChangedEventArgs();
|
|
@@ -510,110 +552,124 @@ export let ComparisonOperatorSelector = /*@__PURE__*/ (() => {
|
|
|
510
552
|
})()));
|
|
511
553
|
}
|
|
512
554
|
}
|
|
513
|
-
|
|
555
|
+
ed() {
|
|
556
|
+
if (this.p != null) {
|
|
557
|
+
this.p.fill = this.eq;
|
|
558
|
+
}
|
|
559
|
+
if (this.f != null) {
|
|
560
|
+
this.f.zv = this.eq;
|
|
561
|
+
this.f.zt = this.ep;
|
|
562
|
+
}
|
|
563
|
+
}
|
|
564
|
+
ef() {
|
|
514
565
|
if (this.opening != null) {
|
|
515
566
|
this.opening(this, new OperatorSelectorOpeningEventArgs());
|
|
516
567
|
}
|
|
517
568
|
}
|
|
518
|
-
|
|
569
|
+
ee() {
|
|
570
|
+
if (this.opened != null) {
|
|
571
|
+
this.opened(this, new OperatorSelectorOpeningEventArgs());
|
|
572
|
+
}
|
|
573
|
+
}
|
|
574
|
+
bv(a) {
|
|
519
575
|
switch (a) {
|
|
520
|
-
case 7: return ComparisonOperatorSelector.
|
|
521
|
-
case 9: return ComparisonOperatorSelector.
|
|
522
|
-
case 12: return ComparisonOperatorSelector.
|
|
523
|
-
case 13: return ComparisonOperatorSelector.
|
|
524
|
-
case 17: return ComparisonOperatorSelector.
|
|
525
|
-
case 15: return ComparisonOperatorSelector.
|
|
526
|
-
case 40: return ComparisonOperatorSelector.
|
|
527
|
-
case 16: return ComparisonOperatorSelector.
|
|
576
|
+
case 7: return ComparisonOperatorSelector.ab;
|
|
577
|
+
case 9: return ComparisonOperatorSelector.ac;
|
|
578
|
+
case 12: return ComparisonOperatorSelector.ad;
|
|
579
|
+
case 13: return ComparisonOperatorSelector.bn;
|
|
580
|
+
case 17: return ComparisonOperatorSelector.bo;
|
|
581
|
+
case 15: return ComparisonOperatorSelector.bp;
|
|
582
|
+
case 40: return ComparisonOperatorSelector.bq;
|
|
583
|
+
case 16: return ComparisonOperatorSelector.br;
|
|
528
584
|
case 0: return "M5 13.5h14v2H5zm0-5h14v2H5z";
|
|
529
|
-
case 11: return ComparisonOperatorSelector.
|
|
530
|
-
case 4: return ComparisonOperatorSelector.
|
|
531
|
-
case 5: return ComparisonOperatorSelector.
|
|
532
|
-
case 26: return ComparisonOperatorSelector.
|
|
533
|
-
case 29: return ComparisonOperatorSelector.
|
|
534
|
-
case 23: return ComparisonOperatorSelector.
|
|
535
|
-
case 32: return ComparisonOperatorSelector.
|
|
536
|
-
case 2: return ComparisonOperatorSelector.
|
|
537
|
-
case 3: return ComparisonOperatorSelector.
|
|
538
|
-
case 38: return ComparisonOperatorSelector.
|
|
539
|
-
case 24: return ComparisonOperatorSelector.
|
|
540
|
-
case 27: return ComparisonOperatorSelector.
|
|
541
|
-
case 21: return ComparisonOperatorSelector.
|
|
542
|
-
case 30: return ComparisonOperatorSelector.
|
|
543
|
-
case 41: return ComparisonOperatorSelector.
|
|
544
|
-
case 1: return ComparisonOperatorSelector.
|
|
545
|
-
case 34: return ComparisonOperatorSelector.
|
|
546
|
-
case 35: return ComparisonOperatorSelector.
|
|
547
|
-
case 36: return ComparisonOperatorSelector.
|
|
548
|
-
case 37: return ComparisonOperatorSelector.
|
|
549
|
-
case 14: return ComparisonOperatorSelector.
|
|
550
|
-
case 25: return ComparisonOperatorSelector.
|
|
551
|
-
case 28: return ComparisonOperatorSelector.
|
|
552
|
-
case 22: return ComparisonOperatorSelector.
|
|
553
|
-
case 31: return ComparisonOperatorSelector.
|
|
554
|
-
case 18: return ComparisonOperatorSelector.
|
|
555
|
-
case 19: return ComparisonOperatorSelector.
|
|
556
|
-
case 6: return ComparisonOperatorSelector.
|
|
557
|
-
case 8: return ComparisonOperatorSelector.
|
|
558
|
-
case 10: return ComparisonOperatorSelector.
|
|
559
|
-
case 39: return ComparisonOperatorSelector.
|
|
560
|
-
case 33: return ComparisonOperatorSelector.
|
|
561
|
-
case 20: return ComparisonOperatorSelector.
|
|
585
|
+
case 11: return ComparisonOperatorSelector.bt;
|
|
586
|
+
case 4: return ComparisonOperatorSelector.bw;
|
|
587
|
+
case 5: return ComparisonOperatorSelector.bx;
|
|
588
|
+
case 26: return ComparisonOperatorSelector.by;
|
|
589
|
+
case 29: return ComparisonOperatorSelector.bz;
|
|
590
|
+
case 23: return ComparisonOperatorSelector.b0;
|
|
591
|
+
case 32: return ComparisonOperatorSelector.b1;
|
|
592
|
+
case 2: return ComparisonOperatorSelector.b2;
|
|
593
|
+
case 3: return ComparisonOperatorSelector.b3;
|
|
594
|
+
case 38: return ComparisonOperatorSelector.b4;
|
|
595
|
+
case 24: return ComparisonOperatorSelector.b5;
|
|
596
|
+
case 27: return ComparisonOperatorSelector.b6;
|
|
597
|
+
case 21: return ComparisonOperatorSelector.b7;
|
|
598
|
+
case 30: return ComparisonOperatorSelector.b8;
|
|
599
|
+
case 41: return ComparisonOperatorSelector.b9;
|
|
600
|
+
case 1: return ComparisonOperatorSelector.ca;
|
|
601
|
+
case 34: return ComparisonOperatorSelector.dh;
|
|
602
|
+
case 35: return ComparisonOperatorSelector.di;
|
|
603
|
+
case 36: return ComparisonOperatorSelector.dj;
|
|
604
|
+
case 37: return ComparisonOperatorSelector.dk;
|
|
605
|
+
case 14: return ComparisonOperatorSelector.dl;
|
|
606
|
+
case 25: return ComparisonOperatorSelector.dn;
|
|
607
|
+
case 28: return ComparisonOperatorSelector.dp;
|
|
608
|
+
case 22: return ComparisonOperatorSelector.dq;
|
|
609
|
+
case 31: return ComparisonOperatorSelector.dr;
|
|
610
|
+
case 18: return ComparisonOperatorSelector.ds;
|
|
611
|
+
case 19: return ComparisonOperatorSelector.dt;
|
|
612
|
+
case 6: return ComparisonOperatorSelector.du;
|
|
613
|
+
case 8: return ComparisonOperatorSelector.dv;
|
|
614
|
+
case 10: return ComparisonOperatorSelector.dw;
|
|
615
|
+
case 39: return ComparisonOperatorSelector.dy;
|
|
616
|
+
case 33: return ComparisonOperatorSelector.dz;
|
|
617
|
+
case 20: return ComparisonOperatorSelector.d0;
|
|
562
618
|
default: return "";
|
|
563
619
|
}
|
|
564
620
|
}
|
|
565
|
-
|
|
621
|
+
bu(a) {
|
|
566
622
|
switch (a) {
|
|
567
|
-
case 7: return this.
|
|
568
|
-
case 9: return this.
|
|
569
|
-
case 12: return this.
|
|
570
|
-
case 13: return this.
|
|
571
|
-
case 17: return this.
|
|
572
|
-
case 15: return this.
|
|
573
|
-
case 40: return this.
|
|
574
|
-
case 16: return this.
|
|
575
|
-
case 0: return this.
|
|
576
|
-
case 11: return this.
|
|
577
|
-
case 4: return this.
|
|
578
|
-
case 5: return this.
|
|
579
|
-
case 26: return this.
|
|
580
|
-
case 29: return this.
|
|
581
|
-
case 23: return this.
|
|
582
|
-
case 32: return this.
|
|
583
|
-
case 2: return this.
|
|
584
|
-
case 3: return this.
|
|
585
|
-
case 38: return this.
|
|
586
|
-
case 24: return this.
|
|
587
|
-
case 27: return this.
|
|
588
|
-
case 21: return this.
|
|
589
|
-
case 30: return this.
|
|
590
|
-
case 41: return this.
|
|
591
|
-
case 1: return this.
|
|
592
|
-
case 34: return this.
|
|
593
|
-
case 35: return this.
|
|
594
|
-
case 36: return this.
|
|
595
|
-
case 37: return this.
|
|
596
|
-
case 14: return this.
|
|
597
|
-
case 25: return this.
|
|
598
|
-
case 28: return this.
|
|
599
|
-
case 22: return this.
|
|
600
|
-
case 31: return this.
|
|
601
|
-
case 18: return this.
|
|
602
|
-
case 19: return this.
|
|
603
|
-
case 6: return this.
|
|
604
|
-
case 8: return this.
|
|
605
|
-
case 10: return this.
|
|
606
|
-
case 39: return this.
|
|
607
|
-
case 33: return this.
|
|
608
|
-
case 20: return this.
|
|
623
|
+
case 7: return this.cb;
|
|
624
|
+
case 9: return this.cc;
|
|
625
|
+
case 12: return this.cd;
|
|
626
|
+
case 13: return this.ce;
|
|
627
|
+
case 17: return this.cf;
|
|
628
|
+
case 15: return this.cg;
|
|
629
|
+
case 40: return this.ch;
|
|
630
|
+
case 16: return this.ci;
|
|
631
|
+
case 0: return this.cj;
|
|
632
|
+
case 11: return this.ck;
|
|
633
|
+
case 4: return this.cl;
|
|
634
|
+
case 5: return this.cm;
|
|
635
|
+
case 26: return this.cn;
|
|
636
|
+
case 29: return this.co;
|
|
637
|
+
case 23: return this.cp;
|
|
638
|
+
case 32: return this.cq;
|
|
639
|
+
case 2: return this.cr;
|
|
640
|
+
case 3: return this.cs;
|
|
641
|
+
case 38: return this.ct;
|
|
642
|
+
case 24: return this.cu;
|
|
643
|
+
case 27: return this.cv;
|
|
644
|
+
case 21: return this.cw;
|
|
645
|
+
case 30: return this.cx;
|
|
646
|
+
case 41: return this.cy;
|
|
647
|
+
case 1: return this.cz;
|
|
648
|
+
case 34: return this.c0;
|
|
649
|
+
case 35: return this.c1;
|
|
650
|
+
case 36: return this.c2;
|
|
651
|
+
case 37: return this.c3;
|
|
652
|
+
case 14: return this.c4;
|
|
653
|
+
case 25: return this.c5;
|
|
654
|
+
case 28: return this.c6;
|
|
655
|
+
case 22: return this.c7;
|
|
656
|
+
case 31: return this.c8;
|
|
657
|
+
case 18: return this.c9;
|
|
658
|
+
case 19: return this.da;
|
|
659
|
+
case 6: return this.db;
|
|
660
|
+
case 8: return this.dc;
|
|
661
|
+
case 10: return this.dd;
|
|
662
|
+
case 39: return this.de;
|
|
663
|
+
case 33: return this.df;
|
|
664
|
+
case 20: return this.dg;
|
|
609
665
|
default: return "";
|
|
610
666
|
}
|
|
611
667
|
}
|
|
612
|
-
|
|
613
|
-
this.
|
|
668
|
+
d4() {
|
|
669
|
+
this.v = new List$1(OperatorModel.$, 0);
|
|
614
670
|
switch (this.d) {
|
|
615
671
|
case 2:
|
|
616
|
-
this.
|
|
672
|
+
this.d2(this.v);
|
|
617
673
|
break;
|
|
618
674
|
case 10:
|
|
619
675
|
case 6:
|
|
@@ -622,38 +678,38 @@ export let ComparisonOperatorSelector = /*@__PURE__*/ (() => {
|
|
|
622
678
|
case 3:
|
|
623
679
|
case 4:
|
|
624
680
|
case 7:
|
|
625
|
-
this.
|
|
681
|
+
this.d5(this.v);
|
|
626
682
|
break;
|
|
627
683
|
case 8:
|
|
628
|
-
this.
|
|
684
|
+
this.d3(this.v);
|
|
629
685
|
break;
|
|
630
686
|
case 0:
|
|
631
|
-
this.
|
|
687
|
+
this.d6(this.v);
|
|
632
688
|
break;
|
|
633
689
|
}
|
|
634
|
-
this.
|
|
690
|
+
this.v.o(this.u);
|
|
635
691
|
if (this.f != null) {
|
|
636
|
-
this.e.
|
|
637
|
-
if (this.
|
|
638
|
-
this.i = this.
|
|
692
|
+
this.e.v(this.v);
|
|
693
|
+
if (this.v.count > 0) {
|
|
694
|
+
this.i = this.v._inner[0];
|
|
639
695
|
}
|
|
640
|
-
this.e.k = Math.min(this.
|
|
696
|
+
this.e.k = Math.min(this.v.count * this.f.nf + 2, this.z);
|
|
641
697
|
}
|
|
642
698
|
}
|
|
643
699
|
h(a) {
|
|
644
700
|
return ((() => {
|
|
645
701
|
let $ret = new OperatorModel();
|
|
646
702
|
$ret.a = a;
|
|
647
|
-
$ret.DisplayText = this.
|
|
648
|
-
$ret.Icon = this.
|
|
703
|
+
$ret.DisplayText = this.bu(a);
|
|
704
|
+
$ret.Icon = this.bv(a);
|
|
649
705
|
return $ret;
|
|
650
706
|
})());
|
|
651
707
|
}
|
|
652
|
-
|
|
708
|
+
d2(a) {
|
|
653
709
|
a.add(this.h(10));
|
|
654
710
|
a.add(this.h(11));
|
|
655
711
|
}
|
|
656
|
-
|
|
712
|
+
d5(a) {
|
|
657
713
|
a.add(this.h(0));
|
|
658
714
|
a.add(this.h(1));
|
|
659
715
|
a.add(this.h(2));
|
|
@@ -661,7 +717,7 @@ export let ComparisonOperatorSelector = /*@__PURE__*/ (() => {
|
|
|
661
717
|
a.add(this.h(4));
|
|
662
718
|
a.add(this.h(5));
|
|
663
719
|
}
|
|
664
|
-
|
|
720
|
+
d3(a) {
|
|
665
721
|
a.add(this.h(0));
|
|
666
722
|
a.add(this.h(1));
|
|
667
723
|
a.add(this.h(2));
|
|
@@ -691,7 +747,7 @@ export let ComparisonOperatorSelector = /*@__PURE__*/ (() => {
|
|
|
691
747
|
a.add(this.h(36));
|
|
692
748
|
a.add(this.h(37));
|
|
693
749
|
}
|
|
694
|
-
|
|
750
|
+
d6(a) {
|
|
695
751
|
a.add(this.h(0));
|
|
696
752
|
a.add(this.h(1));
|
|
697
753
|
a.add(this.h(14));
|
|
@@ -703,127 +759,128 @@ export let ComparisonOperatorSelector = /*@__PURE__*/ (() => {
|
|
|
703
759
|
a.add(this.h(40));
|
|
704
760
|
a.add(this.h(41));
|
|
705
761
|
}
|
|
706
|
-
|
|
762
|
+
y() {
|
|
707
763
|
if (this.f != null) {
|
|
708
764
|
let a = Math.min(8, this.f.actualDataSource != null ? this.f.actualDataSource.actualCount : 0);
|
|
709
765
|
return a * (this.f.nf + this.f.oc) + this.f.ne + 2;
|
|
710
766
|
}
|
|
711
767
|
return 0;
|
|
712
768
|
}
|
|
713
|
-
|
|
714
|
-
if (this.
|
|
715
|
-
if (!this.
|
|
716
|
-
this.
|
|
717
|
-
this.
|
|
769
|
+
em() {
|
|
770
|
+
if (this.q != null) {
|
|
771
|
+
if (!this.q.t) {
|
|
772
|
+
this.ef();
|
|
773
|
+
this.q.showRelativeToExclusionRect(this.e.w(), 1, 0);
|
|
774
|
+
this.ee();
|
|
718
775
|
}
|
|
719
776
|
else {
|
|
720
|
-
this.
|
|
777
|
+
this.q.ao();
|
|
721
778
|
}
|
|
722
779
|
}
|
|
723
780
|
}
|
|
724
|
-
|
|
725
|
-
if (this.
|
|
726
|
-
this.
|
|
781
|
+
d8() {
|
|
782
|
+
if (this.q != null) {
|
|
783
|
+
this.q.ao();
|
|
727
784
|
}
|
|
728
785
|
}
|
|
729
|
-
|
|
786
|
+
d1(a, b, c, d) {
|
|
730
787
|
let e = ((() => {
|
|
731
788
|
let $ret = new OperatorModel();
|
|
732
789
|
$ret.DisplayText = a;
|
|
733
|
-
$ret.Icon = b != null ? b : ComparisonOperatorSelector.
|
|
790
|
+
$ret.Icon = b != null ? b : ComparisonOperatorSelector.af;
|
|
734
791
|
$ret.a = 44;
|
|
735
792
|
$ret.c = c;
|
|
736
793
|
$ret.b = d;
|
|
737
794
|
return $ret;
|
|
738
795
|
})());
|
|
739
|
-
this.
|
|
740
|
-
if (this.
|
|
741
|
-
this.
|
|
796
|
+
this.u.add(e);
|
|
797
|
+
if (this.v != null) {
|
|
798
|
+
this.v.add(e);
|
|
742
799
|
}
|
|
743
800
|
if (this.f != null && this.f.actualDataSource != null) {
|
|
744
|
-
this.f.actualDataSource.notifyInsertItem(this.
|
|
801
|
+
this.f.actualDataSource.notifyInsertItem(this.v.count, e);
|
|
745
802
|
}
|
|
746
803
|
}
|
|
747
|
-
|
|
748
|
-
if (this.
|
|
804
|
+
d7() {
|
|
805
|
+
if (this.v == null) {
|
|
749
806
|
return;
|
|
750
807
|
}
|
|
751
|
-
for (let a = 0; a < this.
|
|
752
|
-
if (this.
|
|
753
|
-
this.
|
|
808
|
+
for (let a = 0; a < this.v.count; a++) {
|
|
809
|
+
if (this.v._inner[a].a == 44) {
|
|
810
|
+
this.v.removeAt(a);
|
|
754
811
|
a--;
|
|
755
812
|
}
|
|
756
813
|
}
|
|
757
|
-
this.
|
|
814
|
+
this.u.clear();
|
|
758
815
|
}
|
|
759
|
-
|
|
816
|
+
ek(a, b) {
|
|
760
817
|
if (a != null) {
|
|
761
|
-
for (let c = 0; c < this.
|
|
762
|
-
if (this.
|
|
763
|
-
this.i = this.
|
|
818
|
+
for (let c = 0; c < this.u.count; c++) {
|
|
819
|
+
if (this.u._inner[c].c == a) {
|
|
820
|
+
this.i = this.u._inner[c];
|
|
764
821
|
}
|
|
765
822
|
}
|
|
766
823
|
}
|
|
767
824
|
else {
|
|
768
|
-
if (b >= 0 && b < this.
|
|
769
|
-
this.i = this.
|
|
825
|
+
if (b >= 0 && b < this.u.count) {
|
|
826
|
+
this.i = this.u._inner[b];
|
|
770
827
|
}
|
|
771
828
|
}
|
|
772
829
|
}
|
|
773
|
-
|
|
774
|
-
this.
|
|
830
|
+
ec(a, b) {
|
|
831
|
+
this.em();
|
|
775
832
|
}
|
|
776
|
-
|
|
833
|
+
d9(a, b) {
|
|
777
834
|
let c = b.cellInfo.et;
|
|
778
835
|
this.i = this.f.actualDataSource.getItemAtIndex(c);
|
|
779
|
-
this.
|
|
836
|
+
this.d8();
|
|
780
837
|
}
|
|
781
|
-
|
|
782
|
-
this.e.
|
|
838
|
+
el(a, b) {
|
|
839
|
+
this.e.t(b.content, b.cellInfo.g4);
|
|
783
840
|
}
|
|
784
841
|
}
|
|
785
842
|
ComparisonOperatorSelector.$t = /*@__PURE__*/ markType(ComparisonOperatorSelector, 'ComparisonOperatorSelector', Base.$, [INotifyPropertyChanged_$type]);
|
|
786
|
-
ComparisonOperatorSelector.
|
|
787
|
-
ComparisonOperatorSelector.
|
|
788
|
-
ComparisonOperatorSelector.
|
|
789
|
-
ComparisonOperatorSelector.
|
|
790
|
-
ComparisonOperatorSelector.
|
|
791
|
-
ComparisonOperatorSelector.
|
|
792
|
-
ComparisonOperatorSelector.
|
|
793
|
-
ComparisonOperatorSelector.
|
|
794
|
-
ComparisonOperatorSelector.
|
|
795
|
-
ComparisonOperatorSelector.
|
|
796
|
-
ComparisonOperatorSelector.
|
|
797
|
-
ComparisonOperatorSelector.
|
|
798
|
-
ComparisonOperatorSelector.
|
|
799
|
-
ComparisonOperatorSelector.
|
|
800
|
-
ComparisonOperatorSelector.
|
|
801
|
-
ComparisonOperatorSelector.
|
|
802
|
-
ComparisonOperatorSelector.
|
|
803
|
-
ComparisonOperatorSelector.
|
|
804
|
-
ComparisonOperatorSelector.
|
|
805
|
-
ComparisonOperatorSelector.
|
|
806
|
-
ComparisonOperatorSelector.
|
|
807
|
-
ComparisonOperatorSelector.
|
|
808
|
-
ComparisonOperatorSelector.
|
|
809
|
-
ComparisonOperatorSelector.
|
|
810
|
-
ComparisonOperatorSelector.
|
|
811
|
-
ComparisonOperatorSelector.
|
|
812
|
-
ComparisonOperatorSelector.
|
|
813
|
-
ComparisonOperatorSelector.
|
|
814
|
-
ComparisonOperatorSelector.
|
|
815
|
-
ComparisonOperatorSelector.
|
|
816
|
-
ComparisonOperatorSelector.
|
|
817
|
-
ComparisonOperatorSelector.
|
|
818
|
-
ComparisonOperatorSelector.
|
|
819
|
-
ComparisonOperatorSelector.
|
|
820
|
-
ComparisonOperatorSelector.
|
|
821
|
-
ComparisonOperatorSelector.
|
|
822
|
-
ComparisonOperatorSelector.
|
|
823
|
-
ComparisonOperatorSelector.
|
|
824
|
-
ComparisonOperatorSelector.
|
|
825
|
-
ComparisonOperatorSelector.
|
|
826
|
-
ComparisonOperatorSelector.
|
|
827
|
-
ComparisonOperatorSelector.
|
|
843
|
+
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 ";
|
|
844
|
+
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 ";
|
|
845
|
+
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";
|
|
846
|
+
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";
|
|
847
|
+
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";
|
|
848
|
+
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";
|
|
849
|
+
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";
|
|
850
|
+
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";
|
|
851
|
+
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";
|
|
852
|
+
ComparisonOperatorSelector.bw = "M6 7.11L15.09 12 6 16.89V19l12-6.46v-1.08L6 5v2.11z";
|
|
853
|
+
ComparisonOperatorSelector.bx = "M5.99 19h12.02v2H5.99zM18 9.47L6 3v2.11L15.09 10 6 14.9v2.11l12-6.47V9.47z";
|
|
854
|
+
ComparisonOperatorSelector.b2 = "M6 12.54L18 19v-2.11L8.91 12 18 7.11V5L6 11.46v1.08z";
|
|
855
|
+
ComparisonOperatorSelector.b3 = "M5.99 19h12.02v2H5.99zM18 14.9L8.91 10 18 5.11V3L6 9.47v1.07l12 6.47V14.9z";
|
|
856
|
+
ComparisonOperatorSelector.bq = "M5 17h2v2H5zm8 0h2v2h-2zm-8-4h2v2H5zm12 4h2v2h-2zM13 5h2v2h-2zM9 17h2v2H9zm8-8h2v2h-2zm0 4h2v2h-2zm0-8h2v2h-2zM5 9h2v2H5zm0-4h2v2H5zm4 0h2v2H9z";
|
|
857
|
+
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";
|
|
858
|
+
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";
|
|
859
|
+
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";
|
|
860
|
+
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";
|
|
861
|
+
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";
|
|
862
|
+
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";
|
|
863
|
+
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";
|
|
864
|
+
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";
|
|
865
|
+
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";
|
|
866
|
+
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";
|
|
867
|
+
ComparisonOperatorSelector.dp = "M12,7V17H22A10,10,0,0,0,12,7Zm-2,5L6,16V13H2V11H6V8Z";
|
|
868
|
+
ComparisonOperatorSelector.b6 = "M4,9.253A8.03,8.03,0,0,1,9.747,15H4V9.253M2,7V17H12A10,10,0,0,0,2,7ZM18,8v3H14v2h4v3l4-4Z";
|
|
869
|
+
ComparisonOperatorSelector.bz = "M12,7V17H22A10,10,0,0,0,12,7ZM2,12l4,4V13h4V11H6V8Z";
|
|
870
|
+
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";
|
|
871
|
+
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";
|
|
872
|
+
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";
|
|
873
|
+
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";
|
|
874
|
+
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";
|
|
875
|
+
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";
|
|
876
|
+
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";
|
|
877
|
+
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";
|
|
878
|
+
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";
|
|
879
|
+
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";
|
|
880
|
+
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";
|
|
881
|
+
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";
|
|
882
|
+
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";
|
|
883
|
+
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";
|
|
884
|
+
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";
|
|
828
885
|
return ComparisonOperatorSelector;
|
|
829
886
|
})();
|