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
@@ -6,9 +6,9 @@ import { Type } from "igniteui-angular-core";
6
6
  */
7
7
  export declare class SectionHeaderCell extends GridCellBase {
8
8
  static $t: Type;
9
- private ck;
10
- get cl(): DomWrapper;
9
+ private ds;
10
+ get dt(): DomWrapper;
11
11
  constructor(a: DomRenderer);
12
- protected get_z(): boolean;
13
- protected bs(a: string, b: any, c: any): void;
12
+ protected get_ae(): boolean;
13
+ protected ch(a: string, b: any, c: any): void;
14
14
  }
@@ -6,16 +6,16 @@ import { Type } from "igniteui-angular-core";
6
6
  */
7
7
  export declare class SummaryCell extends GridCellBase {
8
8
  static $t: Type;
9
- private ck;
10
- get cn(): DomWrapper;
11
- private cl;
12
- get co(): DomWrapper;
13
- private cm;
14
- private cq;
15
- b9(a: number, b: number): void;
16
- private cp;
17
- b3(a: number, b: number): void;
9
+ private ds;
10
+ get dv(): DomWrapper;
11
+ private dt;
12
+ get dw(): DomWrapper;
13
+ private du;
14
+ private dy;
15
+ c8(a: number, b: number): void;
16
+ private dx;
17
+ cy(a: number, b: number): void;
18
18
  constructor(a: DomRenderer);
19
- protected get_z(): boolean;
20
- protected bs(a: string, b: any, c: any): void;
19
+ protected get_ae(): boolean;
20
+ protected ch(a: string, b: any, c: any): void;
21
21
  }
@@ -7,11 +7,11 @@ import { Type } from "igniteui-angular-core";
7
7
  */
8
8
  export declare class TemplateCell extends GridCellBase {
9
9
  static $t: Type;
10
- private ck;
11
- get cl(): TemplateCellContainer;
10
+ private ds;
11
+ get dt(): TemplateCellContainer;
12
12
  constructor(a: DomRenderer);
13
- protected get_z(): boolean;
14
- protected bs(a: string, b: any, c: any): void;
15
- bh(): void;
16
- private cm;
13
+ protected get_ae(): boolean;
14
+ protected ch(a: string, b: any, c: any): void;
15
+ b6(): void;
16
+ private du;
17
17
  }
@@ -12,8 +12,8 @@ export declare class TemplateHeader extends Header {
12
12
  static $t: Type;
13
13
  constructor();
14
14
  protected n(a: CellPath): CellModel;
15
- protected d2(a: CellPath, b: DataGrid, c: any): string;
16
- eo(a: CellModel, b: DataGrid, c: any, d: any): void;
17
- hq(a: TemplateHeaderCellModel, b: any): void;
15
+ protected d3(a: CellPath, b: DataGrid, c: any): string;
16
+ ep(a: CellModel, b: DataGrid, c: any, d: any): void;
17
+ hr(a: TemplateHeaderCellModel, b: any): void;
18
18
  cellUpdating: (sender: any, args: TemplateHeaderCellUpdatingEventArgs) => void;
19
19
  }
@@ -7,8 +7,8 @@ import { Type } from "igniteui-angular-core";
7
7
  */
8
8
  export declare class TemplateHeaderCell extends GridCellBase {
9
9
  static $t: Type;
10
- private ck;
11
- get cl(): TemplateCellContainer;
10
+ private ds;
11
+ get dt(): TemplateCellContainer;
12
12
  constructor(a: DomRenderer);
13
- protected get_x(): boolean;
13
+ protected get_ac(): boolean;
14
14
  }
@@ -6,12 +6,12 @@ import { CellModelExport } from "./CellModelExport";
6
6
  */
7
7
  export declare class TemplateHeaderCellModel extends TemplateCellModel {
8
8
  static $t: Type;
9
- static readonly mp: number;
10
- private mn;
11
- get mo(): boolean;
12
- set mo(a: boolean);
13
- ld(a: string, b: any): void;
14
- kp(a: string): Type;
15
- hm(a: string): any;
9
+ static readonly n2: number;
10
+ private n0;
11
+ get n1(): boolean;
12
+ set n1(a: boolean);
13
+ mk(a: string, b: any): void;
14
+ lw(a: string): Type;
15
+ ia(a: string): any;
16
16
  b(a: CellModelExport): CellModelExport;
17
17
  }
@@ -10,8 +10,8 @@ import { TemplateSectionHeaderCellUpdatingEventArgs } from "./TemplateSectionHea
10
10
  */
11
11
  export declare class TemplateSectionHeader extends SectionHeader {
12
12
  static $t: Type;
13
- protected d2(a: CellPath, b: DataGrid, c: any): string;
13
+ protected d3(a: CellPath, b: DataGrid, c: any): string;
14
14
  protected n(a: CellPath): CellModel;
15
- hu(a: TemplateSectionHeaderCellModel, b: any): void;
15
+ hv(a: TemplateSectionHeaderCellModel, b: any): void;
16
16
  cellUpdating: (sender: any, args: TemplateSectionHeaderCellUpdatingEventArgs) => void;
17
17
  }
package/lib/TextCell.d.ts CHANGED
@@ -1,18 +1,20 @@
1
1
  import { GridCellBase } from "./GridCellBase";
2
2
  import { DomWrapper, DomRenderer } from "igniteui-angular-core";
3
3
  import { Type } from "igniteui-angular-core";
4
+ import { FontInfo } from "igniteui-angular-core";
4
5
  /**
5
6
  * @hidden
6
7
  */
7
8
  export declare class TextCell extends GridCellBase {
8
9
  static $t: Type;
9
- private ck;
10
- get cl(): DomWrapper;
11
- private cn;
12
- b9(a: number, b: number): void;
13
- private cm;
14
- b3(a: number, b: number): void;
10
+ private ds;
11
+ get dt(): DomWrapper;
12
+ private dv;
13
+ c8(a: number, b: number): void;
14
+ private du;
15
+ cy(a: number, b: number): void;
15
16
  constructor(a: DomRenderer);
16
- protected get_z(): boolean;
17
- protected bs(a: string, b: any, c: any): void;
17
+ cx(a: DomWrapper, b: FontInfo): void;
18
+ protected get_ae(): boolean;
19
+ protected ch(a: string, b: any, c: any): void;
18
20
  }
@@ -0,0 +1,26 @@
1
+ import { Type } from "igniteui-angular-core";
2
+ /**
3
+ * Indicates how to decorate cell text.
4
+ */
5
+ export declare enum TextCellDecoration {
6
+ /**
7
+ * No decorations are applied.
8
+ */
9
+ None = 0,
10
+ /**
11
+ * Draws a line through the middle of the text.
12
+ */
13
+ Strikethrough = 1,
14
+ /**
15
+ * Draws a line above the text.
16
+ */
17
+ Overline = 2,
18
+ /**
19
+ * Draws a line beneath the text.
20
+ */
21
+ Underline = 3
22
+ }
23
+ /**
24
+ * @hidden
25
+ */
26
+ export declare let TextCellDecoration_$type: Type;
@@ -6,49 +6,51 @@ import { ColumnOptionsIconBehavior } from "./ColumnOptionsIconBehavior";
6
6
  import { ColumnOptionsIconAlignment } from "./ColumnOptionsIconAlignment";
