igniteui-webcomponents-data-grids 7.1.0-alpha.2 → 7.1.0-beta.0

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.
Files changed (208) hide show
  1. package/bundles/igniteui-webcomponents-data-grids.umd.js +7623 -7085
  2. package/bundles/igniteui-webcomponents-data-grids.umd.min.js +1 -1
  3. package/esm2015/lib/CanvasCellPresenterBase.js +4 -4
  4. package/esm2015/lib/CanvasContentCellModelHelper.js +5 -5
  5. package/esm2015/lib/CanvasDateTimeCellPresenter.js +8 -8
  6. package/esm2015/lib/CanvasGridCellBase.js +2 -2
  7. package/esm2015/lib/CanvasImageCellPresenter.js +7 -7
  8. package/esm2015/lib/CanvasNumericCellPresenter.js +8 -8
  9. package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +9 -9
  10. package/esm2015/lib/CanvasSummaryCellPresenter.js +6 -6
  11. package/esm2015/lib/CanvasTemplateCellPresenter.js +2 -2
  12. package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +2 -2
  13. package/esm2015/lib/CanvasTextCellPresenter.js +9 -9
  14. package/esm2015/lib/CanvasTextHeaderCellPresenter.js +7 -7
  15. package/esm2015/lib/CellPresenterBase.js +37 -34
  16. package/esm2015/lib/CheckboxListView_combined.js +24 -24
  17. package/esm2015/lib/ColumnChooserView_combined.js +9 -9
  18. package/esm2015/lib/ColumnFilterCondition_combined.js +5293 -5010
  19. package/esm2015/lib/ColumnGroupingView_combined.js +4 -4
  20. package/esm2015/lib/ColumnPinningView_combined.js +11 -11
  21. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +6 -6
  22. package/esm2015/lib/ContentCellModelHelper.js +10 -10
  23. package/esm2015/lib/DataGridCellLayoutPanel.js +10 -10
  24. package/esm2015/lib/DataGridScrollerKeyboardListener.js +2 -2
  25. package/esm2015/lib/DataGridToolbarView_combined.js +2 -2
  26. package/esm2015/lib/DateTimeCellPresenter.js +9 -9
  27. package/esm2015/lib/EditorCell.js +292 -292
  28. package/esm2015/lib/EditorCellPresenter.js +26 -26
  29. package/esm2015/lib/FilterCell.js +269 -269
  30. package/esm2015/lib/FilterCellPresenter.js +15 -15
  31. package/esm2015/lib/GridCellBase.js +167 -150
  32. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +10 -10
  33. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +7 -7
  34. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  35. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
  36. package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
  37. package/esm2015/lib/GridColumnPinOptionsView_combined.js +4 -4
  38. package/esm2015/lib/GridColumnSortOptionsView_combined.js +2 -2
  39. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  40. package/esm2015/lib/GridExternalWrapper.js +6 -6
  41. package/esm2015/lib/GridFilterDialogView_combined.js +2 -2
  42. package/esm2015/lib/GridStyleRepository.js +118 -113
  43. package/esm2015/lib/GridStyleRepositoryKeys.js +1 -1
  44. package/esm2015/lib/ImageCell.js +57 -57
  45. package/esm2015/lib/ImageCellPresenter.js +15 -15
  46. package/esm2015/lib/MultiColumnComboBoxView_combined.js +9 -9
  47. package/esm2015/lib/NumericCell.js +8 -8
  48. package/esm2015/lib/NumericCellPresenter.js +9 -9
  49. package/esm2015/lib/PropertyEditorView_combined.js +19 -19
  50. package/esm2015/lib/SectionHeaderCell.js +20 -20
  51. package/esm2015/lib/SectionHeaderCellPresenter.js +10 -10
  52. package/esm2015/lib/SummaryCell.js +45 -45
  53. package/esm2015/lib/SummaryCellPresenter.js +10 -10
  54. package/esm2015/lib/TemplateCell.js +15 -15
  55. package/esm2015/lib/TemplateCellPresenter.js +3 -3
  56. package/esm2015/lib/TemplateHeader.js +4 -4
  57. package/esm2015/lib/TemplateHeaderCell.js +5 -5
  58. package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
  59. package/esm2015/lib/TemplateHeaderCellPresenter.js +3 -3
  60. package/esm2015/lib/TemplateSectionHeader.js +1 -1
  61. package/esm2015/lib/TextCell.js +29 -29
  62. package/esm2015/lib/TextCellPresenter.js +10 -10
  63. package/esm2015/lib/TextHeaderCell.js +184 -184
  64. package/esm2015/lib/TextHeaderCellPresenter.js +52 -52
  65. package/esm2015/lib/TextIconSetConditionalStyle.js +1 -1
  66. package/esm2015/lib/VerticalSeparatorCell.js +37 -37
  67. package/esm2015/lib/igc-cell-info.js +97 -79
  68. package/esm2015/lib/igc-column-moving-separator-component.js +9 -9
  69. package/esm2015/lib/igc-column-resizing-separator-component.js +6 -6
  70. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  71. package/esm2015/lib/igc-data-grid-column-component.js +291 -261
  72. package/esm2015/lib/igc-data-grid-component.js +20 -0
  73. package/esm2015/lib/igc-date-time-cell-info.js +12 -12
  74. package/esm2015/lib/igc-date-time-column-component.js +23 -23
  75. package/esm2015/lib/igc-definition-base-component.js +12 -12
  76. package/esm2015/lib/igc-editor-cell-info.js +23 -23
  77. package/esm2015/lib/igc-filter-cell-info.js +26 -26
  78. package/esm2015/lib/igc-filter-row-definition-component.js +12 -12
  79. package/esm2015/lib/igc-header-component.js +24 -24
  80. package/esm2015/lib/igc-image-cell-info.js +6 -6
  81. package/esm2015/lib/igc-image-column-component.js +12 -12
  82. package/esm2015/lib/igc-numeric-cell-info.js +35 -26
  83. package/esm2015/lib/igc-numeric-column-component.js +46 -35
  84. package/esm2015/lib/igc-section-header-cell-info.js +6 -6
  85. package/esm2015/lib/igc-section-header-component.js +58 -24
  86. package/esm2015/lib/igc-summary-cell-info.js +9 -9
  87. package/esm2015/lib/igc-summary-row-component.js +24 -24
  88. package/esm2015/lib/igc-template-cell-info.js +2 -2
  89. package/esm2015/lib/igc-template-header-cell-info.js +2 -2
  90. package/esm2015/lib/igc-text-cell-info.js +2 -2
  91. package/esm2015/lib/igc-text-column-component.js +9 -9
  92. package/esm2015/lib/igc-text-header-cell-info.js +38 -38
  93. package/esm5/lib/CanvasCellPresenterBase.js +4 -4
  94. package/esm5/lib/CanvasContentCellModelHelper.js +5 -5
  95. package/esm5/lib/CanvasDateTimeCellPresenter.js +8 -8
  96. package/esm5/lib/CanvasGridCellBase.js +2 -2
  97. package/esm5/lib/CanvasImageCellPresenter.js +7 -7
  98. package/esm5/lib/CanvasNumericCellPresenter.js +8 -8
  99. package/esm5/lib/CanvasSectionHeaderCellPresenter.js +9 -9
  100. package/esm5/lib/CanvasSummaryCellPresenter.js +6 -6
  101. package/esm5/lib/CanvasTemplateCellPresenter.js +2 -2
  102. package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +2 -2
  103. package/esm5/lib/CanvasTextCellPresenter.js +9 -9
  104. package/esm5/lib/CanvasTextHeaderCellPresenter.js +7 -7
  105. package/esm5/lib/CellPresenterBase.js +37 -34
  106. package/esm5/lib/CheckboxListView_combined.js +24 -24
  107. package/esm5/lib/ColumnChooserView_combined.js +9 -9
  108. package/esm5/lib/ColumnFilterCondition_combined.js +5100 -4765
  109. package/esm5/lib/ColumnGroupingView_combined.js +4 -4
  110. package/esm5/lib/ColumnPinningView_combined.js +11 -11
  111. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +6 -6
  112. package/esm5/lib/ContentCellModelHelper.js +10 -10
  113. package/esm5/lib/DataGridCellLayoutPanel.js +10 -10
  114. package/esm5/lib/DataGridScrollerKeyboardListener.js +2 -2
  115. package/esm5/lib/DataGridToolbarView_combined.js +2 -2
  116. package/esm5/lib/DateTimeCellPresenter.js +9 -9
  117. package/esm5/lib/EditorCell.js +277 -277
  118. package/esm5/lib/EditorCellPresenter.js +26 -26
  119. package/esm5/lib/FilterCell.js +259 -259
  120. package/esm5/lib/FilterCellPresenter.js +15 -15
  121. package/esm5/lib/GridCellBase.js +164 -143
  122. package/esm5/lib/GridColumnFilterOptionsView_combined.js +10 -10
  123. package/esm5/lib/GridColumnGroupOptionsView_combined.js +7 -7
  124. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  125. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  126. package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
  127. package/esm5/lib/GridColumnPinOptionsView_combined.js +4 -4
  128. package/esm5/lib/GridColumnSortOptionsView_combined.js +2 -2
  129. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  130. package/esm5/lib/GridExternalWrapper.js +6 -6
  131. package/esm5/lib/GridFilterDialogView_combined.js +2 -2
  132. package/esm5/lib/GridStyleRepository.js +118 -113
  133. package/esm5/lib/GridStyleRepositoryKeys.js +1 -1
  134. package/esm5/lib/ImageCell.js +57 -57
  135. package/esm5/lib/ImageCellPresenter.js +15 -15
  136. package/esm5/lib/MultiColumnComboBoxView_combined.js +9 -9
  137. package/esm5/lib/NumericCell.js +8 -8
  138. package/esm5/lib/NumericCellPresenter.js +9 -9
  139. package/esm5/lib/PropertyEditorView_combined.js +19 -19
  140. package/esm5/lib/SectionHeaderCell.js +20 -20
  141. package/esm5/lib/SectionHeaderCellPresenter.js +10 -10
  142. package/esm5/lib/SummaryCell.js +45 -45
  143. package/esm5/lib/SummaryCellPresenter.js +10 -10
  144. package/esm5/lib/TemplateCell.js +15 -15
  145. package/esm5/lib/TemplateCellPresenter.js +3 -3
  146. package/esm5/lib/TemplateHeader.js +4 -4
  147. package/esm5/lib/TemplateHeaderCell.js +5 -5
  148. package/esm5/lib/TemplateHeaderCellModel.js +17 -17
  149. package/esm5/lib/TemplateHeaderCellPresenter.js +3 -3
  150. package/esm5/lib/TemplateSectionHeader.js +1 -1
  151. package/esm5/lib/TextCell.js +29 -29
  152. package/esm5/lib/TextCellPresenter.js +10 -10
  153. package/esm5/lib/TextHeaderCell.js +182 -182
  154. package/esm5/lib/TextHeaderCellPresenter.js +52 -52
  155. package/esm5/lib/TextIconSetConditionalStyle.js +1 -1
  156. package/esm5/lib/VerticalSeparatorCell.js +37 -37
  157. package/esm5/lib/igc-cell-info.js +105 -79
  158. package/esm5/lib/igc-column-moving-separator-component.js +9 -9
  159. package/esm5/lib/igc-column-resizing-separator-component.js +6 -6
  160. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  161. package/esm5/lib/igc-data-grid-column-component.js +303 -261
  162. package/esm5/lib/igc-data-grid-component.js +28 -0
  163. package/esm5/lib/igc-date-time-cell-info.js +12 -12
  164. package/esm5/lib/igc-date-time-column-component.js +23 -23
  165. package/esm5/lib/igc-definition-base-component.js +12 -12
  166. package/esm5/lib/igc-editor-cell-info.js +23 -23
  167. package/esm5/lib/igc-filter-cell-info.js +26 -26
  168. package/esm5/lib/igc-filter-row-definition-component.js +12 -12
  169. package/esm5/lib/igc-header-component.js +24 -24
  170. package/esm5/lib/igc-image-cell-info.js +6 -6
  171. package/esm5/lib/igc-image-column-component.js +12 -12
  172. package/esm5/lib/igc-numeric-cell-info.js +39 -26
  173. package/esm5/lib/igc-numeric-column-component.js +50 -35
  174. package/esm5/lib/igc-section-header-cell-info.js +6 -6
  175. package/esm5/lib/igc-section-header-component.js +74 -24
  176. package/esm5/lib/igc-summary-cell-info.js +9 -9
  177. package/esm5/lib/igc-summary-row-component.js +24 -24
  178. package/esm5/lib/igc-template-cell-info.js +2 -2
  179. package/esm5/lib/igc-template-header-cell-info.js +2 -2
  180. package/esm5/lib/igc-text-cell-info.js +2 -2
  181. package/esm5/lib/igc-text-column-component.js +9 -9
  182. package/esm5/lib/igc-text-header-cell-info.js +38 -38
  183. package/fesm2015/igniteui-webcomponents-data-grids.js +7778 -7348
  184. package/fesm5/igniteui-webcomponents-data-grids.js +7623 -7085
  185. package/lib/ColumnFilterCondition_combined.d.ts +1341 -1292
  186. package/lib/EditorCell.d.ts +67 -67
  187. package/lib/FilterCell.d.ts +55 -55
  188. package/lib/GridCellBase.d.ts +64 -61
  189. package/lib/GridStyleRepositoryKeys.d.ts +28 -27
  190. package/lib/ImageCell.d.ts +17 -17
  191. package/lib/NumericCell.d.ts +2 -2
  192. package/lib/SectionHeaderCell.d.ts +4 -4
  193. package/lib/SummaryCell.d.ts +10 -10
  194. package/lib/TemplateCell.d.ts +5 -5
  195. package/lib/TemplateHeader.d.ts +1 -1
  196. package/lib/TemplateHeaderCell.d.ts +2 -2
  197. package/lib/TemplateHeaderCellModel.d.ts +7 -7
  198. package/lib/TemplateSectionHeader.d.ts +1 -1
  199. package/lib/TextCell.d.ts +7 -7
  200. package/lib/TextHeaderCell.d.ts +30 -30
  201. package/lib/VerticalSeparatorCell.d.ts +8 -8
  202. package/lib/igc-cell-info.d.ts +10 -0
  203. package/lib/igc-data-grid-column-component.d.ts +15 -0
  204. package/lib/igc-data-grid-component.d.ts +10 -0
  205. package/lib/igc-numeric-cell-info.d.ts +5 -0
  206. package/lib/igc-numeric-column-component.d.ts +6 -0
  207. package/lib/igc-section-header-component.d.ts +14 -0
  208. package/package.json +4 -4
