igniteui-angular-data-grids 20.0.1 → 20.0.2-beta.1

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 (240) hide show
  1. package/bundles/igniteui-angular-data-grids.umd.js +10223 -8743
  2. package/bundles/igniteui-angular-data-grids.umd.min.js +1 -1
  3. package/esm2015/lib/AccessibilityRow.js +3 -3
  4. package/esm2015/lib/CanvasCellPresenterBase.js +14 -14
  5. package/esm2015/lib/CanvasContentCellModelHelper.js +18 -18
  6. package/esm2015/lib/CanvasDateTimeCellPresenter.js +9 -9
  7. package/esm2015/lib/CanvasGridCellBase.js +9 -9
  8. package/esm2015/lib/CanvasImageCellPresenter.js +10 -10
  9. package/esm2015/lib/CanvasNumericCellPresenter.js +9 -9
  10. package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +10 -10
  11. package/esm2015/lib/CanvasSummaryCell.js +1 -1
  12. package/esm2015/lib/CanvasSummaryCellPresenter.js +8 -8
  13. package/esm2015/lib/CanvasTemplateCellPresenter.js +4 -4
  14. package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +4 -4
  15. package/esm2015/lib/CanvasTextCellPresenter.js +10 -10
  16. package/esm2015/lib/CanvasTextHeaderCellPresenter.js +13 -13
  17. package/esm2015/lib/CellPresenterBase.js +64 -39
  18. package/esm2015/lib/CheckboxListView_combined.js +49 -49
  19. package/esm2015/lib/ColumnChooserView_combined.js +9 -9
  20. package/esm2015/lib/ColumnFilterCondition_combined.js +6925 -6539
  21. package/esm2015/lib/ColumnGroupingView_combined.js +5 -5
  22. package/esm2015/lib/ColumnPinningView_combined.js +11 -11
  23. package/esm2015/lib/ColumnSortDescription.js +6 -1
  24. package/esm2015/lib/ColumnSummaryDescription.js +6 -1
  25. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +7 -7
  26. package/esm2015/lib/ContentCellModelHelper.js +46 -33
  27. package/esm2015/lib/DataGridCellLayoutPanel.js +19 -19
  28. package/esm2015/lib/DataGridScrollerKeyboardListener.js +15 -15
  29. package/esm2015/lib/DataGridToolbarView_combined.js +2 -2
  30. package/esm2015/lib/DateTimeCellPresenter.js +10 -10
  31. package/esm2015/lib/EditorCell.js +335 -335
  32. package/esm2015/lib/EditorCellPresenter.js +28 -28
  33. package/esm2015/lib/EditorRowCell.js +1 -1
  34. package/esm2015/lib/FilterCell.js +278 -278
  35. package/esm2015/lib/FilterCellPresenter.js +18 -18
  36. package/esm2015/lib/GridCellBase.js +587 -317
  37. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +10 -10
  38. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +7 -7
  39. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  40. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
  41. package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
  42. package/esm2015/lib/GridColumnPinOptionsView_combined.js +4 -4
  43. package/esm2015/lib/GridColumnSortOptionsView_combined.js +2 -2
  44. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  45. package/esm2015/lib/GridConditionFilterStringErrorsParsingEventArgs.js +2 -14
  46. package/esm2015/lib/GridConditionalStyleFontInfo.js +26 -0
  47. package/esm2015/lib/GridConditionalStyleProperty.js +8 -8
  48. package/esm2015/lib/GridExternalWrapper.js +6 -6
  49. package/esm2015/lib/GridFilterDialogView_combined.js +2 -2
  50. package/esm2015/lib/GridStyleRepository.js +1 -1
  51. package/esm2015/lib/ImageCell.js +62 -62
  52. package/esm2015/lib/ImageCellPresenter.js +18 -18
  53. package/esm2015/lib/MultiColumnComboBoxView_combined.js +15 -15
  54. package/esm2015/lib/NumericCell.js +9 -5
  55. package/esm2015/lib/NumericCellPresenter.js +10 -10
  56. package/esm2015/lib/PropertyEditorView_combined.js +21 -21
  57. package/esm2015/lib/SectionHeaderCell.js +17 -17
  58. package/esm2015/lib/SectionHeaderCellPresenter.js +11 -11
  59. package/esm2015/lib/SummaryCell.js +41 -41
  60. package/esm2015/lib/SummaryCellPresenter.js +14 -14
  61. package/esm2015/lib/TemplateCell.js +16 -16
  62. package/esm2015/lib/TemplateCellPresenter.js +5 -5
  63. package/esm2015/lib/TemplateHeader.js +7 -7
  64. package/esm2015/lib/TemplateHeaderCell.js +6 -6
  65. package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
  66. package/esm2015/lib/TemplateHeaderCellPresenter.js +5 -5
  67. package/esm2015/lib/TemplateSectionHeader.js +2 -2
  68. package/esm2015/lib/TextCell.js +35 -30
  69. package/esm2015/lib/TextCellDecoration.js +33 -0
  70. package/esm2015/lib/TextCellPresenter.js +11 -11
  71. package/esm2015/lib/TextHeaderCell.js +157 -150
  72. package/esm2015/lib/TextHeaderCellPresenter.js +35 -35
  73. package/esm2015/lib/VerticalSeparatorCell.js +37 -37
  74. package/esm2015/lib/igx-cell-info.js +301 -190
  75. package/esm2015/lib/igx-checkbox-list-component.js +1 -1
  76. package/esm2015/lib/igx-column-moving-separator-component.js +6 -6
  77. package/esm2015/lib/igx-column-resizing-separator-component.js +4 -4
  78. package/esm2015/lib/igx-combo-box-column-component.js +10 -10
  79. package/esm2015/lib/igx-data-grid-column-component.js +254 -115
  80. package/esm2015/lib/igx-data-grid-component.js +38 -5
  81. package/esm2015/lib/igx-date-time-cell-info.js +12 -12
  82. package/esm2015/lib/igx-date-time-column-component.js +20 -20
  83. package/esm2015/lib/igx-definition-base-component.js +46 -45
  84. package/esm2015/lib/igx-editor-cell-info.js +23 -23
  85. package/esm2015/lib/igx-filter-cell-info.js +26 -26
  86. package/esm2015/lib/igx-filter-row-definition-component.js +8 -8
  87. package/esm2015/lib/igx-grid-condition-filter-string-errors-parsing-event-args.js +4 -4
  88. package/esm2015/lib/igx-grid-conditional-style-font-info-component.js +144 -0
  89. package/esm2015/lib/igx-grid-conditional-style-font-info-dynamic-module.js +34 -0
  90. package/esm2015/lib/igx-grid-conditional-style-font-info-module.js +27 -0
  91. package/esm2015/lib/igx-header-component.js +16 -16
  92. package/esm2015/lib/igx-image-cell-info.js +6 -6
  93. package/esm2015/lib/igx-image-column-component.js +10 -10
  94. package/esm2015/lib/igx-numeric-cell-info.js +26 -26
  95. package/esm2015/lib/igx-numeric-column-component.js +30 -30
  96. package/esm2015/lib/igx-section-header-cell-info.js +6 -6
  97. package/esm2015/lib/igx-section-header-component.js +16 -16
  98. package/esm2015/lib/igx-summary-cell-info.js +9 -9
  99. package/esm2015/lib/igx-summary-row-component.js +16 -16
  100. package/esm2015/lib/igx-template-cell-info.js +2 -2
  101. package/esm2015/lib/igx-template-header-cell-info.js +2 -2
  102. package/esm2015/lib/igx-text-cell-info.js +2 -2
  103. package/esm2015/lib/igx-text-column-component.js +8 -8
  104. package/esm2015/lib/igx-text-header-cell-info.js +10 -10
  105. package/esm2015/public_api.js +5 -0
  106. package/esm5/lib/AccessibilityRow.js +3 -3
  107. package/esm5/lib/CanvasCellPresenterBase.js +14 -14
  108. package/esm5/lib/CanvasContentCellModelHelper.js +18 -18
  109. package/esm5/lib/CanvasDateTimeCellPresenter.js +9 -9
  110. package/esm5/lib/CanvasGridCellBase.js +9 -9
  111. package/esm5/lib/CanvasImageCellPresenter.js +10 -10
  112. package/esm5/lib/CanvasNumericCellPresenter.js +9 -9
  113. package/esm5/lib/CanvasSectionHeaderCellPresenter.js +10 -10
  114. package/esm5/lib/CanvasSummaryCell.js +1 -1
  115. package/esm5/lib/CanvasSummaryCellPresenter.js +8 -8
  116. package/esm5/lib/CanvasTemplateCellPresenter.js +4 -4
  117. package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +4 -4
  118. package/esm5/lib/CanvasTextCellPresenter.js +10 -10
  119. package/esm5/lib/CanvasTextHeaderCellPresenter.js +13 -13
  120. package/esm5/lib/CellPresenterBase.js +64 -39
  121. package/esm5/lib/CheckboxListView_combined.js +49 -49
  122. package/esm5/lib/ColumnChooserView_combined.js +9 -9
  123. package/esm5/lib/ColumnFilterCondition_combined.js +6754 -6269
  124. package/esm5/lib/ColumnGroupingView_combined.js +5 -5
  125. package/esm5/lib/ColumnPinningView_combined.js +11 -11
  126. package/esm5/lib/ColumnSortDescription.js +6 -1
  127. package/esm5/lib/ColumnSummaryDescription.js +6 -1
  128. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +7 -7
  129. package/esm5/lib/ContentCellModelHelper.js +46 -33
  130. package/esm5/lib/DataGridCellLayoutPanel.js +19 -19
  131. package/esm5/lib/DataGridScrollerKeyboardListener.js +15 -15
  132. package/esm5/lib/DataGridToolbarView_combined.js +2 -2
  133. package/esm5/lib/DateTimeCellPresenter.js +10 -10
  134. package/esm5/lib/EditorCell.js +291 -291
  135. package/esm5/lib/EditorCellPresenter.js +28 -28
  136. package/esm5/lib/EditorRowCell.js +1 -1
  137. package/esm5/lib/FilterCell.js +266 -266
  138. package/esm5/lib/FilterCellPresenter.js +18 -18
  139. package/esm5/lib/GridCellBase.js +625 -311
  140. package/esm5/lib/GridColumnFilterOptionsView_combined.js +10 -10
  141. package/esm5/lib/GridColumnGroupOptionsView_combined.js +7 -7
  142. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  143. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  144. package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
  145. package/esm5/lib/GridColumnPinOptionsView_combined.js +4 -4
  146. package/esm5/lib/GridColumnSortOptionsView_combined.js +2 -2
  147. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +7 -7
  148. package/esm5/lib/GridConditionFilterStringErrorsParsingEventArgs.js +2 -22
  149. package/esm5/lib/GridConditionalStyleFontInfo.js +32 -0
  150. package/esm5/lib/GridConditionalStyleProperty.js +8 -8
  151. package/esm5/lib/GridExternalWrapper.js +6 -6
  152. package/esm5/lib/GridFilterDialogView_combined.js +2 -2
  153. package/esm5/lib/GridStyleRepository.js +1 -1
  154. package/esm5/lib/ImageCell.js +61 -61
  155. package/esm5/lib/ImageCellPresenter.js +18 -18
  156. package/esm5/lib/MultiColumnComboBoxView_combined.js +15 -15
  157. package/esm5/lib/NumericCell.js +9 -5
  158. package/esm5/lib/NumericCellPresenter.js +10 -10
  159. package/esm5/lib/PropertyEditorView_combined.js +21 -21
  160. package/esm5/lib/SectionHeaderCell.js +17 -17
  161. package/esm5/lib/SectionHeaderCellPresenter.js +11 -11
  162. package/esm5/lib/SummaryCell.js +41 -41
  163. package/esm5/lib/SummaryCellPresenter.js +14 -14
  164. package/esm5/lib/TemplateCell.js +16 -16
  165. package/esm5/lib/TemplateCellPresenter.js +5 -5
  166. package/esm5/lib/TemplateHeader.js +7 -7
  167. package/esm5/lib/TemplateHeaderCell.js +6 -6
  168. package/esm5/lib/TemplateHeaderCellModel.js +17 -17
  169. package/esm5/lib/TemplateHeaderCellPresenter.js +5 -5
  170. package/esm5/lib/TemplateSectionHeader.js +2 -2
  171. package/esm5/lib/TextCell.js +35 -30
  172. package/esm5/lib/TextCellDecoration.js +33 -0
  173. package/esm5/lib/TextCellPresenter.js +11 -11
  174. package/esm5/lib/TextHeaderCell.js +155 -148
  175. package/esm5/lib/TextHeaderCellPresenter.js +35 -35
  176. package/esm5/lib/VerticalSeparatorCell.js +37 -37
  177. package/esm5/lib/igx-cell-info.js +349 -190
  178. package/esm5/lib/igx-checkbox-list-component.js +1 -1
  179. package/esm5/lib/igx-column-moving-separator-component.js +6 -6
  180. package/esm5/lib/igx-column-resizing-separator-component.js +4 -4
  181. package/esm5/lib/igx-combo-box-column-component.js +10 -10
  182. package/esm5/lib/igx-data-grid-column-component.js +302 -115
  183. package/esm5/lib/igx-data-grid-component.js +42 -5
  184. package/esm5/lib/igx-date-time-cell-info.js +12 -12
  185. package/esm5/lib/igx-date-time-column-component.js +20 -20
  186. package/esm5/lib/igx-definition-base-component.js +46 -45
  187. package/esm5/lib/igx-editor-cell-info.js +23 -23
  188. package/esm5/lib/igx-filter-cell-info.js +26 -26
  189. package/esm5/lib/igx-filter-row-definition-component.js +8 -8
  190. package/esm5/lib/igx-grid-condition-filter-string-errors-parsing-event-args.js +4 -4
  191. package/esm5/lib/igx-grid-conditional-style-font-info-component.js +155 -0
  192. package/esm5/lib/igx-grid-conditional-style-font-info-dynamic-module.js +33 -0
  193. package/esm5/lib/igx-grid-conditional-style-font-info-module.js +28 -0
  194. package/esm5/lib/igx-header-component.js +16 -16
  195. package/esm5/lib/igx-image-cell-info.js +6 -6
  196. package/esm5/lib/igx-image-column-component.js +10 -10
  197. package/esm5/lib/igx-numeric-cell-info.js +26 -26
  198. package/esm5/lib/igx-numeric-column-component.js +30 -30
  199. package/esm5/lib/igx-section-header-cell-info.js +6 -6
  200. package/esm5/lib/igx-section-header-component.js +16 -16
  201. package/esm5/lib/igx-summary-cell-info.js +9 -9
  202. package/esm5/lib/igx-summary-row-component.js +16 -16
  203. package/esm5/lib/igx-template-cell-info.js +2 -2
  204. package/esm5/lib/igx-template-header-cell-info.js +2 -2
  205. package/esm5/lib/igx-text-cell-info.js +2 -2
  206. package/esm5/lib/igx-text-column-component.js +8 -8
  207. package/esm5/lib/igx-text-header-cell-info.js +10 -10
  208. package/esm5/public_api.js +5 -0
  209. package/fesm2015/igniteui-angular-data-grids.js +10236 -9009
  210. package/fesm5/igniteui-angular-data-grids.js +10219 -8745
  211. package/lib/ColumnFilterCondition_combined.d.ts +1784 -1694
  212. package/lib/ContentCellModelHelper.d.ts +4 -4
  213. package/lib/EditorCell.d.ts +74 -74
  214. package/lib/FilterCell.d.ts +61 -61
  215. package/lib/GridCellBase.d.ts +140 -95
  216. package/lib/GridConditionFilterStringErrorsParsingEventArgs.d.ts +2 -6
  217. package/lib/GridConditionalStyleFontInfo.d.ts +11 -0
  218. package/lib/ImageCell.d.ts +20 -20
  219. package/lib/MultiColumnComboBoxView_combined.d.ts +1 -1
  220. package/lib/NumericCell.d.ts +2 -1
  221. package/lib/SectionHeaderCell.d.ts +4 -4
  222. package/lib/SummaryCell.d.ts +11 -11
  223. package/lib/TemplateCell.d.ts +6 -6
  224. package/lib/TemplateHeader.d.ts +3 -3
  225. package/lib/TemplateHeaderCell.d.ts +3 -3
  226. package/lib/TemplateHeaderCellModel.d.ts +7 -7
  227. package/lib/TemplateSectionHeader.d.ts +2 -2
  228. package/lib/TextCell.d.ts +10 -8
  229. package/lib/TextCellDecoration.d.ts +26 -0
  230. package/lib/TextHeaderCell.d.ts +37 -35
  231. package/lib/VerticalSeparatorCell.d.ts +9 -9
  232. package/lib/igx-cell-info.d.ts +63 -0
  233. package/lib/igx-data-grid-column-component.d.ts +68 -2
  234. package/lib/igx-data-grid-component.d.ts +9 -2
  235. package/lib/igx-definition-base-component.d.ts +1 -1
  236. package/lib/igx-grid-conditional-style-font-info-component.d.ts +33 -0
  237. package/lib/igx-grid-conditional-style-font-info-dynamic-module.d.ts +9 -0
  238. package/lib/igx-grid-conditional-style-font-info-module.d.ts +8 -0
  239. package/package.json +43 -43
  240. package/public_api.d.ts +5 -0
