igniteui-webcomponents-data-grids 6.0.1 → 6.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 (241) hide show
  1. package/bundles/igniteui-webcomponents-data-grids.umd.js +12298 -10495
  2. package/bundles/igniteui-webcomponents-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 +8409 -7998
  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 +308 -308
  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 +11 -11
  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 +326 -205
  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 +8 -8
  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/TextIconSetConditionalStyle.js +14 -9
  74. package/esm2015/lib/VerticalSeparatorCell.js +37 -37
  75. package/esm2015/lib/igc-cell-info.js +301 -190
  76. package/esm2015/lib/igc-column-moving-separator-component.js +9 -9
  77. package/esm2015/lib/igc-column-resizing-separator-component.js +6 -6
  78. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  79. package/esm2015/lib/igc-data-grid-column-component.js +284 -160
  80. package/esm2015/lib/igc-data-grid-component.js +64 -4
  81. package/esm2015/lib/igc-date-time-cell-info.js +12 -12
  82. package/esm2015/lib/igc-date-time-column-component.js +23 -23
  83. package/esm2015/lib/igc-definition-base-component.js +66 -65
  84. package/esm2015/lib/igc-editor-cell-info.js +23 -23
  85. package/esm2015/lib/igc-filter-cell-info.js +26 -26
  86. package/esm2015/lib/igc-filter-row-definition-component.js +12 -12
  87. package/esm2015/lib/igc-grid-condition-filter-string-errors-parsing-event-args.js +4 -4
  88. package/esm2015/lib/igc-grid-conditional-style-font-info-component.js +214 -0
  89. package/esm2015/lib/igc-grid-conditional-style-font-info-module.js +16 -0
  90. package/esm2015/lib/igc-grid-conditional-style-property-component.js +101 -35
  91. package/esm2015/lib/igc-header-component.js +24 -24
  92. package/esm2015/lib/igc-image-cell-info.js +6 -6
  93. package/esm2015/lib/igc-image-column-component.js +12 -12
  94. package/esm2015/lib/igc-numeric-cell-info.js +26 -26
  95. package/esm2015/lib/igc-numeric-column-component.js +35 -35
  96. package/esm2015/lib/igc-section-header-cell-info.js +6 -6
  97. package/esm2015/lib/igc-section-header-component.js +24 -24
  98. package/esm2015/lib/igc-summary-cell-info.js +9 -9
  99. package/esm2015/lib/igc-summary-row-component.js +24 -24
  100. package/esm2015/lib/igc-template-cell-info.js +2 -2
  101. package/esm2015/lib/igc-template-header-cell-info.js +2 -2
  102. package/esm2015/lib/igc-text-cell-info.js +2 -2
  103. package/esm2015/lib/igc-text-column-component.js +9 -9
  104. package/esm2015/lib/igc-text-header-cell-info.js +10 -10
  105. package/esm2015/public_api.js +4 -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 +8205 -7695
  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 +11 -11
  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 +343 -194
  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 +8 -8
  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/TextIconSetConditionalStyle.js +14 -9
  177. package/esm5/lib/VerticalSeparatorCell.js +37 -37
  178. package/esm5/lib/igc-cell-info.js +349 -190
  179. package/esm5/lib/igc-column-moving-separator-component.js +9 -9
  180. package/esm5/lib/igc-column-resizing-separator-component.js +6 -6
  181. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  182. package/esm5/lib/igc-data-grid-column-component.js +332 -160
  183. package/esm5/lib/igc-data-grid-component.js +68 -4
  184. package/esm5/lib/igc-date-time-cell-info.js +12 -12
  185. package/esm5/lib/igc-date-time-column-component.js +23 -23
  186. package/esm5/lib/igc-definition-base-component.js +66 -65
  187. package/esm5/lib/igc-editor-cell-info.js +23 -23
  188. package/esm5/lib/igc-filter-cell-info.js +26 -26
  189. package/esm5/lib/igc-filter-row-definition-component.js +12 -12
  190. package/esm5/lib/igc-grid-condition-filter-string-errors-parsing-event-args.js +4 -4
  191. package/esm5/lib/igc-grid-conditional-style-font-info-component.js +232 -0
  192. package/esm5/lib/igc-grid-conditional-style-font-info-module.js +20 -0
  193. package/esm5/lib/igc-grid-conditional-style-property-component.js +128 -34
  194. package/esm5/lib/igc-header-component.js +24 -24
  195. package/esm5/lib/igc-image-cell-info.js +6 -6
  196. package/esm5/lib/igc-image-column-component.js +12 -12
  197. package/esm5/lib/igc-numeric-cell-info.js +26 -26
  198. package/esm5/lib/igc-numeric-column-component.js +35 -35
  199. package/esm5/lib/igc-section-header-cell-info.js +6 -6
  200. package/esm5/lib/igc-section-header-component.js +24 -24
  201. package/esm5/lib/igc-summary-cell-info.js +9 -9
  202. package/esm5/lib/igc-summary-row-component.js +24 -24
  203. package/esm5/lib/igc-template-cell-info.js +2 -2
  204. package/esm5/lib/igc-template-header-cell-info.js +2 -2
  205. package/esm5/lib/igc-text-cell-info.js +2 -2
  206. package/esm5/lib/igc-text-column-component.js +9 -9
  207. package/esm5/lib/igc-text-header-cell-info.js +10 -10
  208. package/esm5/public_api.js +4 -0
  209. package/fesm2015/igniteui-webcomponents-data-grids.js +12290 -10806
  210. package/fesm5/igniteui-webcomponents-data-grids.js +12295 -10497
  211. package/lib/ColumnFilterCondition_combined.d.ts +1999 -1901
  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/GridConditionalStyleProperty.d.ts +84 -61
  219. package/lib/ImageCell.d.ts +20 -20
  220. package/lib/MultiColumnComboBoxView_combined.d.ts +1 -1
  221. package/lib/NumericCell.d.ts +2 -1
  222. package/lib/SectionHeaderCell.d.ts +4 -4
  223. package/lib/SummaryCell.d.ts +11 -11
  224. package/lib/TemplateCell.d.ts +6 -6
  225. package/lib/TemplateHeader.d.ts +3 -3
  226. package/lib/TemplateHeaderCell.d.ts +3 -3
  227. package/lib/TemplateHeaderCellModel.d.ts +7 -7
  228. package/lib/TemplateSectionHeader.d.ts +2 -2
  229. package/lib/TextCell.d.ts +10 -8
  230. package/lib/TextCellDecoration.d.ts +26 -0
  231. package/lib/TextHeaderCell.d.ts +37 -35
  232. package/lib/VerticalSeparatorCell.d.ts +9 -9
  233. package/lib/igc-cell-info.d.ts +58 -0
  234. package/lib/igc-data-grid-column-component.d.ts +62 -1
  235. package/lib/igc-data-grid-component.d.ts +15 -1
  236. package/lib/igc-definition-base-component.d.ts +1 -1
  237. package/lib/igc-grid-conditional-style-font-info-component.d.ts +44 -0
  238. package/lib/igc-grid-conditional-style-font-info-module.d.ts +3 -0
  239. package/lib/igc-grid-conditional-style-property-component.d.ts +17 -2
  240. package/package.json +41 -41
  241. package/public_api.d.ts +4 -0
