igniteui-webcomponents-grids 3.2.2 → 3.2.4

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 (190) hide show
  1. package/bundles/igniteui-webcomponents-grids.umd.js +10275 -9381
  2. package/bundles/igniteui-webcomponents-grids.umd.min.js +1 -1
  3. package/esm2015/lib/BaseEditorView.js +5 -0
  4. package/esm2015/lib/CanvasCellPresenterBase.js +10 -10
  5. package/esm2015/lib/CanvasContentCellModelHelper.js +11 -11
  6. package/esm2015/lib/CanvasDateTimeCellPresenter.js +2 -2
  7. package/esm2015/lib/CanvasGridCellBase.js +305 -289
  8. package/esm2015/lib/CanvasImageCell.js +29 -29
  9. package/esm2015/lib/CanvasImageCellPresenter.js +7 -7
  10. package/esm2015/lib/CanvasNumericCell.js +2 -2
  11. package/esm2015/lib/CanvasNumericCellPresenter.js +3 -3
  12. package/esm2015/lib/CanvasSectionHeaderCell.js +3 -3
  13. package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +2 -2
  14. package/esm2015/lib/CanvasSummaryCell.js +51 -51
  15. package/esm2015/lib/CanvasSummaryCellPresenter.js +5 -5
  16. package/esm2015/lib/CanvasTemplateCell.js +7 -7
  17. package/esm2015/lib/CanvasTemplateCellPresenter.js +3 -3
  18. package/esm2015/lib/CanvasTemplateHeaderCell.js +7 -7
  19. package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +2 -2
  20. package/esm2015/lib/CanvasTextCell.js +3 -3
  21. package/esm2015/lib/CanvasTextCellPresenter.js +2 -2
  22. package/esm2015/lib/CanvasTextHeaderCell.js +24 -24
  23. package/esm2015/lib/CanvasTextHeaderCellPresenter.js +11 -11
  24. package/esm2015/lib/CellPresenterBase.js +1 -1
  25. package/esm2015/lib/CheckboxListView_combined.js +341 -306
  26. package/esm2015/lib/ColumnChooserView_combined.js +22 -22
  27. package/esm2015/lib/ColumnFilterCondition_combined.js +7531 -7208
  28. package/esm2015/lib/ColumnGroupDescription.js +22 -0
  29. package/esm2015/lib/ColumnGroupDescriptionCollection.js +14 -8
  30. package/esm2015/lib/ColumnGroupingView_combined.js +25 -25
  31. package/esm2015/lib/ColumnPinningView_combined.js +22 -22
  32. package/esm2015/lib/ColumnSortDescriptionCollection.js +12 -6
  33. package/esm2015/lib/ColumnSummaryDescriptionCollection.js +12 -6
  34. package/esm2015/lib/ComboEditorView.js +6 -3
  35. package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +23 -18
  36. package/esm2015/lib/DataGridAccessibilityLayoutPanel.js +5 -5
  37. package/esm2015/lib/DataGridCellLayoutPanel.js +27 -25
  38. package/esm2015/lib/DataGridScrollerKeyboardListener.js +15 -15
  39. package/esm2015/lib/DataGridToolbarView_combined.js +17 -17
  40. package/esm2015/lib/DateTimeColumnValueFormatter.js +90 -1
  41. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +25 -25
  42. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +10 -10
  43. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  44. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +6 -6
  45. package/esm2015/lib/GridColumnOptionsViewBase_combined.js +2 -2
  46. package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
  47. package/esm2015/lib/GridColumnPinOptionsView_combined.js +5 -5
  48. package/esm2015/lib/GridColumnSortOptionsView_combined.js +5 -5
  49. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +15 -15
  50. package/esm2015/lib/GridExternalWrapper.js +18 -6
  51. package/esm2015/lib/GridFilterDialogView_combined.js +1 -1
  52. package/esm2015/lib/ISummaryChooserView_combined.js +13 -13
  53. package/esm2015/lib/MultiColumnComboBoxView_combined.js +47 -47
  54. package/esm2015/lib/MultiColumnComboVisualModelExport.js +1 -1
  55. package/esm2015/lib/NumericCellPresenter.js +1 -1
  56. package/esm2015/lib/PropertyEditorView_combined.js +40 -40
  57. package/esm2015/lib/TemplateCellPresenter.js +1 -1
  58. package/esm2015/lib/TemplateHeader.js +8 -8
  59. package/esm2015/lib/TemplateHeaderCellPresenter.js +1 -1
  60. package/esm2015/lib/TemplateSectionHeader.js +2 -2
  61. package/esm2015/lib/TextEditorView.js +28 -10
  62. package/esm2015/lib/VerticalSeparatorCell.js +46 -8
  63. package/esm2015/lib/VisualModelExport.js +120 -100
  64. package/esm2015/lib/igc-checkbox-list-component.js +74 -54
  65. package/esm2015/lib/igc-column-component.js +164 -164
  66. package/esm2015/lib/igc-column-group-description-collection.js +13 -3
  67. package/esm2015/lib/igc-column-moving-separator-component.js +9 -9
  68. package/esm2015/lib/igc-column-resizing-separator-component.js +6 -6
  69. package/esm2015/lib/igc-column-sort-description-collection.js +13 -3
  70. package/esm2015/lib/igc-column-summary-description-collection.js +13 -3
  71. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  72. package/esm2015/lib/igc-data-grid-component.js +699 -593
  73. package/esm2015/lib/igc-date-time-column-component.js +23 -23
  74. package/esm2015/lib/igc-definition-base-component.js +50 -50
  75. package/esm2015/lib/igc-filter-row-definition-component.js +12 -12
  76. package/esm2015/lib/igc-header-component.js +24 -24
  77. package/esm2015/lib/igc-image-column-component.js +12 -12
  78. package/esm2015/lib/igc-numeric-column-component.js +35 -35
  79. package/esm2015/lib/igc-section-header-component.js +24 -24
  80. package/esm2015/lib/igc-summary-row-component.js +24 -24
  81. package/esm2015/lib/igc-text-column-component.js +9 -9
  82. package/esm5/lib/BaseEditorView.js +5 -0
  83. package/esm5/lib/CanvasCellPresenterBase.js +10 -10
  84. package/esm5/lib/CanvasContentCellModelHelper.js +11 -11
  85. package/esm5/lib/CanvasDateTimeCellPresenter.js +2 -2
  86. package/esm5/lib/CanvasGridCellBase.js +304 -288
  87. package/esm5/lib/CanvasImageCell.js +28 -28
  88. package/esm5/lib/CanvasImageCellPresenter.js +7 -7
  89. package/esm5/lib/CanvasNumericCell.js +2 -2
  90. package/esm5/lib/CanvasNumericCellPresenter.js +3 -3
  91. package/esm5/lib/CanvasSectionHeaderCell.js +3 -3
  92. package/esm5/lib/CanvasSectionHeaderCellPresenter.js +2 -2
  93. package/esm5/lib/CanvasSummaryCell.js +51 -51
  94. package/esm5/lib/CanvasSummaryCellPresenter.js +5 -5
  95. package/esm5/lib/CanvasTemplateCell.js +7 -7
  96. package/esm5/lib/CanvasTemplateCellPresenter.js +3 -3
  97. package/esm5/lib/CanvasTemplateHeaderCell.js +7 -7
  98. package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +2 -2
  99. package/esm5/lib/CanvasTextCell.js +3 -3
  100. package/esm5/lib/CanvasTextCellPresenter.js +2 -2
  101. package/esm5/lib/CanvasTextHeaderCell.js +24 -24
  102. package/esm5/lib/CanvasTextHeaderCellPresenter.js +11 -11
  103. package/esm5/lib/CellPresenterBase.js +1 -1
  104. package/esm5/lib/CheckboxListView_combined.js +339 -296
  105. package/esm5/lib/ColumnChooserView_combined.js +22 -22
  106. package/esm5/lib/ColumnFilterCondition_combined.js +7352 -6962
  107. package/esm5/lib/ColumnGroupDescription.js +22 -0
  108. package/esm5/lib/ColumnGroupDescriptionCollection.js +18 -8
  109. package/esm5/lib/ColumnGroupingView_combined.js +25 -25
  110. package/esm5/lib/ColumnPinningView_combined.js +22 -22
  111. package/esm5/lib/ColumnSortDescriptionCollection.js +16 -6
  112. package/esm5/lib/ColumnSummaryDescriptionCollection.js +16 -6
  113. package/esm5/lib/ComboEditorView.js +6 -3
  114. package/esm5/lib/ComparisonOperatorSelectorView_combined.js +23 -18
  115. package/esm5/lib/DataGridAccessibilityLayoutPanel.js +5 -5
  116. package/esm5/lib/DataGridCellLayoutPanel.js +27 -25
  117. package/esm5/lib/DataGridScrollerKeyboardListener.js +15 -15
  118. package/esm5/lib/DataGridToolbarView_combined.js +17 -17
  119. package/esm5/lib/DateTimeColumnValueFormatter.js +92 -1
  120. package/esm5/lib/GridColumnFilterOptionsView_combined.js +25 -25
  121. package/esm5/lib/GridColumnGroupOptionsView_combined.js +10 -10
  122. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  123. package/esm5/lib/GridColumnMoveOptionsView_combined.js +6 -6
  124. package/esm5/lib/GridColumnOptionsViewBase_combined.js +2 -2
  125. package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
  126. package/esm5/lib/GridColumnPinOptionsView_combined.js +5 -5
  127. package/esm5/lib/GridColumnSortOptionsView_combined.js +5 -5
  128. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +15 -15
  129. package/esm5/lib/GridExternalWrapper.js +18 -6
  130. package/esm5/lib/GridFilterDialogView_combined.js +1 -1
  131. package/esm5/lib/ISummaryChooserView_combined.js +13 -13
  132. package/esm5/lib/MultiColumnComboBoxView_combined.js +47 -47
  133. package/esm5/lib/MultiColumnComboVisualModelExport.js +1 -1
  134. package/esm5/lib/NumericCellPresenter.js +1 -1
  135. package/esm5/lib/PropertyEditorView_combined.js +40 -40
  136. package/esm5/lib/TemplateCellPresenter.js +1 -1
  137. package/esm5/lib/TemplateHeader.js +8 -8
  138. package/esm5/lib/TemplateHeaderCellPresenter.js +1 -1
  139. package/esm5/lib/TemplateSectionHeader.js +2 -2
  140. package/esm5/lib/TextEditorView.js +28 -10
  141. package/esm5/lib/VerticalSeparatorCell.js +46 -8
  142. package/esm5/lib/VisualModelExport.js +120 -100
  143. package/esm5/lib/igc-checkbox-list-component.js +82 -54
  144. package/esm5/lib/igc-column-component.js +164 -164
  145. package/esm5/lib/igc-column-group-description-collection.js +17 -3
  146. package/esm5/lib/igc-column-moving-separator-component.js +9 -9
  147. package/esm5/lib/igc-column-resizing-separator-component.js +6 -6
  148. package/esm5/lib/igc-column-sort-description-collection.js +17 -3
  149. package/esm5/lib/igc-column-summary-description-collection.js +17 -3
  150. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  151. package/esm5/lib/igc-data-grid-component.js +743 -601
  152. package/esm5/lib/igc-date-time-column-component.js +23 -23
  153. package/esm5/lib/igc-definition-base-component.js +50 -50
  154. package/esm5/lib/igc-filter-row-definition-component.js +12 -12
  155. package/esm5/lib/igc-header-component.js +24 -24
  156. package/esm5/lib/igc-image-column-component.js +12 -12
  157. package/esm5/lib/igc-numeric-column-component.js +35 -35
  158. package/esm5/lib/igc-section-header-component.js +24 -24
  159. package/esm5/lib/igc-summary-row-component.js +24 -24
  160. package/esm5/lib/igc-text-column-component.js +9 -9
  161. package/fesm2015/igniteui-webcomponents-grids.js +10315 -9565
  162. package/fesm5/igniteui-webcomponents-grids.js +10276 -9382
  163. package/lib/CanvasGridCellBase.d.ts +95 -93
  164. package/lib/CanvasImageCell.d.ts +11 -11
  165. package/lib/CanvasSectionHeaderCell.d.ts +1 -1
  166. package/lib/CanvasSummaryCell.d.ts +15 -15
  167. package/lib/CanvasTemplateCell.d.ts +4 -4
  168. package/lib/CanvasTemplateHeaderCell.d.ts +4 -4
  169. package/lib/CanvasTextCell.d.ts +1 -1
  170. package/lib/CanvasTextHeaderCell.d.ts +6 -6
  171. package/lib/CheckboxListView_combined.d.ts +74 -69
  172. package/lib/ColumnFilterCondition_combined.d.ts +1306 -1264
  173. package/lib/ColumnGroupDescription.d.ts +1 -0
  174. package/lib/ColumnGroupDescriptionCollection.d.ts +8 -7
  175. package/lib/ColumnSortDescriptionCollection.d.ts +8 -7
  176. package/lib/ColumnSummaryDescriptionCollection.d.ts +8 -7
  177. package/lib/DataGridCellLayoutPanel.d.ts +1 -0
  178. package/lib/DateTimeColumnValueFormatter.d.ts +19 -1
  179. package/lib/GridExternalWrapper.d.ts +4 -0
  180. package/lib/TemplateHeader.d.ts +3 -3
  181. package/lib/TemplateSectionHeader.d.ts +2 -2
  182. package/lib/TextEditorView.d.ts +5 -3
  183. package/lib/VerticalSeparatorCell.d.ts +9 -0
  184. package/lib/VisualModelExport.d.ts +31 -26
  185. package/lib/igc-checkbox-list-component.d.ts +9 -0
  186. package/lib/igc-column-group-description-collection.d.ts +4 -0
  187. package/lib/igc-column-sort-description-collection.d.ts +4 -0
  188. package/lib/igc-column-summary-description-collection.d.ts +4 -0
  189. package/lib/igc-data-grid-component.d.ts +30 -2
  190. package/package.json +4 -4
