igniteui-webcomponents-data-grids 7.1.0-beta.1 → 7.1.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-webcomponents-data-grids.umd.js +11002 -9831
- package/bundles/igniteui-webcomponents-data-grids.umd.min.js +1 -1
- package/esm2015/lib/AccessibilityRow.js +10 -10
- package/esm2015/lib/CanvasCellPresenterBase.js +12 -12
- package/esm2015/lib/CanvasContentCellModelHelper.js +12 -12
- package/esm2015/lib/CanvasDateTimeCellPresenter.js +8 -8
- package/esm2015/lib/CanvasGridCellBase.js +2 -2
- package/esm2015/lib/CanvasImageCellPresenter.js +9 -9
- package/esm2015/lib/CanvasNumericCellPresenter.js +8 -8
- package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +9 -9
- package/esm2015/lib/CanvasSummaryCellPresenter.js +4 -4
- package/esm2015/lib/CanvasTemplateCellPresenter.js +5 -5
- package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +5 -5
- package/esm2015/lib/CanvasTextCellPresenter.js +9 -9
- package/esm2015/lib/CanvasTextHeaderCellPresenter.js +11 -11
- package/esm2015/lib/CellPath.js +79 -69
- package/esm2015/lib/CellPresenterBase.js +46 -46
- package/esm2015/lib/CheckboxListBridge.js +12 -0
- package/esm2015/lib/CheckboxListView_combined.js +329 -283
- package/esm2015/lib/ColumnChooserView_combined.js +11 -11
- package/esm2015/lib/ColumnFilterCondition_combined.js +7043 -6712
- package/esm2015/lib/ColumnGroupingView_combined.js +5 -5
- package/esm2015/lib/ColumnPinningView_combined.js +11 -11
- package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +7 -7
- package/esm2015/lib/ContentCellModelHelper.js +16 -16
- package/esm2015/lib/DataGridAccessibilityLayoutPanel.js +1 -1
- package/esm2015/lib/DataGridCellLayoutPanel.js +17 -17
- package/esm2015/lib/DataGridScrollerKeyboardListener.js +2 -2
- package/esm2015/lib/DataGridToolbarView_combined.js +2 -2
- package/esm2015/lib/DateTimeCellPresenter.js +9 -9
- package/esm2015/lib/DraggerView.js +1 -7
- package/esm2015/lib/EditorCell.js +290 -290
- package/esm2015/lib/EditorCellPresenter.js +27 -27
- package/esm2015/lib/FilterCell.js +267 -267
- package/esm2015/lib/FilterCellPresenter.js +17 -17
- package/esm2015/lib/GridCellBase.js +210 -202
- package/esm2015/lib/GridColumnFilterOptionsView_combined.js +13 -13
- package/esm2015/lib/GridColumnGroupOptionsView_combined.js +7 -7
- package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
- package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
- package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
- package/esm2015/lib/GridColumnPinOptionsView_combined.js +4 -4
- package/esm2015/lib/GridColumnSortOptionsView_combined.js +2 -2
- package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +7 -7
- package/esm2015/lib/GridExternalWrapper.js +12 -6
- package/esm2015/lib/GridFilterDialogView_combined.js +238 -187
- package/esm2015/lib/ISummaryChooserView_combined.js +4 -4
- package/esm2015/lib/ImageCell.js +58 -58
- package/esm2015/lib/ImageCellPresenter.js +17 -17
- package/esm2015/lib/MultiColumnComboBoxView_combined.js +9 -9
- package/esm2015/lib/NumericCell.js +8 -8
- package/esm2015/lib/NumericCellPresenter.js +9 -9
- package/esm2015/lib/PropertyEditorView_combined.js +19 -19
- package/esm2015/lib/SectionHeaderCell.js +30 -20
- package/esm2015/lib/SectionHeaderCellPresenter.js +10 -10
- package/esm2015/lib/SummaryCell.js +44 -44
- package/esm2015/lib/SummaryCellPresenter.js +9 -9
- package/esm2015/lib/TemplateCell.js +15 -15
- package/esm2015/lib/TemplateCellPresenter.js +6 -6
- package/esm2015/lib/TemplateHeader.js +8 -8
- package/esm2015/lib/TemplateHeaderCell.js +5 -5
- package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
- package/esm2015/lib/TemplateHeaderCellPresenter.js +6 -6
- package/esm2015/lib/TemplateSectionHeader.js +2 -2
- package/esm2015/lib/TextCell.js +31 -30
- package/esm2015/lib/TextCellPresenter.js +10 -10
- package/esm2015/lib/TextHeaderCell.js +181 -175
- package/esm2015/lib/TextHeaderCellPresenter.js +66 -57
- package/esm2015/lib/VerticalSeparatorCell.js +37 -37
- package/esm2015/lib/igc-cell-info.js +195 -186
- package/esm2015/lib/igc-checkbox-list-component.js +42 -22
- package/esm2015/lib/igc-column-moving-separator-component.js +9 -9
- package/esm2015/lib/igc-column-resizing-separator-component.js +6 -6
- package/esm2015/lib/igc-combo-box-column-component.js +10 -10
- package/esm2015/lib/igc-data-binding-event-args.js +3 -0
- package/esm2015/lib/igc-data-grid-column-component.js +336 -276
- package/esm2015/lib/igc-data-grid-component.js +220 -32
- package/esm2015/lib/igc-data-grid-filter-dialog-component.js +67 -37
- package/esm2015/lib/igc-data-grid-toolbar-component.js +40 -8
- package/esm2015/lib/igc-date-time-cell-info.js +12 -12
- package/esm2015/lib/igc-date-time-column-component.js +23 -23
- package/esm2015/lib/igc-definition-base-component.js +64 -64
- package/esm2015/lib/igc-editor-cell-info.js +23 -23
- package/esm2015/lib/igc-filter-cell-info.js +26 -26
- package/esm2015/lib/igc-filter-row-definition-component.js +12 -12
- package/esm2015/lib/igc-header-component.js +24 -24
- package/esm2015/lib/igc-image-cell-info.js +6 -6
- package/esm2015/lib/igc-image-column-component.js +12 -12
- package/esm2015/lib/igc-multi-column-combo-box-component.js +160 -32
- package/esm2015/lib/igc-numeric-cell-info.js +28 -28
- package/esm2015/lib/igc-numeric-column-component.js +38 -38
- package/esm2015/lib/igc-section-header-cell-info.js +6 -6
- package/esm2015/lib/igc-section-header-component.js +36 -36
- package/esm2015/lib/igc-summary-cell-info.js +9 -9
- package/esm2015/lib/igc-summary-row-component.js +30 -30
- package/esm2015/lib/igc-summary-row-root-module.js +2 -0
- package/esm2015/lib/igc-summary-row-section-module.js +2 -0
- package/esm2015/lib/igc-template-cell-info.js +2 -2
- package/esm2015/lib/igc-template-header-cell-info.js +2 -2
- package/esm2015/lib/igc-text-cell-info.js +2 -2
- package/esm2015/lib/igc-text-column-component.js +9 -9
- package/esm2015/lib/igc-text-header-cell-info.js +67 -40
- package/esm5/lib/AccessibilityRow.js +10 -10
- package/esm5/lib/CanvasCellPresenterBase.js +12 -12
- package/esm5/lib/CanvasContentCellModelHelper.js +12 -12
- package/esm5/lib/CanvasDateTimeCellPresenter.js +8 -8
- package/esm5/lib/CanvasGridCellBase.js +2 -2
- package/esm5/lib/CanvasImageCellPresenter.js +9 -9
- package/esm5/lib/CanvasNumericCellPresenter.js +8 -8
- package/esm5/lib/CanvasSectionHeaderCellPresenter.js +9 -9
- package/esm5/lib/CanvasSummaryCellPresenter.js +4 -4
- package/esm5/lib/CanvasTemplateCellPresenter.js +5 -5
- package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +5 -5
- package/esm5/lib/CanvasTextCellPresenter.js +9 -9
- package/esm5/lib/CanvasTextHeaderCellPresenter.js +11 -11
- package/esm5/lib/CellPath.js +79 -65
- package/esm5/lib/CellPresenterBase.js +46 -46
- package/esm5/lib/CheckboxListBridge.js +12 -0
- package/esm5/lib/CheckboxListView_combined.js +332 -278
- package/esm5/lib/ColumnChooserView_combined.js +11 -11
- package/esm5/lib/ColumnFilterCondition_combined.js +6860 -6456
- package/esm5/lib/ColumnGroupingView_combined.js +5 -5
- package/esm5/lib/ColumnPinningView_combined.js +11 -11
- package/esm5/lib/ComparisonOperatorSelectorView_combined.js +7 -7
- package/esm5/lib/ContentCellModelHelper.js +16 -16
- package/esm5/lib/DataGridAccessibilityLayoutPanel.js +1 -1
- package/esm5/lib/DataGridCellLayoutPanel.js +17 -17
- package/esm5/lib/DataGridScrollerKeyboardListener.js +2 -2
- package/esm5/lib/DataGridToolbarView_combined.js +2 -2
- package/esm5/lib/DateTimeCellPresenter.js +9 -9
- package/esm5/lib/DraggerView.js +1 -7
- package/esm5/lib/EditorCell.js +276 -276
- package/esm5/lib/EditorCellPresenter.js +27 -27
- package/esm5/lib/FilterCell.js +257 -257
- package/esm5/lib/FilterCellPresenter.js +17 -17
- package/esm5/lib/GridCellBase.js +205 -193
- package/esm5/lib/GridColumnFilterOptionsView_combined.js +13 -13
- package/esm5/lib/GridColumnGroupOptionsView_combined.js +7 -7
- package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
- package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
- package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
- package/esm5/lib/GridColumnPinOptionsView_combined.js +4 -4
- package/esm5/lib/GridColumnSortOptionsView_combined.js +2 -2
- package/esm5/lib/GridColumnSummaryOptionsView_combined.js +7 -7
- package/esm5/lib/GridExternalWrapper.js +12 -6
- package/esm5/lib/GridFilterDialogView_combined.js +240 -177
- package/esm5/lib/ISummaryChooserView_combined.js +4 -4
- package/esm5/lib/ImageCell.js +57 -57
- package/esm5/lib/ImageCellPresenter.js +17 -17
- package/esm5/lib/MultiColumnComboBoxView_combined.js +9 -9
- package/esm5/lib/NumericCell.js +8 -8
- package/esm5/lib/NumericCellPresenter.js +9 -9
- package/esm5/lib/PropertyEditorView_combined.js +19 -19
- package/esm5/lib/SectionHeaderCell.js +30 -20
- package/esm5/lib/SectionHeaderCellPresenter.js +10 -10
- package/esm5/lib/SummaryCell.js +44 -44
- package/esm5/lib/SummaryCellPresenter.js +9 -9
- package/esm5/lib/TemplateCell.js +15 -15
- package/esm5/lib/TemplateCellPresenter.js +6 -6
- package/esm5/lib/TemplateHeader.js +8 -8
- package/esm5/lib/TemplateHeaderCell.js +5 -5
- package/esm5/lib/TemplateHeaderCellModel.js +17 -17
- package/esm5/lib/TemplateHeaderCellPresenter.js +6 -6
- package/esm5/lib/TemplateSectionHeader.js +2 -2
- package/esm5/lib/TextCell.js +31 -30
- package/esm5/lib/TextCellPresenter.js +10 -10
- package/esm5/lib/TextHeaderCell.js +185 -179
- package/esm5/lib/TextHeaderCellPresenter.js +66 -57
- package/esm5/lib/VerticalSeparatorCell.js +37 -37
- package/esm5/lib/igc-cell-info.js +207 -186
- package/esm5/lib/igc-checkbox-list-component.js +50 -22
- package/esm5/lib/igc-column-moving-separator-component.js +9 -9
- package/esm5/lib/igc-column-resizing-separator-component.js +6 -6
- package/esm5/lib/igc-combo-box-column-component.js +10 -10
- package/esm5/lib/igc-data-binding-event-args.js +3 -0
- package/esm5/lib/igc-data-grid-column-component.js +360 -276
- package/esm5/lib/igc-data-grid-component.js +240 -32
- package/esm5/lib/igc-data-grid-filter-dialog-component.js +79 -37
- package/esm5/lib/igc-data-grid-toolbar-component.js +40 -8
- package/esm5/lib/igc-date-time-cell-info.js +12 -12
- package/esm5/lib/igc-date-time-column-component.js +23 -23
- package/esm5/lib/igc-definition-base-component.js +64 -64
- package/esm5/lib/igc-editor-cell-info.js +23 -23
- package/esm5/lib/igc-filter-cell-info.js +26 -26
- package/esm5/lib/igc-filter-row-definition-component.js +12 -12
- package/esm5/lib/igc-header-component.js +24 -24
- package/esm5/lib/igc-image-cell-info.js +6 -6
- package/esm5/lib/igc-image-column-component.js +12 -12
- package/esm5/lib/igc-multi-column-combo-box-component.js +160 -32
- package/esm5/lib/igc-numeric-cell-info.js +28 -28
- package/esm5/lib/igc-numeric-column-component.js +38 -38
- package/esm5/lib/igc-section-header-cell-info.js +6 -6
- package/esm5/lib/igc-section-header-component.js +36 -36
- package/esm5/lib/igc-summary-cell-info.js +9 -9
- package/esm5/lib/igc-summary-row-component.js +29 -29
- package/esm5/lib/igc-summary-row-root-module.js +2 -0
- package/esm5/lib/igc-summary-row-section-module.js +2 -0
- package/esm5/lib/igc-template-cell-info.js +2 -2
- package/esm5/lib/igc-template-header-cell-info.js +2 -2
- package/esm5/lib/igc-text-cell-info.js +2 -2
- package/esm5/lib/igc-text-column-component.js +9 -9
- package/esm5/lib/igc-text-header-cell-info.js +79 -40
- package/fesm2015/igniteui-webcomponents-data-grids.js +10931 -9949
- package/fesm5/igniteui-webcomponents-data-grids.js +11002 -9831
- package/lib/CellPath.d.ts +21 -20
- package/lib/CheckboxListExternal.d.ts +3 -0
- package/lib/CheckboxListView_combined.d.ts +77 -71
- package/lib/ColumnFilterCondition_combined.d.ts +1759 -1699
- package/lib/EditorCell.d.ts +63 -63
- package/lib/FilterCell.d.ts +55 -55
- package/lib/GridCellBase.d.ts +82 -80
- package/lib/GridExternalWrapper.d.ts +2 -0
- package/lib/GridFilterDialogView_combined.d.ts +61 -52
- package/lib/ImageCell.d.ts +15 -15
- package/lib/NumericCell.d.ts +2 -2
- package/lib/SectionHeaderCell.d.ts +6 -4
- package/lib/SummaryCell.d.ts +10 -10
- package/lib/TemplateCell.d.ts +5 -5
- package/lib/TemplateHeader.d.ts +3 -3
- package/lib/TemplateHeaderCell.d.ts +2 -2
- package/lib/TemplateHeaderCellModel.d.ts +7 -7
- package/lib/TemplateSectionHeader.d.ts +2 -2
- package/lib/TextCell.d.ts +7 -7
- package/lib/TextHeaderCell.d.ts +30 -30
- package/lib/VerticalSeparatorCell.d.ts +8 -8
- package/lib/igc-cell-info.d.ts +3 -0
- package/lib/igc-checkbox-list-component.d.ts +10 -0
- package/lib/igc-data-grid-column-component.d.ts +30 -0
- package/lib/igc-data-grid-component.d.ts +27 -0
- package/lib/igc-data-grid-filter-dialog-component.d.ts +15 -0
- package/lib/igc-summary-row-component.d.ts +2 -2
- package/lib/igc-text-header-cell-info.d.ts +15 -0
- package/package.json +4 -4
|
@@ -60,10 +60,10 @@ let GridFilterDialogView = /*@__PURE__*/ (() => {
|
|
|
60
60
|
}
|
|
61
61
|
y() {
|
|
62
62
|
this.x();
|
|
63
|
-
this.b.
|
|
63
|
+
this.b.cb();
|
|
64
64
|
}
|
|
65
65
|
t() {
|
|
66
|
-
this.b.
|
|
66
|
+
this.b.b3(this.l, this.k, this.aa);
|
|
67
67
|
}
|
|
68
68
|
s() {
|
|
69
69
|
if (KeyFrameAnimationFactory.h == null) {
|
|
@@ -182,7 +182,7 @@ let GridFilterDialogPanel = /*@__PURE__*/ (() => {
|
|
|
182
182
|
e.setStyleProperty("background-color", "#fff");
|
|
183
183
|
e.setStyleProperty("border-radius", "3px");
|
|
184
184
|
e.setStyleProperty("overflow", "auto");
|
|
185
|
-
let g = ElevationHelper.e(12, this.b.
|
|
185
|
+
let g = ElevationHelper.e(12, this.b.cz, this.b.cy, this.b.cx);
|
|
186
186
|
e.setStyleProperty("boxShadow", g);
|
|
187
187
|
e.listen("mousedown", runOn(this, this.o));
|
|
188
188
|
this.onDocumentKeyDown = this.onDocumentKeyDown.bind(this);
|
|
@@ -314,7 +314,7 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
314
314
|
let b = this.af;
|
|
315
315
|
this.af = a;
|
|
316
316
|
if (b != this.af) {
|
|
317
|
-
this.
|
|
317
|
+
this.ca("IsAnimationEnabled", b, this.af);
|
|
318
318
|
}
|
|
319
319
|
}
|
|
320
320
|
get aq() {
|
|
@@ -323,7 +323,7 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
323
323
|
set aq(a) {
|
|
324
324
|
let b = this.an;
|
|
325
325
|
this.an = a;
|
|
326
|
-
this.
|
|
326
|
+
this.ca("PixelScalingRatio", b, this.an);
|
|
327
327
|
}
|
|
328
328
|
get ap() {
|
|
329
329
|
return this.am;
|
|
@@ -331,7 +331,7 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
331
331
|
set ap(a) {
|
|
332
332
|
let b = this.am;
|
|
333
333
|
this.am = a;
|
|
334
|
-
this.
|
|
334
|
+
this.ca("ActualPixelScalingRatio", b, this.am);
|
|
335
335
|
}
|
|
336
336
|
get l() {
|
|
337
337
|
return this.j;
|
|
@@ -340,7 +340,7 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
340
340
|
let b = this.j;
|
|
341
341
|
this.j = a;
|
|
342
342
|
if (b != this.j) {
|
|
343
|
-
this.
|
|
343
|
+
this.ca("IconHorizontalAlignment", enumGetBox(CellContentHorizontalAlignment_$type, b), enumGetBox(CellContentHorizontalAlignment_$type, this.j));
|
|
344
344
|
}
|
|
345
345
|
}
|
|
346
346
|
get k() {
|
|
@@ -350,7 +350,7 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
350
350
|
let b = this.i;
|
|
351
351
|
this.i = a;
|
|
352
352
|
if (b != this.i) {
|
|
353
|
-
this.
|
|
353
|
+
this.ca("HeaderTextALignment", enumGetBox(CellContentHorizontalAlignment_$type, b), enumGetBox(CellContentHorizontalAlignment_$type, this.i));
|
|
354
354
|
}
|
|
355
355
|
}
|
|
356
356
|
get av() {
|
|
@@ -360,7 +360,7 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
360
360
|
let b = this.as;
|
|
361
361
|
this.as = a;
|
|
362
362
|
if (b != this.as) {
|
|
363
|
-
this.
|
|
363
|
+
this.ca("CellPaddingLeft", b, this.as);
|
|
364
364
|
}
|
|
365
365
|
}
|
|
366
366
|
get aw() {
|
|
@@ -370,17 +370,17 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
370
370
|
let b = this.at;
|
|
371
371
|
this.at = a;
|
|
372
372
|
if (b != this.at) {
|
|
373
|
-
this.
|
|
373
|
+
this.ca("CellPaddingRight", b, this.at);
|
|
374
374
|
}
|
|
375
375
|
}
|
|
376
|
-
get
|
|
377
|
-
return this.
|
|
376
|
+
get dd() {
|
|
377
|
+
return this.cw;
|
|
378
378
|
}
|
|
379
|
-
set
|
|
380
|
-
let b = this.
|
|
381
|
-
this.
|
|
382
|
-
if (b != this.
|
|
383
|
-
this.
|
|
379
|
+
set dd(a) {
|
|
380
|
+
let b = this.cw;
|
|
381
|
+
this.cw = a;
|
|
382
|
+
if (b != this.cw) {
|
|
383
|
+
this.ca("IconColor", b, this.cw);
|
|
384
384
|
}
|
|
385
385
|
}
|
|
386
386
|
get ar() {
|
|
@@ -390,7 +390,7 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
390
390
|
let b = this.ao;
|
|
391
391
|
this.ao = a;
|
|
392
392
|
if (b != this.ao) {
|
|
393
|
-
this.
|
|
393
|
+
this.ca("ViewSize", b, this.ao);
|
|
394
394
|
}
|
|
395
395
|
}
|
|
396
396
|
get x() {
|
|
@@ -400,27 +400,57 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
400
400
|
let b = this.w;
|
|
401
401
|
this.w = a;
|
|
402
402
|
if (this.w != b) {
|
|
403
|
-
this.
|
|
403
|
+
this.ca("Theme", enumGetBox(BaseControlTheme_$type, b), enumGetBox(BaseControlTheme_$type, this.w));
|
|
404
404
|
}
|
|
405
405
|
}
|
|
406
|
-
get
|
|
407
|
-
return this.
|
|
406
|
+
get c1() {
|
|
407
|
+
return this.ck;
|
|
408
408
|
}
|
|
409
|
-
set
|
|
410
|
-
let b = this.
|
|
411
|
-
this.
|
|
412
|
-
if (b != this.
|
|
413
|
-
this.
|
|
409
|
+
set c1(a) {
|
|
410
|
+
let b = this.ck;
|
|
411
|
+
this.ck = a;
|
|
412
|
+
if (b != this.ck) {
|
|
413
|
+
this.ca("ColumnOptionsBackground", b, this.ck);
|
|
414
414
|
}
|
|
415
415
|
}
|
|
416
|
-
get
|
|
417
|
-
return this.
|
|
416
|
+
get c7() {
|
|
417
|
+
return this.cq;
|
|
418
418
|
}
|
|
419
|
-
set
|
|
420
|
-
let b = this.
|
|
421
|
-
this.
|
|
422
|
-
if (b != this.
|
|
423
|
-
this.
|
|
419
|
+
set c7(a) {
|
|
420
|
+
let b = this.cq;
|
|
421
|
+
this.cq = a;
|
|
422
|
+
if (b != this.cq) {
|
|
423
|
+
this.ca("ColumnOptionsScrollbarBackground", b, this.cq);
|
|
424
|
+
}
|
|
425
|
+
}
|
|
426
|
+
get c8() {
|
|
427
|
+
return this.cr;
|
|
428
|
+
}
|
|
429
|
+
set c8(a) {
|
|
430
|
+
let b = this.cr;
|
|
431
|
+
this.cr = a;
|
|
432
|
+
if (b != this.cr) {
|
|
433
|
+
this.ca("ColumnOptionsScrollbarHoverBackground", b, this.cr);
|
|
434
|
+
}
|
|
435
|
+
}
|
|
436
|
+
get c6() {
|
|
437
|
+
return this.cp;
|
|
438
|
+
}
|
|
439
|
+
set c6(a) {
|
|
440
|
+
let b = this.cp;
|
|
441
|
+
this.cp = a;
|
|
442
|
+
if (b != this.cp) {
|
|
443
|
+
this.ca("ColumnOptionsScrollbarActiveBackground", b, this.cp);
|
|
444
|
+
}
|
|
445
|
+
}
|
|
446
|
+
get da() {
|
|
447
|
+
return this.ct;
|
|
448
|
+
}
|
|
449
|
+
set da(a) {
|
|
450
|
+
let b = this.ct;
|
|
451
|
+
this.ct = a;
|
|
452
|
+
if (b != this.ct) {
|
|
453
|
+
this.ca("ColumnOptionsTextColor", b, this.ct);
|
|
424
454
|
}
|
|
425
455
|
}
|
|
426
456
|
get ab() {
|
|
@@ -430,77 +460,77 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
430
460
|
let b = this.z;
|
|
431
461
|
this.z = a;
|
|
432
462
|
if (b != this.z) {
|
|
433
|
-
this.
|
|
434
|
-
}
|
|
435
|
-
}
|
|
436
|
-
get cz() {
|
|
437
|
-
return this.cl;
|
|
438
|
-
}
|
|
439
|
-
set cz(a) {
|
|
440
|
-
let b = this.cl;
|
|
441
|
-
this.cl = a;
|
|
442
|
-
if (b != this.cl) {
|
|
443
|
-
this.b7("ColumnOptionsHoverBackgroundColor", b, this.cl);
|
|
463
|
+
this.ca("ColumnOptionsTextStyle", b, this.z);
|
|
444
464
|
}
|
|
445
465
|
}
|
|
446
|
-
get
|
|
466
|
+
get c5() {
|
|
447
467
|
return this.co;
|
|
448
468
|
}
|
|
449
|
-
set
|
|
469
|
+
set c5(a) {
|
|
450
470
|
let b = this.co;
|
|
451
471
|
this.co = a;
|
|
452
472
|
if (b != this.co) {
|
|
453
|
-
this.
|
|
473
|
+
this.ca("ColumnOptionsHoverBackgroundColor", b, this.co);
|
|
454
474
|
}
|
|
455
475
|
}
|
|
456
|
-
get
|
|
457
|
-
return this.
|
|
476
|
+
get db() {
|
|
477
|
+
return this.cu;
|
|
458
478
|
}
|
|
459
|
-
set
|
|
460
|
-
let b = this.
|
|
461
|
-
this.
|
|
462
|
-
if (b != this.
|
|
463
|
-
this.
|
|
479
|
+
set db(a) {
|
|
480
|
+
let b = this.cu;
|
|
481
|
+
this.cu = a;
|
|
482
|
+
if (b != this.cu) {
|
|
483
|
+
this.ca("ColumnOptionsToolTipBackgroundColor", b, this.cu);
|
|
464
484
|
}
|
|
465
485
|
}
|
|
466
|
-
get
|
|
467
|
-
return this.
|
|
486
|
+
get dc() {
|
|
487
|
+
return this.cv;
|
|
468
488
|
}
|
|
469
|
-
set
|
|
470
|
-
let b = this.
|
|
471
|
-
this.
|
|
472
|
-
if (b != this.
|
|
473
|
-
this.
|
|
489
|
+
set dc(a) {
|
|
490
|
+
let b = this.cv;
|
|
491
|
+
this.cv = a;
|
|
492
|
+
if (b != this.cv) {
|
|
493
|
+
this.ca("ColumnOptionsToolTipTextColor", b, this.cv);
|
|
474
494
|
}
|
|
475
495
|
}
|
|
476
|
-
get
|
|
477
|
-
return this.
|
|
496
|
+
get c4() {
|
|
497
|
+
return this.cn;
|
|
478
498
|
}
|
|
479
|
-
set
|
|
480
|
-
let b = this.
|
|
481
|
-
this.
|
|
482
|
-
if (b != this.
|
|
483
|
-
this.
|
|
499
|
+
set c4(a) {
|
|
500
|
+
let b = this.cn;
|
|
501
|
+
this.cn = a;
|
|
502
|
+
if (b != this.cn) {
|
|
503
|
+
this.ca("ColumnOptionsHighlightColor", b, this.cn);
|
|
484
504
|
}
|
|
485
505
|
}
|
|
486
|
-
get
|
|
487
|
-
return this.
|
|
506
|
+
get c9() {
|
|
507
|
+
return this.cs;
|
|
488
508
|
}
|
|
489
|
-
set
|
|
490
|
-
let b = this.
|
|
491
|
-
this.
|
|
492
|
-
if (b != this.
|
|
493
|
-
this.
|
|
509
|
+
set c9(a) {
|
|
510
|
+
let b = this.cs;
|
|
511
|
+
this.cs = a;
|
|
512
|
+
if (b != this.cs) {
|
|
513
|
+
this.ca("ColumnOptionsSeparatorColor", b, this.cs);
|
|
494
514
|
}
|
|
495
515
|
}
|
|
496
|
-
get
|
|
497
|
-
return this.
|
|
516
|
+
get c2() {
|
|
517
|
+
return this.cl;
|
|
498
518
|
}
|
|
499
|
-
set
|
|
500
|
-
let b = this.
|
|
501
|
-
this.
|
|
502
|
-
if (b != this.
|
|
503
|
-
this.
|
|
519
|
+
set c2(a) {
|
|
520
|
+
let b = this.cl;
|
|
521
|
+
this.cl = a;
|
|
522
|
+
if (b != this.cl) {
|
|
523
|
+
this.ca("ColumnOptionsGroupHeaderBackground", b, this.cl);
|
|
524
|
+
}
|
|
525
|
+
}
|
|
526
|
+
get c3() {
|
|
527
|
+
return this.cm;
|
|
528
|
+
}
|
|
529
|
+
set c3(a) {
|
|
530
|
+
let b = this.cm;
|
|
531
|
+
this.cm = a;
|
|
532
|
+
if (b != this.cm) {
|
|
533
|
+
this.ca("ColumnOptionsGroupHeaderTextColor", b, this.cm);
|
|
504
534
|
}
|
|
505
535
|
}
|
|
506
536
|
get aa() {
|
|
@@ -510,17 +540,17 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
510
540
|
let b = this.y;
|
|
511
541
|
this.y = a;
|
|
512
542
|
if (b != this.y) {
|
|
513
|
-
this.
|
|
543
|
+
this.ca("ColumnOptionsGroupHeaderTextStyle", b, this.y);
|
|
514
544
|
}
|
|
515
545
|
}
|
|
516
|
-
get
|
|
517
|
-
return this.
|
|
546
|
+
get c0() {
|
|
547
|
+
return this.cj;
|
|
518
548
|
}
|
|
519
|
-
set
|
|
520
|
-
let b = this.
|
|
521
|
-
this.
|
|
522
|
-
if (b != this.
|
|
523
|
-
this.
|
|
549
|
+
set c0(a) {
|
|
550
|
+
let b = this.cj;
|
|
551
|
+
this.cj = a;
|
|
552
|
+
if (b != this.cj) {
|
|
553
|
+
this.ca("ColumnOptionsAccentColor", b, this.cj);
|
|
524
554
|
}
|
|
525
555
|
}
|
|
526
556
|
get ax() {
|
|
@@ -530,19 +560,19 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
530
560
|
let b = this.au;
|
|
531
561
|
this.au = a;
|
|
532
562
|
if (b != this.au) {
|
|
533
|
-
this.
|
|
563
|
+
this.ca("ColumnOptionsRowHeight", b, this.au);
|
|
534
564
|
}
|
|
535
565
|
}
|
|
536
566
|
get aj() {
|
|
537
567
|
return this.v != null ? this.v.bz : false;
|
|
538
568
|
}
|
|
539
|
-
|
|
540
|
-
this.
|
|
569
|
+
ca(a, b, c) {
|
|
570
|
+
this.cd(a, b, c);
|
|
541
571
|
if (this.propertyChanged != null) {
|
|
542
572
|
this.propertyChanged(this, new PropertyChangedEventArgs(a));
|
|
543
573
|
}
|
|
544
574
|
}
|
|
545
|
-
|
|
575
|
+
cd(a, b, c) {
|
|
546
576
|
switch (a) {
|
|
547
577
|
case "PixelScalingRatio":
|
|
548
578
|
this.ap = this.aq;
|
|
@@ -565,17 +595,17 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
565
595
|
break;
|
|
566
596
|
case "ColumnOptionsBackground":
|
|
567
597
|
if (this.v != null) {
|
|
568
|
-
this.v.
|
|
569
|
-
this.v.
|
|
598
|
+
this.v.co = this.c1;
|
|
599
|
+
this.v.ct = this.c1;
|
|
570
600
|
}
|
|
571
601
|
break;
|
|
572
602
|
case "ColumnOptionsTextColor":
|
|
573
603
|
if (this.v != null) {
|
|
574
|
-
this.v.
|
|
575
|
-
this.v.
|
|
576
|
-
this.v.
|
|
577
|
-
this.v.
|
|
578
|
-
this.v.
|
|
604
|
+
this.v.cq = this.da;
|
|
605
|
+
this.v.ce = this.da;
|
|
606
|
+
this.v.ck = this.da;
|
|
607
|
+
this.v.cl = this.da;
|
|
608
|
+
this.v.cm = this.da;
|
|
579
609
|
}
|
|
580
610
|
break;
|
|
581
611
|
case "ColumnOptionsTextStyle":
|
|
@@ -585,37 +615,37 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
585
615
|
break;
|
|
586
616
|
case "ColumnOptionsHoverBackgroundColor":
|
|
587
617
|
if (this.v != null) {
|
|
588
|
-
this.v.
|
|
618
|
+
this.v.cj = this.c5;
|
|
589
619
|
}
|
|
590
620
|
break;
|
|
591
621
|
case "ColumnOptionsToolTipBackgroundColor":
|
|
592
622
|
if (this.v != null) {
|
|
593
|
-
this.v.
|
|
623
|
+
this.v.cr = this.db;
|
|
594
624
|
}
|
|
595
625
|
break;
|
|
596
626
|
case "ColumnOptionsToolTipTextColor":
|
|
597
627
|
if (this.v != null) {
|
|
598
|
-
this.v.
|
|
628
|
+
this.v.cs = this.dc;
|
|
599
629
|
}
|
|
600
630
|
break;
|
|
601
631
|
case "ColumnOptionsHighlightColor":
|
|
602
632
|
if (this.v != null) {
|
|
603
|
-
this.v.
|
|
633
|
+
this.v.ci = this.c4;
|
|
604
634
|
}
|
|
605
635
|
break;
|
|
606
636
|
case "ColumnOptionsSeparatorColor":
|
|
607
637
|
if (this.v != null) {
|
|
608
|
-
this.v.
|
|
638
|
+
this.v.cn = this.c9;
|
|
609
639
|
}
|
|
610
640
|
break;
|
|
611
641
|
case "ColumnOptionsGroupHeaderBackground":
|
|
612
642
|
if (this.v != null) {
|
|
613
|
-
this.v.
|
|
643
|
+
this.v.cf = this.c2;
|
|
614
644
|
}
|
|
615
645
|
break;
|
|
616
646
|
case "ColumnOptionsGroupHeaderTextColor":
|
|
617
647
|
if (this.v != null) {
|
|
618
|
-
this.v.
|
|
648
|
+
this.v.ch = this.c3;
|
|
619
649
|
}
|
|
620
650
|
break;
|
|
621
651
|
case "ColumnOptionsGroupHeaderTextStyle":
|
|
@@ -625,10 +655,10 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
625
655
|
break;
|
|
626
656
|
case "ColumnOptionsAccentColor":
|
|
627
657
|
if (this.v != null) {
|
|
628
|
-
this.v.b7 = this.
|
|
629
|
-
this.v.
|
|
630
|
-
this.v.
|
|
631
|
-
this.v.
|
|
658
|
+
this.v.b7 = this.c0;
|
|
659
|
+
this.v.cc = this.c0;
|
|
660
|
+
this.v.cd = this.c0;
|
|
661
|
+
this.v.cu = this.c0;
|
|
632
662
|
}
|
|
633
663
|
break;
|
|
634
664
|
case "ColumnOptionsRowHeight":
|
|
@@ -636,6 +666,21 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
636
666
|
this.v.b3 = this.ax;
|
|
637
667
|
}
|
|
638
668
|
break;
|
|
669
|
+
case "ColumnOptionsScrollbarBackground":
|
|
670
|
+
if (this.v != null) {
|
|
671
|
+
this.v.ca = this.c7;
|
|
672
|
+
}
|
|
673
|
+
break;
|
|
674
|
+
case "ColumnOptionsScrollbarHoverBackground":
|
|
675
|
+
if (this.v != null) {
|
|
676
|
+
this.v.cb = this.c8;
|
|
677
|
+
}
|
|
678
|
+
break;
|
|
679
|
+
case "ColumnOptionsScrollbarActiveBackground":
|
|
680
|
+
if (this.v != null) {
|
|
681
|
+
this.v.b9 = this.c6;
|
|
682
|
+
}
|
|
683
|
+
break;
|
|
639
684
|
}
|
|
640
685
|
}
|
|
641
686
|
constructor() {
|
|
@@ -649,25 +694,28 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
649
694
|
this.i = 0;
|
|
650
695
|
this.as = 0;
|
|
651
696
|
this.at = 0;
|
|
652
|
-
this.
|
|
697
|
+
this.cw = null;
|
|
653
698
|
this.ao = DeviceUtils.g(24);
|
|
654
699
|
this.w = 1;
|
|
655
|
-
this.
|
|
656
|
-
this.
|
|
700
|
+
this.ck = null;
|
|
701
|
+
this.cq = null;
|
|
702
|
+
this.cr = null;
|
|
703
|
+
this.cp = null;
|
|
704
|
+
this.ct = null;
|
|
657
705
|
this.z = null;
|
|
658
|
-
this.cl = null;
|
|
659
706
|
this.co = null;
|
|
660
|
-
this.
|
|
661
|
-
this.
|
|
707
|
+
this.cu = null;
|
|
708
|
+
this.cv = null;
|
|
709
|
+
this.cn = null;
|
|
710
|
+
this.cs = null;
|
|
711
|
+
this.cl = null;
|
|
662
712
|
this.cm = null;
|
|
663
|
-
this.ci = null;
|
|
664
|
-
this.cj = null;
|
|
665
713
|
this.y = null;
|
|
666
|
-
this.
|
|
714
|
+
this.cj = null;
|
|
667
715
|
this.au = -1;
|
|
668
|
-
this.
|
|
669
|
-
this.
|
|
670
|
-
this.
|
|
716
|
+
this.cz = null;
|
|
717
|
+
this.cy = null;
|
|
718
|
+
this.cx = null;
|
|
671
719
|
this.ac = null;
|
|
672
720
|
this.ae = false;
|
|
673
721
|
this.m = null;
|
|
@@ -683,13 +731,13 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
683
731
|
this.renderCompleted = null;
|
|
684
732
|
this.s = new GridFilterDialogView(this);
|
|
685
733
|
this.x = 1;
|
|
686
|
-
this.
|
|
687
|
-
this.
|
|
688
|
-
this.
|
|
734
|
+
this.cz = BrushUtil.l(66, 0, 0, 0);
|
|
735
|
+
this.cy = BrushUtil.l(30, 0, 0, 0);
|
|
736
|
+
this.cx = BrushUtil.l(20, 0, 0, 0);
|
|
689
737
|
}
|
|
690
|
-
|
|
738
|
+
ce(a, b, c) {
|
|
691
739
|
this.s.v(a, b, c);
|
|
692
|
-
this.
|
|
740
|
+
this.b7();
|
|
693
741
|
}
|
|
694
742
|
get n() {
|
|
695
743
|
return this.m;
|
|
@@ -698,87 +746,90 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
698
746
|
let b = this.m;
|
|
699
747
|
this.m = a;
|
|
700
748
|
if (this.m != b) {
|
|
701
|
-
this.
|
|
749
|
+
this.b6(b, this.m);
|
|
702
750
|
}
|
|
703
751
|
}
|
|
704
|
-
|
|
752
|
+
b6(a, b) {
|
|
705
753
|
this.ad = true;
|
|
706
754
|
}
|
|
707
|
-
|
|
755
|
+
b7() {
|
|
708
756
|
NativeUIComponent.av(this.s.p(), 18, (a) => {
|
|
709
757
|
let b = a;
|
|
710
758
|
this.v = b;
|
|
711
759
|
this.v.b2 = 16;
|
|
712
760
|
this.v.b8 = BrushUtil.l(0, 0, 0, 0);
|
|
713
761
|
this.v.v = false;
|
|
714
|
-
this.v.br = runOn(this, this.
|
|
715
|
-
this.v.bp = runOn(this, this.
|
|
762
|
+
this.v.br = runOn(this, this.bx);
|
|
763
|
+
this.v.bp = runOn(this, this.bw);
|
|
716
764
|
this.v.b0 = false;
|
|
717
765
|
this.s.r(this.v);
|
|
718
766
|
this.v.c = this.x;
|
|
719
|
-
this.v.
|
|
720
|
-
this.v.
|
|
721
|
-
this.v.
|
|
722
|
-
this.v.
|
|
723
|
-
this.v.
|
|
724
|
-
this.v.
|
|
725
|
-
this.v.
|
|
726
|
-
this.v.
|
|
767
|
+
this.v.co = this.c1;
|
|
768
|
+
this.v.ct = this.c1;
|
|
769
|
+
this.v.cq = this.da;
|
|
770
|
+
this.v.ch = this.c3;
|
|
771
|
+
this.v.ce = this.da;
|
|
772
|
+
this.v.ck = this.da;
|
|
773
|
+
this.v.cl = this.da;
|
|
774
|
+
this.v.cm = this.da;
|
|
727
775
|
this.v.bw = this.ab;
|
|
728
|
-
this.v.
|
|
729
|
-
this.v.
|
|
730
|
-
this.v.
|
|
731
|
-
this.v.
|
|
732
|
-
this.v.
|
|
733
|
-
this.v.
|
|
776
|
+
this.v.cj = this.c5;
|
|
777
|
+
this.v.cr = this.db;
|
|
778
|
+
this.v.cs = this.dc;
|
|
779
|
+
this.v.ci = this.c4;
|
|
780
|
+
this.v.cn = this.c9;
|
|
781
|
+
this.v.cf = this.c2;
|
|
734
782
|
this.v.bx = this.aa;
|
|
735
|
-
this.v.b7 = this.
|
|
736
|
-
this.v.
|
|
737
|
-
this.v.
|
|
738
|
-
this.v.
|
|
783
|
+
this.v.b7 = this.c0;
|
|
784
|
+
this.v.cc = this.c0;
|
|
785
|
+
this.v.cd = this.c0;
|
|
786
|
+
this.v.cu = this.c0;
|
|
739
787
|
this.v.b3 = this.ax;
|
|
788
|
+
this.v.ca = this.c7;
|
|
789
|
+
this.v.cb = this.c8;
|
|
790
|
+
this.v.b9 = this.c6;
|
|
740
791
|
this.v.b4 = this.n;
|
|
741
792
|
});
|
|
742
793
|
}
|
|
743
|
-
|
|
794
|
+
bx(a, b) {
|
|
744
795
|
if (this.ad) {
|
|
745
796
|
this.ad = false;
|
|
746
797
|
this.v.b4 = this.n;
|
|
747
798
|
}
|
|
748
799
|
if (this.n != null) {
|
|
749
800
|
if (this.n.grid != null) {
|
|
750
|
-
this.n.grid.
|
|
801
|
+
this.n.grid.wp();
|
|
751
802
|
}
|
|
752
|
-
this.n.
|
|
803
|
+
this.n.pk();
|
|
753
804
|
}
|
|
754
805
|
if (this.dialogOpening != null) {
|
|
755
806
|
let c = new GridFilterDialogOpeningEventArgs();
|
|
756
807
|
this.dialogOpening(this, c);
|
|
757
808
|
}
|
|
758
809
|
}
|
|
759
|
-
|
|
810
|
+
bw(a, b) {
|
|
760
811
|
if (this.ae) {
|
|
761
|
-
this.
|
|
812
|
+
this.b2();
|
|
762
813
|
}
|
|
763
814
|
}
|
|
764
|
-
|
|
815
|
+
bz(a, b) {
|
|
765
816
|
switch (b.propertyName) {
|
|
766
817
|
case "IsHidden": break;
|
|
767
818
|
}
|
|
768
819
|
}
|
|
769
|
-
|
|
820
|
+
b8() {
|
|
770
821
|
}
|
|
771
|
-
|
|
772
|
-
a.onModified = delegateRemove(a.onModified, runOn(this, this.
|
|
822
|
+
b9(a, b) {
|
|
823
|
+
a.onModified = delegateRemove(a.onModified, runOn(this, this.cc));
|
|
773
824
|
if (b) {
|
|
774
|
-
this.
|
|
825
|
+
this.cg();
|
|
775
826
|
}
|
|
776
827
|
else {
|
|
777
|
-
this.
|
|
828
|
+
this.cf(a, true);
|
|
778
829
|
}
|
|
779
830
|
this.f = null;
|
|
780
831
|
}
|
|
781
|
-
|
|
832
|
+
b0() {
|
|
782
833
|
this.s.s();
|
|
783
834
|
if (this.ac == null) {
|
|
784
835
|
let a = new AnimationKeyFrameEffectTiming();
|
|
@@ -787,7 +838,7 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
787
838
|
this.ac = KeyFrameAnimationFactory.f.c(this.s.a(a).m(new AnimationKeyFrameProperty(1, 0)).m(new AnimationKeyFrameProperty(1, 1)));
|
|
788
839
|
}
|
|
789
840
|
}
|
|
790
|
-
|
|
841
|
+
ch() {
|
|
791
842
|
if (this.filterChanged != null) {
|
|
792
843
|
this.filterChanged(this, ((() => {
|
|
793
844
|
let $ret = new GridFilterDialogFilterChangeEventArgs();
|
|
@@ -796,7 +847,7 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
796
847
|
})()));
|
|
797
848
|
}
|
|
798
849
|
}
|
|
799
|
-
|
|
850
|
+
cg() {
|
|
800
851
|
if (this.filterChanged != null) {
|
|
801
852
|
this.filterChanged(this, ((() => {
|
|
802
853
|
let $ret = new GridFilterDialogFilterChangeEventArgs();
|
|
@@ -805,7 +856,7 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
805
856
|
})()));
|
|
806
857
|
}
|
|
807
858
|
}
|
|
808
|
-
|
|
859
|
+
cf(a, b) {
|
|
809
860
|
let c = this.e(a);
|
|
810
861
|
if (b) {
|
|
811
862
|
if (this.filterChanged != null) {
|
|
@@ -910,30 +961,30 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
910
961
|
c(a) {
|
|
911
962
|
return EnumUtil.getEnumValue(ColumnComparisonConditionOperatorType_$type, EnumUtil.parse(ColumnComparisonConditionOperatorType_$type, a, true));
|
|
912
963
|
}
|
|
913
|
-
|
|
914
|
-
this.
|
|
964
|
+
cc(a) {
|
|
965
|
+
this.cf(a, false);
|
|
915
966
|
}
|
|
916
967
|
t(a, b) {
|
|
917
968
|
let c = new GridFilterDialogViewModel();
|
|
918
969
|
if (a != null) {
|
|
919
|
-
this.
|
|
970
|
+
this.by(c, a, b);
|
|
920
971
|
}
|
|
921
972
|
else {
|
|
922
973
|
let d = new GridFilterDialogViewModelRow();
|
|
923
974
|
d.f = b;
|
|
924
975
|
d.e = GridFilterDialog.a(b);
|
|
925
976
|
d.d = GridFilterDialog.b(b);
|
|
926
|
-
d.l = GridFilterDialog.
|
|
977
|
+
d.l = GridFilterDialog.bo(b[0]);
|
|
927
978
|
c.f.add(d);
|
|
928
979
|
}
|
|
929
980
|
return c;
|
|
930
981
|
}
|
|
931
|
-
|
|
982
|
+
by(a, b, c) {
|
|
932
983
|
if (b.isGroup()) {
|
|
933
984
|
let d = b;
|
|
934
985
|
for (let e = 0; e < d.count; e++) {
|
|
935
986
|
let f = d.item(e);
|
|
936
|
-
this.
|
|
987
|
+
this.by(a, f, c);
|
|
937
988
|
}
|
|
938
989
|
}
|
|
939
990
|
else {
|
|
@@ -942,7 +993,7 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
942
993
|
}
|
|
943
994
|
u(a, b) {
|
|
944
995
|
let c = new GridFilterDialogViewModelRow();
|
|
945
|
-
c.l = GridFilterDialog.
|
|
996
|
+
c.l = GridFilterDialog.bo(a.operator);
|
|
946
997
|
c.f = b;
|
|
947
998
|
c.e = GridFilterDialog.a(b);
|
|
948
999
|
c.i = GridFilterDialog.a2(GridFilterDialog.ay(a.operator), a.operator, a);
|
|
@@ -972,24 +1023,24 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
972
1023
|
}
|
|
973
1024
|
return b;
|
|
974
1025
|
}
|
|
975
|
-
static
|
|
1026
|
+
static bo(a) {
|
|
976
1027
|
return EnumUtil.getName(ColumnComparisonConditionOperatorType_$type, a);
|
|
977
1028
|
}
|
|
978
|
-
|
|
1029
|
+
b5(a, b) {
|
|
979
1030
|
this.s.w(a, b);
|
|
980
1031
|
}
|
|
981
|
-
|
|
1032
|
+
b4() {
|
|
982
1033
|
this.s.u();
|
|
983
1034
|
}
|
|
984
|
-
|
|
1035
|
+
b3(a, b, c) {
|
|
985
1036
|
}
|
|
986
|
-
|
|
1037
|
+
ci() {
|
|
987
1038
|
this.ae = false;
|
|
988
1039
|
if (this.s.q == null || NativeUI.g(this.s.q) == 1) {
|
|
989
1040
|
return;
|
|
990
1041
|
}
|
|
991
1042
|
if (this.ai) {
|
|
992
|
-
this.
|
|
1043
|
+
this.b0();
|
|
993
1044
|
if (this.ac.playbackRate < 0) {
|
|
994
1045
|
this.ac.reverse();
|
|
995
1046
|
}
|
|
@@ -1002,14 +1053,14 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
1002
1053
|
NativeUI.ab(this.s.q, 1);
|
|
1003
1054
|
}
|
|
1004
1055
|
}
|
|
1005
|
-
|
|
1056
|
+
b2() {
|
|
1006
1057
|
this.ae = true;
|
|
1007
1058
|
if (!this.aj) {
|
|
1008
1059
|
if (this.s.q == null || NativeUI.g(this.s.q) == 0) {
|
|
1009
1060
|
return;
|
|
1010
1061
|
}
|
|
1011
1062
|
if (this.ai) {
|
|
1012
|
-
this.
|
|
1063
|
+
this.b0();
|
|
1013
1064
|
if (this.ac.playbackRate < 0) {
|
|
1014
1065
|
this.ac.play();
|
|
1015
1066
|
}
|
|
@@ -1036,12 +1087,12 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
1036
1087
|
set invalidateActions(a) {
|
|
1037
1088
|
this._invalidateActions = a;
|
|
1038
1089
|
}
|
|
1039
|
-
|
|
1090
|
+
cb() {
|
|
1040
1091
|
if (this.renderCompleted != null) {
|
|
1041
1092
|
this.renderCompleted(this, new FilterDialogRenderCompletedEventArgs());
|
|
1042
1093
|
}
|
|
1043
1094
|
}
|
|
1044
|
-
|
|
1095
|
+
b1() {
|
|
1045
1096
|
if (this.v != null) {
|
|
1046
1097
|
if (this.n != null && this.v.b4 != this.n) {
|
|
1047
1098
|
this.v.b4 = this.n;
|
|
@@ -1054,7 +1105,7 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
1054
1105
|
getDesiredToolbarActions() {
|
|
1055
1106
|
if (!GridFilterDialog.ag) {
|
|
1056
1107
|
GridFilterDialog.ag = true;
|
|
1057
|
-
SvgIconRegistry.instance.addSvgPathString("XGrid", "DotDotDot", GridFilterDialog.
|
|
1108
|
+
SvgIconRegistry.instance.addSvgPathString("XGrid", "DotDotDot", GridFilterDialog.bn);
|
|
1058
1109
|
}
|
|
1059
1110
|
let a = new ToolActionIconMenuInfo();
|
|
1060
1111
|
a.name = "DataGridColumnOptionsPlaceholder";
|
|
@@ -1100,7 +1151,7 @@ let GridFilterDialog = /*@__PURE__*/ (() => {
|
|
|
1100
1151
|
}
|
|
1101
1152
|
GridFilterDialog.$t = /*@__PURE__*/ markType(GridFilterDialog, 'GridFilterDialog', Base.$, [INotifyPropertyChanged_$type, IToolbarTarget_$type]);
|
|
1102
1153
|
GridFilterDialog.ag = false;
|
|
1103
|
-
GridFilterDialog.
|
|
1154
|
+
GridFilterDialog.bn = "M12 14c -1.1 0 -2 -0.9 -2 -2 s0.9 -2 2 -2 s2 0.9 2 2 S13.1 14 12 14 z M12 8c -1.1 0 -2 -0.9 -2 -2 s0.9 -2 2 -2 s2 0.9 2 2 S13.1 8 12 8z M12 16 c1.1 0 2 0.9 2 2s -0.9 2 -2 2 s-2 -0.9 -2 -2 S10.9 16 12 16z";
|
|
1104
1155
|
return GridFilterDialog;
|
|
1105
1156
|
})();
|
|
1106
1157
|
export { GridFilterDialog };
|
|
@@ -1112,7 +1163,7 @@ let GridFilterDialogViewModel = /*@__PURE__*/ (() => {
|
|
|
1112
1163
|
a.f = b;
|
|
1113
1164
|
a.e = GridFilterDialog.a(b);
|
|
1114
1165
|
a.d = GridFilterDialog.b(b);
|
|
1115
|
-
a.l = GridFilterDialog.
|
|
1166
|
+
a.l = GridFilterDialog.bo(b[0]);
|
|
1116
1167
|
this.f.add(a);
|
|
1117
1168
|
}
|
|
1118
1169
|
constructor() {
|