igniteui-webcomponents-grids 5.3.0 → 5.4.0

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 (97) hide show
  1. package/bundles/igniteui-webcomponents-grids.umd.js +2341 -1701
  2. package/bundles/igniteui-webcomponents-grids.umd.min.js +1 -1
  3. package/custom-elements.json +1423 -0
  4. package/esm2015/lib/CanvasTemplateCellPresenter.js +1 -1
  5. package/esm2015/lib/CheckboxListBridge.js +97 -49
  6. package/esm2015/lib/CheckboxListView_combined.js +989 -602
  7. package/esm2015/lib/ColumnChooserView_combined.js +9 -9
  8. package/esm2015/lib/ColumnFilterCondition_combined.js +803 -789
  9. package/esm2015/lib/ColumnGroupingView_combined.js +1 -1
  10. package/esm2015/lib/ColumnPinningView_combined.js +3 -3
  11. package/esm2015/lib/DataGridToolbarView_combined.js +1 -1
  12. package/esm2015/lib/GridCellBase.js +14 -4
  13. package/esm2015/lib/GridColumnFilterOptionsView_combined.js +8 -8
  14. package/esm2015/lib/GridColumnGroupOptionsView_combined.js +3 -3
  15. package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
  16. package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
  17. package/esm2015/lib/GridColumnPinOptionsView_combined.js +1 -1
  18. package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +2 -2
  19. package/esm2015/lib/GridEffectMainIntent.js +1 -1
  20. package/esm2015/lib/GridFilterDialogView_combined.js +2 -0
  21. package/esm2015/lib/ISummaryChooserView_combined.js +9 -9
  22. package/esm2015/lib/MultiColumnComboBoxView_combined.js +3 -3
  23. package/esm2015/lib/TemplateCellPresenter.js +1 -1
  24. package/esm2015/lib/TemplateHeader.js +1 -1
  25. package/esm2015/lib/igc-checkbox-list-component.js +150 -71
  26. package/esm2015/lib/igc-combo-box-column-component.js +10 -10
  27. package/esm2015/lib/igc-data-grid-column-component.js +77 -77
  28. package/esm2015/lib/igc-data-grid-filter-dialog-component.js +3 -0
  29. package/esm2015/lib/igc-date-time-column-component.js +23 -23
  30. package/esm2015/lib/igc-image-column-component.js +12 -12
  31. package/esm2015/lib/igc-numeric-column-component.js +35 -35
  32. package/esm2015/lib/igc-text-column-component.js +9 -9
  33. package/esm5/lib/CanvasTemplateCellPresenter.js +1 -1
  34. package/esm5/lib/CheckboxListBridge.js +97 -49
  35. package/esm5/lib/CheckboxListView_combined.js +1009 -580
  36. package/esm5/lib/ColumnChooserView_combined.js +9 -9
  37. package/esm5/lib/ColumnFilterCondition_combined.js +836 -786
  38. package/esm5/lib/ColumnGroupingView_combined.js +1 -1
  39. package/esm5/lib/ColumnPinningView_combined.js +3 -3
  40. package/esm5/lib/DataGridToolbarView_combined.js +1 -1
  41. package/esm5/lib/GridCellBase.js +14 -4
  42. package/esm5/lib/GridColumnFilterOptionsView_combined.js +8 -8
  43. package/esm5/lib/GridColumnGroupOptionsView_combined.js +3 -3
  44. package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
  45. package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
  46. package/esm5/lib/GridColumnPinOptionsView_combined.js +1 -1
  47. package/esm5/lib/GridColumnSummaryOptionsView_combined.js +2 -2
  48. package/esm5/lib/GridEffectMainIntent.js +1 -1
  49. package/esm5/lib/GridFilterDialogView_combined.js +2 -0
  50. package/esm5/lib/ISummaryChooserView_combined.js +9 -9
  51. package/esm5/lib/MultiColumnComboBoxView_combined.js +3 -3
  52. package/esm5/lib/TemplateCellPresenter.js +1 -1
  53. package/esm5/lib/TemplateHeader.js +1 -1
  54. package/esm5/lib/igc-checkbox-list-component.js +179 -71
  55. package/esm5/lib/igc-combo-box-column-component.js +10 -10
  56. package/esm5/lib/igc-data-grid-column-component.js +77 -77
  57. package/esm5/lib/igc-data-grid-filter-dialog-component.js +3 -0
  58. package/esm5/lib/igc-date-time-column-component.js +23 -23
  59. package/esm5/lib/igc-image-column-component.js +12 -12
  60. package/esm5/lib/igc-numeric-column-component.js +35 -35
  61. package/esm5/lib/igc-text-column-component.js +9 -9
  62. package/fesm2015/igniteui-webcomponents-grids.js +2259 -1726
  63. package/fesm5/igniteui-webcomponents-grids.js +2343 -1703
  64. package/grids/combined.js +25338 -23125
  65. package/grids/index.d.ts +1 -204
  66. package/grids/lib/igc-column-component.d.ts +1 -1
  67. package/grids/lib/igc-expression-tree.d.ts +7 -0
  68. package/grids/lib/igc-filtering-expression.d.ts +9 -4
  69. package/grids/lib/igc-filtering-expressions-tree.d.ts +9 -1
  70. package/grids/lib/igc-filtering-operand.d.ts +1 -1
  71. package/grids/lib/igc-filtering-operation.d.ts +4 -2
  72. package/grids/lib/igc-grid-base-directive.d.ts +1 -1
  73. package/grids/lib/igc-grid-created-event-args.d.ts +3 -0
  74. package/grids/lib/igc-hierarchical-grid-base-directive.d.ts +1 -1
  75. package/grids/lib/igc-pivot-dimension.d.ts +1 -1
  76. package/grids/lib/igc-pivot-value.d.ts +1 -1
  77. package/grids/lib/igc-row-island-component.d.ts +1 -1
  78. package/grids/lib/index.d.ts +204 -0
  79. package/grids/styles.css +1 -1
  80. package/grids/themes/dark/bootstrap.css +1 -1
  81. package/grids/themes/dark/fluent.css +1 -1
  82. package/grids/themes/dark/indigo.css +1 -1
  83. package/grids/themes/dark/material.css +1 -1
  84. package/grids/themes/light/bootstrap.css +1 -1
  85. package/grids/themes/light/fluent.css +1 -1
  86. package/grids/themes/light/indigo.css +1 -1
  87. package/grids/themes/light/material.css +1 -1
  88. package/lib/CheckboxListBridge.d.ts +12 -9
  89. package/lib/CheckboxListExternal.d.ts +12 -0
  90. package/lib/CheckboxListViewExternal.d.ts +1 -0
  91. package/lib/CheckboxListView_combined.d.ts +184 -151
  92. package/lib/ColumnFilterCondition_combined.d.ts +178 -176
  93. package/lib/GridEffectMainIntent.d.ts +4 -3
  94. package/lib/GridFilterDialogView_combined.d.ts +1 -0
  95. package/lib/igc-checkbox-list-component.d.ts +29 -0
  96. package/lib/igc-data-grid-filter-dialog-component.d.ts +1 -0
  97. package/package.json +4 -4