@@ -5,6 +5,7 @@ import { CellContentVerticalAlignment_$type } from "./CellContentVerticalAlignme
5
5
  import { TextCellLineBreakMode_$type } from "./TextCellLineBreakMode";
6
6
  import { IgxDataBindingEventArgs } from "./igx-data-binding-event-args";
7
7
  import { IgxCellStyleRequestedEventArgs } from "./igx-cell-style-requested-event-args";
8
+ import { CellPropertyAnimationType_$type } from "./CellPropertyAnimationType";
8
9
  import { NamePatcher } from "igniteui-angular-core";
9
10
  import { ensureBool, brushToString, stringToBrush, ensureEnum, toSpinal, initializePropertiesFromCss, CollectionAdapter } from "igniteui-angular-core";
10
11
  import { FontInfo } from "igniteui-angular-core";
@@ -180,10 +181,10 @@ var IgxDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function () {
180
181
  * Gets or sets the background color to use.
181
182
  */
182
183
  get: function () {
183
- return brushToString(this.i.ge);
184
+ return brushToString(this.i.gf);
184
185
  },
185
186
  set: function (v) {
186
- this.i.ge = stringToBrush(v);
187
+ this.i.gf = stringToBrush(v);
187
188
  },
188
189
  enumerable: false,
189
190
  configurable: true
@@ -237,10 +238,10 @@ var IgxDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function () {
237
238
  * Gets or sets the background color to use.
238
239
  */
239
240
  get: function () {
240
- return brushToString(this.i.gh);
241
+ return brushToString(this.i.gi);
241
242
  },
242
243
  set: function (v) {
243
- this.i.gh = stringToBrush(v);
244
+ this.i.gi = stringToBrush(v);
244
245
  },
245
246
  enumerable: false,
246
247
  configurable: true
@@ -250,10 +251,10 @@ var IgxDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function () {
250
251
  * Gets or sets the background color to use.
251
252
  */
252
253
  get: function () {
253
- return brushToString(this.i.f3);
254
+ return brushToString(this.i.f4);
254
255
  },
255
256
  set: function (v) {
256
- this.i.f3 = stringToBrush(v);
257
+ this.i.f4 = stringToBrush(v);
257
258
  },
258
259
  enumerable: false,
259
260
  configurable: true
@@ -263,10 +264,10 @@ var IgxDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function () {
263
264
  * Gets or sets the error border color to use.
264
265
  */
265
266
  get: function () {
266
- return brushToString(this.i.gi);
267
+ return brushToString(this.i.gj);
267
268
  },
268
269
  set: function (v) {
269
- this.i.gi = stringToBrush(v);
270
+ this.i.gj = stringToBrush(v);
270
271
  },
271
272
  enumerable: false,
272
273
  configurable: true
@@ -276,10 +277,10 @@ var IgxDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function () {
276
277
  * Gets the actual border color that will be used.
277
278
  */
278
279
  get: function () {
279
- return brushToString(this.i.f8);
280
+ return brushToString(this.i.f9);
280
281
  },
281
282
  set: function (v) {
282
- this.i.f8 = stringToBrush(v);
283
+ this.i.f9 = stringToBrush(v);
283
284
  },
284
285
  enumerable: false,
285
286
  configurable: true
@@ -433,10 +434,10 @@ var IgxDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function () {
433
434
  * Gets the actual background color that will be used.
434
435
  */
435
436
  get: function () {
436
- return brushToString(this.i.f5);
437
+ return brushToString(this.i.f6);
437
438
  },
438
439
  set: function (v) {
439
- this.i.f5 = stringToBrush(v);
440
+ this.i.f6 = stringToBrush(v);
440
441
  },
441
442
  enumerable: false,
442
443
  configurable: true
@@ -446,10 +447,10 @@ var IgxDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function () {
446
447
  * Gets the actual background color that will be used.
447
448
  */
448
449
  get: function () {
449
- return brushToString(this.i.f4);
450
+ return brushToString(this.i.f5);
450
451
  },
451
452
  set: function (v) {
452
- this.i.f4 = stringToBrush(v);
453
+ this.i.f5 = stringToBrush(v);
453
454
  },
454
455
  enumerable: false,
455
456
  configurable: true
@@ -459,10 +460,10 @@ var IgxDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function () {
459
460
  * Gets the actual error border color that will be used.
460
461
  */
461
462
  get: function () {
462
- return brushToString(this.i.f9);
463
+ return brushToString(this.i.ga);
463
464
  },
464
465
  set: function (v) {
465
- this.i.f9 = stringToBrush(v);
466
+ this.i.ga = stringToBrush(v);
466
467
  },
467
468
  enumerable: false,
468
469
  configurable: true
@@ -472,10 +473,10 @@ var IgxDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function () {
472
473
  * Gets or sets the background color for content that sticks to the top of the grid.
473
474
  */
474
475
  get: function () {
475
- return brushToString(this.i.gw);
476
+ return brushToString(this.i.gx);
476
477
  },
477
478
  set: function (v) {
478
- this.i.gw = stringToBrush(v);
479
+ this.i.gx = stringToBrush(v);
479
480
  },
480
481
  enumerable: false,
481
482
  configurable: true
@@ -485,10 +486,10 @@ var IgxDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function () {
485
486
  * Gets the actual background color for content that sticks to the top of the grid.
486
487
  */
487
488
  get: function () {
488
- return brushToString(this.i.gc);
489
+ return brushToString(this.i.gd);
489
490
  },
490
491
  set: function (v) {
491
- this.i.gc = stringToBrush(v);
492
+ this.i.gd = stringToBrush(v);
492
493
  },
493
494
  enumerable: false,
494
495
  configurable: true
@@ -498,10 +499,10 @@ var IgxDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function () {
498
499
  * Gets or sets the background color for cells belonging to rows marked as pinned.
499
500
  */
500
501
  get: function () {
501
- return brushToString(this.i.gv);
502
+ return brushToString(this.i.gw);
502
503
  },
503
504
  set: function (v) {
504
- this.i.gv = stringToBrush(v);
505
+ this.i.gw = stringToBrush(v);
505
506
  },
506
507
  enumerable: false,
507
508
  configurable: true
@@ -511,10 +512,10 @@ var IgxDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function () {
511
512
  * Gets the actual background color for cells belonging to rows marked as pinned.
512
513
  */
513
514
  get: function () {
514
- return brushToString(this.i.gb);
515
+ return brushToString(this.i.gc);
515
516
  },
516
517
  set: function (v) {
517
- this.i.gb = stringToBrush(v);
518
+ this.i.gc = stringToBrush(v);
518
519
  },
519
520
  enumerable: false,
520
521
  configurable: true
@@ -524,10 +525,10 @@ var IgxDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function () {
524
525
  * Gets or sets the color for the last row in the sticky row area.
525
526
  */
526
527
  get: function () {
527
- return brushToString(this.i.gu);
528
+ return brushToString(this.i.gv);
528
529
  },
529
530
  set: function (v) {
530
- this.i.gu = stringToBrush(v);
531
+ this.i.gv = stringToBrush(v);
531
532
  },
532
533
  enumerable: false,
533
534
  configurable: true
@@ -537,10 +538,10 @@ var IgxDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function () {
537
538
  * Gets the actual color for the last row in the sticky row area.
538
539
  */
539
540
  get: function () {
540
- return brushToString(this.i.ga);
541
+ return brushToString(this.i.gb);
541
542
  },
542
543
  set: function (v) {
543
- this.i.ga = stringToBrush(v);
544
+ this.i.gb = stringToBrush(v);
544
545
  },
545
546
  enumerable: false,
546
547
  configurable: true
@@ -615,10 +616,10 @@ var IgxDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function () {
615
616
  * Gets or sets the color to use for displaying text.
616
617
  */
617
618
  get: function () {
618
- return brushToString(this.i.gx);
619
+ return brushToString(this.i.gy);
619
620
  },
620
621
  set: function (v) {
621
- this.i.gx = stringToBrush(v);
622
+ this.i.gy = stringToBrush(v);
622
623
  },
623
624
  enumerable: false,
624
625
  configurable: true
@@ -628,10 +629,10 @@ var IgxDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function () {
628
629
  * Gets the actual color used for displaying text.
629
630
  */
630
631
  get: function () {
631
- return brushToString(this.i.gd);
632
+ return brushToString(this.i.ge);
632
633
  },
633
634
  set: function (v) {
634
- this.i.gd = stringToBrush(v);
635
+ this.i.ge = stringToBrush(v);
635
636
  },
636
637
  enumerable: false,
637
638
  configurable: true
@@ -654,10 +655,10 @@ var IgxDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function () {
654
655
  * Gets or sets the color to use for value bars.
655
656
  */
656
657
  get: function () {
657
- return brushToString(this.i.gf);
658
+ return brushToString(this.i.gg);
658
659
  },
659
660
  set: function (v) {
660
- this.i.gf = stringToBrush(v);
661
+ this.i.gg = stringToBrush(v);
661
662
  },
662
663
  enumerable: false,
663
664
  configurable: true
@@ -667,10 +668,10 @@ var IgxDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function () {
667
668
  * Gets the actual color used for value bars.
668
669
  */
669
670
  get: function () {
670
- return brushToString(this.i.f6);
671
+ return brushToString(this.i.f7);
671
672
  },
672
673
  set: function (v) {
673
- this.i.f6 = stringToBrush(v);
674
+ this.i.f7 = stringToBrush(v);
674
675
  },
675
676
  enumerable: false,
676
677
  configurable: true
@@ -680,10 +681,10 @@ var IgxDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function () {
680
681
  * Gets or sets the Outline color to use for value bars.
681
682
  */
682
683
  get: function () {
683
- return brushToString(this.i.gg);
684
+ return brushToString(this.i.gh);
684
685
  },
685
686
  set: function (v) {
686
- this.i.gg = stringToBrush(v);
687
+ this.i.gh = stringToBrush(v);
687
688
  },
688
689
  enumerable: false,
689
690
  configurable: true
@@ -693,10 +694,10 @@ var IgxDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function () {
693
694
  * Gets the actual Outline color used for value bars.
694
695
  */
695
696
  get: function () {
696
- return brushToString(this.i.f7);
697
+ return brushToString(this.i.f8);
697
698
  },
698
699
  set: function (v) {
699
- this.i.f7 = stringToBrush(v);
700
+ this.i.f8 = stringToBrush(v);
700
701
  },
701
702
  enumerable: false,
702
703
  configurable: true
@@ -813,17 +814,17 @@ var IgxDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function () {
813
814
  return null;
814
815
  };
815
816
  IgxDefinitionBaseComponent.prototype.transitionStyleOut = function (style) {
816
- this.i.e3((style == null ? null : style.i));
817
+ this.i.e4((style == null ? null : style.i));
817
818
  };
818
819
  IgxDefinitionBaseComponent.prototype.transitionStyleIn = function (style) {
819
- this.i.e2((style == null ? null : style.i));
820
+ this.i.e3((style == null ? null : style.i));
820
821
  };
821
822
  IgxDefinitionBaseComponent.prototype.isStyleTransitioningOut = function (style) {
822
823
  var iv = this.i.as((style == null ? null : style.i));
823
824
  return (iv);
824
825
  };
825
826
  IgxDefinitionBaseComponent.prototype.setNamedValue = function (valueName, animationType, value) {
826
- this.i.e1(valueName, (animationType == null ? null : animationType), value);
827
+ this.i.e2(valueName, ensureEnum(CellPropertyAnimationType_$type, animationType), value);
827
828
  };
828
829
  /**
829
830
  * Returns if this definition has named value.
@@ -848,7 +849,7 @@ var IgxDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function () {
848
849
  * @param valueName * The named value name to remove.
849
850
  */
850
851
  IgxDefinitionBaseComponent.prototype.removeNamedValue = function (valueName) {
851
- this.i.ew(valueName);
852
+ this.i.ex(valueName);
852
853
  };
853
854
  /**
854
855
  * Gets the value for a named value from this definition.
@@ -856,7 +857,7 @@ var IgxDefinitionBaseComponent = /** @class */ /*@__PURE__*/ (function () {
856
857
  * @param valueName * The named value name to check for.
857
858
  */
858
859
  IgxDefinitionBaseComponent.prototype.getNamedValue = function (valueName) {
859
- var iv = this.i.co(valueName);
860
+ var iv = this.i.cp(valueName);
860
861
  return (iv);
861
862
  };
862
863
  Object.defineProperty(IgxDefinitionBaseComponent.prototype, "dataBinding", {
@@ -30,7 +30,7 @@ var IgxEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
30
30
  * Gets whether the editor cell is hidden or not.
31
31
  */
32
32
  get: function () {
33
- return this.i.mv;
33
+ return this.i.n8;
34
34
  },
35
35
  enumerable: false,
36
36
  configurable: true
@@ -40,14 +40,14 @@ var IgxEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
40
40
  * Gets or sets the edit target for this cell.
41
41
  */
42
42
  get: function () {
43
- var r = this.i.mo;
43
+ var r = this.i.n1;
44
44
  if (r == null) {
45
45
  return null;
46
46
  }
47
47
  return r.externalObject;
48
48
  },
49
49
  set: function (v) {
50
- v == null ? this.i.mo = null : this.i.mo = v.i;
50
+ v == null ? this.i.n1 = null : this.i.n1 = v.i;
51
51
  },
52
52
  enumerable: false,
53
53
  configurable: true
@@ -57,10 +57,10 @@ var IgxEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
57
57
  * Gets or sets the data type associated with the cell being edited.
58
58
  */
59
59
  get: function () {
60
- return this.i.mm;
60
+ return this.i.nz;
61
61
  },
62
62
  set: function (v) {
63
- this.i.mm = ensureEnum(DataSourceSchemaPropertyType_$type, v);
63
+ this.i.nz = ensureEnum(DataSourceSchemaPropertyType_$type, v);
64
64
  },
65
65
  enumerable: false,
66
66
  configurable: true
@@ -70,10 +70,10 @@ var IgxEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
70
70
  * Gets or sets the error message to display in the editor cell.
71
71
  */
72
72
  get: function () {
73
- return this.i.nr;
73
+ return this.i.o4;
74
74
  },
75
75
  set: function (v) {
76
- this.i.nr = v;
76
+ this.i.o4 = v;
77
77
  },
78
78
  enumerable: false,
79
79
  configurable: true
@@ -83,10 +83,10 @@ var IgxEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
83
83
  * Gets or sets the user selected value.
84
84
  */
85
85
  get: function () {
86
- return this.i.ne;
86
+ return this.i.or;
87
87
  },
88
88
  set: function (v) {
89
- this.i.ne = v;
89
+ this.i.or = v;
90
90
  },
91
91
  enumerable: false,
92
92
  configurable: true
@@ -96,10 +96,10 @@ var IgxEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
96
96
  * Gets or sets the type of editor to use while cell editing.
97
97
  */
98
98
  get: function () {
99
- return this.i.mq;
99
+ return this.i.n3;
100
100
  },
101
101
  set: function (v) {
102
- this.i.mq = ensureEnum(EditorType_$type, v);
102
+ this.i.n3 = ensureEnum(EditorType_$type, v);
103
103
  },
104
104
  enumerable: false,
105
105
  configurable: true
@@ -109,10 +109,10 @@ var IgxEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
109
109
  * Gets or sets the data source to use for the editor where it makes sense.
110
110
  */
111
111
  get: function () {
112
- return this.i.nd;
112
+ return this.i.oq;
113
113
  },
114
114
  set: function (v) {
115
- this.i.nd = v;
115
+ this.i.oq = v;
116
116
  },
117
117
  enumerable: false,
118
118
  configurable: true
@@ -122,10 +122,10 @@ var IgxEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
122
122
  * Gets or sets the editors display member.
123
123
  */
124
124
  get: function () {
125
- return this.i.nm;
125
+ return this.i.oz;
126
126
  },
127
127
  set: function (v) {
128
- this.i.nm = v;
128
+ this.i.oz = v;
129
129
  },
130
130
  enumerable: false,
131
131
  configurable: true
@@ -135,34 +135,34 @@ var IgxEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
135
135
  * Gets or sets the editors value member.
136
136
  */
137
137
  get: function () {
138
- return this.i.mk;
138
+ return this.i.nx;
139
139
  },
140
140
  set: function (v) {
141
141
  if (v && !Array.isArray(v) && typeof (v) == "string") {
142
142
  var re = /\s*(?:,|\s|$)\s*/gm;
143
143
  v = v.split(re);
144
144
  }
145
- this.i.mk = v;
145
+ this.i.nx = v;
146
146
  },
147
147
  enumerable: false,
148
148
  configurable: true
149
149
  });
150
150
  Object.defineProperty(IgxEditorCellInfo.prototype, "dateFormatString", {
151
151
  get: function () {
152
- return this.i.nj;
152
+ return this.i.ow;
153
153
  },
154
154
  set: function (v) {
155
- this.i.nj = v;
155
+ this.i.ow = v;
156
156
  },
157
157
  enumerable: false,
158
158
  configurable: true
159
159
  });
160
160
  Object.defineProperty(IgxEditorCellInfo.prototype, "showTodayButton", {
161
161
  get: function () {
162
- return this.i.mw;
162
+ return this.i.n9;
163
163
  },
164
164
  set: function (v) {
165
- this.i.mw = ensureBool(v);
165
+ this.i.n9 = ensureBool(v);
166
166
  },
167
167
  enumerable: false,
168
168
  configurable: true
@@ -172,7 +172,7 @@ var IgxEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
172
172
  * Gets the row index that the editor cell is targeting for edit.
173
173
  */
174
174
  get: function () {
175
- return this.i.nb;
175
+ return this.i.oo;
176
176
  },
177
177
  enumerable: false,
178
178
  configurable: true
@@ -182,7 +182,7 @@ var IgxEditorCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
182
182
  * Gets the column index that the editor cell is targeting for edit.
183
183
  */
184
184
  get: function () {
185
- return this.i.na;
185
+ return this.i.on;
186
186
  },
187
187
  enumerable: false,
188
188
  configurable: true
@@ -35,10 +35,10 @@ var IgxFilterCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
35
35
  * Gets or sets whether the cell is hit test visible.
36
36
  */
37
37
  get: function () {
38
- return this.i.mo;
38
+ return this.i.n1;
39
39
  },
40
40
  set: function (v) {
41
- this.i.mo = ensureEnum(DataSourceSchemaPropertyType_$type, v);
41
+ this.i.n1 = ensureEnum(DataSourceSchemaPropertyType_$type, v);
42
42
  },
43
43
  enumerable: false,
44
44
  configurable: true
@@ -48,10 +48,10 @@ var IgxFilterCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
48
48
  * Gets or sets the current filter to display in the cell.
49
49
  */
50
50
  get: function () {
51
- return this.i.mm;
51
+ return this.i.nz;
52
52
  },
53
53
  set: function (v) {
54
- this.i.mm = v;
54
+ this.i.nz = v;
55
55
  },
56
56
  enumerable: false,
57
57
  configurable: true
@@ -61,10 +61,10 @@ var IgxFilterCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
61
61
  * Gets or sets the current filter expression applied to the column.
62
62
  */
63
63
  get: function () {
64
- return this.i.mq;
64
+ return this.i.n3;
65
65
  },
66
66
  set: function (v) {
67
- this.i.mq = v;
67
+ this.i.n3 = v;
68
68
  },
69
69
  enumerable: false,
70
70
  configurable: true
@@ -73,12 +73,12 @@ var IgxFilterCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
73
73
  get: function () {
74
74
  if (this._filterOperands === null) {
75
75
  var coll = new IgxGridFilterOperandsCollection();
76
- var innerColl = this.i.ms;
76
+ var innerColl = this.i.n5;
77
77
  if (!innerColl) {
78
78
  innerColl = new GridFilterOperandsCollection_internal();
79
79
  }
80
80
  this._filterOperands = coll._fromInner(innerColl);
81
- this.i.ms = innerColl;
81
+ this.i.n5 = innerColl;
82
82
  }
83
83
  return this._filterOperands;
84
84
  },
@@ -90,94 +90,94 @@ var IgxFilterCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
90
90
  var coll = new IgxGridFilterOperandsCollection();
91
91
  this._filterOperands = coll._fromOuter(v);
92
92
  var syncColl = new SyncableObservableCollection$1(FilterOperand.$type);
93
- var innerColl = this.i.ms;
93
+ var innerColl = this.i.n5;
94
94
  if (!innerColl) {
95
95
  innerColl = new GridFilterOperandsCollection_internal();
96
96
  }
97
97
  syncColl._inner = innerColl;
98
98
  syncColl.clear();
99
99
  this._filterOperands._setSyncTarget(syncColl);
100
- this.i.ms = innerColl;
100
+ this.i.n5 = innerColl;
101
101
  },
102
102
  enumerable: false,
103
103
  configurable: true
104
104
  });
105
105
  Object.defineProperty(IgxFilterCellInfo.prototype, "operatorType", {
106
106
  get: function () {
107
- return this.i.mk;
107
+ return this.i.nx;
108
108
  },
109
109
  set: function (v) {
110
- this.i.mk = v;
110
+ this.i.nx = v;
111
111
  },
112
112
  enumerable: false,
113
113
  configurable: true
114
114
  });
115
115
  Object.defineProperty(IgxFilterCellInfo.prototype, "filterValue", {
116
116
  get: function () {
117
- return this.i.m6;
117
+ return this.i.oj;
118
118
  },
119
119
  set: function (v) {
120
- this.i.m6 = v;
120
+ this.i.oj = v;
121
121
  },
122
122
  enumerable: false,
123
123
  configurable: true
124
124
  });
125
125
  Object.defineProperty(IgxFilterCellInfo.prototype, "selectorTop", {
126
126
  get: function () {
127
- return this.i.m0;
127
+ return this.i.od;
128
128
  },
129
129
  set: function (v) {
130
- this.i.m0 = +v;
130
+ this.i.od = +v;
131
131
  },
132
132
  enumerable: false,
133
133
  configurable: true
134
134
  });
135
135
  Object.defineProperty(IgxFilterCellInfo.prototype, "selectorLeft", {
136
136
  get: function () {
137
- return this.i.mz;
137
+ return this.i.oc;
138
138
  },
139
139
  set: function (v) {
140
- this.i.mz = +v;
140
+ this.i.oc = +v;
141
141
  },
142
142
  enumerable: false,
143
143
  configurable: true
144
144
  });
145
145
  Object.defineProperty(IgxFilterCellInfo.prototype, "editorTop", {
146
146
  get: function () {
147
- return this.i.my;
147
+ return this.i.ob;
148
148
  },
149
149
  set: function (v) {
150
- this.i.my = +v;
150
+ this.i.ob = +v;
151
151
  },
152
152
  enumerable: false,
153
153
  configurable: true
154
154
  });
155
155
  Object.defineProperty(IgxFilterCellInfo.prototype, "editorLeft", {
156
156
  get: function () {
157
- return this.i.mx;
157
+ return this.i.oa;
158
158
  },
159
159
  set: function (v) {
160
- this.i.mx = +v;
160
+ this.i.oa = +v;
161
161
  },
162
162
  enumerable: false,
163
163
  configurable: true
164
164
  });
165
165
  Object.defineProperty(IgxFilterCellInfo.prototype, "clearIconTop", {
166
166
  get: function () {
167
- return this.i.mw;
167
+ return this.i.n9;
168
168
  },
169
169
  set: function (v) {
170
- this.i.mw = +v;
170
+ this.i.n9 = +v;
171
171
  },
172
172
  enumerable: false,
173
173
  configurable: true
174
174
  });
175
175
  Object.defineProperty(IgxFilterCellInfo.prototype, "clearIconLeft", {
176
176
  get: function () {
177
- return this.i.mv;
177
+ return this.i.n8;
178
178
  },
179
179
  set: function (v) {
180
- this.i.mv = +v;
180
+ this.i.n8 = +v;
181
181
  },
182
182
  enumerable: false,
183
183
  configurable: true
@@ -43,10 +43,10 @@ var IgxFilterRowDefinitionComponent = /** @class */ /*@__PURE__*/ (function (_su
43
43
  * Gets or sets the amount of left padding to use for the cell content for this column.
44
44
  */
45
45
  get: function () {
46
- return this.i.g3;
46
+ return this.i.g4;
47
47
  },
48
48
  set: function (v) {
49
- this.i.g3 = +v;
49
+ this.i.g4 = +v;
50
50
  },
51
51
  enumerable: false,
52
52
  configurable: true
@@ -56,10 +56,10 @@ var IgxFilterRowDefinitionComponent = /** @class */ /*@__PURE__*/ (function (_su
56
56
  * Gets or sets the amount of top padding to use for the cell content for this column.
57
57
  */
58
58
  get: function () {
59
- return this.i.g5;
59
+ return this.i.g6;
60
60
  },
61
61
  set: function (v) {
62
- this.i.g5 = +v;
62
+ this.i.g6 = +v;
63
63
  },
64
64
  enumerable: false,
65
65
  configurable: true
@@ -69,10 +69,10 @@ var IgxFilterRowDefinitionComponent = /** @class */ /*@__PURE__*/ (function (_su
69
69
  * Gets or sets the amount of right padding to use for the cell content of this column.
70
70
  */
71
71
  get: function () {
72
- return this.i.g4;
72
+ return this.i.g5;
73
73
  },
74
74
  set: function (v) {
75
- this.i.g4 = +v;
75
+ this.i.g5 = +v;
76
76
  },
77
77
  enumerable: false,
78
78
  configurable: true
@@ -82,10 +82,10 @@ var IgxFilterRowDefinitionComponent = /** @class */ /*@__PURE__*/ (function (_su
82
82
  * Gets or sets the amount of bottom padding to use for the cell content of this column.
83
83
  */
84
84
  get: function () {
85
- return this.i.g2;
85
+ return this.i.g3;
86
86
  },
87
87
  set: function (v) {
88
- this.i.g2 = +v;
88
+ this.i.g3 = +v;
89
89
  },
90
90
  enumerable: false,
91
91
  configurable: true