@@ -1,4 +1,5 @@
1
1
  import * as tslib_1 from "tslib";
2
+ import { ensureBool } from "igniteui-webcomponents-core";
2
3
  import { IgcColumnGroupDescription } from "./igc-column-group-description";
3
4
  import { ColumnGroupDescriptionCollection as ColumnGroupDescriptionCollection_internal } from "./ColumnGroupDescriptionCollection";
4
5
  /**
@@ -85,6 +86,19 @@ var IgcColumnGroupDescriptionCollection = /** @class */ /*@__PURE__*/ (function
85
86
  }
86
87
  });
87
88
  };
89
+ Object.defineProperty(IgcColumnGroupDescriptionCollection.prototype, "shouldDetachOnTargetChange", {
90
+ /**
91
+ * Gets or sets whether this collection should detach the sync when the target collection changes.
92
+ */
93
+ get: function () {
94
+ return this.i.i;
95
+ },
96
+ set: function (v) {
97
+ this.i.i = ensureBool(v);
98
+ },
99
+ enumerable: true,
100
+ configurable: true
101
+ });
88
102
  IgcColumnGroupDescriptionCollection.prototype.findByName = function (name) {
89
103
  return null;
90
104
  };
@@ -93,13 +107,13 @@ var IgcColumnGroupDescriptionCollection = /** @class */ /*@__PURE__*/ (function
93
107
  return (iv);
94
108
  };