@@ -154,61 +154,61 @@ export let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
154
154
  * Gets or sets the background color to use for the cells when they are selected
155
155
  */
156
156
  get selectedBackground() {
157
- return brushToString(this.i.n1);
157
+ return brushToString(this.i.n2);
158
158
  }
159
159
  set selectedBackground(v) {
160
- this.i.n1 = stringToBrush(v);
161
- this._a("selectedBackground", brushToString(this.i.n1));
160
+ this.i.n2 = stringToBrush(v);
161
+ this._a("selectedBackground", brushToString(this.i.n2));
162
162
  }
163
163
  /**
164
164
  * Gets the actual background color that is used for the cells when they are selected
165
165
  */
166
166
  get actualSelectedBackground() {
167
- return brushToString(this.i.nu);
167
+ return brushToString(this.i.nv);
168
168
  }
169
169
  set actualSelectedBackground(v) {
170
- this.i.nu = stringToBrush(v);
171
- this._a("actualSelectedBackground", brushToString(this.i.nu));
170
+ this.i.nv = stringToBrush(v);
171
+ this._a("actualSelectedBackground", brushToString(this.i.nv));
172
172
  }
173
173
  /**
174
174
  * Gets or sets the background color to use for the cells when the row is hovered.
175
175
  */
176
176
  get rowHoverBackground() {
177
- return brushToString(this.i.nz);
177
+ return brushToString(this.i.n0);
178
178
  }
