igniteui-webcomponents-data-grids 7.1.0-beta.2 → 7.1.0-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bundles/igniteui-webcomponents-data-grids.umd.js +11002 -9831
- package/bundles/igniteui-webcomponents-data-grids.umd.min.js +1 -1
- package/esm2015/lib/AccessibilityRow.js +10 -10
- package/esm2015/lib/CanvasCellPresenterBase.js +12 -12
- package/esm2015/lib/CanvasContentCellModelHelper.js +12 -12
- package/esm2015/lib/CanvasDateTimeCellPresenter.js +8 -8
- package/esm2015/lib/CanvasGridCellBase.js +2 -2
- package/esm2015/lib/CanvasImageCellPresenter.js +9 -9
- package/esm2015/lib/CanvasNumericCellPresenter.js +8 -8
- package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +9 -9
- package/esm2015/lib/CanvasSummaryCellPresenter.js +4 -4
- package/esm2015/lib/CanvasTemplateCellPresenter.js +5 -5
- package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +5 -5
- package/esm2015/lib/CanvasTextCellPresenter.js +9 -9
- package/esm2015/lib/CanvasTextHeaderCellPresenter.js +11 -11
- package/esm2015/lib/CellPath.js +79 -69
- package/esm2015/lib/CellPresenterBase.js +46 -46
- package/esm2015/lib/CheckboxListBridge.js +12 -0
- package/esm2015/lib/CheckboxListView_combined.js +329 -283
- package/esm2015/lib/ColumnChooserView_combined.js +11 -11
- package/esm2015/lib/ColumnFilterCondition_combined.js +7043 -6712
- package/esm2015/lib/ColumnGroupingView_combined.js +5 -5
- package/esm2015/lib/ColumnPinningView_combined.js +11 -11
- package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +7 -7
- package/esm2015/lib/ContentCellModelHelper.js +16 -16
- package/esm2015/lib/DataGridAccessibilityLayoutPanel.js +1 -1
- package/esm2015/lib/DataGridCellLayoutPanel.js +17 -17
- package/esm2015/lib/DataGridScrollerKeyboardListener.js +2 -2
- package/esm2015/lib/DataGridToolbarView_combined.js +2 -2
- package/esm2015/lib/DateTimeCellPresenter.js +9 -9
- package/esm2015/lib/DraggerView.js +1 -7
- package/esm2015/lib/EditorCell.js +290 -290
- package/esm2015/lib/EditorCellPresenter.js +27 -27
- package/esm2015/lib/FilterCell.js +267 -267
- package/esm2015/lib/FilterCellPresenter.js +17 -17
- package/esm2015/lib/GridCellBase.js +210 -202
- package/esm2015/lib/GridColumnFilterOptionsView_combined.js +13 -13
- package/esm2015/lib/GridColumnGroupOptionsView_combined.js +7 -7
- package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
- package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
- package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
- package/esm2015/lib/GridColumnPinOptionsView_combined.js +4 -4
- package/esm2015/lib/GridColumnSortOptionsView_combined.js +2 -2
- package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +7 -7
- package/esm2015/lib/GridExternalWrapper.js +12 -6
- package/esm2015/lib/GridFilterDialogView_combined.js +238 -187
- package/esm2015/lib/ISummaryChooserView_combined.js +4 -4
- package/esm2015/lib/ImageCell.js +58 -58
- package/esm2015/lib/ImageCellPresenter.js +17 -17
- package/esm2015/lib/MultiColumnComboBoxView_combined.js +9 -9
- package/esm2015/lib/NumericCell.js +8 -8
- package/esm2015/lib/NumericCellPresenter.js +9 -9
- package/esm2015/lib/PropertyEditorView_combined.js +19 -19
- package/esm2015/lib/SectionHeaderCell.js +30 -20
- package/esm2015/lib/SectionHeaderCellPresenter.js +10 -10
- package/esm2015/lib/SummaryCell.js +44 -44
- package/esm2015/lib/SummaryCellPresenter.js +9 -9
- package/esm2015/lib/TemplateCell.js +15 -15
- package/esm2015/lib/TemplateCellPresenter.js +6 -6
- package/esm2015/lib/TemplateHeader.js +8 -8
- package/esm2015/lib/TemplateHeaderCell.js +5 -5
- package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
- package/esm2015/lib/TemplateHeaderCellPresenter.js +6 -6
- package/esm2015/lib/TemplateSectionHeader.js +2 -2
- package/esm2015/lib/TextCell.js +31 -30
- package/esm2015/lib/TextCellPresenter.js +10 -10
- package/esm2015/lib/TextHeaderCell.js +181 -175
- package/esm2015/lib/TextHeaderCellPresenter.js +66 -57
- package/esm2015/lib/VerticalSeparatorCell.js +37 -37
- package/esm2015/lib/igc-cell-info.js +195 -186
- package/esm2015/lib/igc-checkbox-list-component.js +42 -22
- package/esm2015/lib/igc-column-moving-separator-component.js +9 -9
- package/esm2015/lib/igc-column-resizing-separator-component.js +6 -6
- package/esm2015/lib/igc-combo-box-column-component.js +10 -10
- package/esm2015/lib/igc-data-binding-event-args.js +3 -0
- package/esm2015/lib/igc-data-grid-column-component.js +336 -276
- package/esm2015/lib/igc-data-grid-component.js +220 -32
- package/esm2015/lib/igc-data-grid-filter-dialog-component.js +67 -37
- package/esm2015/lib/igc-data-grid-toolbar-component.js +40 -8
- package/esm2015/lib/igc-date-time-cell-info.js +12 -12
- package/esm2015/lib/igc-date-time-column-component.js +23 -23
- package/esm2015/lib/igc-definition-base-component.js +64 -64
- package/esm2015/lib/igc-editor-cell-info.js +23 -23
- package/esm2015/lib/igc-filter-cell-info.js +26 -26
- package/esm2015/lib/igc-filter-row-definition-component.js +12 -12
- package/esm2015/lib/igc-header-component.js +24 -24
- package/esm2015/lib/igc-image-cell-info.js +6 -6
- package/esm2015/lib/igc-image-column-component.js +12 -12
- package/esm2015/lib/igc-multi-column-combo-box-component.js +160 -32
- package/esm2015/lib/igc-numeric-cell-info.js +28 -28
- package/esm2015/lib/igc-numeric-column-component.js +38 -38
- package/esm2015/lib/igc-section-header-cell-info.js +6 -6
- package/esm2015/lib/igc-section-header-component.js +36 -36
- package/esm2015/lib/igc-summary-cell-info.js +9 -9
- package/esm2015/lib/igc-summary-row-component.js +30 -30
- package/esm2015/lib/igc-summary-row-root-module.js +2 -0
- package/esm2015/lib/igc-summary-row-section-module.js +2 -0
- package/esm2015/lib/igc-template-cell-info.js +2 -2
- package/esm2015/lib/igc-template-header-cell-info.js +2 -2
- package/esm2015/lib/igc-text-cell-info.js +2 -2
- package/esm2015/lib/igc-text-column-component.js +9 -9
- package/esm2015/lib/igc-text-header-cell-info.js +67 -40
- package/esm5/lib/AccessibilityRow.js +10 -10
- package/esm5/lib/CanvasCellPresenterBase.js +12 -12
- package/esm5/lib/CanvasContentCellModelHelper.js +12 -12
- package/esm5/lib/CanvasDateTimeCellPresenter.js +8 -8
- package/esm5/lib/CanvasGridCellBase.js +2 -2
- package/esm5/lib/CanvasImageCellPresenter.js +9 -9
- package/esm5/lib/CanvasNumericCellPresenter.js +8 -8
- package/esm5/lib/CanvasSectionHeaderCellPresenter.js +9 -9
- package/esm5/lib/CanvasSummaryCellPresenter.js +4 -4
- package/esm5/lib/CanvasTemplateCellPresenter.js +5 -5
- package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +5 -5
- package/esm5/lib/CanvasTextCellPresenter.js +9 -9
- package/esm5/lib/CanvasTextHeaderCellPresenter.js +11 -11
- package/esm5/lib/CellPath.js +79 -65
- package/esm5/lib/CellPresenterBase.js +46 -46
- package/esm5/lib/CheckboxListBridge.js +12 -0
- package/esm5/lib/CheckboxListView_combined.js +332 -278
- package/esm5/lib/ColumnChooserView_combined.js +11 -11
- package/esm5/lib/ColumnFilterCondition_combined.js +6860 -6456
- package/esm5/lib/ColumnGroupingView_combined.js +5 -5
- package/esm5/lib/ColumnPinningView_combined.js +11 -11
- package/esm5/lib/ComparisonOperatorSelectorView_combined.js +7 -7
- package/esm5/lib/ContentCellModelHelper.js +16 -16
- package/esm5/lib/DataGridAccessibilityLayoutPanel.js +1 -1
- package/esm5/lib/DataGridCellLayoutPanel.js +17 -17
- package/esm5/lib/DataGridScrollerKeyboardListener.js +2 -2
- package/esm5/lib/DataGridToolbarView_combined.js +2 -2
- package/esm5/lib/DateTimeCellPresenter.js +9 -9
- package/esm5/lib/DraggerView.js +1 -7
- package/esm5/lib/EditorCell.js +276 -276
- package/esm5/lib/EditorCellPresenter.js +27 -27
- package/esm5/lib/FilterCell.js +257 -257
- package/esm5/lib/FilterCellPresenter.js +17 -17
- package/esm5/lib/GridCellBase.js +205 -193
- package/esm5/lib/GridColumnFilterOptionsView_combined.js +13 -13
- package/esm5/lib/GridColumnGroupOptionsView_combined.js +7 -7
- package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
- package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
- package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
- package/esm5/lib/GridColumnPinOptionsView_combined.js +4 -4
- package/esm5/lib/GridColumnSortOptionsView_combined.js +2 -2
- package/esm5/lib/GridColumnSummaryOptionsView_combined.js +7 -7
- package/esm5/lib/GridExternalWrapper.js +12 -6
- package/esm5/lib/GridFilterDialogView_combined.js +240 -177
- package/esm5/lib/ISummaryChooserView_combined.js +4 -4
- package/esm5/lib/ImageCell.js +57 -57
- package/esm5/lib/ImageCellPresenter.js +17 -17
- package/esm5/lib/MultiColumnComboBoxView_combined.js +9 -9
- package/esm5/lib/NumericCell.js +8 -8
- package/esm5/lib/NumericCellPresenter.js +9 -9
- package/esm5/lib/PropertyEditorView_combined.js +19 -19
- package/esm5/lib/SectionHeaderCell.js +30 -20
- package/esm5/lib/SectionHeaderCellPresenter.js +10 -10
- package/esm5/lib/SummaryCell.js +44 -44
- package/esm5/lib/SummaryCellPresenter.js +9 -9
- package/esm5/lib/TemplateCell.js +15 -15
- package/esm5/lib/TemplateCellPresenter.js +6 -6
- package/esm5/lib/TemplateHeader.js +8 -8
- package/esm5/lib/TemplateHeaderCell.js +5 -5
- package/esm5/lib/TemplateHeaderCellModel.js +17 -17
- package/esm5/lib/TemplateHeaderCellPresenter.js +6 -6
- package/esm5/lib/TemplateSectionHeader.js +2 -2
- package/esm5/lib/TextCell.js +31 -30
- package/esm5/lib/TextCellPresenter.js +10 -10
- package/esm5/lib/TextHeaderCell.js +185 -179
- package/esm5/lib/TextHeaderCellPresenter.js +66 -57
- package/esm5/lib/VerticalSeparatorCell.js +37 -37
- package/esm5/lib/igc-cell-info.js +207 -186
- package/esm5/lib/igc-checkbox-list-component.js +50 -22
- package/esm5/lib/igc-column-moving-separator-component.js +9 -9
- package/esm5/lib/igc-column-resizing-separator-component.js +6 -6
- package/esm5/lib/igc-combo-box-column-component.js +10 -10
- package/esm5/lib/igc-data-binding-event-args.js +3 -0
- package/esm5/lib/igc-data-grid-column-component.js +360 -276
- package/esm5/lib/igc-data-grid-component.js +240 -32
- package/esm5/lib/igc-data-grid-filter-dialog-component.js +79 -37
- package/esm5/lib/igc-data-grid-toolbar-component.js +40 -8
- package/esm5/lib/igc-date-time-cell-info.js +12 -12
- package/esm5/lib/igc-date-time-column-component.js +23 -23
- package/esm5/lib/igc-definition-base-component.js +64 -64
- package/esm5/lib/igc-editor-cell-info.js +23 -23
- package/esm5/lib/igc-filter-cell-info.js +26 -26
- package/esm5/lib/igc-filter-row-definition-component.js +12 -12
- package/esm5/lib/igc-header-component.js +24 -24
- package/esm5/lib/igc-image-cell-info.js +6 -6
- package/esm5/lib/igc-image-column-component.js +12 -12
- package/esm5/lib/igc-multi-column-combo-box-component.js +160 -32
- package/esm5/lib/igc-numeric-cell-info.js +28 -28
- package/esm5/lib/igc-numeric-column-component.js +38 -38
- package/esm5/lib/igc-section-header-cell-info.js +6 -6
- package/esm5/lib/igc-section-header-component.js +36 -36
- package/esm5/lib/igc-summary-cell-info.js +9 -9
- package/esm5/lib/igc-summary-row-component.js +29 -29
- package/esm5/lib/igc-summary-row-root-module.js +2 -0
- package/esm5/lib/igc-summary-row-section-module.js +2 -0
- package/esm5/lib/igc-template-cell-info.js +2 -2
- package/esm5/lib/igc-template-header-cell-info.js +2 -2
- package/esm5/lib/igc-text-cell-info.js +2 -2
- package/esm5/lib/igc-text-column-component.js +9 -9
- package/esm5/lib/igc-text-header-cell-info.js +79 -40
- package/fesm2015/igniteui-webcomponents-data-grids.js +10931 -9949
- package/fesm5/igniteui-webcomponents-data-grids.js +11002 -9831
- package/lib/CellPath.d.ts +21 -20
- package/lib/CheckboxListExternal.d.ts +3 -0
- package/lib/CheckboxListView_combined.d.ts +77 -71
- package/lib/ColumnFilterCondition_combined.d.ts +1759 -1699
- package/lib/EditorCell.d.ts +63 -63
- package/lib/FilterCell.d.ts +55 -55
- package/lib/GridCellBase.d.ts +82 -80
- package/lib/GridExternalWrapper.d.ts +2 -0
- package/lib/GridFilterDialogView_combined.d.ts +61 -52
- package/lib/ImageCell.d.ts +15 -15
- package/lib/NumericCell.d.ts +2 -2
- package/lib/SectionHeaderCell.d.ts +6 -4
- package/lib/SummaryCell.d.ts +10 -10
- package/lib/TemplateCell.d.ts +5 -5
- package/lib/TemplateHeader.d.ts +3 -3
- package/lib/TemplateHeaderCell.d.ts +2 -2
- package/lib/TemplateHeaderCellModel.d.ts +7 -7
- package/lib/TemplateSectionHeader.d.ts +2 -2
- package/lib/TextCell.d.ts +7 -7
- package/lib/TextHeaderCell.d.ts +30 -30
- package/lib/VerticalSeparatorCell.d.ts +8 -8
- package/lib/igc-cell-info.d.ts +3 -0
- package/lib/igc-checkbox-list-component.d.ts +10 -0
- package/lib/igc-data-grid-column-component.d.ts +30 -0
- package/lib/igc-data-grid-component.d.ts +27 -0
- package/lib/igc-data-grid-filter-dialog-component.d.ts +15 -0
- package/lib/igc-summary-row-component.d.ts +2 -2
- package/lib/igc-text-header-cell-info.d.ts +15 -0
- package/package.json +4 -4
|
@@ -22,56 +22,56 @@ export class IgcDateTimeCellInfo extends IgcCellInfo {
|
|
|
22
22
|
* Sets or gets the DateTime value for the cell.
|
|
23
23
|
*/
|
|
24
24
|
get dateTimeValue() {
|
|
25
|
-
return this.i.
|
|
25
|
+
return this.i.om;
|
|
26
26
|
}
|
|
27
27
|
set dateTimeValue(v) {
|
|
28
|
-
this.i.
|
|
28
|
+
this.i.om = v;
|
|
29
29
|
}
|
|
30
30
|
/**
|
|
31
31
|
* The format string to apply to the value
|
|
32
32
|
*/
|
|
33
33
|
get formatStringOverride() {
|
|
34
|
-
return this.i.
|
|
34
|
+
return this.i.o3;
|
|
35
35
|
}
|
|
36
36
|
set formatStringOverride(v) {
|
|
37
|
-
this.i.
|
|
37
|
+
this.i.o3 = v;
|
|
38
38
|
}
|
|
39
39
|
get formatSpecifiers() {
|
|
40
|
-
return this.i.
|
|
40
|
+
return this.i.od;
|
|
41
41
|
}
|
|
42
42
|
set formatSpecifiers(v) {
|
|
43
43
|
if (v && !Array.isArray(v) && typeof (v) == "string") {
|
|
44
44
|
const re = /\s*(?:,|\s|$)\s*/gm;
|
|
45
45
|
v = v.split(re);
|
|
46
46
|
}
|
|
47
|
-
this.i.
|
|
47
|
+
this.i.od = v;
|
|
48
48
|
}
|
|
49
49
|
/**
|
|
50
50
|
* The format options to apply to the value
|
|
51
51
|
*/
|
|
52
52
|
get formatOverride() {
|
|
53
|
-
return this.i.
|
|
53
|
+
return this.i.ow;
|
|
54
54
|
}
|
|
55
55
|
set formatOverride(v) {
|
|
56
|
-
this.i.
|
|
56
|
+
this.i.ow = v;
|
|
57
57
|
}
|
|
58
58
|
/**
|
|
59
59
|
* Sets or gets the simple DateTimeFormat to use for the cell.
|
|
60
60
|
*/
|
|
61
61
|
get dateTimeFormat() {
|
|
62
|
-
return this.i.
|
|
62
|
+
return this.i.oi;
|
|
63
63
|
}
|
|
64
64
|
set dateTimeFormat(v) {
|
|
65
|
-
this.i.
|
|
65
|
+
this.i.oi = ensureEnum(DateTimeFormats_$type, v);
|
|
66
66
|
}
|
|
67
67
|
/**
|
|
68
68
|
* Sets or gets whether the value to use is a DateTimeOffset value.
|
|
69
69
|
*/
|
|
70
70
|
get isOffsetValue() {
|
|
71
|
-
return this.i.
|
|
71
|
+
return this.i.ok;
|
|
72
72
|
}
|
|
73
73
|
set isOffsetValue(v) {
|
|
74
|
-
this.i.
|
|
74
|
+
this.i.ok = ensureBool(v);
|
|
75
75
|
}
|
|
76
76
|
findByName(name) {
|
|
77
77
|
var baseResult = super.findByName(name);
|
|
@@ -67,95 +67,95 @@ let IgcDateTimeColumnComponent = /*@__PURE__*/ (() => {
|
|
|
67
67
|
* Gets or sets the date time format to use for this column. If FormatString is specificied this value is ignored.
|
|
68
68
|
*/
|
|
69
69
|
get dateTimeFormat() {
|
|
70
|
-
return this.i.
|
|
70
|
+
return this.i.s5;
|
|
71
71
|
}
|
|
72
72
|
set dateTimeFormat(v) {
|
|
73
|
-
this.i.
|
|
74
|
-
this._a("dateTimeFormat", enumToString(DateTimeFormats_$type, this.i.
|
|
73
|
+
this.i.s5 = ensureEnum(DateTimeFormats_$type, v);
|
|
74
|
+
this._a("dateTimeFormat", enumToString(DateTimeFormats_$type, this.i.s5));
|
|
75
75
|
}
|
|
76
76
|
/**
|
|
77
77
|
* Gets or sets the format string to apply to the value. If set, the other value formatting properties on this column are ignored.
|
|
78
78
|
*/
|
|
79
79
|
get formatString() {
|
|
80
|
-
return this.i.
|
|
80
|
+
return this.i.tn;
|
|
81
81
|
}
|
|
82
82
|
set formatString(v) {
|
|
83
|
-
this.i.
|
|
83
|
+
this.i.tn = v;
|
|
84
84
|
}
|
|
85
85
|
/**
|
|
86
86
|
* Gets or sets the format string to use when editing dates.
|
|
87
87
|
*/
|
|
88
88
|
get editorFormatString() {
|
|
89
|
-
return this.i.
|
|
89
|
+
return this.i.tg;
|
|
90
90
|
}
|
|
91
91
|
set editorFormatString(v) {
|
|
92
|
-
this.i.
|
|
92
|
+
this.i.tg = v;
|
|
93
93
|
}
|
|
94
94
|
get formatSpecifiers() {
|
|
95
|
-
return this.i.
|
|
95
|
+
return this.i.s1;
|
|
96
96
|
}
|
|
97
97
|
set formatSpecifiers(v) {
|
|
98
98
|
if (v && !Array.isArray(v) && typeof (v) == "string") {
|
|
99
99
|
const re = /\s*(?:,|\s|$)\s*/gm;
|
|
100
100
|
v = v.split(re);
|
|
101
101
|
}
|
|
102
|
-
this.i.
|
|
102
|
+
this.i.s1 = v;
|
|
103
103
|
}
|
|
104
104
|
/**
|
|
105
105
|
* Gets or sets the INTL DateTimeFormat object to use for formatting the date values.
|
|
106
106
|
*/
|
|
107
107
|
get formatOverride() {
|
|
108
|
-
return this.i.
|
|
108
|
+
return this.i.tc;
|
|
109
109
|
}
|
|
110
110
|
set formatOverride(v) {
|
|
111
|
-
this.i.
|
|
111
|
+
this.i.tc = v;
|
|
112
112
|
}
|
|
113
113
|
/**
|
|
114
114
|
* Gets or sets the ShowTodayButton property to detirmine if the today button is shown
|
|
115
115
|
*/
|
|
116
116
|
get showTodayButton() {
|
|
117
|
-
return this.i.
|
|
117
|
+
return this.i.s8;
|
|
118
118
|
}
|
|
119
119
|
set showTodayButton(v) {
|
|
120
|
-
this.i.
|
|
121
|
-
this._a("showTodayButton", this.i.
|
|
120
|
+
this.i.s8 = ensureBool(v);
|
|
121
|
+
this._a("showTodayButton", this.i.s8);
|
|
122
122
|
}
|
|
123
123
|
/**
|
|
124
124
|
* Gets or sets the editor type used for editing cells in this column.
|
|
125
125
|
*/
|
|
126
126
|
get editorType() {
|
|
127
|
-
return this.i.
|
|
127
|
+
return this.i.s6;
|
|
128
128
|
}
|
|
129
129
|
set editorType(v) {
|
|
130
|
-
this.i.
|
|
131
|
-
this._a("editorType", enumToString(EditorType_$type, this.i.
|
|
130
|
+
this.i.s6 = ensureEnum(EditorType_$type, v);
|
|
131
|
+
this._a("editorType", enumToString(EditorType_$type, this.i.s6));
|
|
132
132
|
}
|
|
133
133
|
/**
|
|
134
134
|
* Gets or sets the ComboBox data source.
|
|
135
135
|
*/
|
|
136
136
|
get editorDataSource() {
|
|
137
|
-
return this.i.
|
|
137
|
+
return this.i.tb;
|
|
138
138
|
}
|
|
139
139
|
set editorDataSource(v) {
|
|
140
|
-
this.i.
|
|
140
|
+
this.i.tb = v;
|
|
141
141
|
}
|
|
142
142
|
/**
|
|
143
143
|
* Gets or sets the ComboBox text field.
|
|
144
144
|
*/
|
|
145
145
|
get editorTextField() {
|
|
146
|
-
return this.i.
|
|
146
|
+
return this.i.ti;
|
|
147
147
|
}
|
|
148
148
|
set editorTextField(v) {
|
|
149
|
-
this.i.
|
|
149
|
+
this.i.ti = v;
|
|
150
150
|
}
|
|
151
151
|
/**
|
|
152
152
|
* Gets or sets the ComboBox value field.
|
|
153
153
|
*/
|
|
154
154
|
get editorValueField() {
|
|
155
|
-
return this.i.
|
|
155
|
+
return this.i.tj;
|
|
156
156
|
}
|
|
157
157
|
set editorValueField(v) {
|
|
158
|
-
this.i.
|
|
158
|
+
this.i.tj = v;
|
|
159
159
|
}
|
|
160
160
|
findByName(name) {
|
|
161
161
|
var baseResult = super.findByName(name);
|
|
@@ -266,11 +266,11 @@ let IgcDefinitionBaseComponent = /*@__PURE__*/ (() => {
|
|
|
266
266
|
* Gets or sets the background color to use.
|
|
267
267
|
*/
|
|
268
268
|
get background() {
|
|
269
|
-
return brushToString(this.i.
|
|
269
|
+
return brushToString(this.i.gi);
|
|
270
270
|
}
|
|
271
271
|
set background(v) {
|
|
272
|
-
this.i.
|
|
273
|
-
this._a("background", brushToString(this.i.
|
|
272
|
+
this.i.gi = stringToBrush(v);
|
|
273
|
+
this._a("background", brushToString(this.i.gi));
|
|
274
274
|
}
|
|
275
275
|
get actualConditionalStyles() {
|
|
276
276
|
if (!this._actualConditionalStyles) {
|
|
@@ -317,41 +317,41 @@ let IgcDefinitionBaseComponent = /*@__PURE__*/ (() => {
|
|
|
317
317
|
* Gets or sets the background color to use.
|
|
318
318
|
*/
|
|
319
319
|
get border() {
|
|
320
|
-
return brushToString(this.i.
|
|
320
|
+
return brushToString(this.i.gl);
|
|
321
321
|
}
|
|
322
322
|
set border(v) {
|
|
323
|
-
this.i.
|
|
324
|
-
this._a("border", brushToString(this.i.
|
|
323
|
+
this.i.gl = stringToBrush(v);
|
|
324
|
+
this._a("border", brushToString(this.i.gl));
|
|
325
325
|
}
|
|
326
326
|
/**
|
|
327
327
|
* Gets or sets the background color to use.
|
|
328
328
|
*/
|
|
329
329
|
get activationBorder() {
|
|
330
|
-
return brushToString(this.i.
|
|
330
|
+
return brushToString(this.i.f7);
|
|
331
331
|
}
|
|
332
332
|
set activationBorder(v) {
|
|
333
|
-
this.i.
|
|
334
|
-
this._a("activationBorder", brushToString(this.i.
|
|
333
|
+
this.i.f7 = stringToBrush(v);
|
|
334
|
+
this._a("activationBorder", brushToString(this.i.f7));
|
|
335
335
|
}
|
|
336
336
|
/**
|
|
337
337
|
* Gets or sets the error border color to use.
|
|
338
338
|
*/
|
|
339
339
|
get errorBorder() {
|
|
340
|
-
return brushToString(this.i.
|
|
340
|
+
return brushToString(this.i.gm);
|
|
341
341
|
}
|
|
342
342
|
set errorBorder(v) {
|
|
343
|
-
this.i.
|
|
344
|
-
this._a("errorBorder", brushToString(this.i.
|
|
343
|
+
this.i.gm = stringToBrush(v);
|
|
344
|
+
this._a("errorBorder", brushToString(this.i.gm));
|
|
345
345
|
}
|
|
346
346
|
/**
|
|
347
347
|
* Gets the actual border color that will be used.
|
|
348
348
|
*/
|
|
349
349
|
get actualBorder() {
|
|
350
|
-
return brushToString(this.i.
|
|
350
|
+
return brushToString(this.i.gc);
|
|
351
351
|
}
|
|
352
352
|
set actualBorder(v) {
|
|
353
|
-
this.i.
|
|
354
|
-
this._a("actualBorder", brushToString(this.i.
|
|
353
|
+
this.i.gc = stringToBrush(v);
|
|
354
|
+
this._a("actualBorder", brushToString(this.i.gc));
|
|
355
355
|
}
|
|
356
356
|
/**
|
|
357
357
|
* Gets or sets the amount of left border to use for the cell content for this column.
|
|
@@ -465,91 +465,91 @@ let IgcDefinitionBaseComponent = /*@__PURE__*/ (() => {
|
|
|
465
465
|
* Gets the actual background color that will be used.
|
|
466
466
|
*/
|
|
467
467
|
get actualBackground() {
|
|
468
|
-
return brushToString(this.i.
|
|
468
|
+
return brushToString(this.i.f9);
|
|
469
469
|
}
|
|
470
470
|
set actualBackground(v) {
|
|
471
|
-
this.i.
|
|
472
|
-
this._a("actualBackground", brushToString(this.i.
|
|
471
|
+
this.i.f9 = stringToBrush(v);
|
|
472
|
+
this._a("actualBackground", brushToString(this.i.f9));
|
|
473
473
|
}
|
|
474
474
|
/**
|
|
475
475
|
* Gets the actual background color that will be used.
|
|
476
476
|
*/
|
|
477
477
|
get actualActivationBorder() {
|
|
478
|
-
return brushToString(this.i.
|
|
478
|
+
return brushToString(this.i.f8);
|
|
479
479
|
}
|
|
480
480
|
set actualActivationBorder(v) {
|
|
481
|
-
this.i.
|
|
482
|
-
this._a("actualActivationBorder", brushToString(this.i.
|
|
481
|
+
this.i.f8 = stringToBrush(v);
|
|
482
|
+
this._a("actualActivationBorder", brushToString(this.i.f8));
|
|
483
483
|
}
|
|
484
484
|
/**
|
|
485
485
|
* Gets the actual error border color that will be used.
|
|
486
486
|
*/
|
|
487
487
|
get actualErrorBorder() {
|
|
488
|
-
return brushToString(this.i.
|
|
488
|
+
return brushToString(this.i.gd);
|
|
489
489
|
}
|
|
490
490
|
set actualErrorBorder(v) {
|
|
491
|
-
this.i.
|
|
492
|
-
this._a("actualErrorBorder", brushToString(this.i.
|
|
491
|
+
this.i.gd = stringToBrush(v);
|
|
492
|
+
this._a("actualErrorBorder", brushToString(this.i.gd));
|
|
493
493
|
}
|
|
494
494
|
/**
|
|
495
495
|
* Gets or sets the background color for content that sticks to the top of the grid.
|
|
496
496
|
*/
|
|
497
497
|
get stickyRowBackground() {
|
|
498
|
-
return brushToString(this.i.
|
|
498
|
+
return brushToString(this.i.g1);
|
|
499
499
|
}
|
|
500
500
|
set stickyRowBackground(v) {
|
|
501
|
-
this.i.
|
|
502
|
-
this._a("stickyRowBackground", brushToString(this.i.
|
|
501
|
+
this.i.g1 = stringToBrush(v);
|
|
502
|
+
this._a("stickyRowBackground", brushToString(this.i.g1));
|
|
503
503
|
}
|
|
504
504
|
/**
|
|
505
505
|
* Gets the actual background color for content that sticks to the top of the grid.
|
|
506
506
|
*/
|
|
507
507
|
get actualStickyRowBackground() {
|
|
508
|
-
return brushToString(this.i.
|
|
508
|
+
return brushToString(this.i.gg);
|
|
509
509
|
}
|
|
510
510
|
set actualStickyRowBackground(v) {
|
|
511
|
-
this.i.
|
|
512
|
-
this._a("actualStickyRowBackground", brushToString(this.i.
|
|
511
|
+
this.i.gg = stringToBrush(v);
|
|
512
|
+
this._a("actualStickyRowBackground", brushToString(this.i.gg));
|
|
513
513
|
}
|
|
514
514
|
/**
|
|
515
515
|
* Gets or sets the background color for cells belonging to rows marked as pinned.
|
|
516
516
|
*/
|
|
517
517
|
get pinnedRowBackground() {
|
|
518
|
-
return brushToString(this.i.
|
|
518
|
+
return brushToString(this.i.g0);
|
|
519
519
|
}
|
|
520
520
|
set pinnedRowBackground(v) {
|
|
521
|
-
this.i.
|
|
522
|
-
this._a("pinnedRowBackground", brushToString(this.i.
|
|
521
|
+
this.i.g0 = stringToBrush(v);
|
|
522
|
+
this._a("pinnedRowBackground", brushToString(this.i.g0));
|
|
523
523
|
}
|
|
524
524
|
/**
|
|
525
525
|
* Gets the actual background color for cells belonging to rows marked as pinned.
|
|
526
526
|
*/
|
|
527
527
|
get actualPinnedRowBackground() {
|
|
528
|
-
return brushToString(this.i.
|
|
528
|
+
return brushToString(this.i.gf);
|
|
529
529
|
}
|
|
530
530
|
set actualPinnedRowBackground(v) {
|
|
531
|
-
this.i.
|
|
532
|
-
this._a("actualPinnedRowBackground", brushToString(this.i.
|
|
531
|
+
this.i.gf = stringToBrush(v);
|
|
532
|
+
this._a("actualPinnedRowBackground", brushToString(this.i.gf));
|
|
533
533
|
}
|
|
534
534
|
/**
|
|
535
535
|
* Gets or sets the color for the last row in the sticky row area.
|
|
536
536
|
*/
|
|
537
537
|
get lastStickyRowBackground() {
|
|
538
|
-
return brushToString(this.i.
|
|
538
|
+
return brushToString(this.i.gz);
|
|
539
539
|
}
|
|
540
540
|
set lastStickyRowBackground(v) {
|
|
541
|
-
this.i.
|
|
542
|
-
this._a("lastStickyRowBackground", brushToString(this.i.
|
|
541
|
+
this.i.gz = stringToBrush(v);
|
|
542
|
+
this._a("lastStickyRowBackground", brushToString(this.i.gz));
|
|
543
543
|
}
|
|
544
544
|
/**
|
|
545
545
|
* Gets the actual color for the last row in the sticky row area.
|
|
546
546
|
*/
|
|
547
547
|
get actualLastStickyRowBackground() {
|
|
548
|
-
return brushToString(this.i.
|
|
548
|
+
return brushToString(this.i.ge);
|
|
549
549
|
}
|
|
550
550
|
set actualLastStickyRowBackground(v) {
|
|
551
|
-
this.i.
|
|
552
|
-
this._a("actualLastStickyRowBackground", brushToString(this.i.
|
|
551
|
+
this.i.ge = stringToBrush(v);
|
|
552
|
+
this._a("actualLastStickyRowBackground", brushToString(this.i.ge));
|
|
553
553
|
}
|
|
554
554
|
/**
|
|
555
555
|
* Gets or sets the opacity of the content.
|
|
@@ -605,21 +605,21 @@ let IgcDefinitionBaseComponent = /*@__PURE__*/ (() => {
|
|
|
605
605
|
* Gets or sets the color to use for displaying text.
|
|
606
606
|
*/
|
|
607
607
|
get textColor() {
|
|
608
|
-
return brushToString(this.i.
|
|
608
|
+
return brushToString(this.i.g2);
|
|
609
609
|
}
|
|
610
610
|
set textColor(v) {
|
|
611
|
-
this.i.
|
|
612
|
-
this._a("textColor", brushToString(this.i.
|
|
611
|
+
this.i.g2 = stringToBrush(v);
|
|
612
|
+
this._a("textColor", brushToString(this.i.g2));
|
|
613
613
|
}
|
|
614
614
|
/**
|
|
615
615
|
* Gets the actual color used for displaying text.
|
|
616
616
|
*/
|
|
617
617
|
get actualTextColor() {
|
|
618
|
-
return brushToString(this.i.
|
|
618
|
+
return brushToString(this.i.gh);
|
|
619
619
|
}
|
|
620
620
|
set actualTextColor(v) {
|
|
621
|
-
this.i.
|
|
622
|
-
this._a("actualTextColor", brushToString(this.i.
|
|
621
|
+
this.i.gh = stringToBrush(v);
|
|
622
|
+
this._a("actualTextColor", brushToString(this.i.gh));
|
|
623
623
|
}
|
|
624
624
|
/**
|
|
625
625
|
* Gets or sets whether the bar is supported.
|
|
@@ -635,41 +635,41 @@ let IgcDefinitionBaseComponent = /*@__PURE__*/ (() => {
|
|
|
635
635
|
* Gets or sets the color to use for value bars.
|
|
636
636
|
*/
|
|
637
637
|
get barBackground() {
|
|
638
|
-
return brushToString(this.i.
|
|
638
|
+
return brushToString(this.i.gj);
|
|
639
639
|
}
|
|
640
640
|
set barBackground(v) {
|
|
641
|
-
this.i.
|
|
642
|
-
this._a("barBackground", brushToString(this.i.
|
|
641
|
+
this.i.gj = stringToBrush(v);
|
|
642
|
+
this._a("barBackground", brushToString(this.i.gj));
|
|
643
643
|
}
|
|
644
644
|
/**
|
|
645
645
|
* Gets the actual color used for value bars.
|
|
646
646
|
*/
|
|
647
647
|
get actualBarBackground() {
|
|
648
|
-
return brushToString(this.i.
|
|
648
|
+
return brushToString(this.i.ga);
|
|
649
649
|
}
|
|
650
650
|
set actualBarBackground(v) {
|
|
651
|
-
this.i.
|
|
652
|
-
this._a("actualBarBackground", brushToString(this.i.
|
|
651
|
+
this.i.ga = stringToBrush(v);
|
|
652
|
+
this._a("actualBarBackground", brushToString(this.i.ga));
|
|
653
653
|
}
|
|
654
654
|
/**
|
|
655
655
|
* Gets or sets the Outline color to use for value bars.
|
|
656
656
|
*/
|
|
657
657
|
get barOutline() {
|
|
658
|
-
return brushToString(this.i.
|
|
658
|
+
return brushToString(this.i.gk);
|
|
659
659
|
}
|
|
660
660
|
set barOutline(v) {
|
|
661
|
-
this.i.
|
|
662
|
-
this._a("barOutline", brushToString(this.i.
|
|
661
|
+
this.i.gk = stringToBrush(v);
|
|
662
|
+
this._a("barOutline", brushToString(this.i.gk));
|
|
663
663
|
}
|
|
664
664
|
/**
|
|
665
665
|
* Gets the actual Outline color used for value bars.
|
|
666
666
|
*/
|
|
667
667
|
get actualBarOutline() {
|
|
668
|
-
return brushToString(this.i.
|
|
668
|
+
return brushToString(this.i.gb);
|
|
669
669
|
}
|
|
670
670
|
set actualBarOutline(v) {
|
|
671
|
-
this.i.
|
|
672
|
-
this._a("actualBarOutline", brushToString(this.i.
|
|
671
|
+
this.i.gb = stringToBrush(v);
|
|
672
|
+
this._a("actualBarOutline", brushToString(this.i.gb));
|
|
673
673
|
}
|
|
674
674
|
/**
|
|
675
675
|
* Gets or sets the stroke thickness to use for value bars.
|
|
@@ -758,17 +758,17 @@ let IgcDefinitionBaseComponent = /*@__PURE__*/ (() => {
|
|
|
758
758
|
return null;
|
|
759
759
|
}
|
|
760
760
|
transitionStyleOut(style) {
|
|
761
|
-
this.i.
|
|
761
|
+
this.i.e7((style == null ? null : style.i));
|
|
762
762
|
}
|
|
763
763
|
transitionStyleIn(style) {
|
|
764
|
-
this.i.
|
|
764
|
+
this.i.e6((style == null ? null : style.i));
|
|
765
765
|
}
|
|
766
766
|
isStyleTransitioningOut(style) {
|
|
767
767
|
let iv = this.i.at((style == null ? null : style.i));
|
|
768
768
|
return (iv);
|
|
769
769
|
}
|
|
770
770
|
setNamedValue(valueName, animationType, value) {
|
|
771
|
-
this.i.
|
|
771
|
+
this.i.e4(valueName, ensureEnum(CellPropertyAnimationType_$type, animationType), value);
|
|
772
772
|
}
|
|
773
773
|
/**
|
|
774
774
|
* Returns if this definition has named value.
|
|
@@ -793,7 +793,7 @@ let IgcDefinitionBaseComponent = /*@__PURE__*/ (() => {
|
|
|
793
793
|
* @param valueName * The named value name to remove.
|
|
794
794
|
*/
|
|
795
795
|
removeNamedValue(valueName) {
|
|
796
|
-
this.i.
|
|
796
|
+
this.i.ez(valueName);
|
|
797
797
|
}
|
|
798
798
|
/**
|
|
799
799
|
* Gets the value for a named value from this definition.
|
|
@@ -23,111 +23,111 @@ export class IgcEditorCellInfo extends IgcCellInfo {
|
|
|
23
23
|
* Gets whether the editor cell is hidden or not.
|
|
24
24
|
*/
|
|
25
25
|
get isHidden() {
|
|
26
|
-
return this.i.
|
|
26
|
+
return this.i.oo;
|
|
27
27
|
}
|
|
28
28
|
/**
|
|
29
29
|
* Gets or sets the edit target for this cell.
|
|
30
30
|
*/
|
|
31
31
|
get editTarget() {
|
|
32
|
-
const r = this.i.
|
|
32
|
+
const r = this.i.oh;
|
|
33
33
|
if (r == null) {
|
|
34
34
|
return null;
|
|
35
35
|
}
|
|
36
36
|
return r.externalObject;
|
|
37
37
|
}
|
|
38
38
|
set editTarget(v) {
|
|
39
|
-
v == null ? this.i.
|
|
39
|
+
v == null ? this.i.oh = null : this.i.oh = v.i;
|
|
40
40
|
}
|
|
41
41
|
/**
|
|
42
42
|
* Gets or sets the data type associated with the cell being edited.
|
|
43
43
|
*/
|
|
44
44
|
get dataType() {
|
|
45
|
-
return this.i.
|
|
45
|
+
return this.i.of;
|
|
46
46
|
}
|
|
47
47
|
set dataType(v) {
|
|
48
|
-
this.i.
|
|
48
|
+
this.i.of = ensureEnum(DataSourceSchemaPropertyType_$type, v);
|
|
49
49
|
}
|
|
50
50
|
/**
|
|
51
51
|
* Gets or sets the error message to display in the editor cell.
|
|
52
52
|
*/
|
|
53
53
|
get errorMessage() {
|
|
54
|
-
return this.i.
|
|
54
|
+
return this.i.pk;
|
|
55
55
|
}
|
|
56
56
|
set errorMessage(v) {
|
|
57
|
-
this.i.
|
|
57
|
+
this.i.pk = v;
|
|
58
58
|
}
|
|
59
59
|
/**
|
|
60
60
|
* Gets or sets the user selected value.
|
|
61
61
|
*/
|
|
62
62
|
get editValue() {
|
|
63
|
-
return this.i.
|
|
63
|
+
return this.i.o7;
|
|
64
64
|
}
|
|
65
65
|
set editValue(v) {
|
|
66
|
-
this.i.
|
|
66
|
+
this.i.o7 = v;
|
|
67
67
|
}
|
|
68
68
|
/**
|
|
69
69
|
* Gets or sets the type of editor to use while cell editing.
|
|
70
70
|
*/
|
|
71
71
|
get editorType() {
|
|
72
|
-
return this.i.
|
|
72
|
+
return this.i.oj;
|
|
73
73
|
}
|
|
74
74
|
set editorType(v) {
|
|
75
|
-
this.i.
|
|
75
|
+
this.i.oj = ensureEnum(EditorType_$type, v);
|
|
76
76
|
}
|
|
77
77
|
/**
|
|
78
78
|
* Gets or sets the data source to use for the editor where it makes sense.
|
|
79
79
|
*/
|
|
80
80
|
get editorDataSource() {
|
|
81
|
-
return this.i.
|
|
81
|
+
return this.i.o6;
|
|
82
82
|
}
|
|
83
83
|
set editorDataSource(v) {
|
|
84
|
-
this.i.
|
|
84
|
+
this.i.o6 = v;
|
|
85
85
|
}
|
|
86
86
|
/**
|
|
87
87
|
* Gets or sets the editors display member.
|
|
88
88
|
*/
|
|
89
89
|
get editorTextField() {
|
|
90
|
-
return this.i.
|
|
90
|
+
return this.i.pf;
|
|
91
91
|
}
|
|
92
92
|
set editorTextField(v) {
|
|
93
|
-
this.i.
|
|
93
|
+
this.i.pf = v;
|
|
94
94
|
}
|
|
95
95
|
/**
|
|
96
96
|
* Gets or sets the editors value member.
|
|
97
97
|
*/
|
|
98
98
|
get editorValueField() {
|
|
99
|
-
return this.i.
|
|
99
|
+
return this.i.od;
|
|
100
100
|
}
|
|
101
101
|
set editorValueField(v) {
|
|
102
102
|
if (v && !Array.isArray(v) && typeof (v) == "string") {
|
|
103
103
|
const re = /\s*(?:,|\s|$)\s*/gm;
|
|
104
104
|
v = v.split(re);
|
|
105
105
|
}
|
|
106
|
-
this.i.
|
|
106
|
+
this.i.od = v;
|
|
107
107
|
}
|
|
108
108
|
get dateFormatString() {
|
|
109
|
-
return this.i.
|
|
109
|
+
return this.i.pc;
|
|
110
110
|
}
|
|
111
111
|
set dateFormatString(v) {
|
|
112
|
-
this.i.
|
|
112
|
+
this.i.pc = v;
|
|
113
113
|
}
|
|
114
114
|
get showTodayButton() {
|
|
115
|
-
return this.i.
|
|
115
|
+
return this.i.op;
|
|
116
116
|
}
|
|
117
117
|
set showTodayButton(v) {
|
|
118
|
-
this.i.
|
|
118
|
+
this.i.op = ensureBool(v);
|
|
119
119
|
}
|
|
120
120
|
/**
|
|
121
121
|
* Gets the row index that the editor cell is targeting for edit.
|
|
122
122
|
*/
|
|
123
123
|
get targetRow() {
|
|
124
|
-
return this.i.
|
|
124
|
+
return this.i.o4;
|
|
125
125
|
}
|
|
126
126
|
/**
|
|
127
127
|
* Gets the column index that the editor cell is targeting for edit.
|
|
128
128
|
*/
|
|
129
129
|
get targetColumn() {
|
|
130
|
-
return this.i.
|
|
130
|
+
return this.i.o3;
|
|
131
131
|
}
|
|
132
132
|
findByName(name) {
|
|
133
133
|
var baseResult = super.findByName(name);
|