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
|
@@ -474,6 +474,16 @@ export var IgcDataGridComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
474
474
|
this._scroller.scrollbarBrush = color;
|
|
475
475
|
}
|
|
476
476
|
};
|
|
477
|
+
IgcDataGridComponent.prototype._setScrollbarHoverColor = function (color) {
|
|
478
|
+
if (this._scroller) {
|
|
479
|
+
this._scroller.scrollbarHoverBrush = color;
|
|
480
|
+
}
|
|
481
|
+
};
|
|
482
|
+
IgcDataGridComponent.prototype._setScrollbarActiveColor = function (color) {
|
|
483
|
+
if (this._scroller) {
|
|
484
|
+
this._scroller.scrollbarActiveBrush = color;
|
|
485
|
+
}
|
|
486
|
+
};
|
|
477
487
|
IgcDataGridComponent.prototype._moveFocusNext = function () {
|
|
478
488
|
moveFocusNext(this, true);
|
|
479
489
|
};
|
|
@@ -1137,9 +1147,17 @@ export var IgcDataGridComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1137
1147
|
},
|
|
1138
1148
|
set: function (v) {
|
|
1139
1149
|
this.ensureEditRowBorderWidth();
|
|
1140
|
-
|
|
1150
|
+
var __nv = +v;
|
|
1151
|
+
if (this.i.editRowBorderWidth.bottom === __nv) {
|
|
1152
|
+
return;
|
|
1153
|
+
}
|
|
1154
|
+
var __copy = new Thickness(2);
|
|
1155
|
+
__copy.bottom = __nv;
|
|
1156
|
+
__copy.left = this.i.editRowBorderWidth.left;
|
|
1157
|
+
__copy.right = this.i.editRowBorderWidth.right;
|
|
1158
|
+
__copy.top = this.i.editRowBorderWidth.top;
|
|
1159
|
+
this.i.editRowBorderWidth = __copy;
|
|
1141
1160
|
this._a("editRowBorderWidthBottom", this.i.editRowBorderWidth.bottom);
|
|
1142
|
-
this.i.editRowBorderWidth = this.i.editRowBorderWidth;
|
|
1143
1161
|
},
|
|
1144
1162
|
enumerable: false,
|
|
1145
1163
|
configurable: true
|
|
@@ -1150,9 +1168,17 @@ export var IgcDataGridComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1150
1168
|
},
|
|
1151
1169
|
set: function (v) {
|
|
1152
1170
|
this.ensureEditRowBorderWidth();
|
|
1153
|
-
|
|
1171
|
+
var __nv = +v;
|
|
1172
|
+
if (this.i.editRowBorderWidth.left === __nv) {
|
|
1173
|
+
return;
|
|
1174
|
+
}
|
|
1175
|
+
var __copy = new Thickness(2);
|
|
1176
|
+
__copy.left = __nv;
|
|
1177
|
+
__copy.bottom = this.i.editRowBorderWidth.bottom;
|
|
1178
|
+
__copy.right = this.i.editRowBorderWidth.right;
|
|
1179
|
+
__copy.top = this.i.editRowBorderWidth.top;
|
|
1180
|
+
this.i.editRowBorderWidth = __copy;
|
|
1154
1181
|
this._a("editRowBorderWidthLeft", this.i.editRowBorderWidth.left);
|
|
1155
|
-
this.i.editRowBorderWidth = this.i.editRowBorderWidth;
|
|
1156
1182
|
},
|
|
1157
1183
|
enumerable: false,
|
|
1158
1184
|
configurable: true
|
|
@@ -1163,9 +1189,17 @@ export var IgcDataGridComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1163
1189
|
},
|
|
1164
1190
|
set: function (v) {
|
|
1165
1191
|
this.ensureEditRowBorderWidth();
|
|
1166
|
-
|
|
1192
|
+
var __nv = +v;
|
|
1193
|
+
if (this.i.editRowBorderWidth.right === __nv) {
|
|
1194
|
+
return;
|
|
1195
|
+
}
|
|
1196
|
+
var __copy = new Thickness(2);
|
|
1197
|
+
__copy.right = __nv;
|
|
1198
|
+
__copy.bottom = this.i.editRowBorderWidth.bottom;
|
|
1199
|
+
__copy.left = this.i.editRowBorderWidth.left;
|
|
1200
|
+
__copy.top = this.i.editRowBorderWidth.top;
|
|
1201
|
+
this.i.editRowBorderWidth = __copy;
|
|
1167
1202
|
this._a("editRowBorderWidthRight", this.i.editRowBorderWidth.right);
|
|
1168
|
-
this.i.editRowBorderWidth = this.i.editRowBorderWidth;
|
|
1169
1203
|
},
|
|
1170
1204
|
enumerable: false,
|
|
1171
1205
|
configurable: true
|
|
@@ -1176,9 +1210,17 @@ export var IgcDataGridComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
1176
1210
|
},
|
|
1177
1211
|
set: function (v) {
|
|
1178
1212
|
this.ensureEditRowBorderWidth();
|
|
1179
|
-
|
|
1213
|
+
var __nv = +v;
|
|
1214
|
+
if (this.i.editRowBorderWidth.top === __nv) {
|
|
1215
|
+
return;
|
|
1216
|
+
}
|
|
1217
|
+
var __copy = new Thickness(2);
|
|
1218
|
+
__copy.top = __nv;
|
|
1219
|
+
__copy.bottom = this.i.editRowBorderWidth.bottom;
|
|
1220
|
+
__copy.left = this.i.editRowBorderWidth.left;
|
|
1221
|
+
__copy.right = this.i.editRowBorderWidth.right;
|
|
1222
|
+
this.i.editRowBorderWidth = __copy;
|
|
1180
1223
|
this._a("editRowBorderWidthTop", this.i.editRowBorderWidth.top);
|
|
1181
|
-
this.i.editRowBorderWidth = this.i.editRowBorderWidth;
|
|
1182
1224
|
},
|
|
1183
1225
|
enumerable: false,
|
|
1184
1226
|
configurable: true
|
|
@@ -2977,9 +3019,17 @@ export var IgcDataGridComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2977
3019
|
},
|
|
2978
3020
|
set: function (v) {
|
|
2979
3021
|
this.ensureBorderWidth();
|
|
2980
|
-
|
|
3022
|
+
var __nv = +v;
|
|
3023
|
+
if (this.i.borderWidth.bottom === __nv) {
|
|
3024
|
+
return;
|
|
3025
|
+
}
|
|
3026
|
+
var __copy = new Thickness(2);
|
|
3027
|
+
__copy.bottom = __nv;
|
|
3028
|
+
__copy.left = this.i.borderWidth.left;
|
|
3029
|
+
__copy.right = this.i.borderWidth.right;
|
|
3030
|
+
__copy.top = this.i.borderWidth.top;
|
|
3031
|
+
this.i.borderWidth = __copy;
|
|
2981
3032
|
this._a("borderWidthBottom", this.i.borderWidth.bottom);
|
|
2982
|
-
this.i.borderWidth = this.i.borderWidth;
|
|
2983
3033
|
},
|
|
2984
3034
|
enumerable: false,
|
|
2985
3035
|
configurable: true
|
|
@@ -2990,9 +3040,17 @@ export var IgcDataGridComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
2990
3040
|
},
|
|
2991
3041
|
set: function (v) {
|
|
2992
3042
|
this.ensureBorderWidth();
|
|
2993
|
-
|
|
3043
|
+
var __nv = +v;
|
|
3044
|
+
if (this.i.borderWidth.left === __nv) {
|
|
3045
|
+
return;
|
|
3046
|
+
}
|
|
3047
|
+
var __copy = new Thickness(2);
|
|
3048
|
+
__copy.left = __nv;
|
|
3049
|
+
__copy.bottom = this.i.borderWidth.bottom;
|
|
3050
|
+
__copy.right = this.i.borderWidth.right;
|
|
3051
|
+
__copy.top = this.i.borderWidth.top;
|
|
3052
|
+
this.i.borderWidth = __copy;
|
|
2994
3053
|
this._a("borderWidthLeft", this.i.borderWidth.left);
|
|
2995
|
-
this.i.borderWidth = this.i.borderWidth;
|
|
2996
3054
|
},
|
|
2997
3055
|
enumerable: false,
|
|
2998
3056
|
configurable: true
|
|
@@ -3003,9 +3061,17 @@ export var IgcDataGridComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
3003
3061
|
},
|
|
3004
3062
|
set: function (v) {
|
|
3005
3063
|
this.ensureBorderWidth();
|
|
3006
|
-
|
|
3064
|
+
var __nv = +v;
|
|
3065
|
+
if (this.i.borderWidth.right === __nv) {
|
|
3066
|
+
return;
|
|
3067
|
+
}
|
|
3068
|
+
var __copy = new Thickness(2);
|
|
3069
|
+
__copy.right = __nv;
|
|
3070
|
+
__copy.bottom = this.i.borderWidth.bottom;
|
|
3071
|
+
__copy.left = this.i.borderWidth.left;
|
|
3072
|
+
__copy.top = this.i.borderWidth.top;
|
|
3073
|
+
this.i.borderWidth = __copy;
|
|
3007
3074
|
this._a("borderWidthRight", this.i.borderWidth.right);
|
|
3008
|
-
this.i.borderWidth = this.i.borderWidth;
|
|
3009
3075
|
},
|
|
3010
3076
|
enumerable: false,
|
|
3011
3077
|
configurable: true
|
|
@@ -3016,9 +3082,17 @@ export var IgcDataGridComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
3016
3082
|
},
|
|
3017
3083
|
set: function (v) {
|
|
3018
3084
|
this.ensureBorderWidth();
|
|
3019
|
-
|
|
3085
|
+
var __nv = +v;
|
|
3086
|
+
if (this.i.borderWidth.top === __nv) {
|
|
3087
|
+
return;
|
|
3088
|
+
}
|
|
3089
|
+
var __copy = new Thickness(2);
|
|
3090
|
+
__copy.top = __nv;
|
|
3091
|
+
__copy.bottom = this.i.borderWidth.bottom;
|
|
3092
|
+
__copy.left = this.i.borderWidth.left;
|
|
3093
|
+
__copy.right = this.i.borderWidth.right;
|
|
3094
|
+
this.i.borderWidth = __copy;
|
|
3020
3095
|
this._a("borderWidthTop", this.i.borderWidth.top);
|
|
3021
|
-
this.i.borderWidth = this.i.borderWidth;
|
|
3022
3096
|
},
|
|
3023
3097
|
enumerable: false,
|
|
3024
3098
|
configurable: true
|
|
@@ -3049,9 +3123,17 @@ export var IgcDataGridComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
3049
3123
|
},
|
|
3050
3124
|
set: function (v) {
|
|
3051
3125
|
this.ensureCornerRadius();
|
|
3052
|
-
|
|
3126
|
+
var __nv = +v;
|
|
3127
|
+
if (this.i.cornerRadius.c === __nv) {
|
|
3128
|
+
return;
|
|
3129
|
+
}
|
|
3130
|
+
var __copy = new CornerRadius(2);
|
|
3131
|
+
__copy.c = __nv;
|
|
3132
|
+
__copy.b = this.i.cornerRadius.b;
|
|
3133
|
+
__copy.d = this.i.cornerRadius.d;
|
|
3134
|
+
__copy.e = this.i.cornerRadius.e;
|
|
3135
|
+
this.i.cornerRadius = __copy;
|
|
3053
3136
|
this._a("cornerRadiusBottomRight", this.i.cornerRadius.c);
|
|
3054
|
-
this.i.cornerRadius = this.i.cornerRadius;
|
|
3055
3137
|
},
|
|
3056
3138
|
enumerable: false,
|
|
3057
3139
|
configurable: true
|
|
@@ -3062,9 +3144,17 @@ export var IgcDataGridComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
3062
3144
|
},
|
|
3063
3145
|
set: function (v) {
|
|
3064
3146
|
this.ensureCornerRadius();
|
|
3065
|
-
|
|
3147
|
+
var __nv = +v;
|
|
3148
|
+
if (this.i.cornerRadius.b === __nv) {
|
|
3149
|
+
return;
|
|
3150
|
+
}
|
|
3151
|
+
var __copy = new CornerRadius(2);
|
|
3152
|
+
__copy.b = __nv;
|
|
3153
|
+
__copy.c = this.i.cornerRadius.c;
|
|
3154
|
+
__copy.d = this.i.cornerRadius.d;
|
|
3155
|
+
__copy.e = this.i.cornerRadius.e;
|
|
3156
|
+
this.i.cornerRadius = __copy;
|
|
3066
3157
|
this._a("cornerRadiusBottomLeft", this.i.cornerRadius.b);
|
|
3067
|
-
this.i.cornerRadius = this.i.cornerRadius;
|
|
3068
3158
|
},
|
|
3069
3159
|
enumerable: false,
|
|
3070
3160
|
configurable: true
|
|
@@ -3075,9 +3165,17 @@ export var IgcDataGridComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
3075
3165
|
},
|
|
3076
3166
|
set: function (v) {
|
|
3077
3167
|
this.ensureCornerRadius();
|
|
3078
|
-
|
|
3168
|
+
var __nv = +v;
|
|
3169
|
+
if (this.i.cornerRadius.d === __nv) {
|
|
3170
|
+
return;
|
|
3171
|
+
}
|
|
3172
|
+
var __copy = new CornerRadius(2);
|
|
3173
|
+
__copy.d = __nv;
|
|
3174
|
+
__copy.c = this.i.cornerRadius.c;
|
|
3175
|
+
__copy.b = this.i.cornerRadius.b;
|
|
3176
|
+
__copy.e = this.i.cornerRadius.e;
|
|
3177
|
+
this.i.cornerRadius = __copy;
|
|
3079
3178
|
this._a("cornerRadiusTopLeft", this.i.cornerRadius.d);
|
|
3080
|
-
this.i.cornerRadius = this.i.cornerRadius;
|
|
3081
3179
|
},
|
|
3082
3180
|
enumerable: false,
|
|
3083
3181
|
configurable: true
|
|
@@ -3088,9 +3186,17 @@ export var IgcDataGridComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
3088
3186
|
},
|
|
3089
3187
|
set: function (v) {
|
|
3090
3188
|
this.ensureCornerRadius();
|
|
3091
|
-
|
|
3189
|
+
var __nv = +v;
|
|
3190
|
+
if (this.i.cornerRadius.e === __nv) {
|
|
3191
|
+
return;
|
|
3192
|
+
}
|
|
3193
|
+
var __copy = new CornerRadius(2);
|
|
3194
|
+
__copy.e = __nv;
|
|
3195
|
+
__copy.c = this.i.cornerRadius.c;
|
|
3196
|
+
__copy.b = this.i.cornerRadius.b;
|
|
3197
|
+
__copy.d = this.i.cornerRadius.d;
|
|
3198
|
+
this.i.cornerRadius = __copy;
|
|
3092
3199
|
this._a("cornerRadiusTopRight", this.i.cornerRadius.e);
|
|
3093
|
-
this.i.cornerRadius = this.i.cornerRadius;
|
|
3094
3200
|
},
|
|
3095
3201
|
enumerable: false,
|
|
3096
3202
|
configurable: true
|
|
@@ -3107,9 +3213,17 @@ export var IgcDataGridComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
3107
3213
|
},
|
|
3108
3214
|
set: function (v) {
|
|
3109
3215
|
this.ensureActualCornerRadius();
|
|
3110
|
-
|
|
3216
|
+
var __nv = +v;
|
|
3217
|
+
if (this.i.actualCornerRadius.c === __nv) {
|
|
3218
|
+
return;
|
|
3219
|
+
}
|
|
3220
|
+
var __copy = new CornerRadius(2);
|
|
3221
|
+
__copy.c = __nv;
|
|
3222
|
+
__copy.b = this.i.actualCornerRadius.b;
|
|
3223
|
+
__copy.d = this.i.actualCornerRadius.d;
|
|
3224
|
+
__copy.e = this.i.actualCornerRadius.e;
|
|
3225
|
+
this.i.actualCornerRadius = __copy;
|
|
3111
3226
|
this._a("actualCornerRadiusBottomRight", this.i.actualCornerRadius.c);
|
|
3112
|
-
this.i.actualCornerRadius = this.i.actualCornerRadius;
|
|
3113
3227
|
},
|
|
3114
3228
|
enumerable: false,
|
|
3115
3229
|
configurable: true
|
|
@@ -3120,9 +3234,17 @@ export var IgcDataGridComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
3120
3234
|
},
|
|
3121
3235
|
set: function (v) {
|
|
3122
3236
|
this.ensureActualCornerRadius();
|
|
3123
|
-
|
|
3237
|
+
var __nv = +v;
|
|
3238
|
+
if (this.i.actualCornerRadius.b === __nv) {
|
|
3239
|
+
return;
|
|
3240
|
+
}
|
|
3241
|
+
var __copy = new CornerRadius(2);
|
|
3242
|
+
__copy.b = __nv;
|
|
3243
|
+
__copy.c = this.i.actualCornerRadius.c;
|
|
3244
|
+
__copy.d = this.i.actualCornerRadius.d;
|
|
3245
|
+
__copy.e = this.i.actualCornerRadius.e;
|
|
3246
|
+
this.i.actualCornerRadius = __copy;
|
|
3124
3247
|
this._a("actualCornerRadiusBottomLeft", this.i.actualCornerRadius.b);
|
|
3125
|
-
this.i.actualCornerRadius = this.i.actualCornerRadius;
|
|
3126
3248
|
},
|
|
3127
3249
|
enumerable: false,
|
|
3128
3250
|
configurable: true
|
|
@@ -3133,9 +3255,17 @@ export var IgcDataGridComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
3133
3255
|
},
|
|
3134
3256
|
set: function (v) {
|
|
3135
3257
|
this.ensureActualCornerRadius();
|
|
3136
|
-
|
|
3258
|
+
var __nv = +v;
|
|
3259
|
+
if (this.i.actualCornerRadius.d === __nv) {
|
|
3260
|
+
return;
|
|
3261
|
+
}
|
|
3262
|
+
var __copy = new CornerRadius(2);
|
|
3263
|
+
__copy.d = __nv;
|
|
3264
|
+
__copy.c = this.i.actualCornerRadius.c;
|
|
3265
|
+
__copy.b = this.i.actualCornerRadius.b;
|
|
3266
|
+
__copy.e = this.i.actualCornerRadius.e;
|
|
3267
|
+
this.i.actualCornerRadius = __copy;
|
|
3137
3268
|
this._a("actualCornerRadiusTopLeft", this.i.actualCornerRadius.d);
|
|
3138
|
-
this.i.actualCornerRadius = this.i.actualCornerRadius;
|
|
3139
3269
|
},
|
|
3140
3270
|
enumerable: false,
|
|
3141
3271
|
configurable: true
|
|
@@ -3146,9 +3276,17 @@ export var IgcDataGridComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
3146
3276
|
},
|
|
3147
3277
|
set: function (v) {
|
|
3148
3278
|
this.ensureActualCornerRadius();
|
|
3149
|
-
|
|
3279
|
+
var __nv = +v;
|
|
3280
|
+
if (this.i.actualCornerRadius.e === __nv) {
|
|
3281
|
+
return;
|
|
3282
|
+
}
|
|
3283
|
+
var __copy = new CornerRadius(2);
|
|
3284
|
+
__copy.e = __nv;
|
|
3285
|
+
__copy.c = this.i.actualCornerRadius.c;
|
|
3286
|
+
__copy.b = this.i.actualCornerRadius.b;
|
|
3287
|
+
__copy.d = this.i.actualCornerRadius.d;
|
|
3288
|
+
this.i.actualCornerRadius = __copy;
|
|
3150
3289
|
this._a("actualCornerRadiusTopRight", this.i.actualCornerRadius.e);
|
|
3151
|
-
this.i.actualCornerRadius = this.i.actualCornerRadius;
|
|
3152
3290
|
},
|
|
3153
3291
|
enumerable: false,
|
|
3154
3292
|
configurable: true
|
|
@@ -4017,6 +4155,34 @@ export var IgcDataGridComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
4017
4155
|
enumerable: false,
|
|
4018
4156
|
configurable: true
|
|
4019
4157
|
});
|
|
4158
|
+
Object.defineProperty(IgcDataGridComponent.prototype, "scrollbarHoverBackground", {
|
|
4159
|
+
/**
|
|
4160
|
+
* Gets or sets the scrollbar thumb background color when the pointer is over it.
|
|
4161
|
+
*/
|
|
4162
|
+
get: function () {
|
|
4163
|
+
return brushToString(this.i.scrollbarHoverBackground);
|
|
4164
|
+
},
|
|
4165
|
+
set: function (v) {
|
|
4166
|
+
this.i.scrollbarHoverBackground = stringToBrush(v);
|
|
4167
|
+
this._a("scrollbarHoverBackground", brushToString(this.i.scrollbarHoverBackground));
|
|
4168
|
+
},
|
|
4169
|
+
enumerable: false,
|
|
4170
|
+
configurable: true
|
|
4171
|
+
});
|
|
4172
|
+
Object.defineProperty(IgcDataGridComponent.prototype, "scrollbarActiveBackground", {
|
|
4173
|
+
/**
|
|
4174
|
+
* Gets or sets the scrollbar thumb background color when the user is dragging it.
|
|
4175
|
+
*/
|
|
4176
|
+
get: function () {
|
|
4177
|
+
return brushToString(this.i.scrollbarActiveBackground);
|
|
4178
|
+
},
|
|
4179
|
+
set: function (v) {
|
|
4180
|
+
this.i.scrollbarActiveBackground = stringToBrush(v);
|
|
4181
|
+
this._a("scrollbarActiveBackground", brushToString(this.i.scrollbarActiveBackground));
|
|
4182
|
+
},
|
|
4183
|
+
enumerable: false,
|
|
4184
|
+
configurable: true
|
|
4185
|
+
});
|
|
4020
4186
|
Object.defineProperty(IgcDataGridComponent.prototype, "columnOptionsBackground", {
|
|
4021
4187
|
/**
|
|
4022
4188
|
* Gets or sets the column options dropdown background color.
|
|
@@ -4031,6 +4197,48 @@ export var IgcDataGridComponent = /** @class */ /*@__PURE__*/ (function (_super)
|
|
|
4031
4197
|
enumerable: false,
|
|
4032
4198
|
configurable: true
|
|
4033
4199
|
});
|
|
4200
|
+
Object.defineProperty(IgcDataGridComponent.prototype, "columnOptionsScrollbarBackground", {
|
|
4201
|
+
/**
|
|
4202
|
+
* Gets or sets the scrollbar background color for checkbox lists in the column options dialog.
|
|
4203
|
+
*/
|
|
4204
|
+
get: function () {
|
|
4205
|
+
return brushToString(this.i.columnOptionsScrollbarBackground);
|
|
4206
|
+
},
|
|
4207
|
+
set: function (v) {
|
|
4208
|
+
this.i.columnOptionsScrollbarBackground = stringToBrush(v);
|
|
4209
|
+
this._a("columnOptionsScrollbarBackground", brushToString(this.i.columnOptionsScrollbarBackground));
|
|
4210
|
+
},
|
|
4211
|
+
enumerable: false,
|
|
4212
|
+
configurable: true
|
|
4213
|
+
});
|
|
4214
|
+
Object.defineProperty(IgcDataGridComponent.prototype, "columnOptionsScrollbarHoverBackground", {
|
|
4215
|
+
/**
|
|
4216
|
+
* Gets or sets the scrollbar thumb hover background color for checkbox lists in the column options dialog.
|
|
4217
|
+
*/
|
|
4218
|
+
get: function () {
|
|
4219
|
+
return brushToString(this.i.columnOptionsScrollbarHoverBackground);
|
|
4220
|
+
},
|
|
4221
|
+
set: function (v) {
|
|
4222
|
+
this.i.columnOptionsScrollbarHoverBackground = stringToBrush(v);
|
|
4223
|
+
this._a("columnOptionsScrollbarHoverBackground", brushToString(this.i.columnOptionsScrollbarHoverBackground));
|
|
4224
|
+
},
|
|
4225
|
+
enumerable: false,
|
|
4226
|
+
configurable: true
|
|
4227
|
+
});
|
|
4228
|
+
Object.defineProperty(IgcDataGridComponent.prototype, "columnOptionsScrollbarActiveBackground", {
|
|
4229
|
+
/**
|
|
4230
|
+
* Gets or sets the scrollbar thumb active (dragging) background color for checkbox lists in the column options dialog.
|
|
4231
|
+
*/
|
|
4232
|
+
get: function () {
|
|
4233
|
+
return brushToString(this.i.columnOptionsScrollbarActiveBackground);
|
|
4234
|
+
},
|
|
4235
|
+
set: function (v) {
|
|
4236
|
+
this.i.columnOptionsScrollbarActiveBackground = stringToBrush(v);
|
|
4237
|
+
this._a("columnOptionsScrollbarActiveBackground", brushToString(this.i.columnOptionsScrollbarActiveBackground));
|
|
4238
|
+
},
|
|
4239
|
+
enumerable: false,
|
|
4240
|
+
configurable: true
|
|
4241
|
+
});
|
|
4034
4242
|
Object.defineProperty(IgcDataGridComponent.prototype, "columnOptionsTextColor", {
|
|
4035
4243
|
/**
|
|
4036
4244
|
* Gets or sets the text color for text inside the column options menu.
|
|
@@ -200,11 +200,11 @@ export var IgcDataGridFilterDialogComponent = /** @class */ /*@__PURE__*/ (funct
|
|
|
200
200
|
});
|
|
201
201
|
Object.defineProperty(IgcDataGridFilterDialogComponent.prototype, "iconColor", {
|
|
202
202
|
get: function () {
|
|
203
|
-
return brushToString(this.i.
|
|
203
|
+
return brushToString(this.i.dd);
|
|
204
204
|
},
|
|
205
205
|
set: function (v) {
|
|
206
|
-
this.i.
|
|
207
|
-
this._a("iconColor", brushToString(this.i.
|
|
206
|
+
this.i.dd = stringToBrush(v);
|
|
207
|
+
this._a("iconColor", brushToString(this.i.dd));
|
|
208
208
|
},
|
|
209
209
|
enumerable: false,
|
|
210
210
|
configurable: true
|
|
@@ -225,11 +225,53 @@ export var IgcDataGridFilterDialogComponent = /** @class */ /*@__PURE__*/ (funct
|
|
|
225
225
|
* Gets or sets the column options dropdown background color.
|
|
226
226
|
*/
|
|
227
227
|
get: function () {
|
|
228
|
-
return brushToString(this.i.
|
|
228
|
+
return brushToString(this.i.c1);
|
|
229
|
+
},
|
|
230
|
+
set: function (v) {
|
|
231
|
+
this.i.c1 = stringToBrush(v);
|
|
232
|
+
this._a("columnOptionsBackground", brushToString(this.i.c1));
|
|
233
|
+
},
|
|
234
|
+
enumerable: false,
|
|
235
|
+
configurable: true
|
|
236
|
+
});
|
|
237
|
+
Object.defineProperty(IgcDataGridFilterDialogComponent.prototype, "columnOptionsScrollbarBackground", {
|
|
238
|
+
/**
|
|
239
|
+
* Gets or sets the scrollbar background color for checkbox lists in the column options dialog.
|
|
240
|
+
*/
|
|
241
|
+
get: function () {
|
|
242
|
+
return brushToString(this.i.c7);
|
|
243
|
+
},
|
|
244
|
+
set: function (v) {
|
|
245
|
+
this.i.c7 = stringToBrush(v);
|
|
246
|
+
this._a("columnOptionsScrollbarBackground", brushToString(this.i.c7));
|
|
247
|
+
},
|
|
248
|
+
enumerable: false,
|
|
249
|
+
configurable: true
|
|
250
|
+
});
|
|
251
|
+
Object.defineProperty(IgcDataGridFilterDialogComponent.prototype, "columnOptionsScrollbarHoverBackground", {
|
|
252
|
+
/**
|
|
253
|
+
* Gets or sets the scrollbar thumb hover background color for checkbox lists in the column options dialog.
|
|
254
|
+
*/
|
|
255
|
+
get: function () {
|
|
256
|
+
return brushToString(this.i.c8);
|
|
229
257
|
},
|
|
230
258
|
set: function (v) {
|
|
231
|
-
this.i.
|
|
232
|
-
this._a("
|
|
259
|
+
this.i.c8 = stringToBrush(v);
|
|
260
|
+
this._a("columnOptionsScrollbarHoverBackground", brushToString(this.i.c8));
|
|
261
|
+
},
|
|
262
|
+
enumerable: false,
|
|
263
|
+
configurable: true
|
|
264
|
+
});
|
|
265
|
+
Object.defineProperty(IgcDataGridFilterDialogComponent.prototype, "columnOptionsScrollbarActiveBackground", {
|
|
266
|
+
/**
|
|
267
|
+
* Gets or sets the scrollbar thumb active (dragging) background color for checkbox lists in the column options dialog.
|
|
268
|
+
*/
|
|
269
|
+
get: function () {
|
|
270
|
+
return brushToString(this.i.c6);
|
|
271
|
+
},
|
|
272
|
+
set: function (v) {
|
|
273
|
+
this.i.c6 = stringToBrush(v);
|
|
274
|
+
this._a("columnOptionsScrollbarActiveBackground", brushToString(this.i.c6));
|
|
233
275
|
},
|
|
234
276
|
enumerable: false,
|
|
235
277
|
configurable: true
|
|
@@ -239,11 +281,11 @@ export var IgcDataGridFilterDialogComponent = /** @class */ /*@__PURE__*/ (funct
|
|
|
239
281
|
* Gets or sets the text color for text inside the column options menu.
|
|
240
282
|
*/
|
|
241
283
|
get: function () {
|
|
242
|
-
return brushToString(this.i.
|
|
284
|
+
return brushToString(this.i.da);
|
|
243
285
|
},
|
|
244
286
|
set: function (v) {
|
|
245
|
-
this.i.
|
|
246
|
-
this._a("columnOptionsTextColor", brushToString(this.i.
|
|
287
|
+
this.i.da = stringToBrush(v);
|
|
288
|
+
this._a("columnOptionsTextColor", brushToString(this.i.da));
|
|
247
289
|
},
|
|
248
290
|
enumerable: false,
|
|
249
291
|
configurable: true
|
|
@@ -272,11 +314,11 @@ export var IgcDataGridFilterDialogComponent = /** @class */ /*@__PURE__*/ (funct
|
|
|
272
314
|
* Gets or sets the hover background color inside the column options menu.
|
|
273
315
|
*/
|
|
274
316
|
get: function () {
|
|
275
|
-
return brushToString(this.i.
|
|
317
|
+
return brushToString(this.i.c5);
|
|
276
318
|
},
|
|
277
319
|
set: function (v) {
|
|
278
|
-
this.i.
|
|
279
|
-
this._a("columnOptionsHoverBackgroundColor", brushToString(this.i.
|
|
320
|
+
this.i.c5 = stringToBrush(v);
|
|
321
|
+
this._a("columnOptionsHoverBackgroundColor", brushToString(this.i.c5));
|
|
280
322
|
},
|
|
281
323
|
enumerable: false,
|
|
282
324
|
configurable: true
|
|
@@ -286,11 +328,11 @@ export var IgcDataGridFilterDialogComponent = /** @class */ /*@__PURE__*/ (funct
|
|
|
286
328
|
* Gets or sets the tooltip background color inside the column options menu.
|
|
287
329
|
*/
|
|
288
330
|
get: function () {
|
|
289
|
-
return brushToString(this.i.
|
|
331
|
+
return brushToString(this.i.db);
|
|
290
332
|
},
|
|
291
333
|
set: function (v) {
|
|
292
|
-
this.i.
|
|
293
|
-
this._a("columnOptionsToolTipBackgroundColor", brushToString(this.i.
|
|
334
|
+
this.i.db = stringToBrush(v);
|
|
335
|
+
this._a("columnOptionsToolTipBackgroundColor", brushToString(this.i.db));
|
|
294
336
|
},
|
|
295
337
|
enumerable: false,
|
|
296
338
|
configurable: true
|
|
@@ -300,11 +342,11 @@ export var IgcDataGridFilterDialogComponent = /** @class */ /*@__PURE__*/ (funct
|
|
|
300
342
|
* Gets or sets the tooltip text color inside the column options menu.
|
|
301
343
|
*/
|
|
302
344
|
get: function () {
|
|
303
|
-
return brushToString(this.i.
|
|
345
|
+
return brushToString(this.i.dc);
|
|
304
346
|
},
|
|
305
347
|
set: function (v) {
|
|
306
|
-
this.i.
|
|
307
|
-
this._a("columnOptionsToolTipTextColor", brushToString(this.i.
|
|
348
|
+
this.i.dc = stringToBrush(v);
|
|
349
|
+
this._a("columnOptionsToolTipTextColor", brushToString(this.i.dc));
|
|
308
350
|
},
|
|
309
351
|
enumerable: false,
|
|
310
352
|
configurable: true
|
|
@@ -314,11 +356,11 @@ export var IgcDataGridFilterDialogComponent = /** @class */ /*@__PURE__*/ (funct
|
|
|
314
356
|
* Gets or sets the highlight color inside the column options menu.
|
|
315
357
|
*/
|
|
316
358
|
get: function () {
|
|
317
|
-
return brushToString(this.i.
|
|
359
|
+
return brushToString(this.i.c4);
|
|
318
360
|
},
|
|
319
361
|
set: function (v) {
|
|
320
|
-
this.i.
|
|
321
|
-
this._a("columnOptionsHighlightColor", brushToString(this.i.
|
|
362
|
+
this.i.c4 = stringToBrush(v);
|
|
363
|
+
this._a("columnOptionsHighlightColor", brushToString(this.i.c4));
|
|
322
364
|
},
|
|
323
365
|
enumerable: false,
|
|
324
366
|
configurable: true
|
|
@@ -328,11 +370,11 @@ export var IgcDataGridFilterDialogComponent = /** @class */ /*@__PURE__*/ (funct
|
|
|
328
370
|
* Gets or sets the color of separators inside the column options menu.
|
|
329
371
|
*/
|
|
330
372
|
get: function () {
|
|
331
|
-
return brushToString(this.i.
|
|
373
|
+
return brushToString(this.i.c9);
|
|
332
374
|
},
|
|
333
375
|
set: function (v) {
|
|
334
|
-
this.i.
|
|
335
|
-
this._a("columnOptionsSeparatorColor", brushToString(this.i.
|
|
376
|
+
this.i.c9 = stringToBrush(v);
|
|
377
|
+
this._a("columnOptionsSeparatorColor", brushToString(this.i.c9));
|
|
336
378
|
},
|
|
337
379
|
enumerable: false,
|
|
338
380
|
configurable: true
|
|
@@ -342,11 +384,11 @@ export var IgcDataGridFilterDialogComponent = /** @class */ /*@__PURE__*/ (funct
|
|
|
342
384
|
* Gets or sets the background color for group headers inside the column options menu.
|
|
343
385
|
*/
|
|
344
386
|
get: function () {
|
|
345
|
-
return brushToString(this.i.
|
|
387
|
+
return brushToString(this.i.c2);
|
|
346
388
|
},
|
|
347
389
|
set: function (v) {
|
|
348
|
-
this.i.
|
|
349
|
-
this._a("columnOptionsGroupHeaderBackground", brushToString(this.i.
|
|
390
|
+
this.i.c2 = stringToBrush(v);
|
|
391
|
+
this._a("columnOptionsGroupHeaderBackground", brushToString(this.i.c2));
|
|
350
392
|
},
|
|
351
393
|
enumerable: false,
|
|
352
394
|
configurable: true
|
|
@@ -356,11 +398,11 @@ export var IgcDataGridFilterDialogComponent = /** @class */ /*@__PURE__*/ (funct
|
|
|
356
398
|
* Gets or sets the text color for group headers inside the column options menu.
|
|
357
399
|
*/
|
|
358
400
|
get: function () {
|
|
359
|
-
return brushToString(this.i.
|
|
401
|
+
return brushToString(this.i.c3);
|
|
360
402
|
},
|
|
361
403
|
set: function (v) {
|
|
362
|
-
this.i.
|
|
363
|
-
this._a("columnOptionsGroupHeaderTextColor", brushToString(this.i.
|
|
404
|
+
this.i.c3 = stringToBrush(v);
|
|
405
|
+
this._a("columnOptionsGroupHeaderTextColor", brushToString(this.i.c3));
|
|
364
406
|
},
|
|
365
407
|
enumerable: false,
|
|
366
408
|
configurable: true
|
|
@@ -386,11 +428,11 @@ export var IgcDataGridFilterDialogComponent = /** @class */ /*@__PURE__*/ (funct
|
|
|
386
428
|
});
|
|
387
429
|
Object.defineProperty(IgcDataGridFilterDialogComponent.prototype, "columnOptionsAccentColor", {
|
|
388
430
|
get: function () {
|
|
389
|
-
return brushToString(this.i.
|
|
431
|
+
return brushToString(this.i.c0);
|
|
390
432
|
},
|
|
391
433
|
set: function (v) {
|
|
392
|
-
this.i.
|
|
393
|
-
this._a("columnOptionsAccentColor", brushToString(this.i.
|
|
434
|
+
this.i.c0 = stringToBrush(v);
|
|
435
|
+
this._a("columnOptionsAccentColor", brushToString(this.i.c0));
|
|
394
436
|
},
|
|
395
437
|
enumerable: false,
|
|
396
438
|
configurable: true
|
|
@@ -502,16 +544,16 @@ export var IgcDataGridFilterDialogComponent = /** @class */ /*@__PURE__*/ (funct
|
|
|
502
544
|
this._inStyling = false;
|
|
503
545
|
};
|
|
504
546
|
IgcDataGridFilterDialogComponent.prototype.notifySizeChanged = function (width, height) {
|
|
505
|
-
this.i.
|
|
547
|
+
this.i.b5(width, height);
|
|
506
548
|
};
|
|
507
549
|
IgcDataGridFilterDialogComponent.prototype.notifyCellSizeChanged = function () {
|
|
508
|
-
this.i.
|
|
550
|
+
this.i.b4();
|
|
509
551
|
};
|
|
510
552
|
IgcDataGridFilterDialogComponent.prototype.showIcon = function () {
|
|
511
|
-
this.i.
|
|
553
|
+
this.i.ci();
|
|
512
554
|
};
|
|
513
555
|
IgcDataGridFilterDialogComponent.prototype.hideIcon = function () {
|
|
514
|
-
this.i.
|
|
556
|
+
this.i.b2();
|
|
515
557
|
};
|
|
516
558
|
IgcDataGridFilterDialogComponent.prototype.getDesiredToolbarActions = function () {
|
|
517
559
|
var iv = this.i.getDesiredToolbarActions();
|