7
7
  import { ICellActionManager } from "./ICellActionManager";
8
8
  import { Type } from "igniteui-angular-core";
9
+ import { FontInfo } from "igniteui-angular-core";
9
10
  import { CellContentHorizontalAlignment } from "./CellContentHorizontalAlignment";
10
11
  /**
11
12
  * @hidden
12
13
  */
13
14
  export declare class TextHeaderCell extends GridCellBase {
14
15
  static $t: Type;
15
- private cv;
16
- private cr;
17
- private cp;
18
- private cl;
19
- private ck;
20
- get cy(): DomWrapper;
21
- get cs(): GridSortIndicator;
22
- get cq(): GridFilterDialog;
23
- private cn;
24
- get co(): ColumnOptionsIconBehavior;
25
- set co(a: ColumnOptionsIconBehavior);
26
- get cm(): ColumnOptionsIconAlignment;
27
- set cm(a: ColumnOptionsIconAlignment);
28
- protected aa(a: ICellActionManager): boolean;
29
- private cx;
30
- private c0;
31
- b9(a: number, b: number): void;
32
- private cz;
33
- b3(a: number, b: number): void;
34
- protected ca(a: number, b: number, c: number, d: number): void;
16
+ private d3;
17
+ private dz;
18
+ private dx;
19
+ private dt;
20
+ private ds;
21
+ get d6(): DomWrapper;
22
+ get d0(): GridSortIndicator;
23
+ get dy(): GridFilterDialog;
24
+ private dv;
25
+ get dw(): ColumnOptionsIconBehavior;
26
+ set dw(a: ColumnOptionsIconBehavior);
27
+ get du(): ColumnOptionsIconAlignment;
28
+ set du(a: ColumnOptionsIconAlignment);
29
+ protected af(a: ICellActionManager): boolean;
30
+ private d5;
31
+ private d8;
32
+ c8(a: number, b: number): void;
33
+ private d7;
34
+ cy(a: number, b: number): void;
35
+ cx(a: DomWrapper, b: FontInfo): void;
36
+ protected c9(a: number, b: number, c: number, d: number): void;
35
37
  constructor(a: DomRenderer);
36
- private c3;
37
- private da;
38
- private c9;
39
- private c5;
40
- private c6;
41
- private c4;
42
- bq(a: DomWrapper, b: DomWrapper, c: CellContentHorizontalAlignment): void;
43
- b7(a: number, b: number, c: number, d: number): void;
44
- private c8;
45
- private c7;
46
- protected bs(a: string, b: any, c: any): void;
47
- private ct;
38
+ private eb;
39
+ private ei;
40
+ private eh;
41
+ private ed;
42
+ private ee;
43
+ private ec;
44
+ cf(a: DomWrapper, b: DomWrapper, c: CellContentHorizontalAlignment): void;
45
+ c3(a: number, b: number, c: number, d: number): void;
46
+ private eg;
47
+ private ef;
48
+ protected ch(a: string, b: any, c: any): void;
49
+ private d1;
48
50
  onContactStarted(e_: NormalizedEvent, a: boolean): void;
49
51
  onContactCompleted(e_: NormalizedEvent, a: boolean): void;
50
52
  detach(): void;
51
- protected get_x(): boolean;
52
- cw: DomWrapper;
53
- cu: boolean;
53
+ protected get_ac(): boolean;
54
+ d4: DomWrapper;
55
+ d2: boolean;
54
56
  }
@@ -8,14 +8,14 @@ import { Type } from "igniteui-angular-core";
8
8
  */
9
9
  export declare class VerticalSeparatorCell extends GridCellBase {
10
10
  static $t: Type;
11
- private cl;
12
- private ck;
13
- private cm;
14
- private cn;
11
+ private dt;
12
+ private ds;
13
+ private du;
14
+ private dv;
15
15
  constructor(a: DomRenderer);
16
- b1(a: Brush, b: number, c: number, d: number, e: number): void;
17
- b9(a: number, b: number): void;
18
- b0(a: Color): void;
19
- private cp;
20
- private co;
16
+ cu(a: Brush, b: number, c: number, d: number, e: number): void;
17
+ c8(a: number, b: number): void;
18
+ ct(a: Color): void;
19
+ private dx;
20
+ private dw;
21
21
  }
@@ -5,6 +5,7 @@ import { ColumnSortDirection } from "./ColumnSortDirection";
5
5
  import { CellModel as CellModel_internal } from "./CellModel";
6
6
  import { ICellActionManager } from "./ICellActionManager";
7
7
  import { PinnedPositions } from './PinnedPositions';
8
+ import { TextCellDecoration } from "./TextCellDecoration";
8
9
  /**
9
10
  * Represents info about the current cell.
10
11
  */
