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
|
@@ -65,10 +65,10 @@ export var GridFilterDialogView = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
65
65
|
}
|
|
66
66
|
GridFilterDialogView.prototype.y = function () {
|
|
67
67
|
this.x();
|
|
68
|
-
this.b.
|
|
68
|
+
this.b.cb();
|
|
69
69
|
};
|
|
70
70
|
GridFilterDialogView.prototype.t = function () {
|
|
71
|
-
this.b.
|
|
71
|
+
this.b.b3(this.l, this.k, this.aa);
|
|
72
72
|
};
|
|
73
73
|
GridFilterDialogView.prototype.s = function () {
|
|
74
74
|
if (KeyFrameAnimationFactory.h == null) {
|
|
@@ -188,7 +188,7 @@ export var GridFilterDialogPanel = /** @class */ /*@__PURE__*/ (function (_super
|
|
|
188
188
|
e.setStyleProperty("background-color", "#fff");
|
|
189
189
|
e.setStyleProperty("border-radius", "3px");
|
|
190
190
|
e.setStyleProperty("overflow", "auto");
|
|
191
|
-
var g = ElevationHelper.e(12, _this.b.
|
|
191
|
+
var g = ElevationHelper.e(12, _this.b.cz, _this.b.cy, _this.b.cx);
|
|
192
192
|
e.setStyleProperty("boxShadow", g);
|
|
193
193
|
e.listen("mousedown", runOn(_this, _this.o));
|
|
194
194
|
_this.onDocumentKeyDown = _this.onDocumentKeyDown.bind(_this);
|
|
@@ -321,25 +321,28 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
321
321
|
_this.i = 0;
|
|
322
322
|
_this.as = 0;
|
|
323
323
|
_this.at = 0;
|
|
324
|
-
_this.
|
|
324
|
+
_this.cw = null;
|
|
325
325
|
_this.ao = DeviceUtils.g(24);
|
|
326
326
|
_this.w = 1;
|
|
327
|
-
_this.
|
|
328
|
-
_this.
|
|
327
|
+
_this.ck = null;
|
|
328
|
+
_this.cq = null;
|
|
329
|
+
_this.cr = null;
|
|
330
|
+
_this.cp = null;
|
|
331
|
+
_this.ct = null;
|
|
329
332
|
_this.z = null;
|
|
330
|
-
_this.cl = null;
|
|
331
333
|
_this.co = null;
|
|
332
|
-
_this.
|
|
333
|
-
_this.
|
|
334
|
+
_this.cu = null;
|
|
335
|
+
_this.cv = null;
|
|
336
|
+
_this.cn = null;
|
|
337
|
+
_this.cs = null;
|
|
338
|
+
_this.cl = null;
|
|
334
339
|
_this.cm = null;
|
|
335
|
-
_this.ci = null;
|
|
336
|
-
_this.cj = null;
|
|
337
340
|
_this.y = null;
|
|
338
|
-
_this.
|
|
341
|
+
_this.cj = null;
|
|
339
342
|
_this.au = -1;
|
|
340
|
-
_this.
|
|
341
|
-
_this.
|
|
342
|
-
_this.
|
|
343
|
+
_this.cz = null;
|
|
344
|
+
_this.cy = null;
|
|
345
|
+
_this.cx = null;
|
|
343
346
|
_this.ac = null;
|
|
344
347
|
_this.ae = false;
|
|
345
348
|
_this.m = null;
|
|
@@ -355,9 +358,9 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
355
358
|
_this.renderCompleted = null;
|
|
356
359
|
_this.s = new GridFilterDialogView(_this);
|
|
357
360
|
_this.x = 1;
|
|
358
|
-
_this.
|
|
359
|
-
_this.
|
|
360
|
-
_this.
|
|
361
|
+
_this.cz = BrushUtil.l(66, 0, 0, 0);
|
|
362
|
+
_this.cy = BrushUtil.l(30, 0, 0, 0);
|
|
363
|
+
_this.cx = BrushUtil.l(20, 0, 0, 0);
|
|
361
364
|
return _this;
|
|
362
365
|
}
|
|
363
366
|
Object.defineProperty(GridFilterDialog.prototype, "a1", {
|
|
@@ -378,7 +381,7 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
378
381
|
var b = this.af;
|
|
379
382
|
this.af = a;
|
|
380
383
|
if (b != this.af) {
|
|
381
|
-
this.
|
|
384
|
+
this.ca("IsAnimationEnabled", b, this.af);
|
|
382
385
|
}
|
|
383
386
|
},
|
|
384
387
|
enumerable: false,
|
|
@@ -391,7 +394,7 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
391
394
|
set: function (a) {
|
|
392
395
|
var b = this.an;
|
|
393
396
|
this.an = a;
|
|
394
|
-
this.
|
|
397
|
+
this.ca("PixelScalingRatio", b, this.an);
|
|
395
398
|
},
|
|
396
399
|
enumerable: false,
|
|
397
400
|
configurable: true
|
|
@@ -403,7 +406,7 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
403
406
|
set: function (a) {
|
|
404
407
|
var b = this.am;
|
|
405
408
|
this.am = a;
|
|
406
|
-
this.
|
|
409
|
+
this.ca("ActualPixelScalingRatio", b, this.am);
|
|
407
410
|
},
|
|
408
411
|
enumerable: false,
|
|
409
412
|
configurable: true
|
|
@@ -416,7 +419,7 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
416
419
|
var b = this.j;
|
|
417
420
|
this.j = a;
|
|
418
421
|
if (b != this.j) {
|
|
419
|
-
this.
|
|
422
|
+
this.ca("IconHorizontalAlignment", enumGetBox(CellContentHorizontalAlignment_$type, b), enumGetBox(CellContentHorizontalAlignment_$type, this.j));
|
|
420
423
|
}
|
|
421
424
|
},
|
|
422
425
|
enumerable: false,
|
|
@@ -430,7 +433,7 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
430
433
|
var b = this.i;
|
|
431
434
|
this.i = a;
|
|
432
435
|
if (b != this.i) {
|
|
433
|
-
this.
|
|
436
|
+
this.ca("HeaderTextALignment", enumGetBox(CellContentHorizontalAlignment_$type, b), enumGetBox(CellContentHorizontalAlignment_$type, this.i));
|
|
434
437
|
}
|
|
435
438
|
},
|
|
436
439
|
enumerable: false,
|
|
@@ -444,7 +447,7 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
444
447
|
var b = this.as;
|
|
445
448
|
this.as = a;
|
|
446
449
|
if (b != this.as) {
|
|
447
|
-
this.
|
|
450
|
+
this.ca("CellPaddingLeft", b, this.as);
|
|
448
451
|
}
|
|
449
452
|
},
|
|
450
453
|
enumerable: false,
|
|
@@ -458,21 +461,21 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
458
461
|
var b = this.at;
|
|
459
462
|
this.at = a;
|
|
460
463
|
if (b != this.at) {
|
|
461
|
-
this.
|
|
464
|
+
this.ca("CellPaddingRight", b, this.at);
|
|
462
465
|
}
|
|
463
466
|
},
|
|
464
467
|
enumerable: false,
|
|
465
468
|
configurable: true
|
|
466
469
|
});
|
|
467
|
-
Object.defineProperty(GridFilterDialog.prototype, "
|
|
470
|
+
Object.defineProperty(GridFilterDialog.prototype, "dd", {
|
|
468
471
|
get: function () {
|
|
469
|
-
return this.
|
|
472
|
+
return this.cw;
|
|
470
473
|
},
|
|
471
474
|
set: function (a) {
|
|
472
|
-
var b = this.
|
|
473
|
-
this.
|
|
474
|
-
if (b != this.
|
|
475
|
-
this.
|
|
475
|
+
var b = this.cw;
|
|
476
|
+
this.cw = a;
|
|
477
|
+
if (b != this.cw) {
|
|
478
|
+
this.ca("IconColor", b, this.cw);
|
|
476
479
|
}
|
|
477
480
|
},
|
|
478
481
|
enumerable: false,
|
|
@@ -486,7 +489,7 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
486
489
|
var b = this.ao;
|
|
487
490
|
this.ao = a;
|
|
488
491
|
if (b != this.ao) {
|
|
489
|
-
this.
|
|
492
|
+
this.ca("ViewSize", b, this.ao);
|
|
490
493
|
}
|
|
491
494
|
},
|
|
492
495
|
enumerable: false,
|
|
@@ -500,35 +503,77 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
500
503
|
var b = this.w;
|
|
501
504
|
this.w = a;
|
|
502
505
|
if (this.w != b) {
|
|
503
|
-
this.
|
|
506
|
+
this.ca("Theme", enumGetBox(BaseControlTheme_$type, b), enumGetBox(BaseControlTheme_$type, this.w));
|
|
504
507
|
}
|
|
505
508
|
},
|
|
506
509
|
enumerable: false,
|
|
507
510
|
configurable: true
|
|
508
511
|
});
|
|
509
|
-
Object.defineProperty(GridFilterDialog.prototype, "
|
|
512
|
+
Object.defineProperty(GridFilterDialog.prototype, "c1", {
|
|
510
513
|
get: function () {
|
|
511
|
-
return this.
|
|
514
|
+
return this.ck;
|
|
512
515
|
},
|
|
513
516
|
set: function (a) {
|
|
514
|
-
var b = this.
|
|
515
|
-
this.
|
|
516
|
-
if (b != this.
|
|
517
|
-
this.
|
|
517
|
+
var b = this.ck;
|
|
518
|
+
this.ck = a;
|
|
519
|
+
if (b != this.ck) {
|
|
520
|
+
this.ca("ColumnOptionsBackground", b, this.ck);
|
|
518
521
|
}
|
|
519
522
|
},
|
|
520
523
|
enumerable: false,
|
|
521
524
|
configurable: true
|
|
522
525
|
});
|
|
523
|
-
Object.defineProperty(GridFilterDialog.prototype, "
|
|
526
|
+
Object.defineProperty(GridFilterDialog.prototype, "c7", {
|
|
524
527
|
get: function () {
|
|
525
|
-
return this.
|
|
528
|
+
return this.cq;
|
|
526
529
|
},
|
|
527
530
|
set: function (a) {
|
|
528
|
-
var b = this.
|
|
529
|
-
this.
|
|
530
|
-
if (b != this.
|
|
531
|
-
this.
|
|
531
|
+
var b = this.cq;
|
|
532
|
+
this.cq = a;
|
|
533
|
+
if (b != this.cq) {
|
|
534
|
+
this.ca("ColumnOptionsScrollbarBackground", b, this.cq);
|
|
535
|
+
}
|
|
536
|
+
},
|
|
537
|
+
enumerable: false,
|
|
538
|
+
configurable: true
|
|
539
|
+
});
|
|
540
|
+
Object.defineProperty(GridFilterDialog.prototype, "c8", {
|
|
541
|
+
get: function () {
|
|
542
|
+
return this.cr;
|
|
543
|
+
},
|
|
544
|
+
set: function (a) {
|
|
545
|
+
var b = this.cr;
|
|
546
|
+
this.cr = a;
|
|
547
|
+
if (b != this.cr) {
|
|
548
|
+
this.ca("ColumnOptionsScrollbarHoverBackground", b, this.cr);
|
|
549
|
+
}
|
|
550
|
+
},
|
|
551
|
+
enumerable: false,
|
|
552
|
+
configurable: true
|
|
553
|
+
});
|
|
554
|
+
Object.defineProperty(GridFilterDialog.prototype, "c6", {
|
|
555
|
+
get: function () {
|
|
556
|
+
return this.cp;
|
|
557
|
+
},
|
|
558
|
+
set: function (a) {
|
|
559
|
+
var b = this.cp;
|
|
560
|
+
this.cp = a;
|
|
561
|
+
if (b != this.cp) {
|
|
562
|
+
this.ca("ColumnOptionsScrollbarActiveBackground", b, this.cp);
|
|
563
|
+
}
|
|
564
|
+
},
|
|
565
|
+
enumerable: false,
|
|
566
|
+
configurable: true
|
|
567
|
+
});
|
|
568
|
+
Object.defineProperty(GridFilterDialog.prototype, "da", {
|
|
569
|
+
get: function () {
|
|
570
|
+
return this.ct;
|
|
571
|
+
},
|
|
572
|
+
set: function (a) {
|
|
573
|
+
var b = this.ct;
|
|
574
|
+
this.ct = a;
|
|
575
|
+
if (b != this.ct) {
|
|
576
|
+
this.ca("ColumnOptionsTextColor", b, this.ct);
|
|
532
577
|
}
|
|
533
578
|
},
|
|
534
579
|
enumerable: false,
|
|
@@ -542,105 +587,105 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
542
587
|
var b = this.z;
|
|
543
588
|
this.z = a;
|
|
544
589
|
if (b != this.z) {
|
|
545
|
-
this.
|
|
590
|
+
this.ca("ColumnOptionsTextStyle", b, this.z);
|
|
546
591
|
}
|
|
547
592
|
},
|
|
548
593
|
enumerable: false,
|
|
549
594
|
configurable: true
|
|
550
595
|
});
|
|
551
|
-
Object.defineProperty(GridFilterDialog.prototype, "
|
|
596
|
+
Object.defineProperty(GridFilterDialog.prototype, "c5", {
|
|
552
597
|
get: function () {
|
|
553
|
-
return this.
|
|
598
|
+
return this.co;
|
|
554
599
|
},
|
|
555
600
|
set: function (a) {
|
|
556
|
-
var b = this.
|
|
557
|
-
this.
|
|
558
|
-
if (b != this.
|
|
559
|
-
this.
|
|
601
|
+
var b = this.co;
|
|
602
|
+
this.co = a;
|
|
603
|
+
if (b != this.co) {
|
|
604
|
+
this.ca("ColumnOptionsHoverBackgroundColor", b, this.co);
|
|
560
605
|
}
|
|
561
606
|
},
|
|
562
607
|
enumerable: false,
|
|
563
608
|
configurable: true
|
|
564
609
|
});
|
|
565
|
-
Object.defineProperty(GridFilterDialog.prototype, "
|
|
610
|
+
Object.defineProperty(GridFilterDialog.prototype, "db", {
|
|
566
611
|
get: function () {
|
|
567
|
-
return this.
|
|
612
|
+
return this.cu;
|
|
568
613
|
},
|
|
569
614
|
set: function (a) {
|
|
570
|
-
var b = this.
|
|
571
|
-
this.
|
|
572
|
-
if (b != this.
|
|
573
|
-
this.
|
|
615
|
+
var b = this.cu;
|
|
616
|
+
this.cu = a;
|
|
617
|
+
if (b != this.cu) {
|
|
618
|
+
this.ca("ColumnOptionsToolTipBackgroundColor", b, this.cu);
|
|
574
619
|
}
|
|
575
620
|
},
|
|
576
621
|
enumerable: false,
|
|
577
622
|
configurable: true
|
|
578
623
|
});
|
|
579
|
-
Object.defineProperty(GridFilterDialog.prototype, "
|
|
624
|
+
Object.defineProperty(GridFilterDialog.prototype, "dc", {
|
|
580
625
|
get: function () {
|
|
581
|
-
return this.
|
|
626
|
+
return this.cv;
|
|
582
627
|
},
|
|
583
628
|
set: function (a) {
|
|
584
|
-
var b = this.
|
|
585
|
-
this.
|
|
586
|
-
if (b != this.
|
|
587
|
-
this.
|
|
629
|
+
var b = this.cv;
|
|
630
|
+
this.cv = a;
|
|
631
|
+
if (b != this.cv) {
|
|
632
|
+
this.ca("ColumnOptionsToolTipTextColor", b, this.cv);
|
|
588
633
|
}
|
|
589
634
|
},
|
|
590
635
|
enumerable: false,
|
|
591
636
|
configurable: true
|
|
592
637
|
});
|
|
593
|
-
Object.defineProperty(GridFilterDialog.prototype, "
|
|
638
|
+
Object.defineProperty(GridFilterDialog.prototype, "c4", {
|
|
594
639
|
get: function () {
|
|
595
|
-
return this.
|
|
640
|
+
return this.cn;
|
|
596
641
|
},
|
|
597
642
|
set: function (a) {
|
|
598
|
-
var b = this.
|
|
599
|
-
this.
|
|
600
|
-
if (b != this.
|
|
601
|
-
this.
|
|
643
|
+
var b = this.cn;
|
|
644
|
+
this.cn = a;
|
|
645
|
+
if (b != this.cn) {
|
|
646
|
+
this.ca("ColumnOptionsHighlightColor", b, this.cn);
|
|
602
647
|
}
|
|
603
648
|
},
|
|
604
649
|
enumerable: false,
|
|
605
650
|
configurable: true
|
|
606
651
|
});
|
|
607
|
-
Object.defineProperty(GridFilterDialog.prototype, "
|
|
652
|
+
Object.defineProperty(GridFilterDialog.prototype, "c9", {
|
|
608
653
|
get: function () {
|
|
609
|
-
return this.
|
|
654
|
+
return this.cs;
|
|
610
655
|
},
|
|
611
656
|
set: function (a) {
|
|
612
|
-
var b = this.
|
|
613
|
-
this.
|
|
614
|
-
if (b != this.
|
|
615
|
-
this.
|
|
657
|
+
var b = this.cs;
|
|
658
|
+
this.cs = a;
|
|
659
|
+
if (b != this.cs) {
|
|
660
|
+
this.ca("ColumnOptionsSeparatorColor", b, this.cs);
|
|
616
661
|
}
|
|
617
662
|
},
|
|
618
663
|
enumerable: false,
|
|
619
664
|
configurable: true
|
|
620
665
|
});
|
|
621
|
-
Object.defineProperty(GridFilterDialog.prototype, "
|
|
666
|
+
Object.defineProperty(GridFilterDialog.prototype, "c2", {
|
|
622
667
|
get: function () {
|
|
623
|
-
return this.
|
|
668
|
+
return this.cl;
|
|
624
669
|
},
|
|
625
670
|
set: function (a) {
|
|
626
|
-
var b = this.
|
|
627
|
-
this.
|
|
628
|
-
if (b != this.
|
|
629
|
-
this.
|
|
671
|
+
var b = this.cl;
|
|
672
|
+
this.cl = a;
|
|
673
|
+
if (b != this.cl) {
|
|
674
|
+
this.ca("ColumnOptionsGroupHeaderBackground", b, this.cl);
|
|
630
675
|
}
|
|
631
676
|
},
|
|
632
677
|
enumerable: false,
|
|
633
678
|
configurable: true
|
|
634
679
|
});
|
|
635
|
-
Object.defineProperty(GridFilterDialog.prototype, "
|
|
680
|
+
Object.defineProperty(GridFilterDialog.prototype, "c3", {
|
|
636
681
|
get: function () {
|
|
637
|
-
return this.
|
|
682
|
+
return this.cm;
|
|
638
683
|
},
|
|
639
684
|
set: function (a) {
|
|
640
|
-
var b = this.
|
|
641
|
-
this.
|
|
642
|
-
if (b != this.
|
|
643
|
-
this.
|
|
685
|
+
var b = this.cm;
|
|
686
|
+
this.cm = a;
|
|
687
|
+
if (b != this.cm) {
|
|
688
|
+
this.ca("ColumnOptionsGroupHeaderTextColor", b, this.cm);
|
|
644
689
|
}
|
|
645
690
|
},
|
|
646
691
|
enumerable: false,
|
|
@@ -654,21 +699,21 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
654
699
|
var b = this.y;
|
|
655
700
|
this.y = a;
|
|
656
701
|
if (b != this.y) {
|
|
657
|
-
this.
|
|
702
|
+
this.ca("ColumnOptionsGroupHeaderTextStyle", b, this.y);
|
|
658
703
|
}
|
|
659
704
|
},
|
|
660
705
|
enumerable: false,
|
|
661
706
|
configurable: true
|
|
662
707
|
});
|
|
663
|
-
Object.defineProperty(GridFilterDialog.prototype, "
|
|
708
|
+
Object.defineProperty(GridFilterDialog.prototype, "c0", {
|
|
664
709
|
get: function () {
|
|
665
|
-
return this.
|
|
710
|
+
return this.cj;
|
|
666
711
|
},
|
|
667
712
|
set: function (a) {
|
|
668
|
-
var b = this.
|
|
669
|
-
this.
|
|
670
|
-
if (b != this.
|
|
671
|
-
this.
|
|
713
|
+
var b = this.cj;
|
|
714
|
+
this.cj = a;
|
|
715
|
+
if (b != this.cj) {
|
|
716
|
+
this.ca("ColumnOptionsAccentColor", b, this.cj);
|
|
672
717
|
}
|
|
673
718
|
},
|
|
674
719
|
enumerable: false,
|
|
@@ -682,7 +727,7 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
682
727
|
var b = this.au;
|
|
683
728
|
this.au = a;
|
|
684
729
|
if (b != this.au) {
|
|
685
|
-
this.
|
|
730
|
+
this.ca("ColumnOptionsRowHeight", b, this.au);
|
|
686
731
|
}
|
|
687
732
|
},
|
|
688
733
|
enumerable: false,
|
|
@@ -695,13 +740,13 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
695
740
|
enumerable: false,
|
|
696
741
|
configurable: true
|
|
697
742
|
});
|
|
698
|
-
GridFilterDialog.prototype.
|
|
699
|
-
this.
|
|
743
|
+
GridFilterDialog.prototype.ca = function (a, b, c) {
|
|
744
|
+
this.cd(a, b, c);
|
|
700
745
|
if (this.propertyChanged != null) {
|
|
701
746
|
this.propertyChanged(this, new PropertyChangedEventArgs(a));
|
|
702
747
|
}
|
|
703
748
|
};
|
|
704
|
-
GridFilterDialog.prototype.
|
|
749
|
+
GridFilterDialog.prototype.cd = function (a, b, c) {
|
|
705
750
|
switch (a) {
|
|
706
751
|
case "PixelScalingRatio":
|
|
707
752
|
this.ap = this.aq;
|
|
@@ -724,17 +769,17 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
724
769
|
break;
|
|
725
770
|
case "ColumnOptionsBackground":
|
|
726
771
|
if (this.v != null) {
|
|
727
|
-
this.v.
|
|
728
|
-
this.v.
|
|
772
|
+
this.v.co = this.c1;
|
|
773
|
+
this.v.ct = this.c1;
|
|
729
774
|
}
|
|
730
775
|
break;
|
|
731
776
|
case "ColumnOptionsTextColor":
|
|
732
777
|
if (this.v != null) {
|
|
733
|
-
this.v.
|
|
734
|
-
this.v.
|
|
735
|
-
this.v.
|
|
736
|
-
this.v.
|
|
737
|
-
this.v.
|
|
778
|
+
this.v.cq = this.da;
|
|
779
|
+
this.v.ce = this.da;
|
|
780
|
+
this.v.ck = this.da;
|
|
781
|
+
this.v.cl = this.da;
|
|
782
|
+
this.v.cm = this.da;
|
|
738
783
|
}
|
|
739
784
|
break;
|
|
740
785
|
case "ColumnOptionsTextStyle":
|
|
@@ -744,37 +789,37 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
744
789
|
break;
|
|
745
790
|
case "ColumnOptionsHoverBackgroundColor":
|
|
746
791
|
if (this.v != null) {
|
|
747
|
-
this.v.
|
|
792
|
+
this.v.cj = this.c5;
|
|
748
793
|
}
|
|
749
794
|
break;
|
|
750
795
|
case "ColumnOptionsToolTipBackgroundColor":
|
|
751
796
|
if (this.v != null) {
|
|
752
|
-
this.v.
|
|
797
|
+
this.v.cr = this.db;
|
|
753
798
|
}
|
|
754
799
|
break;
|
|
755
800
|
case "ColumnOptionsToolTipTextColor":
|
|
756
801
|
if (this.v != null) {
|
|
757
|
-
this.v.
|
|
802
|
+
this.v.cs = this.dc;
|
|
758
803
|
}
|
|
759
804
|
break;
|
|
760
805
|
case "ColumnOptionsHighlightColor":
|
|
761
806
|
if (this.v != null) {
|
|
762
|
-
this.v.
|
|
807
|
+
this.v.ci = this.c4;
|
|
763
808
|
}
|
|
764
809
|
break;
|
|
765
810
|
case "ColumnOptionsSeparatorColor":
|
|
766
811
|
if (this.v != null) {
|
|
767
|
-
this.v.
|
|
812
|
+
this.v.cn = this.c9;
|
|
768
813
|
}
|
|
769
814
|
break;
|
|
770
815
|
case "ColumnOptionsGroupHeaderBackground":
|
|
771
816
|
if (this.v != null) {
|
|
772
|
-
this.v.
|
|
817
|
+
this.v.cf = this.c2;
|
|
773
818
|
}
|
|
774
819
|
break;
|
|
775
820
|
case "ColumnOptionsGroupHeaderTextColor":
|
|
776
821
|
if (this.v != null) {
|
|
777
|
-
this.v.
|
|
822
|
+
this.v.ch = this.c3;
|
|
778
823
|
}
|
|
779
824
|
break;
|
|
780
825
|
case "ColumnOptionsGroupHeaderTextStyle":
|
|
@@ -784,10 +829,10 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
784
829
|
break;
|
|
785
830
|
case "ColumnOptionsAccentColor":
|
|
786
831
|
if (this.v != null) {
|
|
787
|
-
this.v.b7 = this.
|
|
788
|
-
this.v.
|
|
789
|
-
this.v.
|
|
790
|
-
this.v.
|
|
832
|
+
this.v.b7 = this.c0;
|
|
833
|
+
this.v.cc = this.c0;
|
|
834
|
+
this.v.cd = this.c0;
|
|
835
|
+
this.v.cu = this.c0;
|
|
791
836
|
}
|
|
792
837
|
break;
|
|
793
838
|
case "ColumnOptionsRowHeight":
|
|
@@ -795,11 +840,26 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
795
840
|
this.v.b3 = this.ax;
|
|
796
841
|
}
|
|
797
842
|
break;
|
|
843
|
+
case "ColumnOptionsScrollbarBackground":
|
|
844
|
+
if (this.v != null) {
|
|
845
|
+
this.v.ca = this.c7;
|
|
846
|
+
}
|
|
847
|
+
break;
|
|
848
|
+
case "ColumnOptionsScrollbarHoverBackground":
|
|
849
|
+
if (this.v != null) {
|
|
850
|
+
this.v.cb = this.c8;
|
|
851
|
+
}
|
|
852
|
+
break;
|
|
853
|
+
case "ColumnOptionsScrollbarActiveBackground":
|
|
854
|
+
if (this.v != null) {
|
|
855
|
+
this.v.b9 = this.c6;
|
|
856
|
+
}
|
|
857
|
+
break;
|
|
798
858
|
}
|
|
799
859
|
};
|
|
800
|
-
GridFilterDialog.prototype.
|
|
860
|
+
GridFilterDialog.prototype.ce = function (a, b, c) {
|
|
801
861
|
this.s.v(a, b, c);
|
|
802
|
-
this.
|
|
862
|
+
this.b7();
|
|
803
863
|
};
|
|
804
864
|
Object.defineProperty(GridFilterDialog.prototype, "n", {
|
|
805
865
|
get: function () {
|
|
@@ -809,16 +869,16 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
809
869
|
var b = this.m;
|
|
810
870
|
this.m = a;
|
|
811
871
|
if (this.m != b) {
|
|
812
|
-
this.
|
|
872
|
+
this.b6(b, this.m);
|
|
813
873
|
}
|
|
814
874
|
},
|
|
815
875
|
enumerable: false,
|
|
816
876
|
configurable: true
|
|
817
877
|
});
|
|
818
|
-
GridFilterDialog.prototype.
|
|
878
|
+
GridFilterDialog.prototype.b6 = function (a, b) {
|
|
819
879
|
this.ad = true;
|
|
820
880
|
};
|
|
821
|
-
GridFilterDialog.prototype.
|
|
881
|
+
GridFilterDialog.prototype.b7 = function () {
|
|
822
882
|
var _this = this;
|
|
823
883
|
NativeUIComponent.av(this.s.p(), 18, function (a) {
|
|
824
884
|
var b = a;
|
|
@@ -826,74 +886,77 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
826
886
|
_this.v.b2 = 16;
|
|
827
887
|
_this.v.b8 = BrushUtil.l(0, 0, 0, 0);
|
|
828
888
|
_this.v.v = false;
|
|
829
|
-
_this.v.br = runOn(_this, _this.
|
|
830
|
-
_this.v.bp = runOn(_this, _this.
|
|
889
|
+
_this.v.br = runOn(_this, _this.bx);
|
|
890
|
+
_this.v.bp = runOn(_this, _this.bw);
|
|
831
891
|
_this.v.b0 = false;
|
|
832
892
|
_this.s.r(_this.v);
|
|
833
893
|
_this.v.c = _this.x;
|
|
834
|
-
_this.v.
|
|
835
|
-
_this.v.
|
|
836
|
-
_this.v.
|
|
837
|
-
_this.v.
|
|
838
|
-
_this.v.
|
|
839
|
-
_this.v.
|
|
840
|
-
_this.v.
|
|
841
|
-
_this.v.
|
|
894
|
+
_this.v.co = _this.c1;
|
|
895
|
+
_this.v.ct = _this.c1;
|
|
896
|
+
_this.v.cq = _this.da;
|
|
897
|
+
_this.v.ch = _this.c3;
|
|
898
|
+
_this.v.ce = _this.da;
|
|
899
|
+
_this.v.ck = _this.da;
|
|
900
|
+
_this.v.cl = _this.da;
|
|
901
|
+
_this.v.cm = _this.da;
|
|
842
902
|
_this.v.bw = _this.ab;
|
|
843
|
-
_this.v.
|
|
844
|
-
_this.v.
|
|
845
|
-
_this.v.
|
|
846
|
-
_this.v.
|
|
847
|
-
_this.v.
|
|
848
|
-
_this.v.
|
|
903
|
+
_this.v.cj = _this.c5;
|
|
904
|
+
_this.v.cr = _this.db;
|
|
905
|
+
_this.v.cs = _this.dc;
|
|
906
|
+
_this.v.ci = _this.c4;
|
|
907
|
+
_this.v.cn = _this.c9;
|
|
908
|
+
_this.v.cf = _this.c2;
|
|
849
909
|
_this.v.bx = _this.aa;
|
|
850
|
-
_this.v.b7 = _this.
|
|
851
|
-
_this.v.
|
|
852
|
-
_this.v.
|
|
853
|
-
_this.v.
|
|
910
|
+
_this.v.b7 = _this.c0;
|
|
911
|
+
_this.v.cc = _this.c0;
|
|
912
|
+
_this.v.cd = _this.c0;
|
|
913
|
+
_this.v.cu = _this.c0;
|
|
854
914
|
_this.v.b3 = _this.ax;
|
|
915
|
+
_this.v.ca = _this.c7;
|
|
916
|
+
_this.v.cb = _this.c8;
|
|
917
|
+
_this.v.b9 = _this.c6;
|
|
855
918
|
_this.v.b4 = _this.n;
|
|
856
919
|
});
|
|
857
920
|
};
|
|
858
|
-
GridFilterDialog.prototype.
|
|
921
|
+
GridFilterDialog.prototype.bx = function (a, b) {
|
|
859
922
|
if (this.ad) {
|
|
860
923
|
this.ad = false;
|
|
861
924
|
this.v.b4 = this.n;
|
|
862
925
|
}
|
|
863
926
|
if (this.n != null) {
|
|
864
927
|
if (this.n.grid != null) {
|
|
865
|
-
this.n.grid.
|
|
928
|
+
this.n.grid.wp();
|
|
866
929
|
}
|
|
867
|
-
this.n.
|
|
930
|
+
this.n.pk();
|
|
868
931
|
}
|
|
869
932
|
if (this.dialogOpening != null) {
|
|
870
933
|
var c = new GridFilterDialogOpeningEventArgs();
|
|
871
934
|
this.dialogOpening(this, c);
|
|
872
935
|
}
|
|
873
936
|
};
|
|
874
|
-
GridFilterDialog.prototype.
|
|
937
|
+
GridFilterDialog.prototype.bw = function (a, b) {
|
|
875
938
|
if (this.ae) {
|
|
876
|
-
this.
|
|
939
|
+
this.b2();
|
|
877
940
|
}
|
|
878
941
|
};
|
|
879
|
-
GridFilterDialog.prototype.
|
|
942
|
+
GridFilterDialog.prototype.bz = function (a, b) {
|
|
880
943
|
switch (b.propertyName) {
|
|
881
944
|
case "IsHidden": break;
|
|
882
945
|
}
|
|
883
946
|
};
|
|
884
|
-
GridFilterDialog.prototype.
|
|
947
|
+
GridFilterDialog.prototype.b8 = function () {
|
|
885
948
|
};
|
|
886
|
-
GridFilterDialog.prototype.
|
|
887
|
-
a.onModified = delegateRemove(a.onModified, runOn(this, this.
|
|
949
|
+
GridFilterDialog.prototype.b9 = function (a, b) {
|
|
950
|
+
a.onModified = delegateRemove(a.onModified, runOn(this, this.cc));
|
|
888
951
|
if (b) {
|
|
889
|
-
this.
|
|
952
|
+
this.cg();
|
|
890
953
|
}
|
|
891
954
|
else {
|
|
892
|
-
this.
|
|
955
|
+
this.cf(a, true);
|
|
893
956
|
}
|
|
894
957
|
this.f = null;
|
|
895
958
|
};
|
|
896
|
-
GridFilterDialog.prototype.
|
|
959
|
+
GridFilterDialog.prototype.b0 = function () {
|
|
897
960
|
this.s.s();
|
|
898
961
|
if (this.ac == null) {
|
|
899
962
|
var a = new AnimationKeyFrameEffectTiming();
|
|
@@ -902,7 +965,7 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
902
965
|
this.ac = KeyFrameAnimationFactory.f.c(this.s.a(a).m(new AnimationKeyFrameProperty(1, 0)).m(new AnimationKeyFrameProperty(1, 1)));
|
|
903
966
|
}
|
|
904
967
|
};
|
|
905
|
-
GridFilterDialog.prototype.
|
|
968
|
+
GridFilterDialog.prototype.ch = function () {
|
|
906
969
|
var _this = this;
|
|
907
970
|
if (this.filterChanged != null) {
|
|
908
971
|
this.filterChanged(this, ((function () {
|
|
@@ -912,7 +975,7 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
912
975
|
})()));
|
|
913
976
|
}
|
|
914
977
|
};
|
|
915
|
-
GridFilterDialog.prototype.
|
|
978
|
+
GridFilterDialog.prototype.cg = function () {
|
|
916
979
|
if (this.filterChanged != null) {
|
|
917
980
|
this.filterChanged(this, ((function () {
|
|
918
981
|
var $ret = new GridFilterDialogFilterChangeEventArgs();
|
|
@@ -921,7 +984,7 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
921
984
|
})()));
|
|
922
985
|
}
|
|
923
986
|
};
|
|
924
|
-
GridFilterDialog.prototype.
|
|
987
|
+
GridFilterDialog.prototype.cf = function (a, b) {
|
|
925
988
|
var c = this.e(a);
|
|
926
989
|
if (b) {
|
|
927
990
|
if (this.filterChanged != null) {
|
|
@@ -1026,30 +1089,30 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1026
1089
|
GridFilterDialog.prototype.c = function (a) {
|
|
1027
1090
|
return EnumUtil.getEnumValue(ColumnComparisonConditionOperatorType_$type, EnumUtil.parse(ColumnComparisonConditionOperatorType_$type, a, true));
|
|
1028
1091
|
};
|
|
1029
|
-
GridFilterDialog.prototype.
|
|
1030
|
-
this.
|
|
1092
|
+
GridFilterDialog.prototype.cc = function (a) {
|
|
1093
|
+
this.cf(a, false);
|
|
1031
1094
|
};
|
|
1032
1095
|
GridFilterDialog.prototype.t = function (a, b) {
|
|
1033
1096
|
var c = new GridFilterDialogViewModel();
|
|
1034
1097
|
if (a != null) {
|
|
1035
|
-
this.
|
|
1098
|
+
this.by(c, a, b);
|
|
1036
1099
|
}
|
|
1037
1100
|
else {
|
|
1038
1101
|
var d = new GridFilterDialogViewModelRow();
|
|
1039
1102
|
d.f = b;
|
|
1040
1103
|
d.e = GridFilterDialog.a(b);
|
|
1041
1104
|
d.d = GridFilterDialog.b(b);
|
|
1042
|
-
d.l = GridFilterDialog.
|
|
1105
|
+
d.l = GridFilterDialog.bo(b[0]);
|
|
1043
1106
|
c.f.add(d);
|
|
1044
1107
|
}
|
|
1045
1108
|
return c;
|
|
1046
1109
|
};
|
|
1047
|
-
GridFilterDialog.prototype.
|
|
1110
|
+
GridFilterDialog.prototype.by = function (a, b, c) {
|
|
1048
1111
|
if (b.isGroup()) {
|
|
1049
1112
|
var d = b;
|
|
1050
1113
|
for (var e = 0; e < d.count; e++) {
|
|
1051
1114
|
var f = d.item(e);
|
|
1052
|
-
this.
|
|
1115
|
+
this.by(a, f, c);
|
|
1053
1116
|
}
|
|
1054
1117
|
}
|
|
1055
1118
|
else {
|
|
@@ -1058,7 +1121,7 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1058
1121
|
};
|
|
1059
1122
|
GridFilterDialog.prototype.u = function (a, b) {
|
|
1060
1123
|
var c = new GridFilterDialogViewModelRow();
|
|
1061
|
-
c.l = GridFilterDialog.
|
|
1124
|
+
c.l = GridFilterDialog.bo(a.operator);
|
|
1062
1125
|
c.f = b;
|
|
1063
1126
|
c.e = GridFilterDialog.a(b);
|
|
1064
1127
|
c.i = GridFilterDialog.a2(GridFilterDialog.ay(a.operator), a.operator, a);
|
|
@@ -1088,25 +1151,25 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1088
1151
|
}
|
|
1089
1152
|
return b;
|
|
1090
1153
|
};
|
|
1091
|
-
GridFilterDialog.
|
|
1154
|
+
GridFilterDialog.bo = function (a) {
|
|
1092
1155
|
return EnumUtil.getName(ColumnComparisonConditionOperatorType_$type, a);
|
|
1093
1156
|
};
|
|
1094
|
-
GridFilterDialog.prototype.
|
|
1157
|
+
GridFilterDialog.prototype.b5 = function (a, b) {
|
|
1095
1158
|
this.s.w(a, b);
|
|
1096
1159
|
};
|
|
1097
|
-
GridFilterDialog.prototype.
|
|
1160
|
+
GridFilterDialog.prototype.b4 = function () {
|
|
1098
1161
|
this.s.u();
|
|
1099
1162
|
};
|
|
1100
|
-
GridFilterDialog.prototype.
|
|
1163
|
+
GridFilterDialog.prototype.b3 = function (a, b, c) {
|
|
1101
1164
|
};
|
|
1102
|
-
GridFilterDialog.prototype.
|
|
1165
|
+
GridFilterDialog.prototype.ci = function () {
|
|
1103
1166
|
var _this = this;
|
|
1104
1167
|
this.ae = false;
|
|
1105
1168
|
if (this.s.q == null || NativeUI.g(this.s.q) == 1) {
|
|
1106
1169
|
return;
|
|
1107
1170
|
}
|
|
1108
1171
|
if (this.ai) {
|
|
1109
|
-
this.
|
|
1172
|
+
this.b0();
|
|
1110
1173
|
if (this.ac.playbackRate < 0) {
|
|
1111
1174
|
this.ac.reverse();
|
|
1112
1175
|
}
|
|
@@ -1119,7 +1182,7 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1119
1182
|
NativeUI.ab(this.s.q, 1);
|
|
1120
1183
|
}
|
|
1121
1184
|
};
|
|
1122
|
-
GridFilterDialog.prototype.
|
|
1185
|
+
GridFilterDialog.prototype.b2 = function () {
|
|
1123
1186
|
var _this = this;
|
|
1124
1187
|
this.ae = true;
|
|
1125
1188
|
if (!this.aj) {
|
|
@@ -1127,7 +1190,7 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1127
1190
|
return;
|
|
1128
1191
|
}
|
|
1129
1192
|
if (this.ai) {
|
|
1130
|
-
this.
|
|
1193
|
+
this.b0();
|
|
1131
1194
|
if (this.ac.playbackRate < 0) {
|
|
1132
1195
|
this.ac.play();
|
|
1133
1196
|
}
|
|
@@ -1162,12 +1225,12 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1162
1225
|
enumerable: false,
|
|
1163
1226
|
configurable: true
|
|
1164
1227
|
});
|
|
1165
|
-
GridFilterDialog.prototype.
|
|
1228
|
+
GridFilterDialog.prototype.cb = function () {
|
|
1166
1229
|
if (this.renderCompleted != null) {
|
|
1167
1230
|
this.renderCompleted(this, new FilterDialogRenderCompletedEventArgs());
|
|
1168
1231
|
}
|
|
1169
1232
|
};
|
|
1170
|
-
GridFilterDialog.prototype.
|
|
1233
|
+
GridFilterDialog.prototype.b1 = function () {
|
|
1171
1234
|
if (this.v != null) {
|
|
1172
1235
|
if (this.n != null && this.v.b4 != this.n) {
|
|
1173
1236
|
this.v.b4 = this.n;
|
|
@@ -1184,7 +1247,7 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1184
1247
|
GridFilterDialog.prototype.getDesiredToolbarActions = function () {
|
|
1185
1248
|
if (!GridFilterDialog.ag) {
|
|
1186
1249
|
GridFilterDialog.ag = true;
|
|
1187
|
-
SvgIconRegistry.instance.addSvgPathString("XGrid", "DotDotDot", GridFilterDialog.
|
|
1250
|
+
SvgIconRegistry.instance.addSvgPathString("XGrid", "DotDotDot", GridFilterDialog.bn);
|
|
1188
1251
|
}
|
|
1189
1252
|
var a = new ToolActionIconMenuInfo();
|
|
1190
1253
|
a.name = "DataGridColumnOptionsPlaceholder";
|
|
@@ -1229,7 +1292,7 @@ export var GridFilterDialog = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1229
1292
|
};
|
|
1230
1293
|
GridFilterDialog.$t = markType(GridFilterDialog, 'GridFilterDialog', Base.$, [INotifyPropertyChanged_$type, IToolbarTarget_$type]);
|
|
1231
1294
|
GridFilterDialog.ag = false;
|
|
1232
|
-
GridFilterDialog.
|
|
1295
|
+
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";
|
|
1233
1296
|
return GridFilterDialog;
|
|
1234
1297
|
}(Base));
|
|
1235
1298
|
/**
|
|
@@ -1260,7 +1323,7 @@ export var GridFilterDialogViewModel = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
1260
1323
|
a.f = b;
|
|
1261
1324
|
a.e = GridFilterDialog.a(b);
|
|
1262
1325
|
a.d = GridFilterDialog.b(b);
|
|
1263
|
-
a.l = GridFilterDialog.
|
|
1326
|
+
a.l = GridFilterDialog.bo(b[0]);
|
|
1264
1327
|
this.f.add(a);
|
|
1265
1328
|
};
|
|
1266
1329
|
GridFilterDialogViewModel.prototype.u = function (a) {
|