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
@@ -33,10 +33,10 @@ var IgxGridConditionFilterStringErrorsParsingEventArgs = /** @class */ /*@__PURE
33
33
  };
34
34
  Object.defineProperty(IgxGridConditionFilterStringErrorsParsingEventArgs.prototype, "propertyName", {
35
35
  get: function () {
36
- return this.i.propertyName;
36
+ return this.i.b;
37
37
  },
38
38
  set: function (v) {
39
- this.i.propertyName = v;
39
+ this.i.b = v;
40
40
  },
41
41
  enumerable: false,
42
42
  configurable: true
@@ -46,10 +46,10 @@ var IgxGridConditionFilterStringErrorsParsingEventArgs = /** @class */ /*@__PURE
46
46
  * Gets the errors from parsing the filter string.
47
47
  */
48
48
  get: function () {
49
- return this.i.errors;
49
+ return this.i.a;
50
50
  },
51
51
  set: function (v) {
52
- this.i.errors = v;
52
+ this.i.a = v;
53
53
  },
54
54
  enumerable: false,
55
55
  configurable: true
@@ -0,0 +1,155 @@
1
+ import { Component, Input, ChangeDetectionStrategy } from '@angular/core';
2
+ import { GridConditionalStyleFontInfo } from "./GridConditionalStyleFontInfo";
3
+ import { TypeRegistrar } from "igniteui-angular-core";
4
+ import { NamePatcher, toSpinal, initializePropertiesFromCss } from "igniteui-angular-core";
5
+ import { FontInfo } from "igniteui-angular-core";
6
+ import * as i0 from "@angular/core";
7
+ var IgxGridConditionalStyleFontInfoComponent = /** @class */ /*@__PURE__*/ (function () {
8
+ function IgxGridConditionalStyleFontInfoComponent() {
9
+ this.__p = null;
10
+ this._hasUserValues = new Set();
11
+ this._stylingContainer = null;
12
+ this._stylingParent = null;
13
+ this._inStyling = false;
14
+ if (this._styling) {
15
+ NamePatcher.ensureStylablePatched(Object.getPrototypeOf(this));
16
+ }
17
+ this._implementation = this.createImplementation();
18
+ this._implementation.externalObject = this;
19
+ this.onImplementationCreated();
20
+ if (this._initializeAdapters) {
21
+ this._initializeAdapters();
22
+ }
23
+ }
24
+ IgxGridConditionalStyleFontInfoComponent.prototype.createImplementation = function () {
25
+ return new GridConditionalStyleFontInfo();
26
+ };
27
+ IgxGridConditionalStyleFontInfoComponent.prototype.ngOnInit = function () {
28
+ };
29
+ Object.defineProperty(IgxGridConditionalStyleFontInfoComponent.prototype, "i", {
30
+ /**
31
+ * @hidden
32
+ */
33
+ get: function () {
34
+ return this._implementation;
35
+ } /**
36
+ * @hidden
37
+ */,
38
+ enumerable: false,
39
+ configurable: true
40
+ });
41
+ IgxGridConditionalStyleFontInfoComponent._createFromInternal = function (internal) {
42
+ if (!internal) {
43
+ return null;
44
+ }
45
+ if (!internal.$type) {
46
+ return null;
47
+ }
48
+ var name = internal.$type.name;
49
+ var externalName = "Igx" + name + "Component";
50
+ if (!TypeRegistrar.isRegistered(externalName)) {
51
+ return null;
52
+ }
53
+ return TypeRegistrar.create(externalName);
54
+ };
55
+ IgxGridConditionalStyleFontInfoComponent.prototype.onImplementationCreated = function () {
56
+ };
57
+ Object.defineProperty(IgxGridConditionalStyleFontInfoComponent.prototype, "textStyle", {
58
+ /**
59
+ * Gets or sets the font info for a conditional style.
60
+ */
61
+ get: function () {
62
+ if (this.i.textStyle == null) {
63
+ return null;
64
+ }
65
+ return this.i.textStyle.fontString;
66
+ },
67
+ set: function (v) {
68
+ var fi = new FontInfo();
69
+ fi.fontString = v;
70
+ this.i.textStyle = fi;
71
+ },
72
+ enumerable: false,
73
+ configurable: true
74
+ });
75
+ IgxGridConditionalStyleFontInfoComponent.prototype.findByName = function (name) {
76
+ if (this.findEphemera) {
77
+ if (name && name.indexOf("@@e:") == 0) {
78
+ return this.findEphemera(name);
79
+ }
80
+ }
81
+ return null;
82
+ };
83
+ Object.defineProperty(IgxGridConditionalStyleFontInfoComponent.prototype, "hasUserValues", {
84
+ get: function () {
85
+ return this._hasUserValues;
86
+ },
87
+ enumerable: false,
88
+ configurable: true
89
+ });
90
+ IgxGridConditionalStyleFontInfoComponent.prototype.__m = function (propertyName) {
91
+ if (!this._inStyling) {
92
+ this._hasUserValues.add(propertyName);
93
+ }
94
+ };
95
+ IgxGridConditionalStyleFontInfoComponent.prototype._styling = function (container, component, parent) {
96
+ if (this._inStyling) {
97
+ return;
98
+ }
99
+ this._inStyling = true;
100
+ this._stylingContainer = container;
101
+ this._stylingParent = component;
102
+ var genericPrefix = "";
103
+ var typeName = this.i.$type.name;
104
+ if (typeName.indexOf("Xam") === 0) {
105
+ typeName = typeName.substring(3);
106
+ }
107
+ genericPrefix = toSpinal("GridConditionalStyleFontInfoComponent");
108
+ var additionalPrefixes = [];
109
+ var prefix = toSpinal(typeName);
110
+ additionalPrefixes.push(prefix + "-");
111
+ var b = this.i.$type.baseType;
112
+ while (b && b.name != "Object" &&
113
+ b.name != "Base" &&
114
+ b.name != "Control" &&
115
+ b.Name != "DependencyObject" &&
116
+ b.Name != "FrameworkElement") {
117
+ typeName = b.name;
118
+ if (typeName.indexOf("Xam") === 0) {
119
+ typeName = typeName.substring(3);
120
+ }
121
+ var basePrefix = toSpinal(typeName);
122
+ additionalPrefixes.push(basePrefix + "-");
123
+ b = b.baseType;
124
+ }
125
+ if (parent) {
126
+ var parentTypeName = parent.i.$type.name;
127
+ if (parentTypeName.indexOf("Xam") === 0) {
128
+ parentTypeName = parentTypeName.substring(3);
129
+ }
130
+ var parentPrefix = toSpinal(parentTypeName);
131
+ additionalPrefixes.push(parentPrefix + "-" + genericPrefix + "-");
132
+ additionalPrefixes.push(parentPrefix + "-" + prefix + "-");
133
+ }
134
+ initializePropertiesFromCss(container, this, genericPrefix + "-", this.hasUserValues, false, additionalPrefixes);
135
+ if (this._otherStyling) {
136
+ this._otherStyling(container, component, parent);
137
+ }
138
+ this._inStyling = false;
139
+ };
140
+ IgxGridConditionalStyleFontInfoComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxGridConditionalStyleFontInfoComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
141
+ IgxGridConditionalStyleFontInfoComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "12.2.17", type: IgxGridConditionalStyleFontInfoComponent, selector: "igx-grid-conditional-style-font-info", inputs: { textStyle: "textStyle" }, providers: [], ngImport: i0, template: "", isInline: true, changeDetection: i0.ChangeDetectionStrategy.OnPush });
142
+ return IgxGridConditionalStyleFontInfoComponent;
143
+ }());
144
+ export { IgxGridConditionalStyleFontInfoComponent };
145
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxGridConditionalStyleFontInfoComponent, decorators: [{
146
+ type: Component,
147
+ args: [{
148
+ selector: 'igx-grid-conditional-style-font-info',
149
+ template: "",
150
+ providers: [],
151
+ changeDetection: ChangeDetectionStrategy.OnPush
152
+ }]
153
+ }], ctorParameters: function () { return []; }, propDecorators: { textStyle: [{
154
+ type: Input
155
+ }] } });
@@ -0,0 +1,33 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
+ */
7
+ import { NgModule } from '@angular/core';
8
+ import { CommonModule } from '@angular/common';
9
+ import { IgxGridConditionalStyleFontInfoModule } from './igx-grid-conditional-style-font-info-module';
10
+ import { IgxGridConditionalStyleFontInfoComponent } from './igx-grid-conditional-style-font-info-component';
11
+ import { GridConditionalStyleFontInfo } from './GridConditionalStyleFontInfo';
12
+ import { TypeRegistrar } from "igniteui-angular-core";
13
+ import * as i0 from "@angular/core";
14
+ var IgxGridConditionalStyleFontInfoDynamicModule = /** @class */ /*@__PURE__*/ (function () {
15
+ function IgxGridConditionalStyleFontInfoDynamicModule() {
16
+ TypeRegistrar.registerCons("IgxGridConditionalStyleFontInfoComponent", IgxGridConditionalStyleFontInfoComponent);
17
+ TypeRegistrar.register("GridConditionalStyleFontInfo", GridConditionalStyleFontInfo.$type);
18
+ }
19
+ IgxGridConditionalStyleFontInfoDynamicModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxGridConditionalStyleFontInfoDynamicModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
20
+ IgxGridConditionalStyleFontInfoDynamicModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxGridConditionalStyleFontInfoDynamicModule, imports: [CommonModule, IgxGridConditionalStyleFontInfoModule], exports: [IgxGridConditionalStyleFontInfoModule] });
21
+ IgxGridConditionalStyleFontInfoDynamicModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxGridConditionalStyleFontInfoDynamicModule, imports: [[CommonModule, IgxGridConditionalStyleFontInfoModule], IgxGridConditionalStyleFontInfoModule] });
22
+ return IgxGridConditionalStyleFontInfoDynamicModule;
23
+ }());
24
+ export { IgxGridConditionalStyleFontInfoDynamicModule };
25
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxGridConditionalStyleFontInfoDynamicModule, decorators: [{
26
+ type: NgModule,
27
+ args: [{
28
+ declarations: [],
29
+ imports: [CommonModule, IgxGridConditionalStyleFontInfoModule],
30
+ exports: [IgxGridConditionalStyleFontInfoModule],
31
+ entryComponents: [IgxGridConditionalStyleFontInfoComponent]
32
+ }]
33
+ }], ctorParameters: function () { return []; } });
@@ -0,0 +1,28 @@
1
+ /*
2
+ THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
3
+ https://www.infragistics.com/legal/license/igultimate-la
4
+ https://www.infragistics.com/legal/license/igultimate-eula
5
+ GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
6
+ */
7
+ import { NgModule } from '@angular/core';
8
+ import { CommonModule } from '@angular/common';
9
+ import { IgxGridConditionalStyleFontInfoComponent } from './igx-grid-conditional-style-font-info-component';
10
+ import * as i0 from "@angular/core";
11
+ var IgxGridConditionalStyleFontInfoModule = /** @class */ /*@__PURE__*/ (function () {
12
+ function IgxGridConditionalStyleFontInfoModule() {
13
+ }
14
+ IgxGridConditionalStyleFontInfoModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxGridConditionalStyleFontInfoModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
15
+ IgxGridConditionalStyleFontInfoModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxGridConditionalStyleFontInfoModule, declarations: [IgxGridConditionalStyleFontInfoComponent], imports: [CommonModule], exports: [IgxGridConditionalStyleFontInfoComponent] });
16
+ IgxGridConditionalStyleFontInfoModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxGridConditionalStyleFontInfoModule, imports: [[CommonModule]] });
17
+ return IgxGridConditionalStyleFontInfoModule;
18
+ }());
19
+ export { IgxGridConditionalStyleFontInfoModule };
20
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "12.2.17", ngImport: i0, type: IgxGridConditionalStyleFontInfoModule, decorators: [{
21
+ type: NgModule,
22
+ args: [{
23
+ declarations: [IgxGridConditionalStyleFontInfoComponent],
24
+ imports: [CommonModule],
25
+ exports: [IgxGridConditionalStyleFontInfoComponent],
26
+ entryComponents: []
27
+ }]
28
+ }] });
@@ -41,10 +41,10 @@ var IgxHeaderComponent = /** @class */ /*@__PURE__*/ (function (_super) {
41
41
  * Gets or sets the color to use for the sort indicator icon
42
42
  */
43
43
  get: function () {
44
- return brushToString(this.i.ho);
44
+ return brushToString(this.i.hp);
45
45
  },
46
46
  set: function (v) {
47
- this.i.ho = stringToBrush(v);
47
+ this.i.hp = stringToBrush(v);
48
48
  },
49
49
  enumerable: false,
50
50
  configurable: true
@@ -54,30 +54,30 @@ var IgxHeaderComponent = /** @class */ /*@__PURE__*/ (function (_super) {
54
54
  * Gets the actual background color that is used for the cells when they are selected
55
55
  */
56
56
  get: function () {
57
- return brushToString(this.i.hm);
57
+ return brushToString(this.i.hn);
58
58
  },
59
59
  set: function (v) {
60
- this.i.hm = stringToBrush(v);
60
+ this.i.hn = stringToBrush(v);
61
61
  },
62
62
  enumerable: false,
63
63
  configurable: true
64
64
  });
65
65
  Object.defineProperty(IgxHeaderComponent.prototype, "sortIndicatorStyle", {
66
66
  get: function () {
67
- return this.i.g1;
67
+ return this.i.g2;
68
68
  },
69
69
  set: function (v) {
70
- this.i.g1 = ensureEnum(SortIndicatorStyle_$type, v);
70
+ this.i.g2 = ensureEnum(SortIndicatorStyle_$type, v);
71
71
  },
72
72
  enumerable: false,
73
73
  configurable: true
74
74
  });
75
75
  Object.defineProperty(IgxHeaderComponent.prototype, "actualSortIndicatorStyle", {
76
76
  get: function () {
77
- return this.i.g0;
77
+ return this.i.g1;
78
78
  },
79
79
  set: function (v) {
80
- this.i.g0 = ensureEnum(SortIndicatorStyle_$type, v);
80
+ this.i.g1 = ensureEnum(SortIndicatorStyle_$type, v);
81
81
  },
82
82
  enumerable: false,
83
83
  configurable: true
@@ -87,10 +87,10 @@ var IgxHeaderComponent = /** @class */ /*@__PURE__*/ (function (_super) {
87
87
  * Gets or sets the amount of left padding to use for the cell content.
88
88
  */
89
89
  get: function () {
90
- return this.i.g7;
90
+ return this.i.g8;
91
91
  },
92
92
  set: function (v) {
93
- this.i.g7 = +v;
93
+ this.i.g8 = +v;
94
94
  },
95
95
  enumerable: false,
96
96
  configurable: true
@@ -100,10 +100,10 @@ var IgxHeaderComponent = /** @class */ /*@__PURE__*/ (function (_super) {
100
100
  * Gets or sets the amount of top padding to use for the cell content.
101
101
  */
102
102
  get: function () {
103
- return this.i.g9;
103
+ return this.i.ha;
104
104
  },
105
105
  set: function (v) {
106
- this.i.g9 = +v;
106
+ this.i.ha = +v;
107
107
  },
108
108
  enumerable: false,
109
109
  configurable: true
@@ -113,10 +113,10 @@ var IgxHeaderComponent = /** @class */ /*@__PURE__*/ (function (_super) {
113
113
  * Gets or sets the amount of right padding to use for the cell content.
114
114
  */
115
115
  get: function () {
116
- return this.i.g8;
116
+ return this.i.g9;
117
117
  },
118
118
  set: function (v) {
119
- this.i.g8 = +v;
119
+ this.i.g9 = +v;
120
120
  },
121
121
  enumerable: false,
122
122
  configurable: true
@@ -126,10 +126,10 @@ var IgxHeaderComponent = /** @class */ /*@__PURE__*/ (function (_super) {
126
126
  * Gets or sets the amount of bottom padding to use for the cell content.
127
127
  */
128
128
  get: function () {
129
- return this.i.g6;
129
+ return this.i.g7;
130
130
  },
131
131
  set: function (v) {
132
- this.i.g6 = +v;
132
+ this.i.g7 = +v;
133
133
  },
134
134
  enumerable: false,
135
135
  configurable: true
@@ -30,10 +30,10 @@ var IgxImageCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
30
30
  * Sets or gets the resource path to use to get the image for the cell.
31
31
  */
32
32
  get: function () {
33
- return this.i.mr;
33
+ return this.i.n4;
34
34
  },
35
35
  set: function (v) {
36
- this.i.mr = v;
36
+ this.i.n4 = v;
37
37
  },
38
38
  enumerable: false,
39
39
  configurable: true
@@ -43,10 +43,10 @@ var IgxImageCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
43
43
  * Sets or gets the image stretching behavior for the image.
44
44
  */
45
45
  get: function () {
46
- return this.i.mm;
46
+ return this.i.nz;
47
47
  },
48
48
  set: function (v) {
49
- this.i.mm = ensureEnum(ImageStretchOptions_$type, v);
49
+ this.i.nz = ensureEnum(ImageStretchOptions_$type, v);
50
50
  },
51
51
  enumerable: false,
52
52
  configurable: true
@@ -56,10 +56,10 @@ var IgxImageCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
56
56
  * Sets or gets the image resource type. Indicates which type of resource should be fetched and how ImagePath should be interpreted.
57
57
  */
58
58
  get: function () {
59
- return this.i.mk;
59
+ return this.i.nx;
60
60
  },
61
61
  set: function (v) {
62
- this.i.mk = ensureEnum(ImageResourceType_$type, v);
62
+ this.i.nx = ensureEnum(ImageResourceType_$type, v);
63
63
  },
64
64
  enumerable: false,
65
65
  configurable: true
@@ -47,10 +47,10 @@ var IgxImageColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
47
47
  * Gets or sets the stretch option to use when rendering images
48
48
  */
49
49
  get: function () {
50
- return this.i.n9;
50
+ return this.i.pa;
51
51
  },
52
52
  set: function (v) {
53
- this.i.n9 = ensureEnum(ImageStretchOptions_$type, v);
53
+ this.i.pa = ensureEnum(ImageStretchOptions_$type, v);
54
54
  },
55
55
  enumerable: false,
56
56
  configurable: true
@@ -60,10 +60,10 @@ var IgxImageColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
60
60
  * Gets or sets the editor type used for editing cells in this column.
61
61
  */
62
62
  get: function () {
63
- return this.i.n5;
63
+ return this.i.o6;
64
64
  },
65
65
  set: function (v) {
66
- this.i.n5 = ensureEnum(EditorType_$type, v);
66
+ this.i.o6 = ensureEnum(EditorType_$type, v);
67
67
  },
68
68
  enumerable: false,
69
69
  configurable: true
@@ -73,10 +73,10 @@ var IgxImageColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
73
73
  * Gets or sets the ComboBox data source.
74
74
  */
75
75
  get: function () {
76
- return this.i.oa;
76
+ return this.i.pb;
77
77
  },
78
78
  set: function (v) {
79
- this.i.oa = v;
79
+ this.i.pb = v;
80
80
  },
81
81
  enumerable: false,
82
82
  configurable: true
@@ -86,10 +86,10 @@ var IgxImageColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
86
86
  * Gets or sets the ComboBox text field.
87
87
  */
88
88
  get: function () {
89
- return this.i.ob;
89
+ return this.i.pc;
90
90
  },
91
91
  set: function (v) {
92
- this.i.ob = v;
92
+ this.i.pc = v;
93
93
  },
94
94
  enumerable: false,
95
95
  configurable: true
@@ -99,10 +99,10 @@ var IgxImageColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
99
99
  * Gets or sets the ComboBox value field.
100
100
  */
101
101
  get: function () {
102
- return this.i.oc;
102
+ return this.i.pd;
103
103
  },
104
104
  set: function (v) {
105
- this.i.oc = v;
105
+ this.i.pd = v;
106
106
  },
107
107
  enumerable: false,
108
108
  configurable: true
@@ -28,10 +28,10 @@ var IgxNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
28
28
  * Sets or gets the numeric value to use for the cell.
29
29
  */
30
30
  get: function () {
31
- return this.i.ms;
31
+ return this.i.n5;
32
32
  },
33
33
  set: function (v) {
34
- this.i.ms = +v;
34
+ this.i.n5 = +v;
35
35
  },
36
36
  enumerable: false,
37
37
  configurable: true
@@ -41,10 +41,10 @@ var IgxNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
41
41
  * Sets or gets whether there is a decimal numeric value to use for the cell.
42
42
  */
43
43
  get: function () {
44
- return this.i.mo;
44
+ return this.i.n1;
45
45
  },
46
46
  set: function (v) {
47
- this.i.mo = ensureBool(v);
47
+ this.i.n1 = ensureBool(v);
48
48
  },
49
49
  enumerable: false,
50
50
  configurable: true
@@ -54,24 +54,24 @@ var IgxNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
54
54
  * The format string to apply to the value
55
55
  */
56
56
  get: function () {
57
- return this.i.nm;
57
+ return this.i.oz;
58
58
  },
59
59
  set: function (v) {
60
- this.i.nm = v;
60
+ this.i.oz = v;
61
61
  },
62
62
  enumerable: false,
63
63
  configurable: true
64
64
  });
65
65
  Object.defineProperty(IgxNumericCellInfo.prototype, "formatSpecifiers", {
66
66
  get: function () {
67
- return this.i.mk;
67
+ return this.i.nx;
68
68
  },
69
69
  set: function (v) {
70
70
  if (v && !Array.isArray(v) && typeof (v) == "string") {
71
71
  var re = /\s*(?:,|\s|$)\s*/gm;
72
72
  v = v.split(re);
73
73
  }
74
- this.i.mk = v;
74
+ this.i.nx = v;
75
75
  },
76
76
  enumerable: false,
77
77
  configurable: true
@@ -81,10 +81,10 @@ var IgxNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
81
81
  * The format options to apply to the value
82
82
  */
83
83
  get: function () {
84
- return this.i.ne;
84
+ return this.i.or;
85
85
  },
86
86
  set: function (v) {
87
- this.i.ne = v;
87
+ this.i.or = v;
88
88
  },
89
89
  enumerable: false,
90
90
  configurable: true
@@ -94,10 +94,10 @@ var IgxNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
94
94
  * Sets or gets the text prepended to a negative numeric value
95
95
  */
96
96
  get: function () {
97
- return this.i.ns;
97
+ return this.i.o5;
98
98
  },
99
99
  set: function (v) {
100
- this.i.ns = v;
100
+ this.i.o5 = v;
101
101
  },
102
102
  enumerable: false,
103
103
  configurable: true
@@ -107,10 +107,10 @@ var IgxNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
107
107
  * Sets or gets the text prepended to a positive numeric value
108
108
  */
109
109
  get: function () {
110
- return this.i.nx;
110
+ return this.i.pa;
111
111
  },
112
112
  set: function (v) {
113
- this.i.nx = v;
113
+ this.i.pa = v;
114
114
  },
115
115
  enumerable: false,
116
116
  configurable: true
@@ -120,10 +120,10 @@ var IgxNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
120
120
  * Sets or gets the text appended to a negative numeric value
121
121
  */
122
122
  get: function () {
123
- return this.i.nu;
123
+ return this.i.o7;
124
124
  },
125
125
  set: function (v) {
126
- this.i.nu = v;
126
+ this.i.o7 = v;
127
127
  },
128
128
  enumerable: false,
129
129
  configurable: true
@@ -133,10 +133,10 @@ var IgxNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
133
133
  * Sets or gets the text appended to a positive numeric value
134
134
  */
135
135
  get: function () {
136
- return this.i.nz;
136
+ return this.i.pc;
137
137
  },
138
138
  set: function (v) {
139
- this.i.nz = v;
139
+ this.i.pc = v;
140
140
  },
141
141
  enumerable: false,
142
142
  configurable: true
@@ -146,10 +146,10 @@ var IgxNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
146
146
  * The maximum number of decimal places to display when formatting
147
147
  */
148
148
  get: function () {
149
- return this.i.m0;
149
+ return this.i.od;
150
150
  },
151
151
  set: function (v) {
152
- this.i.m0 = +v;
152
+ this.i.od = +v;
153
153
  },
154
154
  enumerable: false,
155
155
  configurable: true
@@ -159,10 +159,10 @@ var IgxNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
159
159
  * The minimum number of decimal places to display when formatting
160
160
  */
161
161
  get: function () {
162
- return this.i.m2;
162
+ return this.i.of;
163
163
  },
164
164
  set: function (v) {
165
- this.i.m2 = +v;
165
+ this.i.of = +v;
166
166
  },
167
167
  enumerable: false,
168
168
  configurable: true
@@ -172,10 +172,10 @@ var IgxNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
172
172
  * The minimum number of integer digits to display when formatting
173
173
  */
174
174
  get: function () {
175
- return this.i.m4;
175
+ return this.i.oh;
176
176
  },
177
177
  set: function (v) {
178
- this.i.m4 = +v;
178
+ this.i.oh = +v;
179
179
  },
180
180
  enumerable: false,
181
181
  configurable: true
@@ -185,10 +185,10 @@ var IgxNumericCellInfo = /** @class */ /*@__PURE__*/ (function (_super) {
185
185
  * Sets or gets if the grouping separator is shown
186
186
  */
187
187
  get: function () {
188
- return this.i.mq;
188
+ return this.i.n3;
189
189
  },
190
190
  set: function (v) {
191
- this.i.mq = ensureBool(v);
191
+ this.i.n3 = ensureBool(v);
192
192
  },
193
193
  enumerable: false,
194
194
  configurable: true