@@ -89,6 +89,7 @@ import { GroupSummaryDisplayMode_$type } from "./GroupSummaryDisplayMode";
89
89
  import { fromRect } from "igniteui-webcomponents-core";
90
90
  import { RegisterElementHelper } from "igniteui-webcomponents-core";
91
91
  import { IgcPinnedAreaSeparatorComponent } from "./igc-pinned-area-separator-component";
92
+ import { PinnedPositions_$type } from "./PinnedPositions";
92
93
  import { ColumnOptionsIconAlignment_$type } from "./ColumnOptionsIconAlignment";
93
94
  import { ColumnOptionsIconBehavior_$type } from "./ColumnOptionsIconBehavior";
94
95
  import { IgcColumnPinnedChangedEventArgs } from "./igc-column-pinned-changed-event-args";
@@ -232,6 +233,11 @@ export let IgcDataGridComponent = /*@__PURE__*/ (() => {
232
233
  this._renderer = null;
233
234
  this._disconnected = false;
234
235
  this._initialized = false;
236
+ this.onMouseEvent = (e) => {
237
+ if (this.stopPropagation) {
238
+ e.stopPropagation();
239
+ }
240
+ };
235
241
  this._scroller = null;
236
242
  this._wrapper = null;
237
243
  this._grid = null;
@@ -518,6 +524,11 @@ export let IgcDataGridComponent = /*@__PURE__*/ (() => {
518
524
  this._grid.renderingEngine.detach();
519
525
  }
520
526
  }
527
+ this.removeEventListener("mousedown", this.onMouseEvent);
528
+ this.removeEventListener("mouseup", this.onMouseEvent);
529
+ this.removeEventListener("mouseenter", this.onMouseEvent);
530
+ this.removeEventListener("mouseleave", this.onMouseEvent);
531
+ this.removeEventListener("mousemove", this.onMouseEvent);
521
532
  }
522
533
  connectedCallback() {
523
534
  if (this._disconnected) {
@@ -584,6 +595,11 @@ export let IgcDataGridComponent = /*@__PURE__*/ (() => {
584
595
  }
585
596
  this.updateContentColumns();
586
597
  this.afterContentInit();
598
+ this.addEventListener("mousedown", this.onMouseEvent);
599
+ this.addEventListener("mouseup", this.onMouseEvent);
600
+ this.addEventListener("mouseenter", this.onMouseEvent);
601
+ this.addEventListener("mouseleave", this.onMouseEvent);
602
+ this.addEventListener("mousemove", this.onMouseEvent);
587
603
  }
588
604
  SetupColumnGrouping() {
589
605
  if (this._hasColumnGroupingAdded == false && this._hasParentAdded == true) {
@@ -618,7 +634,7 @@ export let IgcDataGridComponent = /*@__PURE__*/ (() => {
618
634
  this.i.pager = null;
619
635
  // When the pager is shown it replaces the internal grid's datasource with a new paged one. So when hiding the pager
620
636
  // we need to assign back the original datasource.
621
- this._grid.itemsSource = this._dataSource;
637
+ this.dataSource = this._dataSource;
622
638
  }
623
639
  }
624
640
  showToolbar() {
@@ -644,7 +660,8 @@ export let IgcDataGridComponent = /*@__PURE__*/ (() => {
644
660
  return this.i.actualDataSource;
645
661
  }
646
662
  afterContentInit() {
647
- this._grid.itemsSource = this._dataSource;
663
+ // we have a grid now so provide it the currently set datasource.
664
+ this.dataSource = this._dataSource;
648
665
  }
649
666
  refreshContentSize() {
650
667
  if (this._content != null) {
@@ -682,7 +699,12 @@ export let IgcDataGridComponent = /*@__PURE__*/ (() => {
682
699
  set dataSource(value) {
683
700
  this._dataSource = value;
684
701
  if (this._grid != null) {
685
- this._grid.itemsSource = this._dataSource;
702
+ if (this._dataSource && this._dataSource._implementation) {
703
+ this._grid.itemsSource = this._dataSource._implementation;
704
+ }
705
+ else {
706
+ this._grid.itemsSource = this._dataSource;
707
+ }
686
708
  }
687
709
  }
688
710
  get dataSource() {
@@ -2475,6 +2497,16 @@ export let IgcDataGridComponent = /*@__PURE__*/ (() => {
2475
2497
  this.i.isActiveCellStyleEnabled = ensureBool(v);
2476
2498
  this._a("isActiveCellStyleEnabled", this.i.isActiveCellStyleEnabled);
2477
2499
  }
2500
+ /**
2501
+ * Prevents mouse events from bubbling out of the grid.
2502
+ */
2503
+ get stopPropagation() {
2504
+ return this.i.stopPropagation;
2505
+ }
2506
+ set stopPropagation(v) {
2507
+ this.i.stopPropagation = ensureBool(v);
2508
+ this._a("stopPropagation", this.i.stopPropagation);
2509
+ }
2478
2510
  /**
2479
2511
  * A set of states that can be applied to the columns of the grid based on available space.
2480
2512
  */
@@ -3270,7 +3302,7 @@ export let IgcDataGridComponent = /*@__PURE__*/ (() => {
3270
3302
  this.i.exchangeColumn((newColumn == null ? null : newColumn.i), (oldColumn == null ? null : oldColumn.i));
3271
3303
  }
3272
3304
  pinColumn(column, position) {
3273
- this.i.pinColumn((column == null ? null : column.i), (position == null ? null : position));
3305
+ this.i.pinColumn((column == null ? null : column.i), ensureEnum(PinnedPositions_$type, position));
3274
3306
  }
3275
3307
  moveColumn(oldIndex, newIndex) {
3276
3308
  this.i.moveColumn(oldIndex, newIndex);
@@ -3590,6 +3622,34 @@ export let IgcDataGridComponent = /*@__PURE__*/ (() => {
3590
3622
  loadLayout(json) {
3591
3623
  this.i.loadLayout(json);
3592
3624
  }
3625
+ registerIconFromText(iconCollection, iconName, iconText) {
3626
+ this.i.registerIconFromText(iconCollection, iconName, iconText);
3627
+ }
3628
+ getIconFromCache(iconCollection, iconName) {
3629
+ let iv = this.i.getIconFromCache(iconCollection, iconName);
3630
+ return (iv);
3631
+ }
3632
+ registerMultiPathSVG(iconCollection, iconName, multiPathSVG) {
3633
+ this.i.registerMultiPathSVG(iconCollection, iconName, multiPathSVG);
3634
+ }
3635
+ getMultiPathSVGFromCache(iconCollection, iconName) {
3636
+ let iv = this.i.getMultiPathSVGFromCache(iconCollection, iconName);
3637
+ return (iv);
3638
+ }
3639
+ registerIconFromDataURL(iconCollection, iconName, dataURL) {
3640
+ this.i.registerIconFromDataURL(iconCollection, iconName, dataURL);
3641
+ }
3642
+ getDataURLFromCache(iconCollection, iconName) {
3643
+ let iv = this.i.getDataURLFromCache(iconCollection, iconName);
3644
+ return (iv);
3645
+ }
3646
+ registerIconSource(iconCollection, iconName, source) {
3647
+ this.i.registerIconSource(iconCollection, iconName, source);
3648
+ }
3649
+ getIconSource(iconCollection, iconName) {
3650
+ let iv = this.i.getIconSource(iconCollection, iconName);
3651
+ return (iv);
3652
+ }
3593
3653
  get filterExpressionsChanging() {
3594
3654
  return this._filterExpressionsChanging;
3595
3655
  }
@@ -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.mt;
25
+ return this.i.n6;
26
26
  }
27
27
  set dateTimeValue(v) {
28
- this.i.mt = v;
28
+ this.i.n6 = 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.na;
34
+ return this.i.on;
35
35
  }
36
36
  set formatStringOverride(v) {
37
- this.i.na = v;
37
+ this.i.on = v;
38
38
  }
39
39
  get formatSpecifiers() {
40
- return this.i.mk;
40
+ return this.i.nx;
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.mk = v;
47
+ this.i.nx = 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.m3;
53
+ return this.i.og;
54
54
  }
55
55
  set formatOverride(v) {
56
- this.i.m3 = v;
56
+ this.i.og = 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.mp;
62
+ return this.i.n2;
63
63
  }
64
64
  set dateTimeFormat(v) {
65
- this.i.mp = ensureEnum(DateTimeFormats_$type, v);
65
+ this.i.n2 = 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.mr;
71
+ return this.i.n4;
72
72
  }
73
73
  set isOffsetValue(v) {
74
- this.i.mr = ensureBool(v);
74
+ this.i.n4 = ensureBool(v);
75
75
  }
76
76
  findByName(name) {
77
77
  var baseResult = super.findByName(name);
@@ -70,95 +70,95 @@ export let IgcDateTimeColumnComponent = /*@__PURE__*/ (() => {
70
70
  * Gets or sets the date time format to use for this column. If FormatString is specificied this value is ignored.
71
71
  */
72
72
  get dateTimeFormat() {
73
- return this.i.oa;
73
+ return this.i.pb;
74
74
  }
75
75
  set dateTimeFormat(v) {
76
- this.i.oa = ensureEnum(DateTimeFormats_$type, v);
77
- this._a("dateTimeFormat", enumToString(DateTimeFormats_$type, this.i.oa));
76
+ this.i.pb = ensureEnum(DateTimeFormats_$type, v);
77
+ this._a("dateTimeFormat", enumToString(DateTimeFormats_$type, this.i.pb));
78
78
  }
79
79
  /**
80
80
  * Gets or sets the format string to apply to the value. If set, the other value formatting properties on this column are ignored.
81
81
  */
82
82
  get formatString() {
83
- return this.i.os;
83
+ return this.i.pt;
84
84
  }
85
85
  set formatString(v) {
86
- this.i.os = v;
86
+ this.i.pt = v;
87
87
  }
88
88
  /**
89
89
  * Gets or sets the format string to use when editing dates.
90
90
  */
91
91
  get editorFormatString() {
92
- return this.i.ol;
92
+ return this.i.pm;
93
93
  }
94
94
  set editorFormatString(v) {
95
- this.i.ol = v;
95
+ this.i.pm = v;
96
96
  }
97
97
  get formatSpecifiers() {
98
- return this.i.n6;
98
+ return this.i.o7;
99
99
  }
100
100
  set formatSpecifiers(v) {
101
101
  if (v && !Array.isArray(v) && typeof (v) == "string") {
102
102
  const re = /\s*(?:,|\s|$)\s*/gm;
103
103
  v = v.split(re);
104
104
  }
105
- this.i.n6 = v;
105
+ this.i.o7 = v;
106
106
  }
107
107
  /**
108
108
  * Gets or sets the INTL DateTimeFormat object to use for formatting the date values.
109
109
  */
110
110
  get formatOverride() {
111
- return this.i.oh;
111
+ return this.i.pi;
112
112
  }
113
113
  set formatOverride(v) {
114
- this.i.oh = v;
114
+ this.i.pi = v;
115
115
  }
116
116
  /**
117
117
  * Gets or sets the ShowTodayButton property to detirmine if the today button is shown
118
118
  */
119
119
  get showTodayButton() {
120
- return this.i.od;
120
+ return this.i.pe;
121
121
  }
122
122
  set showTodayButton(v) {
123
- this.i.od = ensureBool(v);
124
- this._a("showTodayButton", this.i.od);
123
+ this.i.pe = ensureBool(v);
124
+ this._a("showTodayButton", this.i.pe);
125
125
  }
126
126
  /**
127
127
  * Gets or sets the editor type used for editing cells in this column.
128
128
  */
129
129
  get editorType() {
130
- return this.i.ob;
130
+ return this.i.pc;
131
131
  }
132
132
  set editorType(v) {
133
- this.i.ob = ensureEnum(EditorType_$type, v);
134
- this._a("editorType", enumToString(EditorType_$type, this.i.ob));
133
+ this.i.pc = ensureEnum(EditorType_$type, v);
134
+ this._a("editorType", enumToString(EditorType_$type, this.i.pc));
135
135
  }
136
136
  /**
137
137
  * Gets or sets the ComboBox data source.
138
138
  */
139
139
  get editorDataSource() {
140
- return this.i.og;
140
+ return this.i.ph;
141
141
  }
142
142
  set editorDataSource(v) {
143
- this.i.og = v;
143
+ this.i.ph = v;
144
144
  }
145
145
  /**
146
146
  * Gets or sets the ComboBox text field.
147
147
  */
148
148
  get editorTextField() {
149
- return this.i.on;
149
+ return this.i.po;
150
150
  }
151
151
  set editorTextField(v) {
152
- this.i.on = v;
152
+ this.i.po = v;
153
153
  }
154
154
  /**
155
155
  * Gets or sets the ComboBox value field.
156
156
  */
157
157
  get editorValueField() {
158
- return this.i.oo;
158
+ return this.i.pp;
159
159
  }
160
160
  set editorValueField(v) {
161
- this.i.oo = v;
161
+ this.i.pp = v;
162
162
  }
163
163
  findByName(name) {
164
164
  var baseResult = super.findByName(name);
@@ -4,6 +4,7 @@ import { CellContentVerticalAlignment_$type } from "./CellContentVerticalAlignme
4
4
  import { TextCellLineBreakMode_$type } from "./TextCellLineBreakMode";
5
5
  import { IgcDataBindingEventArgs } from "./igc-data-binding-event-args";
6
6
  import { IgcCellStyleRequestedEventArgs } from "./igc-cell-style-requested-event-args";
7
+ import { CellPropertyAnimationType_$type } from "./CellPropertyAnimationType";
7
8
  import { TypeRegistrar } from "igniteui-webcomponents-core";
8
9
  import { ensureBool, NamePatcher, getAllPropertyNames, fromSpinal, toSpinal, brushToString, stringToBrush, ensureEnum, enumToString, initializePropertiesFromCss, CollectionAdapter } from "igniteui-webcomponents-core";
9
10
  import { FontInfo } from "igniteui-webcomponents-core";
@@ -268,11 +269,11 @@ export let IgcDefinitionBaseComponent = /*@__PURE__*/ (() => {
268
269
  * Gets or sets the background color to use.
269
270
  */
270
271
  get background() {
271
- return brushToString(this.i.ge);
272
+ return brushToString(this.i.gf);
272
273
  }
273
274
  set background(v) {
274
- this.i.ge = stringToBrush(v);
275
- this._a("background", brushToString(this.i.ge));
275
+ this.i.gf = stringToBrush(v);
276
+ this._a("background", brushToString(this.i.gf));
276
277
  }
277
278
  get actualConditionalStyles() {
278
279
  if (!this._actualConditionalStyles) {
@@ -319,41 +320,41 @@ export let IgcDefinitionBaseComponent = /*@__PURE__*/ (() => {
319
320
  * Gets or sets the background color to use.
320
321
  */
321
322
  get border() {
322
- return brushToString(this.i.gh);
323
+ return brushToString(this.i.gi);
323
324
  }
324
325
  set border(v) {
325
- this.i.gh = stringToBrush(v);
326
- this._a("border", brushToString(this.i.gh));
326
+ this.i.gi = stringToBrush(v);
327
+ this._a("border", brushToString(this.i.gi));
327
328
  }
328
329
  /**
329
330
  * Gets or sets the background color to use.
330
331
  */
331
332
  get activationBorder() {
332
- return brushToString(this.i.f3);
333
+ return brushToString(this.i.f4);
333
334
  }
334
335
  set activationBorder(v) {
335
- this.i.f3 = stringToBrush(v);
336
- this._a("activationBorder", brushToString(this.i.f3));
336
+ this.i.f4 = stringToBrush(v);
337
+ this._a("activationBorder", brushToString(this.i.f4));
337
338
  }
338
339
  /**
339
340
  * Gets or sets the error border color to use.
340
341
  */
341
342
  get errorBorder() {
342
- return brushToString(this.i.gi);
343
+ return brushToString(this.i.gj);
343
344
  }
344
345
  set errorBorder(v) {
345
- this.i.gi = stringToBrush(v);
346
- this._a("errorBorder", brushToString(this.i.gi));
346
+ this.i.gj = stringToBrush(v);
347
+ this._a("errorBorder", brushToString(this.i.gj));
347
348
  }
348
349
  /**
349
350
  * Gets the actual border color that will be used.
350
351
  */
351
352
  get actualBorder() {
352
- return brushToString(this.i.f8);
353
+ return brushToString(this.i.f9);
353
354
  }
354
355
  set actualBorder(v) {
355
- this.i.f8 = stringToBrush(v);
356
- this._a("actualBorder", brushToString(this.i.f8));
356
+ this.i.f9 = stringToBrush(v);
357
+ this._a("actualBorder", brushToString(this.i.f9));
357
358
  }
358
359
  /**
359
360
  * Gets or sets the amount of left border to use for the cell content for this column.
@@ -467,91 +468,91 @@ export let IgcDefinitionBaseComponent = /*@__PURE__*/ (() => {
467
468
  * Gets the actual background color that will be used.
468
469
  */
469
470
  get actualBackground() {
470
- return brushToString(this.i.f5);
471
+ return brushToString(this.i.f6);
471
472
  }
472
473
  set actualBackground(v) {
473
- this.i.f5 = stringToBrush(v);
474
- this._a("actualBackground", brushToString(this.i.f5));
474
+ this.i.f6 = stringToBrush(v);
475
+ this._a("actualBackground", brushToString(this.i.f6));
475
476
  }
476
477
  /**
477
478
  * Gets the actual background color that will be used.
478
479
  */
479
480
  get actualActivationBorder() {
480
- return brushToString(this.i.f4);
481
+ return brushToString(this.i.f5);
481
482
  }
482
483
  set actualActivationBorder(v) {
483
- this.i.f4 = stringToBrush(v);
484
- this._a("actualActivationBorder", brushToString(this.i.f4));
484
+ this.i.f5 = stringToBrush(v);
485
+ this._a("actualActivationBorder", brushToString(this.i.f5));
485
486
  }
486
487
  /**
487
488
  * Gets the actual error border color that will be used.
488
489
  */
489
490
  get actualErrorBorder() {
490
- return brushToString(this.i.f9);
491
+ return brushToString(this.i.ga);
491
492
  }
492
493
  set actualErrorBorder(v) {
493
- this.i.f9 = stringToBrush(v);
494
- this._a("actualErrorBorder", brushToString(this.i.f9));
494
+ this.i.ga = stringToBrush(v);
495
+ this._a("actualErrorBorder", brushToString(this.i.ga));
495
496
  }
496
497
  /**
497
498
  * Gets or sets the background color for content that sticks to the top of the grid.
498
499
  */
499
500
  get stickyRowBackground() {
500
- return brushToString(this.i.gw);
501
+ return brushToString(this.i.gx);
501
502
  }
502
503
  set stickyRowBackground(v) {
503
- this.i.gw = stringToBrush(v);
504
- this._a("stickyRowBackground", brushToString(this.i.gw));
504
+ this.i.gx = stringToBrush(v);
505
+ this._a("stickyRowBackground", brushToString(this.i.gx));
505
506
  }
506
507
  /**
507
508
  * Gets the actual background color for content that sticks to the top of the grid.
508
509
  */
509
510
  get actualStickyRowBackground() {
510
- return brushToString(this.i.gc);
511
+ return brushToString(this.i.gd);
511
512
  }
512
513
  set actualStickyRowBackground(v) {
513
- this.i.gc = stringToBrush(v);
514
- this._a("actualStickyRowBackground", brushToString(this.i.gc));
514
+ this.i.gd = stringToBrush(v);
515
+ this._a("actualStickyRowBackground", brushToString(this.i.gd));
515
516
  }
516
517
  /**
517
518
  * Gets or sets the background color for cells belonging to rows marked as pinned.
518
519
  */
519
520
  get pinnedRowBackground() {
520
- return brushToString(this.i.gv);
521
+ return brushToString(this.i.gw);
521
522
  }
522
523
  set pinnedRowBackground(v) {
523
- this.i.gv = stringToBrush(v);
524
- this._a("pinnedRowBackground", brushToString(this.i.gv));
524
+ this.i.gw = stringToBrush(v);
525
+ this._a("pinnedRowBackground", brushToString(this.i.gw));
525
526
  }
526
527
  /**
527
528
  * Gets the actual background color for cells belonging to rows marked as pinned.
528
529
  */
529
530
  get actualPinnedRowBackground() {
530
- return brushToString(this.i.gb);
531
+ return brushToString(this.i.gc);
531
532
  }
532
533
  set actualPinnedRowBackground(v) {
533
- this.i.gb = stringToBrush(v);
534
- this._a("actualPinnedRowBackground", brushToString(this.i.gb));
534
+ this.i.gc = stringToBrush(v);
535
+ this._a("actualPinnedRowBackground", brushToString(this.i.gc));
535
536
  }
536
537
  /**
537
538
  * Gets or sets the color for the last row in the sticky row area.
538
539
  */
539
540
  get lastStickyRowBackground() {
540
- return brushToString(this.i.gu);
541
+ return brushToString(this.i.gv);
541
542
  }
542
543
  set lastStickyRowBackground(v) {
543
- this.i.gu = stringToBrush(v);
544
- this._a("lastStickyRowBackground", brushToString(this.i.gu));
544
+ this.i.gv = stringToBrush(v);
545
+ this._a("lastStickyRowBackground", brushToString(this.i.gv));
545
546
  }
546
547
  /**
547
548
  * Gets the actual color for the last row in the sticky row area.
548
549
  */
549
550
  get actualLastStickyRowBackground() {
550
- return brushToString(this.i.ga);
551
+ return brushToString(this.i.gb);
551
552
  }
552
553
  set actualLastStickyRowBackground(v) {
553
- this.i.ga = stringToBrush(v);
554
- this._a("actualLastStickyRowBackground", brushToString(this.i.ga));
554
+ this.i.gb = stringToBrush(v);
555
+ this._a("actualLastStickyRowBackground", brushToString(this.i.gb));
555
556
  }
556
557
  /**
557
558
  * Gets or sets the opacity of the content.
@@ -607,21 +608,21 @@ export let IgcDefinitionBaseComponent = /*@__PURE__*/ (() => {
607
608
  * Gets or sets the color to use for displaying text.
608
609
  */
609
610
  get textColor() {
610
- return brushToString(this.i.gx);
611
+ return brushToString(this.i.gy);
611
612
  }
612
613
  set textColor(v) {
613
- this.i.gx = stringToBrush(v);
614
- this._a("textColor", brushToString(this.i.gx));
614
+ this.i.gy = stringToBrush(v);
615
+ this._a("textColor", brushToString(this.i.gy));
615
616
  }
616
617
  /**
617
618
  * Gets the actual color used for displaying text.
618
619
  */
619
620
  get actualTextColor() {
620
- return brushToString(this.i.gd);
621
+ return brushToString(this.i.ge);
621
622
  }
622
623
  set actualTextColor(v) {
623
- this.i.gd = stringToBrush(v);
624
- this._a("actualTextColor", brushToString(this.i.gd));
624
+ this.i.ge = stringToBrush(v);
625
+ this._a("actualTextColor", brushToString(this.i.ge));
625
626
  }
626
627
  /**
627
628
  * Gets or sets whether the bar is supported.
@@ -637,41 +638,41 @@ export let IgcDefinitionBaseComponent = /*@__PURE__*/ (() => {
637
638
  * Gets or sets the color to use for value bars.
638
639
  */
639
640
  get barBackground() {
640
- return brushToString(this.i.gf);
641
+ return brushToString(this.i.gg);
641
642
  }
642
643
  set barBackground(v) {
643
- this.i.gf = stringToBrush(v);
644
- this._a("barBackground", brushToString(this.i.gf));
644
+ this.i.gg = stringToBrush(v);
645
+ this._a("barBackground", brushToString(this.i.gg));
645
646
  }
646
647
  /**
647
648
  * Gets the actual color used for value bars.
648
649
  */
649
650
  get actualBarBackground() {
650
- return brushToString(this.i.f6);
651
+ return brushToString(this.i.f7);
651
652
  }
652
653
  set actualBarBackground(v) {
653
- this.i.f6 = stringToBrush(v);
654
- this._a("actualBarBackground", brushToString(this.i.f6));
654
+ this.i.f7 = stringToBrush(v);
655
+ this._a("actualBarBackground", brushToString(this.i.f7));
655
656
  }
656
657
  /**
657
658
  * Gets or sets the Outline color to use for value bars.
658
659
  */
659
660
  get barOutline() {
660
- return brushToString(this.i.gg);
661
+ return brushToString(this.i.gh);
661
662
  }
662
663
  set barOutline(v) {
663
- this.i.gg = stringToBrush(v);
664
- this._a("barOutline", brushToString(this.i.gg));
664
+ this.i.gh = stringToBrush(v);
665
+ this._a("barOutline", brushToString(this.i.gh));
665
666
  }
666
667
  /**
667
668
  * Gets the actual Outline color used for value bars.
668
669
  */
669
670
  get actualBarOutline() {
670
- return brushToString(this.i.f7);
671
+ return brushToString(this.i.f8);
671
672
  }
672
673
  set actualBarOutline(v) {
673
- this.i.f7 = stringToBrush(v);
674
- this._a("actualBarOutline", brushToString(this.i.f7));
674
+ this.i.f8 = stringToBrush(v);
675
+ this._a("actualBarOutline", brushToString(this.i.f8));
675
676
  }
676
677
  /**
677
678
  * Gets or sets the stroke thickness to use for value bars.
@@ -760,17 +761,17 @@ export let IgcDefinitionBaseComponent = /*@__PURE__*/ (() => {
760
761
  return null;
761
762
  }
762
763
  transitionStyleOut(style) {
763
- this.i.e3((style == null ? null : style.i));
764
+ this.i.e4((style == null ? null : style.i));
764
765
  }
765
766
  transitionStyleIn(style) {
766
- this.i.e2((style == null ? null : style.i));
767
+ this.i.e3((style == null ? null : style.i));
767
768
  }
768
769
  isStyleTransitioningOut(style) {
769
770
  let iv = this.i.as((style == null ? null : style.i));
770
771
  return (iv);
771
772
  }
772
773
  setNamedValue(valueName, animationType, value) {
773
- this.i.e1(valueName, (animationType == null ? null : animationType), value);
774
+ this.i.e2(valueName, ensureEnum(CellPropertyAnimationType_$type, animationType), value);
774
775
  }
775
776
  /**
776
777
  * Returns if this definition has named value.
@@ -795,7 +796,7 @@ export let IgcDefinitionBaseComponent = /*@__PURE__*/ (() => {
795
796
  * @param valueName * The named value name to remove.
796
797
  */
797
798
  removeNamedValue(valueName) {
798
- this.i.ew(valueName);
799
+ this.i.ex(valueName);
799
800
  }
800
801
  /**
801
802
  * Gets the value for a named value from this definition.
@@ -803,7 +804,7 @@ export let IgcDefinitionBaseComponent = /*@__PURE__*/ (() => {
803
804
  * @param valueName * The named value name to check for.
804
805
  */
805
806
  getNamedValue(valueName) {
806
- let iv = this.i.co(valueName);
807
+ let iv = this.i.cp(valueName);
807
808
  return (iv);
808
809
  }
809
810
  /**