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
|
@@ -94,11 +94,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
94
94
|
* Gets or sets the amount of left padding to use for the cell content for this column.
|
|
95
95
|
*/
|
|
96
96
|
get: function () {
|
|
97
|
-
return this.i.
|
|
97
|
+
return this.i.ln;
|
|
98
98
|
},
|
|
99
99
|
set: function (v) {
|
|
100
|
-
this.i.
|
|
101
|
-
this._a("paddingLeft", this.i.
|
|
100
|
+
this.i.ln = +v;
|
|
101
|
+
this._a("paddingLeft", this.i.ln);
|
|
102
102
|
},
|
|
103
103
|
enumerable: false,
|
|
104
104
|
configurable: true
|
|
@@ -108,11 +108,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
108
108
|
* Gets or sets the amount of top padding to use for the cell content for this column.
|
|
109
109
|
*/
|
|
110
110
|
get: function () {
|
|
111
|
-
return this.i.
|
|
111
|
+
return this.i.lp;
|
|
112
112
|
},
|
|
113
113
|
set: function (v) {
|
|
114
|
-
this.i.
|
|
115
|
-
this._a("paddingTop", this.i.
|
|
114
|
+
this.i.lp = +v;
|
|
115
|
+
this._a("paddingTop", this.i.lp);
|
|
116
116
|
},
|
|
117
117
|
enumerable: false,
|
|
118
118
|
configurable: true
|
|
@@ -122,11 +122,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
122
122
|
* Gets or sets the amount of right padding to use for the cell content of this column.
|
|
123
123
|
*/
|
|
124
124
|
get: function () {
|
|
125
|
-
return this.i.
|
|
125
|
+
return this.i.lo;
|
|
126
126
|
},
|
|
127
127
|
set: function (v) {
|
|
128
|
-
this.i.
|
|
129
|
-
this._a("paddingRight", this.i.
|
|
128
|
+
this.i.lo = +v;
|
|
129
|
+
this._a("paddingRight", this.i.lo);
|
|
130
130
|
},
|
|
131
131
|
enumerable: false,
|
|
132
132
|
configurable: true
|
|
@@ -136,11 +136,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
136
136
|
* Gets or sets the amount of bottom padding to use for the cell content of this column.
|
|
137
137
|
*/
|
|
138
138
|
get: function () {
|
|
139
|
-
return this.i.
|
|
139
|
+
return this.i.lm;
|
|
140
140
|
},
|
|
141
141
|
set: function (v) {
|
|
142
|
-
this.i.
|
|
143
|
-
this._a("paddingBottom", this.i.
|
|
142
|
+
this.i.lm = +v;
|
|
143
|
+
this._a("paddingBottom", this.i.lm);
|
|
144
144
|
},
|
|
145
145
|
enumerable: false,
|
|
146
146
|
configurable: true
|
|
@@ -150,10 +150,10 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
150
150
|
* Gets or sets an unique name of the Column
|
|
151
151
|
*/
|
|
152
152
|
get: function () {
|
|
153
|
-
return this.i.
|
|
153
|
+
return this.i.ok;
|
|
154
154
|
},
|
|
155
155
|
set: function (v) {
|
|
156
|
-
this.i.
|
|
156
|
+
this.i.ok = v;
|
|
157
157
|
},
|
|
158
158
|
enumerable: false,
|
|
159
159
|
configurable: true
|
|
@@ -163,10 +163,10 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
163
163
|
* Gets or sets the key used for the column binding
|
|
164
164
|
*/
|
|
165
165
|
get: function () {
|
|
166
|
-
return this.i.
|
|
166
|
+
return this.i.ns;
|
|
167
167
|
},
|
|
168
168
|
set: function (v) {
|
|
169
|
-
this.i.
|
|
169
|
+
this.i.ns = v;
|
|
170
170
|
},
|
|
171
171
|
enumerable: false,
|
|
172
172
|
configurable: true
|
|
@@ -176,10 +176,10 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
176
176
|
* Gets or sets the text displayed in the header of the column
|
|
177
177
|
*/
|
|
178
178
|
get: function () {
|
|
179
|
-
return this.i.
|
|
179
|
+
return this.i.nz;
|
|
180
180
|
},
|
|
181
181
|
set: function (v) {
|
|
182
|
-
this.i.
|
|
182
|
+
this.i.nz = v;
|
|
183
183
|
},
|
|
184
184
|
enumerable: false,
|
|
185
185
|
configurable: true
|
|
@@ -189,10 +189,10 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
189
189
|
* Gets the actual text displayed in the header of the column
|
|
190
190
|
*/
|
|
191
191
|
get: function () {
|
|
192
|
-
return this.i.
|
|
192
|
+
return this.i.mq;
|
|
193
193
|
},
|
|
194
194
|
set: function (v) {
|
|
195
|
-
this.i.
|
|
195
|
+
this.i.mq = v;
|
|
196
196
|
},
|
|
197
197
|
enumerable: false,
|
|
198
198
|
configurable: true
|
|
@@ -202,11 +202,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
202
202
|
* Gets or sets the background color to use for the cells when they are selected
|
|
203
203
|
*/
|
|
204
204
|
get: function () {
|
|
205
|
-
return brushToString(this.i.
|
|
205
|
+
return brushToString(this.i.sv);
|
|
206
206
|
},
|
|
207
207
|
set: function (v) {
|
|
208
|
-
this.i.
|
|
209
|
-
this._a("selectedBackground", brushToString(this.i.
|
|
208
|
+
this.i.sv = stringToBrush(v);
|
|
209
|
+
this._a("selectedBackground", brushToString(this.i.sv));
|
|
210
210
|
},
|
|
211
211
|
enumerable: false,
|
|
212
212
|
configurable: true
|
|
@@ -216,11 +216,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
216
216
|
* Gets the actual background color that is used for the cells when they are selected
|
|
217
217
|
*/
|
|
218
218
|
get: function () {
|
|
219
|
-
return brushToString(this.i.
|
|
219
|
+
return brushToString(this.i.sa);
|
|
220
220
|
},
|
|
221
221
|
set: function (v) {
|
|
222
|
-
this.i.
|
|
223
|
-
this._a("actualSelectedBackground", brushToString(this.i.
|
|
222
|
+
this.i.sa = stringToBrush(v);
|
|
223
|
+
this._a("actualSelectedBackground", brushToString(this.i.sa));
|
|
224
224
|
},
|
|
225
225
|
enumerable: false,
|
|
226
226
|
configurable: true
|
|
@@ -230,11 +230,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
230
230
|
* Gets or sets the text color to use for the cells when they are selected
|
|
231
231
|
*/
|
|
232
232
|
get: function () {
|
|
233
|
-
return brushToString(this.i.
|
|
233
|
+
return brushToString(this.i.sw);
|
|
234
234
|
},
|
|
235
235
|
set: function (v) {
|
|
236
|
-
this.i.
|
|
237
|
-
this._a("selectedTextColor", brushToString(this.i.
|
|
236
|
+
this.i.sw = stringToBrush(v);
|
|
237
|
+
this._a("selectedTextColor", brushToString(this.i.sw));
|
|
238
238
|
},
|
|
239
239
|
enumerable: false,
|
|
240
240
|
configurable: true
|
|
@@ -244,11 +244,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
244
244
|
* Gets the actual text color that is used for the cells when they are selected
|
|
245
245
|
*/
|
|
246
246
|
get: function () {
|
|
247
|
-
return brushToString(this.i.
|
|
247
|
+
return brushToString(this.i.sb);
|
|
248
248
|
},
|
|
249
249
|
set: function (v) {
|
|
250
|
-
this.i.
|
|
251
|
-
this._a("actualSelectedTextColor", brushToString(this.i.
|
|
250
|
+
this.i.sb = stringToBrush(v);
|
|
251
|
+
this._a("actualSelectedTextColor", brushToString(this.i.sb));
|
|
252
252
|
},
|
|
253
253
|
enumerable: false,
|
|
254
254
|
configurable: true
|
|
@@ -258,11 +258,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
258
258
|
* Gets or sets the background color to use for the cells when the row is hovered.
|
|
259
259
|
*/
|
|
260
260
|
get: function () {
|
|
261
|
-
return brushToString(this.i.
|
|
261
|
+
return brushToString(this.i.st);
|
|
262
262
|
},
|
|
263
263
|
set: function (v) {
|
|
264
|
-
this.i.
|
|
265
|
-
this._a("rowHoverBackground", brushToString(this.i.
|
|
264
|
+
this.i.st = stringToBrush(v);
|
|
265
|
+
this._a("rowHoverBackground", brushToString(this.i.st));
|
|
266
266
|
},
|
|
267
267
|
enumerable: false,
|
|
268
268
|
configurable: true
|
|
@@ -272,11 +272,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
272
272
|
* Gets the actual background color that is used for the cells when they are hovered.
|
|
273
273
|
*/
|
|
274
274
|
get: function () {
|
|
275
|
-
return brushToString(this.i.
|
|
275
|
+
return brushToString(this.i.r8);
|
|
276
276
|
},
|
|
277
277
|
set: function (v) {
|
|
278
|
-
this.i.
|
|
279
|
-
this._a("actualHoverBackground", brushToString(this.i.
|
|
278
|
+
this.i.r8 = stringToBrush(v);
|
|
279
|
+
this._a("actualHoverBackground", brushToString(this.i.r8));
|
|
280
280
|
},
|
|
281
281
|
enumerable: false,
|
|
282
282
|
configurable: true
|
|
@@ -286,11 +286,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
286
286
|
* Gets or sets the text color to use for the cells when the row is hovered.
|
|
287
287
|
*/
|
|
288
288
|
get: function () {
|
|
289
|
-
return brushToString(this.i.
|
|
289
|
+
return brushToString(this.i.su);
|
|
290
290
|
},
|
|
291
291
|
set: function (v) {
|
|
292
|
-
this.i.
|
|
293
|
-
this._a("rowHoverTextColor", brushToString(this.i.
|
|
292
|
+
this.i.su = stringToBrush(v);
|
|
293
|
+
this._a("rowHoverTextColor", brushToString(this.i.su));
|
|
294
294
|
},
|
|
295
295
|
enumerable: false,
|
|
296
296
|
configurable: true
|
|
@@ -300,11 +300,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
300
300
|
* Gets the actual text color that is used for the cells when they are hovered.
|
|
301
301
|
*/
|
|
302
302
|
get: function () {
|
|
303
|
-
return brushToString(this.i.
|
|
303
|
+
return brushToString(this.i.r9);
|
|
304
304
|
},
|
|
305
305
|
set: function (v) {
|
|
306
|
-
this.i.
|
|
307
|
-
this._a("actualRowHoverTextColor", brushToString(this.i.
|
|
306
|
+
this.i.r9 = stringToBrush(v);
|
|
307
|
+
this._a("actualRowHoverTextColor", brushToString(this.i.r9));
|
|
308
308
|
},
|
|
309
309
|
enumerable: false,
|
|
310
310
|
configurable: true
|
|
@@ -314,7 +314,7 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
314
314
|
* Gets or sets the animation settings to use for this column.
|
|
315
315
|
*/
|
|
316
316
|
get: function () {
|
|
317
|
-
var r = this.i.
|
|
317
|
+
var r = this.i.ie;
|
|
318
318
|
if (r == null) {
|
|
319
319
|
return null;
|
|
320
320
|
}
|
|
@@ -333,7 +333,7 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
333
333
|
return r.externalObject;
|
|
334
334
|
},
|
|
335
335
|
set: function (v) {
|
|
336
|
-
v == null ? this.i.
|
|
336
|
+
v == null ? this.i.ie = null : this.i.ie = v.i;
|
|
337
337
|
},
|
|
338
338
|
enumerable: false,
|
|
339
339
|
configurable: true
|
|
@@ -378,11 +378,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
378
378
|
* Gets or sets the minimum width to use for this column. Overrides the DefaultColumnMinWidth from the grid, if set.
|
|
379
379
|
*/
|
|
380
380
|
get: function () {
|
|
381
|
-
return this.i.
|
|
381
|
+
return this.i.ku;
|
|
382
382
|
},
|
|
383
383
|
set: function (v) {
|
|
384
|
-
this.i.
|
|
385
|
-
this._a("minWidth", this.i.
|
|
384
|
+
this.i.ku = +v;
|
|
385
|
+
this._a("minWidth", this.i.ku);
|
|
386
386
|
},
|
|
387
387
|
enumerable: false,
|
|
388
388
|
configurable: true
|
|
@@ -392,11 +392,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
392
392
|
* Gets whether this column was projected from markup/templates and is constrained.
|
|
393
393
|
*/
|
|
394
394
|
get: function () {
|
|
395
|
-
return this.i.
|
|
395
|
+
return this.i.kb;
|
|
396
396
|
},
|
|
397
397
|
set: function (v) {
|
|
398
|
-
this.i.
|
|
399
|
-
this._a("isFromMarkup", this.i.
|
|
398
|
+
this.i.kb = ensureBool(v);
|
|
399
|
+
this._a("isFromMarkup", this.i.kb);
|
|
400
400
|
},
|
|
401
401
|
enumerable: false,
|
|
402
402
|
configurable: true
|
|
@@ -406,11 +406,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
406
406
|
* Gets whether this column was auto generated.
|
|
407
407
|
*/
|
|
408
408
|
get: function () {
|
|
409
|
-
return this.i.
|
|
409
|
+
return this.i.j5;
|
|
410
410
|
},
|
|
411
411
|
set: function (v) {
|
|
412
|
-
this.i.
|
|
413
|
-
this._a("isAutoGenerated", this.i.
|
|
412
|
+
this.i.j5 = ensureBool(v);
|
|
413
|
+
this._a("isAutoGenerated", this.i.j5);
|
|
414
414
|
},
|
|
415
415
|
enumerable: false,
|
|
416
416
|
configurable: true
|
|
@@ -420,10 +420,10 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
420
420
|
* Gets or sets a filter to apply on the values of this column
|
|
421
421
|
*/
|
|
422
422
|
get: function () {
|
|
423
|
-
return this.i.
|
|
423
|
+
return this.i.g6;
|
|
424
424
|
},
|
|
425
425
|
set: function (v) {
|
|
426
|
-
this.i.
|
|
426
|
+
this.i.g6 = v;
|
|
427
427
|
},
|
|
428
428
|
enumerable: false,
|
|
429
429
|
configurable: true
|
|
@@ -433,10 +433,10 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
433
433
|
* Gets or sets a filter to apply to the values of this column.
|
|
434
434
|
*/
|
|
435
435
|
get: function () {
|
|
436
|
-
return this.i.
|
|
436
|
+
return this.i.g8;
|
|
437
437
|
},
|
|
438
438
|
set: function (v) {
|
|
439
|
-
this.i.
|
|
439
|
+
this.i.g8 = v;
|
|
440
440
|
},
|
|
441
441
|
enumerable: false,
|
|
442
442
|
configurable: true
|
|
@@ -472,11 +472,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
472
472
|
* Gets or sets whether filtering is enabled for this column.
|
|
473
473
|
*/
|
|
474
474
|
get: function () {
|
|
475
|
-
return this.i.
|
|
475
|
+
return this.i.ka;
|
|
476
476
|
},
|
|
477
477
|
set: function (v) {
|
|
478
|
-
this.i.
|
|
479
|
-
this._a("isFilteringEnabled", this.i.
|
|
478
|
+
this.i.ka = ensureBool(v);
|
|
479
|
+
this._a("isFilteringEnabled", this.i.ka);
|
|
480
480
|
},
|
|
481
481
|
enumerable: false,
|
|
482
482
|
configurable: true
|
|
@@ -486,11 +486,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
486
486
|
* Gets or sets whether resizing is enabled for this column.
|
|
487
487
|
*/
|
|
488
488
|
get: function () {
|
|
489
|
-
return this.i.
|
|
489
|
+
return this.i.kd;
|
|
490
490
|
},
|
|
491
491
|
set: function (v) {
|
|
492
|
-
this.i.
|
|
493
|
-
this._a("isResizingEnabled", this.i.
|
|
492
|
+
this.i.kd = ensureBool(v);
|
|
493
|
+
this._a("isResizingEnabled", this.i.kd);
|
|
494
494
|
},
|
|
495
495
|
enumerable: false,
|
|
496
496
|
configurable: true
|
|
@@ -500,11 +500,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
500
500
|
* Gets or sets whether sorting is enabled for this column from the UI.
|
|
501
501
|
*/
|
|
502
502
|
get: function () {
|
|
503
|
-
return this.i.
|
|
503
|
+
return this.i.ke;
|
|
504
504
|
},
|
|
505
505
|
set: function (v) {
|
|
506
|
-
this.i.
|
|
507
|
-
this._a("isSortingEnabled", this.i.
|
|
506
|
+
this.i.ke = ensureBool(v);
|
|
507
|
+
this._a("isSortingEnabled", this.i.ke);
|
|
508
508
|
},
|
|
509
509
|
enumerable: false,
|
|
510
510
|
configurable: true
|
|
@@ -514,11 +514,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
514
514
|
* Gets or sets whether or not a column is hidden from the grid
|
|
515
515
|
*/
|
|
516
516
|
get: function () {
|
|
517
|
-
return this.i.
|
|
517
|
+
return this.i.kc;
|
|
518
518
|
},
|
|
519
519
|
set: function (v) {
|
|
520
|
-
this.i.
|
|
521
|
-
this._a("isHidden", this.i.
|
|
520
|
+
this.i.kc = ensureBool(v);
|
|
521
|
+
this._a("isHidden", this.i.kc);
|
|
522
522
|
},
|
|
523
523
|
enumerable: false,
|
|
524
524
|
configurable: true
|
|
@@ -528,11 +528,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
528
528
|
* Gets or sets if a column should be removed from the grid when it is fully hidden
|
|
529
529
|
*/
|
|
530
530
|
get: function () {
|
|
531
|
-
return this.i.
|
|
531
|
+
return this.i.kh;
|
|
532
532
|
},
|
|
533
533
|
set: function (v) {
|
|
534
|
-
this.i.
|
|
535
|
-
this._a("shouldRemoveWhenHidden", this.i.
|
|
534
|
+
this.i.kh = ensureBool(v);
|
|
535
|
+
this._a("shouldRemoveWhenHidden", this.i.kh);
|
|
536
536
|
},
|
|
537
537
|
enumerable: false,
|
|
538
538
|
configurable: true
|
|
@@ -542,11 +542,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
542
542
|
* Gets the current sort direction (None, Ascending, Descending) for this column.
|
|
543
543
|
*/
|
|
544
544
|
get: function () {
|
|
545
|
-
return this.i.
|
|
545
|
+
return this.i.hw;
|
|
546
546
|
},
|
|
547
547
|
set: function (v) {
|
|
548
|
-
this.i.
|
|
549
|
-
this._a("sortDirection", enumToString(ColumnSortDirection_$type, this.i.
|
|
548
|
+
this.i.hw = ensureEnum(ColumnSortDirection_$type, v);
|
|
549
|
+
this._a("sortDirection", enumToString(ColumnSortDirection_$type, this.i.hw));
|
|
550
550
|
},
|
|
551
551
|
enumerable: false,
|
|
552
552
|
configurable: true
|
|
@@ -556,11 +556,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
556
556
|
* Gets or sets the current fixed position for this column.
|
|
557
557
|
*/
|
|
558
558
|
get: function () {
|
|
559
|
-
return this.i.
|
|
559
|
+
return this.i.iu;
|
|
560
560
|
},
|
|
561
561
|
set: function (v) {
|
|
562
|
-
this.i.
|
|
563
|
-
this._a("pinned", enumToString(PinnedPositions_$type, this.i.
|
|
562
|
+
this.i.iu = ensureEnum(PinnedPositions_$type, v);
|
|
563
|
+
this._a("pinned", enumToString(PinnedPositions_$type, this.i.iu));
|
|
564
564
|
},
|
|
565
565
|
enumerable: false,
|
|
566
566
|
configurable: true
|
|
@@ -570,11 +570,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
570
570
|
* Gets the actual column options icon alignment for this column.
|
|
571
571
|
*/
|
|
572
572
|
get: function () {
|
|
573
|
-
return this.i.
|
|
573
|
+
return this.i.hn;
|
|
574
574
|
},
|
|
575
575
|
set: function (v) {
|
|
576
|
-
this.i.
|
|
577
|
-
this._a("actualColumnOptionsIconAlignment", enumToString(ColumnOptionsIconAlignment_$type, this.i.
|
|
576
|
+
this.i.hn = ensureEnum(ColumnOptionsIconAlignment_$type, v);
|
|
577
|
+
this._a("actualColumnOptionsIconAlignment", enumToString(ColumnOptionsIconAlignment_$type, this.i.hn));
|
|
578
578
|
},
|
|
579
579
|
enumerable: false,
|
|
580
580
|
configurable: true
|
|
@@ -584,11 +584,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
584
584
|
* Gets or sets whether the column options icon is aligned opposite the header text or not.
|
|
585
585
|
*/
|
|
586
586
|
get: function () {
|
|
587
|
-
return this.i.
|
|
587
|
+
return this.i.ho;
|
|
588
588
|
},
|
|
589
589
|
set: function (v) {
|
|
590
|
-
this.i.
|
|
591
|
-
this._a("columnOptionsIconAlignment", enumToString(ColumnOptionsIconAlignment_$type, this.i.
|
|
590
|
+
this.i.ho = ensureEnum(ColumnOptionsIconAlignment_$type, v);
|
|
591
|
+
this._a("columnOptionsIconAlignment", enumToString(ColumnOptionsIconAlignment_$type, this.i.ho));
|
|
592
592
|
},
|
|
593
593
|
enumerable: false,
|
|
594
594
|
configurable: true
|
|
@@ -598,11 +598,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
598
598
|
* Gets the actual column options icon color for this column.
|
|
599
599
|
*/
|
|
600
600
|
get: function () {
|
|
601
|
-
return brushToString(this.i.
|
|
601
|
+
return brushToString(this.i.rz);
|
|
602
602
|
},
|
|
603
603
|
set: function (v) {
|
|
604
|
-
this.i.
|
|
605
|
-
this._a("actualColumnOptionsIconColor", brushToString(this.i.
|
|
604
|
+
this.i.rz = stringToBrush(v);
|
|
605
|
+
this._a("actualColumnOptionsIconColor", brushToString(this.i.rz));
|
|
606
606
|
},
|
|
607
607
|
enumerable: false,
|
|
608
608
|
configurable: true
|
|
@@ -612,11 +612,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
612
612
|
* Gets or sets the column options icon color for this column.
|
|
613
613
|
*/
|
|
614
614
|
get: function () {
|
|
615
|
-
return brushToString(this.i.
|
|
615
|
+
return brushToString(this.i.si);
|
|
616
616
|
},
|
|
617
617
|
set: function (v) {
|
|
618
|
-
this.i.
|
|
619
|
-
this._a("columnOptionsIconColor", brushToString(this.i.
|
|
618
|
+
this.i.si = stringToBrush(v);
|
|
619
|
+
this._a("columnOptionsIconColor", brushToString(this.i.si));
|
|
620
620
|
},
|
|
621
621
|
enumerable: false,
|
|
622
622
|
configurable: true
|
|
@@ -626,11 +626,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
626
626
|
* Gets or sets how the column option icon will behave in the column header.
|
|
627
627
|
*/
|
|
628
628
|
get: function () {
|
|
629
|
-
return this.i.
|
|
629
|
+
return this.i.hs;
|
|
630
630
|
},
|
|
631
631
|
set: function (v) {
|
|
632
|
-
this.i.
|
|
633
|
-
this._a("columnOptionsIconBehavior", enumToString(ColumnOptionsIconBehavior_$type, this.i.
|
|
632
|
+
this.i.hs = ensureEnum(ColumnOptionsIconBehavior_$type, v);
|
|
633
|
+
this._a("columnOptionsIconBehavior", enumToString(ColumnOptionsIconBehavior_$type, this.i.hs));
|
|
634
634
|
},
|
|
635
635
|
enumerable: false,
|
|
636
636
|
configurable: true
|
|
@@ -640,11 +640,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
640
640
|
* Gets or sets how the column option icon will behave in the column header.
|
|
641
641
|
*/
|
|
642
642
|
get: function () {
|
|
643
|
-
return this.i.
|
|
643
|
+
return this.i.hr;
|
|
644
644
|
},
|
|
645
645
|
set: function (v) {
|
|
646
|
-
this.i.
|
|
647
|
-
this._a("actualColumnOptionsIconBehavior", enumToString(ColumnOptionsIconBehavior_$type, this.i.
|
|
646
|
+
this.i.hr = ensureEnum(ColumnOptionsIconBehavior_$type, v);
|
|
647
|
+
this._a("actualColumnOptionsIconBehavior", enumToString(ColumnOptionsIconBehavior_$type, this.i.hr));
|
|
648
648
|
},
|
|
649
649
|
enumerable: false,
|
|
650
650
|
configurable: true
|
|
@@ -654,11 +654,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
654
654
|
* Gets the actual state of the column options for this column.
|
|
655
655
|
*/
|
|
656
656
|
get: function () {
|
|
657
|
-
return this.i.
|
|
657
|
+
return this.i.jy;
|
|
658
658
|
},
|
|
659
659
|
set: function (v) {
|
|
660
|
-
this.i.
|
|
661
|
-
this._a("actualIsColumnOptionsEnabled", this.i.
|
|
660
|
+
this.i.jy = ensureBool(v);
|
|
661
|
+
this._a("actualIsColumnOptionsEnabled", this.i.jy);
|
|
662
662
|
},
|
|
663
663
|
enumerable: false,
|
|
664
664
|
configurable: true
|
|
@@ -669,11 +669,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
669
669
|
* then it will be disabled for the column regardless of what this is set to.
|
|
670
670
|
*/
|
|
671
671
|
get: function () {
|
|
672
|
-
return this.i.
|
|
672
|
+
return this.i.j6;
|
|
673
673
|
},
|
|
674
674
|
set: function (v) {
|
|
675
|
-
this.i.
|
|
676
|
-
this._a("isColumnOptionsEnabled", this.i.
|
|
675
|
+
this.i.j6 = ensureBool(v);
|
|
676
|
+
this._a("isColumnOptionsEnabled", this.i.j6);
|
|
677
677
|
},
|
|
678
678
|
enumerable: false,
|
|
679
679
|
configurable: true
|
|
@@ -683,11 +683,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
683
683
|
* Gets the actual state of summaries menu in the column options for this column.
|
|
684
684
|
*/
|
|
685
685
|
get: function () {
|
|
686
|
-
return this.i.
|
|
686
|
+
return this.i.j0;
|
|
687
687
|
},
|
|
688
688
|
set: function (v) {
|
|
689
|
-
this.i.
|
|
690
|
-
this._a("actualIsColumnOptionsSummariesEnabled", this.i.
|
|
689
|
+
this.i.j0 = ensureBool(v);
|
|
690
|
+
this._a("actualIsColumnOptionsSummariesEnabled", this.i.j0);
|
|
691
691
|
},
|
|
692
692
|
enumerable: false,
|
|
693
693
|
configurable: true
|
|
@@ -697,11 +697,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
697
697
|
* Gets or sets whether to show the summaries option in the column options menu for this column.
|
|
698
698
|
*/
|
|
699
699
|
get: function () {
|
|
700
|
-
return this.i.
|
|
700
|
+
return this.i.j8;
|
|
701
701
|
},
|
|
702
702
|
set: function (v) {
|
|
703
|
-
this.i.
|
|
704
|
-
this._a("isColumnOptionsSummariesEnabled", this.i.
|
|
703
|
+
this.i.j8 = ensureBool(v);
|
|
704
|
+
this._a("isColumnOptionsSummariesEnabled", this.i.j8);
|
|
705
705
|
},
|
|
706
706
|
enumerable: false,
|
|
707
707
|
configurable: true
|
|
@@ -711,11 +711,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
711
711
|
* Gets the actual state of grouping menu in the column options for this column.
|
|
712
712
|
*/
|
|
713
713
|
get: function () {
|
|
714
|
-
return this.i.
|
|
714
|
+
return this.i.jz;
|
|
715
715
|
},
|
|
716
716
|
set: function (v) {
|
|
717
|
-
this.i.
|
|
718
|
-
this._a("actualIsColumnOptionsGroupingEnabled", this.i.
|
|
717
|
+
this.i.jz = ensureBool(v);
|
|
718
|
+
this._a("actualIsColumnOptionsGroupingEnabled", this.i.jz);
|
|
719
719
|
},
|
|
720
720
|
enumerable: false,
|
|
721
721
|
configurable: true
|
|
@@ -725,11 +725,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
725
725
|
* Gets or sets whether to show the grouping option in the column options menu for this column.
|
|
726
726
|
*/
|
|
727
727
|
get: function () {
|
|
728
|
-
return this.i.
|
|
728
|
+
return this.i.j7;
|
|
729
729
|
},
|
|
730
730
|
set: function (v) {
|
|
731
|
-
this.i.
|
|
732
|
-
this._a("isColumnOptionsGroupingEnabled", this.i.
|
|
731
|
+
this.i.j7 = ensureBool(v);
|
|
732
|
+
this._a("isColumnOptionsGroupingEnabled", this.i.j7);
|
|
733
733
|
},
|
|
734
734
|
enumerable: false,
|
|
735
735
|
configurable: true
|
|
@@ -739,11 +739,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
739
739
|
* Gets or sets the column options dropdown background color.
|
|
740
740
|
*/
|
|
741
741
|
get: function () {
|
|
742
|
-
return brushToString(this.i.
|
|
742
|
+
return brushToString(this.i.ru);
|
|
743
743
|
},
|
|
744
744
|
set: function (v) {
|
|
745
|
-
this.i.
|
|
746
|
-
this._a("actualColumnOptionsBackground", brushToString(this.i.
|
|
745
|
+
this.i.ru = stringToBrush(v);
|
|
746
|
+
this._a("actualColumnOptionsBackground", brushToString(this.i.ru));
|
|
747
747
|
},
|
|
748
748
|
enumerable: false,
|
|
749
749
|
configurable: true
|
|
@@ -753,11 +753,95 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
753
753
|
* Gets or sets the column options dropdown background color.
|
|
754
754
|
*/
|
|
755
755
|
get: function () {
|
|
756
|
-
return brushToString(this.i.
|
|
756
|
+
return brushToString(this.i.sd);
|
|
757
757
|
},
|
|
758
758
|
set: function (v) {
|
|
759
|
-
this.i.
|
|
760
|
-
this._a("columnOptionsBackground", brushToString(this.i.
|
|
759
|
+
this.i.sd = stringToBrush(v);
|
|
760
|
+
this._a("columnOptionsBackground", brushToString(this.i.sd));
|
|
761
|
+
},
|
|
762
|
+
enumerable: false,
|
|
763
|
+
configurable: true
|
|
764
|
+
});
|
|
765
|
+
Object.defineProperty(IgcDataGridColumnComponent.prototype, "actualColumnOptionsScrollbarBackground", {
|
|
766
|
+
/**
|
|
767
|
+
* Gets the resolved scrollbar background color for checkbox lists in the column options dialog.
|
|
768
|
+
*/
|
|
769
|
+
get: function () {
|
|
770
|
+
return brushToString(this.i.r1);
|
|
771
|
+
},
|
|
772
|
+
set: function (v) {
|
|
773
|
+
this.i.r1 = stringToBrush(v);
|
|
774
|
+
this._a("actualColumnOptionsScrollbarBackground", brushToString(this.i.r1));
|
|
775
|
+
},
|
|
776
|
+
enumerable: false,
|
|
777
|
+
configurable: true
|
|
778
|
+
});
|
|
779
|
+
Object.defineProperty(IgcDataGridColumnComponent.prototype, "columnOptionsScrollbarBackground", {
|
|
780
|
+
/**
|
|
781
|
+
* Gets or sets the scrollbar background color for checkbox lists in this column's options dialog.
|
|
782
|
+
*/
|
|
783
|
+
get: function () {
|
|
784
|
+
return brushToString(this.i.sk);
|
|
785
|
+
},
|
|
786
|
+
set: function (v) {
|
|
787
|
+
this.i.sk = stringToBrush(v);
|
|
788
|
+
this._a("columnOptionsScrollbarBackground", brushToString(this.i.sk));
|
|
789
|
+
},
|
|
790
|
+
enumerable: false,
|
|
791
|
+
configurable: true
|
|
792
|
+
});
|
|
793
|
+
Object.defineProperty(IgcDataGridColumnComponent.prototype, "actualColumnOptionsScrollbarHoverBackground", {
|
|
794
|
+
/**
|
|
795
|
+
* Gets the resolved scrollbar thumb hover background color for checkbox lists in the column options dialog.
|
|
796
|
+
*/
|
|
797
|
+
get: function () {
|
|
798
|
+
return brushToString(this.i.r2);
|
|
799
|
+
},
|
|
800
|
+
set: function (v) {
|
|
801
|
+
this.i.r2 = stringToBrush(v);
|
|
802
|
+
this._a("actualColumnOptionsScrollbarHoverBackground", brushToString(this.i.r2));
|
|
803
|
+
},
|
|
804
|
+
enumerable: false,
|
|
805
|
+
configurable: true
|
|
806
|
+
});
|
|
807
|
+
Object.defineProperty(IgcDataGridColumnComponent.prototype, "columnOptionsScrollbarHoverBackground", {
|
|
808
|
+
/**
|
|
809
|
+
* Gets or sets the scrollbar thumb hover background color for checkbox lists in this column's options dialog.
|
|
810
|
+
*/
|
|
811
|
+
get: function () {
|
|
812
|
+
return brushToString(this.i.sl);
|
|
813
|
+
},
|
|
814
|
+
set: function (v) {
|
|
815
|
+
this.i.sl = stringToBrush(v);
|
|
816
|
+
this._a("columnOptionsScrollbarHoverBackground", brushToString(this.i.sl));
|
|
817
|
+
},
|
|
818
|
+
enumerable: false,
|
|
819
|
+
configurable: true
|
|
820
|
+
});
|
|
821
|
+
Object.defineProperty(IgcDataGridColumnComponent.prototype, "actualColumnOptionsScrollbarActiveBackground", {
|
|
822
|
+
/**
|
|
823
|
+
* Gets the resolved scrollbar thumb active (dragging) background color for checkbox lists in the column options dialog.
|
|
824
|
+
*/
|
|
825
|
+
get: function () {
|
|
826
|
+
return brushToString(this.i.r0);
|
|
827
|
+
},
|
|
828
|
+
set: function (v) {
|
|
829
|
+
this.i.r0 = stringToBrush(v);
|
|
830
|
+
this._a("actualColumnOptionsScrollbarActiveBackground", brushToString(this.i.r0));
|
|
831
|
+
},
|
|
832
|
+
enumerable: false,
|
|
833
|
+
configurable: true
|
|
834
|
+
});
|
|
835
|
+
Object.defineProperty(IgcDataGridColumnComponent.prototype, "columnOptionsScrollbarActiveBackground", {
|
|
836
|
+
/**
|
|
837
|
+
* Gets or sets the scrollbar thumb active (dragging) background color for checkbox lists in this column's options dialog.
|
|
838
|
+
*/
|
|
839
|
+
get: function () {
|
|
840
|
+
return brushToString(this.i.sj);
|
|
841
|
+
},
|
|
842
|
+
set: function (v) {
|
|
843
|
+
this.i.sj = stringToBrush(v);
|
|
844
|
+
this._a("columnOptionsScrollbarActiveBackground", brushToString(this.i.sj));
|
|
761
845
|
},
|
|
762
846
|
enumerable: false,
|
|
763
847
|
configurable: true
|
|
@@ -767,11 +851,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
767
851
|
* Gets or sets the text color for text inside the column options menu.
|
|
768
852
|
*/
|
|
769
853
|
get: function () {
|
|
770
|
-
return brushToString(this.i.
|
|
854
|
+
return brushToString(this.i.r4);
|
|
771
855
|
},
|
|
772
856
|
set: function (v) {
|
|
773
|
-
this.i.
|
|
774
|
-
this._a("actualColumnOptionsTextColor", brushToString(this.i.
|
|
857
|
+
this.i.r4 = stringToBrush(v);
|
|
858
|
+
this._a("actualColumnOptionsTextColor", brushToString(this.i.r4));
|
|
775
859
|
},
|
|
776
860
|
enumerable: false,
|
|
777
861
|
configurable: true
|
|
@@ -781,11 +865,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
781
865
|
* Gets or sets the text color for text inside the column options menu.
|
|
782
866
|
*/
|
|
783
867
|
get: function () {
|
|
784
|
-
return brushToString(this.i.
|
|
868
|
+
return brushToString(this.i.sn);
|
|
785
869
|
},
|
|
786
870
|
set: function (v) {
|
|
787
|
-
this.i.
|
|
788
|
-
this._a("columnOptionsTextColor", brushToString(this.i.
|
|
871
|
+
this.i.sn = stringToBrush(v);
|
|
872
|
+
this._a("columnOptionsTextColor", brushToString(this.i.sn));
|
|
789
873
|
},
|
|
790
874
|
enumerable: false,
|
|
791
875
|
configurable: true
|
|
@@ -795,104 +879,104 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
795
879
|
* Gets or sets the font settings for text inside the column options menu.
|
|
796
880
|
*/
|
|
797
881
|
get: function () {
|
|
798
|
-
if (this.i.
|
|
882
|
+
if (this.i.je == null) {
|
|
799
883
|
return null;
|
|
800
884
|
}
|
|
801
|
-
return this.i.
|
|
885
|
+
return this.i.je.fontString;
|
|
802
886
|
},
|
|
803
887
|
set: function (v) {
|
|
804
888
|
var fi = new FontInfo();
|
|
805
889
|
fi.fontString = v;
|
|
806
|
-
this.i.
|
|
807
|
-
this._a("columnOptionsTextStyle", this.i.
|
|
890
|
+
this.i.je = fi;
|
|
891
|
+
this._a("columnOptionsTextStyle", this.i.je != null ? this.i.je.fontString : "");
|
|
808
892
|
},
|
|
809
893
|
enumerable: false,
|
|
810
894
|
configurable: true
|
|
811
895
|
});
|
|
812
896
|
Object.defineProperty(IgcDataGridColumnComponent.prototype, "actualColumnOptionsHoverBackgroundColor", {
|
|
813
897
|
get: function () {
|
|
814
|
-
return brushToString(this.i.
|
|
898
|
+
return brushToString(this.i.ry);
|
|
815
899
|
},
|
|
816
900
|
set: function (v) {
|
|
817
|
-
this.i.
|
|
818
|
-
this._a("actualColumnOptionsHoverBackgroundColor", brushToString(this.i.
|
|
901
|
+
this.i.ry = stringToBrush(v);
|
|
902
|
+
this._a("actualColumnOptionsHoverBackgroundColor", brushToString(this.i.ry));
|
|
819
903
|
},
|
|
820
904
|
enumerable: false,
|
|
821
905
|
configurable: true
|
|
822
906
|
});
|
|
823
907
|
Object.defineProperty(IgcDataGridColumnComponent.prototype, "columnOptionsHoverBackgroundColor", {
|
|
824
908
|
get: function () {
|
|
825
|
-
return brushToString(this.i.
|
|
909
|
+
return brushToString(this.i.sh);
|
|
826
910
|
},
|
|
827
911
|
set: function (v) {
|
|
828
|
-
this.i.
|
|
829
|
-
this._a("columnOptionsHoverBackgroundColor", brushToString(this.i.
|
|
912
|
+
this.i.sh = stringToBrush(v);
|
|
913
|
+
this._a("columnOptionsHoverBackgroundColor", brushToString(this.i.sh));
|
|
830
914
|
},
|
|
831
915
|
enumerable: false,
|
|
832
916
|
configurable: true
|
|
833
917
|
});
|
|
834
918
|
Object.defineProperty(IgcDataGridColumnComponent.prototype, "actualColumnOptionsToolTipBackgroundColor", {
|
|
835
919
|
get: function () {
|
|
836
|
-
return brushToString(this.i.
|
|
920
|
+
return brushToString(this.i.r5);
|
|
837
921
|
},
|
|
838
922
|
set: function (v) {
|
|
839
|
-
this.i.
|
|
840
|
-
this._a("actualColumnOptionsToolTipBackgroundColor", brushToString(this.i.
|
|
923
|
+
this.i.r5 = stringToBrush(v);
|
|
924
|
+
this._a("actualColumnOptionsToolTipBackgroundColor", brushToString(this.i.r5));
|
|
841
925
|
},
|
|
842
926
|
enumerable: false,
|
|
843
927
|
configurable: true
|
|
844
928
|
});
|
|
845
929
|
Object.defineProperty(IgcDataGridColumnComponent.prototype, "columnOptionsToolTipBackgroundColor", {
|
|
846
930
|
get: function () {
|
|
847
|
-
return brushToString(this.i.
|
|
931
|
+
return brushToString(this.i.so);
|
|
848
932
|
},
|
|
849
933
|
set: function (v) {
|
|
850
|
-
this.i.
|
|
851
|
-
this._a("columnOptionsToolTipBackgroundColor", brushToString(this.i.
|
|
934
|
+
this.i.so = stringToBrush(v);
|
|
935
|
+
this._a("columnOptionsToolTipBackgroundColor", brushToString(this.i.so));
|
|
852
936
|
},
|
|
853
937
|
enumerable: false,
|
|
854
938
|
configurable: true
|
|
855
939
|
});
|
|
856
940
|
Object.defineProperty(IgcDataGridColumnComponent.prototype, "actualColumnOptionsToolTipTextColor", {
|
|
857
941
|
get: function () {
|
|
858
|
-
return brushToString(this.i.
|
|
942
|
+
return brushToString(this.i.r6);
|
|
859
943
|
},
|
|
860
944
|
set: function (v) {
|
|
861
|
-
this.i.
|
|
862
|
-
this._a("actualColumnOptionsToolTipTextColor", brushToString(this.i.
|
|
945
|
+
this.i.r6 = stringToBrush(v);
|
|
946
|
+
this._a("actualColumnOptionsToolTipTextColor", brushToString(this.i.r6));
|
|
863
947
|
},
|
|
864
948
|
enumerable: false,
|
|
865
949
|
configurable: true
|
|
866
950
|
});
|
|
867
951
|
Object.defineProperty(IgcDataGridColumnComponent.prototype, "columnOptionsToolTipTextColor", {
|
|
868
952
|
get: function () {
|
|
869
|
-
return brushToString(this.i.
|
|
953
|
+
return brushToString(this.i.sp);
|
|
870
954
|
},
|
|
871
955
|
set: function (v) {
|
|
872
|
-
this.i.
|
|
873
|
-
this._a("columnOptionsToolTipTextColor", brushToString(this.i.
|
|
956
|
+
this.i.sp = stringToBrush(v);
|
|
957
|
+
this._a("columnOptionsToolTipTextColor", brushToString(this.i.sp));
|
|
874
958
|
},
|
|
875
959
|
enumerable: false,
|
|
876
960
|
configurable: true
|
|
877
961
|
});
|
|
878
962
|
Object.defineProperty(IgcDataGridColumnComponent.prototype, "actualColumnOptionsHighlightColor", {
|
|
879
963
|
get: function () {
|
|
880
|
-
return brushToString(this.i.
|
|
964
|
+
return brushToString(this.i.rx);
|
|
881
965
|
},
|
|
882
966
|
set: function (v) {
|
|
883
|
-
this.i.
|
|
884
|
-
this._a("actualColumnOptionsHighlightColor", brushToString(this.i.
|
|
967
|
+
this.i.rx = stringToBrush(v);
|
|
968
|
+
this._a("actualColumnOptionsHighlightColor", brushToString(this.i.rx));
|
|
885
969
|
},
|
|
886
970
|
enumerable: false,
|
|
887
971
|
configurable: true
|
|
888
972
|
});
|
|
889
973
|
Object.defineProperty(IgcDataGridColumnComponent.prototype, "columnOptionsHighlightColor", {
|
|
890
974
|
get: function () {
|
|
891
|
-
return brushToString(this.i.
|
|
975
|
+
return brushToString(this.i.sg);
|
|
892
976
|
},
|
|
893
977
|
set: function (v) {
|
|
894
|
-
this.i.
|
|
895
|
-
this._a("columnOptionsHighlightColor", brushToString(this.i.
|
|
978
|
+
this.i.sg = stringToBrush(v);
|
|
979
|
+
this._a("columnOptionsHighlightColor", brushToString(this.i.sg));
|
|
896
980
|
},
|
|
897
981
|
enumerable: false,
|
|
898
982
|
configurable: true
|
|
@@ -902,11 +986,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
902
986
|
* Gets or sets the color of separators inside the column options menu.
|
|
903
987
|
*/
|
|
904
988
|
get: function () {
|
|
905
|
-
return brushToString(this.i.
|
|
989
|
+
return brushToString(this.i.r3);
|
|
906
990
|
},
|
|
907
991
|
set: function (v) {
|
|
908
|
-
this.i.
|
|
909
|
-
this._a("actualColumnOptionsSeparatorColor", brushToString(this.i.
|
|
992
|
+
this.i.r3 = stringToBrush(v);
|
|
993
|
+
this._a("actualColumnOptionsSeparatorColor", brushToString(this.i.r3));
|
|
910
994
|
},
|
|
911
995
|
enumerable: false,
|
|
912
996
|
configurable: true
|
|
@@ -916,11 +1000,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
916
1000
|
* Gets or sets the color of separators inside the column options menu.
|
|
917
1001
|
*/
|
|
918
1002
|
get: function () {
|
|
919
|
-
return brushToString(this.i.
|
|
1003
|
+
return brushToString(this.i.sm);
|
|
920
1004
|
},
|
|
921
1005
|
set: function (v) {
|
|
922
|
-
this.i.
|
|
923
|
-
this._a("columnOptionsSeparatorColor", brushToString(this.i.
|
|
1006
|
+
this.i.sm = stringToBrush(v);
|
|
1007
|
+
this._a("columnOptionsSeparatorColor", brushToString(this.i.sm));
|
|
924
1008
|
},
|
|
925
1009
|
enumerable: false,
|
|
926
1010
|
configurable: true
|
|
@@ -930,11 +1014,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
930
1014
|
* Gets or sets the background color for group headers inside the column options menu.
|
|
931
1015
|
*/
|
|
932
1016
|
get: function () {
|
|
933
|
-
return brushToString(this.i.
|
|
1017
|
+
return brushToString(this.i.rv);
|
|
934
1018
|
},
|
|
935
1019
|
set: function (v) {
|
|
936
|
-
this.i.
|
|
937
|
-
this._a("actualColumnOptionsGroupHeaderBackground", brushToString(this.i.
|
|
1020
|
+
this.i.rv = stringToBrush(v);
|
|
1021
|
+
this._a("actualColumnOptionsGroupHeaderBackground", brushToString(this.i.rv));
|
|
938
1022
|
},
|
|
939
1023
|
enumerable: false,
|
|
940
1024
|
configurable: true
|
|
@@ -944,11 +1028,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
944
1028
|
* Gets or sets the background color for group headers inside the column options menu.
|
|
945
1029
|
*/
|
|
946
1030
|
get: function () {
|
|
947
|
-
return brushToString(this.i.
|
|
1031
|
+
return brushToString(this.i.se);
|
|
948
1032
|
},
|
|
949
1033
|
set: function (v) {
|
|
950
|
-
this.i.
|
|
951
|
-
this._a("columnOptionsGroupHeaderBackground", brushToString(this.i.
|
|
1034
|
+
this.i.se = stringToBrush(v);
|
|
1035
|
+
this._a("columnOptionsGroupHeaderBackground", brushToString(this.i.se));
|
|
952
1036
|
},
|
|
953
1037
|
enumerable: false,
|
|
954
1038
|
configurable: true
|
|
@@ -958,11 +1042,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
958
1042
|
* Gets the actual text color for group headers inside the column options menu.
|
|
959
1043
|
*/
|
|
960
1044
|
get: function () {
|
|
961
|
-
return brushToString(this.i.
|
|
1045
|
+
return brushToString(this.i.rw);
|
|
962
1046
|
},
|
|
963
1047
|
set: function (v) {
|
|
964
|
-
this.i.
|
|
965
|
-
this._a("actualColumnOptionsGroupHeaderTextColor", brushToString(this.i.
|
|
1048
|
+
this.i.rw = stringToBrush(v);
|
|
1049
|
+
this._a("actualColumnOptionsGroupHeaderTextColor", brushToString(this.i.rw));
|
|
966
1050
|
},
|
|
967
1051
|
enumerable: false,
|
|
968
1052
|
configurable: true
|
|
@@ -972,71 +1056,71 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
972
1056
|
* Gets or sets the text color for group headers inside the column options menu.
|
|
973
1057
|
*/
|
|
974
1058
|
get: function () {
|
|
975
|
-
return brushToString(this.i.
|
|
1059
|
+
return brushToString(this.i.sf);
|
|
976
1060
|
},
|
|
977
1061
|
set: function (v) {
|
|
978
|
-
this.i.
|
|
979
|
-
this._a("columnOptionsGroupHeaderTextColor", brushToString(this.i.
|
|
1062
|
+
this.i.sf = stringToBrush(v);
|
|
1063
|
+
this._a("columnOptionsGroupHeaderTextColor", brushToString(this.i.sf));
|
|
980
1064
|
},
|
|
981
1065
|
enumerable: false,
|
|
982
1066
|
configurable: true
|
|
983
1067
|
});
|
|
984
1068
|
Object.defineProperty(IgcDataGridColumnComponent.prototype, "columnOptionsGroupHeaderTextStyle", {
|
|
985
1069
|
get: function () {
|
|
986
|
-
if (this.i.
|
|
1070
|
+
if (this.i.jd == null) {
|
|
987
1071
|
return null;
|
|
988
1072
|
}
|
|
989
|
-
return this.i.
|
|
1073
|
+
return this.i.jd.fontString;
|
|
990
1074
|
},
|
|
991
1075
|
set: function (v) {
|
|
992
1076
|
var fi = new FontInfo();
|
|
993
1077
|
fi.fontString = v;
|
|
994
|
-
this.i.
|
|
995
|
-
this._a("columnOptionsGroupHeaderTextStyle", this.i.
|
|
1078
|
+
this.i.jd = fi;
|
|
1079
|
+
this._a("columnOptionsGroupHeaderTextStyle", this.i.jd != null ? this.i.jd.fontString : "");
|
|
996
1080
|
},
|
|
997
1081
|
enumerable: false,
|
|
998
1082
|
configurable: true
|
|
999
1083
|
});
|
|
1000
1084
|
Object.defineProperty(IgcDataGridColumnComponent.prototype, "actualColumnOptionsAccentColor", {
|
|
1001
1085
|
get: function () {
|
|
1002
|
-
return brushToString(this.i.
|
|
1086
|
+
return brushToString(this.i.rt);
|
|
1003
1087
|
},
|
|
1004
1088
|
set: function (v) {
|
|
1005
|
-
this.i.
|
|
1006
|
-
this._a("actualColumnOptionsAccentColor", brushToString(this.i.
|
|
1089
|
+
this.i.rt = stringToBrush(v);
|
|
1090
|
+
this._a("actualColumnOptionsAccentColor", brushToString(this.i.rt));
|
|
1007
1091
|
},
|
|
1008
1092
|
enumerable: false,
|
|
1009
1093
|
configurable: true
|
|
1010
1094
|
});
|
|
1011
1095
|
Object.defineProperty(IgcDataGridColumnComponent.prototype, "columnOptionsAccentColor", {
|
|
1012
1096
|
get: function () {
|
|
1013
|
-
return brushToString(this.i.
|
|
1097
|
+
return brushToString(this.i.sc);
|
|
1014
1098
|
},
|
|
1015
1099
|
set: function (v) {
|
|
1016
|
-
this.i.
|
|
1017
|
-
this._a("columnOptionsAccentColor", brushToString(this.i.
|
|
1100
|
+
this.i.sc = stringToBrush(v);
|
|
1101
|
+
this._a("columnOptionsAccentColor", brushToString(this.i.sc));
|
|
1018
1102
|
},
|
|
1019
1103
|
enumerable: false,
|
|
1020
1104
|
configurable: true
|
|
1021
1105
|
});
|
|
1022
1106
|
Object.defineProperty(IgcDataGridColumnComponent.prototype, "actualColumnOptionsRowHeight", {
|
|
1023
1107
|
get: function () {
|
|
1024
|
-
return this.i.
|
|
1108
|
+
return this.i.ld;
|
|
1025
1109
|
},
|
|
1026
1110
|
set: function (v) {
|
|
1027
|
-
this.i.
|
|
1028
|
-
this._a("actualColumnOptionsRowHeight", this.i.
|
|
1111
|
+
this.i.ld = +v;
|
|
1112
|
+
this._a("actualColumnOptionsRowHeight", this.i.ld);
|
|
1029
1113
|
},
|
|
1030
1114
|
enumerable: false,
|
|
1031
1115
|
configurable: true
|
|
1032
1116
|
});
|
|
1033
1117
|
Object.defineProperty(IgcDataGridColumnComponent.prototype, "columnOptionsRowHeight", {
|
|
1034
1118
|
get: function () {
|
|
1035
|
-
return this.i.
|
|
1119
|
+
return this.i.le;
|
|
1036
1120
|
},
|
|
1037
1121
|
set: function (v) {
|
|
1038
|
-
this.i.
|
|
1039
|
-
this._a("columnOptionsRowHeight", this.i.
|
|
1122
|
+
this.i.le = +v;
|
|
1123
|
+
this._a("columnOptionsRowHeight", this.i.le);
|
|
1040
1124
|
},
|
|
1041
1125
|
enumerable: false,
|
|
1042
1126
|
configurable: true
|
|
@@ -1046,11 +1130,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1046
1130
|
* Gets or sets if the column is editable.
|
|
1047
1131
|
*/
|
|
1048
1132
|
get: function () {
|
|
1049
|
-
return this.i.
|
|
1133
|
+
return this.i.j9;
|
|
1050
1134
|
},
|
|
1051
1135
|
set: function (v) {
|
|
1052
|
-
this.i.
|
|
1053
|
-
this._a("isEditable", this.i.
|
|
1136
|
+
this.i.j9 = ensureBool(v);
|
|
1137
|
+
this._a("isEditable", this.i.j9);
|
|
1054
1138
|
},
|
|
1055
1139
|
enumerable: false,
|
|
1056
1140
|
configurable: true
|
|
@@ -1060,11 +1144,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1060
1144
|
* Gets or sets the text color used for deleted rows.
|
|
1061
1145
|
*/
|
|
1062
1146
|
get: function () {
|
|
1063
|
-
return brushToString(this.i.
|
|
1147
|
+
return brushToString(this.i.sq);
|
|
1064
1148
|
},
|
|
1065
1149
|
set: function (v) {
|
|
1066
|
-
this.i.
|
|
1067
|
-
this._a("deletedTextColor", brushToString(this.i.
|
|
1150
|
+
this.i.sq = stringToBrush(v);
|
|
1151
|
+
this._a("deletedTextColor", brushToString(this.i.sq));
|
|
1068
1152
|
},
|
|
1069
1153
|
enumerable: false,
|
|
1070
1154
|
configurable: true
|
|
@@ -1074,11 +1158,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1074
1158
|
* Gets the actual text color used for deleted rows.
|
|
1075
1159
|
*/
|
|
1076
1160
|
get: function () {
|
|
1077
|
-
return brushToString(this.i.
|
|
1161
|
+
return brushToString(this.i.r7);
|
|
1078
1162
|
},
|
|
1079
1163
|
set: function (v) {
|
|
1080
|
-
this.i.
|
|
1081
|
-
this._a("actualDeletedTextColor", brushToString(this.i.
|
|
1164
|
+
this.i.r7 = stringToBrush(v);
|
|
1165
|
+
this._a("actualDeletedTextColor", brushToString(this.i.r7));
|
|
1082
1166
|
},
|
|
1083
1167
|
enumerable: false,
|
|
1084
1168
|
configurable: true
|
|
@@ -1088,11 +1172,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1088
1172
|
* Gets or sets the opacity to use for unsaved edited cell values.
|
|
1089
1173
|
*/
|
|
1090
1174
|
get: function () {
|
|
1091
|
-
return this.i.
|
|
1175
|
+
return this.i.kt;
|
|
1092
1176
|
},
|
|
1093
1177
|
set: function (v) {
|
|
1094
|
-
this.i.
|
|
1095
|
-
this._a("editOpacity", this.i.
|
|
1178
|
+
this.i.kt = +v;
|
|
1179
|
+
this._a("editOpacity", this.i.kt);
|
|
1096
1180
|
},
|
|
1097
1181
|
enumerable: false,
|
|
1098
1182
|
configurable: true
|
|
@@ -1102,11 +1186,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1102
1186
|
* Gets the actual opacity for unsaved edited cell values.
|
|
1103
1187
|
*/
|
|
1104
1188
|
get: function () {
|
|
1105
|
-
return this.i.
|
|
1189
|
+
return this.i.ks;
|
|
1106
1190
|
},
|
|
1107
1191
|
set: function (v) {
|
|
1108
|
-
this.i.
|
|
1109
|
-
this._a("actualEditOpacity", this.i.
|
|
1192
|
+
this.i.ks = +v;
|
|
1193
|
+
this._a("actualEditOpacity", this.i.ks);
|
|
1110
1194
|
},
|
|
1111
1195
|
enumerable: false,
|
|
1112
1196
|
configurable: true
|
|
@@ -1135,16 +1219,16 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1135
1219
|
* Gets the actual font style used for unsaved cell edits.
|
|
1136
1220
|
*/
|
|
1137
1221
|
get: function () {
|
|
1138
|
-
if (this.i.
|
|
1222
|
+
if (this.i.jc == null) {
|
|
1139
1223
|
return null;
|
|
1140
1224
|
}
|
|
1141
|
-
return this.i.
|
|
1225
|
+
return this.i.jc.fontString;
|
|
1142
1226
|
},
|
|
1143
1227
|
set: function (v) {
|
|
1144
1228
|
var fi = new FontInfo();
|
|
1145
1229
|
fi.fontString = v;
|
|
1146
|
-
this.i.
|
|
1147
|
-
this._a("actualEditFontInfo", this.i.
|
|
1230
|
+
this.i.jc = fi;
|
|
1231
|
+
this._a("actualEditFontInfo", this.i.jc != null ? this.i.jc.fontString : "");
|
|
1148
1232
|
},
|
|
1149
1233
|
enumerable: false,
|
|
1150
1234
|
configurable: true
|
|
@@ -1154,11 +1238,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1154
1238
|
* Gets or sets if and how cell merging is performed for this field.
|
|
1155
1239
|
*/
|
|
1156
1240
|
get: function () {
|
|
1157
|
-
return this.i.
|
|
1241
|
+
return this.i.iq;
|
|
1158
1242
|
},
|
|
1159
1243
|
set: function (v) {
|
|
1160
|
-
this.i.
|
|
1161
|
-
this._a("mergedCellMode", enumToString(MergedCellMode_$type, this.i.
|
|
1244
|
+
this.i.iq = ensureEnum(MergedCellMode_$type, v);
|
|
1245
|
+
this._a("mergedCellMode", enumToString(MergedCellMode_$type, this.i.iq));
|
|
1162
1246
|
},
|
|
1163
1247
|
enumerable: false,
|
|
1164
1248
|
configurable: true
|
|
@@ -1168,11 +1252,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1168
1252
|
* Gets or sets how cells are evaluated for merging.
|
|
1169
1253
|
*/
|
|
1170
1254
|
get: function () {
|
|
1171
|
-
return this.i.
|
|
1255
|
+
return this.i.im;
|
|
1172
1256
|
},
|
|
1173
1257
|
set: function (v) {
|
|
1174
|
-
this.i.
|
|
1175
|
-
this._a("mergedCellEvaluationCriteria", enumToString(MergedCellEvaluationCriteria_$type, this.i.
|
|
1258
|
+
this.i.im = ensureEnum(MergedCellEvaluationCriteria_$type, v);
|
|
1259
|
+
this._a("mergedCellEvaluationCriteria", enumToString(MergedCellEvaluationCriteria_$type, this.i.im));
|
|
1176
1260
|
},
|
|
1177
1261
|
enumerable: false,
|
|
1178
1262
|
configurable: true
|
|
@@ -1182,11 +1266,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1182
1266
|
* Gets or sets the vertical alignment to use for the merged cell content.
|
|
1183
1267
|
*/
|
|
1184
1268
|
get: function () {
|
|
1185
|
-
return this.i.
|
|
1269
|
+
return this.i.hf;
|
|
1186
1270
|
},
|
|
1187
1271
|
set: function (v) {
|
|
1188
|
-
this.i.
|
|
1189
|
-
this._a("mergedCellVerticalAlignment", enumToString(CellContentVerticalAlignment_$type, this.i.
|
|
1272
|
+
this.i.hf = ensureEnum(CellContentVerticalAlignment_$type, v);
|
|
1273
|
+
this._a("mergedCellVerticalAlignment", enumToString(CellContentVerticalAlignment_$type, this.i.hf));
|
|
1190
1274
|
},
|
|
1191
1275
|
enumerable: false,
|
|
1192
1276
|
configurable: true
|
|
@@ -1196,11 +1280,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1196
1280
|
* Gets or sets the amount of left padding to use for the cell content for this column.
|
|
1197
1281
|
*/
|
|
1198
1282
|
get: function () {
|
|
1199
|
-
return this.i.
|
|
1283
|
+
return this.i.lg;
|
|
1200
1284
|
},
|
|
1201
1285
|
set: function (v) {
|
|
1202
|
-
this.i.
|
|
1203
|
-
this._a("mergedCellPaddingLeft", this.i.
|
|
1286
|
+
this.i.lg = +v;
|
|
1287
|
+
this._a("mergedCellPaddingLeft", this.i.lg);
|
|
1204
1288
|
},
|
|
1205
1289
|
enumerable: false,
|
|
1206
1290
|
configurable: true
|
|
@@ -1210,11 +1294,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1210
1294
|
* Gets or sets the amount of top padding to use for the cell content for this column.
|
|
1211
1295
|
*/
|
|
1212
1296
|
get: function () {
|
|
1213
|
-
return this.i.
|
|
1297
|
+
return this.i.li;
|
|
1214
1298
|
},
|
|
1215
1299
|
set: function (v) {
|
|
1216
|
-
this.i.
|
|
1217
|
-
this._a("mergedCellPaddingTop", this.i.
|
|
1300
|
+
this.i.li = +v;
|
|
1301
|
+
this._a("mergedCellPaddingTop", this.i.li);
|
|
1218
1302
|
},
|
|
1219
1303
|
enumerable: false,
|
|
1220
1304
|
configurable: true
|
|
@@ -1224,11 +1308,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1224
1308
|
* Gets or sets the amount of right padding to use for the cell content of this column.
|
|
1225
1309
|
*/
|
|
1226
1310
|
get: function () {
|
|
1227
|
-
return this.i.
|
|
1311
|
+
return this.i.lh;
|
|
1228
1312
|
},
|
|
1229
1313
|
set: function (v) {
|
|
1230
|
-
this.i.
|
|
1231
|
-
this._a("mergedCellPaddingRight", this.i.
|
|
1314
|
+
this.i.lh = +v;
|
|
1315
|
+
this._a("mergedCellPaddingRight", this.i.lh);
|
|
1232
1316
|
},
|
|
1233
1317
|
enumerable: false,
|
|
1234
1318
|
configurable: true
|
|
@@ -1238,11 +1322,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1238
1322
|
* Gets or sets the amount of bottom padding to use for the cell content of this column.
|
|
1239
1323
|
*/
|
|
1240
1324
|
get: function () {
|
|
1241
|
-
return this.i.
|
|
1325
|
+
return this.i.lf;
|
|
1242
1326
|
},
|
|
1243
1327
|
set: function (v) {
|
|
1244
|
-
this.i.
|
|
1245
|
-
this._a("mergedCellPaddingBottom", this.i.
|
|
1328
|
+
this.i.lf = +v;
|
|
1329
|
+
this._a("mergedCellPaddingBottom", this.i.lf);
|
|
1246
1330
|
},
|
|
1247
1331
|
enumerable: false,
|
|
1248
1332
|
configurable: true
|
|
@@ -1252,11 +1336,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1252
1336
|
* Gets or sets whether UI filters are case sensitive or not.
|
|
1253
1337
|
*/
|
|
1254
1338
|
get: function () {
|
|
1255
|
-
return this.i.
|
|
1339
|
+
return this.i.h8;
|
|
1256
1340
|
},
|
|
1257
1341
|
set: function (v) {
|
|
1258
|
-
this.i.
|
|
1259
|
-
this._a("filterComparisonType", enumToString(FilterComparisonType_$type, this.i.
|
|
1342
|
+
this.i.h8 = ensureEnum(FilterComparisonType_$type, v);
|
|
1343
|
+
this._a("filterComparisonType", enumToString(FilterComparisonType_$type, this.i.h8));
|
|
1260
1344
|
},
|
|
1261
1345
|
enumerable: false,
|
|
1262
1346
|
configurable: true
|
|
@@ -1268,7 +1352,7 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1268
1352
|
get: function () {
|
|
1269
1353
|
if (this._filterOperands === null) {
|
|
1270
1354
|
var coll = new IgcGridFilterOperandsCollection();
|
|
1271
|
-
var innerColl = this.i.
|
|
1355
|
+
var innerColl = this.i.ih;
|
|
1272
1356
|
if (!innerColl) {
|
|
1273
1357
|
innerColl = new GridFilterOperandsCollection_internal();
|
|
1274
1358
|
}
|
|
@@ -1284,7 +1368,7 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1284
1368
|
var coll = new IgcGridFilterOperandsCollection();
|
|
1285
1369
|
this._filterOperands = coll._fromOuter(v);
|
|
1286
1370
|
var syncColl = new SyncableObservableCollection$1(FilterOperand.$type);
|
|
1287
|
-
var innerColl = this.i.
|
|
1371
|
+
var innerColl = this.i.ih;
|
|
1288
1372
|
if (!innerColl) {
|
|
1289
1373
|
innerColl = new GridFilterOperandsCollection_internal();
|
|
1290
1374
|
}
|
|
@@ -1300,10 +1384,10 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1300
1384
|
* Gets or sets the text to display in the suffix area of cells in this column.
|
|
1301
1385
|
*/
|
|
1302
1386
|
get: function () {
|
|
1303
|
-
return this.i.
|
|
1387
|
+
return this.i.o9;
|
|
1304
1388
|
},
|
|
1305
1389
|
set: function (v) {
|
|
1306
|
-
this.i.
|
|
1390
|
+
this.i.o9 = v;
|
|
1307
1391
|
},
|
|
1308
1392
|
enumerable: false,
|
|
1309
1393
|
configurable: true
|
|
@@ -1313,11 +1397,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1313
1397
|
* Gets or sets the color of the text in the suffix area of the cells in this column.
|
|
1314
1398
|
*/
|
|
1315
1399
|
get: function () {
|
|
1316
|
-
return brushToString(this.i.
|
|
1400
|
+
return brushToString(this.i.sz);
|
|
1317
1401
|
},
|
|
1318
1402
|
set: function (v) {
|
|
1319
|
-
this.i.
|
|
1320
|
-
this._a("suffixTextColor", brushToString(this.i.
|
|
1403
|
+
this.i.sz = stringToBrush(v);
|
|
1404
|
+
this._a("suffixTextColor", brushToString(this.i.sz));
|
|
1321
1405
|
},
|
|
1322
1406
|
enumerable: false,
|
|
1323
1407
|
configurable: true
|
|
@@ -1346,10 +1430,10 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1346
1430
|
* Gets or sets the icon to use in the suffix area of the cells in this column.
|
|
1347
1431
|
*/
|
|
1348
1432
|
get: function () {
|
|
1349
|
-
return this.i.
|
|
1433
|
+
return this.i.o1;
|
|
1350
1434
|
},
|
|
1351
1435
|
set: function (v) {
|
|
1352
|
-
this.i.
|
|
1436
|
+
this.i.o1 = v;
|
|
1353
1437
|
},
|
|
1354
1438
|
enumerable: false,
|
|
1355
1439
|
configurable: true
|
|
@@ -1359,10 +1443,10 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1359
1443
|
* Gets or sets the icon to use in the suffix area of the cells in this column.
|
|
1360
1444
|
*/
|
|
1361
1445
|
get: function () {
|
|
1362
|
-
return this.i.
|
|
1446
|
+
return this.i.oy;
|
|
1363
1447
|
},
|
|
1364
1448
|
set: function (v) {
|
|
1365
|
-
this.i.
|
|
1449
|
+
this.i.oy = v;
|
|
1366
1450
|
},
|
|
1367
1451
|
enumerable: false,
|
|
1368
1452
|
configurable: true
|
|
@@ -1372,11 +1456,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1372
1456
|
* Gets or sets the stroke color of suffix icon.
|
|
1373
1457
|
*/
|
|
1374
1458
|
get: function () {
|
|
1375
|
-
return brushToString(this.i.
|
|
1459
|
+
return brushToString(this.i.sy);
|
|
1376
1460
|
},
|
|
1377
1461
|
set: function (v) {
|
|
1378
|
-
this.i.
|
|
1379
|
-
this._a("suffixIconStroke", brushToString(this.i.
|
|
1462
|
+
this.i.sy = stringToBrush(v);
|
|
1463
|
+
this._a("suffixIconStroke", brushToString(this.i.sy));
|
|
1380
1464
|
},
|
|
1381
1465
|
enumerable: false,
|
|
1382
1466
|
configurable: true
|
|
@@ -1386,11 +1470,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1386
1470
|
* Gets or sets the fill color of suffix icon.
|
|
1387
1471
|
*/
|
|
1388
1472
|
get: function () {
|
|
1389
|
-
return brushToString(this.i.
|
|
1473
|
+
return brushToString(this.i.sx);
|
|
1390
1474
|
},
|
|
1391
1475
|
set: function (v) {
|
|
1392
|
-
this.i.
|
|
1393
|
-
this._a("suffixIconFill", brushToString(this.i.
|
|
1476
|
+
this.i.sx = stringToBrush(v);
|
|
1477
|
+
this._a("suffixIconFill", brushToString(this.i.sx));
|
|
1394
1478
|
},
|
|
1395
1479
|
enumerable: false,
|
|
1396
1480
|
configurable: true
|
|
@@ -1400,11 +1484,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1400
1484
|
* Gets or sets the suffix icon's viewbox x coordinate.
|
|
1401
1485
|
*/
|
|
1402
1486
|
get: function () {
|
|
1403
|
-
return this.i.
|
|
1487
|
+
return this.i.kw;
|
|
1404
1488
|
},
|
|
1405
1489
|
set: function (v) {
|
|
1406
|
-
this.i.
|
|
1407
|
-
this._a("suffixIconViewBoxLeft", this.i.
|
|
1490
|
+
this.i.kw = +v;
|
|
1491
|
+
this._a("suffixIconViewBoxLeft", this.i.kw);
|
|
1408
1492
|
},
|
|
1409
1493
|
enumerable: false,
|
|
1410
1494
|
configurable: true
|
|
@@ -1414,11 +1498,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1414
1498
|
* Gets or sets the suffix icon's viewbox y coordinate.
|
|
1415
1499
|
*/
|
|
1416
1500
|
get: function () {
|
|
1417
|
-
return this.i.
|
|
1501
|
+
return this.i.kx;
|
|
1418
1502
|
},
|
|
1419
1503
|
set: function (v) {
|
|
1420
|
-
this.i.
|
|
1421
|
-
this._a("suffixIconViewBoxTop", this.i.
|
|
1504
|
+
this.i.kx = +v;
|
|
1505
|
+
this._a("suffixIconViewBoxTop", this.i.kx);
|
|
1422
1506
|
},
|
|
1423
1507
|
enumerable: false,
|
|
1424
1508
|
configurable: true
|
|
@@ -1428,11 +1512,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1428
1512
|
* Gets or sets the suffix icon's viewbox width.
|
|
1429
1513
|
*/
|
|
1430
1514
|
get: function () {
|
|
1431
|
-
return this.i.
|
|
1515
|
+
return this.i.ky;
|
|
1432
1516
|
},
|
|
1433
1517
|
set: function (v) {
|
|
1434
|
-
this.i.
|
|
1435
|
-
this._a("suffixIconViewBoxWidth", this.i.
|
|
1518
|
+
this.i.ky = +v;
|
|
1519
|
+
this._a("suffixIconViewBoxWidth", this.i.ky);
|
|
1436
1520
|
},
|
|
1437
1521
|
enumerable: false,
|
|
1438
1522
|
configurable: true
|
|
@@ -1442,11 +1526,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1442
1526
|
* Gets or sets the suffix icon's viewbox height.
|
|
1443
1527
|
*/
|
|
1444
1528
|
get: function () {
|
|
1445
|
-
return this.i.
|
|
1529
|
+
return this.i.kv;
|
|
1446
1530
|
},
|
|
1447
1531
|
set: function (v) {
|
|
1448
|
-
this.i.
|
|
1449
|
-
this._a("suffixIconViewBoxHeight", this.i.
|
|
1532
|
+
this.i.kv = +v;
|
|
1533
|
+
this._a("suffixIconViewBoxHeight", this.i.kv);
|
|
1450
1534
|
},
|
|
1451
1535
|
enumerable: false,
|
|
1452
1536
|
configurable: true
|
|
@@ -1456,11 +1540,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1456
1540
|
* Gets or sets the suffix margin.
|
|
1457
1541
|
*/
|
|
1458
1542
|
get: function () {
|
|
1459
|
-
return this.i.
|
|
1543
|
+
return this.i.kz;
|
|
1460
1544
|
},
|
|
1461
1545
|
set: function (v) {
|
|
1462
|
-
this.i.
|
|
1463
|
-
this._a("suffixMargin", this.i.
|
|
1546
|
+
this.i.kz = +v;
|
|
1547
|
+
this._a("suffixMargin", this.i.kz);
|
|
1464
1548
|
},
|
|
1465
1549
|
enumerable: false,
|
|
1466
1550
|
configurable: true
|
|
@@ -1470,11 +1554,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1470
1554
|
* Gets or sets the text decoration to apply to cells in this column.
|
|
1471
1555
|
*/
|
|
1472
1556
|
get: function () {
|
|
1473
|
-
return this.i.
|
|
1557
|
+
return this.i.iw;
|
|
1474
1558
|
},
|
|
1475
1559
|
set: function (v) {
|
|
1476
|
-
this.i.
|
|
1477
|
-
this._a("textDecoration", enumToString(TextCellDecoration_$type, this.i.
|
|
1560
|
+
this.i.iw = ensureEnum(TextCellDecoration_$type, v);
|
|
1561
|
+
this._a("textDecoration", enumToString(TextCellDecoration_$type, this.i.iw));
|
|
1478
1562
|
},
|
|
1479
1563
|
enumerable: false,
|
|
1480
1564
|
configurable: true
|
|
@@ -1511,18 +1595,18 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1511
1595
|
|
|
1512
1596
|
*/
|
|
1513
1597
|
IgcDataGridColumnComponent.prototype.getUniqueKey = function () {
|
|
1514
|
-
var iv = this.i.
|
|
1598
|
+
var iv = this.i.nx();
|
|
1515
1599
|
return (iv);
|
|
1516
1600
|
};
|
|
1517
1601
|
IgcDataGridColumnComponent.prototype.setNamedHeaderValue = function (valueName, animationType, value) {
|
|
1518
|
-
this.i.
|
|
1602
|
+
this.i.pr(valueName, ensureEnum(CellPropertyAnimationType_$type, animationType), value);
|
|
1519
1603
|
};
|
|
1520
1604
|
/**
|
|
1521
1605
|
* Returns if the column has named header values.
|
|
1522
1606
|
|
|
1523
1607
|
*/
|
|
1524
1608
|
IgcDataGridColumnComponent.prototype.hasNamedHeaderValues = function () {
|
|
1525
|
-
var iv = this.i.
|
|
1609
|
+
var iv = this.i.j3();
|
|
1526
1610
|
return (iv);
|
|
1527
1611
|
};
|
|
1528
1612
|
/**
|
|
@@ -1531,7 +1615,7 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1531
1615
|
* @param valueName * The named value to check for.
|
|
1532
1616
|
*/
|
|
1533
1617
|
IgcDataGridColumnComponent.prototype.hasNamedHeaderValue = function (valueName) {
|
|
1534
|
-
var iv = this.i.
|
|
1618
|
+
var iv = this.i.j2(valueName);
|
|
1535
1619
|
return (iv);
|
|
1536
1620
|
};
|
|
1537
1621
|
/**
|
|
@@ -1540,7 +1624,7 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1540
1624
|
* @param valueName * The named header value to remove.
|
|
1541
1625
|
*/
|
|
1542
1626
|
IgcDataGridColumnComponent.prototype.removeNamedHeaderValue = function (valueName) {
|
|
1543
|
-
this.i.
|
|
1627
|
+
this.i.pq(valueName);
|
|
1544
1628
|
};
|
|
1545
1629
|
/**
|
|
1546
1630
|
* Gets the value of a named header value for this column by name.
|
|
@@ -1548,11 +1632,11 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1548
1632
|
* @param valueName * Name of the named header value to retrieve.
|
|
1549
1633
|
*/
|
|
1550
1634
|
IgcDataGridColumnComponent.prototype.getNamedHeaderValue = function (valueName) {
|
|
1551
|
-
var iv = this.i.
|
|
1635
|
+
var iv = this.i.lu(valueName);
|
|
1552
1636
|
return (iv);
|
|
1553
1637
|
};
|
|
1554
1638
|
IgcDataGridColumnComponent.prototype.applyCustomFilter = function (filterID, index, value) {
|
|
1555
|
-
this.i.
|
|
1639
|
+
this.i.ph(filterID, index, value);
|
|
1556
1640
|
};
|
|
1557
1641
|
IgcDataGridColumnComponent.prototype.getDesiredToolbarActions = function () {
|
|
1558
1642
|
var iv = this.i.getDesiredToolbarActions();
|
|
@@ -1615,7 +1699,7 @@ export var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1615
1699
|
this._actualHeaderTextChange = ev;
|
|
1616
1700
|
this._actualHeaderTextChange_wrapped = function (o, e) {
|
|
1617
1701
|
var ext = _this.actualHeaderText;
|
|
1618
|
-
if (e.propertyName == '
|
|
1702
|
+
if (e.propertyName == 'Mq') {
|
|
1619
1703
|
if (_this.beforeActualHeaderTextChange) {
|
|
1620
1704
|
_this.beforeActualHeaderTextChange(_this, ext);
|
|
1621
1705
|
}
|