179
179
  set rowHoverBackground(v) {
180
- this.i.nz = stringToBrush(v);
181
- this._a("rowHoverBackground", brushToString(this.i.nz));
180
+ this.i.n0 = stringToBrush(v);
181
+ this._a("rowHoverBackground", brushToString(this.i.n0));
182
182
  }
183
183
  /**
184
184
  * Gets the actual background color that is used for the cells when they are hovered.
185
185
  */
186
186
  get actualHoverBackground() {
187
- return brushToString(this.i.ns);
187
+ return brushToString(this.i.nt);
188
188
  }
189
189
  set actualHoverBackground(v) {
190
- this.i.ns = stringToBrush(v);
191
- this._a("actualHoverBackground", brushToString(this.i.ns));
190
+ this.i.nt = stringToBrush(v);
191
+ this._a("actualHoverBackground", brushToString(this.i.nt));
192
192
  }
193
193
  /**
194
194
  * Gets or sets the text color to use for the cells when the row is hovered.
195
195
  */
196
196
  get rowHoverTextColor() {
197
- return brushToString(this.i.n0);
197
+ return brushToString(this.i.n1);
198
198
  }
199
199
  set rowHoverTextColor(v) {
200
- this.i.n0 = stringToBrush(v);
201
- this._a("rowHoverTextColor", brushToString(this.i.n0));
200
+ this.i.n1 = stringToBrush(v);
201
+ this._a("rowHoverTextColor", brushToString(this.i.n1));
202
202
  }
203
203
  /**
204
204
  * Gets the actual text color that is used for the cells when they are hovered.
205
205
  */
206
206
  get actualRowHoverTextColor() {
207
- return brushToString(this.i.nt);
207
+ return brushToString(this.i.nu);
208
208
  }
209
209
  set actualRowHoverTextColor(v) {
210
- this.i.nt = stringToBrush(v);
211
- this._a("actualRowHoverTextColor", brushToString(this.i.nt));
210
+ this.i.nu = stringToBrush(v);
211
+ this._a("actualRowHoverTextColor", brushToString(this.i.nu));
212
212
  }
213
213
  /**
214
214
  * Gets or sets the animation settings to use for this column.
@@ -280,21 +280,21 @@ export let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
280
280
  * Gets whether this column was projected from markup/templates and is constrained.
281
281
  */
282
282
  get isFromMarkup() {
283
- return this.i.jo;
283
+ return this.i.jn;
284
284
  }
285
285
  set isFromMarkup(v) {
286
- this.i.jo = ensureBool(v);
287
- this._a("isFromMarkup", this.i.jo);
286
+ this.i.jn = ensureBool(v);
287
+ this._a("isFromMarkup", this.i.jn);
288
288
  }
289
289
  /**
290
290
  * Gets whether this column was auto generated.
291
291
  */
292
292
  get isAutoGenerated() {
293
- return this.i.ji;
293
+ return this.i.jh;
294
294
  }
295
295
  set isAutoGenerated(v) {
296
- this.i.ji = ensureBool(v);
297
- this._a("isAutoGenerated", this.i.ji);
296
+ this.i.jh = ensureBool(v);
297
+ this._a("isAutoGenerated", this.i.jh);
298
298
  }
299
299
  /**
300
300
  * Gets or sets a filter to apply on the values of this column
@@ -340,41 +340,41 @@ export let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
340
340
  * Gets or sets whether filtering is enabled for this column.
341
341
  */
342
342
  get isFilteringEnabled() {
343
- return this.i.jn;
343
+ return this.i.jm;
344
344
  }
345
345
  set isFilteringEnabled(v) {
346
- this.i.jn = ensureBool(v);
347
- this._a("isFilteringEnabled", this.i.jn);
346
+ this.i.jm = ensureBool(v);
347
+ this._a("isFilteringEnabled", this.i.jm);
348
348
  }
349
349
  /**
350
350
  * Gets or sets whether resizing is enabled for this column.
351
351
  */
352
352
  get isResizingEnabled() {
353
- return this.i.jq;
353
+ return this.i.jp;
354
354
  }
355
355
  set isResizingEnabled(v) {
356
- this.i.jq = ensureBool(v);
357
- this._a("isResizingEnabled", this.i.jq);
356
+ this.i.jp = ensureBool(v);
357
+ this._a("isResizingEnabled", this.i.jp);
358
358
  }
359
359
  /**
360
360
  * Gets or sets whether or not a column is hidden from the grid
361
361
  */