95
109
  IgcColumnGroupDescriptionCollection.prototype.insert = function (index, item) {
96
- this.i.n(index, (item == null ? null : item.i));
110
+ this.i.o(index, (item == null ? null : item.i));
97
111
  };
98
112
  IgcColumnGroupDescriptionCollection.prototype.clear = function () {
99
- this.i.m();
113
+ this.i.n();
100
114
  };
101
115
  IgcColumnGroupDescriptionCollection.prototype.indexOf = function (item) {
102
- var iv = this.i.j((item == null ? null : item.i));
116
+ var iv = this.i.k((item == null ? null : item.i));
103
117
  return (iv);
104
118
  };
105
119
  IgcColumnGroupDescriptionCollection.prototype.remove = function (item) {
@@ -55,33 +55,33 @@ var IgcColumnMovingSeparatorComponent = /** @class */ /*@__PURE__*/ (function (_
55
55
  * Gets or sets the separator width for this column.
56
56
  */
57
57
  get: function () {
58
- return this.i.eq;
58
+ return this.i.er;
59
59
  },
60
60
  set: function (v) {
61
- this.i.eq = +v;
62
- this._a("separatorWidth", this.i.eq);
61
+ this.i.er = +v;
62
+ this._a("separatorWidth", this.i.er);
63
63
  },
64
64
  enumerable: true,
65
65
  configurable: true
66
66
  });
67
67
  Object.defineProperty(IgcColumnMovingSeparatorComponent.prototype, "actualOpacity", {
68
68
  get: function () {
69
- return this.i.en;
69
+ return this.i.eo;
70
70
  },
71
71
  set: function (v) {
72
- this.i.en = +v;
73
- this._a("actualOpacity", this.i.en);
72
+ this.i.eo = +v;
73
+ this._a("actualOpacity", this.i.eo);
74
74
  },
75
75
  enumerable: true,
76
76
  configurable: true
77
77
  });
78
78
  Object.defineProperty(IgcColumnMovingSeparatorComponent.prototype, "opacity", {
79
79
  get: function () {
80
- return this.i.eo;
80
+ return this.i.ep;
81
81
  },
82
82
  set: function (v) {
83
- this.i.eo = +v;
84
- this._a("opacity", this.i.eo);
83
+ this.i.ep = +v;
84
+ this._a("opacity", this.i.ep);
85
85
  },
86
86
  enumerable: true,
87
87
  configurable: true
@@ -52,22 +52,22 @@ var IgcColumnResizingSeparatorComponent = /** @class */ /*@__PURE__*/ (function
52
52
  };
53
53
  Object.defineProperty(IgcColumnResizingSeparatorComponent.prototype, "actualOpacity", {
54
54
  get: function () {
55
- return this.i.en;
55
+ return this.i.eo;
56
56
  },
57
57
  set: function (v) {
58
- this.i.en = +v;
59
- this._a("actualOpacity", this.i.en);
58
+ this.i.eo = +v;
59
+ this._a("actualOpacity", this.i.eo);
60
60
  },
61
61
  enumerable: true,
62
62
  configurable: true
63
63
  });
64
64
  Object.defineProperty(IgcColumnResizingSeparatorComponent.prototype, "opacity", {
65
65
  get: function () {
66
- return this.i.eo;
66
+ return this.i.ep;
67
67
  },
68
68
  set: function (v) {
69
- this.i.eo = +v;
70
- this._a("opacity", this.i.eo);
69
+ this.i.ep = +v;
70
+ this._a("opacity", this.i.ep);
71
71
  },
72
72
  enumerable: true,
73
73
  configurable: true
@@ -1,4 +1,5 @@
1
1
  import * as tslib_1 from "tslib";
2
+ import { ensureBool } from "igniteui-webcomponents-core";
2
3
  import { IgcColumnSortDescription } from "./igc-column-sort-description";
3
4
  import { ColumnSortDescriptionCollection as ColumnSortDescriptionCollection_internal } from "./ColumnSortDescriptionCollection";
4
5
  /**
@@ -85,6 +86,19 @@ var IgcColumnSortDescriptionCollection = /** @class */ /*@__PURE__*/ (function (
85
86
  }
86
87
  });
87
88
  };
89
+ Object.defineProperty(IgcColumnSortDescriptionCollection.prototype, "shouldDetachOnTargetChange", {
90
+ /**
91
+ * Gets or sets whether this collection should detach the sync when the target collection changes.
92
+ */
93
+ get: function () {
94
+ return this.i.i;
95
+ },
96
+ set: function (v) {
97
+ this.i.i = ensureBool(v);
98
+ },
99
+ enumerable: true,
100
+ configurable: true
101
+ });
88
102
  IgcColumnSortDescriptionCollection.prototype.findByName = function (name) {
89
103
  return null;
90
104
  };
@@ -93,13 +107,13 @@ var IgcColumnSortDescriptionCollection = /** @class */ /*@__PURE__*/ (function (
93
107
  return (iv);
94
108
  };
95
109
  IgcColumnSortDescriptionCollection.prototype.insert = function (index, item) {
96
- this.i.n(index, (item == null ? null : item.i));
110
+ this.i.o(index, (item == null ? null : item.i));
97
111
  };
98
112
  IgcColumnSortDescriptionCollection.prototype.clear = function () {
99
- this.i.m();
113
+ this.i.n();
100
114
  };
101
115
  IgcColumnSortDescriptionCollection.prototype.indexOf = function (item) {
102
- var iv = this.i.j((item == null ? null : item.i));
116
+ var iv = this.i.k((item == null ? null : item.i));
103
117
  return (iv);
104
118
  };
105
119
  IgcColumnSortDescriptionCollection.prototype.remove = function (item) {
@@ -1,4 +1,5 @@
1
1
  import * as tslib_1 from "tslib";
2
+ import { ensureBool } from "igniteui-webcomponents-core";
2
3
  import { IgcColumnSummaryDescription } from "./igc-column-summary-description";
3
4
  import { ColumnSummaryDescriptionCollection as ColumnSummaryDescriptionCollection_internal } from "./ColumnSummaryDescriptionCollection";
4
5
  var IgcColumnSummaryDescriptionCollection = /** @class */ /*@__PURE__*/ (function () {
@@ -82,6 +83,19 @@ var IgcColumnSummaryDescriptionCollection = /** @class */ /*@__PURE__*/ (functio
82
83
  }
83
84
  });
84
85
  };
86
+ Object.defineProperty(IgcColumnSummaryDescriptionCollection.prototype, "shouldDetachOnTargetChange", {
87
+ /**
88
+ * Gets or sets whether this collection should detach the sync when the target collection changes.
89
+ */
90
+ get: function () {
91
+ return this.i.i;
92
+ },
93
+ set: function (v) {
94
+ this.i.i = ensureBool(v);
95
+ },
96
+ enumerable: true,
97
+ configurable: true
98
+ });
85
99
  IgcColumnSummaryDescriptionCollection.prototype.findByName = function (name) {
86
100
  return null;
87
101
  };
@@ -90,13 +104,13 @@ var IgcColumnSummaryDescriptionCollection = /** @class */ /*@__PURE__*/ (functio
90
104
  return (iv);
91
105
  };
92
106
  IgcColumnSummaryDescriptionCollection.prototype.insert = function (index, item) {
93
- this.i.n(index, (item == null ? null : item.i));
107
+ this.i.o(index, (item == null ? null : item.i));
94
108
  };
95
109
  IgcColumnSummaryDescriptionCollection.prototype.clear = function () {
96
- this.i.m();
110
+ this.i.n();
97
111
  };
98
112
  IgcColumnSummaryDescriptionCollection.prototype.indexOf = function (item) {
99
- var iv = this.i.j((item == null ? null : item.i));
113
+ var iv = this.i.k((item == null ? null : item.i));
100
114
  return (iv);
101
115
  };
102
116
  IgcColumnSummaryDescriptionCollection.prototype.remove = function (item) {
@@ -58,10 +58,10 @@ var IgcComboBoxColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
58
58
  * Gets the actual data source that is being used by the combo. If a collection was provided for the combobox data, an implicit LocalDataSource is created, and this is available via this property.
59
59
  */
60
60
  get: function () {
61
- return this.i.lm;
61
+ return this.i.ln;
62
62
  },
63
63
  set: function (v) {
64
- this.i.lm = v;
64
+ this.i.ln = v;
65
65
  },
66
66
  enumerable: true,
67
67
  configurable: true
@@ -71,10 +71,10 @@ var IgcComboBoxColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
71
71
  * Gets or sets the ComboBox data source.
72
72
  */
73
73
  get: function () {
74
- return this.i.ln;
74
+ return this.i.lo;
75
75
  },
76
76
  set: function (v) {
77
- this.i.ln = v;
77
+ this.i.lo = v;
78
78
  },
79
79
  enumerable: true,
80
80
  configurable: true
@@ -84,10 +84,10 @@ var IgcComboBoxColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
84
84
  * Gets or sets the ComboBox text field.
85
85
  */
86
86
  get: function () {
87
- return this.i.lr;
87
+ return this.i.ls;
88
88
  },
89
89
  set: function (v) {
90
- this.i.lr = v;
90
+ this.i.ls = v;
91
91
  },
92
92
  enumerable: true,
93
93
  configurable: true
@@ -97,10 +97,10 @@ var IgcComboBoxColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
97
97
  * Gets or sets the ComboBox value field.
98
98
  */
99
99
  get: function () {
100
- return this.i.ls;
100
+ return this.i.lt;
101
101
  },
102
102
  set: function (v) {
103
- this.i.ls = v;
103
+ this.i.lt = v;
104
104
  },
105
105
  enumerable: true,
106
106
  configurable: true
@@ -110,14 +110,14 @@ var IgcComboBoxColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
110
110
  * Gets or sets the ComboBox value field.
111
111
  */
112
112
  get: function () {
113
- return this.i.lk;
113
+ return this.i.ll;
114
114
  },
115
115
  set: function (v) {
116
116
  if (v && !Array.isArray(v) && typeof (v) == "string") {
117
117
  var re = /\s*(?:,|\s|$)\s*/gm;
118
118
  v = v.split(re);
119
119
  }
120
- this.i.lk = v;
120
+ this.i.ll = v;
121
121
  },
122
122
  enumerable: true,
123
123
  configurable: true