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
|
@@ -379,9 +379,17 @@ export var IgcDataGridToolbarComponent = /** @class */ /*@__PURE__*/ (function (
|
|
|
379
379
|
},
|
|
380
380
|
set: function (v) {
|
|
381
381
|
this.ensureBorderWidth();
|
|
382
|
-
|
|
382
|
+
var __nv = +v;
|
|
383
|
+
if (this.i.bi.bottom === __nv) {
|
|
384
|
+
return;
|
|
385
|
+
}
|
|
386
|
+
var __copy = new Thickness(2);
|
|
387
|
+
__copy.bottom = __nv;
|
|
388
|
+
__copy.left = this.i.bi.left;
|
|
389
|
+
__copy.right = this.i.bi.right;
|
|
390
|
+
__copy.top = this.i.bi.top;
|
|
391
|
+
this.i.bi = __copy;
|
|
383
392
|
this._a("borderWidthBottom", this.i.bi.bottom);
|
|
384
|
-
this.i.bi = this.i.bi;
|
|
385
393
|
},
|
|
386
394
|
enumerable: false,
|
|
387
395
|
configurable: true
|
|
@@ -392,9 +400,17 @@ export var IgcDataGridToolbarComponent = /** @class */ /*@__PURE__*/ (function (
|
|
|
392
400
|
},
|
|
393
401
|
set: function (v) {
|
|
394
402
|
this.ensureBorderWidth();
|
|
395
|
-
|
|
403
|
+
var __nv = +v;
|
|
404
|
+
if (this.i.bi.left === __nv) {
|
|
405
|
+
return;
|
|
406
|
+
}
|
|
407
|
+
var __copy = new Thickness(2);
|
|
408
|
+
__copy.left = __nv;
|
|
409
|
+
__copy.bottom = this.i.bi.bottom;
|
|
410
|
+
__copy.right = this.i.bi.right;
|
|
411
|
+
__copy.top = this.i.bi.top;
|
|
412
|
+
this.i.bi = __copy;
|
|
396
413
|
this._a("borderWidthLeft", this.i.bi.left);
|
|
397
|
-
this.i.bi = this.i.bi;
|
|
398
414
|
},
|
|
399
415
|
enumerable: false,
|
|
400
416
|
configurable: true
|
|
@@ -405,9 +421,17 @@ export var IgcDataGridToolbarComponent = /** @class */ /*@__PURE__*/ (function (
|
|
|
405
421
|
},
|
|
406
422
|
set: function (v) {
|
|
407
423
|
this.ensureBorderWidth();
|
|
408
|
-
|
|
424
|
+
var __nv = +v;
|
|
425
|
+
if (this.i.bi.right === __nv) {
|
|
426
|
+
return;
|
|
427
|
+
}
|
|
428
|
+
var __copy = new Thickness(2);
|
|
429
|
+
__copy.right = __nv;
|
|
430
|
+
__copy.bottom = this.i.bi.bottom;
|
|
431
|
+
__copy.left = this.i.bi.left;
|
|
432
|
+
__copy.top = this.i.bi.top;
|
|
433
|
+
this.i.bi = __copy;
|
|
409
434
|
this._a("borderWidthRight", this.i.bi.right);
|
|
410
|
-
this.i.bi = this.i.bi;
|
|
411
435
|
},
|
|
412
436
|
enumerable: false,
|
|
413
437
|
configurable: true
|
|
@@ -418,9 +442,17 @@ export var IgcDataGridToolbarComponent = /** @class */ /*@__PURE__*/ (function (
|
|
|
418
442
|
},
|
|
419
443
|
set: function (v) {
|
|
420
444
|
this.ensureBorderWidth();
|
|
421
|
-
|
|
445
|
+
var __nv = +v;
|
|
446
|
+
if (this.i.bi.top === __nv) {
|
|
447
|
+
return;
|
|
448
|
+
}
|
|
449
|
+
var __copy = new Thickness(2);
|
|
450
|
+
__copy.top = __nv;
|
|
451
|
+
__copy.bottom = this.i.bi.bottom;
|
|
452
|
+
__copy.left = this.i.bi.left;
|
|
453
|
+
__copy.right = this.i.bi.right;
|
|
454
|
+
this.i.bi = __copy;
|
|
422
455
|
this._a("borderWidthTop", this.i.bi.top);
|
|
423
|
-
this.i.bi = this.i.bi;
|
|
424
456
|
},
|
|
425
457
|
enumerable: false,
|
|
426
458
|
configurable: true
|
|
@@ -29,10 +29,10 @@ var IgcDateTimeCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
29
29
|
* Sets or gets the DateTime value for the cell.
|
|
30
30
|
*/
|
|
31
31
|
get: function () {
|
|
32
|
-
return this.i.
|
|
32
|
+
return this.i.om;
|
|
33
33
|
},
|
|
34
34
|
set: function (v) {
|
|
35
|
-
this.i.
|
|
35
|
+
this.i.om = v;
|
|
36
36
|
},
|
|
37
37
|
enumerable: false,
|
|
38
38
|
configurable: true
|
|
@@ -42,24 +42,24 @@ var IgcDateTimeCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
42
42
|
* The format string to apply to the value
|
|
43
43
|
*/
|
|
44
44
|
get: function () {
|
|
45
|
-
return this.i.
|
|
45
|
+
return this.i.o3;
|
|
46
46
|
},
|
|
47
47
|
set: function (v) {
|
|
48
|
-
this.i.
|
|
48
|
+
this.i.o3 = v;
|
|
49
49
|
},
|
|
50
50
|
enumerable: false,
|
|
51
51
|
configurable: true
|
|
52
52
|
});
|
|
53
53
|
Object.defineProperty(IgcDateTimeCellInfo.prototype, "formatSpecifiers", {
|
|
54
54
|
get: function () {
|
|
55
|
-
return this.i.
|
|
55
|
+
return this.i.od;
|
|
56
56
|
},
|
|
57
57
|
set: function (v) {
|
|
58
58
|
if (v && !Array.isArray(v) && typeof (v) == "string") {
|
|
59
59
|
var re = /\s*(?:,|\s|$)\s*/gm;
|
|
60
60
|
v = v.split(re);
|
|
61
61
|
}
|
|
62
|
-
this.i.
|
|
62
|
+
this.i.od = v;
|
|
63
63
|
},
|
|
64
64
|
enumerable: false,
|
|
65
65
|
configurable: true
|
|
@@ -69,10 +69,10 @@ var IgcDateTimeCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
69
69
|
* The format options to apply to the value
|
|
70
70
|
*/
|
|
71
71
|
get: function () {
|
|
72
|
-
return this.i.
|
|
72
|
+
return this.i.ow;
|
|
73
73
|
},
|
|
74
74
|
set: function (v) {
|
|
75
|
-
this.i.
|
|
75
|
+
this.i.ow = v;
|
|
76
76
|
},
|
|
77
77
|
enumerable: false,
|
|
78
78
|
configurable: true
|
|
@@ -82,10 +82,10 @@ var IgcDateTimeCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
82
82
|
* Sets or gets the simple DateTimeFormat to use for the cell.
|
|
83
83
|
*/
|
|
84
84
|
get: function () {
|
|
85
|
-
return this.i.
|
|
85
|
+
return this.i.oi;
|
|
86
86
|
},
|
|
87
87
|
set: function (v) {
|
|
88
|
-
this.i.
|
|
88
|
+
this.i.oi = ensureEnum(DateTimeFormats_$type, v);
|
|
89
89
|
},
|
|
90
90
|
enumerable: false,
|
|
91
91
|
configurable: true
|
|
@@ -95,10 +95,10 @@ var IgcDateTimeCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
|
|
|
95
95
|
* Sets or gets whether the value to use is a DateTimeOffset value.
|
|
96
96
|
*/
|
|
97
97
|
get: function () {
|
|
98
|
-
return this.i.
|
|
98
|
+
return this.i.ok;
|
|
99
99
|
},
|
|
100
100
|
set: function (v) {
|
|
101
|
-
this.i.
|
|
101
|
+
this.i.ok = ensureBool(v);
|
|
102
102
|
},
|
|
103
103
|
enumerable: false,
|
|
104
104
|
configurable: true
|
|
@@ -80,11 +80,11 @@ export var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
80
80
|
* Gets or sets the date time format to use for this column. If FormatString is specificied this value is ignored.
|
|
81
81
|
*/
|
|
82
82
|
get: function () {
|
|
83
|
-
return this.i.
|
|
83
|
+
return this.i.s5;
|
|
84
84
|
},
|
|
85
85
|
set: function (v) {
|
|
86
|
-
this.i.
|
|
87
|
-
this._a("dateTimeFormat", enumToString(DateTimeFormats_$type, this.i.
|
|
86
|
+
this.i.s5 = ensureEnum(DateTimeFormats_$type, v);
|
|
87
|
+
this._a("dateTimeFormat", enumToString(DateTimeFormats_$type, this.i.s5));
|
|
88
88
|
},
|
|
89
89
|
enumerable: false,
|
|
90
90
|
configurable: true
|
|
@@ -94,10 +94,10 @@ export var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
94
94
|
* Gets or sets the format string to apply to the value. If set, the other value formatting properties on this column are ignored.
|
|
95
95
|
*/
|
|
96
96
|
get: function () {
|
|
97
|
-
return this.i.
|
|
97
|
+
return this.i.tn;
|
|
98
98
|
},
|
|
99
99
|
set: function (v) {
|
|
100
|
-
this.i.
|
|
100
|
+
this.i.tn = v;
|
|
101
101
|
},
|
|
102
102
|
enumerable: false,
|
|
103
103
|
configurable: true
|
|
@@ -107,24 +107,24 @@ export var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
107
107
|
* Gets or sets the format string to use when editing dates.
|
|
108
108
|
*/
|
|
109
109
|
get: function () {
|
|
110
|
-
return this.i.
|
|
110
|
+
return this.i.tg;
|
|
111
111
|
},
|
|
112
112
|
set: function (v) {
|
|
113
|
-
this.i.
|
|
113
|
+
this.i.tg = v;
|
|
114
114
|
},
|
|
115
115
|
enumerable: false,
|
|
116
116
|
configurable: true
|
|
117
117
|
});
|
|
118
118
|
Object.defineProperty(IgcDateTimeColumnComponent.prototype, "formatSpecifiers", {
|
|
119
119
|
get: function () {
|
|
120
|
-
return this.i.
|
|
120
|
+
return this.i.s1;
|
|
121
121
|
},
|
|
122
122
|
set: function (v) {
|
|
123
123
|
if (v && !Array.isArray(v) && typeof (v) == "string") {
|
|
124
124
|
var re = /\s*(?:,|\s|$)\s*/gm;
|
|
125
125
|
v = v.split(re);
|
|
126
126
|
}
|
|
127
|
-
this.i.
|
|
127
|
+
this.i.s1 = v;
|
|
128
128
|
},
|
|
129
129
|
enumerable: false,
|
|
130
130
|
configurable: true
|
|
@@ -134,10 +134,10 @@ export var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
134
134
|
* Gets or sets the INTL DateTimeFormat object to use for formatting the date values.
|
|
135
135
|
*/
|
|
136
136
|
get: function () {
|
|
137
|
-
return this.i.
|
|
137
|
+
return this.i.tc;
|
|
138
138
|
},
|
|
139
139
|
set: function (v) {
|
|
140
|
-
this.i.
|
|
140
|
+
this.i.tc = v;
|
|
141
141
|
},
|
|
142
142
|
enumerable: false,
|
|
143
143
|
configurable: true
|
|
@@ -147,11 +147,11 @@ export var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
147
147
|
* Gets or sets the ShowTodayButton property to detirmine if the today button is shown
|
|
148
148
|
*/
|
|
149
149
|
get: function () {
|
|
150
|
-
return this.i.
|
|
150
|
+
return this.i.s8;
|
|
151
151
|
},
|
|
152
152
|
set: function (v) {
|
|
153
|
-
this.i.
|
|
154
|
-
this._a("showTodayButton", this.i.
|
|
153
|
+
this.i.s8 = ensureBool(v);
|
|
154
|
+
this._a("showTodayButton", this.i.s8);
|
|
155
155
|
},
|
|
156
156
|
enumerable: false,
|
|
157
157
|
configurable: true
|
|
@@ -161,11 +161,11 @@ export var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
161
161
|
* Gets or sets the editor type used for editing cells in this column.
|
|
162
162
|
*/
|
|
163
163
|
get: function () {
|
|
164
|
-
return this.i.
|
|
164
|
+
return this.i.s6;
|
|
165
165
|
},
|
|
166
166
|
set: function (v) {
|
|
167
|
-
this.i.
|
|
168
|
-
this._a("editorType", enumToString(EditorType_$type, this.i.
|
|
167
|
+
this.i.s6 = ensureEnum(EditorType_$type, v);
|
|
168
|
+
this._a("editorType", enumToString(EditorType_$type, this.i.s6));
|
|
169
169
|
},
|
|
170
170
|
enumerable: false,
|
|
171
171
|
configurable: true
|
|
@@ -175,10 +175,10 @@ export var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
175
175
|
* Gets or sets the ComboBox data source.
|
|
176
176
|
*/
|
|
177
177
|
get: function () {
|
|
178
|
-
return this.i.
|
|
178
|
+
return this.i.tb;
|
|
179
179
|
},
|
|
180
180
|
set: function (v) {
|
|
181
|
-
this.i.
|
|
181
|
+
this.i.tb = v;
|
|
182
182
|
},
|
|
183
183
|
enumerable: false,
|
|
184
184
|
configurable: true
|
|
@@ -188,10 +188,10 @@ export var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
188
188
|
* Gets or sets the ComboBox text field.
|
|
189
189
|
*/
|
|
190
190
|
get: function () {
|
|
191
|
-
return this.i.
|
|
191
|
+
return this.i.ti;
|
|
192
192
|
},
|
|
193
193
|
set: function (v) {
|
|
194
|
-
this.i.
|
|
194
|
+
this.i.ti = v;
|
|
195
195
|
},
|
|
196
196
|
enumerable: false,
|
|
197
197
|
configurable: true
|
|
@@ -201,10 +201,10 @@ export var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
201
201
|
* Gets or sets the ComboBox value field.
|
|
202
202
|
*/
|
|
203
203
|
get: function () {
|
|
204
|
-
return this.i.
|
|
204
|
+
return this.i.tj;
|
|
205
205
|
},
|
|
206
206
|
set: function (v) {
|
|
207
|
-
this.i.
|
|
207
|
+
this.i.tj = v;
|
|
208
208
|
},
|
|
209
209
|
enumerable: false,
|
|
210
210
|
configurable: true
|
|
@@ -302,11 +302,11 @@ export var IgcDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
302
302
|
* Gets or sets the background color to use.
|
|
303
303
|
*/
|
|
304
304
|
get: function () {
|
|
305
|
-
return brushToString(this.i.
|
|
305
|
+
return brushToString(this.i.gi);
|
|
306
306
|
},
|
|
307
307
|
set: function (v) {
|
|
308
|
-
this.i.
|
|
309
|
-
this._a("background", brushToString(this.i.
|
|
308
|
+
this.i.gi = stringToBrush(v);
|
|
309
|
+
this._a("background", brushToString(this.i.gi));
|
|
310
310
|
},
|
|
311
311
|
enumerable: false,
|
|
312
312
|
configurable: true
|
|
@@ -370,11 +370,11 @@ export var IgcDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
370
370
|
* Gets or sets the background color to use.
|
|
371
371
|
*/
|
|
372
372
|
get: function () {
|
|
373
|
-
return brushToString(this.i.
|
|
373
|
+
return brushToString(this.i.gl);
|
|
374
374
|
},
|
|
375
375
|
set: function (v) {
|
|
376
|
-
this.i.
|
|
377
|
-
this._a("border", brushToString(this.i.
|
|
376
|
+
this.i.gl = stringToBrush(v);
|
|
377
|
+
this._a("border", brushToString(this.i.gl));
|
|
378
378
|
},
|
|
379
379
|
enumerable: false,
|
|
380
380
|
configurable: true
|
|
@@ -384,11 +384,11 @@ export var IgcDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
384
384
|
* Gets or sets the background color to use.
|
|
385
385
|
*/
|
|
386
386
|
get: function () {
|
|
387
|
-
return brushToString(this.i.
|
|
387
|
+
return brushToString(this.i.f7);
|
|
388
388
|
},
|
|
389
389
|
set: function (v) {
|
|
390
|
-
this.i.
|
|
391
|
-
this._a("activationBorder", brushToString(this.i.
|
|
390
|
+
this.i.f7 = stringToBrush(v);
|
|
391
|
+
this._a("activationBorder", brushToString(this.i.f7));
|
|
392
392
|
},
|
|
393
393
|
enumerable: false,
|
|
394
394
|
configurable: true
|
|
@@ -398,11 +398,11 @@ export var IgcDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
398
398
|
* Gets or sets the error border color to use.
|
|
399
399
|
*/
|
|
400
400
|
get: function () {
|
|
401
|
-
return brushToString(this.i.
|
|
401
|
+
return brushToString(this.i.gm);
|
|
402
402
|
},
|
|
403
403
|
set: function (v) {
|
|
404
|
-
this.i.
|
|
405
|
-
this._a("errorBorder", brushToString(this.i.
|
|
404
|
+
this.i.gm = stringToBrush(v);
|
|
405
|
+
this._a("errorBorder", brushToString(this.i.gm));
|
|
406
406
|
},
|
|
407
407
|
enumerable: false,
|
|
408
408
|
configurable: true
|
|
@@ -412,11 +412,11 @@ export var IgcDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
412
412
|
* Gets the actual border color that will be used.
|
|
413
413
|
*/
|
|
414
414
|
get: function () {
|
|
415
|
-
return brushToString(this.i.
|
|
415
|
+
return brushToString(this.i.gc);
|
|
416
416
|
},
|
|
417
417
|
set: function (v) {
|
|
418
|
-
this.i.
|
|
419
|
-
this._a("actualBorder", brushToString(this.i.
|
|
418
|
+
this.i.gc = stringToBrush(v);
|
|
419
|
+
this._a("actualBorder", brushToString(this.i.gc));
|
|
420
420
|
},
|
|
421
421
|
enumerable: false,
|
|
422
422
|
configurable: true
|
|
@@ -582,11 +582,11 @@ export var IgcDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
582
582
|
* Gets the actual background color that will be used.
|
|
583
583
|
*/
|
|
584
584
|
get: function () {
|
|
585
|
-
return brushToString(this.i.
|
|
585
|
+
return brushToString(this.i.f9);
|
|
586
586
|
},
|
|
587
587
|
set: function (v) {
|
|
588
|
-
this.i.
|
|
589
|
-
this._a("actualBackground", brushToString(this.i.
|
|
588
|
+
this.i.f9 = stringToBrush(v);
|
|
589
|
+
this._a("actualBackground", brushToString(this.i.f9));
|
|
590
590
|
},
|
|
591
591
|
enumerable: false,
|
|
592
592
|
configurable: true
|
|
@@ -596,11 +596,11 @@ export var IgcDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
596
596
|
* Gets the actual background color that will be used.
|
|
597
597
|
*/
|
|
598
598
|
get: function () {
|
|
599
|
-
return brushToString(this.i.
|
|
599
|
+
return brushToString(this.i.f8);
|
|
600
600
|
},
|
|
601
601
|
set: function (v) {
|
|
602
|
-
this.i.
|
|
603
|
-
this._a("actualActivationBorder", brushToString(this.i.
|
|
602
|
+
this.i.f8 = stringToBrush(v);
|
|
603
|
+
this._a("actualActivationBorder", brushToString(this.i.f8));
|
|
604
604
|
},
|
|
605
605
|
enumerable: false,
|
|
606
606
|
configurable: true
|
|
@@ -610,11 +610,11 @@ export var IgcDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
610
610
|
* Gets the actual error border color that will be used.
|
|
611
611
|
*/
|
|
612
612
|
get: function () {
|
|
613
|
-
return brushToString(this.i.
|
|
613
|
+
return brushToString(this.i.gd);
|
|
614
614
|
},
|
|
615
615
|
set: function (v) {
|
|
616
|
-
this.i.
|
|
617
|
-
this._a("actualErrorBorder", brushToString(this.i.
|
|
616
|
+
this.i.gd = stringToBrush(v);
|
|
617
|
+
this._a("actualErrorBorder", brushToString(this.i.gd));
|
|
618
618
|
},
|
|
619
619
|
enumerable: false,
|
|
620
620
|
configurable: true
|
|
@@ -624,11 +624,11 @@ export var IgcDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
624
624
|
* Gets or sets the background color for content that sticks to the top of the grid.
|
|
625
625
|
*/
|
|
626
626
|
get: function () {
|
|
627
|
-
return brushToString(this.i.
|
|
627
|
+
return brushToString(this.i.g1);
|
|
628
628
|
},
|
|
629
629
|
set: function (v) {
|
|
630
|
-
this.i.
|
|
631
|
-
this._a("stickyRowBackground", brushToString(this.i.
|
|
630
|
+
this.i.g1 = stringToBrush(v);
|
|
631
|
+
this._a("stickyRowBackground", brushToString(this.i.g1));
|
|
632
632
|
},
|
|
633
633
|
enumerable: false,
|
|
634
634
|
configurable: true
|
|
@@ -638,11 +638,11 @@ export var IgcDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
638
638
|
* Gets the actual background color for content that sticks to the top of the grid.
|
|
639
639
|
*/
|
|
640
640
|
get: function () {
|
|
641
|
-
return brushToString(this.i.
|
|
641
|
+
return brushToString(this.i.gg);
|
|
642
642
|
},
|
|
643
643
|
set: function (v) {
|
|
644
|
-
this.i.
|
|
645
|
-
this._a("actualStickyRowBackground", brushToString(this.i.
|
|
644
|
+
this.i.gg = stringToBrush(v);
|
|
645
|
+
this._a("actualStickyRowBackground", brushToString(this.i.gg));
|
|
646
646
|
},
|
|
647
647
|
enumerable: false,
|
|
648
648
|
configurable: true
|
|
@@ -652,11 +652,11 @@ export var IgcDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
652
652
|
* Gets or sets the background color for cells belonging to rows marked as pinned.
|
|
653
653
|
*/
|
|
654
654
|
get: function () {
|
|
655
|
-
return brushToString(this.i.
|
|
655
|
+
return brushToString(this.i.g0);
|
|
656
656
|
},
|
|
657
657
|
set: function (v) {
|
|
658
|
-
this.i.
|
|
659
|
-
this._a("pinnedRowBackground", brushToString(this.i.
|
|
658
|
+
this.i.g0 = stringToBrush(v);
|
|
659
|
+
this._a("pinnedRowBackground", brushToString(this.i.g0));
|
|
660
660
|
},
|
|
661
661
|
enumerable: false,
|
|
662
662
|
configurable: true
|
|
@@ -666,11 +666,11 @@ export var IgcDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
666
666
|
* Gets the actual background color for cells belonging to rows marked as pinned.
|
|
667
667
|
*/
|
|
668
668
|
get: function () {
|
|
669
|
-
return brushToString(this.i.
|
|
669
|
+
return brushToString(this.i.gf);
|
|
670
670
|
},
|
|
671
671
|
set: function (v) {
|
|
672
|
-
this.i.
|
|
673
|
-
this._a("actualPinnedRowBackground", brushToString(this.i.
|
|
672
|
+
this.i.gf = stringToBrush(v);
|
|
673
|
+
this._a("actualPinnedRowBackground", brushToString(this.i.gf));
|
|
674
674
|
},
|
|
675
675
|
enumerable: false,
|
|
676
676
|
configurable: true
|
|
@@ -680,11 +680,11 @@ export var IgcDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
680
680
|
* Gets or sets the color for the last row in the sticky row area.
|
|
681
681
|
*/
|
|
682
682
|
get: function () {
|
|
683
|
-
return brushToString(this.i.
|
|
683
|
+
return brushToString(this.i.gz);
|
|
684
684
|
},
|
|
685
685
|
set: function (v) {
|
|
686
|
-
this.i.
|
|
687
|
-
this._a("lastStickyRowBackground", brushToString(this.i.
|
|
686
|
+
this.i.gz = stringToBrush(v);
|
|
687
|
+
this._a("lastStickyRowBackground", brushToString(this.i.gz));
|
|
688
688
|
},
|
|
689
689
|
enumerable: false,
|
|
690
690
|
configurable: true
|
|
@@ -694,11 +694,11 @@ export var IgcDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
694
694
|
* Gets the actual color for the last row in the sticky row area.
|
|
695
695
|
*/
|
|
696
696
|
get: function () {
|
|
697
|
-
return brushToString(this.i.
|
|
697
|
+
return brushToString(this.i.ge);
|
|
698
698
|
},
|
|
699
699
|
set: function (v) {
|
|
700
|
-
this.i.
|
|
701
|
-
this._a("actualLastStickyRowBackground", brushToString(this.i.
|
|
700
|
+
this.i.ge = stringToBrush(v);
|
|
701
|
+
this._a("actualLastStickyRowBackground", brushToString(this.i.ge));
|
|
702
702
|
},
|
|
703
703
|
enumerable: false,
|
|
704
704
|
configurable: true
|
|
@@ -778,11 +778,11 @@ export var IgcDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
778
778
|
* Gets or sets the color to use for displaying text.
|
|
779
779
|
*/
|
|
780
780
|
get: function () {
|
|
781
|
-
return brushToString(this.i.
|
|
781
|
+
return brushToString(this.i.g2);
|
|
782
782
|
},
|
|
783
783
|
set: function (v) {
|
|
784
|
-
this.i.
|
|
785
|
-
this._a("textColor", brushToString(this.i.
|
|
784
|
+
this.i.g2 = stringToBrush(v);
|
|
785
|
+
this._a("textColor", brushToString(this.i.g2));
|
|
786
786
|
},
|
|
787
787
|
enumerable: false,
|
|
788
788
|
configurable: true
|
|
@@ -792,11 +792,11 @@ export var IgcDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
792
792
|
* Gets the actual color used for displaying text.
|
|
793
793
|
*/
|
|
794
794
|
get: function () {
|
|
795
|
-
return brushToString(this.i.
|
|
795
|
+
return brushToString(this.i.gh);
|
|
796
796
|
},
|
|
797
797
|
set: function (v) {
|
|
798
|
-
this.i.
|
|
799
|
-
this._a("actualTextColor", brushToString(this.i.
|
|
798
|
+
this.i.gh = stringToBrush(v);
|
|
799
|
+
this._a("actualTextColor", brushToString(this.i.gh));
|
|
800
800
|
},
|
|
801
801
|
enumerable: false,
|
|
802
802
|
configurable: true
|
|
@@ -820,11 +820,11 @@ export var IgcDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
820
820
|
* Gets or sets the color to use for value bars.
|
|
821
821
|
*/
|
|
822
822
|
get: function () {
|
|
823
|
-
return brushToString(this.i.
|
|
823
|
+
return brushToString(this.i.gj);
|
|
824
824
|
},
|
|
825
825
|
set: function (v) {
|
|
826
|
-
this.i.
|
|
827
|
-
this._a("barBackground", brushToString(this.i.
|
|
826
|
+
this.i.gj = stringToBrush(v);
|
|
827
|
+
this._a("barBackground", brushToString(this.i.gj));
|
|
828
828
|
},
|
|
829
829
|
enumerable: false,
|
|
830
830
|
configurable: true
|
|
@@ -834,11 +834,11 @@ export var IgcDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
834
834
|
* Gets the actual color used for value bars.
|
|
835
835
|
*/
|
|
836
836
|
get: function () {
|
|
837
|
-
return brushToString(this.i.
|
|
837
|
+
return brushToString(this.i.ga);
|
|
838
838
|
},
|
|
839
839
|
set: function (v) {
|
|
840
|
-
this.i.
|
|
841
|
-
this._a("actualBarBackground", brushToString(this.i.
|
|
840
|
+
this.i.ga = stringToBrush(v);
|
|
841
|
+
this._a("actualBarBackground", brushToString(this.i.ga));
|
|
842
842
|
},
|
|
843
843
|
enumerable: false,
|
|
844
844
|
configurable: true
|
|
@@ -848,11 +848,11 @@ export var IgcDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
848
848
|
* Gets or sets the Outline color to use for value bars.
|
|
849
849
|
*/
|
|
850
850
|
get: function () {
|
|
851
|
-
return brushToString(this.i.
|
|
851
|
+
return brushToString(this.i.gk);
|
|
852
852
|
},
|
|
853
853
|
set: function (v) {
|
|
854
|
-
this.i.
|
|
855
|
-
this._a("barOutline", brushToString(this.i.
|
|
854
|
+
this.i.gk = stringToBrush(v);
|
|
855
|
+
this._a("barOutline", brushToString(this.i.gk));
|
|
856
856
|
},
|
|
857
857
|
enumerable: false,
|
|
858
858
|
configurable: true
|
|
@@ -862,11 +862,11 @@ export var IgcDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
862
862
|
* Gets the actual Outline color used for value bars.
|
|
863
863
|
*/
|
|
864
864
|
get: function () {
|
|
865
|
-
return brushToString(this.i.
|
|
865
|
+
return brushToString(this.i.gb);
|
|
866
866
|
},
|
|
867
867
|
set: function (v) {
|
|
868
|
-
this.i.
|
|
869
|
-
this._a("actualBarOutline", brushToString(this.i.
|
|
868
|
+
this.i.gb = stringToBrush(v);
|
|
869
|
+
this._a("actualBarOutline", brushToString(this.i.gb));
|
|
870
870
|
},
|
|
871
871
|
enumerable: false,
|
|
872
872
|
configurable: true
|
|
@@ -990,17 +990,17 @@ export var IgcDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
990
990
|
return null;
|
|
991
991
|
};
|
|
992
992
|
IgcDefinitionBaseComponent.prototype.transitionStyleOut = function (style) {
|
|
993
|
-
this.i.
|
|
993
|
+
this.i.e7((style == null ? null : style.i));
|
|
994
994
|
};
|
|
995
995
|
IgcDefinitionBaseComponent.prototype.transitionStyleIn = function (style) {
|
|
996
|
-
this.i.
|
|
996
|
+
this.i.e6((style == null ? null : style.i));
|
|
997
997
|
};
|
|
998
998
|
IgcDefinitionBaseComponent.prototype.isStyleTransitioningOut = function (style) {
|
|
999
999
|
var iv = this.i.at((style == null ? null : style.i));
|
|
1000
1000
|
return (iv);
|
|
1001
1001
|
};
|
|
1002
1002
|
IgcDefinitionBaseComponent.prototype.setNamedValue = function (valueName, animationType, value) {
|
|
1003
|
-
this.i.
|
|
1003
|
+
this.i.e4(valueName, ensureEnum(CellPropertyAnimationType_$type, animationType), value);
|
|
1004
1004
|
};
|
|
1005
1005
|
/**
|
|
1006
1006
|
* Returns if this definition has named value.
|
|
@@ -1025,7 +1025,7 @@ export var IgcDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
1025
1025
|
* @param valueName * The named value name to remove.
|
|
1026
1026
|
*/
|
|
1027
1027
|
IgcDefinitionBaseComponent.prototype.removeNamedValue = function (valueName) {
|
|
1028
|
-
this.i.
|
|
1028
|
+
this.i.ez(valueName);
|
|
1029
1029
|
};
|
|
1030
1030
|
/**
|
|
1031
1031
|
* Gets the value for a named value from this definition.
|