@@ -1814,6 +1814,16 @@ let IgcDataGridComponent = /*@__PURE__*/ (() => {
1814
1814
  this.i.cellSelectedBackground = stringToBrush(v);
1815
1815
  this._a("cellSelectedBackground", brushToString(this.i.cellSelectedBackground));
1816
1816
  }
1817
+ /**
1818
+ * Gets or sets the default text color to use for content cells when a row is in a selected state
1819
+ */
1820
+ get cellSelectedTextColor() {
1821
+ return brushToString(this.i.cellSelectedTextColor);
1822
+ }
1823
+ set cellSelectedTextColor(v) {
1824
+ this.i.cellSelectedTextColor = stringToBrush(v);
1825
+ this._a("cellSelectedTextColor", brushToString(this.i.cellSelectedTextColor));
1826
+ }
1817
1827
  /**
1818
1828
  * Gets or sets the default background color to use for section header cells when a row is in a selected state
1819
1829
  */
@@ -2019,6 +2029,16 @@ let IgcDataGridComponent = /*@__PURE__*/ (() => {
2019
2029
  this.i.sectionHeaderTextColor = stringToBrush(v);
2020
2030
  this._a("sectionHeaderTextColor", brushToString(this.i.sectionHeaderTextColor));
2021
2031
  }
2032
+ /**
2033
+ * Gets or sets the color to use for the expansion indicator icon on section header cells. When unset, the icon defers to the section header text color.
2034
+ */
2035
+ get sectionHeaderExpansionIndicatorIconColor() {
2036
+ return brushToString(this.i.sectionHeaderExpansionIndicatorIconColor);
2037
+ }
2038
+ set sectionHeaderExpansionIndicatorIconColor(v) {
2039
+ this.i.sectionHeaderExpansionIndicatorIconColor = stringToBrush(v);
2040
+ this._a("sectionHeaderExpansionIndicatorIconColor", brushToString(this.i.sectionHeaderExpansionIndicatorIconColor));
2041
+ }
2022
2042
  /**
2023
2043
  * Gets or sets the font to use for section header cells
2024
2044
  */
@@ -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.ob;
25
+ return this.i.oj;
26
26
  }
27
27
  set dateTimeValue(v) {
28
- this.i.ob = v;
28
+ this.i.oj = 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.os;
34
+ return this.i.o0;
35
35
  }
36
36
  set formatStringOverride(v) {
37
- this.i.os = v;
37
+ this.i.o0 = v;
38
38
  }
39
39
  get formatSpecifiers() {
40
- return this.i.n2;
40
+ return this.i.oa;
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.n2 = v;
47
+ this.i.oa = 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.ol;
53
+ return this.i.ot;
54
54
  }
55
55
  set formatOverride(v) {
56
- this.i.ol = v;
56
+ this.i.ot = 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.n7;
62
+ return this.i.of;
63
63
  }
64
64
  set dateTimeFormat(v) {
65
- this.i.n7 = ensureEnum(DateTimeFormats_$type, v);
65
+ this.i.of = 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.n9;
71
+ return this.i.oh;
72
72
  }
73
73
  set isOffsetValue(v) {
74
- this.i.n9 = ensureBool(v);
74
+ this.i.oh = 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.r1;
70
+ return this.i.sc;
71
71
  }
72
72
  set dateTimeFormat(v) {
73
- this.i.r1 = ensureEnum(DateTimeFormats_$type, v);
74
- this._a("dateTimeFormat", enumToString(DateTimeFormats_$type, this.i.r1));
73
+ this.i.sc = ensureEnum(DateTimeFormats_$type, v);
74
+ this._a("dateTimeFormat", enumToString(DateTimeFormats_$type, this.i.sc));
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.sj;
80
+ return this.i.su;
81
81
  }
82
82
  set formatString(v) {
83
- this.i.sj = v;
83
+ this.i.su = 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.sc;
89
+ return this.i.sn;
90
90
  }
91
91
  set editorFormatString(v) {
92
- this.i.sc = v;
92
+ this.i.sn = v;
93
93
  }
94
94
  get formatSpecifiers() {
95
- return this.i.rx;
95
+ return this.i.r8;
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.rx = v;
102
+ this.i.r8 = 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.r8;
108
+ return this.i.sj;
109
109
  }
110
110
  set formatOverride(v) {
111
- this.i.r8 = v;
111
+ this.i.sj = 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.r4;
117
+ return this.i.sf;
118
118
  }
119
119
  set showTodayButton(v) {
120
- this.i.r4 = ensureBool(v);
121
- this._a("showTodayButton", this.i.r4);
120
+ this.i.sf = ensureBool(v);
121
+ this._a("showTodayButton", this.i.sf);
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.r2;
127
+ return this.i.sd;
128
128
  }
129
129
  set editorType(v) {
130
- this.i.r2 = ensureEnum(EditorType_$type, v);
131
- this._a("editorType", enumToString(EditorType_$type, this.i.r2));
130
+ this.i.sd = ensureEnum(EditorType_$type, v);
131
+ this._a("editorType", enumToString(EditorType_$type, this.i.sd));
132
132
  }
133
133
  /**
134
134
  * Gets or sets the ComboBox data source.
135
135
  */
136
136
  get editorDataSource() {
137
- return this.i.r7;
137
+ return this.i.si;
138
138
  }
139
139
  set editorDataSource(v) {
140
- this.i.r7 = v;
140
+ this.i.si = v;
141
141
  }
142
142
  /**
143
143
  * Gets or sets the ComboBox text field.
144
144
  */
145
145
  get editorTextField() {
146
- return this.i.se;
146
+ return this.i.sp;
147
147
  }
148
148
  set editorTextField(v) {
149
- this.i.se = v;
149
+ this.i.sp = v;
150
150
  }
151
151
  /**
152
152
  * Gets or sets the ComboBox value field.
153
153
  */
154
154
  get editorValueField() {
155
- return this.i.sf;
155
+ return this.i.sq;
156
156
  }
157
157
  set editorValueField(v) {
158
- this.i.sf = v;
158
+ this.i.sq = v;
159
159
  }
160
160
  findByName(name) {
161
161
  var baseResult = super.findByName(name);
@@ -495,11 +495,11 @@ let IgcDefinitionBaseComponent = /*@__PURE__*/ (() => {
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.gz);
498
+ return brushToString(this.i.g0);
499
499
  }
500
500
  set stickyRowBackground(v) {
501
- this.i.gz = stringToBrush(v);
502
- this._a("stickyRowBackground", brushToString(this.i.gz));
501
+ this.i.g0 = stringToBrush(v);
502
+ this._a("stickyRowBackground", brushToString(this.i.g0));
503
503
  }
504
504
  /**
505
505
  * Gets the actual background color for content that sticks to the top of the grid.
@@ -515,11 +515,11 @@ let IgcDefinitionBaseComponent = /*@__PURE__*/ (() => {
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.gy);
518
+ return brushToString(this.i.gz);
519
519
  }
520
520
  set pinnedRowBackground(v) {
521
- this.i.gy = stringToBrush(v);
522
- this._a("pinnedRowBackground", brushToString(this.i.gy));
521
+ this.i.gz = stringToBrush(v);
522
+ this._a("pinnedRowBackground", brushToString(this.i.gz));
523
523
  }
524
524
  /**
525
525
  * Gets the actual background color for cells belonging to rows marked as pinned.
@@ -535,11 +535,11 @@ let IgcDefinitionBaseComponent = /*@__PURE__*/ (() => {
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.gx);
538
+ return brushToString(this.i.gy);
539
539
  }
540
540
  set lastStickyRowBackground(v) {
541
- this.i.gx = stringToBrush(v);
542
- this._a("lastStickyRowBackground", brushToString(this.i.gx));
541
+ this.i.gy = stringToBrush(v);
542
+ this._a("lastStickyRowBackground", brushToString(this.i.gy));
543
543
  }
544
544
  /**
545
545
  * Gets the actual color for the last row in the sticky row area.
@@ -605,11 +605,11 @@ 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.g0);
608
+ return brushToString(this.i.g1);
609
609
  }
610
610
  set textColor(v) {
611
- this.i.g0 = stringToBrush(v);
612
- this._a("textColor", brushToString(this.i.g0));
611
+ this.i.g1 = stringToBrush(v);
612
+ this._a("textColor", brushToString(this.i.g1));
613
613
  }
614
614
  /**
615
615
  * Gets the actual color used for displaying text.
@@ -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.od;
26
+ return this.i.ol;
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.n6;
32
+ const r = this.i.oe;
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.n6 = null : this.i.n6 = v.i;
39
+ v == null ? this.i.oe = null : this.i.oe = 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.n4;
45
+ return this.i.oc;
46
46
  }
47
47
  set dataType(v) {
48
- this.i.n4 = ensureEnum(DataSourceSchemaPropertyType_$type, v);
48
+ this.i.oc = 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.o9;
54
+ return this.i.ph;
55
55
  }
56
56
  set errorMessage(v) {
57
- this.i.o9 = v;
57
+ this.i.ph = v;
58
58
  }
59
59
  /**
60
60
  * Gets or sets the user selected value.
61
61
  */
62
62
  get editValue() {
63
- return this.i.ow;
63
+ return this.i.o4;
64
64
  }
65
65
  set editValue(v) {
66
- this.i.ow = v;
66
+ this.i.o4 = 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.n8;
72
+ return this.i.og;
73
73
  }
74
74
  set editorType(v) {
75
- this.i.n8 = ensureEnum(EditorType_$type, v);
75
+ this.i.og = 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.ov;
81
+ return this.i.o3;
82
82
  }
83
83
  set editorDataSource(v) {
84
- this.i.ov = v;
84
+ this.i.o3 = v;
85
85
  }
86
86
  /**
87
87
  * Gets or sets the editors display member.
88
88
  */
89
89
  get editorTextField() {
90
- return this.i.o4;
90
+ return this.i.pc;
91
91
  }
92
92
  set editorTextField(v) {
93
- this.i.o4 = v;
93
+ this.i.pc = v;
94
94
  }
95
95
  /**
96
96
  * Gets or sets the editors value member.
97
97
  */
98
98
  get editorValueField() {
99
- return this.i.n2;
99
+ return this.i.oa;
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.n2 = v;
106
+ this.i.oa = v;
107
107
  }
108
108
  get dateFormatString() {
109
- return this.i.o1;
109
+ return this.i.o9;
110
110
  }
111
111
  set dateFormatString(v) {
112
- this.i.o1 = v;
112
+ this.i.o9 = v;
113
113
  }
114
114
  get showTodayButton() {
115
- return this.i.oe;
115
+ return this.i.om;
116
116
  }
117
117
  set showTodayButton(v) {
118
- this.i.oe = ensureBool(v);
118
+ this.i.om = 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.ot;
124
+ return this.i.o1;
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.os;
130
+ return this.i.o0;
131
131
  }
132
132
  findByName(name) {
133
133
  var baseResult = super.findByName(name);
@@ -27,38 +27,38 @@ export class IgcFilterCellInfo extends IgcCellInfo {
27
27
  * Gets or sets whether the cell is hit test visible.
28
28
  */
29
29
  get dataType() {
30
- return this.i.n6;
30
+ return this.i.oe;
31
31
  }
32
32
  set dataType(v) {
33
- this.i.n6 = ensureEnum(DataSourceSchemaPropertyType_$type, v);
33
+ this.i.oe = ensureEnum(DataSourceSchemaPropertyType_$type, v);
34
34
  }
35
35
  /**
36
36
  * Gets or sets the current filter to display in the cell.
37
37
  */
38
38
  get filter() {
39
- return this.i.n4;
39
+ return this.i.oc;
40
40
  }
41
41
  set filter(v) {
42
- this.i.n4 = v;
42
+ this.i.oc = v;
43
43
  }
44
44
  /**
45
45
  * Gets or sets the current filter expression applied to the column.
46
46
  */
47
47
  get filterExpression() {
48
- return this.i.n8;
48
+ return this.i.og;
49
49
  }
50
50
  set filterExpression(v) {
51
- this.i.n8 = v;
51
+ this.i.og = v;
52
52
  }
53
53
  get filterOperands() {
54
54
  if (this._filterOperands === null) {
55
55
  let coll = new IgcGridFilterOperandsCollection();
56
- let innerColl = this.i.oa;
56
+ let innerColl = this.i.oi;
57
57
  if (!innerColl) {
58
58
  innerColl = new GridFilterOperandsCollection_internal();
59
59
  }
60
60
  this._filterOperands = coll._fromInner(innerColl);
61
- this.i.oa = innerColl;
61
+ this.i.oi = innerColl;
62
62
  }
63
63
  return this._filterOperands;
64
64
  }
@@ -70,62 +70,62 @@ export class IgcFilterCellInfo extends IgcCellInfo {
70
70
  let coll = new IgcGridFilterOperandsCollection();
71
71
  this._filterOperands = coll._fromOuter(v);
72
72
  let syncColl = new SyncableObservableCollection$1(FilterOperand.$type);
73
- let innerColl = this.i.oa;
73
+ let innerColl = this.i.oi;
74
74
  if (!innerColl) {
75
75
  innerColl = new GridFilterOperandsCollection_internal();
76
76
  }
77
77
  syncColl._inner = innerColl;
78
78
  syncColl.clear();
79
79
  this._filterOperands._setSyncTarget(syncColl);
80
- this.i.oa = innerColl;
80
+ this.i.oi = innerColl;
81
81
  }
82
82
  get operatorType() {
83
- return this.i.n2;
83
+ return this.i.oa;
84
84
  }
85
85
  set operatorType(v) {
86
- this.i.n2 = v;
86
+ this.i.oa = v;
87
87
  }
88
88
  get filterValue() {
89
- return this.i.oo;
89
+ return this.i.ow;
90
90
  }
91
91
  set filterValue(v) {
92
- this.i.oo = v;
92
+ this.i.ow = v;
93
93
  }
94
94
  get selectorTop() {
95
- return this.i.oi;
95
+ return this.i.oq;
96
96
  }
97
97
  set selectorTop(v) {
98
- this.i.oi = +v;
98
+ this.i.oq = +v;
99
99
  }
100
100
  get selectorLeft() {
101
- return this.i.oh;
101
+ return this.i.op;
102
102
  }
103
103
  set selectorLeft(v) {
104
- this.i.oh = +v;
104
+ this.i.op = +v;
105
105
  }
106
106
  get editorTop() {
107
- return this.i.og;
107
+ return this.i.oo;
108
108
  }
109
109
  set editorTop(v) {
110
- this.i.og = +v;
110
+ this.i.oo = +v;
111
111
  }
112
112
  get editorLeft() {
113
- return this.i.of;
113
+ return this.i.on;
114
114
  }
115
115
  set editorLeft(v) {
116
- this.i.of = +v;
116
+ this.i.on = +v;
117
117
  }
118
118
  get clearIconTop() {
119
- return this.i.oe;
119
+ return this.i.om;
120
120
  }
121
121
  set clearIconTop(v) {
122
- this.i.oe = +v;
122
+ this.i.om = +v;
123
123
  }
124
124
  get clearIconLeft() {
125
- return this.i.od;
125
+ return this.i.ol;
126
126
  }
127
127
  set clearIconLeft(v) {
128
- this.i.od = +v;
128
+ this.i.ol = +v;
129
129
  }
130
130
  findByName(name) {
131
131
  var baseResult = super.findByName(name);
@@ -65,41 +65,41 @@ let IgcFilterRowDefinitionComponent = /*@__PURE__*/ (() => {
65
65
  * Gets or sets the amount of left padding to use for the cell content for this column.
66
66
  */
67
67
  get paddingLeft() {
68
- return this.i.g6;
68
+ return this.i.g7;
69
69
  }
70
70
  set paddingLeft(v) {
71
- this.i.g6 = +v;
72
- this._a("paddingLeft", this.i.g6);
71
+ this.i.g7 = +v;
72
+ this._a("paddingLeft", this.i.g7);
73
73
  }
74
74
  /**
75
75
  * Gets or sets the amount of top padding to use for the cell content for this column.
76
76
  */
77
77
  get paddingTop() {
78
- return this.i.g8;
78
+ return this.i.g9;
79
79
  }
80
80
  set paddingTop(v) {
81
- this.i.g8 = +v;
82
- this._a("paddingTop", this.i.g8);
81
+ this.i.g9 = +v;
82
+ this._a("paddingTop", this.i.g9);
83
83
  }
84
84
  /**
85
85
  * Gets or sets the amount of right padding to use for the cell content of this column.
86
86
  */
87
87
  get paddingRight() {
88
- return this.i.g7;
88
+ return this.i.g8;
89
89
  }
90
90
  set paddingRight(v) {
91
- this.i.g7 = +v;
92
- this._a("paddingRight", this.i.g7);
91
+ this.i.g8 = +v;
92
+ this._a("paddingRight", this.i.g8);
93
93
  }
94
94
  /**
95
95
  * Gets or sets the amount of bottom padding to use for the cell content of this column.
96
96
  */
97
97
  get paddingBottom() {
98
- return this.i.g5;
98
+ return this.i.g6;
99
99
  }
100
100
  set paddingBottom(v) {
101
- this.i.g5 = +v;
102
- this._a("paddingBottom", this.i.g5);
101
+ this.i.g6 = +v;
102
+ this._a("paddingBottom", this.i.g6);
103
103
  }
104
104
  }
105
105
  IgcFilterRowDefinitionComponent._observedAttributesIgcFilterRowDefinitionComponent = null;