362
362
  get isHidden() {
363
- return this.i.jp;
363
+ return this.i.jo;
364
364
  }
365
365
  set isHidden(v) {
366
- this.i.jp = ensureBool(v);
367
- this._a("isHidden", this.i.jp);
366
+ this.i.jo = ensureBool(v);
367
+ this._a("isHidden", this.i.jo);
368
368
  }
369
369
  /**
370
370
  * Gets or sets if a column should be removed from the grid when it is fully hidden
371
371
  */
372
372
  get shouldRemoveWhenHidden() {
373
- return this.i.jt;
373
+ return this.i.js;
374
374
  }
375
375
  set shouldRemoveWhenHidden(v) {
376
- this.i.jt = ensureBool(v);
377
- this._a("shouldRemoveWhenHidden", this.i.jt);
376
+ this.i.js = ensureBool(v);
377
+ this._a("shouldRemoveWhenHidden", this.i.js);
378
378
  }
379
379
  /**
380
380
  * Gets the current sort direction (None, Ascending, Descending) for this column.
@@ -420,21 +420,21 @@ export let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
420
420
  * Gets the actual column options icon color for this column.
421
421
  */
422
422
  get actualColumnOptionsIconColor() {
423
- return brushToString(this.i.nq);
423
+ return brushToString(this.i.nr);
424
424
  }
425
425
  set actualColumnOptionsIconColor(v) {
426
- this.i.nq = stringToBrush(v);
427
- this._a("actualColumnOptionsIconColor", brushToString(this.i.nq));
426
+ this.i.nr = stringToBrush(v);
427
+ this._a("actualColumnOptionsIconColor", brushToString(this.i.nr));
428
428
  }
429
429
  /**
430
430
  * Gets or sets the column options icon color for this column.
431
431
  */
432
432
  get columnOptionsIconColor() {
433
- return brushToString(this.i.nv);
433
+ return brushToString(this.i.nw);
434
434
  }
435
435
  set columnOptionsIconColor(v) {
436
- this.i.nv = stringToBrush(v);
437
- this._a("columnOptionsIconColor", brushToString(this.i.nv));
436
+ this.i.nw = stringToBrush(v);
437
+ this._a("columnOptionsIconColor", brushToString(this.i.nw));
438
438
  }
439
439
  /**
440
440
  * Gets or sets how the column option icon will behave in the column header.
@@ -460,92 +460,92 @@ export let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
460
460
  * Gets the actual state of the column options for this column.
461
461
  */
462
462
  get actualIsColumnOptionsEnabled() {
463
- return this.i.jb;
463
+ return this.i.ja;
464
464
  }
465
465
  set actualIsColumnOptionsEnabled(v) {
466
- this.i.jb = ensureBool(v);
467
- this._a("actualIsColumnOptionsEnabled", this.i.jb);
466
+ this.i.ja = ensureBool(v);
467
+ this._a("actualIsColumnOptionsEnabled", this.i.ja);
468
468
  }
469
469
  /**
470
470
  * Gets or sets the preferred state of the column options for this column. If the feature is disabled at the grid level
471
471
  * then it will be disabled for the column regardless of what this is set to.
472
472
  */
473
473
  get isColumnOptionsEnabled() {
474
- return this.i.jj;
474
+ return this.i.ji;
475
475
  }
476
476
  set isColumnOptionsEnabled(v) {
477
- this.i.jj = ensureBool(v);
478
- this._a("isColumnOptionsEnabled", this.i.jj);
477
+ this.i.ji = ensureBool(v);
478
+ this._a("isColumnOptionsEnabled", this.i.ji);
479
479
  }
480
480
  /**
481
481
  * Gets the actual state of summaries menu in the column options for this column.
482
482
  */
483
483
  get actualIsColumnOptionsSummariesEnabled() {
484
- return this.i.jd;
484
+ return this.i.jc;
485
485
  }
486
486
  set actualIsColumnOptionsSummariesEnabled(v) {
487
- this.i.jd = ensureBool(v);
488
- this._a("actualIsColumnOptionsSummariesEnabled", this.i.jd);
487
+ this.i.jc = ensureBool(v);
488
+ this._a("actualIsColumnOptionsSummariesEnabled", this.i.jc);
489
489
  }
490
490
  /**
491
491
  * Gets or sets whether to show the summaries option in the column options menu for this column.
492
492
  */
