igniteui-webcomponents-data-grids 7.1.0-beta.2 → 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
|
@@ -12,8 +12,11 @@ import { ColumnOptionsIconAlignment_$type } from "./ColumnOptionsIconAlignment";
|
|
|
12
12
|
import { enumGetBox, runOn, delegateCombine, markType } from "igniteui-webcomponents-core";
|
|
13
13
|
let TextHeaderCell = /*@__PURE__*/ (() => {
|
|
14
14
|
class TextHeaderCell extends GridCellBase {
|
|
15
|
-
get
|
|
16
|
-
return this.
|
|
15
|
+
get ef() {
|
|
16
|
+
return this.ec;
|
|
17
|
+
}
|
|
18
|
+
get d9() {
|
|
19
|
+
return this.d8;
|
|
17
20
|
}
|
|
18
21
|
get d7() {
|
|
19
22
|
return this.d6;
|
|
@@ -21,79 +24,81 @@ let TextHeaderCell = /*@__PURE__*/ (() => {
|
|
|
21
24
|
get d5() {
|
|
22
25
|
return this.d4;
|
|
23
26
|
}
|
|
27
|
+
set d5(a) {
|
|
28
|
+
let b = this.d4;
|
|
29
|
+
this.d4 = a;
|
|
30
|
+
this.cn("ColumnOptionsIconBehavior", enumGetBox(ColumnOptionsIconBehavior_$type, b), enumGetBox(ColumnOptionsIconBehavior_$type, this.d4));
|
|
31
|
+
}
|
|
24
32
|
get d3() {
|
|
25
33
|
return this.d2;
|
|
26
34
|
}
|
|
27
35
|
set d3(a) {
|
|
28
36
|
let b = this.d2;
|
|
29
37
|
this.d2 = a;
|
|
30
|
-
this.
|
|
31
|
-
}
|
|
32
|
-
get d1() {
|
|
33
|
-
return this.d0;
|
|
34
|
-
}
|
|
35
|
-
set d1(a) {
|
|
36
|
-
let b = this.d0;
|
|
37
|
-
this.d0 = a;
|
|
38
|
-
this.cl("ColumnOptionsIconAlignment", enumGetBox(ColumnOptionsIconAlignment_$type, b), enumGetBox(ColumnOptionsIconAlignment_$type, this.d0));
|
|
38
|
+
this.cn("ColumnOptionsIconAlignment", enumGetBox(ColumnOptionsIconAlignment_$type, b), enumGetBox(ColumnOptionsIconAlignment_$type, this.d2));
|
|
39
39
|
}
|
|
40
40
|
af(a) {
|
|
41
41
|
return true;
|
|
42
42
|
}
|
|
43
|
-
|
|
44
|
-
super.
|
|
45
|
-
a
|
|
46
|
-
if (this.d9) {
|
|
47
|
-
|
|
43
|
+
df(a, b) {
|
|
44
|
+
super.df(a, b);
|
|
45
|
+
let c = a - b;
|
|
46
|
+
if (this.d9.t > 0) {
|
|
47
|
+
c -= 23;
|
|
48
48
|
}
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
49
|
+
if (this.eb) {
|
|
50
|
+
c -= 23;
|
|
51
|
+
}
|
|
52
|
+
c = Math.max(0, c);
|
|
53
|
+
if (c != this.eh) {
|
|
54
|
+
this.eh = c;
|
|
55
|
+
this.ec.setRawStyleProperty("max-width", c.toString() + "px");
|
|
53
56
|
}
|
|
54
57
|
}
|
|
55
|
-
|
|
56
|
-
super.
|
|
57
|
-
this.
|
|
58
|
+
c4(a, b) {
|
|
59
|
+
super.c4(a, b);
|
|
60
|
+
this.ec.setRawStyleProperty("line-height", (this.bh - this.bi).toString() + "px");
|
|
58
61
|
let c = Math.max(0, a - b);
|
|
59
|
-
if (this.
|
|
60
|
-
this.
|
|
61
|
-
this.
|
|
62
|
+
if (this.eg != c) {
|
|
63
|
+
this.eg = c;
|
|
64
|
+
this.ec.setRawStyleProperty("max-height", c.toString() + "px");
|
|
62
65
|
}
|
|
63
66
|
}
|
|
64
|
-
|
|
65
|
-
super.
|
|
66
|
-
if (a == this.
|
|
67
|
-
this.
|
|
67
|
+
c3(a, b) {
|
|
68
|
+
super.c3(a, b);
|
|
69
|
+
if (a == this.ec) {
|
|
70
|
+
this.ec.setRawStyleProperty("line-height", (this.bh - this.bi).toString() + "px");
|
|
68
71
|
}
|
|
69
72
|
}
|
|
70
|
-
|
|
71
|
-
this.
|
|
73
|
+
dg(a, b, c, d) {
|
|
74
|
+
this.d6.b4();
|
|
72
75
|
}
|
|
73
76
|
constructor(a) {
|
|
74
77
|
super(a);
|
|
75
|
-
this.ea = null;
|
|
76
|
-
this.d6 = null;
|
|
77
|
-
this.d4 = null;
|
|
78
|
-
this.d0 = 0;
|
|
79
|
-
this.dz = 0;
|
|
80
|
-
this.d2 = 3;
|
|
81
78
|
this.ec = null;
|
|
82
|
-
this.
|
|
83
|
-
this.
|
|
84
|
-
this.
|
|
85
|
-
this.
|
|
86
|
-
this.
|
|
87
|
-
this.
|
|
79
|
+
this.d8 = null;
|
|
80
|
+
this.d6 = null;
|
|
81
|
+
this.d2 = 0;
|
|
82
|
+
this.d1 = 0;
|
|
83
|
+
this.d4 = 3;
|
|
84
|
+
this.ee = null;
|
|
85
|
+
this.eh = -1;
|
|
86
|
+
this.eg = -1;
|
|
87
|
+
this.ea = false;
|
|
88
|
+
this.ed = null;
|
|
89
|
+
this.eb = false;
|
|
90
|
+
this.eb = true;
|
|
91
|
+
this.ec = a.createElement("span");
|
|
88
92
|
this.ar.setRawStyleProperty("text-align", "left");
|
|
89
93
|
this.ar.setRawStyleProperty("vertical-align", "middle");
|
|
90
|
-
this.
|
|
91
|
-
this.
|
|
92
|
-
this.
|
|
93
|
-
this.
|
|
94
|
-
this.
|
|
95
|
-
this.
|
|
96
|
-
this.
|
|
94
|
+
this.ar.setRawStyleProperty("white-space", "nowrap");
|
|
95
|
+
this.ec.setRawStyleProperty("display", "inline-block");
|
|
96
|
+
this.ec.setRawStyleProperty("line-height", "normal");
|
|
97
|
+
this.ec.setRawStyleProperty("vertical-align", "middle");
|
|
98
|
+
this.ec.setRawStyleProperty("overflow", "hidden");
|
|
99
|
+
this.ec.setRawStyleProperty("white-space", "nowrap");
|
|
100
|
+
this.ec.setRawStyleProperty("text-overflow", "ellipsis");
|
|
101
|
+
this.ar.append(this.ec);
|
|
97
102
|
let b = 18;
|
|
98
103
|
let c = 18;
|
|
99
104
|
let d = a.createElement("div");
|
|
@@ -102,17 +107,17 @@ let TextHeaderCell = /*@__PURE__*/ (() => {
|
|
|
102
107
|
d.setRawStyleProperty("vertical-align", "middle");
|
|
103
108
|
d.setRawStyleProperty("width", b + "px");
|
|
104
109
|
d.setRawStyleProperty("height", c + "px");
|
|
105
|
-
this.
|
|
110
|
+
this.ed = d;
|
|
106
111
|
let e = a.getSubRenderer(d);
|
|
107
|
-
this.
|
|
108
|
-
this.
|
|
112
|
+
this.d6 = new GridFilterDialog();
|
|
113
|
+
this.d6.ce(e, this.ar, a);
|
|
109
114
|
this.ar.append(d);
|
|
110
|
-
this.
|
|
111
|
-
this.
|
|
112
|
-
let f = this.
|
|
113
|
-
this.
|
|
114
|
-
this.
|
|
115
|
-
this.
|
|
115
|
+
this.d6.b5(b, c);
|
|
116
|
+
this.d6.ar = 24;
|
|
117
|
+
let f = this.d6.ai;
|
|
118
|
+
this.d6.ai = false;
|
|
119
|
+
this.d6.b2();
|
|
120
|
+
this.d6.ai = f;
|
|
116
121
|
let g = 18;
|
|
117
122
|
let h = 18;
|
|
118
123
|
d = a.createElement("div");
|
|
@@ -122,190 +127,191 @@ let TextHeaderCell = /*@__PURE__*/ (() => {
|
|
|
122
127
|
d.setRawStyleProperty("width", "0px");
|
|
123
128
|
d.setRawStyleProperty("height", h + "px");
|
|
124
129
|
d.setRawStyleProperty("margin", "0 0 0 5px");
|
|
125
|
-
this.
|
|
130
|
+
this.ee = d;
|
|
126
131
|
e = a.getSubRenderer(d);
|
|
127
|
-
this.
|
|
128
|
-
this.
|
|
129
|
-
this.
|
|
130
|
-
this.
|
|
132
|
+
this.d8 = new GridSortIndicator();
|
|
133
|
+
this.d8.n = false;
|
|
134
|
+
this.d8.m = false;
|
|
135
|
+
this.d8.a0(e);
|
|
131
136
|
this.ar.append(d);
|
|
132
|
-
this.
|
|
133
|
-
let i = this.
|
|
134
|
-
i.propertyChanged = delegateCombine(i.propertyChanged, runOn(this, this.
|
|
135
|
-
let j = this.
|
|
136
|
-
j.dialogOpening = delegateCombine(j.dialogOpening, runOn(this, this.
|
|
137
|
-
let k = this.
|
|
138
|
-
k.filterChanging = delegateCombine(k.filterChanging, runOn(this, this.
|
|
139
|
-
let l = this.
|
|
140
|
-
l.filterChanged = delegateCombine(l.filterChanged, runOn(this, this.
|
|
141
|
-
this.ar.listen("mouseenter", runOn(this, this.
|
|
142
|
-
this.ar.listen("mouseleave", runOn(this, this.
|
|
137
|
+
this.d8.au(g, h);
|
|
138
|
+
let i = this.d8;
|
|
139
|
+
i.propertyChanged = delegateCombine(i.propertyChanged, runOn(this, this.ek));
|
|
140
|
+
let j = this.d6;
|
|
141
|
+
j.dialogOpening = delegateCombine(j.dialogOpening, runOn(this, this.el));
|
|
142
|
+
let k = this.d6;
|
|
143
|
+
k.filterChanging = delegateCombine(k.filterChanging, runOn(this, this.en));
|
|
144
|
+
let l = this.d6;
|
|
145
|
+
l.filterChanged = delegateCombine(l.filterChanged, runOn(this, this.em));
|
|
146
|
+
this.ar.listen("mouseenter", runOn(this, this.er));
|
|
147
|
+
this.ar.listen("mouseleave", runOn(this, this.eq));
|
|
143
148
|
}
|
|
144
|
-
|
|
149
|
+
ek(a, b) {
|
|
145
150
|
switch (b.propertyName) {
|
|
146
151
|
case "CurrentOpacity":
|
|
147
|
-
if (this.
|
|
148
|
-
this.
|
|
149
|
-
if (this.
|
|
150
|
-
this.
|
|
152
|
+
if (this.d9.t > 0) {
|
|
153
|
+
this.ee.setRawStyleProperty("width", "18px");
|
|
154
|
+
if (this.d1 == 2) {
|
|
155
|
+
this.ee.setRawStyleProperty("margin", "0 5px 0 0");
|
|
151
156
|
}
|
|
152
157
|
else {
|
|
153
|
-
this.
|
|
158
|
+
this.ee.setRawStyleProperty("margin", "0 0 0 5px");
|
|
154
159
|
}
|
|
155
160
|
}
|
|
156
161
|
else {
|
|
157
|
-
this.
|
|
158
|
-
this.
|
|
162
|
+
this.ee.setRawStyleProperty("width", "0px");
|
|
163
|
+
this.ee.setRawStyleProperty("margin", "0");
|
|
159
164
|
}
|
|
165
|
+
this.df(this.bk, this.bl);
|
|
160
166
|
break;
|
|
161
167
|
}
|
|
162
168
|
}
|
|
163
|
-
|
|
169
|
+
er(a) {
|
|
164
170
|
if (this.b.isGridDragging) {
|
|
165
171
|
return;
|
|
166
172
|
}
|
|
167
|
-
switch (this.
|
|
173
|
+
switch (this.d5) {
|
|
168
174
|
case 2:
|
|
169
175
|
case 3:
|
|
170
|
-
this.
|
|
176
|
+
this.d6.ci();
|
|
171
177
|
break;
|
|
172
178
|
}
|
|
173
179
|
}
|
|
174
|
-
|
|
175
|
-
switch (this.
|
|
180
|
+
eq(a) {
|
|
181
|
+
switch (this.d5) {
|
|
176
182
|
case 2:
|
|
177
183
|
case 3:
|
|
178
|
-
this.
|
|
184
|
+
this.d6.b2();
|
|
179
185
|
break;
|
|
180
186
|
}
|
|
181
187
|
}
|
|
182
|
-
|
|
188
|
+
em(a, b) {
|
|
183
189
|
this.b.columnFilterChanged(b.a);
|
|
184
190
|
}
|
|
185
|
-
|
|
191
|
+
en(a, b) {
|
|
186
192
|
this.b.columnFilterChanging(b.a);
|
|
187
193
|
}
|
|
188
|
-
|
|
194
|
+
el(a, b) {
|
|
189
195
|
if (this.b != null) {
|
|
190
196
|
b.a = this.f.getColumn();
|
|
191
197
|
this.b.cancelEditMode(false);
|
|
192
198
|
}
|
|
193
199
|
}
|
|
194
|
-
|
|
195
|
-
super.
|
|
196
|
-
this.
|
|
197
|
-
this.
|
|
200
|
+
cl(a, b, c) {
|
|
201
|
+
super.cl(a, b, c);
|
|
202
|
+
this.d1 = c;
|
|
203
|
+
this.d6.k = c;
|
|
198
204
|
if (c == 2) {
|
|
199
|
-
if (this.
|
|
200
|
-
this.ar.removeChild(this.
|
|
201
|
-
this.ar.removeChild(this.
|
|
202
|
-
this.
|
|
203
|
-
this.
|
|
204
|
-
this.
|
|
205
|
-
this.
|
|
205
|
+
if (this.d3 == 1) {
|
|
206
|
+
this.ar.removeChild(this.ee);
|
|
207
|
+
this.ar.removeChild(this.ed);
|
|
208
|
+
this.ec.before(this.ed);
|
|
209
|
+
this.ed.before(this.ee);
|
|
210
|
+
this.ed.setRawStyleProperty("margin", "0 5px 0 0");
|
|
211
|
+
this.d6.l = this.d1;
|
|
206
212
|
}
|
|
207
|
-
else if (this.
|
|
208
|
-
this.ar.removeChild(this.
|
|
209
|
-
this.ar.removeChild(this.
|
|
210
|
-
this.ar.append(this.
|
|
211
|
-
this.
|
|
212
|
-
this.
|
|
213
|
-
this.
|
|
213
|
+
else if (this.d3 == 4) {
|
|
214
|
+
this.ar.removeChild(this.ee);
|
|
215
|
+
this.ar.removeChild(this.ed);
|
|
216
|
+
this.ar.append(this.ed);
|
|
217
|
+
this.ec.before(this.ee);
|
|
218
|
+
this.ed.setRawStyleProperty("margin", "0 0 0 5px");
|
|
219
|
+
this.d6.l = 2;
|
|
214
220
|
}
|
|
215
221
|
else {
|
|
216
|
-
this.ar.removeChild(this.
|
|
217
|
-
this.ar.removeChild(this.
|
|
218
|
-
this.
|
|
219
|
-
this.
|
|
220
|
-
this.
|
|
221
|
-
this.
|
|
222
|
+
this.ar.removeChild(this.ee);
|
|
223
|
+
this.ar.removeChild(this.ed);
|
|
224
|
+
this.ec.before(this.ed);
|
|
225
|
+
this.ed.before(this.ee);
|
|
226
|
+
this.ed.setRawStyleProperty("margin", "0");
|
|
227
|
+
this.d6.l = 0;
|
|
222
228
|
}
|
|
223
229
|
}
|
|
224
230
|
else {
|
|
225
|
-
if (this.
|
|
231
|
+
if (this.d3 == 1) {
|
|
232
|
+
this.ar.removeChild(this.ee);
|
|
226
233
|
this.ar.removeChild(this.ec);
|
|
227
|
-
this.
|
|
228
|
-
this.
|
|
229
|
-
this.
|
|
230
|
-
this.
|
|
231
|
-
this.d4.l = this.dz;
|
|
234
|
+
this.ed.before(this.ec);
|
|
235
|
+
this.ed.before(this.ee);
|
|
236
|
+
this.ed.setRawStyleProperty("margin", "0 0 0 5px");
|
|
237
|
+
this.d6.l = this.d1;
|
|
232
238
|
}
|
|
233
|
-
else if (this.
|
|
239
|
+
else if (this.d3 == 3) {
|
|
240
|
+
this.ar.removeChild(this.ee);
|
|
234
241
|
this.ar.removeChild(this.ec);
|
|
235
|
-
this.ar.removeChild(this.
|
|
236
|
-
this.ar.
|
|
237
|
-
this.ar.append(this.eb);
|
|
238
|
-
this.ar.append(this.ea);
|
|
242
|
+
this.ar.removeChild(this.ed);
|
|
243
|
+
this.ar.append(this.ed);
|
|
239
244
|
this.ar.append(this.ec);
|
|
240
|
-
this.
|
|
241
|
-
this.
|
|
245
|
+
this.ar.append(this.ee);
|
|
246
|
+
this.ed.setRawStyleProperty("margin", "0 5px 0 0");
|
|
247
|
+
this.d6.l = 0;
|
|
242
248
|
}
|
|
243
249
|
else {
|
|
250
|
+
this.ar.removeChild(this.ee);
|
|
244
251
|
this.ar.removeChild(this.ec);
|
|
245
|
-
this.
|
|
246
|
-
this.
|
|
247
|
-
this.
|
|
248
|
-
this.
|
|
249
|
-
this.d4.l = 2;
|
|
252
|
+
this.ed.before(this.ec);
|
|
253
|
+
this.ed.before(this.ee);
|
|
254
|
+
this.ed.setRawStyleProperty("margin", "0");
|
|
255
|
+
this.d6.l = 2;
|
|
250
256
|
}
|
|
251
257
|
}
|
|
252
258
|
}
|
|
253
|
-
|
|
254
|
-
super.
|
|
255
|
-
this.
|
|
256
|
-
this.
|
|
259
|
+
c9(a, b, c, d) {
|
|
260
|
+
super.c9(a, b, c, d);
|
|
261
|
+
this.d6.av = a;
|
|
262
|
+
this.d6.aw = c;
|
|
257
263
|
}
|
|
258
|
-
|
|
259
|
-
if (this.
|
|
260
|
-
this.
|
|
261
|
-
this.
|
|
264
|
+
ep() {
|
|
265
|
+
if (this.d3 == 3) {
|
|
266
|
+
this.d6.l = 0;
|
|
267
|
+
this.ed.setRawStyleProperty("margin", "0");
|
|
262
268
|
}
|
|
263
|
-
else if (this.
|
|
264
|
-
this.
|
|
265
|
-
this.
|
|
269
|
+
else if (this.d3 == 4) {
|
|
270
|
+
this.d6.l = 2;
|
|
271
|
+
this.ed.setRawStyleProperty("margin", "0");
|
|
266
272
|
}
|
|
267
|
-
else if (this.
|
|
268
|
-
if (this.
|
|
269
|
-
this.
|
|
273
|
+
else if (this.d3 == 2 || this.d3 == 0) {
|
|
274
|
+
if (this.d1 == 2) {
|
|
275
|
+
this.d6.l = 0;
|
|
270
276
|
}
|
|
271
277
|
else {
|
|
272
|
-
this.
|
|
278
|
+
this.d6.l = 2;
|
|
273
279
|
}
|
|
274
|
-
this.
|
|
280
|
+
this.ed.setRawStyleProperty("margin", "0");
|
|
275
281
|
}
|
|
276
282
|
else {
|
|
277
|
-
this.
|
|
278
|
-
if (this.
|
|
279
|
-
this.
|
|
283
|
+
this.d6.l = this.d1;
|
|
284
|
+
if (this.d1 == 2) {
|
|
285
|
+
this.ed.setRawStyleProperty("margin", "0 5px 0 0");
|
|
280
286
|
}
|
|
281
287
|
else {
|
|
282
|
-
this.
|
|
288
|
+
this.ed.setRawStyleProperty("margin", "0 0 0 5px");
|
|
283
289
|
}
|
|
284
290
|
}
|
|
285
|
-
this.
|
|
291
|
+
this.cl(this.ar, this.ec, this.d1);
|
|
286
292
|
}
|
|
287
|
-
|
|
288
|
-
switch (this.
|
|
293
|
+
eo() {
|
|
294
|
+
switch (this.d5) {
|
|
289
295
|
case 1:
|
|
290
|
-
this.
|
|
291
|
-
this.
|
|
296
|
+
this.d6.ai = false;
|
|
297
|
+
this.d6.ci();
|
|
292
298
|
break;
|
|
293
299
|
case 2:
|
|
294
|
-
this.
|
|
300
|
+
this.d6.ai = false;
|
|
295
301
|
break;
|
|
296
302
|
case 3:
|
|
297
|
-
this.
|
|
303
|
+
this.d6.ai = true;
|
|
298
304
|
break;
|
|
299
305
|
}
|
|
300
306
|
}
|
|
301
|
-
|
|
302
|
-
super.
|
|
307
|
+
cn(a, b, c) {
|
|
308
|
+
super.cn(a, b, c);
|
|
303
309
|
switch (a) {
|
|
304
310
|
case "ColumnOptionsIconAlignment":
|
|
305
|
-
this.
|
|
311
|
+
this.ep();
|
|
306
312
|
break;
|
|
307
313
|
case "ColumnOptionsIconBehavior":
|
|
308
|
-
this.
|
|
314
|
+
this.eo();
|
|
309
315
|
break;
|
|
310
316
|
}
|
|
311
317
|
}
|
|
@@ -313,28 +319,28 @@ let TextHeaderCell = /*@__PURE__*/ (() => {
|
|
|
313
319
|
if (e_.button == 2) {
|
|
314
320
|
return;
|
|
315
321
|
}
|
|
316
|
-
let b = this.
|
|
322
|
+
let b = this.d6.ak(e_);
|
|
317
323
|
if (b) {
|
|
318
|
-
this.
|
|
324
|
+
this.ea = true;
|
|
319
325
|
return;
|
|
320
326
|
}
|
|
321
327
|
super.onContactStarted(e_, a);
|
|
322
328
|
}
|
|
323
329
|
onContactCompleted(e_, a) {
|
|
324
|
-
if (!this.
|
|
330
|
+
if (!this.ea) {
|
|
325
331
|
super.onContactCompleted(e_, a);
|
|
326
332
|
}
|
|
327
|
-
this.
|
|
333
|
+
this.ea = false;
|
|
328
334
|
}
|
|
329
335
|
detach() {
|
|
330
336
|
super.detach();
|
|
331
|
-
if (this.
|
|
337
|
+
if (this.d6 != null) {
|
|
332
338
|
}
|
|
333
339
|
}
|
|
334
|
-
|
|
335
|
-
super.
|
|
336
|
-
if (this.
|
|
337
|
-
this.
|
|
340
|
+
dd(a) {
|
|
341
|
+
super.dd(a);
|
|
342
|
+
if (this.d7 != null) {
|
|
343
|
+
this.d7.x = a;
|
|
338
344
|
}
|
|
339
345
|
}
|
|
340
346
|
get_ac() {
|