@@ -343,6 +344,68 @@ export declare abstract class IgxCellInfo {
343
344
  set font(v: string);
344
345
  get actualFont(): string;
345
346
  set actualFont(v: string);
347
+ /**
348
+ * Gets or sets the text to display in the suffix area of the cell.
349
+ */
350
+ get suffixText(): string;
351
+ set suffixText(v: string);
352
+ /**
353
+ * Gets or sets the color of the suffix text for the cell, if any.
354
+ */
355
+ get suffixTextColor(): string;
356
+ set suffixTextColor(v: string);
357
+ get suffixTextFont(): string;
358
+ set suffixTextFont(v: string);
359
+ /**
360
+ * Gets or sets the icon to display in the suffix area of the cell.
361
+ */
362
+ get suffixIconName(): string;
363
+ set suffixIconName(v: string);
364
+ /**
365
+ * Gets or sets the icon to display in the suffix area of the cell.
366
+ */
367
+ get suffixIconCollectionName(): string;
368
+ set suffixIconCollectionName(v: string);
369
+ /**
370
+ * Gets or sets the stroke color of the suffix icon.
371
+ */
372
+ get suffixIconStroke(): string;
373
+ set suffixIconStroke(v: string);
374
+ /**
375
+ * Gets or sets the fill color of the suffix icon.
376
+ */
377
+ get suffixIconFill(): string;
378
+ set suffixIconFill(v: string);
379
+ /**
380
+ * Gets or sets the suffix icon's viewbox x coordinate.
381
+ */
382
+ get suffixIconViewBoxLeft(): number;
383
+ set suffixIconViewBoxLeft(v: number);
384
+ static ngAcceptInputType_suffixIconViewBoxLeft: number | string;
385
+ /**
386
+ * Gets or sets the suffix icon's viewbox y coordinate.
387
+ */
388
+ get suffixIconViewBoxTop(): number;
389
+ set suffixIconViewBoxTop(v: number);
390
+ static ngAcceptInputType_suffixIconViewBoxTop: number | string;
391
+ /**
392
+ * Gets or sets the suffix icon's viewbox width.
393
+ */
394
+ get suffixIconViewBoxWidth(): number;
395
+ set suffixIconViewBoxWidth(v: number);
396
+ static ngAcceptInputType_suffixIconViewBoxWidth: number | string;
397
+ /**
398
+ * Gets or sets the suffix icon's viewbox height.
399
+ */
400
+ get suffixIconViewBoxHeight(): number;
401
+ set suffixIconViewBoxHeight(v: number);
402
+ static ngAcceptInputType_suffixIconViewBoxHeight: number | string;
403
+ /**
404
+ * Gets or sets the text decorations to apply to the cell text.
405
+ */
406
+ get textDecoration(): TextCellDecoration;
407
+ set textDecoration(v: TextCellDecoration);
408
+ static ngAcceptInputType_textDecoration: TextCellDecoration | string;
346
409
  /**
347
410
  * Gets or sets the line break mode to use if text is present in the cell.
348
411
  */
@@ -11,6 +11,7 @@ import { MergedCellEvaluationCriteria } from "./MergedCellEvaluationCriteria";
11
11
  import { CellContentVerticalAlignment } from "./CellContentVerticalAlignment";
12
12
  import { FilterComparisonType } from "./FilterComparisonType";
13
13
  import { IgxGridFilterOperandsCollection } from "./igx-grid-filter-operands-collection";
14
+ import { TextCellDecoration } from "./TextCellDecoration";
14
15
  import { IgxFormatCellEventArgs } from "./igx-format-cell-event-args";
15
16
  import { CellPropertyAnimationType } from "./CellPropertyAnimationType";
16
17
  import { IgxDefinitionBaseComponent } from "./igx-definition-base-component";
@@ -349,6 +350,71 @@ export declare abstract class IgxDataGridColumnComponent extends IgxDefinitionBa
349
350
  get filterOperands(): IgxGridFilterOperandsCollection;
350
351
  set filterOperands(v: IgxGridFilterOperandsCollection);
351
352
  static ngAcceptInputType_filterOperands: IgxGridFilterOperandsCollection | string;
353
+ /**
354
+ * Gets or sets the text to display in the suffix area of cells in this column.
355
+ */
356
+ get suffixText(): string;
357
+ set suffixText(v: string);
358
+ /**
359
+ * Gets or sets the color of the text in the suffix area of the cells in this column.
360
+ */
361
+ get suffixTextColor(): string;
362
+ set suffixTextColor(v: string);
363
+ /**
364
+ * Gets or sets the font of the suffix text.
365
+ */
366
+ get suffixTextStyle(): string;
367
+ set suffixTextStyle(v: string);
368
+ /**
369
+ * Gets or sets the icon to use in the suffix area of the cells in this column.
370
+ */
371
+ get suffixIconName(): string;
372
+ set suffixIconName(v: string);
373
+ /**
374
+ * Gets or sets the icon to use in the suffix area of the cells in this column.
375
+ */
376
+ get suffixIconCollectionName(): string;
377
+ set suffixIconCollectionName(v: string);
378
+ /**
379
+ * Gets or sets the stroke color of suffix icon.
380
+ */
381
+ get suffixIconStroke(): string;
382
+ set suffixIconStroke(v: string);
383
+ /**
384
+ * Gets or sets the fill color of suffix icon.
385
+ */
386
+ get suffixIconFill(): string;
387
+ set suffixIconFill(v: string);
388
+ /**
389
+ * Gets or sets the suffix icon's viewbox x coordinate.
390
+ */
391
+ get suffixIconViewBoxLeft(): number;
392
+ set suffixIconViewBoxLeft(v: number);
393
+ static ngAcceptInputType_suffixIconViewBoxLeft: number | string;
394
+ /**
395
+ * Gets or sets the suffix icon's viewbox y coordinate.
396
+ */
397
+ get suffixIconViewBoxTop(): number;
398
+ set suffixIconViewBoxTop(v: number);
399
+ static ngAcceptInputType_suffixIconViewBoxTop: number | string;
400
+ /**
401
+ * Gets or sets the suffix icon's viewbox width.
402
+ */
403
+ get suffixIconViewBoxWidth(): number;
404
+ set suffixIconViewBoxWidth(v: number);
405
+ static ngAcceptInputType_suffixIconViewBoxWidth: number | string;
406
+ /**
407
+ * Gets or sets the suffix icon's viewbox height.
408
+ */
409
+ get suffixIconViewBoxHeight(): number;
410
+ set suffixIconViewBoxHeight(v: number);
411
+ static ngAcceptInputType_suffixIconViewBoxHeight: number | string;
412
+ /**
413
+ * Gets or sets the text decoration to apply to cells in this column.
414
+ */
415
+ get textDecoration(): TextCellDecoration;
416
+ set textDecoration(v: TextCellDecoration);
417
+ static ngAcceptInputType_textDecoration: TextCellDecoration | string;
352
418
  findByName(name: string): any;
353
419
  protected _styling(container: any, component: any, parent?: any): void;
354
420
  /**
@@ -356,7 +422,7 @@ export declare abstract class IgxDataGridColumnComponent extends IgxDefinitionBa
356
422
 
357
423
  */
358
424
  getUniqueKey(): string;
359
- setNamedHeaderValue(valueName: string, animationType: CellPropertyAnimationType, value: any): void;
425
+ setNamedHeaderValue(valueName: string, animationType: CellPropertyAnimationType | string, value: any): void;
360
426
  /**
361
427
  * Returns if the column has named header values.
362
428
 
@@ -397,5 +463,5 @@ export declare abstract class IgxDataGridColumnComponent extends IgxDefinitionBa
397
463
  private _actualHeaderTextChange;
398
464
  get actualHeaderTextChange(): EventEmitter<string>;
399
465
  static ɵfac: i0.ɵɵFactoryDeclaration<IgxDataGridColumnComponent, never>;
400
- static ɵcmp: i0.ɵɵComponentDeclaration<IgxDataGridColumnComponent, "ng-component", never, { "paddingLeft": "paddingLeft"; "paddingTop": "paddingTop"; "paddingRight": "paddingRight"; "paddingBottom": "paddingBottom"; "name": "name"; "field": "field"; "headerText": "headerText"; "actualHeaderText": "actualHeaderText"; "selectedBackground": "selectedBackground"; "actualSelectedBackground": "actualSelectedBackground"; "rowHoverBackground": "rowHoverBackground"; "actualHoverBackground": "actualHoverBackground"; "rowHoverTextColor": "rowHoverTextColor"; "actualRowHoverTextColor": "actualRowHoverTextColor"; "animationSettings": "animationSettings"; "width": "width"; "minWidth": "minWidth"; "isFromMarkup": "isFromMarkup"; "isAutoGenerated": "isAutoGenerated"; "filter": "filter"; "filterExpression": "filterExpression"; "header": "header"; "isFilteringEnabled": "isFilteringEnabled"; "isResizingEnabled": "isResizingEnabled"; "isHidden": "isHidden"; "shouldRemoveWhenHidden": "shouldRemoveWhenHidden"; "sortDirection": "sortDirection"; "pinned": "pinned"; "actualColumnOptionsIconAlignment": "actualColumnOptionsIconAlignment"; "columnOptionsIconAlignment": "columnOptionsIconAlignment"; "actualColumnOptionsIconColor": "actualColumnOptionsIconColor"; "columnOptionsIconColor": "columnOptionsIconColor"; "columnOptionsIconBehavior": "columnOptionsIconBehavior"; "actualColumnOptionsIconBehavior": "actualColumnOptionsIconBehavior"; "actualIsColumnOptionsEnabled": "actualIsColumnOptionsEnabled"; "isColumnOptionsEnabled": "isColumnOptionsEnabled"; "actualIsColumnOptionsSummariesEnabled": "actualIsColumnOptionsSummariesEnabled"; "isColumnOptionsSummariesEnabled": "isColumnOptionsSummariesEnabled"; "actualIsColumnOptionsGroupingEnabled": "actualIsColumnOptionsGroupingEnabled"; "isColumnOptionsGroupingEnabled": "isColumnOptionsGroupingEnabled"; "isEditable": "isEditable"; "deletedTextColor": "deletedTextColor"; "actualDeletedTextColor": "actualDeletedTextColor"; "editOpacity": "editOpacity"; "actualEditOpacity": "actualEditOpacity"; "textEditStyle": "textEditStyle"; "actualEditFontInfo": "actualEditFontInfo"; "mergedCellMode": "mergedCellMode"; "mergedCellEvaluationCriteria": "mergedCellEvaluationCriteria"; "mergedCellVerticalAlignment": "mergedCellVerticalAlignment"; "mergedCellPaddingLeft": "mergedCellPaddingLeft"; "mergedCellPaddingTop": "mergedCellPaddingTop"; "mergedCellPaddingRight": "mergedCellPaddingRight"; "mergedCellPaddingBottom": "mergedCellPaddingBottom"; "filterComparisonType": "filterComparisonType"; "filterOperands": "filterOperands"; }, { "formatCell": "formatCell"; "actualHeaderTextChange": "actualHeaderTextChange"; }, never, never>;
466
+ static ɵcmp: i0.ɵɵComponentDeclaration<IgxDataGridColumnComponent, "ng-component", never, { "paddingLeft": "paddingLeft"; "paddingTop": "paddingTop"; "paddingRight": "paddingRight"; "paddingBottom": "paddingBottom"; "name": "name"; "field": "field"; "headerText": "headerText"; "actualHeaderText": "actualHeaderText"; "selectedBackground": "selectedBackground"; "actualSelectedBackground": "actualSelectedBackground"; "rowHoverBackground": "rowHoverBackground"; "actualHoverBackground": "actualHoverBackground"; "rowHoverTextColor": "rowHoverTextColor"; "actualRowHoverTextColor": "actualRowHoverTextColor"; "animationSettings": "animationSettings"; "width": "width"; "minWidth": "minWidth"; "isFromMarkup": "isFromMarkup"; "isAutoGenerated": "isAutoGenerated"; "filter": "filter"; "filterExpression": "filterExpression"; "header": "header"; "isFilteringEnabled": "isFilteringEnabled"; "isResizingEnabled": "isResizingEnabled"; "isHidden": "isHidden"; "shouldRemoveWhenHidden": "shouldRemoveWhenHidden"; "sortDirection": "sortDirection"; "pinned": "pinned"; "actualColumnOptionsIconAlignment": "actualColumnOptionsIconAlignment"; "columnOptionsIconAlignment": "columnOptionsIconAlignment"; "actualColumnOptionsIconColor": "actualColumnOptionsIconColor"; "columnOptionsIconColor": "columnOptionsIconColor"; "columnOptionsIconBehavior": "columnOptionsIconBehavior"; "actualColumnOptionsIconBehavior": "actualColumnOptionsIconBehavior"; "actualIsColumnOptionsEnabled": "actualIsColumnOptionsEnabled"; "isColumnOptionsEnabled": "isColumnOptionsEnabled"; "actualIsColumnOptionsSummariesEnabled": "actualIsColumnOptionsSummariesEnabled"; "isColumnOptionsSummariesEnabled": "isColumnOptionsSummariesEnabled"; "actualIsColumnOptionsGroupingEnabled": "actualIsColumnOptionsGroupingEnabled"; "isColumnOptionsGroupingEnabled": "isColumnOptionsGroupingEnabled"; "isEditable": "isEditable"; "deletedTextColor": "deletedTextColor"; "actualDeletedTextColor": "actualDeletedTextColor"; "editOpacity": "editOpacity"; "actualEditOpacity": "actualEditOpacity"; "textEditStyle": "textEditStyle"; "actualEditFontInfo": "actualEditFontInfo"; "mergedCellMode": "mergedCellMode"; "mergedCellEvaluationCriteria": "mergedCellEvaluationCriteria"; "mergedCellVerticalAlignment": "mergedCellVerticalAlignment"; "mergedCellPaddingLeft": "mergedCellPaddingLeft"; "mergedCellPaddingTop": "mergedCellPaddingTop"; "mergedCellPaddingRight": "mergedCellPaddingRight"; "mergedCellPaddingBottom": "mergedCellPaddingBottom"; "filterComparisonType": "filterComparisonType"; "filterOperands": "filterOperands"; "suffixText": "suffixText"; "suffixTextColor": "suffixTextColor"; "suffixTextStyle": "suffixTextStyle"; "suffixIconName": "suffixIconName"; "suffixIconCollectionName": "suffixIconCollectionName"; "suffixIconStroke": "suffixIconStroke"; "suffixIconFill": "suffixIconFill"; "suffixIconViewBoxLeft": "suffixIconViewBoxLeft"; "suffixIconViewBoxTop": "suffixIconViewBoxTop"; "suffixIconViewBoxWidth": "suffixIconViewBoxWidth"; "suffixIconViewBoxHeight": "suffixIconViewBoxHeight"; "textDecoration": "textDecoration"; }, { "formatCell": "formatCell"; "actualHeaderTextChange": "actualHeaderTextChange"; }, never, never>;
401
467
  }
@@ -145,6 +145,7 @@ export declare class IgxDataGridComponent implements OnInit, AfterContentInit {
145
145
  ngAfterContentInit(): void;
146
146
  ngAfterViewInit(): void;
147
147
  ngOnDestroy(): void;
148
+ private onMouseEvent;
148
149
  get actualDataSource(): IDataSource;
149
150
  private _contentLayout;
150
151
  private _contentDiv;
@@ -856,6 +857,12 @@ export declare class IgxDataGridComponent implements OnInit, AfterContentInit {
856
857
  get isActiveCellStyleEnabled(): boolean;
857
858
  set isActiveCellStyleEnabled(v: boolean);
858
859
  static ngAcceptInputType_isActiveCellStyleEnabled: boolean | string;
860
+ /**
861
+ * Prevents mouse events from bubbling out of the grid.
862
+ */
863
+ get stopPropagation(): boolean;
864
+ set stopPropagation(v: boolean);
865
+ static ngAcceptInputType_stopPropagation: boolean | string;
859
866
  private _responsiveStates;
860
867
  /**
861
868
  * A set of states that can be applied to the columns of the grid based on available space.
@@ -1151,7 +1158,7 @@ export declare class IgxDataGridComponent implements OnInit, AfterContentInit {
1151
1158
  notifyScrollStart(): void;
1152
1159
  notifyScrollStop(): void;
1153
1160
  exchangeColumn(newColumn: IgxDataGridColumnComponent, oldColumn: IgxDataGridColumnComponent): void;
1154
- pinColumn(column: IgxDataGridColumnComponent, position: PinnedPositions): void;
1161
+ pinColumn(column: IgxDataGridColumnComponent, position: PinnedPositions | string): void;
1155
1162
  moveColumn(oldIndex: number, newIndex: number): void;
1156
1163
  /**
1157
1164
  * Moves a column to the left, if possible.
@@ -1590,5 +1597,5 @@ export declare class IgxDataGridComponent implements OnInit, AfterContentInit {
1590
1597
  protected _zoneRunner: (act: () => void) => void;
1591
1598
  protected _runInZone(act: () => void): void;
1592
1599
  static ɵfac: i0.ɵɵFactoryDeclaration<IgxDataGridComponent, never>;
1593
- static ɵcmp: i0.ɵɵComponentDeclaration<IgxDataGridComponent, "igx-data-grid", never, { "height": "height"; "width": "width"; "dataSource": "dataSource"; "columnResizingMode": "columnResizingMode"; "columnMovingMode": "columnMovingMode"; "isRowHoverEnabled": "isRowHoverEnabled"; "rowHoverBackground": "rowHoverBackground"; "rowHoverTextColor": "rowHoverTextColor"; "editRowBorder": "editRowBorder"; "editRowBorderWidthBottom": "editRowBorderWidthBottom"; "editRowBorderWidthLeft": "editRowBorderWidthLeft"; "editRowBorderWidthRight": "editRowBorderWidthRight"; "editRowBorderWidthTop": "editRowBorderWidthTop"; "sectionHeader": "sectionHeader"; "summaryRowRoot": "summaryRowRoot"; "summaryRowSection": "summaryRowSection"; "rowSeparator": "rowSeparator"; "headerRowSeparator": "headerRowSeparator"; "headerSeparator": "headerSeparator"; "columnResizingSeparator": "columnResizingSeparator"; "columnMovingSeparator": "columnMovingSeparator"; "pinnedAreaSeparator": "pinnedAreaSeparator"; "autoGenerateDesiredProperties": "autoGenerateDesiredProperties"; "dataSourceDesiredProperties": "dataSourceDesiredProperties"; "density": "density"; "actualRowHeight": "actualRowHeight"; "rowHeight": "rowHeight"; "defaultColumnMinWidth": "defaultColumnMinWidth"; "actualHeaderHeight": "actualHeaderHeight"; "headerHeight": "headerHeight"; "headerClickAction": "headerClickAction"; "editMode": "editMode"; "editModeClickAction": "editModeClickAction"; "editOnKeyPress": "editOnKeyPress"; "autoGenerateColumns": "autoGenerateColumns"; "rowSeparatorHeight": "rowSeparatorHeight"; "isPlaceholderRenderingEnabled": "isPlaceholderRenderingEnabled"; "columnAddingAnimationMode": "columnAddingAnimationMode"; "columnPropertyUpdatingAnimationMode": "columnPropertyUpdatingAnimationMode"; "cellDataLoadedAnimationMode": "cellDataLoadedAnimationMode"; "rowSelectionAnimationMode": "rowSelectionAnimationMode"; "rowHoverAnimationMode": "rowHoverAnimationMode"; "cellSelectionAnimationMode": "cellSelectionAnimationMode"; "animationSettings": "animationSettings"; "columnResizingAnimationMode": "columnResizingAnimationMode"; "columnShowingAnimationMode": "columnShowingAnimationMode"; "columnMovingAnimationMode": "columnMovingAnimationMode"; "columnHidingAnimationMode": "columnHidingAnimationMode"; "columnExchangingAnimationMode": "columnExchangingAnimationMode"; "selectionMode": "selectionMode"; "activationMode": "activationMode"; "selectionBehavior": "selectionBehavior"; "mouseDragSelectionEnabled": "mouseDragSelectionEnabled"; "selectedItems": "selectedItems"; "selectedKeys": "selectedKeys"; "selectedCells": "selectedCells"; "selectedCellRanges": "selectedCellRanges"; "pinnedItems": "pinnedItems"; "pinnedKeys": "pinnedKeys"; "isColumnOptionsEnabled": "isColumnOptionsEnabled"; "isGroupRowSticky": "isGroupRowSticky"; "isHeaderSeparatorVisible": "isHeaderSeparatorVisible"; "cellSelectedBackground": "cellSelectedBackground"; "sectionHeaderSelectedBackground": "sectionHeaderSelectedBackground"; "summaryRootBackground": "summaryRootBackground"; "summarySectionBackground": "summarySectionBackground"; "pinnedRowOpacity": "pinnedRowOpacity"; "editTextStyle": "editTextStyle"; "editOpacity": "editOpacity"; "deletedTextColor": "deletedTextColor"; "stickyRowBackground": "stickyRowBackground"; "pinnedRowBackground": "pinnedRowBackground"; "lastStickyRowBackground": "lastStickyRowBackground"; "activeCell": "activeCell"; "cellBackground": "cellBackground"; "cellTextColor": "cellTextColor"; "headerSortIndicatorColor": "headerSortIndicatorColor"; "headerSortIndicatorStyle": "headerSortIndicatorStyle"; "cellTextStyle": "cellTextStyle"; "sectionHeaderBackground": "sectionHeaderBackground"; "sectionHeaderTextColor": "sectionHeaderTextColor"; "sectionHeaderTextStyle": "sectionHeaderTextStyle"; "summaryRootLabelTextStyle": "summaryRootLabelTextStyle"; "summarySectionLabelTextStyle": "summarySectionLabelTextStyle"; "summaryRootValueTextColor": "summaryRootValueTextColor"; "summaryRootValueTextStyle": "summaryRootValueTextStyle"; "summarySectionValueTextStyle": "summarySectionValueTextStyle"; "summarySectionValueTextColor": "summarySectionValueTextColor"; "summaryRootLabelTextColor": "summaryRootLabelTextColor"; "summarySectionLabelTextColor": "summarySectionLabelTextColor"; "summaryRootSelectedBackground": "summaryRootSelectedBackground"; "summarySectionSelectedBackground": "summarySectionSelectedBackground"; "pinnedAreaSeparatorWidth": "pinnedAreaSeparatorWidth"; "headerSeparatorWidth": "headerSeparatorWidth"; "headerSeparatorBackground": "headerSeparatorBackground"; "headerBackground": "headerBackground"; "headerTextColor": "headerTextColor"; "headerTextStyle": "headerTextStyle"; "rowSeparatorBackground": "rowSeparatorBackground"; "headerRowSeparatorBackground": "headerRowSeparatorBackground"; "rowSeparatorStickyRowBackground": "rowSeparatorStickyRowBackground"; "rowSeparatorLastStickyRowBackground": "rowSeparatorLastStickyRowBackground"; "rowSeparatorPinnedRowBackground": "rowSeparatorPinnedRowBackground"; "columnResizingSeparatorWidth": "columnResizingSeparatorWidth"; "columnResizingSeparatorOpacity": "columnResizingSeparatorOpacity"; "columnMovingSeparatorWidth": "columnMovingSeparatorWidth"; "columnMovingSeparatorOpacity": "columnMovingSeparatorOpacity"; "columnResizingSeparatorBackground": "columnResizingSeparatorBackground"; "columnMovingSeparatorBackground": "columnMovingSeparatorBackground"; "shiftSectionContent": "shiftSectionContent"; "columnOptionsIconAlignment": "columnOptionsIconAlignment"; "columnOptionsIconColor": "columnOptionsIconColor"; "columnOptionsIconBehavior": "columnOptionsIconBehavior"; "border": "border"; "actualBorderWidth": "actualBorderWidth"; "borderWidthBottom": "borderWidthBottom"; "borderWidthLeft": "borderWidthLeft"; "borderWidthRight": "borderWidthRight"; "borderWidthTop": "borderWidthTop"; "notifyOnAllSelectionChanges": "notifyOnAllSelectionChanges"; "cornerRadiusBottomRight": "cornerRadiusBottomRight"; "cornerRadiusBottomLeft": "cornerRadiusBottomLeft"; "cornerRadiusTopLeft": "cornerRadiusTopLeft"; "cornerRadiusTopRight": "cornerRadiusTopRight"; "actualCornerRadiusBottomRight": "actualCornerRadiusBottomRight"; "actualCornerRadiusBottomLeft": "actualCornerRadiusBottomLeft"; "actualCornerRadiusTopLeft": "actualCornerRadiusTopLeft"; "actualCornerRadiusTopRight": "actualCornerRadiusTopRight"; "isActiveCellStyleEnabled": "isActiveCellStyleEnabled"; "responsiveStates": "responsiveStates"; "initialSorts": "initialSorts"; "initialGroups": "initialGroups"; "initialSummaries": "initialSummaries"; "summaryScope": "summaryScope"; "isGroupCollapsable": "isGroupCollapsable"; "groupHeaderDisplayMode": "groupHeaderDisplayMode"; "isGroupExpandedDefault": "isGroupExpandedDefault"; "groupSummaryDisplayMode": "groupSummaryDisplayMode"; "autoAcceptEdits": "autoAcceptEdits"; "primaryKey": "primaryKey"; "actualPrimaryKey": "actualPrimaryKey"; "actualColumns": "actualColumns"; "reactsToSortChanges": "reactsToSortChanges"; "reactsToGroupChanges": "reactsToGroupChanges"; "reactsToFilterChanges": "reactsToFilterChanges"; "enterBehavior": "enterBehavior"; "enterBehaviorAfterEdit": "enterBehaviorAfterEdit"; "isColumnOptionsSummariesEnabled": "isColumnOptionsSummariesEnabled"; "isColumnOptionsGroupingEnabled": "isColumnOptionsGroupingEnabled"; "mergedCellMode": "mergedCellMode"; "mergedCellEvaluationCriteria": "mergedCellEvaluationCriteria"; "mergedCellVerticalAlignment": "mergedCellVerticalAlignment"; "filterUIType": "filterUIType"; "filterLogicalOperator": "filterLogicalOperator"; "filterComparisonType": "filterComparisonType"; "todayOverride": "todayOverride"; "clearSelectionOnEscape": "clearSelectionOnEscape"; "pageSize": "pageSize"; "isToolbarColumnChooserVisible": "isToolbarColumnChooserVisible"; "isToolbarColumnPinningVisible": "isToolbarColumnPinningVisible"; "toolbarTitle": "toolbarTitle"; "toolbarColumnChooserText": "toolbarColumnChooserText"; "toolbarColumnChooserTitle": "toolbarColumnChooserTitle"; "toolbarColumnPinningText": "toolbarColumnPinningText"; "toolbarColumnPinningTitle": "toolbarColumnPinningTitle"; "scrollbarStyle": "scrollbarStyle"; "scrollbarBackground": "scrollbarBackground"; "allowCopyOperation": "allowCopyOperation"; "deferEventForRowDragSelection": "deferEventForRowDragSelection"; }, { "filterExpressionsChanging": "filterExpressionsChanging"; "filterExpressionsChanged": "filterExpressionsChanged"; "cellPreviewPointerDown": "cellPreviewPointerDown"; "cellPreviewPointerUp": "cellPreviewPointerUp"; "cellPointerDown": "cellPointerDown"; "cellPointerUp": "cellPointerUp"; "cellClicked": "cellClicked"; "sortDescriptionsChanged": "sortDescriptionsChanged"; "groupDescriptionsChanged": "groupDescriptionsChanged"; "summaryDescriptionsChanged": "summaryDescriptionsChanged"; "columnHiddenChanged": "columnHiddenChanged"; "columnPinnedChanged": "columnPinnedChanged"; "cellValueChanging": "cellValueChanging"; "dataCommitted": "dataCommitted"; "dataCommitting": "dataCommitting"; "rootSummariesChanged": "rootSummariesChanged"; "sizeChanged": "sizeChanged"; "actualColumnsChanged": "actualColumnsChanged"; "columnsAutoGenerated": "columnsAutoGenerated"; "selectedItemsChanged": "selectedItemsChanged"; "selectedKeysChanged": "selectedKeysChanged"; "selectedCellsChanged": "selectedCellsChanged"; "selectionChanged": "selectionChanged"; "activeCellChanged": "activeCellChanged"; "selectedCellRangesChanged": "selectedCellRangesChanged"; "columnWidthChanged": "columnWidthChanged"; "cellEditStarted": "cellEditStarted"; "cellEditEnded": "cellEditEnded"; "rowEditStarted": "rowEditStarted"; "rowEditEnded": "rowEditEnded"; "customFilterRequested": "customFilterRequested"; "actualPrimaryKeyChange": "actualPrimaryKeyChange"; }, ["contentColumns"], never>;
1600
+ static ɵcmp: i0.ɵɵComponentDeclaration<IgxDataGridComponent, "igx-data-grid", never, { "height": "height"; "width": "width"; "dataSource": "dataSource"; "columnResizingMode": "columnResizingMode"; "columnMovingMode": "columnMovingMode"; "isRowHoverEnabled": "isRowHoverEnabled"; "rowHoverBackground": "rowHoverBackground"; "rowHoverTextColor": "rowHoverTextColor"; "editRowBorder": "editRowBorder"; "editRowBorderWidthBottom": "editRowBorderWidthBottom"; "editRowBorderWidthLeft": "editRowBorderWidthLeft"; "editRowBorderWidthRight": "editRowBorderWidthRight"; "editRowBorderWidthTop": "editRowBorderWidthTop"; "sectionHeader": "sectionHeader"; "summaryRowRoot": "summaryRowRoot"; "summaryRowSection": "summaryRowSection"; "rowSeparator": "rowSeparator"; "headerRowSeparator": "headerRowSeparator"; "headerSeparator": "headerSeparator"; "columnResizingSeparator": "columnResizingSeparator"; "columnMovingSeparator": "columnMovingSeparator"; "pinnedAreaSeparator": "pinnedAreaSeparator"; "autoGenerateDesiredProperties": "autoGenerateDesiredProperties"; "dataSourceDesiredProperties": "dataSourceDesiredProperties"; "density": "density"; "actualRowHeight": "actualRowHeight"; "rowHeight": "rowHeight"; "defaultColumnMinWidth": "defaultColumnMinWidth"; "actualHeaderHeight": "actualHeaderHeight"; "headerHeight": "headerHeight"; "headerClickAction": "headerClickAction"; "editMode": "editMode"; "editModeClickAction": "editModeClickAction"; "editOnKeyPress": "editOnKeyPress"; "autoGenerateColumns": "autoGenerateColumns"; "rowSeparatorHeight": "rowSeparatorHeight"; "isPlaceholderRenderingEnabled": "isPlaceholderRenderingEnabled"; "columnAddingAnimationMode": "columnAddingAnimationMode"; "columnPropertyUpdatingAnimationMode": "columnPropertyUpdatingAnimationMode"; "cellDataLoadedAnimationMode": "cellDataLoadedAnimationMode"; "rowSelectionAnimationMode": "rowSelectionAnimationMode"; "rowHoverAnimationMode": "rowHoverAnimationMode"; "cellSelectionAnimationMode": "cellSelectionAnimationMode"; "animationSettings": "animationSettings"; "columnResizingAnimationMode": "columnResizingAnimationMode"; "columnShowingAnimationMode": "columnShowingAnimationMode"; "columnMovingAnimationMode": "columnMovingAnimationMode"; "columnHidingAnimationMode": "columnHidingAnimationMode"; "columnExchangingAnimationMode": "columnExchangingAnimationMode"; "selectionMode": "selectionMode"; "activationMode": "activationMode"; "selectionBehavior": "selectionBehavior"; "mouseDragSelectionEnabled": "mouseDragSelectionEnabled"; "selectedItems": "selectedItems"; "selectedKeys": "selectedKeys"; "selectedCells": "selectedCells"; "selectedCellRanges": "selectedCellRanges"; "pinnedItems": "pinnedItems"; "pinnedKeys": "pinnedKeys"; "isColumnOptionsEnabled": "isColumnOptionsEnabled"; "isGroupRowSticky": "isGroupRowSticky"; "isHeaderSeparatorVisible": "isHeaderSeparatorVisible"; "cellSelectedBackground": "cellSelectedBackground"; "sectionHeaderSelectedBackground": "sectionHeaderSelectedBackground"; "summaryRootBackground": "summaryRootBackground"; "summarySectionBackground": "summarySectionBackground"; "pinnedRowOpacity": "pinnedRowOpacity"; "editTextStyle": "editTextStyle"; "editOpacity": "editOpacity"; "deletedTextColor": "deletedTextColor"; "stickyRowBackground": "stickyRowBackground"; "pinnedRowBackground": "pinnedRowBackground"; "lastStickyRowBackground": "lastStickyRowBackground"; "activeCell": "activeCell"; "cellBackground": "cellBackground"; "cellTextColor": "cellTextColor"; "headerSortIndicatorColor": "headerSortIndicatorColor"; "headerSortIndicatorStyle": "headerSortIndicatorStyle"; "cellTextStyle": "cellTextStyle"; "sectionHeaderBackground": "sectionHeaderBackground"; "sectionHeaderTextColor": "sectionHeaderTextColor"; "sectionHeaderTextStyle": "sectionHeaderTextStyle"; "summaryRootLabelTextStyle": "summaryRootLabelTextStyle"; "summarySectionLabelTextStyle": "summarySectionLabelTextStyle"; "summaryRootValueTextColor": "summaryRootValueTextColor"; "summaryRootValueTextStyle": "summaryRootValueTextStyle"; "summarySectionValueTextStyle": "summarySectionValueTextStyle"; "summarySectionValueTextColor": "summarySectionValueTextColor"; "summaryRootLabelTextColor": "summaryRootLabelTextColor"; "summarySectionLabelTextColor": "summarySectionLabelTextColor"; "summaryRootSelectedBackground": "summaryRootSelectedBackground"; "summarySectionSelectedBackground": "summarySectionSelectedBackground"; "pinnedAreaSeparatorWidth": "pinnedAreaSeparatorWidth"; "headerSeparatorWidth": "headerSeparatorWidth"; "headerSeparatorBackground": "headerSeparatorBackground"; "headerBackground": "headerBackground"; "headerTextColor": "headerTextColor"; "headerTextStyle": "headerTextStyle"; "rowSeparatorBackground": "rowSeparatorBackground"; "headerRowSeparatorBackground": "headerRowSeparatorBackground"; "rowSeparatorStickyRowBackground": "rowSeparatorStickyRowBackground"; "rowSeparatorLastStickyRowBackground": "rowSeparatorLastStickyRowBackground"; "rowSeparatorPinnedRowBackground": "rowSeparatorPinnedRowBackground"; "columnResizingSeparatorWidth": "columnResizingSeparatorWidth"; "columnResizingSeparatorOpacity": "columnResizingSeparatorOpacity"; "columnMovingSeparatorWidth": "columnMovingSeparatorWidth"; "columnMovingSeparatorOpacity": "columnMovingSeparatorOpacity"; "columnResizingSeparatorBackground": "columnResizingSeparatorBackground"; "columnMovingSeparatorBackground": "columnMovingSeparatorBackground"; "shiftSectionContent": "shiftSectionContent"; "columnOptionsIconAlignment": "columnOptionsIconAlignment"; "columnOptionsIconColor": "columnOptionsIconColor"; "columnOptionsIconBehavior": "columnOptionsIconBehavior"; "border": "border"; "actualBorderWidth": "actualBorderWidth"; "borderWidthBottom": "borderWidthBottom"; "borderWidthLeft": "borderWidthLeft"; "borderWidthRight": "borderWidthRight"; "borderWidthTop": "borderWidthTop"; "notifyOnAllSelectionChanges": "notifyOnAllSelectionChanges"; "cornerRadiusBottomRight": "cornerRadiusBottomRight"; "cornerRadiusBottomLeft": "cornerRadiusBottomLeft"; "cornerRadiusTopLeft": "cornerRadiusTopLeft"; "cornerRadiusTopRight": "cornerRadiusTopRight"; "actualCornerRadiusBottomRight": "actualCornerRadiusBottomRight"; "actualCornerRadiusBottomLeft": "actualCornerRadiusBottomLeft"; "actualCornerRadiusTopLeft": "actualCornerRadiusTopLeft"; "actualCornerRadiusTopRight": "actualCornerRadiusTopRight"; "isActiveCellStyleEnabled": "isActiveCellStyleEnabled"; "stopPropagation": "stopPropagation"; "responsiveStates": "responsiveStates"; "initialSorts": "initialSorts"; "initialGroups": "initialGroups"; "initialSummaries": "initialSummaries"; "summaryScope": "summaryScope"; "isGroupCollapsable": "isGroupCollapsable"; "groupHeaderDisplayMode": "groupHeaderDisplayMode"; "isGroupExpandedDefault": "isGroupExpandedDefault"; "groupSummaryDisplayMode": "groupSummaryDisplayMode"; "autoAcceptEdits": "autoAcceptEdits"; "primaryKey": "primaryKey"; "actualPrimaryKey": "actualPrimaryKey"; "actualColumns": "actualColumns"; "reactsToSortChanges": "reactsToSortChanges"; "reactsToGroupChanges": "reactsToGroupChanges"; "reactsToFilterChanges": "reactsToFilterChanges"; "enterBehavior": "enterBehavior"; "enterBehaviorAfterEdit": "enterBehaviorAfterEdit"; "isColumnOptionsSummariesEnabled": "isColumnOptionsSummariesEnabled"; "isColumnOptionsGroupingEnabled": "isColumnOptionsGroupingEnabled"; "mergedCellMode": "mergedCellMode"; "mergedCellEvaluationCriteria": "mergedCellEvaluationCriteria"; "mergedCellVerticalAlignment": "mergedCellVerticalAlignment"; "filterUIType": "filterUIType"; "filterLogicalOperator": "filterLogicalOperator"; "filterComparisonType": "filterComparisonType"; "todayOverride": "todayOverride"; "clearSelectionOnEscape": "clearSelectionOnEscape"; "pageSize": "pageSize"; "isToolbarColumnChooserVisible": "isToolbarColumnChooserVisible"; "isToolbarColumnPinningVisible": "isToolbarColumnPinningVisible"; "toolbarTitle": "toolbarTitle"; "toolbarColumnChooserText": "toolbarColumnChooserText"; "toolbarColumnChooserTitle": "toolbarColumnChooserTitle"; "toolbarColumnPinningText": "toolbarColumnPinningText"; "toolbarColumnPinningTitle": "toolbarColumnPinningTitle"; "scrollbarStyle": "scrollbarStyle"; "scrollbarBackground": "scrollbarBackground"; "allowCopyOperation": "allowCopyOperation"; "deferEventForRowDragSelection": "deferEventForRowDragSelection"; }, { "filterExpressionsChanging": "filterExpressionsChanging"; "filterExpressionsChanged": "filterExpressionsChanged"; "cellPreviewPointerDown": "cellPreviewPointerDown"; "cellPreviewPointerUp": "cellPreviewPointerUp"; "cellPointerDown": "cellPointerDown"; "cellPointerUp": "cellPointerUp"; "cellClicked": "cellClicked"; "sortDescriptionsChanged": "sortDescriptionsChanged"; "groupDescriptionsChanged": "groupDescriptionsChanged"; "summaryDescriptionsChanged": "summaryDescriptionsChanged"; "columnHiddenChanged": "columnHiddenChanged"; "columnPinnedChanged": "columnPinnedChanged"; "cellValueChanging": "cellValueChanging"; "dataCommitted": "dataCommitted"; "dataCommitting": "dataCommitting"; "rootSummariesChanged": "rootSummariesChanged"; "sizeChanged": "sizeChanged"; "actualColumnsChanged": "actualColumnsChanged"; "columnsAutoGenerated": "columnsAutoGenerated"; "selectedItemsChanged": "selectedItemsChanged"; "selectedKeysChanged": "selectedKeysChanged"; "selectedCellsChanged": "selectedCellsChanged"; "selectionChanged": "selectionChanged"; "activeCellChanged": "activeCellChanged"; "selectedCellRangesChanged": "selectedCellRangesChanged"; "columnWidthChanged": "columnWidthChanged"; "cellEditStarted": "cellEditStarted"; "cellEditEnded": "cellEditEnded"; "rowEditStarted": "rowEditStarted"; "rowEditEnded": "rowEditEnded"; "customFilterRequested": "customFilterRequested"; "actualPrimaryKeyChange": "actualPrimaryKeyChange"; }, ["contentColumns"], never>;
1594
1601
  }
@@ -288,7 +288,7 @@ export declare abstract class IgxDefinitionBaseComponent implements OnInit {
288
288
  transitionStyleOut(style: IgxGridConditionalStyleComponent): void;
289
289
  transitionStyleIn(style: IgxGridConditionalStyleComponent): void;
290
290
  isStyleTransitioningOut(style: IgxGridConditionalStyleComponent): boolean;
291
- setNamedValue(valueName: string, animationType: CellPropertyAnimationType, value: any): void;
291
+ setNamedValue(valueName: string, animationType: CellPropertyAnimationType | string, value: any): void;
292
292
  /**
293
293
  * Returns if this definition has named value.
294
294
 
@@ -0,0 +1,33 @@
1
+ import { OnInit } from '@angular/core';
2
+ import { GridConditionalStyleFontInfo } from "./GridConditionalStyleFontInfo";
3
+ import * as i0 from "@angular/core";
4
+ export declare class IgxGridConditionalStyleFontInfoComponent implements OnInit {
5
+ protected createImplementation(): GridConditionalStyleFontInfo;
6
+ ngOnInit(): void;
7
+ protected _implementation: any;
8
+ /**
9
+ * @hidden
10
+ */
11
+ get i(): GridConditionalStyleFontInfo; /**
12
+ * @hidden
13
+ */
14
+ static _createFromInternal(internal: any): IgxGridConditionalStyleFontInfoComponent;
15
+ private onImplementationCreated;
16
+ constructor();
17
+ /**
18
+ * Gets or sets the font info for a conditional style.
19
+ */
20
+ get textStyle(): string;
21
+ set textStyle(v: string);
22
+ findByName(name: string): any;
23
+ protected __p: string;
24
+ protected _hasUserValues: Set<string>;
25
+ protected get hasUserValues(): Set<string>;
26
+ protected __m(propertyName: string): void;
27
+ protected _stylingContainer: any;
28
+ protected _stylingParent: any;
29
+ protected _inStyling: boolean;
30
+ protected _styling(container: any, component: any, parent?: any): void;
31
+ static ɵfac: i0.ɵɵFactoryDeclaration<IgxGridConditionalStyleFontInfoComponent, never>;
32
+ static ɵcmp: i0.ɵɵComponentDeclaration<IgxGridConditionalStyleFontInfoComponent, "igx-grid-conditional-style-font-info", never, { "textStyle": "textStyle"; }, {}, never, never>;
33
+ }
@@ -0,0 +1,9 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "@angular/common";
3
+ import * as i2 from "./igx-grid-conditional-style-font-info-module";
4
+ export declare class IgxGridConditionalStyleFontInfoDynamicModule {
5
+ constructor();
6
+ static ɵfac: i0.ɵɵFactoryDeclaration<IgxGridConditionalStyleFontInfoDynamicModule, never>;
7
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IgxGridConditionalStyleFontInfoDynamicModule, never, [typeof i1.CommonModule, typeof i2.IgxGridConditionalStyleFontInfoModule], [typeof i2.IgxGridConditionalStyleFontInfoModule]>;
8
+ static ɵinj: i0.ɵɵInjectorDeclaration<IgxGridConditionalStyleFontInfoDynamicModule>;
9
+ }
@@ -0,0 +1,8 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./igx-grid-conditional-style-font-info-component";
3
+ import * as i2 from "@angular/common";
4
+ export declare class IgxGridConditionalStyleFontInfoModule {
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<IgxGridConditionalStyleFontInfoModule, never>;
6
+ static ɵmod: i0.ɵɵNgModuleDeclaration<IgxGridConditionalStyleFontInfoModule, [typeof i1.IgxGridConditionalStyleFontInfoComponent], [typeof i2.CommonModule], [typeof i1.IgxGridConditionalStyleFontInfoComponent]>;
7
+ static ɵinj: i0.ɵɵInjectorDeclaration<IgxGridConditionalStyleFontInfoModule>;
8
+ }