493
493
  get isColumnOptionsSummariesEnabled() {
494
- return this.i.jl;
494
+ return this.i.jk;
495
495
  }
496
496
  set isColumnOptionsSummariesEnabled(v) {
497
- this.i.jl = ensureBool(v);
498
- this._a("isColumnOptionsSummariesEnabled", this.i.jl);
497
+ this.i.jk = ensureBool(v);
498
+ this._a("isColumnOptionsSummariesEnabled", this.i.jk);
499
499
  }
500
500
  /**
501
501
  * Gets the actual state of grouping menu in the column options for this column.
502
502
  */
503
503
  get actualIsColumnOptionsGroupingEnabled() {
504
- return this.i.jc;
504
+ return this.i.jb;
505
505
  }
506
506
  set actualIsColumnOptionsGroupingEnabled(v) {
507
- this.i.jc = ensureBool(v);
508
- this._a("actualIsColumnOptionsGroupingEnabled", this.i.jc);
507
+ this.i.jb = ensureBool(v);
508
+ this._a("actualIsColumnOptionsGroupingEnabled", this.i.jb);
509
509
  }
510
510
  /**
511
511
  * Gets or sets whether to show the grouping option in the column options menu for this column.
512
512
  */
513
513
  get isColumnOptionsGroupingEnabled() {
514
- return this.i.jk;
514
+ return this.i.jj;
515
515
  }
516
516
  set isColumnOptionsGroupingEnabled(v) {
517
- this.i.jk = ensureBool(v);
518
- this._a("isColumnOptionsGroupingEnabled", this.i.jk);
517
+ this.i.jj = ensureBool(v);
518
+ this._a("isColumnOptionsGroupingEnabled", this.i.jj);
519
519
  }
520
520
  /**
521
521
  * Gets or sets if the column is editable.
522
522
  */
523
523
  get isEditable() {
524
- return this.i.jm;
524
+ return this.i.jl;
525
525
  }
526
526
  set isEditable(v) {
527
- this.i.jm = ensureBool(v);
528
- this._a("isEditable", this.i.jm);
527
+ this.i.jl = ensureBool(v);
528
+ this._a("isEditable", this.i.jl);
529
529
  }
530
530
  /**
531
531
  * Gets or sets the text color used for deleted rows.
532
532
  */
533
533
  get deletedTextColor() {
534
- return brushToString(this.i.nw);
534
+ return brushToString(this.i.nx);
535
535
  }
536
536
  set deletedTextColor(v) {
537
- this.i.nw = stringToBrush(v);
538
- this._a("deletedTextColor", brushToString(this.i.nw));
537
+ this.i.nx = stringToBrush(v);
538
+ this._a("deletedTextColor", brushToString(this.i.nx));
539
539
  }
540
540
  /**
541
541
  * Gets the actual text color used for deleted rows.
542
542
  */
543
543
  get actualDeletedTextColor() {
544
- return brushToString(this.i.nr);
544
+ return brushToString(this.i.ns);
545
545
  }
546
546
  set actualDeletedTextColor(v) {
547
- this.i.nr = stringToBrush(v);
548
- this._a("actualDeletedTextColor", brushToString(this.i.nr));
547
+ this.i.ns = stringToBrush(v);
548
+ this._a("actualDeletedTextColor", brushToString(this.i.ns));
549
549
  }
550
550
  /**
551
551
  * Gets or sets the opacity to use for unsaved edited cell values.
@@ -586,16 +586,16 @@ export let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
586
586
  * Gets the actual font style used for unsaved cell edits.
587
587
  */
