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
package/esm2015/lib/CellPath.js
CHANGED
|
@@ -8,18 +8,18 @@ import { RowPath } from "./RowPath";
|
|
|
8
8
|
import { markType } from "igniteui-webcomponents-core";
|
|
9
9
|
let CellPath = /*@__PURE__*/ (() => {
|
|
10
10
|
class CellPath extends RowPath {
|
|
11
|
-
get
|
|
12
|
-
return this.
|
|
11
|
+
get a6() {
|
|
12
|
+
return this.a4;
|
|
13
13
|
}
|
|
14
|
-
set
|
|
15
|
-
this.
|
|
14
|
+
set a6(a) {
|
|
15
|
+
this.a4 = a;
|
|
16
16
|
this.ad();
|
|
17
17
|
}
|
|
18
|
-
get
|
|
19
|
-
return this.
|
|
18
|
+
get bc() {
|
|
19
|
+
return this.a5;
|
|
20
20
|
}
|
|
21
|
-
set
|
|
22
|
-
this.
|
|
21
|
+
set bc(a) {
|
|
22
|
+
this.a5 = a;
|
|
23
23
|
}
|
|
24
24
|
get af() {
|
|
25
25
|
return this.ae;
|
|
@@ -30,7 +30,12 @@ let CellPath = /*@__PURE__*/ (() => {
|
|
|
30
30
|
}
|
|
31
31
|
ad() {
|
|
32
32
|
super.ad();
|
|
33
|
-
this.a2
|
|
33
|
+
let a = (this.a2 ? 1 : 0) | (this.ax ? 2 : 0) | (this.an ? 4 : 0);
|
|
34
|
+
let b = super.getHashCode();
|
|
35
|
+
b = (b * 397) ^ this.a6;
|
|
36
|
+
b = (b * 397) ^ this.af;
|
|
37
|
+
b = (b * 397) ^ a;
|
|
38
|
+
this.a3 = b;
|
|
34
39
|
}
|
|
35
40
|
constructor(a, ..._rest) {
|
|
36
41
|
a = (a == void 0) ? 0 : a;
|
|
@@ -47,16 +52,16 @@ let CellPath = /*@__PURE__*/ (() => {
|
|
|
47
52
|
let j = g[1];
|
|
48
53
|
let k = g[2];
|
|
49
54
|
super(j, k);
|
|
50
|
-
this.a3 = 0;
|
|
51
55
|
this.a4 = 0;
|
|
56
|
+
this.a5 = 0;
|
|
52
57
|
this.ae = 1;
|
|
53
|
-
this.
|
|
54
|
-
this.
|
|
58
|
+
this.a3 = -1;
|
|
59
|
+
this.an = false;
|
|
55
60
|
this.ah = false;
|
|
56
61
|
this.ag = false;
|
|
57
|
-
this.
|
|
62
|
+
this.av = false;
|
|
58
63
|
this.ai = false;
|
|
59
|
-
this.
|
|
64
|
+
this.a4 = i;
|
|
60
65
|
this.ad();
|
|
61
66
|
}
|
|
62
67
|
this.b = c;
|
|
@@ -69,16 +74,16 @@ let CellPath = /*@__PURE__*/ (() => {
|
|
|
69
74
|
let d = _rest[1];
|
|
70
75
|
let e = _rest[2];
|
|
71
76
|
super(d, e);
|
|
72
|
-
this.a3 = 0;
|
|
73
77
|
this.a4 = 0;
|
|
78
|
+
this.a5 = 0;
|
|
74
79
|
this.ae = 1;
|
|
75
|
-
this.
|
|
76
|
-
this.
|
|
80
|
+
this.a3 = -1;
|
|
81
|
+
this.an = false;
|
|
77
82
|
this.ah = false;
|
|
78
83
|
this.ag = false;
|
|
79
|
-
this.
|
|
84
|
+
this.av = false;
|
|
80
85
|
this.ai = false;
|
|
81
|
-
this.
|
|
86
|
+
this.a4 = c;
|
|
82
87
|
this.ad();
|
|
83
88
|
}
|
|
84
89
|
break;
|
|
@@ -87,16 +92,16 @@ let CellPath = /*@__PURE__*/ (() => {
|
|
|
87
92
|
let c = _rest[0];
|
|
88
93
|
let d = _rest[1];
|
|
89
94
|
super(0, d);
|
|
90
|
-
this.a3 = 0;
|
|
91
95
|
this.a4 = 0;
|
|
96
|
+
this.a5 = 0;
|
|
92
97
|
this.ae = 1;
|
|
93
|
-
this.
|
|
94
|
-
this.
|
|
98
|
+
this.a3 = -1;
|
|
99
|
+
this.an = false;
|
|
95
100
|
this.ah = false;
|
|
96
101
|
this.ag = false;
|
|
97
|
-
this.
|
|
102
|
+
this.av = false;
|
|
98
103
|
this.ai = false;
|
|
99
|
-
this.
|
|
104
|
+
this.a4 = c;
|
|
100
105
|
this.ad();
|
|
101
106
|
}
|
|
102
107
|
break;
|
|
@@ -106,16 +111,16 @@ let CellPath = /*@__PURE__*/ (() => {
|
|
|
106
111
|
let d = _rest[1];
|
|
107
112
|
let e = _rest[2];
|
|
108
113
|
super(0, d);
|
|
109
|
-
this.a3 = 0;
|
|
110
114
|
this.a4 = 0;
|
|
115
|
+
this.a5 = 0;
|
|
111
116
|
this.ae = 1;
|
|
112
|
-
this.
|
|
113
|
-
this.
|
|
117
|
+
this.a3 = -1;
|
|
118
|
+
this.an = false;
|
|
114
119
|
this.ah = false;
|
|
115
120
|
this.ag = false;
|
|
116
|
-
this.
|
|
121
|
+
this.av = false;
|
|
117
122
|
this.ai = false;
|
|
118
|
-
this.
|
|
123
|
+
this.a4 = c;
|
|
119
124
|
this.ae = e;
|
|
120
125
|
this.ad();
|
|
121
126
|
}
|
|
@@ -123,7 +128,7 @@ let CellPath = /*@__PURE__*/ (() => {
|
|
|
123
128
|
}
|
|
124
129
|
}
|
|
125
130
|
getHashCode() {
|
|
126
|
-
return this.
|
|
131
|
+
return this.a3;
|
|
127
132
|
}
|
|
128
133
|
equals(a) {
|
|
129
134
|
if (!super.equals(a)) {
|
|
@@ -133,16 +138,17 @@ let CellPath = /*@__PURE__*/ (() => {
|
|
|
133
138
|
if (a == null) {
|
|
134
139
|
return false;
|
|
135
140
|
}
|
|
136
|
-
if (this.
|
|
141
|
+
if (this.a4 != b.a4) {
|
|
142
|
+
return false;
|
|
143
|
+
}
|
|
144
|
+
if (this.a2 != b.a2) {
|
|
137
145
|
return false;
|
|
138
146
|
}
|
|
139
|
-
if (
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
return false;
|
|
145
|
-
}
|
|
147
|
+
if (this.ax != b.ax) {
|
|
148
|
+
return false;
|
|
149
|
+
}
|
|
150
|
+
if (this.an != b.an) {
|
|
151
|
+
return false;
|
|
146
152
|
}
|
|
147
153
|
if (this.af != b.af) {
|
|
148
154
|
return false;
|
|
@@ -150,66 +156,70 @@ let CellPath = /*@__PURE__*/ (() => {
|
|
|
150
156
|
return true;
|
|
151
157
|
}
|
|
152
158
|
toString() {
|
|
153
|
-
return this.
|
|
159
|
+
return this.a4 + "." + super.toString();
|
|
154
160
|
}
|
|
155
161
|
ab() {
|
|
156
|
-
let a = new CellPath(0, this.b, this.
|
|
157
|
-
a.
|
|
158
|
-
a.
|
|
159
|
-
a.
|
|
162
|
+
let a = new CellPath(0, this.b, this.a4, this.y, this.x);
|
|
163
|
+
a.bc = this.bc;
|
|
164
|
+
a.a0 = this.a0;
|
|
165
|
+
a.ax = this.ax;
|
|
160
166
|
a.i = this.i;
|
|
161
167
|
a.o = this.o;
|
|
162
168
|
a.d = this.d;
|
|
163
|
-
a.
|
|
169
|
+
a.av = this.av;
|
|
164
170
|
a.ai = this.ai;
|
|
165
|
-
a.
|
|
171
|
+
a.an = this.an;
|
|
166
172
|
a.af = this.af;
|
|
173
|
+
a.ad();
|
|
167
174
|
return a;
|
|
168
175
|
}
|
|
169
176
|
get ay() {
|
|
170
|
-
return
|
|
177
|
+
return this.az && this.ax;
|
|
178
|
+
}
|
|
179
|
+
get az() {
|
|
180
|
+
return (this.a4 == -300);
|
|
171
181
|
}
|
|
172
182
|
get aj() {
|
|
173
|
-
return ((this.
|
|
183
|
+
return ((this.a4 >= 0 || this.a4 == -800 || this.a4 == -400) && this.x >= 0 && this.x >= 0);
|
|
174
184
|
}
|
|
175
|
-
get
|
|
176
|
-
return this.
|
|
185
|
+
get a1() {
|
|
186
|
+
return this.a4 == -400 || this.a4 == -401 || this.a4 == -402;
|
|
177
187
|
}
|
|
178
|
-
get
|
|
179
|
-
return this.g && !this.
|
|
188
|
+
get ao() {
|
|
189
|
+
return this.g && !this.az;
|
|
180
190
|
}
|
|
181
|
-
get
|
|
182
|
-
return this.x == -102 && this.
|
|
191
|
+
get aw() {
|
|
192
|
+
return this.x == -102 && this.a4 == -400;
|
|
183
193
|
}
|
|
184
|
-
get
|
|
185
|
-
return (this.x == -103 || this.x == -104) && this.
|
|
194
|
+
get ar() {
|
|
195
|
+
return (this.x == -103 || this.x == -104) && this.a6 == -500;
|
|
186
196
|
}
|
|
187
|
-
get
|
|
188
|
-
return (this.x == -103 || this.x == -104) && this.
|
|
197
|
+
get at() {
|
|
198
|
+
return (this.x == -103 || this.x == -104) && this.a6 == -501;
|
|
189
199
|
}
|
|
190
|
-
get
|
|
191
|
-
return this.x == -100 && this.
|
|
200
|
+
get aq() {
|
|
201
|
+
return this.x == -100 && this.a6 == -500;
|
|
192
202
|
}
|
|
193
|
-
get
|
|
194
|
-
return this.x == -100 && this.
|
|
203
|
+
get as() {
|
|
204
|
+
return this.x == -100 && this.a6 == -501;
|
|
195
205
|
}
|
|
196
|
-
get
|
|
206
|
+
get au() {
|
|
197
207
|
return this.x == -104;
|
|
198
208
|
}
|
|
199
|
-
get
|
|
209
|
+
get a0() {
|
|
200
210
|
return this.ah;
|
|
201
211
|
}
|
|
202
|
-
set
|
|
212
|
+
set a0(a) {
|
|
203
213
|
this.ah = a;
|
|
204
214
|
}
|
|
205
|
-
get
|
|
215
|
+
get ax() {
|
|
206
216
|
return this.ag;
|
|
207
217
|
}
|
|
208
|
-
set
|
|
218
|
+
set ax(a) {
|
|
209
219
|
this.ag = a;
|
|
210
220
|
}
|
|
211
|
-
get
|
|
212
|
-
return this.
|
|
221
|
+
get a2() {
|
|
222
|
+
return this.a0 || this.ax;
|
|
213
223
|
}
|
|
214
224
|
get ak() {
|
|
215
225
|
return this.af == 2;
|
|
@@ -217,7 +227,7 @@ let CellPath = /*@__PURE__*/ (() => {
|
|
|
217
227
|
get al() {
|
|
218
228
|
return this.af == 3;
|
|
219
229
|
}
|
|
220
|
-
get
|
|
230
|
+
get ap() {
|
|
221
231
|
return this.af == 4;
|
|
222
232
|
}
|
|
223
233
|
get am() {
|
|
@@ -20,89 +20,89 @@ let CellPresenterBase = /*@__PURE__*/ (() => {
|
|
|
20
20
|
this.b(a);
|
|
21
21
|
}
|
|
22
22
|
b(a) {
|
|
23
|
-
this.a.
|
|
24
|
-
this.a.
|
|
25
|
-
this.a.
|
|
26
|
-
this.a.
|
|
27
|
-
if (a.bc(CellModel.
|
|
28
|
-
this.a.ad = a.
|
|
23
|
+
this.a.cy(a.c);
|
|
24
|
+
this.a.c7(a.e);
|
|
25
|
+
this.a.c1(a.d);
|
|
26
|
+
this.a.cm();
|
|
27
|
+
if (a.bc(CellModel.gr)) {
|
|
28
|
+
this.a.ad = a.bi;
|
|
29
29
|
}
|
|
30
|
-
if (a.bc(CellModel.
|
|
31
|
-
this.a.
|
|
30
|
+
if (a.bc(CellModel.e3) || a.bc(CellModel.e7) || a.bc(CellModel.e5) || a.bc(CellModel.e1)) {
|
|
31
|
+
this.a.c9(a.e2, a.e6, a.e4, a.e0);
|
|
32
32
|
}
|
|
33
33
|
if (a.a5) {
|
|
34
|
-
this.a.
|
|
35
|
-
if (a.bc(CellModel.
|
|
36
|
-
if (!a.
|
|
37
|
-
this.a.
|
|
34
|
+
this.a.c0(a.nn, a.eq, a.ev, a.et, a.eo);
|
|
35
|
+
if (a.bc(CellModel.em)) {
|
|
36
|
+
if (!a.bk && a.p.i9 && a.bh && a.cr == 1) {
|
|
37
|
+
this.a.cc();
|
|
38
38
|
}
|
|
39
39
|
}
|
|
40
40
|
}
|
|
41
|
-
if (a.
|
|
42
|
-
this.a.
|
|
43
|
-
this.a.
|
|
41
|
+
if (a.bv || a.a5) {
|
|
42
|
+
this.a.c4(a.gd, (a.e6 + a.e0 + a.ev + a.eo));
|
|
43
|
+
this.a.df(a.ib, (a.e2 + a.e4 + a.eq + a.et));
|
|
44
44
|
}
|
|
45
45
|
if (a.a7) {
|
|
46
|
-
if (a.
|
|
47
|
-
this.a.
|
|
46
|
+
if (a.bn && !this.a.z) {
|
|
47
|
+
this.a.cb();
|
|
48
48
|
}
|
|
49
|
-
if (a.bc(CellModel.
|
|
50
|
-
this.a.
|
|
49
|
+
if (a.bc(CellModel.en)) {
|
|
50
|
+
this.a.cz(a.nm.color);
|
|
51
51
|
}
|
|
52
|
-
if (a.bc(CellModel.
|
|
53
|
-
this.a.
|
|
52
|
+
if (a.bc(CellModel.ez)) {
|
|
53
|
+
this.a.c8(a.ct);
|
|
54
54
|
}
|
|
55
55
|
if (a.bb("IsCollapsable")) {
|
|
56
56
|
this.a.aa = a.a6;
|
|
57
|
-
this.a.
|
|
57
|
+
this.a.bj = a.gj;
|
|
58
58
|
this.a.ab = a.be;
|
|
59
|
-
this.a.
|
|
59
|
+
this.a.df(a.ib, (a.e2 + a.e4 + a.eq + a.et));
|
|
60
60
|
}
|
|
61
61
|
if (a.bb("Indent")) {
|
|
62
|
-
this.a.
|
|
63
|
-
this.a.
|
|
62
|
+
this.a.bj = a.gj;
|
|
63
|
+
this.a.df(a.ib, (a.e2 + a.e4 + a.eq + a.et));
|
|
64
64
|
}
|
|
65
65
|
if (a.bb("IsExpanded")) {
|
|
66
66
|
this.a.ab = a.be;
|
|
67
67
|
}
|
|
68
68
|
if (a.bb("IsCollapsable") || a.bb("ExpansionIndicatorIconColor")) {
|
|
69
|
-
this.a.
|
|
69
|
+
this.a.dv = a.nv;
|
|
70
70
|
}
|
|
71
|
-
if (a.bc(CellModel.
|
|
72
|
-
this.a.
|
|
71
|
+
if (a.bc(CellModel.h3)) {
|
|
72
|
+
this.a.b6 = a.ls;
|
|
73
73
|
}
|
|
74
|
-
if (a.bc(CellModel.
|
|
75
|
-
this.a.
|
|
74
|
+
if (a.bc(CellModel.h1)) {
|
|
75
|
+
this.a.dy = a.n8;
|
|
76
76
|
}
|
|
77
|
-
if (a.bc(CellModel.
|
|
77
|
+
if (a.bc(CellModel.h2)) {
|
|
78
78
|
this.a.n = a.ak;
|
|
79
79
|
}
|
|
80
|
-
if (a.bc(CellModel.
|
|
81
|
-
this.a.
|
|
82
|
-
}
|
|
83
|
-
if (a.bc(CellModel.hp)) {
|
|
84
|
-
this.a.bw = a.le;
|
|
80
|
+
if (a.bc(CellModel.hu)) {
|
|
81
|
+
this.a.b1 = a.lk;
|
|
85
82
|
}
|
|
86
83
|
if (a.bc(CellModel.hs)) {
|
|
87
|
-
this.a.
|
|
84
|
+
this.a.by = a.lh;
|
|
88
85
|
}
|
|
89
|
-
if (a.bc(CellModel.
|
|
90
|
-
this.a.
|
|
86
|
+
if (a.bc(CellModel.hv)) {
|
|
87
|
+
this.a.dx = a.n7;
|
|
91
88
|
}
|
|
92
|
-
if (a.bc(CellModel.
|
|
93
|
-
this.a.
|
|
89
|
+
if (a.bc(CellModel.ht)) {
|
|
90
|
+
this.a.dw = a.n6;
|
|
91
|
+
}
|
|
92
|
+
if (a.bc(CellModel.h0)) {
|
|
93
|
+
this.a.aj = a.c7;
|
|
94
94
|
}
|
|
95
|
-
if (a.bc(CellModel.
|
|
96
|
-
this.a.
|
|
95
|
+
if (a.bc(CellModel.hx) || a.bc(CellModel.hy) || a.bc(CellModel.hz) || a.bc(CellModel.hz)) {
|
|
96
|
+
this.a.d0 = new Rect(0, a.c4, a.c5, a.c6, a.c3);
|
|
97
97
|
}
|
|
98
98
|
}
|
|
99
|
-
if (a.
|
|
100
|
-
this.a.
|
|
99
|
+
if (a.bv && a.bn) {
|
|
100
|
+
this.a.dn(a);
|
|
101
101
|
}
|
|
102
102
|
if (a.bb("DoClone")) {
|
|
103
103
|
if (a.a1) {
|
|
104
104
|
a.a1 = false;
|
|
105
|
-
this.a.
|
|
105
|
+
this.a.ca();
|
|
106
106
|
}
|
|
107
107
|
}
|
|
108
108
|
}
|
|
@@ -250,6 +250,15 @@ let CheckboxListBridge = /*@__PURE__*/ (() => {
|
|
|
250
250
|
case 69:
|
|
251
251
|
d.checkboxUncheckedBorderColor = c;
|
|
252
252
|
break;
|
|
253
|
+
case 128:
|
|
254
|
+
d.scrollbarBackground = c;
|
|
255
|
+
break;
|
|
256
|
+
case 129:
|
|
257
|
+
d.scrollbarHoverBackground = c;
|
|
258
|
+
break;
|
|
259
|
+
case 130:
|
|
260
|
+
d.scrollbarActiveBackground = c;
|
|
261
|
+
break;
|
|
253
262
|
}
|
|
254
263
|
}
|
|
255
264
|
getValue(a, b) {
|
|
@@ -281,6 +290,9 @@ let CheckboxListBridge = /*@__PURE__*/ (() => {
|
|
|
281
290
|
case 70: return c.checkboxCheckedBorderColor;
|
|
282
291
|
case 67: return c.checkboxUncheckedBackgroundColor;
|
|
283
292
|
case 69: return c.checkboxUncheckedBorderColor;
|
|
293
|
+
case 128: return c.scrollbarBackground;
|
|
294
|
+
case 129: return c.scrollbarHoverBackground;
|
|
295
|
+
case 130: return c.scrollbarActiveBackground;
|
|
284
296
|
}
|
|
285
297
|
return null;
|
|
286
298
|
}
|