igniteui-webcomponents-data-grids 7.1.0-beta.2 → 7.1.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-webcomponents-data-grids.umd.js +11002 -9831
- package/bundles/igniteui-webcomponents-data-grids.umd.min.js +1 -1
- package/esm2015/lib/AccessibilityRow.js +10 -10
- package/esm2015/lib/CanvasCellPresenterBase.js +12 -12
- package/esm2015/lib/CanvasContentCellModelHelper.js +12 -12
- package/esm2015/lib/CanvasDateTimeCellPresenter.js +8 -8
- package/esm2015/lib/CanvasGridCellBase.js +2 -2
- package/esm2015/lib/CanvasImageCellPresenter.js +9 -9
- package/esm2015/lib/CanvasNumericCellPresenter.js +8 -8
- package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +9 -9
- package/esm2015/lib/CanvasSummaryCellPresenter.js +4 -4
- package/esm2015/lib/CanvasTemplateCellPresenter.js +5 -5
- package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +5 -5
- package/esm2015/lib/CanvasTextCellPresenter.js +9 -9
- package/esm2015/lib/CanvasTextHeaderCellPresenter.js +11 -11
- package/esm2015/lib/CellPath.js +79 -69
- package/esm2015/lib/CellPresenterBase.js +46 -46
- package/esm2015/lib/CheckboxListBridge.js +12 -0
- package/esm2015/lib/CheckboxListView_combined.js +329 -283
- package/esm2015/lib/ColumnChooserView_combined.js +11 -11
- package/esm2015/lib/ColumnFilterCondition_combined.js +7043 -6712
- package/esm2015/lib/ColumnGroupingView_combined.js +5 -5
- package/esm2015/lib/ColumnPinningView_combined.js +11 -11
- package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +7 -7
- package/esm2015/lib/ContentCellModelHelper.js +16 -16
- package/esm2015/lib/DataGridAccessibilityLayoutPanel.js +1 -1
- package/esm2015/lib/DataGridCellLayoutPanel.js +17 -17
- package/esm2015/lib/DataGridScrollerKeyboardListener.js +2 -2
- package/esm2015/lib/DataGridToolbarView_combined.js +2 -2
- package/esm2015/lib/DateTimeCellPresenter.js +9 -9
- package/esm2015/lib/DraggerView.js +1 -7
- package/esm2015/lib/EditorCell.js +290 -290
- package/esm2015/lib/EditorCellPresenter.js +27 -27
- package/esm2015/lib/FilterCell.js +267 -267
- package/esm2015/lib/FilterCellPresenter.js +17 -17
- package/esm2015/lib/GridCellBase.js +210 -202
- package/esm2015/lib/GridColumnFilterOptionsView_combined.js +13 -13
- package/esm2015/lib/GridColumnGroupOptionsView_combined.js +7 -7
- package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
- package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
- package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
- package/esm2015/lib/GridColumnPinOptionsView_combined.js +4 -4
- package/esm2015/lib/GridColumnSortOptionsView_combined.js +2 -2
- package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +7 -7
- package/esm2015/lib/GridExternalWrapper.js +12 -6
- package/esm2015/lib/GridFilterDialogView_combined.js +238 -187
- package/esm2015/lib/ISummaryChooserView_combined.js +4 -4
- package/esm2015/lib/ImageCell.js +58 -58
- package/esm2015/lib/ImageCellPresenter.js +17 -17
- package/esm2015/lib/MultiColumnComboBoxView_combined.js +9 -9
- package/esm2015/lib/NumericCell.js +8 -8
- package/esm2015/lib/NumericCellPresenter.js +9 -9
- package/esm2015/lib/PropertyEditorView_combined.js +19 -19
- package/esm2015/lib/SectionHeaderCell.js +30 -20
- package/esm2015/lib/SectionHeaderCellPresenter.js +10 -10
- package/esm2015/lib/SummaryCell.js +44 -44
- package/esm2015/lib/SummaryCellPresenter.js +9 -9
- package/esm2015/lib/TemplateCell.js +15 -15
- package/esm2015/lib/TemplateCellPresenter.js +6 -6
- package/esm2015/lib/TemplateHeader.js +8 -8
- package/esm2015/lib/TemplateHeaderCell.js +5 -5
- package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
- package/esm2015/lib/TemplateHeaderCellPresenter.js +6 -6
- package/esm2015/lib/TemplateSectionHeader.js +2 -2
- package/esm2015/lib/TextCell.js +31 -30
- package/esm2015/lib/TextCellPresenter.js +10 -10
- package/esm2015/lib/TextHeaderCell.js +181 -175
- package/esm2015/lib/TextHeaderCellPresenter.js +66 -57
- package/esm2015/lib/VerticalSeparatorCell.js +37 -37
- package/esm2015/lib/igc-cell-info.js +195 -186
- package/esm2015/lib/igc-checkbox-list-component.js +42 -22
- package/esm2015/lib/igc-column-moving-separator-component.js +9 -9
- package/esm2015/lib/igc-column-resizing-separator-component.js +6 -6
- package/esm2015/lib/igc-combo-box-column-component.js +10 -10
- package/esm2015/lib/igc-data-binding-event-args.js +3 -0
- package/esm2015/lib/igc-data-grid-column-component.js +336 -276
- package/esm2015/lib/igc-data-grid-component.js +220 -32
- package/esm2015/lib/igc-data-grid-filter-dialog-component.js +67 -37
- package/esm2015/lib/igc-data-grid-toolbar-component.js +40 -8
- package/esm2015/lib/igc-date-time-cell-info.js +12 -12
- package/esm2015/lib/igc-date-time-column-component.js +23 -23
- package/esm2015/lib/igc-definition-base-component.js +64 -64
- package/esm2015/lib/igc-editor-cell-info.js +23 -23
- package/esm2015/lib/igc-filter-cell-info.js +26 -26
- package/esm2015/lib/igc-filter-row-definition-component.js +12 -12
- package/esm2015/lib/igc-header-component.js +24 -24
- package/esm2015/lib/igc-image-cell-info.js +6 -6
- package/esm2015/lib/igc-image-column-component.js +12 -12
- package/esm2015/lib/igc-multi-column-combo-box-component.js +160 -32
- package/esm2015/lib/igc-numeric-cell-info.js +28 -28
- package/esm2015/lib/igc-numeric-column-component.js +38 -38
- package/esm2015/lib/igc-section-header-cell-info.js +6 -6
- package/esm2015/lib/igc-section-header-component.js +36 -36
- package/esm2015/lib/igc-summary-cell-info.js +9 -9
- package/esm2015/lib/igc-summary-row-component.js +30 -30
- package/esm2015/lib/igc-summary-row-root-module.js +2 -0
- package/esm2015/lib/igc-summary-row-section-module.js +2 -0
- package/esm2015/lib/igc-template-cell-info.js +2 -2
- package/esm2015/lib/igc-template-header-cell-info.js +2 -2
- package/esm2015/lib/igc-text-cell-info.js +2 -2
- package/esm2015/lib/igc-text-column-component.js +9 -9
- package/esm2015/lib/igc-text-header-cell-info.js +67 -40
- package/esm5/lib/AccessibilityRow.js +10 -10
- package/esm5/lib/CanvasCellPresenterBase.js +12 -12
- package/esm5/lib/CanvasContentCellModelHelper.js +12 -12
- package/esm5/lib/CanvasDateTimeCellPresenter.js +8 -8
- package/esm5/lib/CanvasGridCellBase.js +2 -2
- package/esm5/lib/CanvasImageCellPresenter.js +9 -9
- package/esm5/lib/CanvasNumericCellPresenter.js +8 -8
- package/esm5/lib/CanvasSectionHeaderCellPresenter.js +9 -9
- package/esm5/lib/CanvasSummaryCellPresenter.js +4 -4
- package/esm5/lib/CanvasTemplateCellPresenter.js +5 -5
- package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +5 -5
- package/esm5/lib/CanvasTextCellPresenter.js +9 -9
- package/esm5/lib/CanvasTextHeaderCellPresenter.js +11 -11
- package/esm5/lib/CellPath.js +79 -65
- package/esm5/lib/CellPresenterBase.js +46 -46
- package/esm5/lib/CheckboxListBridge.js +12 -0
- package/esm5/lib/CheckboxListView_combined.js +332 -278
- package/esm5/lib/ColumnChooserView_combined.js +11 -11
- package/esm5/lib/ColumnFilterCondition_combined.js +6860 -6456
- package/esm5/lib/ColumnGroupingView_combined.js +5 -5
- package/esm5/lib/ColumnPinningView_combined.js +11 -11
- package/esm5/lib/ComparisonOperatorSelectorView_combined.js +7 -7
- package/esm5/lib/ContentCellModelHelper.js +16 -16
- package/esm5/lib/DataGridAccessibilityLayoutPanel.js +1 -1
- package/esm5/lib/DataGridCellLayoutPanel.js +17 -17
- package/esm5/lib/DataGridScrollerKeyboardListener.js +2 -2
- package/esm5/lib/DataGridToolbarView_combined.js +2 -2
- package/esm5/lib/DateTimeCellPresenter.js +9 -9
- package/esm5/lib/DraggerView.js +1 -7
- package/esm5/lib/EditorCell.js +276 -276
- package/esm5/lib/EditorCellPresenter.js +27 -27
- package/esm5/lib/FilterCell.js +257 -257
- package/esm5/lib/FilterCellPresenter.js +17 -17
- package/esm5/lib/GridCellBase.js +205 -193
- package/esm5/lib/GridColumnFilterOptionsView_combined.js +13 -13
- package/esm5/lib/GridColumnGroupOptionsView_combined.js +7 -7
- package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
- package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
- package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
- package/esm5/lib/GridColumnPinOptionsView_combined.js +4 -4
- package/esm5/lib/GridColumnSortOptionsView_combined.js +2 -2
- package/esm5/lib/GridColumnSummaryOptionsView_combined.js +7 -7
- package/esm5/lib/GridExternalWrapper.js +12 -6
- package/esm5/lib/GridFilterDialogView_combined.js +240 -177
- package/esm5/lib/ISummaryChooserView_combined.js +4 -4
- package/esm5/lib/ImageCell.js +57 -57
- package/esm5/lib/ImageCellPresenter.js +17 -17
- package/esm5/lib/MultiColumnComboBoxView_combined.js +9 -9
- package/esm5/lib/NumericCell.js +8 -8
- package/esm5/lib/NumericCellPresenter.js +9 -9
- package/esm5/lib/PropertyEditorView_combined.js +19 -19
- package/esm5/lib/SectionHeaderCell.js +30 -20
- package/esm5/lib/SectionHeaderCellPresenter.js +10 -10
- package/esm5/lib/SummaryCell.js +44 -44
- package/esm5/lib/SummaryCellPresenter.js +9 -9
- package/esm5/lib/TemplateCell.js +15 -15
- package/esm5/lib/TemplateCellPresenter.js +6 -6
- package/esm5/lib/TemplateHeader.js +8 -8
- package/esm5/lib/TemplateHeaderCell.js +5 -5
- package/esm5/lib/TemplateHeaderCellModel.js +17 -17
- package/esm5/lib/TemplateHeaderCellPresenter.js +6 -6
- package/esm5/lib/TemplateSectionHeader.js +2 -2
- package/esm5/lib/TextCell.js +31 -30
- package/esm5/lib/TextCellPresenter.js +10 -10
- package/esm5/lib/TextHeaderCell.js +185 -179
- package/esm5/lib/TextHeaderCellPresenter.js +66 -57
- package/esm5/lib/VerticalSeparatorCell.js +37 -37
- package/esm5/lib/igc-cell-info.js +207 -186
- package/esm5/lib/igc-checkbox-list-component.js +50 -22
- package/esm5/lib/igc-column-moving-separator-component.js +9 -9
- package/esm5/lib/igc-column-resizing-separator-component.js +6 -6
- package/esm5/lib/igc-combo-box-column-component.js +10 -10
- package/esm5/lib/igc-data-binding-event-args.js +3 -0
- package/esm5/lib/igc-data-grid-column-component.js +360 -276
- package/esm5/lib/igc-data-grid-component.js +240 -32
- package/esm5/lib/igc-data-grid-filter-dialog-component.js +79 -37
- package/esm5/lib/igc-data-grid-toolbar-component.js +40 -8
- package/esm5/lib/igc-date-time-cell-info.js +12 -12
- package/esm5/lib/igc-date-time-column-component.js +23 -23
- package/esm5/lib/igc-definition-base-component.js +64 -64
- package/esm5/lib/igc-editor-cell-info.js +23 -23
- package/esm5/lib/igc-filter-cell-info.js +26 -26
- package/esm5/lib/igc-filter-row-definition-component.js +12 -12
- package/esm5/lib/igc-header-component.js +24 -24
- package/esm5/lib/igc-image-cell-info.js +6 -6
- package/esm5/lib/igc-image-column-component.js +12 -12
- package/esm5/lib/igc-multi-column-combo-box-component.js +160 -32
- package/esm5/lib/igc-numeric-cell-info.js +28 -28
- package/esm5/lib/igc-numeric-column-component.js +38 -38
- package/esm5/lib/igc-section-header-cell-info.js +6 -6
- package/esm5/lib/igc-section-header-component.js +36 -36
- package/esm5/lib/igc-summary-cell-info.js +9 -9
- package/esm5/lib/igc-summary-row-component.js +29 -29
- package/esm5/lib/igc-summary-row-root-module.js +2 -0
- package/esm5/lib/igc-summary-row-section-module.js +2 -0
- package/esm5/lib/igc-template-cell-info.js +2 -2
- package/esm5/lib/igc-template-header-cell-info.js +2 -2
- package/esm5/lib/igc-text-cell-info.js +2 -2
- package/esm5/lib/igc-text-column-component.js +9 -9
- package/esm5/lib/igc-text-header-cell-info.js +79 -40
- package/fesm2015/igniteui-webcomponents-data-grids.js +10931 -9949
- package/fesm5/igniteui-webcomponents-data-grids.js +11002 -9831
- package/lib/CellPath.d.ts +21 -20
- package/lib/CheckboxListExternal.d.ts +3 -0
- package/lib/CheckboxListView_combined.d.ts +77 -71
- package/lib/ColumnFilterCondition_combined.d.ts +1759 -1699
- package/lib/EditorCell.d.ts +63 -63
- package/lib/FilterCell.d.ts +55 -55
- package/lib/GridCellBase.d.ts +82 -80
- package/lib/GridExternalWrapper.d.ts +2 -0
- package/lib/GridFilterDialogView_combined.d.ts +61 -52
- package/lib/ImageCell.d.ts +15 -15
- package/lib/NumericCell.d.ts +2 -2
- package/lib/SectionHeaderCell.d.ts +6 -4
- package/lib/SummaryCell.d.ts +10 -10
- package/lib/TemplateCell.d.ts +5 -5
- package/lib/TemplateHeader.d.ts +3 -3
- package/lib/TemplateHeaderCell.d.ts +2 -2
- package/lib/TemplateHeaderCellModel.d.ts +7 -7
- package/lib/TemplateSectionHeader.d.ts +2 -2
- package/lib/TextCell.d.ts +7 -7
- package/lib/TextHeaderCell.d.ts +30 -30
- package/lib/VerticalSeparatorCell.d.ts +8 -8
- package/lib/igc-cell-info.d.ts +3 -0
- package/lib/igc-checkbox-list-component.d.ts +10 -0
- package/lib/igc-data-grid-column-component.d.ts +30 -0
- package/lib/igc-data-grid-component.d.ts +27 -0
- package/lib/igc-data-grid-filter-dialog-component.d.ts +15 -0
- package/lib/igc-summary-row-component.d.ts +2 -2
- package/lib/igc-text-header-cell-info.d.ts +15 -0
- package/package.json +4 -4
|
@@ -38,6 +38,7 @@ import { FilterFactory } from "igniteui-webcomponents-core";
|
|
|
38
38
|
import { CheckboxListKeysClearedEventArgs } from "./CheckboxListKeysClearedEventArgs";
|
|
39
39
|
import { CheckedChangedEventArgs } from "./CheckedChangedEventArgs";
|
|
40
40
|
import { TemplateColumn } from "./TemplateColumn";
|
|
41
|
+
import { CornerRadius } from "igniteui-webcomponents-core";
|
|
41
42
|
import { FastReflectionHelper } from "igniteui-webcomponents-core";
|
|
42
43
|
import { DataSeriesPropertyType_$type } from "igniteui-webcomponents-core";
|
|
43
44
|
import { SvgIconRegistry } from "igniteui-webcomponents-core";
|
|
@@ -106,7 +107,7 @@ export var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
106
107
|
var d = a.getSubRenderer(b);
|
|
107
108
|
c.provideContainer(d);
|
|
108
109
|
var e = d.getExternal(c, d.rootWrapper, d.getExternal(this.c, null, null));
|
|
109
|
-
this.c.
|
|
110
|
+
this.c.eh(c);
|
|
110
111
|
var f = a.createElement("div");
|
|
111
112
|
var g = a.getSubRenderer(f);
|
|
112
113
|
var h = new XPrefix();
|
|
@@ -117,7 +118,7 @@ export var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
117
118
|
this.d = new XIcon();
|
|
118
119
|
this.d.provideContainer(k);
|
|
119
120
|
this.d.fill = this.c.searchIconColor;
|
|
120
|
-
this.d.svgPath = CheckboxList.
|
|
121
|
+
this.d.svgPath = CheckboxList.cz;
|
|
121
122
|
var l = g.getExternal(this.d, k.rootWrapper, k.getExternal(this.c, null, null));
|
|
122
123
|
h.appendContentChild(j);
|
|
123
124
|
c.appendContentChild(f);
|
|
@@ -134,7 +135,7 @@ export var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
134
135
|
}
|
|
135
136
|
this.c.y.appendContentChild(m);
|
|
136
137
|
this.c.y.inputs.add(this.c.w);
|
|
137
|
-
this.c.
|
|
138
|
+
this.c.d5();
|
|
138
139
|
};
|
|
139
140
|
CheckboxListView.prototype.z = function () {
|
|
140
141
|
if (this.j != null) {
|
|
@@ -207,7 +208,7 @@ export var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
207
208
|
finally {
|
|
208
209
|
d.z = h;
|
|
209
210
|
}
|
|
210
|
-
d.dk = this.c.
|
|
211
|
+
d.dk = this.c.fg;
|
|
211
212
|
d.dd = this.c.checkboxCheckedBackgroundColor;
|
|
212
213
|
d.dl = this.c.checkboxUncheckedBackgroundColor;
|
|
213
214
|
d.de = this.c.checkboxCheckedBorderColor;
|
|
@@ -409,21 +410,21 @@ export var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
409
410
|
var e = c.checked;
|
|
410
411
|
if (e == true) {
|
|
411
412
|
if (this.c.indexType == 0) {
|
|
412
|
-
this.c.
|
|
413
|
+
this.c.ek(d);
|
|
413
414
|
}
|
|
414
415
|
else {
|
|
415
|
-
this.c.
|
|
416
|
+
this.c.dd(d);
|
|
416
417
|
}
|
|
417
418
|
}
|
|
418
419
|
else {
|
|
419
420
|
if (this.c.indexType == 0) {
|
|
420
|
-
this.c.
|
|
421
|
+
this.c.dd(d);
|
|
421
422
|
}
|
|
422
423
|
else {
|
|
423
|
-
this.c.
|
|
424
|
+
this.c.ek(d);
|
|
424
425
|
}
|
|
425
426
|
}
|
|
426
|
-
this.c.
|
|
427
|
+
this.c.d1(d, e);
|
|
427
428
|
this.an(false);
|
|
428
429
|
};
|
|
429
430
|
CheckboxListView.prototype.q = function () {
|
|
@@ -437,7 +438,7 @@ export var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
437
438
|
var e = parseInt(d.a4.toString());
|
|
438
439
|
if (e == a) {
|
|
439
440
|
d.checked = b;
|
|
440
|
-
this.c.
|
|
441
|
+
this.c.d1(e, b);
|
|
441
442
|
}
|
|
442
443
|
}
|
|
443
444
|
}
|
|
@@ -498,7 +499,7 @@ export var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
498
499
|
var d = this.j.getExternal(this.b, c.rootWrapper, this.j.getExternal(this.c, null, null));
|
|
499
500
|
this.b.n = this.c.baseTheme;
|
|
500
501
|
this.m = a.createElement("label");
|
|
501
|
-
this.m.setRawText(this.c.
|
|
502
|
+
this.m.setRawText(this.c.c3);
|
|
502
503
|
this.m.setStyleProperty("font-size", "13px");
|
|
503
504
|
this.n.setStyleProperty("display", "flex");
|
|
504
505
|
this.n.setStyleProperty("flex-direction", "row");
|
|
@@ -514,8 +515,8 @@ export var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
514
515
|
};
|
|
515
516
|
CheckboxListView.prototype.am = function () {
|
|
516
517
|
if (null != this.m) {
|
|
517
|
-
this.m.setRawText(this.c.
|
|
518
|
-
NativeUI.r(this.m, this.c.
|
|
518
|
+
this.m.setRawText(this.c.c3);
|
|
519
|
+
NativeUI.r(this.m, this.c.fc);
|
|
519
520
|
}
|
|
520
521
|
};
|
|
521
522
|
CheckboxListView.prototype.ap = function () {
|
|
@@ -566,12 +567,12 @@ export var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
566
567
|
return;
|
|
567
568
|
}
|
|
568
569
|
if (b.isChecked) {
|
|
569
|
-
this.c.
|
|
570
|
-
this.c.
|
|
570
|
+
this.c.en();
|
|
571
|
+
this.c.ea(b.isChecked);
|
|
571
572
|
}
|
|
572
573
|
else {
|
|
573
|
-
this.c.
|
|
574
|
-
this.c.
|
|
574
|
+
this.c.dj();
|
|
575
|
+
this.c.ea(b.isChecked);
|
|
575
576
|
}
|
|
576
577
|
};
|
|
577
578
|
CheckboxListView.prototype.ak = function () {
|
|
@@ -603,7 +604,7 @@ export var CheckboxListView = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
603
604
|
if (this.b == null) {
|
|
604
605
|
return;
|
|
605
606
|
}
|
|
606
|
-
this.b.dk = this.c.
|
|
607
|
+
this.b.dk = this.c.fg;
|
|
607
608
|
this.b.dd = this.c.checkboxCheckedBackgroundColor;
|
|
608
609
|
this.b.dl = this.c.checkboxUncheckedBackgroundColor;
|
|
609
610
|
this.b.de = this.c.checkboxCheckedBorderColor;
|
|
@@ -705,31 +706,33 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
705
706
|
_this.m = 1;
|
|
706
707
|
_this.ae = 1;
|
|
707
708
|
_this.ag = 2;
|
|
708
|
-
_this.
|
|
709
|
-
_this.e1 = null;
|
|
710
|
-
_this.ax = true;
|
|
709
|
+
_this.e8 = BrushUtil.l(255, 24, 29, 31);
|
|
711
710
|
_this.e5 = null;
|
|
712
|
-
_this.
|
|
713
|
-
_this.
|
|
711
|
+
_this.ax = true;
|
|
712
|
+
_this.e9 = null;
|
|
713
|
+
_this.e6 = null;
|
|
714
|
+
_this.e7 = null;
|
|
714
715
|
_this.an = null;
|
|
716
|
+
_this.ey = null;
|
|
715
717
|
_this.ew = null;
|
|
716
|
-
_this.
|
|
718
|
+
_this.ez = null;
|
|
717
719
|
_this.ex = null;
|
|
718
|
-
_this.
|
|
719
|
-
_this.ey = null;
|
|
720
|
+
_this.e0 = null;
|
|
720
721
|
_this.bb = NaN;
|
|
721
722
|
_this.gridColumnProvider = null;
|
|
722
723
|
_this.ac = 0;
|
|
723
|
-
_this.
|
|
724
|
+
_this.e3 = null;
|
|
725
|
+
_this.e4 = null;
|
|
726
|
+
_this.e2 = null;
|
|
724
727
|
_this.indexTypeChanged = null;
|
|
725
728
|
_this.aw = false;
|
|
726
|
-
_this.
|
|
727
|
-
_this.
|
|
728
|
-
_this.
|
|
729
|
+
_this.c2 = null;
|
|
730
|
+
_this.fa = null;
|
|
731
|
+
_this.eu = CheckboxList.fm;
|
|
729
732
|
_this.a9 = true;
|
|
730
|
-
_this.
|
|
731
|
-
_this.
|
|
732
|
-
_this.
|
|
733
|
+
_this.ev = CheckboxList.fj;
|
|
734
|
+
_this.e1 = CheckboxList.fl;
|
|
735
|
+
_this.fb = CheckboxList.fm;
|
|
733
736
|
_this.keysCleared = null;
|
|
734
737
|
_this.selectAllCheckboxChanged = null;
|
|
735
738
|
_this.bm = -1;
|
|
@@ -737,8 +740,8 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
737
740
|
_this.a3 = true;
|
|
738
741
|
_this.ay = false;
|
|
739
742
|
var a = _this.h;
|
|
740
|
-
a.collectionChanged = delegateCombine(a.collectionChanged, runOn(_this, _this.
|
|
741
|
-
_this.h.am(runOn(_this, _this.
|
|
743
|
+
a.collectionChanged = delegateCombine(a.collectionChanged, runOn(_this, _this.ed));
|
|
744
|
+
_this.h.am(runOn(_this, _this.ec));
|
|
742
745
|
_this.d = new FilterFactory();
|
|
743
746
|
var b = new CheckboxListView();
|
|
744
747
|
b.c = _this;
|
|
@@ -812,7 +815,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
812
815
|
var b = this.a;
|
|
813
816
|
this.a = a;
|
|
814
817
|
if (b != this.a) {
|
|
815
|
-
this.
|
|
818
|
+
this.d8("PrimaryKey", b, this.a);
|
|
816
819
|
}
|
|
817
820
|
},
|
|
818
821
|
enumerable: false,
|
|
@@ -833,44 +836,44 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
833
836
|
CheckboxList.prototype.removeSelectedKeyAt = function (a) {
|
|
834
837
|
this.keys.removeAt(a);
|
|
835
838
|
};
|
|
836
|
-
CheckboxList.prototype.
|
|
837
|
-
this.
|
|
839
|
+
CheckboxList.prototype.ec = function () {
|
|
840
|
+
this.dt();
|
|
838
841
|
if (this.keysCleared != null) {
|
|
839
842
|
this.keysCleared(this, new CheckboxListKeysClearedEventArgs());
|
|
840
843
|
}
|
|
841
844
|
};
|
|
842
|
-
CheckboxList.prototype.
|
|
845
|
+
CheckboxList.prototype.ed = function (a, b) {
|
|
843
846
|
if (this.e == null || this.e.actualSchema == null || this.as) {
|
|
844
847
|
return;
|
|
845
848
|
}
|
|
846
849
|
switch (b.action) {
|
|
847
850
|
case 0:
|
|
848
851
|
for (var c = 0; c < b.newItems.count; c++) {
|
|
849
|
-
this.
|
|
852
|
+
this.d6(b.newItems.item(c));
|
|
850
853
|
}
|
|
851
854
|
break;
|
|
852
855
|
case 1:
|
|
853
856
|
for (var d = 0; d < b.oldItems.count; d++) {
|
|
854
|
-
this.
|
|
857
|
+
this.d7(b.oldItems.item(d));
|
|
855
858
|
}
|
|
856
859
|
break;
|
|
857
860
|
case 2:
|
|
858
861
|
for (var e = 0; e < b.oldItems.count; e++) {
|
|
859
|
-
this.
|
|
862
|
+
this.d7(b.oldItems.item(e));
|
|
860
863
|
}
|
|
861
864
|
for (var f = 0; f < b.newItems.count; f++) {
|
|
862
|
-
this.
|
|
865
|
+
this.d6(b.newItems.item(f));
|
|
863
866
|
}
|
|
864
867
|
break;
|
|
865
868
|
case 4:
|
|
866
869
|
this.view.ab(this.indexType == 0);
|
|
867
870
|
for (var g = 0; g < this.keys.ae.count; g++) {
|
|
868
|
-
this.
|
|
871
|
+
this.d6(this.keys.ae._inner[g]);
|
|
869
872
|
}
|
|
870
873
|
break;
|
|
871
874
|
}
|
|
872
875
|
};
|
|
873
|
-
CheckboxList.prototype.
|
|
876
|
+
CheckboxList.prototype.d6 = function (a) {
|
|
874
877
|
var _this = this;
|
|
875
878
|
var b = this.e.indexOfKey(a.value);
|
|
876
879
|
if (b >= 0) {
|
|
@@ -887,7 +890,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
887
890
|
return $ret;
|
|
888
891
|
})()));
|
|
889
892
|
};
|
|
890
|
-
CheckboxList.prototype.
|
|
893
|
+
CheckboxList.prototype.d7 = function (a) {
|
|
891
894
|
var _this = this;
|
|
892
895
|
var b = this.e.indexOfKey(a.value);
|
|
893
896
|
if (b >= 0) {
|
|
@@ -904,7 +907,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
904
907
|
return $ret;
|
|
905
908
|
})()));
|
|
906
909
|
};
|
|
907
|
-
CheckboxList.prototype.
|
|
910
|
+
CheckboxList.prototype.d1 = function (a, b) {
|
|
908
911
|
if (this.checkedChanged != null && this.at == false) {
|
|
909
912
|
var c_1 = null;
|
|
910
913
|
if (this.e.actualPrimaryKey != null && this.e.actualPrimaryKey.length > 0) {
|
|
@@ -929,58 +932,58 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
929
932
|
this.av = false;
|
|
930
933
|
if (this.g != null) {
|
|
931
934
|
var a = this.g;
|
|
932
|
-
a.cellClicked = delegateCombine(a.cellClicked, runOn(this, this.
|
|
935
|
+
a.cellClicked = delegateCombine(a.cellClicked, runOn(this, this.dn));
|
|
933
936
|
var b = this.g;
|
|
934
|
-
b.sizeChanged = delegateCombine(b.sizeChanged, runOn(this, this.
|
|
937
|
+
b.sizeChanged = delegateCombine(b.sizeChanged, runOn(this, this.dp));
|
|
935
938
|
if (this.g.actualDataSource != null) {
|
|
936
939
|
var c = this.g.actualDataSource;
|
|
937
|
-
c.schemaChanged = delegateCombine(c.schemaChanged, runOn(this, this.
|
|
940
|
+
c.schemaChanged = delegateCombine(c.schemaChanged, runOn(this, this.d9));
|
|
938
941
|
}
|
|
939
942
|
}
|
|
940
943
|
if (this.v != null) {
|
|
941
944
|
var d = this.v;
|
|
942
|
-
d.changing = delegateCombine(d.changing, runOn(this, this.
|
|
945
|
+
d.changing = delegateCombine(d.changing, runOn(this, this.dr));
|
|
943
946
|
}
|
|
944
947
|
if (this.k != null) {
|
|
945
948
|
var e = this.k;
|
|
946
|
-
e.cellUpdating = delegateCombine(e.cellUpdating, runOn(this, this.
|
|
949
|
+
e.cellUpdating = delegateCombine(e.cellUpdating, runOn(this, this.dh));
|
|
947
950
|
}
|
|
948
951
|
};
|
|
949
952
|
CheckboxList.prototype.onDetachedFromUI = function () {
|
|
950
953
|
this.av = true;
|
|
951
|
-
this.
|
|
952
|
-
this.
|
|
954
|
+
this.dm();
|
|
955
|
+
this.dl();
|
|
953
956
|
};
|
|
954
|
-
CheckboxList.prototype.
|
|
957
|
+
CheckboxList.prototype.dm = function () {
|
|
955
958
|
if (this.g != null) {
|
|
956
959
|
var a = this.g;
|
|
957
|
-
a.cellClicked = delegateRemove(a.cellClicked, runOn(this, this.
|
|
960
|
+
a.cellClicked = delegateRemove(a.cellClicked, runOn(this, this.dn));
|
|
958
961
|
var b = this.g;
|
|
959
|
-
b.sizeChanged = delegateRemove(b.sizeChanged, runOn(this, this.
|
|
962
|
+
b.sizeChanged = delegateRemove(b.sizeChanged, runOn(this, this.dp));
|
|
960
963
|
if (this.g.actualDataSource != null) {
|
|
961
964
|
var c = this.g.actualDataSource;
|
|
962
|
-
c.schemaChanged = delegateRemove(c.schemaChanged, runOn(this, this.
|
|
965
|
+
c.schemaChanged = delegateRemove(c.schemaChanged, runOn(this, this.d9));
|
|
963
966
|
}
|
|
964
967
|
}
|
|
965
968
|
if (this.v != null) {
|
|
966
969
|
var d = this.v;
|
|
967
|
-
d.changing = delegateRemove(d.changing, runOn(this, this.
|
|
970
|
+
d.changing = delegateRemove(d.changing, runOn(this, this.dr));
|
|
968
971
|
}
|
|
969
972
|
};
|
|
970
|
-
CheckboxList.prototype.
|
|
973
|
+
CheckboxList.prototype.dl = function () {
|
|
971
974
|
if (this.k != null) {
|
|
972
975
|
var a = this.k;
|
|
973
|
-
a.cellUpdating = delegateRemove(a.cellUpdating, runOn(this, this.
|
|
976
|
+
a.cellUpdating = delegateRemove(a.cellUpdating, runOn(this, this.dh));
|
|
974
977
|
}
|
|
975
978
|
};
|
|
976
979
|
CheckboxList.prototype.destroy = function () {
|
|
977
980
|
this.au = true;
|
|
978
981
|
if (!this.av) {
|
|
979
|
-
this.
|
|
982
|
+
this.dm();
|
|
980
983
|
}
|
|
981
984
|
this.provideContainer(null, null, null);
|
|
982
985
|
if (!this.av) {
|
|
983
|
-
this.
|
|
986
|
+
this.dl();
|
|
984
987
|
}
|
|
985
988
|
};
|
|
986
989
|
Object.defineProperty(CheckboxList.prototype, "a0", {
|
|
@@ -995,8 +998,10 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
995
998
|
if (null != this.g) {
|
|
996
999
|
this.g.scrollbarStyle = 1;
|
|
997
1000
|
var d = this.g;
|
|
998
|
-
d.sizeChanged = delegateCombine(d.sizeChanged, runOn(this, this.
|
|
999
|
-
this.g.scrollbarBackground = this.
|
|
1001
|
+
d.sizeChanged = delegateCombine(d.sizeChanged, runOn(this, this.dp));
|
|
1002
|
+
this.g.scrollbarBackground = this.scrollbarBackground;
|
|
1003
|
+
this.g.scrollbarHoverBackground = this.scrollbarHoverBackground;
|
|
1004
|
+
this.g.scrollbarActiveBackground = this.scrollbarActiveBackground;
|
|
1000
1005
|
this.g.headerHeight = 0;
|
|
1001
1006
|
this.g.rowSeparatorHeight = 0;
|
|
1002
1007
|
this.g.defaultColumnMinWidth = NaN;
|
|
@@ -1004,39 +1009,41 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1004
1009
|
this.g.activationMode = 0;
|
|
1005
1010
|
this.g.selectionMode = 0;
|
|
1006
1011
|
this.g.editMode = 0;
|
|
1012
|
+
this.g.borderWidth = new Thickness(0, 0);
|
|
1013
|
+
this.g.cornerRadius = new CornerRadius(0, 0);
|
|
1007
1014
|
var e = this.g;
|
|
1008
|
-
e.cellClicked = delegateCombine(e.cellClicked, runOn(this, this.
|
|
1015
|
+
e.cellClicked = delegateCombine(e.cellClicked, runOn(this, this.dn));
|
|
1009
1016
|
if (this.bp != null) {
|
|
1010
1017
|
this.g.itemsSource = this.bp;
|
|
1011
|
-
this.
|
|
1012
|
-
this.
|
|
1018
|
+
this.dg();
|
|
1019
|
+
this.eb();
|
|
1013
1020
|
}
|
|
1014
1021
|
if (this.bt != null) {
|
|
1015
|
-
this.
|
|
1016
|
-
this.
|
|
1022
|
+
this.eb();
|
|
1023
|
+
this.eq();
|
|
1017
1024
|
}
|
|
1018
1025
|
}
|
|
1019
1026
|
this.view.w(c);
|
|
1020
1027
|
if (this.checkboxAlignedRight) {
|
|
1021
|
-
this.
|
|
1028
|
+
this.es();
|
|
1022
1029
|
}
|
|
1023
1030
|
this.view.r(a);
|
|
1024
1031
|
};
|
|
1025
|
-
CheckboxList.prototype.
|
|
1032
|
+
CheckboxList.prototype.dp = function (a, b) {
|
|
1026
1033
|
this.g.scrollbarStyle = this.ad;
|
|
1027
1034
|
};
|
|
1028
1035
|
CheckboxList.prototype.provideSelectAllSection = function (a) {
|
|
1029
1036
|
this.view.w(a);
|
|
1030
1037
|
};
|
|
1031
|
-
CheckboxList.prototype.
|
|
1032
|
-
if (!this.checkboxAlignedRight && b.cellInfo.l.
|
|
1038
|
+
CheckboxList.prototype.dn = function (a, b) {
|
|
1039
|
+
if (!this.checkboxAlignedRight && b.cellInfo.l.a6 == 0 || this.checkboxAlignedRight && b.cellInfo.l.a6 == 1) {
|
|
1033
1040
|
return;
|
|
1034
1041
|
}
|
|
1035
1042
|
var c = b.cellInfo.l.x;
|
|
1036
1043
|
if (-1 == c) {
|
|
1037
1044
|
return;
|
|
1038
1045
|
}
|
|
1039
|
-
var d = b.cellInfo.
|
|
1046
|
+
var d = b.cellInfo.im;
|
|
1040
1047
|
var e = this.j(d);
|
|
1041
1048
|
if (this.labelClickTriggersChange) {
|
|
1042
1049
|
if (this.keys.contains(e)) {
|
|
@@ -1052,9 +1059,9 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1052
1059
|
this.keys.add(e);
|
|
1053
1060
|
}
|
|
1054
1061
|
}
|
|
1055
|
-
this.
|
|
1062
|
+
this.dw(c, this.keys.contains(e));
|
|
1056
1063
|
};
|
|
1057
|
-
CheckboxList.prototype.
|
|
1064
|
+
CheckboxList.prototype.dw = function (a, b) {
|
|
1058
1065
|
var c = null;
|
|
1059
1066
|
if (this.e.actualPrimaryKey != null && this.e.actualPrimaryKey.length > 0) {
|
|
1060
1067
|
c = new Array(this.e.actualPrimaryKey.length);
|
|
@@ -1073,21 +1080,21 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1073
1080
|
return $ret;
|
|
1074
1081
|
})()));
|
|
1075
1082
|
};
|
|
1076
|
-
CheckboxList.prototype.
|
|
1083
|
+
CheckboxList.prototype.dh = function (a, b) {
|
|
1077
1084
|
var c = b.cellInfo.l.x;
|
|
1078
1085
|
if (-1 == c) {
|
|
1079
1086
|
return;
|
|
1080
1087
|
}
|
|
1081
1088
|
var d = false;
|
|
1082
|
-
if (b.cellInfo.
|
|
1083
|
-
var e = this.j(b.cellInfo.
|
|
1089
|
+
if (b.cellInfo.im != null) {
|
|
1090
|
+
var e = this.j(b.cellInfo.im);
|
|
1084
1091
|
if (this.keys.contains(e)) {
|
|
1085
1092
|
d = true;
|
|
1086
1093
|
}
|
|
1087
1094
|
}
|
|
1088
1095
|
this.view.t(b.content.element, c, d);
|
|
1089
1096
|
};
|
|
1090
|
-
CheckboxList.prototype.
|
|
1097
|
+
CheckboxList.prototype.er = function (a, b) {
|
|
1091
1098
|
var c = b.cellInfo.l.x;
|
|
1092
1099
|
if (-1 == c) {
|
|
1093
1100
|
return;
|
|
@@ -1097,13 +1104,13 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1097
1104
|
var f = null;
|
|
1098
1105
|
var g = null;
|
|
1099
1106
|
var h = null;
|
|
1100
|
-
if (b.cellInfo.
|
|
1101
|
-
d = this.ai.getPropertyValue(b.cellInfo.
|
|
1107
|
+
if (b.cellInfo.im != null) {
|
|
1108
|
+
d = this.ai.getPropertyValue(b.cellInfo.im);
|
|
1102
1109
|
if (this.al != null) {
|
|
1103
|
-
e = this.al.getPropertyValue(b.cellInfo.
|
|
1110
|
+
e = this.al.getPropertyValue(b.cellInfo.im);
|
|
1104
1111
|
}
|
|
1105
1112
|
if (this.aj != null) {
|
|
1106
|
-
var i = EnumUtil.getEnumValue(DataSeriesPropertyType_$type, this.aj.getPropertyValue(b.cellInfo.
|
|
1113
|
+
var i = EnumUtil.getEnumValue(DataSeriesPropertyType_$type, this.aj.getPropertyValue(b.cellInfo.im));
|
|
1107
1114
|
if (i == 0) {
|
|
1108
1115
|
h = SvgIconRegistry.instance.getSvgPathString("ChartToolbarIcons", "string-field");
|
|
1109
1116
|
}
|
|
@@ -1117,7 +1124,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1117
1124
|
}
|
|
1118
1125
|
this.view.u(b.content.element, c, d, e, this.am, "Verdana", 13, this.bo, f, g, h);
|
|
1119
1126
|
};
|
|
1120
|
-
CheckboxList.prototype.
|
|
1127
|
+
CheckboxList.prototype.d3 = function (a) {
|
|
1121
1128
|
if (this.bt != null) {
|
|
1122
1129
|
var b = this.d.property(this.bt).cast(enumGetBox(DataSourceSchemaPropertyType_$type, 0)).toLower();
|
|
1123
1130
|
var c = b.contains(a);
|
|
@@ -1139,7 +1146,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1139
1146
|
var b = this.bp;
|
|
1140
1147
|
this.bp = a;
|
|
1141
1148
|
if (b != this.bp) {
|
|
1142
|
-
this.
|
|
1149
|
+
this.d8("ItemsSource", b, this.bp);
|
|
1143
1150
|
}
|
|
1144
1151
|
},
|
|
1145
1152
|
enumerable: false,
|
|
@@ -1153,7 +1160,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1153
1160
|
var b = this.bt;
|
|
1154
1161
|
this.bt = a;
|
|
1155
1162
|
if (b != this.bt) {
|
|
1156
|
-
this.
|
|
1163
|
+
this.d8("DataMemberPath", b, this.bt);
|
|
1157
1164
|
}
|
|
1158
1165
|
},
|
|
1159
1166
|
enumerable: false,
|
|
@@ -1167,7 +1174,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1167
1174
|
var b = this.bo;
|
|
1168
1175
|
this.bo = a;
|
|
1169
1176
|
if (b != this.bo) {
|
|
1170
|
-
this.
|
|
1177
|
+
this.d8("DataLegendTarget", b, this.bo);
|
|
1171
1178
|
}
|
|
1172
1179
|
},
|
|
1173
1180
|
enumerable: false,
|
|
@@ -1181,7 +1188,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1181
1188
|
var b = this.bx;
|
|
1182
1189
|
this.bx = a;
|
|
1183
1190
|
if (b != this.bx) {
|
|
1184
|
-
this.
|
|
1191
|
+
this.d8("SubtitleMemberPath", b, this.bx);
|
|
1185
1192
|
}
|
|
1186
1193
|
},
|
|
1187
1194
|
enumerable: false,
|
|
@@ -1195,7 +1202,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1195
1202
|
var b = this.bv;
|
|
1196
1203
|
this.bv = a;
|
|
1197
1204
|
if (b != this.bv) {
|
|
1198
|
-
this.
|
|
1205
|
+
this.d8("PropertyTypeMemberPath", b, this.bv);
|
|
1199
1206
|
}
|
|
1200
1207
|
},
|
|
1201
1208
|
enumerable: false,
|
|
@@ -1209,7 +1216,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1209
1216
|
var b = this.bw;
|
|
1210
1217
|
this.bw = a;
|
|
1211
1218
|
if (b != this.bw) {
|
|
1212
|
-
this.
|
|
1219
|
+
this.d8("SelectedMemberPath", b, this.bw);
|
|
1213
1220
|
}
|
|
1214
1221
|
},
|
|
1215
1222
|
enumerable: false,
|
|
@@ -1223,7 +1230,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1223
1230
|
var b = this.bu;
|
|
1224
1231
|
this.bu = a;
|
|
1225
1232
|
if (b != this.bu) {
|
|
1226
|
-
this.
|
|
1233
|
+
this.d8("FilterPlaceholderText", b, this.bu);
|
|
1227
1234
|
}
|
|
1228
1235
|
},
|
|
1229
1236
|
enumerable: false,
|
|
@@ -1237,7 +1244,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1237
1244
|
var b = this.z;
|
|
1238
1245
|
this.z = a;
|
|
1239
1246
|
if (b != this.z) {
|
|
1240
|
-
this.
|
|
1247
|
+
this.d8("SearchInputType", enumGetBox(InputGroupDisplayType_$type, b), enumGetBox(InputGroupDisplayType_$type, this.z));
|
|
1241
1248
|
}
|
|
1242
1249
|
},
|
|
1243
1250
|
enumerable: false,
|
|
@@ -1251,7 +1258,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1251
1258
|
var b = this.bk;
|
|
1252
1259
|
this.bk = a;
|
|
1253
1260
|
if (b != this.bk) {
|
|
1254
|
-
this.
|
|
1261
|
+
this.d8("RowHeight", b, this.bk);
|
|
1255
1262
|
}
|
|
1256
1263
|
},
|
|
1257
1264
|
enumerable: false,
|
|
@@ -1287,7 +1294,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1287
1294
|
var b = this.am;
|
|
1288
1295
|
this.am = a;
|
|
1289
1296
|
if (b != this.am) {
|
|
1290
|
-
this.
|
|
1297
|
+
this.d8("CellTextStyle", b, this.am);
|
|
1291
1298
|
}
|
|
1292
1299
|
},
|
|
1293
1300
|
enumerable: false,
|
|
@@ -1301,7 +1308,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1301
1308
|
var b = this.m;
|
|
1302
1309
|
this.m = a;
|
|
1303
1310
|
if (b != this.m) {
|
|
1304
|
-
this.
|
|
1311
|
+
this.d8("IndexType", enumGetBox(CheckboxListIndexType_$type, b), enumGetBox(CheckboxListIndexType_$type, this.m));
|
|
1305
1312
|
}
|
|
1306
1313
|
},
|
|
1307
1314
|
enumerable: false,
|
|
@@ -1315,7 +1322,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1315
1322
|
var b = this.ae;
|
|
1316
1323
|
this.ae = a;
|
|
1317
1324
|
if (b != this.ae) {
|
|
1318
|
-
this.
|
|
1325
|
+
this.d8("BaseTheme", enumGetBox(BaseControlTheme_$type, b), enumGetBox(BaseControlTheme_$type, this.ae));
|
|
1319
1326
|
}
|
|
1320
1327
|
},
|
|
1321
1328
|
enumerable: false,
|
|
@@ -1329,7 +1336,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1329
1336
|
var b = this.ag;
|
|
1330
1337
|
this.ag = a;
|
|
1331
1338
|
if (b != this.ag) {
|
|
1332
|
-
this.
|
|
1339
|
+
this.d8("Density", enumGetBox(ControlDisplayDensity_$type, b), enumGetBox(ControlDisplayDensity_$type, this.ag));
|
|
1333
1340
|
}
|
|
1334
1341
|
},
|
|
1335
1342
|
enumerable: false,
|
|
@@ -1337,27 +1344,27 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1337
1344
|
});
|
|
1338
1345
|
Object.defineProperty(CheckboxList.prototype, "searchIconColor", {
|
|
1339
1346
|
get: function () {
|
|
1340
|
-
return this.
|
|
1347
|
+
return this.e8;
|
|
1341
1348
|
},
|
|
1342
1349
|
set: function (a) {
|
|
1343
|
-
var b = this.
|
|
1344
|
-
this.
|
|
1345
|
-
if (b != this.
|
|
1346
|
-
this.
|
|
1350
|
+
var b = this.e8;
|
|
1351
|
+
this.e8 = a;
|
|
1352
|
+
if (b != this.e8) {
|
|
1353
|
+
this.d8("SearchIconColor", b, this.e8);
|
|
1347
1354
|
}
|
|
1348
1355
|
},
|
|
1349
1356
|
enumerable: false,
|
|
1350
1357
|
configurable: true
|
|
1351
1358
|
});
|
|
1352
|
-
Object.defineProperty(CheckboxList.prototype, "
|
|
1359
|
+
Object.defineProperty(CheckboxList.prototype, "fs", {
|
|
1353
1360
|
get: function () {
|
|
1354
|
-
return this.
|
|
1361
|
+
return this.e5;
|
|
1355
1362
|
},
|
|
1356
1363
|
set: function (a) {
|
|
1357
|
-
var b = this.
|
|
1358
|
-
this.
|
|
1359
|
-
if (b != this.
|
|
1360
|
-
this.
|
|
1364
|
+
var b = this.e5;
|
|
1365
|
+
this.e5 = a;
|
|
1366
|
+
if (b != this.e5) {
|
|
1367
|
+
this.d8("SearchBackgroundColor", b, this.e5);
|
|
1361
1368
|
}
|
|
1362
1369
|
},
|
|
1363
1370
|
enumerable: false,
|
|
@@ -1371,7 +1378,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1371
1378
|
var b = this.ax;
|
|
1372
1379
|
this.ax = a;
|
|
1373
1380
|
if (b != this.ax) {
|
|
1374
|
-
this.
|
|
1381
|
+
this.d8("LabelClickTriggersChange", b, this.ax);
|
|
1375
1382
|
}
|
|
1376
1383
|
},
|
|
1377
1384
|
enumerable: false,
|
|
@@ -1379,13 +1386,13 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1379
1386
|
});
|
|
1380
1387
|
Object.defineProperty(CheckboxList.prototype, "searchTextColor", {
|
|
1381
1388
|
get: function () {
|
|
1382
|
-
return this.
|
|
1389
|
+
return this.e9;
|
|
1383
1390
|
},
|
|
1384
1391
|
set: function (a) {
|
|
1385
|
-
var b = this.
|
|
1386
|
-
this.
|
|
1387
|
-
if (b != this.
|
|
1388
|
-
this.
|
|
1392
|
+
var b = this.e9;
|
|
1393
|
+
this.e9 = a;
|
|
1394
|
+
if (b != this.e9) {
|
|
1395
|
+
this.d8("SearchTextColor", b, this.e9);
|
|
1389
1396
|
}
|
|
1390
1397
|
},
|
|
1391
1398
|
enumerable: false,
|
|
@@ -1393,13 +1400,13 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1393
1400
|
});
|
|
1394
1401
|
Object.defineProperty(CheckboxList.prototype, "searchBorderColor", {
|
|
1395
1402
|
get: function () {
|
|
1396
|
-
return this.
|
|
1403
|
+
return this.e6;
|
|
1397
1404
|
},
|
|
1398
1405
|
set: function (a) {
|
|
1399
|
-
var b = this.
|
|
1400
|
-
this.
|
|
1401
|
-
if (b != this.
|
|
1402
|
-
this.
|
|
1406
|
+
var b = this.e6;
|
|
1407
|
+
this.e6 = a;
|
|
1408
|
+
if (b != this.e6) {
|
|
1409
|
+
this.d8("SearchBorderColor", b, this.e6);
|
|
1403
1410
|
}
|
|
1404
1411
|
},
|
|
1405
1412
|
enumerable: false,
|
|
@@ -1407,13 +1414,13 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1407
1414
|
});
|
|
1408
1415
|
Object.defineProperty(CheckboxList.prototype, "searchFocusBorderColor", {
|
|
1409
1416
|
get: function () {
|
|
1410
|
-
return this.
|
|
1417
|
+
return this.e7;
|
|
1411
1418
|
},
|
|
1412
1419
|
set: function (a) {
|
|
1413
|
-
var b = this.
|
|
1414
|
-
this.
|
|
1415
|
-
if (b != this.
|
|
1416
|
-
this.
|
|
1420
|
+
var b = this.e7;
|
|
1421
|
+
this.e7 = a;
|
|
1422
|
+
if (b != this.e7) {
|
|
1423
|
+
this.d8("SearchFocusBorderColor", b, this.e7);
|
|
1417
1424
|
}
|
|
1418
1425
|
},
|
|
1419
1426
|
enumerable: false,
|
|
@@ -1427,21 +1434,21 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1427
1434
|
var b = this.an;
|
|
1428
1435
|
this.an = a;
|
|
1429
1436
|
if (b != this.an) {
|
|
1430
|
-
this.
|
|
1437
|
+
this.d8("SearchTextStyle", b, this.an);
|
|
1431
1438
|
}
|
|
1432
1439
|
},
|
|
1433
1440
|
enumerable: false,
|
|
1434
1441
|
configurable: true
|
|
1435
1442
|
});
|
|
1436
|
-
Object.defineProperty(CheckboxList.prototype, "
|
|
1443
|
+
Object.defineProperty(CheckboxList.prototype, "fg", {
|
|
1437
1444
|
get: function () {
|
|
1438
|
-
return this.
|
|
1445
|
+
return this.ey;
|
|
1439
1446
|
},
|
|
1440
1447
|
set: function (a) {
|
|
1441
|
-
var b = this.
|
|
1442
|
-
this.
|
|
1443
|
-
if (b != this.
|
|
1444
|
-
this.
|
|
1448
|
+
var b = this.ey;
|
|
1449
|
+
this.ey = a;
|
|
1450
|
+
if (b != this.ey) {
|
|
1451
|
+
this.d8("CheckboxTickColor", b, this.ey);
|
|
1445
1452
|
}
|
|
1446
1453
|
},
|
|
1447
1454
|
enumerable: false,
|
|
@@ -1449,13 +1456,13 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1449
1456
|
});
|
|
1450
1457
|
Object.defineProperty(CheckboxList.prototype, "checkboxCheckedBackgroundColor", {
|
|
1451
1458
|
get: function () {
|
|
1452
|
-
return this.
|
|
1459
|
+
return this.ew;
|
|
1453
1460
|
},
|
|
1454
1461
|
set: function (a) {
|
|
1455
|
-
var b = this.
|
|
1456
|
-
this.
|
|
1457
|
-
if (b != this.
|
|
1458
|
-
this.
|
|
1462
|
+
var b = this.ew;
|
|
1463
|
+
this.ew = a;
|
|
1464
|
+
if (b != this.ew) {
|
|
1465
|
+
this.d8("CheckboxCheckedBackgroundColor", b, this.ew);
|
|
1459
1466
|
}
|
|
1460
1467
|
},
|
|
1461
1468
|
enumerable: false,
|
|
@@ -1463,13 +1470,13 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1463
1470
|
});
|
|
1464
1471
|
Object.defineProperty(CheckboxList.prototype, "checkboxUncheckedBackgroundColor", {
|
|
1465
1472
|
get: function () {
|
|
1466
|
-
return this.
|
|
1473
|
+
return this.ez;
|
|
1467
1474
|
},
|
|
1468
1475
|
set: function (a) {
|
|
1469
|
-
var b = this.
|
|
1470
|
-
this.
|
|
1471
|
-
if (b != this.
|
|
1472
|
-
this.
|
|
1476
|
+
var b = this.ez;
|
|
1477
|
+
this.ez = a;
|
|
1478
|
+
if (b != this.ez) {
|
|
1479
|
+
this.d8("CheckboxUncheckedBackgroundColor", b, this.ez);
|
|
1473
1480
|
}
|
|
1474
1481
|
},
|
|
1475
1482
|
enumerable: false,
|
|
@@ -1477,13 +1484,13 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1477
1484
|
});
|
|
1478
1485
|
Object.defineProperty(CheckboxList.prototype, "checkboxCheckedBorderColor", {
|
|
1479
1486
|
get: function () {
|
|
1480
|
-
return this.
|
|
1487
|
+
return this.ex;
|
|
1481
1488
|
},
|
|
1482
1489
|
set: function (a) {
|
|
1483
|
-
var b = this.
|
|
1484
|
-
this.
|
|
1485
|
-
if (b != this.
|
|
1486
|
-
this.
|
|
1490
|
+
var b = this.ex;
|
|
1491
|
+
this.ex = a;
|
|
1492
|
+
if (b != this.ex) {
|
|
1493
|
+
this.d8("CheckboxCheckedBorderColor", b, this.ex);
|
|
1487
1494
|
}
|
|
1488
1495
|
},
|
|
1489
1496
|
enumerable: false,
|
|
@@ -1491,13 +1498,13 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1491
1498
|
});
|
|
1492
1499
|
Object.defineProperty(CheckboxList.prototype, "checkboxUncheckedBorderColor", {
|
|
1493
1500
|
get: function () {
|
|
1494
|
-
return this.
|
|
1501
|
+
return this.e0;
|
|
1495
1502
|
},
|
|
1496
1503
|
set: function (a) {
|
|
1497
|
-
var b = this.
|
|
1498
|
-
this.
|
|
1499
|
-
if (b != this.
|
|
1500
|
-
this.
|
|
1504
|
+
var b = this.e0;
|
|
1505
|
+
this.e0 = a;
|
|
1506
|
+
if (b != this.e0) {
|
|
1507
|
+
this.d8("CheckboxUncheckedBorderColor", b, this.e0);
|
|
1501
1508
|
}
|
|
1502
1509
|
},
|
|
1503
1510
|
enumerable: false,
|
|
@@ -1511,7 +1518,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1511
1518
|
var b = this.bb;
|
|
1512
1519
|
this.bb = a;
|
|
1513
1520
|
if (b != this.bb) {
|
|
1514
|
-
this.
|
|
1521
|
+
this.d8("CheckboxCornerRadius", b, this.bb);
|
|
1515
1522
|
}
|
|
1516
1523
|
},
|
|
1517
1524
|
enumerable: false,
|
|
@@ -1525,42 +1532,70 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1525
1532
|
var b = this.ac;
|
|
1526
1533
|
this.ac = a;
|
|
1527
1534
|
if (b != this.ac) {
|
|
1528
|
-
this.
|
|
1535
|
+
this.d8("ScrollbarStyle", enumGetBox(ScrollbarStyle_$type, b), enumGetBox(ScrollbarStyle_$type, this.ac));
|
|
1529
1536
|
}
|
|
1530
1537
|
},
|
|
1531
1538
|
enumerable: false,
|
|
1532
1539
|
configurable: true
|
|
1533
1540
|
});
|
|
1534
|
-
Object.defineProperty(CheckboxList.prototype, "
|
|
1541
|
+
Object.defineProperty(CheckboxList.prototype, "scrollbarBackground", {
|
|
1535
1542
|
get: function () {
|
|
1536
|
-
return this.
|
|
1543
|
+
return this.e3;
|
|
1537
1544
|
},
|
|
1538
1545
|
set: function (a) {
|
|
1539
|
-
var b = this.
|
|
1540
|
-
this.
|
|
1541
|
-
if (b != this.
|
|
1542
|
-
this.
|
|
1546
|
+
var b = this.e3;
|
|
1547
|
+
this.e3 = a;
|
|
1548
|
+
if (b != this.e3) {
|
|
1549
|
+
this.d8("ScrollbarBackground", b, this.e3);
|
|
1543
1550
|
}
|
|
1544
1551
|
},
|
|
1545
1552
|
enumerable: false,
|
|
1546
1553
|
configurable: true
|
|
1547
1554
|
});
|
|
1548
|
-
CheckboxList.prototype
|
|
1555
|
+
Object.defineProperty(CheckboxList.prototype, "scrollbarHoverBackground", {
|
|
1556
|
+
get: function () {
|
|
1557
|
+
return this.e4;
|
|
1558
|
+
},
|
|
1559
|
+
set: function (a) {
|
|
1560
|
+
var b = this.e4;
|
|
1561
|
+
this.e4 = a;
|
|
1562
|
+
if (b != this.e4) {
|
|
1563
|
+
this.d8("ScrollbarHoverBackground", b, this.e4);
|
|
1564
|
+
}
|
|
1565
|
+
},
|
|
1566
|
+
enumerable: false,
|
|
1567
|
+
configurable: true
|
|
1568
|
+
});
|
|
1569
|
+
Object.defineProperty(CheckboxList.prototype, "scrollbarActiveBackground", {
|
|
1570
|
+
get: function () {
|
|
1571
|
+
return this.e2;
|
|
1572
|
+
},
|
|
1573
|
+
set: function (a) {
|
|
1574
|
+
var b = this.e2;
|
|
1575
|
+
this.e2 = a;
|
|
1576
|
+
if (b != this.e2) {
|
|
1577
|
+
this.d8("ScrollbarActiveBackground", b, this.e2);
|
|
1578
|
+
}
|
|
1579
|
+
},
|
|
1580
|
+
enumerable: false,
|
|
1581
|
+
configurable: true
|
|
1582
|
+
});
|
|
1583
|
+
CheckboxList.prototype.d8 = function (a, b, c) {
|
|
1549
1584
|
if (this.propertyChanged != null) {
|
|
1550
1585
|
this.propertyChanged(this, new PropertyChangedEventArgs(a));
|
|
1551
1586
|
}
|
|
1552
|
-
this.
|
|
1587
|
+
this.ee(a, b, c);
|
|
1553
1588
|
};
|
|
1554
|
-
CheckboxList.prototype.
|
|
1589
|
+
CheckboxList.prototype.ee = function (a, b, c) {
|
|
1555
1590
|
switch (a) {
|
|
1556
1591
|
case "IndexType":
|
|
1557
1592
|
this.keys.clear();
|
|
1558
|
-
this.
|
|
1593
|
+
this.dt();
|
|
1559
1594
|
if (this.keysCleared != null) {
|
|
1560
1595
|
this.keysCleared(this, new CheckboxListKeysClearedEventArgs());
|
|
1561
1596
|
}
|
|
1562
1597
|
this.view.an();
|
|
1563
|
-
this.
|
|
1598
|
+
this.d4(b, c);
|
|
1564
1599
|
break;
|
|
1565
1600
|
case "ItemsSource":
|
|
1566
1601
|
if (this.g != null) {
|
|
@@ -1573,16 +1608,16 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1573
1608
|
}
|
|
1574
1609
|
if (this.g.actualDataSource != null && !this.a0) {
|
|
1575
1610
|
var d = this.g.actualDataSource;
|
|
1576
|
-
d.schemaChanged = delegateRemove(d.schemaChanged, runOn(this, this.
|
|
1611
|
+
d.schemaChanged = delegateRemove(d.schemaChanged, runOn(this, this.d9));
|
|
1577
1612
|
}
|
|
1578
1613
|
this.g.itemsSource = this.bp;
|
|
1579
|
-
this.
|
|
1614
|
+
this.dg();
|
|
1580
1615
|
if (this.g.actualDataSource != null && !this.a0) {
|
|
1581
1616
|
var e = this.g.actualDataSource;
|
|
1582
|
-
e.schemaChanged = delegateCombine(e.schemaChanged, runOn(this, this.
|
|
1617
|
+
e.schemaChanged = delegateCombine(e.schemaChanged, runOn(this, this.d9));
|
|
1583
1618
|
}
|
|
1584
1619
|
this.at = true;
|
|
1585
|
-
this.
|
|
1620
|
+
this.eb();
|
|
1586
1621
|
this.at = false;
|
|
1587
1622
|
this.view.an();
|
|
1588
1623
|
}
|
|
@@ -1593,8 +1628,8 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1593
1628
|
case "PropertyTypeMemberPath":
|
|
1594
1629
|
if (this.g != null) {
|
|
1595
1630
|
if (this.bt != null) {
|
|
1596
|
-
this.
|
|
1597
|
-
this.
|
|
1631
|
+
this.eb();
|
|
1632
|
+
this.eq();
|
|
1598
1633
|
}
|
|
1599
1634
|
}
|
|
1600
1635
|
break;
|
|
@@ -1604,7 +1639,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1604
1639
|
}
|
|
1605
1640
|
break;
|
|
1606
1641
|
case "SelectAllCaptionTextColor":
|
|
1607
|
-
this.
|
|
1642
|
+
this.fc = null != this.selectAllCaptionTextColor ? this.selectAllCaptionTextColor : this.fn();
|
|
1608
1643
|
break;
|
|
1609
1644
|
case "SelectAllCaption":
|
|
1610
1645
|
case "ActualSelectAllCaptionTextColor":
|
|
@@ -1653,10 +1688,10 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1653
1688
|
this.view.ak();
|
|
1654
1689
|
break;
|
|
1655
1690
|
case "BaseTheme":
|
|
1656
|
-
this.
|
|
1691
|
+
this.ep();
|
|
1657
1692
|
break;
|
|
1658
1693
|
case "Density":
|
|
1659
|
-
this.
|
|
1694
|
+
this.eo();
|
|
1660
1695
|
break;
|
|
1661
1696
|
case "IsRowHoverEnabled":
|
|
1662
1697
|
if (this.g != null) {
|
|
@@ -1670,7 +1705,17 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1670
1705
|
break;
|
|
1671
1706
|
case "ScrollbarBackground":
|
|
1672
1707
|
if (this.g != null) {
|
|
1673
|
-
this.g.scrollbarBackground = this.
|
|
1708
|
+
this.g.scrollbarBackground = this.scrollbarBackground;
|
|
1709
|
+
}
|
|
1710
|
+
break;
|
|
1711
|
+
case "ScrollbarHoverBackground":
|
|
1712
|
+
if (this.g != null) {
|
|
1713
|
+
this.g.scrollbarHoverBackground = this.scrollbarHoverBackground;
|
|
1714
|
+
}
|
|
1715
|
+
break;
|
|
1716
|
+
case "ScrollbarActiveBackground":
|
|
1717
|
+
if (this.g != null) {
|
|
1718
|
+
this.g.scrollbarActiveBackground = this.scrollbarActiveBackground;
|
|
1674
1719
|
}
|
|
1675
1720
|
break;
|
|
1676
1721
|
case "SearchIconColor":
|
|
@@ -1678,7 +1723,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1678
1723
|
break;
|
|
1679
1724
|
case "SearchBackgroundColor":
|
|
1680
1725
|
if (this.y != null) {
|
|
1681
|
-
this.y.mc = this.
|
|
1726
|
+
this.y.mc = this.fs;
|
|
1682
1727
|
}
|
|
1683
1728
|
break;
|
|
1684
1729
|
case "SearchBorderColor":
|
|
@@ -1709,22 +1754,22 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1709
1754
|
case "CheckboxCornerRadius":
|
|
1710
1755
|
this.view.af();
|
|
1711
1756
|
if (this.g != null) {
|
|
1712
|
-
this.g.
|
|
1757
|
+
this.g.y6();
|
|
1713
1758
|
}
|
|
1714
1759
|
break;
|
|
1715
1760
|
case "CheckboxAlignedRight":
|
|
1716
1761
|
if (this.g != null) {
|
|
1717
|
-
this.
|
|
1762
|
+
this.es();
|
|
1718
1763
|
}
|
|
1719
1764
|
break;
|
|
1720
1765
|
case "DataLegendTarget":
|
|
1721
1766
|
if (this.g != null) {
|
|
1722
|
-
this.g.
|
|
1767
|
+
this.g.y6();
|
|
1723
1768
|
}
|
|
1724
1769
|
break;
|
|
1725
1770
|
}
|
|
1726
1771
|
};
|
|
1727
|
-
CheckboxList.prototype.
|
|
1772
|
+
CheckboxList.prototype.es = function () {
|
|
1728
1773
|
if (this.g.actualColumns.count == 0) {
|
|
1729
1774
|
return;
|
|
1730
1775
|
}
|
|
@@ -1742,7 +1787,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1742
1787
|
}
|
|
1743
1788
|
this.g.columns.add(c);
|
|
1744
1789
|
};
|
|
1745
|
-
CheckboxList.prototype.
|
|
1790
|
+
CheckboxList.prototype.d4 = function (a, b) {
|
|
1746
1791
|
if (this.indexTypeChanged != null) {
|
|
1747
1792
|
this.indexTypeChanged(this, ((function () {
|
|
1748
1793
|
var $ret = new CheckboxListIndexTypeChangedEventArgs();
|
|
@@ -1752,7 +1797,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1752
1797
|
})()));
|
|
1753
1798
|
}
|
|
1754
1799
|
};
|
|
1755
|
-
CheckboxList.prototype.
|
|
1800
|
+
CheckboxList.prototype.eo = function () {
|
|
1756
1801
|
if (this.g != null) {
|
|
1757
1802
|
this.g.density = this.density;
|
|
1758
1803
|
}
|
|
@@ -1762,7 +1807,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1762
1807
|
this.view.ae();
|
|
1763
1808
|
this.view.z();
|
|
1764
1809
|
};
|
|
1765
|
-
CheckboxList.prototype.
|
|
1810
|
+
CheckboxList.prototype.ep = function () {
|
|
1766
1811
|
if (this.x != null) {
|
|
1767
1812
|
this.x.p = this.baseTheme;
|
|
1768
1813
|
}
|
|
@@ -1776,23 +1821,25 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1776
1821
|
this.g.cellSelectedBackground = this.backgroundColor;
|
|
1777
1822
|
this.g.rowHoverBackground = this.rowHoverBackgroundColor;
|
|
1778
1823
|
this.g.background = this.backgroundColor;
|
|
1824
|
+
this.g.borderWidth = new Thickness(0, 0);
|
|
1825
|
+
this.g.cornerRadius = new CornerRadius(0, 0);
|
|
1779
1826
|
}
|
|
1780
|
-
this.
|
|
1827
|
+
this.fc = this.selectAllCaptionTextColor != null ? this.selectAllCaptionTextColor : this.fn();
|
|
1781
1828
|
this.view.ag();
|
|
1782
1829
|
};
|
|
1783
|
-
CheckboxList.prototype.
|
|
1830
|
+
CheckboxList.prototype.d9 = function (a, b) {
|
|
1784
1831
|
this.at = true;
|
|
1785
|
-
this.
|
|
1832
|
+
this.dg();
|
|
1786
1833
|
if (b.schema != null) {
|
|
1787
|
-
this.
|
|
1834
|
+
this.eb();
|
|
1788
1835
|
for (var c = 0; c < this.keys.count; c++) {
|
|
1789
|
-
this.
|
|
1836
|
+
this.d6(this.keys._inner[c]);
|
|
1790
1837
|
}
|
|
1791
1838
|
this.view.an();
|
|
1792
1839
|
}
|
|
1793
1840
|
this.at = false;
|
|
1794
1841
|
};
|
|
1795
|
-
CheckboxList.prototype.
|
|
1842
|
+
CheckboxList.prototype.eb = function () {
|
|
1796
1843
|
if (this.ak == null && this.bw != null && this.bw != "") {
|
|
1797
1844
|
this.ak = new FastReflectionHelper(false, this.bw);
|
|
1798
1845
|
}
|
|
@@ -1832,7 +1879,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1832
1879
|
}
|
|
1833
1880
|
}
|
|
1834
1881
|
};
|
|
1835
|
-
CheckboxList.prototype.
|
|
1882
|
+
CheckboxList.prototype.eq = function () {
|
|
1836
1883
|
this.view.p();
|
|
1837
1884
|
this.g.columns.clear();
|
|
1838
1885
|
this.g.primaryKey = this.primaryKey;
|
|
@@ -1844,7 +1891,10 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1844
1891
|
this.g.theme = this.baseTheme;
|
|
1845
1892
|
this.g.density = this.density;
|
|
1846
1893
|
this.g.isRowHoverEnabled = this.a4;
|
|
1847
|
-
this.g.
|
|
1894
|
+
this.g.scrollbarStyle = this.ad;
|
|
1895
|
+
this.g.scrollbarBackground = this.scrollbarBackground;
|
|
1896
|
+
this.g.scrollbarHoverBackground = this.scrollbarHoverBackground;
|
|
1897
|
+
this.g.scrollbarActiveBackground = this.scrollbarActiveBackground;
|
|
1848
1898
|
if (this.ao != null) {
|
|
1849
1899
|
this.g.cellTextStyle = this.ao;
|
|
1850
1900
|
}
|
|
@@ -1852,32 +1902,32 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1852
1902
|
if (this.bw == null) {
|
|
1853
1903
|
this.bw = "";
|
|
1854
1904
|
}
|
|
1855
|
-
a.
|
|
1856
|
-
a.
|
|
1905
|
+
a.ns = this.bw;
|
|
1906
|
+
a.ok = "CheckboxColumn";
|
|
1857
1907
|
var b = new ColumnWidth();
|
|
1858
1908
|
b.c = false;
|
|
1859
1909
|
b.f = 28;
|
|
1860
1910
|
a.width = b;
|
|
1861
|
-
a.lm = 0;
|
|
1862
1911
|
a.ln = 0;
|
|
1863
|
-
a.
|
|
1912
|
+
a.lo = 0;
|
|
1913
|
+
a.cellUpdating = delegateCombine(a.cellUpdating, runOn(this, this.dh));
|
|
1864
1914
|
this.k = a;
|
|
1865
1915
|
this.g.columns.add(a);
|
|
1866
1916
|
var c = this.g.actualDataSource.resolveSchemaPropertyType(this.bt);
|
|
1867
1917
|
if ((this.bx != null || this.bv != null) && (c == 0 || c == 11 || c == 2)) {
|
|
1868
1918
|
var d = new TemplateColumn();
|
|
1869
|
-
d.
|
|
1870
|
-
d.
|
|
1871
|
-
d.
|
|
1919
|
+
d.ns = this.bt;
|
|
1920
|
+
d.ok = "DataColumn";
|
|
1921
|
+
d.ln = 0;
|
|
1872
1922
|
d.g = 0;
|
|
1873
|
-
d.cellUpdating = delegateCombine(d.cellUpdating, runOn(this, this.
|
|
1923
|
+
d.cellUpdating = delegateCombine(d.cellUpdating, runOn(this, this.er));
|
|
1874
1924
|
this.g.columns.add(d);
|
|
1875
1925
|
}
|
|
1876
1926
|
else {
|
|
1877
1927
|
var e = void 0;
|
|
1878
1928
|
if (this.gridColumnProvider != null) {
|
|
1879
|
-
e = this.gridColumnProvider.
|
|
1880
|
-
e.onAttachingOverride = delegateCombine(e.onAttachingOverride, runOn(this, this.
|
|
1929
|
+
e = this.gridColumnProvider.h2();
|
|
1930
|
+
e.onAttachingOverride = delegateCombine(e.onAttachingOverride, runOn(this, this.dq));
|
|
1881
1931
|
}
|
|
1882
1932
|
else {
|
|
1883
1933
|
switch (c) {
|
|
@@ -1902,9 +1952,9 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1902
1952
|
break;
|
|
1903
1953
|
}
|
|
1904
1954
|
}
|
|
1905
|
-
e.
|
|
1906
|
-
e.
|
|
1907
|
-
e.
|
|
1955
|
+
e.ns = this.bt;
|
|
1956
|
+
e.ok = "DataColumn";
|
|
1957
|
+
e.ln = 0;
|
|
1908
1958
|
e.g = 0;
|
|
1909
1959
|
this.g.columns.add(e);
|
|
1910
1960
|
}
|
|
@@ -1912,16 +1962,20 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1912
1962
|
var g = new ColumnWidth();
|
|
1913
1963
|
g.c = false;
|
|
1914
1964
|
g.f = 10;
|
|
1915
|
-
f.
|
|
1916
|
-
f.
|
|
1917
|
-
f.
|
|
1965
|
+
f.ns = "PaddingColumn";
|
|
1966
|
+
f.ok = "PaddingColumn";
|
|
1967
|
+
f.ln = 0;
|
|
1918
1968
|
f.width = g;
|
|
1919
1969
|
this.g.columns.add(f);
|
|
1920
1970
|
};
|
|
1921
|
-
CheckboxList.prototype.
|
|
1971
|
+
CheckboxList.prototype.dq = function (a, b) {
|
|
1922
1972
|
var c = b.b;
|
|
1923
|
-
c.
|
|
1973
|
+
c.g5 = 0;
|
|
1924
1974
|
c.g = 0;
|
|
1975
|
+
c.np = this.g.cellBackground;
|
|
1976
|
+
c.n9 = this.g.cellTextColor;
|
|
1977
|
+
c.ny = this.g.rowHoverBackground;
|
|
1978
|
+
c.n2 = this.g.cellSelectedBackground;
|
|
1925
1979
|
};
|
|
1926
1980
|
CheckboxList.prototype.updateHrMargin = function (a) {
|
|
1927
1981
|
this.view.ah(a);
|
|
@@ -1929,16 +1983,16 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1929
1983
|
CheckboxList.prototype.provideHrElement = function (a) {
|
|
1930
1984
|
this.view.v(a);
|
|
1931
1985
|
};
|
|
1932
|
-
CheckboxList.prototype.
|
|
1986
|
+
CheckboxList.prototype.d5 = function () {
|
|
1933
1987
|
if (!this.a0) {
|
|
1934
1988
|
var a = this.w;
|
|
1935
|
-
a.changing = delegateCombine(a.changing, runOn(this, this.
|
|
1989
|
+
a.changing = delegateCombine(a.changing, runOn(this, this.dr));
|
|
1936
1990
|
}
|
|
1937
|
-
this.
|
|
1991
|
+
this.ep();
|
|
1938
1992
|
};
|
|
1939
|
-
CheckboxList.prototype.
|
|
1993
|
+
CheckboxList.prototype.dr = function (a, b) {
|
|
1940
1994
|
var c = b.value.toLowerCase();
|
|
1941
|
-
this.
|
|
1995
|
+
this.d3(c);
|
|
1942
1996
|
};
|
|
1943
1997
|
CheckboxList.prototype.j = function (a) {
|
|
1944
1998
|
if (this.primaryKey == null) {
|
|
@@ -1952,7 +2006,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1952
2006
|
}
|
|
1953
2007
|
return new PrimaryKeyValue(b, c);
|
|
1954
2008
|
};
|
|
1955
|
-
CheckboxList.prototype.
|
|
2009
|
+
CheckboxList.prototype.ek = function (a) {
|
|
1956
2010
|
this.as = true;
|
|
1957
2011
|
var b = this.e.getItemAtIndex(a);
|
|
1958
2012
|
if (this.ak != null) {
|
|
@@ -1962,7 +2016,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1962
2016
|
this.keys.remove(c);
|
|
1963
2017
|
this.as = false;
|
|
1964
2018
|
};
|
|
1965
|
-
CheckboxList.prototype.
|
|
2019
|
+
CheckboxList.prototype.dd = function (a) {
|
|
1966
2020
|
this.as = true;
|
|
1967
2021
|
var b = this.e.getItemAtIndex(a);
|
|
1968
2022
|
if (this.ak != null) {
|
|
@@ -1972,44 +2026,44 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
1972
2026
|
this.keys.add(c);
|
|
1973
2027
|
this.as = false;
|
|
1974
2028
|
};
|
|
1975
|
-
CheckboxList.prototype.
|
|
2029
|
+
CheckboxList.prototype.en = function () {
|
|
1976
2030
|
this.indexType = 0;
|
|
1977
2031
|
this.keys.clear();
|
|
1978
|
-
this.
|
|
2032
|
+
this.dt();
|
|
1979
2033
|
if (this.keysCleared != null) {
|
|
1980
2034
|
this.keysCleared(this, new CheckboxListKeysClearedEventArgs());
|
|
1981
2035
|
}
|
|
1982
2036
|
};
|
|
1983
|
-
CheckboxList.prototype.
|
|
2037
|
+
CheckboxList.prototype.dj = function () {
|
|
1984
2038
|
this.indexType = 1;
|
|
1985
2039
|
this.keys.clear();
|
|
1986
|
-
this.
|
|
2040
|
+
this.dt();
|
|
1987
2041
|
if (this.keysCleared != null) {
|
|
1988
2042
|
this.keysCleared(this, new CheckboxListKeysClearedEventArgs());
|
|
1989
2043
|
}
|
|
1990
2044
|
};
|
|
1991
|
-
CheckboxList.prototype.
|
|
2045
|
+
CheckboxList.prototype.dy = function (a, b, c) {
|
|
1992
2046
|
if (this.g != null) {
|
|
1993
2047
|
this.g.notifySetItem(a, b, c);
|
|
1994
2048
|
}
|
|
1995
2049
|
};
|
|
1996
|
-
CheckboxList.prototype.
|
|
2050
|
+
CheckboxList.prototype.du = function () {
|
|
1997
2051
|
if (this.g != null) {
|
|
1998
2052
|
this.g.notifyClearItems();
|
|
1999
2053
|
}
|
|
2000
2054
|
};
|
|
2001
|
-
CheckboxList.prototype.
|
|
2055
|
+
CheckboxList.prototype.dt = function () {
|
|
2002
2056
|
if (this.g != null) {
|
|
2003
2057
|
this.g.invalidateVisibleRows();
|
|
2004
2058
|
}
|
|
2005
2059
|
};
|
|
2006
|
-
CheckboxList.prototype.
|
|
2060
|
+
CheckboxList.prototype.dv = function (a, b) {
|
|
2007
2061
|
if (this.g != null) {
|
|
2008
2062
|
this.g.notifyInsertItem(a, b);
|
|
2009
2063
|
}
|
|
2010
2064
|
;
|
|
2011
2065
|
};
|
|
2012
|
-
CheckboxList.prototype.
|
|
2066
|
+
CheckboxList.prototype.dx = function (a, b) {
|
|
2013
2067
|
if (this.g != null) {
|
|
2014
2068
|
this.g.notifyRemoveItem(a, b);
|
|
2015
2069
|
}
|
|
@@ -2026,7 +2080,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2026
2080
|
this.aw = false;
|
|
2027
2081
|
}
|
|
2028
2082
|
};
|
|
2029
|
-
CheckboxList.prototype.
|
|
2083
|
+
CheckboxList.prototype.de = function (a) {
|
|
2030
2084
|
var b = null;
|
|
2031
2085
|
if (this.primaryKey == null || this.primaryKey.length == 0) {
|
|
2032
2086
|
b = new PrimaryKeyValue(null, a);
|
|
@@ -2046,7 +2100,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2046
2100
|
this.keys.add(b);
|
|
2047
2101
|
}
|
|
2048
2102
|
};
|
|
2049
|
-
CheckboxList.prototype.
|
|
2103
|
+
CheckboxList.prototype.el = function (a) {
|
|
2050
2104
|
var b = null;
|
|
2051
2105
|
if (this.primaryKey == null || this.primaryKey.length == 0) {
|
|
2052
2106
|
b = new PrimaryKeyValue(null, a);
|
|
@@ -2120,48 +2174,48 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2120
2174
|
a.h = c.width;
|
|
2121
2175
|
a.c = this.baseTheme;
|
|
2122
2176
|
a.d = this.bl;
|
|
2123
|
-
a.a = AppearanceHelper.a(this.
|
|
2177
|
+
a.a = AppearanceHelper.a(this.fc);
|
|
2124
2178
|
a.b = AppearanceHelper.a(this.backgroundColor);
|
|
2125
2179
|
return a;
|
|
2126
2180
|
};
|
|
2127
|
-
Object.defineProperty(CheckboxList.prototype, "
|
|
2181
|
+
Object.defineProperty(CheckboxList.prototype, "c3", {
|
|
2128
2182
|
get: function () {
|
|
2129
|
-
return this.
|
|
2183
|
+
return this.c2 != null ? this.c2 : !stringIsNullOrWhiteSpace(this.ar.b1("Select_All")) ? this.ar.b1("Select_All") : "(Select All)";
|
|
2130
2184
|
},
|
|
2131
2185
|
set: function (a) {
|
|
2132
|
-
if (a == this.
|
|
2186
|
+
if (a == this.c2) {
|
|
2133
2187
|
return;
|
|
2134
2188
|
}
|
|
2135
|
-
var b = this.
|
|
2136
|
-
this.
|
|
2137
|
-
this.
|
|
2189
|
+
var b = this.c2;
|
|
2190
|
+
this.c2 = a;
|
|
2191
|
+
this.d8("SelectAllCaption", b, this.c2);
|
|
2138
2192
|
},
|
|
2139
2193
|
enumerable: false,
|
|
2140
2194
|
configurable: true
|
|
2141
2195
|
});
|
|
2142
2196
|
Object.defineProperty(CheckboxList.prototype, "selectAllCaptionTextColor", {
|
|
2143
2197
|
get: function () {
|
|
2144
|
-
return this.
|
|
2198
|
+
return this.fa;
|
|
2145
2199
|
},
|
|
2146
2200
|
set: function (a) {
|
|
2147
|
-
var b = this.
|
|
2148
|
-
this.
|
|
2149
|
-
if (b != this.
|
|
2150
|
-
this.
|
|
2201
|
+
var b = this.fa;
|
|
2202
|
+
this.fa = a;
|
|
2203
|
+
if (b != this.fa) {
|
|
2204
|
+
this.d8("SelectAllCaptionTextColor", b, a);
|
|
2151
2205
|
}
|
|
2152
2206
|
},
|
|
2153
2207
|
enumerable: false,
|
|
2154
2208
|
configurable: true
|
|
2155
2209
|
});
|
|
2156
|
-
Object.defineProperty(CheckboxList.prototype, "
|
|
2210
|
+
Object.defineProperty(CheckboxList.prototype, "fc", {
|
|
2157
2211
|
get: function () {
|
|
2158
|
-
return this.
|
|
2212
|
+
return this.eu;
|
|
2159
2213
|
},
|
|
2160
2214
|
set: function (a) {
|
|
2161
|
-
var b = this.
|
|
2162
|
-
this.
|
|
2163
|
-
if (b != this.
|
|
2164
|
-
this.
|
|
2215
|
+
var b = this.eu;
|
|
2216
|
+
this.eu = a;
|
|
2217
|
+
if (b != this.eu) {
|
|
2218
|
+
this.d8("ActualSelectAllCaptionTextColor", b, a);
|
|
2165
2219
|
}
|
|
2166
2220
|
},
|
|
2167
2221
|
enumerable: false,
|
|
@@ -2194,20 +2248,20 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2194
2248
|
}
|
|
2195
2249
|
var b = this.a9;
|
|
2196
2250
|
this.a9 = a;
|
|
2197
|
-
this.
|
|
2251
|
+
this.d8("showSelectAll", b, this.a9);
|
|
2198
2252
|
},
|
|
2199
2253
|
enumerable: false,
|
|
2200
2254
|
configurable: true
|
|
2201
2255
|
});
|
|
2202
2256
|
Object.defineProperty(CheckboxList.prototype, "backgroundColor", {
|
|
2203
2257
|
get: function () {
|
|
2204
|
-
return this.
|
|
2258
|
+
return this.ev;
|
|
2205
2259
|
},
|
|
2206
2260
|
set: function (a) {
|
|
2207
|
-
var b = this.
|
|
2208
|
-
this.
|
|
2209
|
-
if (b != this.
|
|
2210
|
-
this.
|
|
2261
|
+
var b = this.ev;
|
|
2262
|
+
this.ev = a;
|
|
2263
|
+
if (b != this.ev) {
|
|
2264
|
+
this.d8("BackgroundColor", b, a);
|
|
2211
2265
|
}
|
|
2212
2266
|
},
|
|
2213
2267
|
enumerable: false,
|
|
@@ -2215,40 +2269,40 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2215
2269
|
});
|
|
2216
2270
|
Object.defineProperty(CheckboxList.prototype, "rowHoverBackgroundColor", {
|
|
2217
2271
|
get: function () {
|
|
2218
|
-
return this.
|
|
2272
|
+
return this.e1;
|
|
2219
2273
|
},
|
|
2220
2274
|
set: function (a) {
|
|
2221
|
-
var b = this.
|
|
2222
|
-
this.
|
|
2223
|
-
if (b != this.
|
|
2224
|
-
this.
|
|
2275
|
+
var b = this.e1;
|
|
2276
|
+
this.e1 = a;
|
|
2277
|
+
if (b != this.e1) {
|
|
2278
|
+
this.d8("RowHoverBackgroundColor", b, a);
|
|
2225
2279
|
}
|
|
2226
2280
|
},
|
|
2227
2281
|
enumerable: false,
|
|
2228
2282
|
configurable: true
|
|
2229
2283
|
});
|
|
2230
|
-
CheckboxList.prototype.
|
|
2284
|
+
CheckboxList.prototype.fn = function () {
|
|
2231
2285
|
switch (this.baseTheme) {
|
|
2232
2286
|
case 6:
|
|
2233
|
-
case 4: return CheckboxList.
|
|
2287
|
+
case 4: return CheckboxList.fk;
|
|
2234
2288
|
}
|
|
2235
|
-
return CheckboxList.
|
|
2289
|
+
return CheckboxList.fm;
|
|
2236
2290
|
};
|
|
2237
2291
|
Object.defineProperty(CheckboxList.prototype, "textColor", {
|
|
2238
2292
|
get: function () {
|
|
2239
|
-
return this.
|
|
2293
|
+
return this.fb;
|
|
2240
2294
|
},
|
|
2241
2295
|
set: function (a) {
|
|
2242
|
-
var b = this.
|
|
2243
|
-
this.
|
|
2244
|
-
if (b != this.
|
|
2245
|
-
this.
|
|
2296
|
+
var b = this.fb;
|
|
2297
|
+
this.fb = a;
|
|
2298
|
+
if (b != this.fb) {
|
|
2299
|
+
this.d8("TextColor", b, a);
|
|
2246
2300
|
}
|
|
2247
2301
|
},
|
|
2248
2302
|
enumerable: false,
|
|
2249
2303
|
configurable: true
|
|
2250
2304
|
});
|
|
2251
|
-
CheckboxList.prototype.
|
|
2305
|
+
CheckboxList.prototype.ea = function (a) {
|
|
2252
2306
|
if (this.selectAllCheckboxChanged != null) {
|
|
2253
2307
|
this.selectAllCheckboxChanged(this, ((function () {
|
|
2254
2308
|
var $ret = new SelectAllCheckboxChangedEventArgs();
|
|
@@ -2279,7 +2333,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2279
2333
|
default: return false;
|
|
2280
2334
|
}
|
|
2281
2335
|
};
|
|
2282
|
-
CheckboxList.prototype.
|
|
2336
|
+
CheckboxList.prototype.dg = function () {
|
|
2283
2337
|
var a = this.g.actualDataSource;
|
|
2284
2338
|
if (null != a) {
|
|
2285
2339
|
if (null == a.actualSchema) {
|
|
@@ -2303,7 +2357,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2303
2357
|
}
|
|
2304
2358
|
var b = this.a7;
|
|
2305
2359
|
this.a7 = a;
|
|
2306
|
-
this.
|
|
2360
|
+
this.d8("ShowFilter", b, this.a7);
|
|
2307
2361
|
},
|
|
2308
2362
|
enumerable: false,
|
|
2309
2363
|
configurable: true
|
|
@@ -2318,7 +2372,7 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2318
2372
|
}
|
|
2319
2373
|
var b = this.a3;
|
|
2320
2374
|
this.a3 = a;
|
|
2321
|
-
this.
|
|
2375
|
+
this.d8("IsRowHoverEnabled", b, this.a3);
|
|
2322
2376
|
},
|
|
2323
2377
|
enumerable: false,
|
|
2324
2378
|
configurable: true
|
|
@@ -2333,12 +2387,12 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2333
2387
|
}
|
|
2334
2388
|
var b = this.ay;
|
|
2335
2389
|
this.ay = a;
|
|
2336
|
-
this.
|
|
2390
|
+
this.d8("CheckboxAlignedRight", b, this.ay);
|
|
2337
2391
|
},
|
|
2338
2392
|
enumerable: false,
|
|
2339
2393
|
configurable: true
|
|
2340
2394
|
});
|
|
2341
|
-
CheckboxList.prototype.
|
|
2395
|
+
CheckboxList.prototype.eh = function (a) {
|
|
2342
2396
|
this.y = a;
|
|
2343
2397
|
if (a == null) {
|
|
2344
2398
|
return;
|
|
@@ -2346,18 +2400,18 @@ export var CheckboxList = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
2346
2400
|
this.y.d = this.aa;
|
|
2347
2401
|
this.y.p = this.baseTheme;
|
|
2348
2402
|
this.y.t = this.density;
|
|
2349
|
-
this.y.mc = this.
|
|
2403
|
+
this.y.mc = this.fs;
|
|
2350
2404
|
this.y.md = this.searchBorderColor;
|
|
2351
2405
|
this.y.no = this.searchFocusBorderColor;
|
|
2352
2406
|
this.y.n6 = BrushUtil.l(0, 0, 0, 0);
|
|
2353
2407
|
this.y.np = BrushUtil.l(0, 0, 0, 0);
|
|
2354
2408
|
};
|
|
2355
2409
|
CheckboxList.$t = markType(CheckboxList, 'CheckboxList', Base.$, [INotifyPropertyChanged_$type]);
|
|
2356
|
-
CheckboxList.
|
|
2357
|
-
CheckboxList.
|
|
2358
|
-
CheckboxList.
|
|
2359
|
-
CheckboxList.
|
|
2360
|
-
CheckboxList.
|
|
2361
|
-
CheckboxList.
|
|
2410
|
+
CheckboxList.fy = BrushUtil.l(255, 24, 29, 31);
|
|
2411
|
+
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";
|
|
2412
|
+
CheckboxList.fj = BrushUtil.l(255, 248, 248, 248);
|
|
2413
|
+
CheckboxList.fl = null;
|
|
2414
|
+
CheckboxList.fm = BrushUtil.l(255, 24, 29, 31);
|
|
2415
|
+
CheckboxList.fk = BrushUtil.l(255, 255, 255, 255);
|
|
2362
2416
|
return CheckboxList;
|
|
2363
2417
|
}(Base));
|