igniteui-webcomponents-data-grids 7.1.0-beta.2 → 7.1.0-beta.4
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
|
@@ -43,26 +43,26 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
43
43
|
let b = this.w;
|
|
44
44
|
this.w = a;
|
|
45
45
|
if (b != this.w) {
|
|
46
|
-
this.
|
|
46
|
+
this.cn("IsRemoved", b, this.w);
|
|
47
47
|
}
|
|
48
48
|
}
|
|
49
|
-
get
|
|
49
|
+
get bg() {
|
|
50
50
|
return this.a2;
|
|
51
51
|
}
|
|
52
|
-
get
|
|
52
|
+
get be() {
|
|
53
53
|
return this.a0;
|
|
54
54
|
}
|
|
55
|
-
get
|
|
55
|
+
get bf() {
|
|
56
56
|
return this.a1;
|
|
57
57
|
}
|
|
58
|
-
get
|
|
58
|
+
get bj() {
|
|
59
59
|
return this.a5;
|
|
60
60
|
}
|
|
61
|
-
set
|
|
61
|
+
set bj(a) {
|
|
62
62
|
let b = this.a5;
|
|
63
63
|
this.a5 = a;
|
|
64
64
|
if (b != this.a5) {
|
|
65
|
-
this.
|
|
65
|
+
this.cn("Indent", b, this.a5);
|
|
66
66
|
}
|
|
67
67
|
}
|
|
68
68
|
get aa() {
|
|
@@ -72,17 +72,17 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
72
72
|
let b = this.t;
|
|
73
73
|
this.t = a;
|
|
74
74
|
if (b != this.t) {
|
|
75
|
-
this.
|
|
75
|
+
this.cn("IsCollapsable", b, this.t);
|
|
76
76
|
}
|
|
77
77
|
}
|
|
78
|
-
get
|
|
79
|
-
return this.
|
|
78
|
+
get dv() {
|
|
79
|
+
return this.dr;
|
|
80
80
|
}
|
|
81
|
-
set
|
|
82
|
-
let b = this.
|
|
83
|
-
this.
|
|
84
|
-
if (b != this.
|
|
85
|
-
this.
|
|
81
|
+
set dv(a) {
|
|
82
|
+
let b = this.dr;
|
|
83
|
+
this.dr = a;
|
|
84
|
+
if (b != this.dr) {
|
|
85
|
+
this.cn("ExpansionIndicatorIconColor", b, this.dr);
|
|
86
86
|
}
|
|
87
87
|
}
|
|
88
88
|
get ab() {
|
|
@@ -92,7 +92,7 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
92
92
|
let b = this.u;
|
|
93
93
|
this.u = a;
|
|
94
94
|
if (b != this.u) {
|
|
95
|
-
this.
|
|
95
|
+
this.cn("IsExpanded", b, this.u);
|
|
96
96
|
}
|
|
97
97
|
}
|
|
98
98
|
get ad() {
|
|
@@ -102,27 +102,27 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
102
102
|
let b = this.v;
|
|
103
103
|
this.v = a;
|
|
104
104
|
if (b != this.v) {
|
|
105
|
-
this.
|
|
105
|
+
this.cn("IsHitTestVisible", b, this.v);
|
|
106
106
|
}
|
|
107
107
|
}
|
|
108
|
-
get
|
|
109
|
-
return this.
|
|
108
|
+
get b6() {
|
|
109
|
+
return this.br;
|
|
110
110
|
}
|
|
111
|
-
set
|
|
112
|
-
let b = this.
|
|
113
|
-
this.
|
|
114
|
-
if (b != this.
|
|
115
|
-
this.
|
|
111
|
+
set b6(a) {
|
|
112
|
+
let b = this.br;
|
|
113
|
+
this.br = a;
|
|
114
|
+
if (b != this.br) {
|
|
115
|
+
this.cn("SuffixText", b, this.br);
|
|
116
116
|
}
|
|
117
117
|
}
|
|
118
|
-
get
|
|
119
|
-
return this.
|
|
118
|
+
get dy() {
|
|
119
|
+
return this.du;
|
|
120
120
|
}
|
|
121
|
-
set
|
|
122
|
-
let b = this.
|
|
123
|
-
this.
|
|
124
|
-
if (b != this.
|
|
125
|
-
this.
|
|
121
|
+
set dy(a) {
|
|
122
|
+
let b = this.du;
|
|
123
|
+
this.du = a;
|
|
124
|
+
if (b != this.du) {
|
|
125
|
+
this.cn("SuffixTextColor", b, this.du);
|
|
126
126
|
}
|
|
127
127
|
}
|
|
128
128
|
get n() {
|
|
@@ -132,11 +132,11 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
132
132
|
let b = this.m;
|
|
133
133
|
this.m = a;
|
|
134
134
|
if (b != this.m) {
|
|
135
|
-
this.
|
|
135
|
+
this.cn("SuffixTextFont", b, this.m);
|
|
136
136
|
}
|
|
137
137
|
}
|
|
138
|
-
|
|
139
|
-
if (this.
|
|
138
|
+
co() {
|
|
139
|
+
if (this.br != null) {
|
|
140
140
|
if (this.aq == null) {
|
|
141
141
|
this.aq = this.ak.createElement("span");
|
|
142
142
|
this.aq.setRawStyleProperty("display", "inline-block");
|
|
@@ -144,7 +144,7 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
144
144
|
this.aq.setRawStyleProperty("white-space", "nowrap");
|
|
145
145
|
this.aq.setRawStyleProperty("margin-left", this.aj + "px");
|
|
146
146
|
}
|
|
147
|
-
this.
|
|
147
|
+
this.cq();
|
|
148
148
|
if (!this.x) {
|
|
149
149
|
this.ar.setRawStyleProperty("display", "grid");
|
|
150
150
|
this.ar.setRawStyleProperty("grid-template-columns", "1fr min-content");
|
|
@@ -161,58 +161,58 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
161
161
|
}
|
|
162
162
|
}
|
|
163
163
|
}
|
|
164
|
-
get
|
|
165
|
-
return this.
|
|
164
|
+
get b1() {
|
|
165
|
+
return this.bq;
|
|
166
166
|
}
|
|
167
|
-
set
|
|
168
|
-
let b = this.
|
|
169
|
-
this.
|
|
170
|
-
if (b != this.
|
|
171
|
-
this.
|
|
167
|
+
set b1(a) {
|
|
168
|
+
let b = this.bq;
|
|
169
|
+
this.bq = a;
|
|
170
|
+
if (b != this.bq) {
|
|
171
|
+
this.cn("SuffixIconName", b, this.bq);
|
|
172
172
|
}
|
|
173
173
|
}
|
|
174
|
-
get
|
|
175
|
-
return this.
|
|
174
|
+
get by() {
|
|
175
|
+
return this.bp;
|
|
176
176
|
}
|
|
177
|
-
set
|
|
178
|
-
let b = this.
|
|
179
|
-
this.
|
|
180
|
-
if (b != this.
|
|
181
|
-
this.
|
|
177
|
+
set by(a) {
|
|
178
|
+
let b = this.bp;
|
|
179
|
+
this.bp = a;
|
|
180
|
+
if (b != this.bp) {
|
|
181
|
+
this.cn("SuffixIconCollectionName", b, this.bp);
|
|
182
182
|
}
|
|
183
183
|
}
|
|
184
|
-
get
|
|
185
|
-
return this.
|
|
184
|
+
get dx() {
|
|
185
|
+
return this.dt;
|
|
186
186
|
}
|
|
187
|
-
set
|
|
188
|
-
let b = this.
|
|
189
|
-
this.
|
|
190
|
-
if (b != this.
|
|
191
|
-
this.
|
|
187
|
+
set dx(a) {
|
|
188
|
+
let b = this.dt;
|
|
189
|
+
this.dt = a;
|
|
190
|
+
if (b != this.dt) {
|
|
191
|
+
this.cn("SuffixIconStroke", b, this.dt);
|
|
192
192
|
}
|
|
193
193
|
}
|
|
194
|
-
get
|
|
195
|
-
return this.
|
|
194
|
+
get dw() {
|
|
195
|
+
return this.ds;
|
|
196
196
|
}
|
|
197
|
-
set
|
|
198
|
-
let b = this.
|
|
199
|
-
this.
|
|
200
|
-
if (b != this.
|
|
201
|
-
this.
|
|
197
|
+
set dw(a) {
|
|
198
|
+
let b = this.ds;
|
|
199
|
+
this.ds = a;
|
|
200
|
+
if (b != this.ds) {
|
|
201
|
+
this.cn("SuffixIconFill", b, this.ds);
|
|
202
202
|
}
|
|
203
203
|
}
|
|
204
|
-
get
|
|
205
|
-
return this.
|
|
204
|
+
get d0() {
|
|
205
|
+
return this.dz;
|
|
206
206
|
}
|
|
207
|
-
set
|
|
208
|
-
let b = this.
|
|
209
|
-
this.
|
|
210
|
-
if (Rect.l_op_Inequality(b, this.
|
|
211
|
-
this.
|
|
207
|
+
set d0(a) {
|
|
208
|
+
let b = this.dz;
|
|
209
|
+
this.dz = a;
|
|
210
|
+
if (Rect.l_op_Inequality(b, this.dz)) {
|
|
211
|
+
this.cn("SuffixIconViewBox", b, this.dz);
|
|
212
212
|
}
|
|
213
213
|
}
|
|
214
|
-
|
|
215
|
-
if (this.
|
|
214
|
+
cp() {
|
|
215
|
+
if (this.bq != null && this.bp != null) {
|
|
216
216
|
if (this.l == null) {
|
|
217
217
|
this.ap = this.ak.createElement("div");
|
|
218
218
|
this.al = this.ak.getSubRenderer(this.ap);
|
|
@@ -222,7 +222,7 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
222
222
|
this.ap.setRawStyleProperty("overflow", "hidden");
|
|
223
223
|
this.ap.setRawStyleProperty("margin-left", this.aj + "px");
|
|
224
224
|
}
|
|
225
|
-
this.
|
|
225
|
+
this.cq();
|
|
226
226
|
if (!this.x) {
|
|
227
227
|
this.ar.setRawStyleProperty("display", "grid");
|
|
228
228
|
this.ar.setRawStyleProperty("grid-template-columns", "1fr min-content");
|
|
@@ -239,35 +239,35 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
239
239
|
}
|
|
240
240
|
}
|
|
241
241
|
}
|
|
242
|
-
|
|
242
|
+
cq() {
|
|
243
243
|
if (this.aq != null) {
|
|
244
|
-
this.
|
|
245
|
-
this.
|
|
246
|
-
this.
|
|
247
|
-
this.
|
|
244
|
+
this.db(this.aq, this.br);
|
|
245
|
+
this.dc(this.aq, this.dy);
|
|
246
|
+
this.c3(this.aq, this.n);
|
|
247
|
+
this.de(this.aq, this.h);
|
|
248
248
|
}
|
|
249
249
|
if (this.l != null) {
|
|
250
|
-
this.l.ea = this.
|
|
251
|
-
this.l.fill = this.
|
|
252
|
-
if (!this.
|
|
253
|
-
this.l.a6 = this.
|
|
254
|
-
this.l.a7 = this.
|
|
255
|
-
this.l.a8 = this.
|
|
256
|
-
this.l.a5 = this.
|
|
250
|
+
this.l.ea = this.dx;
|
|
251
|
+
this.l.fill = this.dw;
|
|
252
|
+
if (!this.d0.isEmpty && !isNaN_(this.d0.left) && !isNaN_(this.d0.top) && !isNaN_(this.d0.width) && !isNaN_(this.d0.height)) {
|
|
253
|
+
this.l.a6 = this.d0.left;
|
|
254
|
+
this.l.a7 = this.d0.top;
|
|
255
|
+
this.l.a8 = this.d0.width;
|
|
256
|
+
this.l.a5 = this.d0.height;
|
|
257
257
|
}
|
|
258
|
-
this.
|
|
259
|
-
this.
|
|
260
|
-
this.
|
|
261
|
-
this.
|
|
258
|
+
this.da(this.ap, this.dx);
|
|
259
|
+
this.c2(this.ap, this.dw);
|
|
260
|
+
this.de(this.ap, this.h);
|
|
261
|
+
this.c6(this.l, this.by, this.b1);
|
|
262
262
|
}
|
|
263
263
|
}
|
|
264
|
-
|
|
264
|
+
c6(a, b, c) {
|
|
265
265
|
a.svg = null;
|
|
266
266
|
a.svgPath = null;
|
|
267
267
|
a.b = null;
|
|
268
268
|
a.b2 = null;
|
|
269
269
|
a.bj = null;
|
|
270
|
-
let d = SvgIconRegistry.instance.getSvgPathString(this.
|
|
270
|
+
let d = SvgIconRegistry.instance.getSvgPathString(this.bp, this.bq);
|
|
271
271
|
if (d != null) {
|
|
272
272
|
if (stringStartsWith(d, "<svg")) {
|
|
273
273
|
a.svg = d;
|
|
@@ -277,17 +277,17 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
277
277
|
}
|
|
278
278
|
return;
|
|
279
279
|
}
|
|
280
|
-
let e = SvgIconRegistry.instance.getSvgPathsString(this.
|
|
280
|
+
let e = SvgIconRegistry.instance.getSvgPathsString(this.bp, this.bq);
|
|
281
281
|
if (e != null) {
|
|
282
282
|
a.b = e;
|
|
283
283
|
return;
|
|
284
284
|
}
|
|
285
|
-
let f = SvgIconRegistry.instance.getDataURLString(this.
|
|
285
|
+
let f = SvgIconRegistry.instance.getDataURLString(this.bp, this.bq);
|
|
286
286
|
if (f != null) {
|
|
287
287
|
a.b2 = f;
|
|
288
288
|
return;
|
|
289
289
|
}
|
|
290
|
-
let g = SvgIconRegistry.instance.getIconSource(this.
|
|
290
|
+
let g = SvgIconRegistry.instance.getIconSource(this.bp, this.bq);
|
|
291
291
|
if (g != null) {
|
|
292
292
|
a.bj = g;
|
|
293
293
|
}
|
|
@@ -299,7 +299,7 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
299
299
|
let b = this.ai;
|
|
300
300
|
this.ai = a;
|
|
301
301
|
if (b != this.ai) {
|
|
302
|
-
this.
|
|
302
|
+
this.cn("SuffixMargin", b, this.ai);
|
|
303
303
|
}
|
|
304
304
|
}
|
|
305
305
|
constructor(a) {
|
|
@@ -318,19 +318,19 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
318
318
|
this.a0 = 0;
|
|
319
319
|
this.a5 = 0;
|
|
320
320
|
this.t = false;
|
|
321
|
-
this.
|
|
321
|
+
this.dr = null;
|
|
322
322
|
this.u = false;
|
|
323
323
|
this.v = true;
|
|
324
324
|
this.aq = null;
|
|
325
|
-
this.
|
|
326
|
-
this.
|
|
325
|
+
this.br = null;
|
|
326
|
+
this.du = null;
|
|
327
327
|
this.m = null;
|
|
328
328
|
this.x = false;
|
|
329
|
-
this.
|
|
330
|
-
this.
|
|
331
|
-
this.
|
|
332
|
-
this.
|
|
333
|
-
this.
|
|
329
|
+
this.bq = null;
|
|
330
|
+
this.bp = null;
|
|
331
|
+
this.dt = null;
|
|
332
|
+
this.ds = null;
|
|
333
|
+
this.dz = Rect.empty;
|
|
334
334
|
this.al = null;
|
|
335
335
|
this.ap = null;
|
|
336
336
|
this.l = null;
|
|
@@ -344,10 +344,11 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
344
344
|
this.aw = 0;
|
|
345
345
|
this.av = 0;
|
|
346
346
|
this.at = 0;
|
|
347
|
-
this.
|
|
347
|
+
this.dq = null;
|
|
348
348
|
this.a3 = 0;
|
|
349
349
|
this.bc = 0;
|
|
350
350
|
this.a4 = 0;
|
|
351
|
+
this.bd = 0;
|
|
351
352
|
this.k = null;
|
|
352
353
|
this.g = 0;
|
|
353
354
|
this.i = 0;
|
|
@@ -355,8 +356,8 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
355
356
|
this.ag = 0;
|
|
356
357
|
this.h = 1;
|
|
357
358
|
this.y = false;
|
|
358
|
-
this.
|
|
359
|
-
this.
|
|
359
|
+
this.bn = 0;
|
|
360
|
+
this.bo = 0;
|
|
360
361
|
this.as = 0;
|
|
361
362
|
this.bb = -1;
|
|
362
363
|
this.ax = 0;
|
|
@@ -372,25 +373,25 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
372
373
|
let c = (window.PointerEvent !== undefined);
|
|
373
374
|
let d = (window.TouchEvent);
|
|
374
375
|
if ((b || c)) {
|
|
375
|
-
this.an.listen("pointerdown", runOn(this, this.
|
|
376
|
-
this.an.listen("pointerup", runOn(this, this.
|
|
377
|
-
this.an.listen("pointermove", runOn(this, this.
|
|
378
|
-
this.an.listen("pointerleave", runOn(this, this.
|
|
379
|
-
this.an.listen("pointerenter", runOn(this, this.
|
|
376
|
+
this.an.listen("pointerdown", runOn(this, this.cs));
|
|
377
|
+
this.an.listen("pointerup", runOn(this, this.cw));
|
|
378
|
+
this.an.listen("pointermove", runOn(this, this.cv));
|
|
379
|
+
this.an.listen("pointerleave", runOn(this, this.cu));
|
|
380
|
+
this.an.listen("pointerenter", runOn(this, this.ct));
|
|
380
381
|
}
|
|
381
382
|
else {
|
|
382
|
-
this.an.listen("mousedown", runOn(this, this.
|
|
383
|
-
this.an.listen("mouseup", runOn(this, this.
|
|
384
|
-
this.an.listen("mousemove", runOn(this, this.
|
|
385
|
-
this.an.listen("mouseleave", runOn(this, this.
|
|
386
|
-
this.an.listen("touchstart", runOn(this, this.
|
|
387
|
-
this.an.listen("touchend", runOn(this, this.
|
|
388
|
-
this.an.listen("touchmove", runOn(this, this.
|
|
383
|
+
this.an.listen("mousedown", runOn(this, this.ce));
|
|
384
|
+
this.an.listen("mouseup", runOn(this, this.ci));
|
|
385
|
+
this.an.listen("mousemove", runOn(this, this.ch));
|
|
386
|
+
this.an.listen("mouseleave", runOn(this, this.cg));
|
|
387
|
+
this.an.listen("touchstart", runOn(this, this.dh));
|
|
388
|
+
this.an.listen("touchend", runOn(this, this.dj));
|
|
389
|
+
this.an.listen("touchmove", runOn(this, this.di));
|
|
389
390
|
}
|
|
390
391
|
}
|
|
391
|
-
|
|
392
|
+
cd() {
|
|
392
393
|
this.a1 = 10;
|
|
393
|
-
this.a0 = this.
|
|
394
|
+
this.a0 = this.bj * 24;
|
|
394
395
|
this.a2 = 24;
|
|
395
396
|
if (this.ao == null) {
|
|
396
397
|
this.ao = this.ak.createElement("div");
|
|
@@ -408,13 +409,13 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
408
409
|
this.j = new GridExpansionIndicator();
|
|
409
410
|
this.j.ab(a);
|
|
410
411
|
this.j.y(24, 24);
|
|
411
|
-
this.j.ae = this.
|
|
412
|
+
this.j.ae = this.dr;
|
|
412
413
|
}
|
|
413
414
|
if (this.ao.parent() == null) {
|
|
414
415
|
this.an.append(this.ao);
|
|
415
416
|
}
|
|
416
417
|
}
|
|
417
|
-
|
|
418
|
+
cx() {
|
|
418
419
|
this.a2 = 0;
|
|
419
420
|
this.a1 = 0;
|
|
420
421
|
if (this.ao != null) {
|
|
@@ -435,7 +436,7 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
435
436
|
get ae() {
|
|
436
437
|
return this.get_ae();
|
|
437
438
|
}
|
|
438
|
-
|
|
439
|
+
c9(a, b, c, d) {
|
|
439
440
|
this.a7 = a;
|
|
440
441
|
this.a9 = b;
|
|
441
442
|
this.a8 = c;
|
|
@@ -445,12 +446,12 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
445
446
|
this.an.setRawStyleProperty("padding-right", c.toString() + "px");
|
|
446
447
|
this.an.setRawStyleProperty("padding-bottom", d.toString() + "px");
|
|
447
448
|
}
|
|
448
|
-
|
|
449
|
+
c0(a, b, c, d, e) {
|
|
449
450
|
this.au = b;
|
|
450
451
|
this.aw = c;
|
|
451
452
|
this.av = d;
|
|
452
453
|
this.at = e;
|
|
453
|
-
this.
|
|
454
|
+
this.dq = a;
|
|
454
455
|
if (a == null) {
|
|
455
456
|
this.an.setRawStyleProperty("border", "");
|
|
456
457
|
}
|
|
@@ -469,16 +470,19 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
469
470
|
get ac() {
|
|
470
471
|
return this.get_ac();
|
|
471
472
|
}
|
|
472
|
-
get
|
|
473
|
+
get bh() {
|
|
473
474
|
return this.a3;
|
|
474
475
|
}
|
|
475
|
-
get
|
|
476
|
+
get bk() {
|
|
476
477
|
return this.bc;
|
|
477
478
|
}
|
|
478
|
-
get
|
|
479
|
+
get bi() {
|
|
479
480
|
return this.a4;
|
|
480
481
|
}
|
|
481
|
-
|
|
482
|
+
get bl() {
|
|
483
|
+
return this.bd;
|
|
484
|
+
}
|
|
485
|
+
c4(a, b) {
|
|
482
486
|
if (this.a3 != a || this.a4 != b) {
|
|
483
487
|
let c = this.a3;
|
|
484
488
|
this.a3 = a;
|
|
@@ -486,22 +490,26 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
486
490
|
let d = Math.max(0, this.a3 - this.a4);
|
|
487
491
|
this.an.setRawStyleProperty("height", a.toString() + "px");
|
|
488
492
|
if (this.ao != null) {
|
|
489
|
-
this.ao.setRawYPosition(intDivide(this.a3, 2) - intDivide(this.a2, 2));
|
|
493
|
+
this.ao.setRawYPosition(intDivide(this.a3, 2) - intDivide(this.a2, 2) - this.aw);
|
|
490
494
|
}
|
|
491
|
-
this.
|
|
495
|
+
this.dg(this.bc, this.a3, this.bc, c);
|
|
492
496
|
}
|
|
493
497
|
}
|
|
494
|
-
|
|
495
|
-
if (this.bc != a) {
|
|
498
|
+
df(a, b) {
|
|
499
|
+
if (this.bc != a || this.bd != b) {
|
|
496
500
|
let c = this.bc;
|
|
497
501
|
this.bc = a;
|
|
502
|
+
this.bd = b;
|
|
498
503
|
this.an.setRawStyleProperty("width", a.toString() + "px");
|
|
499
|
-
|
|
504
|
+
if (this.ao != null) {
|
|
505
|
+
this.ao.setRawXPosition(this.a7 + this.a0);
|
|
506
|
+
}
|
|
507
|
+
this.dg(this.bc, this.a3, c, this.a3);
|
|
500
508
|
}
|
|
501
509
|
}
|
|
502
|
-
|
|
510
|
+
dg(a, b, c, d) {
|
|
503
511
|
}
|
|
504
|
-
|
|
512
|
+
cb() {
|
|
505
513
|
if (!this.ae) {
|
|
506
514
|
return;
|
|
507
515
|
}
|
|
@@ -513,40 +521,40 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
513
521
|
this.k.i = 0;
|
|
514
522
|
this.an.append(this.k.g);
|
|
515
523
|
}
|
|
516
|
-
|
|
524
|
+
cz(a) {
|
|
517
525
|
this.an.setRawStyleProperty("background-color", a.colorString);
|
|
518
526
|
}
|
|
519
|
-
|
|
527
|
+
c8(a) {
|
|
520
528
|
this.an.setRawStyleProperty("opacity", a.toString());
|
|
521
529
|
}
|
|
522
|
-
|
|
530
|
+
c3(a, b) {
|
|
523
531
|
if (b == null) {
|
|
524
532
|
b = FontUtil.getDefaultFont(this.am);
|
|
525
533
|
}
|
|
526
534
|
a.setRawStyleProperty("font", b.fontString);
|
|
527
535
|
}
|
|
528
|
-
|
|
536
|
+
dc(a, b) {
|
|
529
537
|
let c = Color.u(0, 0, 0, 0);
|
|
530
538
|
if (b != null) {
|
|
531
539
|
c = b.color;
|
|
532
540
|
}
|
|
533
541
|
a.setRawStyleProperty("color", c.colorString);
|
|
534
542
|
}
|
|
535
|
-
|
|
543
|
+
da(a, b) {
|
|
536
544
|
let c = Color.u(0, 0, 0, 0);
|
|
537
545
|
if (b != null) {
|
|
538
546
|
c = b.color;
|
|
539
547
|
}
|
|
540
548
|
a.setRawStyleProperty("stroke", c.colorString);
|
|
541
549
|
}
|
|
542
|
-
|
|
550
|
+
c2(a, b) {
|
|
543
551
|
let c = Color.u(0, 0, 0, 0);
|
|
544
552
|
if (b != null) {
|
|
545
553
|
c = b.color;
|
|
546
554
|
}
|
|
547
555
|
a.setRawStyleProperty("fill", c.colorString);
|
|
548
556
|
}
|
|
549
|
-
|
|
557
|
+
db(a, b) {
|
|
550
558
|
if (a != null) {
|
|
551
559
|
a.setRawText(b);
|
|
552
560
|
}
|
|
@@ -555,19 +563,19 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
555
563
|
if (TestRandomness.instance.testRandomnessSource != null) {
|
|
556
564
|
return TestRandomness.instance.testRandomnessSource;
|
|
557
565
|
}
|
|
558
|
-
return new DefaultRandomnessSource(1, GridCellBase.
|
|
566
|
+
return new DefaultRandomnessSource(1, GridCellBase.bm);
|
|
559
567
|
}
|
|
560
568
|
p() {
|
|
561
569
|
let a = this.q();
|
|
562
570
|
return a.getGenerator("PlaceholderWidths");
|
|
563
571
|
}
|
|
564
|
-
|
|
572
|
+
dp(a) {
|
|
565
573
|
if (!this.ae) {
|
|
566
574
|
return;
|
|
567
575
|
}
|
|
568
576
|
this.k.i = (a * 0.20000000298023224);
|
|
569
577
|
}
|
|
570
|
-
|
|
578
|
+
dm(a, b, c, d) {
|
|
571
579
|
if (this.k != null) {
|
|
572
580
|
let e = this.ah;
|
|
573
581
|
let f = this.ag;
|
|
@@ -587,15 +595,15 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
587
595
|
this.k.g.setRawYPosition(b);
|
|
588
596
|
}
|
|
589
597
|
}
|
|
590
|
-
|
|
598
|
+
cl(a, b, c) {
|
|
591
599
|
}
|
|
592
|
-
|
|
600
|
+
cr(a) {
|
|
593
601
|
this.h = a;
|
|
594
602
|
if (this.aq != null) {
|
|
595
|
-
this.
|
|
603
|
+
this.de(this.aq, a);
|
|
596
604
|
}
|
|
597
605
|
}
|
|
598
|
-
|
|
606
|
+
dn(a) {
|
|
599
607
|
if (!this.ae) {
|
|
600
608
|
return;
|
|
601
609
|
}
|
|
@@ -607,8 +615,8 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
607
615
|
this.ag = b;
|
|
608
616
|
this.k.d = (b);
|
|
609
617
|
}
|
|
610
|
-
let c = a.
|
|
611
|
-
let d = a.
|
|
618
|
+
let c = a.ib * 0.2;
|
|
619
|
+
let d = a.gd * 0.6;
|
|
612
620
|
if (this.ah >= c && this.ah <= d && !this.y) {
|
|
613
621
|
return;
|
|
614
622
|
}
|
|
@@ -621,9 +629,9 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
621
629
|
this.ah = e;
|
|
622
630
|
this.k.e = e;
|
|
623
631
|
}
|
|
624
|
-
this.
|
|
632
|
+
this.dm(this.a7 + this.a0 + this.a2, this.a9, this.bc - (this.a7 + this.a8), this.a3 - (this.a9 + this.a6));
|
|
625
633
|
}
|
|
626
|
-
|
|
634
|
+
dk(a, b) {
|
|
627
635
|
if (!this.ae) {
|
|
628
636
|
return;
|
|
629
637
|
}
|
|
@@ -631,7 +639,7 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
631
639
|
this.i = b;
|
|
632
640
|
this.y = true;
|
|
633
641
|
}
|
|
634
|
-
|
|
642
|
+
dl(a) {
|
|
635
643
|
if (!this.ae) {
|
|
636
644
|
return;
|
|
637
645
|
}
|
|
@@ -639,16 +647,16 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
639
647
|
this.k.l = a.color;
|
|
640
648
|
}
|
|
641
649
|
}
|
|
642
|
-
|
|
650
|
+
cy(a) {
|
|
643
651
|
this.a = a;
|
|
644
652
|
}
|
|
645
|
-
|
|
653
|
+
c7(a) {
|
|
646
654
|
this.e = a;
|
|
647
655
|
}
|
|
648
|
-
|
|
656
|
+
c1(a) {
|
|
649
657
|
this.c = a;
|
|
650
658
|
}
|
|
651
|
-
|
|
659
|
+
c5(a, b) {
|
|
652
660
|
switch (b) {
|
|
653
661
|
case 0:
|
|
654
662
|
this.ar.setRawStyleProperty("text-align", "left");
|
|
@@ -664,7 +672,7 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
664
672
|
break;
|
|
665
673
|
}
|
|
666
674
|
}
|
|
667
|
-
|
|
675
|
+
de(a, b) {
|
|
668
676
|
switch (b) {
|
|
669
677
|
case 0:
|
|
670
678
|
a.setRawStyleProperty("vertical-align", "top");
|
|
@@ -687,67 +695,67 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
687
695
|
af(a) {
|
|
688
696
|
return a.isClickActionDesired;
|
|
689
697
|
}
|
|
690
|
-
|
|
698
|
+
ce(a) {
|
|
691
699
|
this.onContactStarted(a, false);
|
|
692
700
|
}
|
|
693
|
-
|
|
701
|
+
ci(a) {
|
|
694
702
|
this.onContactCompleted(a, false);
|
|
695
703
|
}
|
|
696
|
-
|
|
704
|
+
ch(a) {
|
|
697
705
|
this.onContactMoved(a, false);
|
|
698
706
|
}
|
|
699
|
-
|
|
700
|
-
this.
|
|
707
|
+
cg(a) {
|
|
708
|
+
this.ck(a, false);
|
|
701
709
|
}
|
|
702
|
-
|
|
703
|
-
this.
|
|
710
|
+
cf(a) {
|
|
711
|
+
this.cj(a, false);
|
|
704
712
|
}
|
|
705
|
-
|
|
713
|
+
cs(e_) {
|
|
706
714
|
let a = (e_.originalEvent.pointerType);
|
|
707
715
|
if (a == "touch") {
|
|
708
|
-
this.
|
|
716
|
+
this.dh(e_);
|
|
709
717
|
}
|
|
710
718
|
else {
|
|
711
|
-
this.
|
|
719
|
+
this.ce(e_);
|
|
712
720
|
}
|
|
713
721
|
}
|
|
714
|
-
|
|
722
|
+
cv(e_) {
|
|
715
723
|
let a = (e_.originalEvent.pointerType);
|
|
716
724
|
if (a == "touch") {
|
|
717
|
-
this.
|
|
725
|
+
this.di(e_);
|
|
718
726
|
}
|
|
719
727
|
else {
|
|
720
|
-
this.
|
|
728
|
+
this.ch(e_);
|
|
721
729
|
}
|
|
722
730
|
}
|
|
723
|
-
|
|
731
|
+
cw(e_) {
|
|
724
732
|
let a = (e_.originalEvent.pointerType);
|
|
725
733
|
if (a == "touch") {
|
|
726
|
-
this.
|
|
734
|
+
this.dj(e_);
|
|
727
735
|
}
|
|
728
736
|
else {
|
|
729
|
-
this.
|
|
737
|
+
this.ci(e_);
|
|
730
738
|
}
|
|
731
739
|
}
|
|
732
|
-
|
|
740
|
+
cu(e_) {
|
|
733
741
|
let a = (e_.originalEvent.pointerType);
|
|
734
742
|
if (a != "touch") {
|
|
735
|
-
this.
|
|
743
|
+
this.cg(e_);
|
|
736
744
|
}
|
|
737
745
|
}
|
|
738
|
-
|
|
746
|
+
ct(e_) {
|
|
739
747
|
let a = (e_.originalEvent.pointerType);
|
|
740
748
|
if (a != "touch") {
|
|
741
|
-
this.
|
|
749
|
+
this.cf(e_);
|
|
742
750
|
}
|
|
743
751
|
}
|
|
744
|
-
|
|
752
|
+
dh(a) {
|
|
745
753
|
this.onContactStarted(a, true);
|
|
746
754
|
}
|
|
747
|
-
|
|
755
|
+
di(a) {
|
|
748
756
|
this.onContactMoved(a, true);
|
|
749
757
|
}
|
|
750
|
-
|
|
758
|
+
dj(a) {
|
|
751
759
|
this.onContactCompleted(a, true);
|
|
752
760
|
}
|
|
753
761
|
onContactStarted(e_, a) {
|
|
@@ -762,13 +770,13 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
762
770
|
}
|
|
763
771
|
else {
|
|
764
772
|
if (this.a != null && this.af(this.a)) {
|
|
765
|
-
this.
|
|
766
|
-
this.
|
|
773
|
+
this.bn = e_.pageX;
|
|
774
|
+
this.bo = e_.pageY;
|
|
767
775
|
if (this.bb != e_.which) {
|
|
768
776
|
this.ax = 0;
|
|
769
777
|
}
|
|
770
778
|
this.bb = e_.which;
|
|
771
|
-
this.a.mouseDownCell(this.
|
|
779
|
+
this.a.mouseDownCell(this.bn, this.bo);
|
|
772
780
|
}
|
|
773
781
|
}
|
|
774
782
|
}
|
|
@@ -863,7 +871,7 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
863
871
|
}
|
|
864
872
|
this.s = false;
|
|
865
873
|
}
|
|
866
|
-
|
|
874
|
+
ck(a, b) {
|
|
867
875
|
if (this.a != null) {
|
|
868
876
|
if (this.af(this.a)) {
|
|
869
877
|
if (this.a.isMouseDown) {
|
|
@@ -880,7 +888,7 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
880
888
|
}
|
|
881
889
|
}
|
|
882
890
|
}
|
|
883
|
-
|
|
891
|
+
cj(a, b) {
|
|
884
892
|
if (this.a != null && this.a.isEnterActionDesired) {
|
|
885
893
|
let c = a.pageX;
|
|
886
894
|
let d = a.pageY;
|
|
@@ -889,11 +897,11 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
889
897
|
}
|
|
890
898
|
onDoubleClick(a) {
|
|
891
899
|
}
|
|
892
|
-
|
|
900
|
+
cn(a, b, c) {
|
|
893
901
|
switch (a) {
|
|
894
902
|
case "Indent":
|
|
895
|
-
this.a0 = this.
|
|
896
|
-
this.a1 = this.
|
|
903
|
+
this.a0 = this.bj * 24;
|
|
904
|
+
this.a1 = this.bj > 0 ? 10 : 0;
|
|
897
905
|
if (this.ao != null) {
|
|
898
906
|
this.ao.setRawXPosition(this.a7 + this.a0);
|
|
899
907
|
this.ao.setRawYPosition(intDivide(this.a3, 2) - intDivide(this.az, 2));
|
|
@@ -901,10 +909,10 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
901
909
|
break;
|
|
902
910
|
case "IsCollapsable":
|
|
903
911
|
if (this.aa) {
|
|
904
|
-
this.
|
|
912
|
+
this.cd();
|
|
905
913
|
}
|
|
906
914
|
else {
|
|
907
|
-
this.
|
|
915
|
+
this.cx();
|
|
908
916
|
}
|
|
909
917
|
break;
|
|
910
918
|
case "IsExpanded":
|
|
@@ -914,25 +922,25 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
914
922
|
break;
|
|
915
923
|
case "ExpansionIndicatorIconColor":
|
|
916
924
|
if (this.j != null) {
|
|
917
|
-
this.j.ae = this.
|
|
925
|
+
this.j.ae = this.dv;
|
|
918
926
|
}
|
|
919
927
|
break;
|
|
920
928
|
case "IsHitTestVisible":
|
|
921
929
|
this.ar.setRawStyleProperty("pointer-events", this.ad ? "auto" : "none");
|
|
922
930
|
break;
|
|
923
931
|
case "SuffixText":
|
|
924
|
-
this.
|
|
932
|
+
this.co();
|
|
925
933
|
break;
|
|
926
934
|
case "SuffixIconName":
|
|
927
935
|
case "SuffixIconCollectionName":
|
|
928
|
-
this.
|
|
936
|
+
this.cp();
|
|
929
937
|
break;
|
|
930
938
|
case "SuffixTextColor":
|
|
931
939
|
case "SuffixTextFont":
|
|
932
940
|
case "SuffixIconStroke":
|
|
933
941
|
case "SuffixIconFill":
|
|
934
942
|
case "SuffixIconViewBox":
|
|
935
|
-
this.
|
|
943
|
+
this.cq();
|
|
936
944
|
break;
|
|
937
945
|
case "SuffixMargin":
|
|
938
946
|
if (this.ap != null) {
|
|
@@ -944,12 +952,12 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
944
952
|
break;
|
|
945
953
|
}
|
|
946
954
|
}
|
|
947
|
-
|
|
955
|
+
cm() {
|
|
948
956
|
}
|
|
949
|
-
|
|
957
|
+
cc() {
|
|
950
958
|
this.an.focus(true);
|
|
951
959
|
}
|
|
952
|
-
|
|
960
|
+
ca() {
|
|
953
961
|
if (this.a != null) {
|
|
954
962
|
let a = this.an.clone();
|
|
955
963
|
this.a.passCellClone(a);
|
|
@@ -957,12 +965,12 @@ let GridCellBase = /*@__PURE__*/ (() => {
|
|
|
957
965
|
}
|
|
958
966
|
detach() {
|
|
959
967
|
}
|
|
960
|
-
|
|
968
|
+
dd(a) {
|
|
961
969
|
}
|
|
962
970
|
}
|
|
963
971
|
GridCellBase.$t = /*@__PURE__*/ markType(GridCellBase, 'GridCellBase', Base.$, [INativeCell_$type]);
|
|
964
972
|
GridCellBase.o = null;
|
|
965
|
-
GridCellBase.
|
|
973
|
+
GridCellBase.bm = /*@__PURE__*/ new Random(0);
|
|
966
974
|
GridCellBase.ba = 10;
|
|
967
975
|
GridCellBase.ay = 3;
|
|
968
976
|
return GridCellBase;
|