588
588
  get actualEditFontInfo() {
589
- if (this.i.it == null) {
589
+ if (this.i.is == null) {
590
590
  return null;
591
591
  }
592
- return this.i.it.fontString;
592
+ return this.i.is.fontString;
593
593
  }
594
594
  set actualEditFontInfo(v) {
595
595
  let fi = new FontInfo();
596
596
  fi.fontString = v;
597
- this.i.it = fi;
598
- this._a("actualEditFontInfo", this.i.it != null ? this.i.it.fontString : "");
597
+ this.i.is = fi;
598
+ this._a("actualEditFontInfo", this.i.is != null ? this.i.is.fontString : "");
599
599
  }
600
600
  /**
601
601
  * Gets or sets if and how cell merging is performed for this field.
@@ -743,14 +743,14 @@ export let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
743
743
  return (iv);
744
744
  }
745
745
  setNamedHeaderValue(valueName, animationType, value) {
746
- this.i.m1(valueName, (animationType == null ? null : animationType), value);
746
+ this.i.m2(valueName, (animationType == null ? null : animationType), value);
747
747
  }
748
748
  /**
749
749
  * Returns if the column has named header values.
750
750
 
751
751
  */
752
752
  hasNamedHeaderValues() {
753
- let iv = this.i.jg();
753
+ let iv = this.i.jf();
754
754
  return (iv);
755
755
  }
756
756
  /**
@@ -759,7 +759,7 @@ export let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
759
759
  * @param valueName * The named value to check for.
760
760
  */
761
761
  hasNamedHeaderValue(valueName) {
762
- let iv = this.i.jf(valueName);
762
+ let iv = this.i.je(valueName);
763
763
  return (iv);
764
764
  }
765
765
  /**
@@ -768,7 +768,7 @@ export let IgcDataGridColumnComponent = /*@__PURE__*/ (() => {
768
768
  * @param valueName * The named header value to remove.
769
769
  */
770
770
  removeNamedHeaderValue(valueName) {
771
- this.i.m0(valueName);
771
+ this.i.m1(valueName);
772
772
  }
773
773
  /**
774
774
  * Gets the value of a named header value for this column by name.
@@ -296,6 +296,9 @@ export let IgcDataGridFilterDialogComponent = /*@__PURE__*/ (() => {
296
296
  provideContextAccessor(accessor) {
297
297
  this.i.provideContextAccessor(accessor);
298
298
  }
299
+ dismissContextAccessor(accessor) {
300
+ this.i.dismissContextAccessor(accessor);
301
+ }
299
302
  get dialogOpening() {
300
303
  return this._dialogOpening;
301
304
  }
@@ -70,95 +70,95 @@ export let IgcDateTimeColumnComponent = /*@__PURE__*/ (() => {
70
70
  * Gets or sets the date time format to use for this column. If FormatString is specificied this value is ignored.
71
71
  */
72
72
  get dateTimeFormat() {
73
- return this.i.n7;
73
+ return this.i.n8;
74
74
  }
75
75
  set dateTimeFormat(v) {
76
- this.i.n7 = ensureEnum(DateTimeFormats_$type, v);
77
- this._a("dateTimeFormat", enumToString(DateTimeFormats_$type, this.i.n7));
76
+ this.i.n8 = ensureEnum(DateTimeFormats_$type, v);
77
+ this._a("dateTimeFormat", enumToString(DateTimeFormats_$type, this.i.n8));
78
78
  }
79
79
  /**
80
80
  * Gets or sets the format string to apply to the value. If set, the other value formatting properties on this column are ignored.
81
81
  */
82
82
  get formatString() {
83
- return this.i.op;
83
+ return this.i.oq;
84
84
  }
85
85
  set formatString(v) {
86
- this.i.op = v;
86
+ this.i.oq = v;
87
87
  }
88
88
  /**
89
89
  * Gets or sets the format string to use when editing dates.
90
90
  */
91
91
  get editorFormatString() {
92
- return this.i.oi;
92
+ return this.i.oj;
93
93
  }
94
94
  set editorFormatString(v) {
95
- this.i.oi = v;
95
+ this.i.oj = v;
96
96
  }
97
97
  get formatSpecifiers() {
98
- return this.i.n3;
98
+ return this.i.n4;
99
99
  }
100
100
  set formatSpecifiers(v) {
101
101
  if (v && !Array.isArray(v) && typeof (v) == "string") {
102
102
  const re = /\s*(?:,|\s|$)\s*/gm;
103
103
  v = v.split(re);
104
104
  }
105
- this.i.n3 = v;
105
+ this.i.n4 = v;
106
106
  }
107
107
  /**
108
108
  * Gets or sets the INTL DateTimeFormat object to use for formatting the date values.
109
109
  */
110
110
  get formatOverride() {
111
- return this.i.oe;
111
+ return this.i.of;
112
112
  }
113
113
  set formatOverride(v) {
114
- this.i.oe = v;
114
+ this.i.of = v;
115
115
  }
116
116
  /**
117
117
  * Gets or sets the ShowTodayButton property to detirmine if the today button is shown
118
118
  */
119
119
  get showTodayButton() {
120
- return this.i.oa;
120
+ return this.i.ob;
121
121
  }
122
122
  set showTodayButton(v) {
123
- this.i.oa = ensureBool(v);
124
- this._a("showTodayButton", this.i.oa);
123
+ this.i.ob = ensureBool(v);
124
+ this._a("showTodayButton", this.i.ob);
125
125
  }
126
126
  /**
127
127
  * Gets or sets the editor type used for editing cells in this column.
128
128
  */
129
129
  get editorType() {
130
- return this.i.n8;
130
+ return this.i.n9;
131
131
  }
132
132
  set editorType(v) {
133
- this.i.n8 = ensureEnum(EditorType_$type, v);
134
- this._a("editorType", enumToString(EditorType_$type, this.i.n8));
133
+ this.i.n9 = ensureEnum(EditorType_$type, v);
134
+ this._a("editorType", enumToString(EditorType_$type, this.i.n9));
135
135
  }
136
136
  /**
137
137
  * Gets or sets the ComboBox data source.
138
138
  */
139
139
  get editorDataSource() {
140
- return this.i.od;
140
+ return this.i.oe;
141
141
  }
142
142
  set editorDataSource(v) {
143
- this.i.od = v;
143
+ this.i.oe = v;
144
144
  }
145
145
  /**
146
146
  * Gets or sets the ComboBox text field.
147
147
  */
148
148
  get editorTextField() {
149
- return this.i.ok;
149
+ return this.i.ol;
150
150
  }
151
151
  set editorTextField(v) {
152
- this.i.ok = v;
152
+ this.i.ol = v;
153
153
  }
154
154
  /**
155
155
  * Gets or sets the ComboBox value field.
156
156
  */
157
157
  get editorValueField() {
158
- return this.i.ol;
158
+ return this.i.om;
159
159
  }
160
160
  set editorValueField(v) {
161
- this.i.ol = v;
161
+ this.i.om = v;
162
162
  }
163
163
  findByName(name) {
164
164
  var baseResult = super.findByName(name);
@@ -70,48 +70,48 @@ export let IgcImageColumnComponent = /*@__PURE__*/ (() => {
70
70
  * Gets or sets the stretch option to use when rendering images
71
71
  */
72
72
  get imageStretchOption() {
73
- return this.i.n6;
73
+ return this.i.n7;
74
74
  }
75
75
  set imageStretchOption(v) {
76
- this.i.n6 = ensureEnum(ImageStretchOptions_$type, v);
77
- this._a("imageStretchOption", enumToString(ImageStretchOptions_$type, this.i.n6));
76
+ this.i.n7 = ensureEnum(ImageStretchOptions_$type, v);
77
+ this._a("imageStretchOption", enumToString(ImageStretchOptions_$type, this.i.n7));
78
78
  }
79
79
  /**
80
80
  * Gets or sets the editor type used for editing cells in this column.
81
81
  */
82
82
  get editorType() {
83
- return this.i.n2;
83
+ return this.i.n3;
84
84
  }
85
85
  set editorType(v) {
86
- this.i.n2 = ensureEnum(EditorType_$type, v);
87
- this._a("editorType", enumToString(EditorType_$type, this.i.n2));
86
+ this.i.n3 = ensureEnum(EditorType_$type, v);
87
+ this._a("editorType", enumToString(EditorType_$type, this.i.n3));
88
88
  }
89
89
  /**
90
90
  * Gets or sets the ComboBox data source.
91
91
  */
92
92
  get editorDataSource() {
93
- return this.i.n7;
93
+ return this.i.n8;
94
94
  }
95
95
  set editorDataSource(v) {
96
- this.i.n7 = v;
96
+ this.i.n8 = v;
97
97
  }
98
98
  /**
99
99
  * Gets or sets the ComboBox text field.
100
100
  */
101
101
  get editorTextField() {
102
- return this.i.n8;
102
+ return this.i.n9;
103
103
  }
104
104
  set editorTextField(v) {
105
- this.i.n8 = v;
105
+ this.i.n9 = v;
106
106
  }
107
107
  /**
108
108
  * Gets or sets the ComboBox value field.
109
109
  */
110
110
  get editorValueField() {
111
- return this.i.n9;
111
+ return this.i.oa;
112
112
  }
113
113
  set editorValueField(v) {
114
- this.i.n9 = v;
114
+ this.i.oa = v;
115
115
  }
116
116
  }
117
117
  IgcImageColumnComponent._observedAttributesIgcImageColumnComponent = null;