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
|
@@ -37,6 +37,7 @@ import { FilterFactory } from "igniteui-webcomponents-core";
|
|
|
37
37
|
import { CheckboxListKeysClearedEventArgs } from "./CheckboxListKeysClearedEventArgs";
|
|
38
38
|
import { CheckedChangedEventArgs } from "./CheckedChangedEventArgs";
|
|
39
39
|
import { TemplateColumn } from "./TemplateColumn";
|
|
40
|
+
import { CornerRadius } from "igniteui-webcomponents-core";
|
|
40
41
|
import { FastReflectionHelper } from "igniteui-webcomponents-core";
|
|
41
42
|
import { DataSeriesPropertyType_$type } from "igniteui-webcomponents-core";
|
|
42
43
|
import { SvgIconRegistry } from "igniteui-webcomponents-core";
|
|
@@ -101,7 +102,7 @@ let CheckboxListView = /*@__PURE__*/ (() => {
|
|
|
101
102
|
let d = a.getSubRenderer(b);
|
|
102
103
|
c.provideContainer(d);
|
|
103
104
|
let e = d.getExternal(c, d.rootWrapper, d.getExternal(this.c, null, null));
|
|
104
|
-
this.c.
|
|
105
|
+
this.c.eh(c);
|
|
105
106
|
let f = a.createElement("div");
|
|
106
107
|
let g = a.getSubRenderer(f);
|
|
107
108
|
let h = new XPrefix();
|
|
@@ -112,7 +113,7 @@ let CheckboxListView = /*@__PURE__*/ (() => {
|
|
|
112
113
|
this.d = new XIcon();
|
|
113
114
|
this.d.provideContainer(k);
|
|
114
115
|
this.d.fill = this.c.searchIconColor;
|
|
115
|
-
this.d.svgPath = CheckboxList.
|
|
116
|
+
this.d.svgPath = CheckboxList.cz;
|
|
116
117
|
let l = g.getExternal(this.d, k.rootWrapper, k.getExternal(this.c, null, null));
|
|
117
118
|
h.appendContentChild(j);
|
|
118
119
|
c.appendContentChild(f);
|
|
@@ -129,7 +130,7 @@ let CheckboxListView = /*@__PURE__*/ (() => {
|
|
|
129
130
|
}
|
|
130
131
|
this.c.y.appendContentChild(m);
|
|
131
132
|
this.c.y.inputs.add(this.c.w);
|
|
132
|
-
this.c.
|
|
133
|
+
this.c.d5();
|
|
133
134
|
}
|
|
134
135
|
z() {
|
|
135
136
|
if (this.j != null) {
|
|
@@ -202,7 +203,7 @@ let CheckboxListView = /*@__PURE__*/ (() => {
|
|
|
202
203
|
finally {
|
|
203
204
|
d.z = h;
|
|
204
205
|
}
|
|
205
|
-
d.dk = this.c.
|
|
206
|
+
d.dk = this.c.fg;
|
|
206
207
|
d.dd = this.c.checkboxCheckedBackgroundColor;
|
|
207
208
|
d.dl = this.c.checkboxUncheckedBackgroundColor;
|
|
208
209
|
d.de = this.c.checkboxCheckedBorderColor;
|
|
@@ -386,21 +387,21 @@ let CheckboxListView = /*@__PURE__*/ (() => {
|
|
|
386
387
|
let e = c.checked;
|
|
387
388
|
if (e == true) {
|
|
388
389
|
if (this.c.indexType == 0) {
|
|
389
|
-
this.c.
|
|
390
|
+
this.c.ek(d);
|
|
390
391
|
}
|
|
391
392
|
else {
|
|
392
|
-
this.c.
|
|
393
|
+
this.c.dd(d);
|
|
393
394
|
}
|
|
394
395
|
}
|
|
395
396
|
else {
|
|
396
397
|
if (this.c.indexType == 0) {
|
|
397
|
-
this.c.
|
|
398
|
+
this.c.dd(d);
|
|
398
399
|
}
|
|
399
400
|
else {
|
|
400
|
-
this.c.
|
|
401
|
+
this.c.ek(d);
|
|
401
402
|
}
|
|
402
403
|
}
|
|
403
|
-
this.c.
|
|
404
|
+
this.c.d1(d, e);
|
|
404
405
|
this.an(false);
|
|
405
406
|
}
|
|
406
407
|
q() {
|
|
@@ -411,7 +412,7 @@ let CheckboxListView = /*@__PURE__*/ (() => {
|
|
|
411
412
|
let e = parseInt(d.a4.toString());
|
|
412
413
|
if (e == a) {
|
|
413
414
|
d.checked = b;
|
|
414
|
-
this.c.
|
|
415
|
+
this.c.d1(e, b);
|
|
415
416
|
}
|
|
416
417
|
}
|
|
417
418
|
this.an();
|
|
@@ -441,7 +442,7 @@ let CheckboxListView = /*@__PURE__*/ (() => {
|
|
|
441
442
|
let d = this.j.getExternal(this.b, c.rootWrapper, this.j.getExternal(this.c, null, null));
|
|
442
443
|
this.b.n = this.c.baseTheme;
|
|
443
444
|
this.m = a.createElement("label");
|
|
444
|
-
this.m.setRawText(this.c.
|
|
445
|
+
this.m.setRawText(this.c.c3);
|
|
445
446
|
this.m.setStyleProperty("font-size", "13px");
|
|
446
447
|
this.n.setStyleProperty("display", "flex");
|
|
447
448
|
this.n.setStyleProperty("flex-direction", "row");
|
|
@@ -457,8 +458,8 @@ let CheckboxListView = /*@__PURE__*/ (() => {
|
|
|
457
458
|
}
|
|
458
459
|
am() {
|
|
459
460
|
if (null != this.m) {
|
|
460
|
-
this.m.setRawText(this.c.
|
|
461
|
-
NativeUI.r(this.m, this.c.
|
|
461
|
+
this.m.setRawText(this.c.c3);
|
|
462
|
+
NativeUI.r(this.m, this.c.fc);
|
|
462
463
|
}
|
|
463
464
|
}
|
|
464
465
|
ap() {
|
|
@@ -506,12 +507,12 @@ let CheckboxListView = /*@__PURE__*/ (() => {
|
|
|
506
507
|
return;
|
|
507
508
|
}
|
|
508
509
|
if (b.isChecked) {
|
|
509
|
-
this.c.
|
|
510
|
-
this.c.
|
|
510
|
+
this.c.en();
|
|
511
|
+
this.c.ea(b.isChecked);
|
|
511
512
|
}
|
|
512
513
|
else {
|
|
513
|
-
this.c.
|
|
514
|
-
this.c.
|
|
514
|
+
this.c.dj();
|
|
515
|
+
this.c.ea(b.isChecked);
|
|
515
516
|
}
|
|
516
517
|
}
|
|
517
518
|
ak() {
|
|
@@ -543,7 +544,7 @@ let CheckboxListView = /*@__PURE__*/ (() => {
|
|
|
543
544
|
if (this.b == null) {
|
|
544
545
|
return;
|
|
545
546
|
}
|
|
546
|
-
this.b.dk = this.c.
|
|
547
|
+
this.b.dk = this.c.fg;
|
|
547
548
|
this.b.dd = this.c.checkboxCheckedBackgroundColor;
|
|
548
549
|
this.b.dl = this.c.checkboxUncheckedBackgroundColor;
|
|
549
550
|
this.b.de = this.c.checkboxCheckedBorderColor;
|
|
@@ -630,7 +631,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
630
631
|
let b = this.a;
|
|
631
632
|
this.a = a;
|
|
632
633
|
if (b != this.a) {
|
|
633
|
-
this.
|
|
634
|
+
this.d8("PrimaryKey", b, this.a);
|
|
634
635
|
}
|
|
635
636
|
}
|
|
636
637
|
constructor() {
|
|
@@ -671,31 +672,33 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
671
672
|
this.m = 1;
|
|
672
673
|
this.ae = 1;
|
|
673
674
|
this.ag = 2;
|
|
674
|
-
this.
|
|
675
|
-
this.e1 = null;
|
|
676
|
-
this.ax = true;
|
|
675
|
+
this.e8 = BrushUtil.l(255, 24, 29, 31);
|
|
677
676
|
this.e5 = null;
|
|
678
|
-
this.
|
|
679
|
-
this.
|
|
677
|
+
this.ax = true;
|
|
678
|
+
this.e9 = null;
|
|
679
|
+
this.e6 = null;
|
|
680
|
+
this.e7 = null;
|
|
680
681
|
this.an = null;
|
|
682
|
+
this.ey = null;
|
|
681
683
|
this.ew = null;
|
|
682
|
-
this.
|
|
684
|
+
this.ez = null;
|
|
683
685
|
this.ex = null;
|
|
684
|
-
this.
|
|
685
|
-
this.ey = null;
|
|
686
|
+
this.e0 = null;
|
|
686
687
|
this.bb = NaN;
|
|
687
688
|
this.gridColumnProvider = null;
|
|
688
689
|
this.ac = 0;
|
|
689
|
-
this.
|
|
690
|
+
this.e3 = null;
|
|
691
|
+
this.e4 = null;
|
|
692
|
+
this.e2 = null;
|
|
690
693
|
this.indexTypeChanged = null;
|
|
691
694
|
this.aw = false;
|
|
692
|
-
this.
|
|
693
|
-
this.
|
|
694
|
-
this.
|
|
695
|
+
this.c2 = null;
|
|
696
|
+
this.fa = null;
|
|
697
|
+
this.eu = CheckboxList.fm;
|
|
695
698
|
this.a9 = true;
|
|
696
|
-
this.
|
|
697
|
-
this.
|
|
698
|
-
this.
|
|
699
|
+
this.ev = CheckboxList.fj;
|
|
700
|
+
this.e1 = CheckboxList.fl;
|
|
701
|
+
this.fb = CheckboxList.fm;
|
|
699
702
|
this.keysCleared = null;
|
|
700
703
|
this.selectAllCheckboxChanged = null;
|
|
701
704
|
this.bm = -1;
|
|
@@ -703,8 +706,8 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
703
706
|
this.a3 = true;
|
|
704
707
|
this.ay = false;
|
|
705
708
|
let a = this.h;
|
|
706
|
-
a.collectionChanged = delegateCombine(a.collectionChanged, runOn(this, this.
|
|
707
|
-
this.h.am(runOn(this, this.
|
|
709
|
+
a.collectionChanged = delegateCombine(a.collectionChanged, runOn(this, this.ed));
|
|
710
|
+
this.h.am(runOn(this, this.ec));
|
|
708
711
|
this.d = new FilterFactory();
|
|
709
712
|
let b = new CheckboxListView();
|
|
710
713
|
b.c = this;
|
|
@@ -726,44 +729,44 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
726
729
|
removeSelectedKeyAt(a) {
|
|
727
730
|
this.keys.removeAt(a);
|
|
728
731
|
}
|
|
729
|
-
|
|
730
|
-
this.
|
|
732
|
+
ec() {
|
|
733
|
+
this.dt();
|
|
731
734
|
if (this.keysCleared != null) {
|
|
732
735
|
this.keysCleared(this, new CheckboxListKeysClearedEventArgs());
|
|
733
736
|
}
|
|
734
737
|
}
|
|
735
|
-
|
|
738
|
+
ed(a, b) {
|
|
736
739
|
if (this.e == null || this.e.actualSchema == null || this.as) {
|
|
737
740
|
return;
|
|
738
741
|
}
|
|
739
742
|
switch (b.action) {
|
|
740
743
|
case 0:
|
|
741
744
|
for (let c = 0; c < b.newItems.count; c++) {
|
|
742
|
-
this.
|
|
745
|
+
this.d6(b.newItems.item(c));
|
|
743
746
|
}
|
|
744
747
|
break;
|
|
745
748
|
case 1:
|
|
746
749
|
for (let d = 0; d < b.oldItems.count; d++) {
|
|
747
|
-
this.
|
|
750
|
+
this.d7(b.oldItems.item(d));
|
|
748
751
|
}
|
|
749
752
|
break;
|
|
750
753
|
case 2:
|
|
751
754
|
for (let e = 0; e < b.oldItems.count; e++) {
|
|
752
|
-
this.
|
|
755
|
+
this.d7(b.oldItems.item(e));
|
|
753
756
|
}
|
|
754
757
|
for (let f = 0; f < b.newItems.count; f++) {
|
|
755
|
-
this.
|
|
758
|
+
this.d6(b.newItems.item(f));
|
|
756
759
|
}
|
|
757
760
|
break;
|
|
758
761
|
case 4:
|
|
759
762
|
this.view.ab(this.indexType == 0);
|
|
760
763
|
for (let g = 0; g < this.keys.ae.count; g++) {
|
|
761
|
-
this.
|
|
764
|
+
this.d6(this.keys.ae._inner[g]);
|
|
762
765
|
}
|
|
763
766
|
break;
|
|
764
767
|
}
|
|
765
768
|
}
|
|
766
|
-
|
|
769
|
+
d6(a) {
|
|
767
770
|
let b = this.e.indexOfKey(a.value);
|
|
768
771
|
if (b >= 0) {
|
|
769
772
|
this.view.aa(b, this.indexType == 1);
|
|
@@ -779,7 +782,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
779
782
|
return $ret;
|
|
780
783
|
})()));
|
|
781
784
|
}
|
|
782
|
-
|
|
785
|
+
d7(a) {
|
|
783
786
|
let b = this.e.indexOfKey(a.value);
|
|
784
787
|
if (b >= 0) {
|
|
785
788
|
this.view.aa(b, this.indexType == 0);
|
|
@@ -795,7 +798,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
795
798
|
return $ret;
|
|
796
799
|
})()));
|
|
797
800
|
}
|
|
798
|
-
|
|
801
|
+
d1(a, b) {
|
|
799
802
|
if (this.checkedChanged != null && this.at == false) {
|
|
800
803
|
let c = null;
|
|
801
804
|
if (this.e.actualPrimaryKey != null && this.e.actualPrimaryKey.length > 0) {
|
|
@@ -820,58 +823,58 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
820
823
|
this.av = false;
|
|
821
824
|
if (this.g != null) {
|
|
822
825
|
let a = this.g;
|
|
823
|
-
a.cellClicked = delegateCombine(a.cellClicked, runOn(this, this.
|
|
826
|
+
a.cellClicked = delegateCombine(a.cellClicked, runOn(this, this.dn));
|
|
824
827
|
let b = this.g;
|
|
825
|
-
b.sizeChanged = delegateCombine(b.sizeChanged, runOn(this, this.
|
|
828
|
+
b.sizeChanged = delegateCombine(b.sizeChanged, runOn(this, this.dp));
|
|
826
829
|
if (this.g.actualDataSource != null) {
|
|
827
830
|
let c = this.g.actualDataSource;
|
|
828
|
-
c.schemaChanged = delegateCombine(c.schemaChanged, runOn(this, this.
|
|
831
|
+
c.schemaChanged = delegateCombine(c.schemaChanged, runOn(this, this.d9));
|
|
829
832
|
}
|
|
830
833
|
}
|
|
831
834
|
if (this.v != null) {
|
|
832
835
|
let d = this.v;
|
|
833
|
-
d.changing = delegateCombine(d.changing, runOn(this, this.
|
|
836
|
+
d.changing = delegateCombine(d.changing, runOn(this, this.dr));
|
|
834
837
|
}
|
|
835
838
|
if (this.k != null) {
|
|
836
839
|
let e = this.k;
|
|
837
|
-
e.cellUpdating = delegateCombine(e.cellUpdating, runOn(this, this.
|
|
840
|
+
e.cellUpdating = delegateCombine(e.cellUpdating, runOn(this, this.dh));
|
|
838
841
|
}
|
|
839
842
|
}
|
|
840
843
|
onDetachedFromUI() {
|
|
841
844
|
this.av = true;
|
|
842
|
-
this.
|
|
843
|
-
this.
|
|
845
|
+
this.dm();
|
|
846
|
+
this.dl();
|
|
844
847
|
}
|
|
845
|
-
|
|
848
|
+
dm() {
|
|
846
849
|
if (this.g != null) {
|
|
847
850
|
let a = this.g;
|
|
848
|
-
a.cellClicked = delegateRemove(a.cellClicked, runOn(this, this.
|
|
851
|
+
a.cellClicked = delegateRemove(a.cellClicked, runOn(this, this.dn));
|
|
849
852
|
let b = this.g;
|
|
850
|
-
b.sizeChanged = delegateRemove(b.sizeChanged, runOn(this, this.
|
|
853
|
+
b.sizeChanged = delegateRemove(b.sizeChanged, runOn(this, this.dp));
|
|
851
854
|
if (this.g.actualDataSource != null) {
|
|
852
855
|
let c = this.g.actualDataSource;
|
|
853
|
-
c.schemaChanged = delegateRemove(c.schemaChanged, runOn(this, this.
|
|
856
|
+
c.schemaChanged = delegateRemove(c.schemaChanged, runOn(this, this.d9));
|
|
854
857
|
}
|
|
855
858
|
}
|
|
856
859
|
if (this.v != null) {
|
|
857
860
|
let d = this.v;
|
|
858
|
-
d.changing = delegateRemove(d.changing, runOn(this, this.
|
|
861
|
+
d.changing = delegateRemove(d.changing, runOn(this, this.dr));
|
|
859
862
|
}
|
|
860
863
|
}
|
|
861
|
-
|
|
864
|
+
dl() {
|
|
862
865
|
if (this.k != null) {
|
|
863
866
|
let a = this.k;
|
|
864
|
-
a.cellUpdating = delegateRemove(a.cellUpdating, runOn(this, this.
|
|
867
|
+
a.cellUpdating = delegateRemove(a.cellUpdating, runOn(this, this.dh));
|
|
865
868
|
}
|
|
866
869
|
}
|
|
867
870
|
destroy() {
|
|
868
871
|
this.au = true;
|
|
869
872
|
if (!this.av) {
|
|
870
|
-
this.
|
|
873
|
+
this.dm();
|
|
871
874
|
}
|
|
872
875
|
this.provideContainer(null, null, null);
|
|
873
876
|
if (!this.av) {
|
|
874
|
-
this.
|
|
877
|
+
this.dl();
|
|
875
878
|
}
|
|
876
879
|
}
|
|
877
880
|
get a0() {
|
|
@@ -882,8 +885,10 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
882
885
|
if (null != this.g) {
|
|
883
886
|
this.g.scrollbarStyle = 1;
|
|
884
887
|
let d = this.g;
|
|
885
|
-
d.sizeChanged = delegateCombine(d.sizeChanged, runOn(this, this.
|
|
886
|
-
this.g.scrollbarBackground = this.
|
|
888
|
+
d.sizeChanged = delegateCombine(d.sizeChanged, runOn(this, this.dp));
|
|
889
|
+
this.g.scrollbarBackground = this.scrollbarBackground;
|
|
890
|
+
this.g.scrollbarHoverBackground = this.scrollbarHoverBackground;
|
|
891
|
+
this.g.scrollbarActiveBackground = this.scrollbarActiveBackground;
|
|
887
892
|
this.g.headerHeight = 0;
|
|
888
893
|
this.g.rowSeparatorHeight = 0;
|
|
889
894
|
this.g.defaultColumnMinWidth = NaN;
|
|
@@ -891,39 +896,41 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
891
896
|
this.g.activationMode = 0;
|
|
892
897
|
this.g.selectionMode = 0;
|
|
893
898
|
this.g.editMode = 0;
|
|
899
|
+
this.g.borderWidth = new Thickness(0, 0);
|
|
900
|
+
this.g.cornerRadius = new CornerRadius(0, 0);
|
|
894
901
|
let e = this.g;
|
|
895
|
-
e.cellClicked = delegateCombine(e.cellClicked, runOn(this, this.
|
|
902
|
+
e.cellClicked = delegateCombine(e.cellClicked, runOn(this, this.dn));
|
|
896
903
|
if (this.bp != null) {
|
|
897
904
|
this.g.itemsSource = this.bp;
|
|
898
|
-
this.
|
|
899
|
-
this.
|
|
905
|
+
this.dg();
|
|
906
|
+
this.eb();
|
|
900
907
|
}
|
|
901
908
|
if (this.bt != null) {
|
|
902
|
-
this.
|
|
903
|
-
this.
|
|
909
|
+
this.eb();
|
|
910
|
+
this.eq();
|
|
904
911
|
}
|
|
905
912
|
}
|
|
906
913
|
this.view.w(c);
|
|
907
914
|
if (this.checkboxAlignedRight) {
|
|
908
|
-
this.
|
|
915
|
+
this.es();
|
|
909
916
|
}
|
|
910
917
|
this.view.r(a);
|
|
911
918
|
}
|
|
912
|
-
|
|
919
|
+
dp(a, b) {
|
|
913
920
|
this.g.scrollbarStyle = this.ad;
|
|
914
921
|
}
|
|
915
922
|
provideSelectAllSection(a) {
|
|
916
923
|
this.view.w(a);
|
|
917
924
|
}
|
|
918
|
-
|
|
919
|
-
if (!this.checkboxAlignedRight && b.cellInfo.l.
|
|
925
|
+
dn(a, b) {
|
|
926
|
+
if (!this.checkboxAlignedRight && b.cellInfo.l.a6 == 0 || this.checkboxAlignedRight && b.cellInfo.l.a6 == 1) {
|
|
920
927
|
return;
|
|
921
928
|
}
|
|
922
929
|
let c = b.cellInfo.l.x;
|
|
923
930
|
if (-1 == c) {
|
|
924
931
|
return;
|
|
925
932
|
}
|
|
926
|
-
let d = b.cellInfo.
|
|
933
|
+
let d = b.cellInfo.im;
|
|
927
934
|
let e = this.j(d);
|
|
928
935
|
if (this.labelClickTriggersChange) {
|
|
929
936
|
if (this.keys.contains(e)) {
|
|
@@ -939,9 +946,9 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
939
946
|
this.keys.add(e);
|
|
940
947
|
}
|
|
941
948
|
}
|
|
942
|
-
this.
|
|
949
|
+
this.dw(c, this.keys.contains(e));
|
|
943
950
|
}
|
|
944
|
-
|
|
951
|
+
dw(a, b) {
|
|
945
952
|
let c = null;
|
|
946
953
|
if (this.e.actualPrimaryKey != null && this.e.actualPrimaryKey.length > 0) {
|
|
947
954
|
c = new Array(this.e.actualPrimaryKey.length);
|
|
@@ -960,21 +967,21 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
960
967
|
return $ret;
|
|
961
968
|
})()));
|
|
962
969
|
}
|
|
963
|
-
|
|
970
|
+
dh(a, b) {
|
|
964
971
|
let c = b.cellInfo.l.x;
|
|
965
972
|
if (-1 == c) {
|
|
966
973
|
return;
|
|
967
974
|
}
|
|
968
975
|
let d = false;
|
|
969
|
-
if (b.cellInfo.
|
|
970
|
-
let e = this.j(b.cellInfo.
|
|
976
|
+
if (b.cellInfo.im != null) {
|
|
977
|
+
let e = this.j(b.cellInfo.im);
|
|
971
978
|
if (this.keys.contains(e)) {
|
|
972
979
|
d = true;
|
|
973
980
|
}
|
|
974
981
|
}
|
|
975
982
|
this.view.t(b.content.element, c, d);
|
|
976
983
|
}
|
|
977
|
-
|
|
984
|
+
er(a, b) {
|
|
978
985
|
let c = b.cellInfo.l.x;
|
|
979
986
|
if (-1 == c) {
|
|
980
987
|
return;
|
|
@@ -984,13 +991,13 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
984
991
|
let f = null;
|
|
985
992
|
let g = null;
|
|
986
993
|
let h = null;
|
|
987
|
-
if (b.cellInfo.
|
|
988
|
-
d = this.ai.getPropertyValue(b.cellInfo.
|
|
994
|
+
if (b.cellInfo.im != null) {
|
|
995
|
+
d = this.ai.getPropertyValue(b.cellInfo.im);
|
|
989
996
|
if (this.al != null) {
|
|
990
|
-
e = this.al.getPropertyValue(b.cellInfo.
|
|
997
|
+
e = this.al.getPropertyValue(b.cellInfo.im);
|
|
991
998
|
}
|
|
992
999
|
if (this.aj != null) {
|
|
993
|
-
let i = EnumUtil.getEnumValue(DataSeriesPropertyType_$type, this.aj.getPropertyValue(b.cellInfo.
|
|
1000
|
+
let i = EnumUtil.getEnumValue(DataSeriesPropertyType_$type, this.aj.getPropertyValue(b.cellInfo.im));
|
|
994
1001
|
if (i == 0) {
|
|
995
1002
|
h = SvgIconRegistry.instance.getSvgPathString("ChartToolbarIcons", "string-field");
|
|
996
1003
|
}
|
|
@@ -1004,7 +1011,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1004
1011
|
}
|
|
1005
1012
|
this.view.u(b.content.element, c, d, e, this.am, "Verdana", 13, this.bo, f, g, h);
|
|
1006
1013
|
}
|
|
1007
|
-
|
|
1014
|
+
d3(a) {
|
|
1008
1015
|
if (this.bt != null) {
|
|
1009
1016
|
let b = this.d.property(this.bt).cast(enumGetBox(DataSourceSchemaPropertyType_$type, 0)).toLower();
|
|
1010
1017
|
let c = b.contains(a);
|
|
@@ -1025,7 +1032,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1025
1032
|
let b = this.bp;
|
|
1026
1033
|
this.bp = a;
|
|
1027
1034
|
if (b != this.bp) {
|
|
1028
|
-
this.
|
|
1035
|
+
this.d8("ItemsSource", b, this.bp);
|
|
1029
1036
|
}
|
|
1030
1037
|
}
|
|
1031
1038
|
get dataMemberPath() {
|
|
@@ -1035,7 +1042,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1035
1042
|
let b = this.bt;
|
|
1036
1043
|
this.bt = a;
|
|
1037
1044
|
if (b != this.bt) {
|
|
1038
|
-
this.
|
|
1045
|
+
this.d8("DataMemberPath", b, this.bt);
|
|
1039
1046
|
}
|
|
1040
1047
|
}
|
|
1041
1048
|
get dataLegendTarget() {
|
|
@@ -1045,7 +1052,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1045
1052
|
let b = this.bo;
|
|
1046
1053
|
this.bo = a;
|
|
1047
1054
|
if (b != this.bo) {
|
|
1048
|
-
this.
|
|
1055
|
+
this.d8("DataLegendTarget", b, this.bo);
|
|
1049
1056
|
}
|
|
1050
1057
|
}
|
|
1051
1058
|
get subtitleMemberPath() {
|
|
@@ -1055,7 +1062,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1055
1062
|
let b = this.bx;
|
|
1056
1063
|
this.bx = a;
|
|
1057
1064
|
if (b != this.bx) {
|
|
1058
|
-
this.
|
|
1065
|
+
this.d8("SubtitleMemberPath", b, this.bx);
|
|
1059
1066
|
}
|
|
1060
1067
|
}
|
|
1061
1068
|
get propertyTypeMemberPath() {
|
|
@@ -1065,7 +1072,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1065
1072
|
let b = this.bv;
|
|
1066
1073
|
this.bv = a;
|
|
1067
1074
|
if (b != this.bv) {
|
|
1068
|
-
this.
|
|
1075
|
+
this.d8("PropertyTypeMemberPath", b, this.bv);
|
|
1069
1076
|
}
|
|
1070
1077
|
}
|
|
1071
1078
|
get selectedMemberPath() {
|
|
@@ -1075,7 +1082,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1075
1082
|
let b = this.bw;
|
|
1076
1083
|
this.bw = a;
|
|
1077
1084
|
if (b != this.bw) {
|
|
1078
|
-
this.
|
|
1085
|
+
this.d8("SelectedMemberPath", b, this.bw);
|
|
1079
1086
|
}
|
|
1080
1087
|
}
|
|
1081
1088
|
get cf() {
|
|
@@ -1085,7 +1092,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1085
1092
|
let b = this.bu;
|
|
1086
1093
|
this.bu = a;
|
|
1087
1094
|
if (b != this.bu) {
|
|
1088
|
-
this.
|
|
1095
|
+
this.d8("FilterPlaceholderText", b, this.bu);
|
|
1089
1096
|
}
|
|
1090
1097
|
}
|
|
1091
1098
|
get aa() {
|
|
@@ -1095,7 +1102,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1095
1102
|
let b = this.z;
|
|
1096
1103
|
this.z = a;
|
|
1097
1104
|
if (b != this.z) {
|
|
1098
|
-
this.
|
|
1105
|
+
this.d8("SearchInputType", enumGetBox(InputGroupDisplayType_$type, b), enumGetBox(InputGroupDisplayType_$type, this.z));
|
|
1099
1106
|
}
|
|
1100
1107
|
}
|
|
1101
1108
|
get bn() {
|
|
@@ -1105,7 +1112,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1105
1112
|
let b = this.bk;
|
|
1106
1113
|
this.bk = a;
|
|
1107
1114
|
if (b != this.bk) {
|
|
1108
|
-
this.
|
|
1115
|
+
this.d8("RowHeight", b, this.bk);
|
|
1109
1116
|
}
|
|
1110
1117
|
}
|
|
1111
1118
|
get bl() {
|
|
@@ -1133,7 +1140,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1133
1140
|
let b = this.am;
|
|
1134
1141
|
this.am = a;
|
|
1135
1142
|
if (b != this.am) {
|
|
1136
|
-
this.
|
|
1143
|
+
this.d8("CellTextStyle", b, this.am);
|
|
1137
1144
|
}
|
|
1138
1145
|
}
|
|
1139
1146
|
get indexType() {
|
|
@@ -1143,7 +1150,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1143
1150
|
let b = this.m;
|
|
1144
1151
|
this.m = a;
|
|
1145
1152
|
if (b != this.m) {
|
|
1146
|
-
this.
|
|
1153
|
+
this.d8("IndexType", enumGetBox(CheckboxListIndexType_$type, b), enumGetBox(CheckboxListIndexType_$type, this.m));
|
|
1147
1154
|
}
|
|
1148
1155
|
}
|
|
1149
1156
|
get baseTheme() {
|
|
@@ -1153,7 +1160,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1153
1160
|
let b = this.ae;
|
|
1154
1161
|
this.ae = a;
|
|
1155
1162
|
if (b != this.ae) {
|
|
1156
|
-
this.
|
|
1163
|
+
this.d8("BaseTheme", enumGetBox(BaseControlTheme_$type, b), enumGetBox(BaseControlTheme_$type, this.ae));
|
|
1157
1164
|
}
|
|
1158
1165
|
}
|
|
1159
1166
|
get density() {
|
|
@@ -1163,27 +1170,27 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1163
1170
|
let b = this.ag;
|
|
1164
1171
|
this.ag = a;
|
|
1165
1172
|
if (b != this.ag) {
|
|
1166
|
-
this.
|
|
1173
|
+
this.d8("Density", enumGetBox(ControlDisplayDensity_$type, b), enumGetBox(ControlDisplayDensity_$type, this.ag));
|
|
1167
1174
|
}
|
|
1168
1175
|
}
|
|
1169
1176
|
get searchIconColor() {
|
|
1170
|
-
return this.
|
|
1177
|
+
return this.e8;
|
|
1171
1178
|
}
|
|
1172
1179
|
set searchIconColor(a) {
|
|
1173
|
-
let b = this.
|
|
1174
|
-
this.
|
|
1175
|
-
if (b != this.
|
|
1176
|
-
this.
|
|
1180
|
+
let b = this.e8;
|
|
1181
|
+
this.e8 = a;
|
|
1182
|
+
if (b != this.e8) {
|
|
1183
|
+
this.d8("SearchIconColor", b, this.e8);
|
|
1177
1184
|
}
|
|
1178
1185
|
}
|
|
1179
|
-
get
|
|
1180
|
-
return this.
|
|
1186
|
+
get fs() {
|
|
1187
|
+
return this.e5;
|
|
1181
1188
|
}
|
|
1182
|
-
set
|
|
1183
|
-
let b = this.
|
|
1184
|
-
this.
|
|
1185
|
-
if (b != this.
|
|
1186
|
-
this.
|
|
1189
|
+
set fs(a) {
|
|
1190
|
+
let b = this.e5;
|
|
1191
|
+
this.e5 = a;
|
|
1192
|
+
if (b != this.e5) {
|
|
1193
|
+
this.d8("SearchBackgroundColor", b, this.e5);
|
|
1187
1194
|
}
|
|
1188
1195
|
}
|
|
1189
1196
|
get labelClickTriggersChange() {
|
|
@@ -1193,37 +1200,37 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1193
1200
|
let b = this.ax;
|
|
1194
1201
|
this.ax = a;
|
|
1195
1202
|
if (b != this.ax) {
|
|
1196
|
-
this.
|
|
1203
|
+
this.d8("LabelClickTriggersChange", b, this.ax);
|
|
1197
1204
|
}
|
|
1198
1205
|
}
|
|
1199
1206
|
get searchTextColor() {
|
|
1200
|
-
return this.
|
|
1207
|
+
return this.e9;
|
|
1201
1208
|
}
|
|
1202
1209
|
set searchTextColor(a) {
|
|
1203
|
-
let b = this.
|
|
1204
|
-
this.
|
|
1205
|
-
if (b != this.
|
|
1206
|
-
this.
|
|
1210
|
+
let b = this.e9;
|
|
1211
|
+
this.e9 = a;
|
|
1212
|
+
if (b != this.e9) {
|
|
1213
|
+
this.d8("SearchTextColor", b, this.e9);
|
|
1207
1214
|
}
|
|
1208
1215
|
}
|
|
1209
1216
|
get searchBorderColor() {
|
|
1210
|
-
return this.
|
|
1217
|
+
return this.e6;
|
|
1211
1218
|
}
|
|
1212
1219
|
set searchBorderColor(a) {
|
|
1213
|
-
let b = this.
|
|
1214
|
-
this.
|
|
1215
|
-
if (b != this.
|
|
1216
|
-
this.
|
|
1220
|
+
let b = this.e6;
|
|
1221
|
+
this.e6 = a;
|
|
1222
|
+
if (b != this.e6) {
|
|
1223
|
+
this.d8("SearchBorderColor", b, this.e6);
|
|
1217
1224
|
}
|
|
1218
1225
|
}
|
|
1219
1226
|
get searchFocusBorderColor() {
|
|
1220
|
-
return this.
|
|
1227
|
+
return this.e7;
|
|
1221
1228
|
}
|
|
1222
1229
|
set searchFocusBorderColor(a) {
|
|
1223
|
-
let b = this.
|
|
1224
|
-
this.
|
|
1225
|
-
if (b != this.
|
|
1226
|
-
this.
|
|
1230
|
+
let b = this.e7;
|
|
1231
|
+
this.e7 = a;
|
|
1232
|
+
if (b != this.e7) {
|
|
1233
|
+
this.d8("SearchFocusBorderColor", b, this.e7);
|
|
1227
1234
|
}
|
|
1228
1235
|
}
|
|
1229
1236
|
get ap() {
|
|
@@ -1233,57 +1240,57 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1233
1240
|
let b = this.an;
|
|
1234
1241
|
this.an = a;
|
|
1235
1242
|
if (b != this.an) {
|
|
1236
|
-
this.
|
|
1243
|
+
this.d8("SearchTextStyle", b, this.an);
|
|
1237
1244
|
}
|
|
1238
1245
|
}
|
|
1239
|
-
get
|
|
1240
|
-
return this.
|
|
1246
|
+
get fg() {
|
|
1247
|
+
return this.ey;
|
|
1241
1248
|
}
|
|
1242
|
-
set
|
|
1243
|
-
let b = this.
|
|
1244
|
-
this.
|
|
1245
|
-
if (b != this.
|
|
1246
|
-
this.
|
|
1249
|
+
set fg(a) {
|
|
1250
|
+
let b = this.ey;
|
|
1251
|
+
this.ey = a;
|
|
1252
|
+
if (b != this.ey) {
|
|
1253
|
+
this.d8("CheckboxTickColor", b, this.ey);
|
|
1247
1254
|
}
|
|
1248
1255
|
}
|
|
1249
1256
|
get checkboxCheckedBackgroundColor() {
|
|
1250
|
-
return this.
|
|
1257
|
+
return this.ew;
|
|
1251
1258
|
}
|
|
1252
1259
|
set checkboxCheckedBackgroundColor(a) {
|
|
1253
|
-
let b = this.
|
|
1254
|
-
this.
|
|
1255
|
-
if (b != this.
|
|
1256
|
-
this.
|
|
1260
|
+
let b = this.ew;
|
|
1261
|
+
this.ew = a;
|
|
1262
|
+
if (b != this.ew) {
|
|
1263
|
+
this.d8("CheckboxCheckedBackgroundColor", b, this.ew);
|
|
1257
1264
|
}
|
|
1258
1265
|
}
|
|
1259
1266
|
get checkboxUncheckedBackgroundColor() {
|
|
1260
|
-
return this.
|
|
1267
|
+
return this.ez;
|
|
1261
1268
|
}
|
|
1262
1269
|
set checkboxUncheckedBackgroundColor(a) {
|
|
1263
|
-
let b = this.
|
|
1264
|
-
this.
|
|
1265
|
-
if (b != this.
|
|
1266
|
-
this.
|
|
1270
|
+
let b = this.ez;
|
|
1271
|
+
this.ez = a;
|
|
1272
|
+
if (b != this.ez) {
|
|
1273
|
+
this.d8("CheckboxUncheckedBackgroundColor", b, this.ez);
|
|
1267
1274
|
}
|
|
1268
1275
|
}
|
|
1269
1276
|
get checkboxCheckedBorderColor() {
|
|
1270
|
-
return this.
|
|
1277
|
+
return this.ex;
|
|
1271
1278
|
}
|
|
1272
1279
|
set checkboxCheckedBorderColor(a) {
|
|
1273
|
-
let b = this.
|
|
1274
|
-
this.
|
|
1275
|
-
if (b != this.
|
|
1276
|
-
this.
|
|
1280
|
+
let b = this.ex;
|
|
1281
|
+
this.ex = a;
|
|
1282
|
+
if (b != this.ex) {
|
|
1283
|
+
this.d8("CheckboxCheckedBorderColor", b, this.ex);
|
|
1277
1284
|
}
|
|
1278
1285
|
}
|
|
1279
1286
|
get checkboxUncheckedBorderColor() {
|
|
1280
|
-
return this.
|
|
1287
|
+
return this.e0;
|
|
1281
1288
|
}
|
|
1282
1289
|
set checkboxUncheckedBorderColor(a) {
|
|
1283
|
-
let b = this.
|
|
1284
|
-
this.
|
|
1285
|
-
if (b != this.
|
|
1286
|
-
this.
|
|
1290
|
+
let b = this.e0;
|
|
1291
|
+
this.e0 = a;
|
|
1292
|
+
if (b != this.e0) {
|
|
1293
|
+
this.d8("CheckboxUncheckedBorderColor", b, this.e0);
|
|
1287
1294
|
}
|
|
1288
1295
|
}
|
|
1289
1296
|
get checkboxCornerRadius() {
|
|
@@ -1293,7 +1300,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1293
1300
|
let b = this.bb;
|
|
1294
1301
|
this.bb = a;
|
|
1295
1302
|
if (b != this.bb) {
|
|
1296
|
-
this.
|
|
1303
|
+
this.d8("CheckboxCornerRadius", b, this.bb);
|
|
1297
1304
|
}
|
|
1298
1305
|
}
|
|
1299
1306
|
get ad() {
|
|
@@ -1303,35 +1310,55 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1303
1310
|
let b = this.ac;
|
|
1304
1311
|
this.ac = a;
|
|
1305
1312
|
if (b != this.ac) {
|
|
1306
|
-
this.
|
|
1313
|
+
this.d8("ScrollbarStyle", enumGetBox(ScrollbarStyle_$type, b), enumGetBox(ScrollbarStyle_$type, this.ac));
|
|
1307
1314
|
}
|
|
1308
1315
|
}
|
|
1309
|
-
get
|
|
1310
|
-
return this.
|
|
1316
|
+
get scrollbarBackground() {
|
|
1317
|
+
return this.e3;
|
|
1311
1318
|
}
|
|
1312
|
-
set
|
|
1313
|
-
let b = this.
|
|
1314
|
-
this.
|
|
1315
|
-
if (b != this.
|
|
1316
|
-
this.
|
|
1319
|
+
set scrollbarBackground(a) {
|
|
1320
|
+
let b = this.e3;
|
|
1321
|
+
this.e3 = a;
|
|
1322
|
+
if (b != this.e3) {
|
|
1323
|
+
this.d8("ScrollbarBackground", b, this.e3);
|
|
1317
1324
|
}
|
|
1318
1325
|
}
|
|
1319
|
-
|
|
1326
|
+
get scrollbarHoverBackground() {
|
|
1327
|
+
return this.e4;
|
|
1328
|
+
}
|
|
1329
|
+
set scrollbarHoverBackground(a) {
|
|
1330
|
+
let b = this.e4;
|
|
1331
|
+
this.e4 = a;
|
|
1332
|
+
if (b != this.e4) {
|
|
1333
|
+
this.d8("ScrollbarHoverBackground", b, this.e4);
|
|
1334
|
+
}
|
|
1335
|
+
}
|
|
1336
|
+
get scrollbarActiveBackground() {
|
|
1337
|
+
return this.e2;
|
|
1338
|
+
}
|
|
1339
|
+
set scrollbarActiveBackground(a) {
|
|
1340
|
+
let b = this.e2;
|
|
1341
|
+
this.e2 = a;
|
|
1342
|
+
if (b != this.e2) {
|
|
1343
|
+
this.d8("ScrollbarActiveBackground", b, this.e2);
|
|
1344
|
+
}
|
|
1345
|
+
}
|
|
1346
|
+
d8(a, b, c) {
|
|
1320
1347
|
if (this.propertyChanged != null) {
|
|
1321
1348
|
this.propertyChanged(this, new PropertyChangedEventArgs(a));
|
|
1322
1349
|
}
|
|
1323
|
-
this.
|
|
1350
|
+
this.ee(a, b, c);
|
|
1324
1351
|
}
|
|
1325
|
-
|
|
1352
|
+
ee(a, b, c) {
|
|
1326
1353
|
switch (a) {
|
|
1327
1354
|
case "IndexType":
|
|
1328
1355
|
this.keys.clear();
|
|
1329
|
-
this.
|
|
1356
|
+
this.dt();
|
|
1330
1357
|
if (this.keysCleared != null) {
|
|
1331
1358
|
this.keysCleared(this, new CheckboxListKeysClearedEventArgs());
|
|
1332
1359
|
}
|
|
1333
1360
|
this.view.an();
|
|
1334
|
-
this.
|
|
1361
|
+
this.d4(b, c);
|
|
1335
1362
|
break;
|
|
1336
1363
|
case "ItemsSource":
|
|
1337
1364
|
if (this.g != null) {
|
|
@@ -1344,16 +1371,16 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1344
1371
|
}
|
|
1345
1372
|
if (this.g.actualDataSource != null && !this.a0) {
|
|
1346
1373
|
let d = this.g.actualDataSource;
|
|
1347
|
-
d.schemaChanged = delegateRemove(d.schemaChanged, runOn(this, this.
|
|
1374
|
+
d.schemaChanged = delegateRemove(d.schemaChanged, runOn(this, this.d9));
|
|
1348
1375
|
}
|
|
1349
1376
|
this.g.itemsSource = this.bp;
|
|
1350
|
-
this.
|
|
1377
|
+
this.dg();
|
|
1351
1378
|
if (this.g.actualDataSource != null && !this.a0) {
|
|
1352
1379
|
let e = this.g.actualDataSource;
|
|
1353
|
-
e.schemaChanged = delegateCombine(e.schemaChanged, runOn(this, this.
|
|
1380
|
+
e.schemaChanged = delegateCombine(e.schemaChanged, runOn(this, this.d9));
|
|
1354
1381
|
}
|
|
1355
1382
|
this.at = true;
|
|
1356
|
-
this.
|
|
1383
|
+
this.eb();
|
|
1357
1384
|
this.at = false;
|
|
1358
1385
|
this.view.an();
|
|
1359
1386
|
}
|
|
@@ -1364,8 +1391,8 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1364
1391
|
case "PropertyTypeMemberPath":
|
|
1365
1392
|
if (this.g != null) {
|
|
1366
1393
|
if (this.bt != null) {
|
|
1367
|
-
this.
|
|
1368
|
-
this.
|
|
1394
|
+
this.eb();
|
|
1395
|
+
this.eq();
|
|
1369
1396
|
}
|
|
1370
1397
|
}
|
|
1371
1398
|
break;
|
|
@@ -1375,7 +1402,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1375
1402
|
}
|
|
1376
1403
|
break;
|
|
1377
1404
|
case "SelectAllCaptionTextColor":
|
|
1378
|
-
this.
|
|
1405
|
+
this.fc = null != this.selectAllCaptionTextColor ? this.selectAllCaptionTextColor : this.fn();
|
|
1379
1406
|
break;
|
|
1380
1407
|
case "SelectAllCaption":
|
|
1381
1408
|
case "ActualSelectAllCaptionTextColor":
|
|
@@ -1424,10 +1451,10 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1424
1451
|
this.view.ak();
|
|
1425
1452
|
break;
|
|
1426
1453
|
case "BaseTheme":
|
|
1427
|
-
this.
|
|
1454
|
+
this.ep();
|
|
1428
1455
|
break;
|
|
1429
1456
|
case "Density":
|
|
1430
|
-
this.
|
|
1457
|
+
this.eo();
|
|
1431
1458
|
break;
|
|
1432
1459
|
case "IsRowHoverEnabled":
|
|
1433
1460
|
if (this.g != null) {
|
|
@@ -1441,7 +1468,17 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1441
1468
|
break;
|
|
1442
1469
|
case "ScrollbarBackground":
|
|
1443
1470
|
if (this.g != null) {
|
|
1444
|
-
this.g.scrollbarBackground = this.
|
|
1471
|
+
this.g.scrollbarBackground = this.scrollbarBackground;
|
|
1472
|
+
}
|
|
1473
|
+
break;
|
|
1474
|
+
case "ScrollbarHoverBackground":
|
|
1475
|
+
if (this.g != null) {
|
|
1476
|
+
this.g.scrollbarHoverBackground = this.scrollbarHoverBackground;
|
|
1477
|
+
}
|
|
1478
|
+
break;
|
|
1479
|
+
case "ScrollbarActiveBackground":
|
|
1480
|
+
if (this.g != null) {
|
|
1481
|
+
this.g.scrollbarActiveBackground = this.scrollbarActiveBackground;
|
|
1445
1482
|
}
|
|
1446
1483
|
break;
|
|
1447
1484
|
case "SearchIconColor":
|
|
@@ -1449,7 +1486,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1449
1486
|
break;
|
|
1450
1487
|
case "SearchBackgroundColor":
|
|
1451
1488
|
if (this.y != null) {
|
|
1452
|
-
this.y.mc = this.
|
|
1489
|
+
this.y.mc = this.fs;
|
|
1453
1490
|
}
|
|
1454
1491
|
break;
|
|
1455
1492
|
case "SearchBorderColor":
|
|
@@ -1480,22 +1517,22 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1480
1517
|
case "CheckboxCornerRadius":
|
|
1481
1518
|
this.view.af();
|
|
1482
1519
|
if (this.g != null) {
|
|
1483
|
-
this.g.
|
|
1520
|
+
this.g.y6();
|
|
1484
1521
|
}
|
|
1485
1522
|
break;
|
|
1486
1523
|
case "CheckboxAlignedRight":
|
|
1487
1524
|
if (this.g != null) {
|
|
1488
|
-
this.
|
|
1525
|
+
this.es();
|
|
1489
1526
|
}
|
|
1490
1527
|
break;
|
|
1491
1528
|
case "DataLegendTarget":
|
|
1492
1529
|
if (this.g != null) {
|
|
1493
|
-
this.g.
|
|
1530
|
+
this.g.y6();
|
|
1494
1531
|
}
|
|
1495
1532
|
break;
|
|
1496
1533
|
}
|
|
1497
1534
|
}
|
|
1498
|
-
|
|
1535
|
+
es() {
|
|
1499
1536
|
if (this.g.actualColumns.count == 0) {
|
|
1500
1537
|
return;
|
|
1501
1538
|
}
|
|
@@ -1513,7 +1550,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1513
1550
|
}
|
|
1514
1551
|
this.g.columns.add(c);
|
|
1515
1552
|
}
|
|
1516
|
-
|
|
1553
|
+
d4(a, b) {
|
|
1517
1554
|
if (this.indexTypeChanged != null) {
|
|
1518
1555
|
this.indexTypeChanged(this, ((() => {
|
|
1519
1556
|
let $ret = new CheckboxListIndexTypeChangedEventArgs();
|
|
@@ -1523,7 +1560,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1523
1560
|
})()));
|
|
1524
1561
|
}
|
|
1525
1562
|
}
|
|
1526
|
-
|
|
1563
|
+
eo() {
|
|
1527
1564
|
if (this.g != null) {
|
|
1528
1565
|
this.g.density = this.density;
|
|
1529
1566
|
}
|
|
@@ -1533,7 +1570,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1533
1570
|
this.view.ae();
|
|
1534
1571
|
this.view.z();
|
|
1535
1572
|
}
|
|
1536
|
-
|
|
1573
|
+
ep() {
|
|
1537
1574
|
if (this.x != null) {
|
|
1538
1575
|
this.x.p = this.baseTheme;
|
|
1539
1576
|
}
|
|
@@ -1547,23 +1584,25 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1547
1584
|
this.g.cellSelectedBackground = this.backgroundColor;
|
|
1548
1585
|
this.g.rowHoverBackground = this.rowHoverBackgroundColor;
|
|
1549
1586
|
this.g.background = this.backgroundColor;
|
|
1587
|
+
this.g.borderWidth = new Thickness(0, 0);
|
|
1588
|
+
this.g.cornerRadius = new CornerRadius(0, 0);
|
|
1550
1589
|
}
|
|
1551
|
-
this.
|
|
1590
|
+
this.fc = this.selectAllCaptionTextColor != null ? this.selectAllCaptionTextColor : this.fn();
|
|
1552
1591
|
this.view.ag();
|
|
1553
1592
|
}
|
|
1554
|
-
|
|
1593
|
+
d9(a, b) {
|
|
1555
1594
|
this.at = true;
|
|
1556
|
-
this.
|
|
1595
|
+
this.dg();
|
|
1557
1596
|
if (b.schema != null) {
|
|
1558
|
-
this.
|
|
1597
|
+
this.eb();
|
|
1559
1598
|
for (let c = 0; c < this.keys.count; c++) {
|
|
1560
|
-
this.
|
|
1599
|
+
this.d6(this.keys._inner[c]);
|
|
1561
1600
|
}
|
|
1562
1601
|
this.view.an();
|
|
1563
1602
|
}
|
|
1564
1603
|
this.at = false;
|
|
1565
1604
|
}
|
|
1566
|
-
|
|
1605
|
+
eb() {
|
|
1567
1606
|
if (this.ak == null && this.bw != null && this.bw != "") {
|
|
1568
1607
|
this.ak = new FastReflectionHelper(false, this.bw);
|
|
1569
1608
|
}
|
|
@@ -1603,7 +1642,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1603
1642
|
}
|
|
1604
1643
|
}
|
|
1605
1644
|
}
|
|
1606
|
-
|
|
1645
|
+
eq() {
|
|
1607
1646
|
this.view.p();
|
|
1608
1647
|
this.g.columns.clear();
|
|
1609
1648
|
this.g.primaryKey = this.primaryKey;
|
|
@@ -1615,7 +1654,10 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1615
1654
|
this.g.theme = this.baseTheme;
|
|
1616
1655
|
this.g.density = this.density;
|
|
1617
1656
|
this.g.isRowHoverEnabled = this.a4;
|
|
1618
|
-
this.g.
|
|
1657
|
+
this.g.scrollbarStyle = this.ad;
|
|
1658
|
+
this.g.scrollbarBackground = this.scrollbarBackground;
|
|
1659
|
+
this.g.scrollbarHoverBackground = this.scrollbarHoverBackground;
|
|
1660
|
+
this.g.scrollbarActiveBackground = this.scrollbarActiveBackground;
|
|
1619
1661
|
if (this.ao != null) {
|
|
1620
1662
|
this.g.cellTextStyle = this.ao;
|
|
1621
1663
|
}
|
|
@@ -1623,32 +1665,32 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1623
1665
|
if (this.bw == null) {
|
|
1624
1666
|
this.bw = "";
|
|
1625
1667
|
}
|
|
1626
|
-
a.
|
|
1627
|
-
a.
|
|
1668
|
+
a.ns = this.bw;
|
|
1669
|
+
a.ok = "CheckboxColumn";
|
|
1628
1670
|
let b = new ColumnWidth();
|
|
1629
1671
|
b.c = false;
|
|
1630
1672
|
b.f = 28;
|
|
1631
1673
|
a.width = b;
|
|
1632
|
-
a.lm = 0;
|
|
1633
1674
|
a.ln = 0;
|
|
1634
|
-
a.
|
|
1675
|
+
a.lo = 0;
|
|
1676
|
+
a.cellUpdating = delegateCombine(a.cellUpdating, runOn(this, this.dh));
|
|
1635
1677
|
this.k = a;
|
|
1636
1678
|
this.g.columns.add(a);
|
|
1637
1679
|
let c = this.g.actualDataSource.resolveSchemaPropertyType(this.bt);
|
|
1638
1680
|
if ((this.bx != null || this.bv != null) && (c == 0 || c == 11 || c == 2)) {
|
|
1639
1681
|
let d = new TemplateColumn();
|
|
1640
|
-
d.
|
|
1641
|
-
d.
|
|
1642
|
-
d.
|
|
1682
|
+
d.ns = this.bt;
|
|
1683
|
+
d.ok = "DataColumn";
|
|
1684
|
+
d.ln = 0;
|
|
1643
1685
|
d.g = 0;
|
|
1644
|
-
d.cellUpdating = delegateCombine(d.cellUpdating, runOn(this, this.
|
|
1686
|
+
d.cellUpdating = delegateCombine(d.cellUpdating, runOn(this, this.er));
|
|
1645
1687
|
this.g.columns.add(d);
|
|
1646
1688
|
}
|
|
1647
1689
|
else {
|
|
1648
1690
|
let e;
|
|
1649
1691
|
if (this.gridColumnProvider != null) {
|
|
1650
|
-
e = this.gridColumnProvider.
|
|
1651
|
-
e.onAttachingOverride = delegateCombine(e.onAttachingOverride, runOn(this, this.
|
|
1692
|
+
e = this.gridColumnProvider.h2();
|
|
1693
|
+
e.onAttachingOverride = delegateCombine(e.onAttachingOverride, runOn(this, this.dq));
|
|
1652
1694
|
}
|
|
1653
1695
|
else {
|
|
1654
1696
|
switch (c) {
|
|
@@ -1673,9 +1715,9 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1673
1715
|
break;
|
|
1674
1716
|
}
|
|
1675
1717
|
}
|
|
1676
|
-
e.
|
|
1677
|
-
e.
|
|
1678
|
-
e.
|
|
1718
|
+
e.ns = this.bt;
|
|
1719
|
+
e.ok = "DataColumn";
|
|
1720
|
+
e.ln = 0;
|
|
1679
1721
|
e.g = 0;
|
|
1680
1722
|
this.g.columns.add(e);
|
|
1681
1723
|
}
|
|
@@ -1683,16 +1725,20 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1683
1725
|
let g = new ColumnWidth();
|
|
1684
1726
|
g.c = false;
|
|
1685
1727
|
g.f = 10;
|
|
1686
|
-
f.
|
|
1687
|
-
f.
|
|
1688
|
-
f.
|
|
1728
|
+
f.ns = "PaddingColumn";
|
|
1729
|
+
f.ok = "PaddingColumn";
|
|
1730
|
+
f.ln = 0;
|
|
1689
1731
|
f.width = g;
|
|
1690
1732
|
this.g.columns.add(f);
|
|
1691
1733
|
}
|
|
1692
|
-
|
|
1734
|
+
dq(a, b) {
|
|
1693
1735
|
let c = b.b;
|
|
1694
|
-
c.
|
|
1736
|
+
c.g5 = 0;
|
|
1695
1737
|
c.g = 0;
|
|
1738
|
+
c.np = this.g.cellBackground;
|
|
1739
|
+
c.n9 = this.g.cellTextColor;
|
|
1740
|
+
c.ny = this.g.rowHoverBackground;
|
|
1741
|
+
c.n2 = this.g.cellSelectedBackground;
|
|
1696
1742
|
}
|
|
1697
1743
|
updateHrMargin(a) {
|
|
1698
1744
|
this.view.ah(a);
|
|
@@ -1700,16 +1746,16 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1700
1746
|
provideHrElement(a) {
|
|
1701
1747
|
this.view.v(a);
|
|
1702
1748
|
}
|
|
1703
|
-
|
|
1749
|
+
d5() {
|
|
1704
1750
|
if (!this.a0) {
|
|
1705
1751
|
let a = this.w;
|
|
1706
|
-
a.changing = delegateCombine(a.changing, runOn(this, this.
|
|
1752
|
+
a.changing = delegateCombine(a.changing, runOn(this, this.dr));
|
|
1707
1753
|
}
|
|
1708
|
-
this.
|
|
1754
|
+
this.ep();
|
|
1709
1755
|
}
|
|
1710
|
-
|
|
1756
|
+
dr(a, b) {
|
|
1711
1757
|
let c = b.value.toLowerCase();
|
|
1712
|
-
this.
|
|
1758
|
+
this.d3(c);
|
|
1713
1759
|
}
|
|
1714
1760
|
j(a) {
|
|
1715
1761
|
if (this.primaryKey == null) {
|
|
@@ -1723,7 +1769,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1723
1769
|
}
|
|
1724
1770
|
return new PrimaryKeyValue(b, c);
|
|
1725
1771
|
}
|
|
1726
|
-
|
|
1772
|
+
ek(a) {
|
|
1727
1773
|
this.as = true;
|
|
1728
1774
|
let b = this.e.getItemAtIndex(a);
|
|
1729
1775
|
if (this.ak != null) {
|
|
@@ -1733,7 +1779,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1733
1779
|
this.keys.remove(c);
|
|
1734
1780
|
this.as = false;
|
|
1735
1781
|
}
|
|
1736
|
-
|
|
1782
|
+
dd(a) {
|
|
1737
1783
|
this.as = true;
|
|
1738
1784
|
let b = this.e.getItemAtIndex(a);
|
|
1739
1785
|
if (this.ak != null) {
|
|
@@ -1743,44 +1789,44 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1743
1789
|
this.keys.add(c);
|
|
1744
1790
|
this.as = false;
|
|
1745
1791
|
}
|
|
1746
|
-
|
|
1792
|
+
en() {
|
|
1747
1793
|
this.indexType = 0;
|
|
1748
1794
|
this.keys.clear();
|
|
1749
|
-
this.
|
|
1795
|
+
this.dt();
|
|
1750
1796
|
if (this.keysCleared != null) {
|
|
1751
1797
|
this.keysCleared(this, new CheckboxListKeysClearedEventArgs());
|
|
1752
1798
|
}
|
|
1753
1799
|
}
|
|
1754
|
-
|
|
1800
|
+
dj() {
|
|
1755
1801
|
this.indexType = 1;
|
|
1756
1802
|
this.keys.clear();
|
|
1757
|
-
this.
|
|
1803
|
+
this.dt();
|
|
1758
1804
|
if (this.keysCleared != null) {
|
|
1759
1805
|
this.keysCleared(this, new CheckboxListKeysClearedEventArgs());
|
|
1760
1806
|
}
|
|
1761
1807
|
}
|
|
1762
|
-
|
|
1808
|
+
dy(a, b, c) {
|
|
1763
1809
|
if (this.g != null) {
|
|
1764
1810
|
this.g.notifySetItem(a, b, c);
|
|
1765
1811
|
}
|
|
1766
1812
|
}
|
|
1767
|
-
|
|
1813
|
+
du() {
|
|
1768
1814
|
if (this.g != null) {
|
|
1769
1815
|
this.g.notifyClearItems();
|
|
1770
1816
|
}
|
|
1771
1817
|
}
|
|
1772
|
-
|
|
1818
|
+
dt() {
|
|
1773
1819
|
if (this.g != null) {
|
|
1774
1820
|
this.g.invalidateVisibleRows();
|
|
1775
1821
|
}
|
|
1776
1822
|
}
|
|
1777
|
-
|
|
1823
|
+
dv(a, b) {
|
|
1778
1824
|
if (this.g != null) {
|
|
1779
1825
|
this.g.notifyInsertItem(a, b);
|
|
1780
1826
|
}
|
|
1781
1827
|
;
|
|
1782
1828
|
}
|
|
1783
|
-
|
|
1829
|
+
dx(a, b) {
|
|
1784
1830
|
if (this.g != null) {
|
|
1785
1831
|
this.g.notifyRemoveItem(a, b);
|
|
1786
1832
|
}
|
|
@@ -1797,7 +1843,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1797
1843
|
this.aw = false;
|
|
1798
1844
|
}
|
|
1799
1845
|
}
|
|
1800
|
-
|
|
1846
|
+
de(a) {
|
|
1801
1847
|
let b = null;
|
|
1802
1848
|
if (this.primaryKey == null || this.primaryKey.length == 0) {
|
|
1803
1849
|
b = new PrimaryKeyValue(null, a);
|
|
@@ -1817,7 +1863,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1817
1863
|
this.keys.add(b);
|
|
1818
1864
|
}
|
|
1819
1865
|
}
|
|
1820
|
-
|
|
1866
|
+
el(a) {
|
|
1821
1867
|
let b = null;
|
|
1822
1868
|
if (this.primaryKey == null || this.primaryKey.length == 0) {
|
|
1823
1869
|
b = new PrimaryKeyValue(null, a);
|
|
@@ -1891,39 +1937,39 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1891
1937
|
a.h = c.width;
|
|
1892
1938
|
a.c = this.baseTheme;
|
|
1893
1939
|
a.d = this.bl;
|
|
1894
|
-
a.a = AppearanceHelper.a(this.
|
|
1940
|
+
a.a = AppearanceHelper.a(this.fc);
|
|
1895
1941
|
a.b = AppearanceHelper.a(this.backgroundColor);
|
|
1896
1942
|
return a;
|
|
1897
1943
|
}
|
|
1898
|
-
get
|
|
1899
|
-
return this.
|
|
1944
|
+
get c3() {
|
|
1945
|
+
return this.c2 != null ? this.c2 : !stringIsNullOrWhiteSpace(this.ar.b1("Select_All")) ? this.ar.b1("Select_All") : "(Select All)";
|
|
1900
1946
|
}
|
|
1901
|
-
set
|
|
1902
|
-
if (a == this.
|
|
1947
|
+
set c3(a) {
|
|
1948
|
+
if (a == this.c2) {
|
|
1903
1949
|
return;
|
|
1904
1950
|
}
|
|
1905
|
-
let b = this.
|
|
1906
|
-
this.
|
|
1907
|
-
this.
|
|
1951
|
+
let b = this.c2;
|
|
1952
|
+
this.c2 = a;
|
|
1953
|
+
this.d8("SelectAllCaption", b, this.c2);
|
|
1908
1954
|
}
|
|
1909
1955
|
get selectAllCaptionTextColor() {
|
|
1910
|
-
return this.
|
|
1956
|
+
return this.fa;
|
|
1911
1957
|
}
|
|
1912
1958
|
set selectAllCaptionTextColor(a) {
|
|
1913
|
-
let b = this.
|
|
1914
|
-
this.
|
|
1915
|
-
if (b != this.
|
|
1916
|
-
this.
|
|
1959
|
+
let b = this.fa;
|
|
1960
|
+
this.fa = a;
|
|
1961
|
+
if (b != this.fa) {
|
|
1962
|
+
this.d8("SelectAllCaptionTextColor", b, a);
|
|
1917
1963
|
}
|
|
1918
1964
|
}
|
|
1919
|
-
get
|
|
1920
|
-
return this.
|
|
1965
|
+
get fc() {
|
|
1966
|
+
return this.eu;
|
|
1921
1967
|
}
|
|
1922
|
-
set
|
|
1923
|
-
let b = this.
|
|
1924
|
-
this.
|
|
1925
|
-
if (b != this.
|
|
1926
|
-
this.
|
|
1968
|
+
set fc(a) {
|
|
1969
|
+
let b = this.eu;
|
|
1970
|
+
this.eu = a;
|
|
1971
|
+
if (b != this.eu) {
|
|
1972
|
+
this.d8("ActualSelectAllCaptionTextColor", b, a);
|
|
1927
1973
|
}
|
|
1928
1974
|
}
|
|
1929
1975
|
get a5() {
|
|
@@ -1948,46 +1994,46 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
1948
1994
|
}
|
|
1949
1995
|
let b = this.a9;
|
|
1950
1996
|
this.a9 = a;
|
|
1951
|
-
this.
|
|
1997
|
+
this.d8("showSelectAll", b, this.a9);
|
|
1952
1998
|
}
|
|
1953
1999
|
get backgroundColor() {
|
|
1954
|
-
return this.
|
|
2000
|
+
return this.ev;
|
|
1955
2001
|
}
|
|
1956
2002
|
set backgroundColor(a) {
|
|
1957
|
-
let b = this.
|
|
1958
|
-
this.
|
|
1959
|
-
if (b != this.
|
|
1960
|
-
this.
|
|
2003
|
+
let b = this.ev;
|
|
2004
|
+
this.ev = a;
|
|
2005
|
+
if (b != this.ev) {
|
|
2006
|
+
this.d8("BackgroundColor", b, a);
|
|
1961
2007
|
}
|
|
1962
2008
|
}
|
|
1963
2009
|
get rowHoverBackgroundColor() {
|
|
1964
|
-
return this.
|
|
2010
|
+
return this.e1;
|
|
1965
2011
|
}
|
|
1966
2012
|
set rowHoverBackgroundColor(a) {
|
|
1967
|
-
let b = this.
|
|
1968
|
-
this.
|
|
1969
|
-
if (b != this.
|
|
1970
|
-
this.
|
|
2013
|
+
let b = this.e1;
|
|
2014
|
+
this.e1 = a;
|
|
2015
|
+
if (b != this.e1) {
|
|
2016
|
+
this.d8("RowHoverBackgroundColor", b, a);
|
|
1971
2017
|
}
|
|
1972
2018
|
}
|
|
1973
|
-
|
|
2019
|
+
fn() {
|
|
1974
2020
|
switch (this.baseTheme) {
|
|
1975
2021
|
case 6:
|
|
1976
|
-
case 4: return CheckboxList.
|
|
2022
|
+
case 4: return CheckboxList.fk;
|
|
1977
2023
|
}
|
|
1978
|
-
return CheckboxList.
|
|
2024
|
+
return CheckboxList.fm;
|
|
1979
2025
|
}
|
|
1980
2026
|
get textColor() {
|
|
1981
|
-
return this.
|
|
2027
|
+
return this.fb;
|
|
1982
2028
|
}
|
|
1983
2029
|
set textColor(a) {
|
|
1984
|
-
let b = this.
|
|
1985
|
-
this.
|
|
1986
|
-
if (b != this.
|
|
1987
|
-
this.
|
|
2030
|
+
let b = this.fb;
|
|
2031
|
+
this.fb = a;
|
|
2032
|
+
if (b != this.fb) {
|
|
2033
|
+
this.d8("TextColor", b, a);
|
|
1988
2034
|
}
|
|
1989
2035
|
}
|
|
1990
|
-
|
|
2036
|
+
ea(a) {
|
|
1991
2037
|
if (this.selectAllCheckboxChanged != null) {
|
|
1992
2038
|
this.selectAllCheckboxChanged(this, ((() => {
|
|
1993
2039
|
let $ret = new SelectAllCheckboxChangedEventArgs();
|
|
@@ -2018,7 +2064,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
2018
2064
|
default: return false;
|
|
2019
2065
|
}
|
|
2020
2066
|
}
|
|
2021
|
-
|
|
2067
|
+
dg() {
|
|
2022
2068
|
let a = this.g.actualDataSource;
|
|
2023
2069
|
if (null != a) {
|
|
2024
2070
|
if (null == a.actualSchema) {
|
|
@@ -2041,7 +2087,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
2041
2087
|
}
|
|
2042
2088
|
let b = this.a7;
|
|
2043
2089
|
this.a7 = a;
|
|
2044
|
-
this.
|
|
2090
|
+
this.d8("ShowFilter", b, this.a7);
|
|
2045
2091
|
}
|
|
2046
2092
|
get a4() {
|
|
2047
2093
|
return this.a3;
|
|
@@ -2052,7 +2098,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
2052
2098
|
}
|
|
2053
2099
|
let b = this.a3;
|
|
2054
2100
|
this.a3 = a;
|
|
2055
|
-
this.
|
|
2101
|
+
this.d8("IsRowHoverEnabled", b, this.a3);
|
|
2056
2102
|
}
|
|
2057
2103
|
get checkboxAlignedRight() {
|
|
2058
2104
|
return this.ay;
|
|
@@ -2063,9 +2109,9 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
2063
2109
|
}
|
|
2064
2110
|
let b = this.ay;
|
|
2065
2111
|
this.ay = a;
|
|
2066
|
-
this.
|
|
2112
|
+
this.d8("CheckboxAlignedRight", b, this.ay);
|
|
2067
2113
|
}
|
|
2068
|
-
|
|
2114
|
+
eh(a) {
|
|
2069
2115
|
this.y = a;
|
|
2070
2116
|
if (a == null) {
|
|
2071
2117
|
return;
|
|
@@ -2073,7 +2119,7 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
2073
2119
|
this.y.d = this.aa;
|
|
2074
2120
|
this.y.p = this.baseTheme;
|
|
2075
2121
|
this.y.t = this.density;
|
|
2076
|
-
this.y.mc = this.
|
|
2122
|
+
this.y.mc = this.fs;
|
|
2077
2123
|
this.y.md = this.searchBorderColor;
|
|
2078
2124
|
this.y.no = this.searchFocusBorderColor;
|
|
2079
2125
|
this.y.n6 = BrushUtil.l(0, 0, 0, 0);
|
|
@@ -2081,12 +2127,12 @@ let CheckboxList = /*@__PURE__*/ (() => {
|
|
|
2081
2127
|
}
|
|
2082
2128
|
}
|
|
2083
2129
|
CheckboxList.$t = /*@__PURE__*/ markType(CheckboxList, 'CheckboxList', Base.$, [INotifyPropertyChanged_$type]);
|
|
2084
|
-
CheckboxList.
|
|
2085
|
-
CheckboxList.
|
|
2086
|
-
CheckboxList.
|
|
2087
|
-
CheckboxList.
|
|
2088
|
-
CheckboxList.
|
|
2089
|
-
CheckboxList.
|
|
2130
|
+
CheckboxList.fy = /*@__PURE__*/ BrushUtil.l(255, 24, 29, 31);
|
|
2131
|
+
CheckboxList.cz = "M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z";
|
|
2132
|
+
CheckboxList.fj = /*@__PURE__*/ BrushUtil.l(255, 248, 248, 248);
|
|
2133
|
+
CheckboxList.fl = null;
|
|
2134
|
+
CheckboxList.fm = /*@__PURE__*/ BrushUtil.l(255, 24, 29, 31);
|
|
2135
|
+
CheckboxList.fk = /*@__PURE__*/ BrushUtil.l(255, 255, 255, 255);
|
|
2090
2136
|
return CheckboxList;
|
|
2091
2137
|
})();
|
|
2092
2138
|
export { CheckboxList };
|