igniteui-webcomponents-data-grids 7.1.0-beta.2 → 7.1.0-beta.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-webcomponents-data-grids.umd.js +11002 -9831
- package/bundles/igniteui-webcomponents-data-grids.umd.min.js +1 -1
- package/esm2015/lib/AccessibilityRow.js +10 -10
- package/esm2015/lib/CanvasCellPresenterBase.js +12 -12
- package/esm2015/lib/CanvasContentCellModelHelper.js +12 -12
- package/esm2015/lib/CanvasDateTimeCellPresenter.js +8 -8
- package/esm2015/lib/CanvasGridCellBase.js +2 -2
- package/esm2015/lib/CanvasImageCellPresenter.js +9 -9
- package/esm2015/lib/CanvasNumericCellPresenter.js +8 -8
- package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +9 -9
- package/esm2015/lib/CanvasSummaryCellPresenter.js +4 -4
- package/esm2015/lib/CanvasTemplateCellPresenter.js +5 -5
- package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +5 -5
- package/esm2015/lib/CanvasTextCellPresenter.js +9 -9
- package/esm2015/lib/CanvasTextHeaderCellPresenter.js +11 -11
- package/esm2015/lib/CellPath.js +79 -69
- package/esm2015/lib/CellPresenterBase.js +46 -46
- package/esm2015/lib/CheckboxListBridge.js +12 -0
- package/esm2015/lib/CheckboxListView_combined.js +329 -283
- package/esm2015/lib/ColumnChooserView_combined.js +11 -11
- package/esm2015/lib/ColumnFilterCondition_combined.js +7043 -6712
- package/esm2015/lib/ColumnGroupingView_combined.js +5 -5
- package/esm2015/lib/ColumnPinningView_combined.js +11 -11
- package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +7 -7
- package/esm2015/lib/ContentCellModelHelper.js +16 -16
- package/esm2015/lib/DataGridAccessibilityLayoutPanel.js +1 -1
- package/esm2015/lib/DataGridCellLayoutPanel.js +17 -17
- package/esm2015/lib/DataGridScrollerKeyboardListener.js +2 -2
- package/esm2015/lib/DataGridToolbarView_combined.js +2 -2
- package/esm2015/lib/DateTimeCellPresenter.js +9 -9
- package/esm2015/lib/DraggerView.js +1 -7
- package/esm2015/lib/EditorCell.js +290 -290
- package/esm2015/lib/EditorCellPresenter.js +27 -27
- package/esm2015/lib/FilterCell.js +267 -267
- package/esm2015/lib/FilterCellPresenter.js +17 -17
- package/esm2015/lib/GridCellBase.js +210 -202
- package/esm2015/lib/GridColumnFilterOptionsView_combined.js +13 -13
- package/esm2015/lib/GridColumnGroupOptionsView_combined.js +7 -7
- package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
- package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
- package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
- package/esm2015/lib/GridColumnPinOptionsView_combined.js +4 -4
- package/esm2015/lib/GridColumnSortOptionsView_combined.js +2 -2
- package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +7 -7
- package/esm2015/lib/GridExternalWrapper.js +12 -6
- package/esm2015/lib/GridFilterDialogView_combined.js +238 -187
- package/esm2015/lib/ISummaryChooserView_combined.js +4 -4
- package/esm2015/lib/ImageCell.js +58 -58
- package/esm2015/lib/ImageCellPresenter.js +17 -17
- package/esm2015/lib/MultiColumnComboBoxView_combined.js +9 -9
- package/esm2015/lib/NumericCell.js +8 -8
- package/esm2015/lib/NumericCellPresenter.js +9 -9
- package/esm2015/lib/PropertyEditorView_combined.js +19 -19
- package/esm2015/lib/SectionHeaderCell.js +30 -20
- package/esm2015/lib/SectionHeaderCellPresenter.js +10 -10
- package/esm2015/lib/SummaryCell.js +44 -44
- package/esm2015/lib/SummaryCellPresenter.js +9 -9
- package/esm2015/lib/TemplateCell.js +15 -15
- package/esm2015/lib/TemplateCellPresenter.js +6 -6
- package/esm2015/lib/TemplateHeader.js +8 -8
- package/esm2015/lib/TemplateHeaderCell.js +5 -5
- package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
- package/esm2015/lib/TemplateHeaderCellPresenter.js +6 -6
- package/esm2015/lib/TemplateSectionHeader.js +2 -2
- package/esm2015/lib/TextCell.js +31 -30
- package/esm2015/lib/TextCellPresenter.js +10 -10
- package/esm2015/lib/TextHeaderCell.js +181 -175
- package/esm2015/lib/TextHeaderCellPresenter.js +66 -57
- package/esm2015/lib/VerticalSeparatorCell.js +37 -37
- package/esm2015/lib/igc-cell-info.js +195 -186
- package/esm2015/lib/igc-checkbox-list-component.js +42 -22
- package/esm2015/lib/igc-column-moving-separator-component.js +9 -9
- package/esm2015/lib/igc-column-resizing-separator-component.js +6 -6
- package/esm2015/lib/igc-combo-box-column-component.js +10 -10
- package/esm2015/lib/igc-data-binding-event-args.js +3 -0
- package/esm2015/lib/igc-data-grid-column-component.js +336 -276
- package/esm2015/lib/igc-data-grid-component.js +220 -32
- package/esm2015/lib/igc-data-grid-filter-dialog-component.js +67 -37
- package/esm2015/lib/igc-data-grid-toolbar-component.js +40 -8
- package/esm2015/lib/igc-date-time-cell-info.js +12 -12
- package/esm2015/lib/igc-date-time-column-component.js +23 -23
- package/esm2015/lib/igc-definition-base-component.js +64 -64
- package/esm2015/lib/igc-editor-cell-info.js +23 -23
- package/esm2015/lib/igc-filter-cell-info.js +26 -26
- package/esm2015/lib/igc-filter-row-definition-component.js +12 -12
- package/esm2015/lib/igc-header-component.js +24 -24
- package/esm2015/lib/igc-image-cell-info.js +6 -6
- package/esm2015/lib/igc-image-column-component.js +12 -12
- package/esm2015/lib/igc-multi-column-combo-box-component.js +160 -32
- package/esm2015/lib/igc-numeric-cell-info.js +28 -28
- package/esm2015/lib/igc-numeric-column-component.js +38 -38
- package/esm2015/lib/igc-section-header-cell-info.js +6 -6
- package/esm2015/lib/igc-section-header-component.js +36 -36
- package/esm2015/lib/igc-summary-cell-info.js +9 -9
- package/esm2015/lib/igc-summary-row-component.js +30 -30
- package/esm2015/lib/igc-summary-row-root-module.js +2 -0
- package/esm2015/lib/igc-summary-row-section-module.js +2 -0
- package/esm2015/lib/igc-template-cell-info.js +2 -2
- package/esm2015/lib/igc-template-header-cell-info.js +2 -2
- package/esm2015/lib/igc-text-cell-info.js +2 -2
- package/esm2015/lib/igc-text-column-component.js +9 -9
- package/esm2015/lib/igc-text-header-cell-info.js +67 -40
- package/esm5/lib/AccessibilityRow.js +10 -10
- package/esm5/lib/CanvasCellPresenterBase.js +12 -12
- package/esm5/lib/CanvasContentCellModelHelper.js +12 -12
- package/esm5/lib/CanvasDateTimeCellPresenter.js +8 -8
- package/esm5/lib/CanvasGridCellBase.js +2 -2
- package/esm5/lib/CanvasImageCellPresenter.js +9 -9
- package/esm5/lib/CanvasNumericCellPresenter.js +8 -8
- package/esm5/lib/CanvasSectionHeaderCellPresenter.js +9 -9
- package/esm5/lib/CanvasSummaryCellPresenter.js +4 -4
- package/esm5/lib/CanvasTemplateCellPresenter.js +5 -5
- package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +5 -5
- package/esm5/lib/CanvasTextCellPresenter.js +9 -9
- package/esm5/lib/CanvasTextHeaderCellPresenter.js +11 -11
- package/esm5/lib/CellPath.js +79 -65
- package/esm5/lib/CellPresenterBase.js +46 -46
- package/esm5/lib/CheckboxListBridge.js +12 -0
- package/esm5/lib/CheckboxListView_combined.js +332 -278
- package/esm5/lib/ColumnChooserView_combined.js +11 -11
- package/esm5/lib/ColumnFilterCondition_combined.js +6860 -6456
- package/esm5/lib/ColumnGroupingView_combined.js +5 -5
- package/esm5/lib/ColumnPinningView_combined.js +11 -11
- package/esm5/lib/ComparisonOperatorSelectorView_combined.js +7 -7
- package/esm5/lib/ContentCellModelHelper.js +16 -16
- package/esm5/lib/DataGridAccessibilityLayoutPanel.js +1 -1
- package/esm5/lib/DataGridCellLayoutPanel.js +17 -17
- package/esm5/lib/DataGridScrollerKeyboardListener.js +2 -2
- package/esm5/lib/DataGridToolbarView_combined.js +2 -2
- package/esm5/lib/DateTimeCellPresenter.js +9 -9
- package/esm5/lib/DraggerView.js +1 -7
- package/esm5/lib/EditorCell.js +276 -276
- package/esm5/lib/EditorCellPresenter.js +27 -27
- package/esm5/lib/FilterCell.js +257 -257
- package/esm5/lib/FilterCellPresenter.js +17 -17
- package/esm5/lib/GridCellBase.js +205 -193
- package/esm5/lib/GridColumnFilterOptionsView_combined.js +13 -13
- package/esm5/lib/GridColumnGroupOptionsView_combined.js +7 -7
- package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
- package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
- package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
- package/esm5/lib/GridColumnPinOptionsView_combined.js +4 -4
- package/esm5/lib/GridColumnSortOptionsView_combined.js +2 -2
- package/esm5/lib/GridColumnSummaryOptionsView_combined.js +7 -7
- package/esm5/lib/GridExternalWrapper.js +12 -6
- package/esm5/lib/GridFilterDialogView_combined.js +240 -177
- package/esm5/lib/ISummaryChooserView_combined.js +4 -4
- package/esm5/lib/ImageCell.js +57 -57
- package/esm5/lib/ImageCellPresenter.js +17 -17
- package/esm5/lib/MultiColumnComboBoxView_combined.js +9 -9
- package/esm5/lib/NumericCell.js +8 -8
- package/esm5/lib/NumericCellPresenter.js +9 -9
- package/esm5/lib/PropertyEditorView_combined.js +19 -19
- package/esm5/lib/SectionHeaderCell.js +30 -20
- package/esm5/lib/SectionHeaderCellPresenter.js +10 -10
- package/esm5/lib/SummaryCell.js +44 -44
- package/esm5/lib/SummaryCellPresenter.js +9 -9
- package/esm5/lib/TemplateCell.js +15 -15
- package/esm5/lib/TemplateCellPresenter.js +6 -6
- package/esm5/lib/TemplateHeader.js +8 -8
- package/esm5/lib/TemplateHeaderCell.js +5 -5
- package/esm5/lib/TemplateHeaderCellModel.js +17 -17
- package/esm5/lib/TemplateHeaderCellPresenter.js +6 -6
- package/esm5/lib/TemplateSectionHeader.js +2 -2
- package/esm5/lib/TextCell.js +31 -30
- package/esm5/lib/TextCellPresenter.js +10 -10
- package/esm5/lib/TextHeaderCell.js +185 -179
- package/esm5/lib/TextHeaderCellPresenter.js +66 -57
- package/esm5/lib/VerticalSeparatorCell.js +37 -37
- package/esm5/lib/igc-cell-info.js +207 -186
- package/esm5/lib/igc-checkbox-list-component.js +50 -22
- package/esm5/lib/igc-column-moving-separator-component.js +9 -9
- package/esm5/lib/igc-column-resizing-separator-component.js +6 -6
- package/esm5/lib/igc-combo-box-column-component.js +10 -10
- package/esm5/lib/igc-data-binding-event-args.js +3 -0
- package/esm5/lib/igc-data-grid-column-component.js +360 -276
- package/esm5/lib/igc-data-grid-component.js +240 -32
- package/esm5/lib/igc-data-grid-filter-dialog-component.js +79 -37
- package/esm5/lib/igc-data-grid-toolbar-component.js +40 -8
- package/esm5/lib/igc-date-time-cell-info.js +12 -12
- package/esm5/lib/igc-date-time-column-component.js +23 -23
- package/esm5/lib/igc-definition-base-component.js +64 -64
- package/esm5/lib/igc-editor-cell-info.js +23 -23
- package/esm5/lib/igc-filter-cell-info.js +26 -26
- package/esm5/lib/igc-filter-row-definition-component.js +12 -12
- package/esm5/lib/igc-header-component.js +24 -24
- package/esm5/lib/igc-image-cell-info.js +6 -6
- package/esm5/lib/igc-image-column-component.js +12 -12
- package/esm5/lib/igc-multi-column-combo-box-component.js +160 -32
- package/esm5/lib/igc-numeric-cell-info.js +28 -28
- package/esm5/lib/igc-numeric-column-component.js +38 -38
- package/esm5/lib/igc-section-header-cell-info.js +6 -6
- package/esm5/lib/igc-section-header-component.js +36 -36
- package/esm5/lib/igc-summary-cell-info.js +9 -9
- package/esm5/lib/igc-summary-row-component.js +29 -29
- package/esm5/lib/igc-summary-row-root-module.js +2 -0
- package/esm5/lib/igc-summary-row-section-module.js +2 -0
- package/esm5/lib/igc-template-cell-info.js +2 -2
- package/esm5/lib/igc-template-header-cell-info.js +2 -2
- package/esm5/lib/igc-text-cell-info.js +2 -2
- package/esm5/lib/igc-text-column-component.js +9 -9
- package/esm5/lib/igc-text-header-cell-info.js +79 -40
- package/fesm2015/igniteui-webcomponents-data-grids.js +10931 -9949
- package/fesm5/igniteui-webcomponents-data-grids.js +11002 -9831
- package/lib/CellPath.d.ts +21 -20
- package/lib/CheckboxListExternal.d.ts +3 -0
- package/lib/CheckboxListView_combined.d.ts +77 -71
- package/lib/ColumnFilterCondition_combined.d.ts +1759 -1699
- package/lib/EditorCell.d.ts +63 -63
- package/lib/FilterCell.d.ts +55 -55
- package/lib/GridCellBase.d.ts +82 -80
- package/lib/GridExternalWrapper.d.ts +2 -0
- package/lib/GridFilterDialogView_combined.d.ts +61 -52
- package/lib/ImageCell.d.ts +15 -15
- package/lib/NumericCell.d.ts +2 -2
- package/lib/SectionHeaderCell.d.ts +6 -4
- package/lib/SummaryCell.d.ts +10 -10
- package/lib/TemplateCell.d.ts +5 -5
- package/lib/TemplateHeader.d.ts +3 -3
- package/lib/TemplateHeaderCell.d.ts +2 -2
- package/lib/TemplateHeaderCellModel.d.ts +7 -7
- package/lib/TemplateSectionHeader.d.ts +2 -2
- package/lib/TextCell.d.ts +7 -7
- package/lib/TextHeaderCell.d.ts +30 -30
- package/lib/VerticalSeparatorCell.d.ts +8 -8
- package/lib/igc-cell-info.d.ts +3 -0
- package/lib/igc-checkbox-list-component.d.ts +10 -0
- package/lib/igc-data-grid-column-component.d.ts +30 -0
- package/lib/igc-data-grid-component.d.ts +27 -0
- package/lib/igc-data-grid-filter-dialog-component.d.ts +15 -0
- package/lib/igc-summary-row-component.d.ts +2 -2
- package/lib/igc-text-header-cell-info.d.ts +15 -0
- package/package.json +4 -4
|
@@ -79,10 +79,10 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
79
79
|
* Gets or sets the string to prefix a negative value. If FormatString is specificied this value is ignored.
|
|
80
80
|
*/
|
|
81
81
|
get: function () {
|
|
82
|
-
return this.i.
|
|
82
|
+
return this.i.tz;
|
|
83
83
|
},
|
|
84
84
|
set: function (v) {
|
|
85
|
-
this.i.
|
|
85
|
+
this.i.tz = v;
|
|
86
86
|
},
|
|
87
87
|
enumerable: false,
|
|
88
88
|
configurable: true
|
|
@@ -92,10 +92,10 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
92
92
|
* Gets or sets the string to prefix a positive value. If FormatString is specificied this value is ignored.
|
|
93
93
|
*/
|
|
94
94
|
get: function () {
|
|
95
|
-
return this.i.
|
|
95
|
+
return this.i.t3;
|
|
96
96
|
},
|
|
97
97
|
set: function (v) {
|
|
98
|
-
this.i.
|
|
98
|
+
this.i.t3 = v;
|
|
99
99
|
},
|
|
100
100
|
enumerable: false,
|
|
101
101
|
configurable: true
|
|
@@ -105,10 +105,10 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
105
105
|
* Gets or sets the string to suffix a negative value. If FormatString is specificied this value is ignored.
|
|
106
106
|
*/
|
|
107
107
|
get: function () {
|
|
108
|
-
return this.i.
|
|
108
|
+
return this.i.t1;
|
|
109
109
|
},
|
|
110
110
|
set: function (v) {
|
|
111
|
-
this.i.
|
|
111
|
+
this.i.t1 = v;
|
|
112
112
|
},
|
|
113
113
|
enumerable: false,
|
|
114
114
|
configurable: true
|
|
@@ -118,10 +118,10 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
118
118
|
* Gets or sets the string to suffix a positive value. If FormatString is specificied this value is ignored.
|
|
119
119
|
*/
|
|
120
120
|
get: function () {
|
|
121
|
-
return this.i.
|
|
121
|
+
return this.i.t5;
|
|
122
122
|
},
|
|
123
123
|
set: function (v) {
|
|
124
|
-
this.i.
|
|
124
|
+
this.i.t5 = v;
|
|
125
125
|
},
|
|
126
126
|
enumerable: false,
|
|
127
127
|
configurable: true
|
|
@@ -131,11 +131,11 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
131
131
|
* Gets or sets the maximum fraction digits. If FormatString is specificied this value is ignored.
|
|
132
132
|
*/
|
|
133
133
|
get: function () {
|
|
134
|
-
return this.i.
|
|
134
|
+
return this.i.td;
|
|
135
135
|
},
|
|
136
136
|
set: function (v) {
|
|
137
|
-
this.i.
|
|
138
|
-
this._a("maxFractionDigits", this.i.
|
|
137
|
+
this.i.td = +v;
|
|
138
|
+
this._a("maxFractionDigits", this.i.td);
|
|
139
139
|
},
|
|
140
140
|
enumerable: false,
|
|
141
141
|
configurable: true
|
|
@@ -145,11 +145,11 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
145
145
|
* Gets or sets the minimum fraction digits. If FormatString is specificied this value is ignored.
|
|
146
146
|
*/
|
|
147
147
|
get: function () {
|
|
148
|
-
return this.i.
|
|
148
|
+
return this.i.te;
|
|
149
149
|
},
|
|
150
150
|
set: function (v) {
|
|
151
|
-
this.i.
|
|
152
|
-
this._a("minFractionDigits", this.i.
|
|
151
|
+
this.i.te = +v;
|
|
152
|
+
this._a("minFractionDigits", this.i.te);
|
|
153
153
|
},
|
|
154
154
|
enumerable: false,
|
|
155
155
|
configurable: true
|
|
@@ -159,11 +159,11 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
159
159
|
* Gets or sets the minimum integer digits. If FormatString is specificied this value is ignored.
|
|
160
160
|
*/
|
|
161
161
|
get: function () {
|
|
162
|
-
return this.i.
|
|
162
|
+
return this.i.tf;
|
|
163
163
|
},
|
|
164
164
|
set: function (v) {
|
|
165
|
-
this.i.
|
|
166
|
-
this._a("minIntegerDigits", this.i.
|
|
165
|
+
this.i.tf = +v;
|
|
166
|
+
this._a("minIntegerDigits", this.i.tf);
|
|
167
167
|
},
|
|
168
168
|
enumerable: false,
|
|
169
169
|
configurable: true
|
|
@@ -174,11 +174,11 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
174
174
|
* When true, the raw numeric value is multiplied by 100 before it is formatted for display.
|
|
175
175
|
*/
|
|
176
176
|
get: function () {
|
|
177
|
-
return this.i.
|
|
177
|
+
return this.i.s7;
|
|
178
178
|
},
|
|
179
179
|
set: function (v) {
|
|
180
|
-
this.i.
|
|
181
|
-
this._a("isPercent", this.i.
|
|
180
|
+
this.i.s7 = ensureBool(v);
|
|
181
|
+
this._a("isPercent", this.i.s7);
|
|
182
182
|
},
|
|
183
183
|
enumerable: false,
|
|
184
184
|
configurable: true
|
|
@@ -188,11 +188,11 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
188
188
|
* Gets or sets whether to show a grouping separator. If FormatString is specificied this value is ignored.
|
|
189
189
|
*/
|
|
190
190
|
get: function () {
|
|
191
|
-
return this.i.
|
|
191
|
+
return this.i.s8;
|
|
192
192
|
},
|
|
193
193
|
set: function (v) {
|
|
194
|
-
this.i.
|
|
195
|
-
this._a("showGroupingSeparator", this.i.
|
|
194
|
+
this.i.s8 = ensureBool(v);
|
|
195
|
+
this._a("showGroupingSeparator", this.i.s8);
|
|
196
196
|
},
|
|
197
197
|
enumerable: false,
|
|
198
198
|
configurable: true
|
|
@@ -202,24 +202,24 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
202
202
|
* Gets or sets the format string to apply to the value. If set, the other value formatting properties on this column are ignored.
|
|
203
203
|
*/
|
|
204
204
|
get: function () {
|
|
205
|
-
return this.i.
|
|
205
|
+
return this.i.tt;
|
|
206
206
|
},
|
|
207
207
|
set: function (v) {
|
|
208
|
-
this.i.
|
|
208
|
+
this.i.tt = v;
|
|
209
209
|
},
|
|
210
210
|
enumerable: false,
|
|
211
211
|
configurable: true
|
|
212
212
|
});
|
|
213
213
|
Object.defineProperty(IgcNumericColumnComponent.prototype, "formatSpecifiers", {
|
|
214
214
|
get: function () {
|
|
215
|
-
return this.i.
|
|
215
|
+
return this.i.s1;
|
|
216
216
|
},
|
|
217
217
|
set: function (v) {
|
|
218
218
|
if (v && !Array.isArray(v) && typeof (v) == "string") {
|
|
219
219
|
var re = /\s*(?:,|\s|$)\s*/gm;
|
|
220
220
|
v = v.split(re);
|
|
221
221
|
}
|
|
222
|
-
this.i.
|
|
222
|
+
this.i.s1 = v;
|
|
223
223
|
},
|
|
224
224
|
enumerable: false,
|
|
225
225
|
configurable: true
|
|
@@ -229,10 +229,10 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
229
229
|
* Gets or sets the INTL NumericFormat object to use for formatting the date values.
|
|
230
230
|
*/
|
|
231
231
|
get: function () {
|
|
232
|
-
return this.i.
|
|
232
|
+
return this.i.ti;
|
|
233
233
|
},
|
|
234
234
|
set: function (v) {
|
|
235
|
-
this.i.
|
|
235
|
+
this.i.ti = v;
|
|
236
236
|
},
|
|
237
237
|
enumerable: false,
|
|
238
238
|
configurable: true
|
|
@@ -242,11 +242,11 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
242
242
|
* Gets or sets the editor type used for editing cells in this column.
|
|
243
243
|
*/
|
|
244
244
|
get: function () {
|
|
245
|
-
return this.i.
|
|
245
|
+
return this.i.s3;
|
|
246
246
|
},
|
|
247
247
|
set: function (v) {
|
|
248
|
-
this.i.
|
|
249
|
-
this._a("editorType", enumToString(EditorType_$type, this.i.
|
|
248
|
+
this.i.s3 = ensureEnum(EditorType_$type, v);
|
|
249
|
+
this._a("editorType", enumToString(EditorType_$type, this.i.s3));
|
|
250
250
|
},
|
|
251
251
|
enumerable: false,
|
|
252
252
|
configurable: true
|
|
@@ -256,10 +256,10 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
256
256
|
* Gets or sets the ComboBox data source.
|
|
257
257
|
*/
|
|
258
258
|
get: function () {
|
|
259
|
-
return this.i.
|
|
259
|
+
return this.i.th;
|
|
260
260
|
},
|
|
261
261
|
set: function (v) {
|
|
262
|
-
this.i.
|
|
262
|
+
this.i.th = v;
|
|
263
263
|
},
|
|
264
264
|
enumerable: false,
|
|
265
265
|
configurable: true
|
|
@@ -269,10 +269,10 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
269
269
|
* Gets or sets the ComboBox text field.
|
|
270
270
|
*/
|
|
271
271
|
get: function () {
|
|
272
|
-
return this.i.
|
|
272
|
+
return this.i.to;
|
|
273
273
|
},
|
|
274
274
|
set: function (v) {
|
|
275
|
-
this.i.
|
|
275
|
+
this.i.to = v;
|
|
276
276
|
},
|
|
277
277
|
enumerable: false,
|
|
278
278
|
configurable: true
|
|
@@ -282,10 +282,10 @@ export var IgcNumericColumnComponent = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
282
282
|
* Gets or sets the ComboBox value field.
|
|
283
283
|
*/
|
|
284
284
|
get: function () {
|
|
285
|
-
return this.i.
|
|
285
|
+
return this.i.tp;
|
|
286
286
|
},
|
|
287
287
|
set: function (v) {
|
|
288
|
-
this.i.
|
|
288
|
+
this.i.tp = v;
|
|
289
289
|
},
|
|
290
290
|
enumerable: false,
|
|
291
291
|
configurable: true
|
|
@@ -29,10 +29,10 @@ var IgcSectionHeaderCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
29
29
|
* Sets or gets the resolved text for the section header cell.
|
|
30
30
|
*/
|
|
31
31
|
get: function () {
|
|
32
|
-
return this.i.
|
|
32
|
+
return this.i.os;
|
|
33
33
|
},
|
|
34
34
|
set: function (v) {
|
|
35
|
-
this.i.
|
|
35
|
+
this.i.os = v;
|
|
36
36
|
},
|
|
37
37
|
enumerable: false,
|
|
38
38
|
configurable: true
|
|
@@ -42,10 +42,10 @@ var IgcSectionHeaderCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
42
42
|
* Sets or gets the resolved summary text for the section header cell.
|
|
43
43
|
*/
|
|
44
44
|
get: function () {
|
|
45
|
-
return this.i.
|
|
45
|
+
return this.i.oq;
|
|
46
46
|
},
|
|
47
47
|
set: function (v) {
|
|
48
|
-
this.i.
|
|
48
|
+
this.i.oq = v;
|
|
49
49
|
},
|
|
50
50
|
enumerable: false,
|
|
51
51
|
configurable: true
|
|
@@ -55,10 +55,10 @@ var IgcSectionHeaderCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
55
55
|
* Sets or gets how summaries are displayed in the section header cell.
|
|
56
56
|
*/
|
|
57
57
|
get: function () {
|
|
58
|
-
return this.i.
|
|
58
|
+
return this.i.oh;
|
|
59
59
|
},
|
|
60
60
|
set: function (v) {
|
|
61
|
-
this.i.
|
|
61
|
+
this.i.oh = ensureEnum(GroupSummaryDisplayMode_$type, v);
|
|
62
62
|
},
|
|
63
63
|
enumerable: false,
|
|
64
64
|
configurable: true
|
|
@@ -76,44 +76,44 @@ export var IgcSectionHeaderComponent = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
76
76
|
};
|
|
77
77
|
Object.defineProperty(IgcSectionHeaderComponent.prototype, "selectedBackground", {
|
|
78
78
|
get: function () {
|
|
79
|
-
return brushToString(this.i.
|
|
79
|
+
return brushToString(this.i.ib);
|
|
80
80
|
},
|
|
81
81
|
set: function (v) {
|
|
82
|
-
this.i.
|
|
83
|
-
this._a("selectedBackground", brushToString(this.i.
|
|
82
|
+
this.i.ib = stringToBrush(v);
|
|
83
|
+
this._a("selectedBackground", brushToString(this.i.ib));
|
|
84
84
|
},
|
|
85
85
|
enumerable: false,
|
|
86
86
|
configurable: true
|
|
87
87
|
});
|
|
88
88
|
Object.defineProperty(IgcSectionHeaderComponent.prototype, "actualSelectedBackground", {
|
|
89
89
|
get: function () {
|
|
90
|
-
return brushToString(this.i.
|
|
90
|
+
return brushToString(this.i.h8);
|
|
91
91
|
},
|
|
92
92
|
set: function (v) {
|
|
93
|
-
this.i.
|
|
94
|
-
this._a("actualSelectedBackground", brushToString(this.i.
|
|
93
|
+
this.i.h8 = stringToBrush(v);
|
|
94
|
+
this._a("actualSelectedBackground", brushToString(this.i.h8));
|
|
95
95
|
},
|
|
96
96
|
enumerable: false,
|
|
97
97
|
configurable: true
|
|
98
98
|
});
|
|
99
99
|
Object.defineProperty(IgcSectionHeaderComponent.prototype, "selectedTextColor", {
|
|
100
100
|
get: function () {
|
|
101
|
-
return brushToString(this.i.
|
|
101
|
+
return brushToString(this.i.ic);
|
|
102
102
|
},
|
|
103
103
|
set: function (v) {
|
|
104
|
-
this.i.
|
|
105
|
-
this._a("selectedTextColor", brushToString(this.i.
|
|
104
|
+
this.i.ic = stringToBrush(v);
|
|
105
|
+
this._a("selectedTextColor", brushToString(this.i.ic));
|
|
106
106
|
},
|
|
107
107
|
enumerable: false,
|
|
108
108
|
configurable: true
|
|
109
109
|
});
|
|
110
110
|
Object.defineProperty(IgcSectionHeaderComponent.prototype, "actualSelectedTextColor", {
|
|
111
111
|
get: function () {
|
|
112
|
-
return brushToString(this.i.
|
|
112
|
+
return brushToString(this.i.h9);
|
|
113
113
|
},
|
|
114
114
|
set: function (v) {
|
|
115
|
-
this.i.
|
|
116
|
-
this._a("actualSelectedTextColor", brushToString(this.i.
|
|
115
|
+
this.i.h9 = stringToBrush(v);
|
|
116
|
+
this._a("actualSelectedTextColor", brushToString(this.i.h9));
|
|
117
117
|
},
|
|
118
118
|
enumerable: false,
|
|
119
119
|
configurable: true
|
|
@@ -123,11 +123,11 @@ export var IgcSectionHeaderComponent = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
123
123
|
* Gets or sets the color of the section header's expansion indicator icon. When unset, the icon defers to the grid-level color or the resolved section header text color.
|
|
124
124
|
*/
|
|
125
125
|
get: function () {
|
|
126
|
-
return brushToString(this.i.
|
|
126
|
+
return brushToString(this.i.ia);
|
|
127
127
|
},
|
|
128
128
|
set: function (v) {
|
|
129
|
-
this.i.
|
|
130
|
-
this._a("expansionIndicatorIconColor", brushToString(this.i.
|
|
129
|
+
this.i.ia = stringToBrush(v);
|
|
130
|
+
this._a("expansionIndicatorIconColor", brushToString(this.i.ia));
|
|
131
131
|
},
|
|
132
132
|
enumerable: false,
|
|
133
133
|
configurable: true
|
|
@@ -137,11 +137,11 @@ export var IgcSectionHeaderComponent = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
137
137
|
* Gets the resolved color of the section header's expansion indicator icon.
|
|
138
138
|
*/
|
|
139
139
|
get: function () {
|
|
140
|
-
return brushToString(this.i.
|
|
140
|
+
return brushToString(this.i.h7);
|
|
141
141
|
},
|
|
142
142
|
set: function (v) {
|
|
143
|
-
this.i.
|
|
144
|
-
this._a("actualExpansionIndicatorIconColor", brushToString(this.i.
|
|
143
|
+
this.i.h7 = stringToBrush(v);
|
|
144
|
+
this._a("actualExpansionIndicatorIconColor", brushToString(this.i.h7));
|
|
145
145
|
},
|
|
146
146
|
enumerable: false,
|
|
147
147
|
configurable: true
|
|
@@ -151,11 +151,11 @@ export var IgcSectionHeaderComponent = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
151
151
|
* Gets or sets the amount of left padding to use for the cell content for this column.
|
|
152
152
|
*/
|
|
153
153
|
get: function () {
|
|
154
|
-
return this.i.
|
|
154
|
+
return this.i.hg;
|
|
155
155
|
},
|
|
156
156
|
set: function (v) {
|
|
157
|
-
this.i.
|
|
158
|
-
this._a("paddingLeft", this.i.
|
|
157
|
+
this.i.hg = +v;
|
|
158
|
+
this._a("paddingLeft", this.i.hg);
|
|
159
159
|
},
|
|
160
160
|
enumerable: false,
|
|
161
161
|
configurable: true
|
|
@@ -165,11 +165,11 @@ export var IgcSectionHeaderComponent = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
165
165
|
* Gets or sets the amount of top padding to use for the cell content for this column.
|
|
166
166
|
*/
|
|
167
167
|
get: function () {
|
|
168
|
-
return this.i.
|
|
168
|
+
return this.i.hi;
|
|
169
169
|
},
|
|
170
170
|
set: function (v) {
|
|
171
|
-
this.i.
|
|
172
|
-
this._a("paddingTop", this.i.
|
|
171
|
+
this.i.hi = +v;
|
|
172
|
+
this._a("paddingTop", this.i.hi);
|
|
173
173
|
},
|
|
174
174
|
enumerable: false,
|
|
175
175
|
configurable: true
|
|
@@ -179,11 +179,11 @@ export var IgcSectionHeaderComponent = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
179
179
|
* Gets or sets the amount of right padding to use for the cell content of this column.
|
|
180
180
|
*/
|
|
181
181
|
get: function () {
|
|
182
|
-
return this.i.
|
|
182
|
+
return this.i.hh;
|
|
183
183
|
},
|
|
184
184
|
set: function (v) {
|
|
185
|
-
this.i.
|
|
186
|
-
this._a("paddingRight", this.i.
|
|
185
|
+
this.i.hh = +v;
|
|
186
|
+
this._a("paddingRight", this.i.hh);
|
|
187
187
|
},
|
|
188
188
|
enumerable: false,
|
|
189
189
|
configurable: true
|
|
@@ -193,33 +193,33 @@ export var IgcSectionHeaderComponent = /** @class */ /*@__PURE__*/ (function (_s
|
|
|
193
193
|
* Gets or sets the amount of bottom padding to use for the cell content of this column.
|
|
194
194
|
*/
|
|
195
195
|
get: function () {
|
|
196
|
-
return this.i.
|
|
196
|
+
return this.i.hf;
|
|
197
197
|
},
|
|
198
198
|
set: function (v) {
|
|
199
|
-
this.i.
|
|
200
|
-
this._a("paddingBottom", this.i.
|
|
199
|
+
this.i.hf = +v;
|
|
200
|
+
this._a("paddingBottom", this.i.hf);
|
|
201
201
|
},
|
|
202
202
|
enumerable: false,
|
|
203
203
|
configurable: true
|
|
204
204
|
});
|
|
205
205
|
Object.defineProperty(IgcSectionHeaderComponent.prototype, "isCollapsable", {
|
|
206
206
|
get: function () {
|
|
207
|
-
return this.i.
|
|
207
|
+
return this.i.g8;
|
|
208
208
|
},
|
|
209
209
|
set: function (v) {
|
|
210
|
-
this.i.
|
|
211
|
-
this._a("isCollapsable", this.i.
|
|
210
|
+
this.i.g8 = ensureBool(v);
|
|
211
|
+
this._a("isCollapsable", this.i.g8);
|
|
212
212
|
},
|
|
213
213
|
enumerable: false,
|
|
214
214
|
configurable: true
|
|
215
215
|
});
|
|
216
216
|
Object.defineProperty(IgcSectionHeaderComponent.prototype, "summaryDisplayMode", {
|
|
217
217
|
get: function () {
|
|
218
|
-
return this.i.
|
|
218
|
+
return this.i.g5;
|
|
219
219
|
},
|
|
220
220
|
set: function (v) {
|
|
221
|
-
this.i.
|
|
222
|
-
this._a("summaryDisplayMode", enumToString(GroupSummaryDisplayMode_$type, this.i.
|
|
221
|
+
this.i.g5 = ensureEnum(GroupSummaryDisplayMode_$type, v);
|
|
222
|
+
this._a("summaryDisplayMode", enumToString(GroupSummaryDisplayMode_$type, this.i.g5));
|
|
223
223
|
},
|
|
224
224
|
enumerable: false,
|
|
225
225
|
configurable: true
|
|
@@ -29,10 +29,10 @@ var IgcSummaryCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
29
29
|
* Sets or gets the resolved summary label for the summary cell.
|
|
30
30
|
*/
|
|
31
31
|
get: function () {
|
|
32
|
-
return this.i.
|
|
32
|
+
return this.i.ok;
|
|
33
33
|
},
|
|
34
34
|
set: function (v) {
|
|
35
|
-
this.i.
|
|
35
|
+
this.i.ok = v;
|
|
36
36
|
},
|
|
37
37
|
enumerable: false,
|
|
38
38
|
configurable: true
|
|
@@ -42,10 +42,10 @@ var IgcSummaryCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
42
42
|
* Sets or gets the resolved summary value for the sumamry cell.
|
|
43
43
|
*/
|
|
44
44
|
get: function () {
|
|
45
|
-
return this.i.
|
|
45
|
+
return this.i.om;
|
|
46
46
|
},
|
|
47
47
|
set: function (v) {
|
|
48
|
-
this.i.
|
|
48
|
+
this.i.om = v;
|
|
49
49
|
},
|
|
50
50
|
enumerable: false,
|
|
51
51
|
configurable: true
|
|
@@ -55,25 +55,25 @@ var IgcSummaryCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
55
55
|
* Gets or sets the color of the text for the summary label in the cell.
|
|
56
56
|
*/
|
|
57
57
|
get: function () {
|
|
58
|
-
return brushToString(this.i.
|
|
58
|
+
return brushToString(this.i.or);
|
|
59
59
|
},
|
|
60
60
|
set: function (v) {
|
|
61
|
-
this.i.
|
|
61
|
+
this.i.or = stringToBrush(v);
|
|
62
62
|
},
|
|
63
63
|
enumerable: false,
|
|
64
64
|
configurable: true
|
|
65
65
|
});
|
|
66
66
|
Object.defineProperty(IgcSummaryCellInfo.prototype, "font", {
|
|
67
67
|
get: function () {
|
|
68
|
-
if (this.i.
|
|
68
|
+
if (this.i.od == null) {
|
|
69
69
|
return null;
|
|
70
70
|
}
|
|
71
|
-
return this.i.
|
|
71
|
+
return this.i.od.fontString;
|
|
72
72
|
},
|
|
73
73
|
set: function (v) {
|
|
74
74
|
var fi = new FontInfo();
|
|
75
75
|
fi.fontString = v;
|
|
76
|
-
this.i.
|
|
76
|
+
this.i.od = fi;
|
|
77
77
|
},
|
|
78
78
|
enumerable: false,
|
|
79
79
|
configurable: true
|
|
@@ -65,11 +65,11 @@ export var IgcSummaryRowComponent = /** @class */ /*@__PURE__*/ (function (_supe
|
|
|
65
65
|
* Gets or sets the background color for summary cells when selected.
|
|
66
66
|
*/
|
|
67
67
|
get: function () {
|
|
68
|
-
return brushToString(this.i.
|
|
68
|
+
return brushToString(this.i.h0);
|
|
69
69
|
},
|
|
70
70
|
set: function (v) {
|
|
71
|
-
this.i.
|
|
72
|
-
this._a("selectedBackground", brushToString(this.i.
|
|
71
|
+
this.i.h0 = stringToBrush(v);
|
|
72
|
+
this._a("selectedBackground", brushToString(this.i.h0));
|
|
73
73
|
},
|
|
74
74
|
enumerable: false,
|
|
75
75
|
configurable: true
|
|
@@ -79,11 +79,11 @@ export var IgcSummaryRowComponent = /** @class */ /*@__PURE__*/ (function (_supe
|
|
|
79
79
|
* Gets the actual background color for summary cells when selected.
|
|
80
80
|
*/
|
|
81
81
|
get: function () {
|
|
82
|
-
return brushToString(this.i.
|
|
82
|
+
return brushToString(this.i.hx);
|
|
83
83
|
},
|
|
84
84
|
set: function (v) {
|
|
85
|
-
this.i.
|
|
86
|
-
this._a("actualSelectedBackground", brushToString(this.i.
|
|
85
|
+
this.i.hx = stringToBrush(v);
|
|
86
|
+
this._a("actualSelectedBackground", brushToString(this.i.hx));
|
|
87
87
|
},
|
|
88
88
|
enumerable: false,
|
|
89
89
|
configurable: true
|
|
@@ -93,11 +93,11 @@ export var IgcSummaryRowComponent = /** @class */ /*@__PURE__*/ (function (_supe
|
|
|
93
93
|
* Gets or sets the text color for the summary labels.
|
|
94
94
|
*/
|
|
95
95
|
get: function () {
|
|
96
|
-
return brushToString(this.i.
|
|
96
|
+
return brushToString(this.i.h1);
|
|
97
97
|
},
|
|
98
98
|
set: function (v) {
|
|
99
|
-
this.i.
|
|
100
|
-
this._a("summaryLabelTextColor", brushToString(this.i.
|
|
99
|
+
this.i.h1 = stringToBrush(v);
|
|
100
|
+
this._a("summaryLabelTextColor", brushToString(this.i.h1));
|
|
101
101
|
},
|
|
102
102
|
enumerable: false,
|
|
103
103
|
configurable: true
|
|
@@ -107,30 +107,30 @@ export var IgcSummaryRowComponent = /** @class */ /*@__PURE__*/ (function (_supe
|
|
|
107
107
|
* Gets the actual text color for the summary labels.
|
|
108
108
|
*/
|
|
109
109
|
get: function () {
|
|
110
|
-
return brushToString(this.i.
|
|
110
|
+
return brushToString(this.i.hy);
|
|
111
111
|
},
|
|
112
112
|
set: function (v) {
|
|
113
|
-
this.i.
|
|
114
|
-
this._a("actualSummaryLabelTextColor", brushToString(this.i.
|
|
113
|
+
this.i.hy = stringToBrush(v);
|
|
114
|
+
this._a("actualSummaryLabelTextColor", brushToString(this.i.hy));
|
|
115
115
|
},
|
|
116
116
|
enumerable: false,
|
|
117
117
|
configurable: true
|
|
118
118
|
});
|
|
119
|
-
Object.defineProperty(IgcSummaryRowComponent.prototype, "
|
|
119
|
+
Object.defineProperty(IgcSummaryRowComponent.prototype, "summaryLabelTextStyle", {
|
|
120
120
|
/**
|
|
121
121
|
* Gets or sets the text style for the summary labels.
|
|
122
122
|
*/
|
|
123
123
|
get: function () {
|
|
124
|
-
if (this.i.
|
|
124
|
+
if (this.i.summaryLabelTextStyle == null) {
|
|
125
125
|
return null;
|
|
126
126
|
}
|
|
127
|
-
return this.i.
|
|
127
|
+
return this.i.summaryLabelTextStyle.fontString;
|
|
128
128
|
},
|
|
129
129
|
set: function (v) {
|
|
130
130
|
var fi = new FontInfo();
|
|
131
131
|
fi.fontString = v;
|
|
132
|
-
this.i.
|
|
133
|
-
this._a("
|
|
132
|
+
this.i.summaryLabelTextStyle = fi;
|
|
133
|
+
this._a("summaryLabelTextStyle", this.i.summaryLabelTextStyle != null ? this.i.summaryLabelTextStyle.fontString : "");
|
|
134
134
|
},
|
|
135
135
|
enumerable: false,
|
|
136
136
|
configurable: true
|
|
@@ -140,11 +140,11 @@ export var IgcSummaryRowComponent = /** @class */ /*@__PURE__*/ (function (_supe
|
|
|
140
140
|
* Gets or sets the amount of left padding to use for the cell content for this column.
|
|
141
141
|
*/
|
|
142
142
|
get: function () {
|
|
143
|
-
return this.i.
|
|
143
|
+
return this.i.hd;
|
|
144
144
|
},
|
|
145
145
|
set: function (v) {
|
|
146
|
-
this.i.
|
|
147
|
-
this._a("paddingLeft", this.i.
|
|
146
|
+
this.i.hd = +v;
|
|
147
|
+
this._a("paddingLeft", this.i.hd);
|
|
148
148
|
},
|
|
149
149
|
enumerable: false,
|
|
150
150
|
configurable: true
|
|
@@ -154,11 +154,11 @@ export var IgcSummaryRowComponent = /** @class */ /*@__PURE__*/ (function (_supe
|
|
|
154
154
|
* Gets or sets the amount of top padding to use for the cell content for this column.
|
|
155
155
|
*/
|
|
156
156
|
get: function () {
|
|
157
|
-
return this.i.
|
|
157
|
+
return this.i.hf;
|
|
158
158
|
},
|
|
159
159
|
set: function (v) {
|
|
160
|
-
this.i.
|
|
161
|
-
this._a("paddingTop", this.i.
|
|
160
|
+
this.i.hf = +v;
|
|
161
|
+
this._a("paddingTop", this.i.hf);
|
|
162
162
|
},
|
|
163
163
|
enumerable: false,
|
|
164
164
|
configurable: true
|
|
@@ -168,11 +168,11 @@ export var IgcSummaryRowComponent = /** @class */ /*@__PURE__*/ (function (_supe
|
|
|
168
168
|
* Gets or sets the amount of right padding to use for the cell content of this column.
|
|
169
169
|
*/
|
|
170
170
|
get: function () {
|
|
171
|
-
return this.i.
|
|
171
|
+
return this.i.he;
|
|
172
172
|
},
|
|
173
173
|
set: function (v) {
|
|
174
|
-
this.i.
|
|
175
|
-
this._a("paddingRight", this.i.
|
|
174
|
+
this.i.he = +v;
|
|
175
|
+
this._a("paddingRight", this.i.he);
|
|
176
176
|
},
|
|
177
177
|
enumerable: false,
|
|
178
178
|
configurable: true
|
|
@@ -182,11 +182,11 @@ export var IgcSummaryRowComponent = /** @class */ /*@__PURE__*/ (function (_supe
|
|
|
182
182
|
* Gets or sets the amount of bottom padding to use for the cell content of this column.
|
|
183
183
|
*/
|
|
184
184
|
get: function () {
|
|
185
|
-
return this.i.
|
|
185
|
+
return this.i.hc;
|
|
186
186
|
},
|
|
187
187
|
set: function (v) {
|
|
188
|
-
this.i.
|
|
189
|
-
this._a("paddingBottom", this.i.
|
|
188
|
+
this.i.hc = +v;
|
|
189
|
+
this._a("paddingBottom", this.i.hc);
|
|
190
190
|
},
|
|
191
191
|
enumerable: false,
|
|
192
192
|
configurable: true
|
|
@@ -4,6 +4,7 @@ https://www.infragistics.com/legal/license/igultimate-la
|
|
|
4
4
|
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
5
|
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
6
|
*/
|
|
7
|
+
import { IgcSummaryCellInfo } from './igc-summary-cell-info';
|
|
7
8
|
import { IgcSummaryRowRootComponent } from './igc-summary-row-root-component';
|
|
8
9
|
import { SummaryRowRoot } from './SummaryRowRoot';
|
|
9
10
|
import { TypeRegistrar } from "igniteui-webcomponents-core";
|
|
@@ -11,6 +12,7 @@ var IgcSummaryRowRootModule = /** @class */ /*@__PURE__*/ (function () {
|
|
|
11
12
|
function IgcSummaryRowRootModule() {
|
|
12
13
|
}
|
|
13
14
|
IgcSummaryRowRootModule.register = function () {
|
|
15
|
+
TypeRegistrar.registerCons("IgcSummaryCellInfo", IgcSummaryCellInfo);
|
|
14
16
|
IgcSummaryRowRootComponent.register();
|
|
15
17
|
TypeRegistrar.registerCons("IgcSummaryRowRootComponent", IgcSummaryRowRootComponent);
|
|
16
18
|
TypeRegistrar.register("SummaryRowRoot", SummaryRowRoot.$type);
|
|
@@ -4,6 +4,7 @@ https://www.infragistics.com/legal/license/igultimate-la
|
|
|
4
4
|
https://www.infragistics.com/legal/license/igultimate-eula
|
|
5
5
|
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
|
|
6
6
|
*/
|
|
7
|
+
import { IgcSummaryCellInfo } from './igc-summary-cell-info';
|
|
7
8
|
import { IgcSummaryRowSectionComponent } from './igc-summary-row-section-component';
|
|
8
9
|
import { SummaryRowSection } from './SummaryRowSection';
|
|
9
10
|
import { TypeRegistrar } from "igniteui-webcomponents-core";
|
|
@@ -11,6 +12,7 @@ var IgcSummaryRowSectionModule = /** @class */ /*@__PURE__*/ (function () {
|
|
|
11
12
|
function IgcSummaryRowSectionModule() {
|
|
12
13
|
}
|
|
13
14
|
IgcSummaryRowSectionModule.register = function () {
|
|
15
|
+
TypeRegistrar.registerCons("IgcSummaryCellInfo", IgcSummaryCellInfo);
|
|
14
16
|
IgcSummaryRowSectionComponent.register();
|
|
15
17
|
TypeRegistrar.registerCons("IgcSummaryRowSectionComponent", IgcSummaryRowSectionComponent);
|
|
16
18
|
TypeRegistrar.register("SummaryRowSection", SummaryRowSection.$type);
|