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
@@ -197,11 +197,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
197
197
  * Gets or sets the background color to use for the cells when they are selected
198
198
  */
199
199
  get: function () {
200
- return brushToString(this.i.n1);
200
+ return brushToString(this.i.n2);
201
201
  },
202
202
  set: function (v) {
203
- this.i.n1 = stringToBrush(v);
204
- this._a("selectedBackground", brushToString(this.i.n1));
203
+ this.i.n2 = stringToBrush(v);
204
+ this._a("selectedBackground", brushToString(this.i.n2));
205
205
  },
206
206
  enumerable: false,
207
207
  configurable: true
@@ -211,11 +211,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
211
211
  * Gets the actual background color that is used for the cells when they are selected
212
212
  */
213
213
  get: function () {
214
- return brushToString(this.i.nu);
214
+ return brushToString(this.i.nv);
215
215
  },
216
216
  set: function (v) {
217
- this.i.nu = stringToBrush(v);
218
- this._a("actualSelectedBackground", brushToString(this.i.nu));
217
+ this.i.nv = stringToBrush(v);
218
+ this._a("actualSelectedBackground", brushToString(this.i.nv));
219
219
  },
220
220
  enumerable: false,
221
221
  configurable: true
@@ -225,11 +225,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
225
225
  * Gets or sets the background color to use for the cells when the row is hovered.
226
226
  */
227
227
  get: function () {
228
- return brushToString(this.i.nz);
228
+ return brushToString(this.i.n0);
229
229
  },
230
230
  set: function (v) {
231
- this.i.nz = stringToBrush(v);
232
- this._a("rowHoverBackground", brushToString(this.i.nz));
231
+ this.i.n0 = stringToBrush(v);
232
+ this._a("rowHoverBackground", brushToString(this.i.n0));
233
233
  },
234
234
  enumerable: false,
235
235
  configurable: true
@@ -239,11 +239,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
239
239
  * Gets the actual background color that is used for the cells when they are hovered.
240
240
  */
241
241
  get: function () {
242
- return brushToString(this.i.ns);
242
+ return brushToString(this.i.nt);
243
243
  },
244
244
  set: function (v) {
245
- this.i.ns = stringToBrush(v);
246
- this._a("actualHoverBackground", brushToString(this.i.ns));
245
+ this.i.nt = stringToBrush(v);
246
+ this._a("actualHoverBackground", brushToString(this.i.nt));
247
247
  },
248
248
  enumerable: false,
249
249
  configurable: true
@@ -253,11 +253,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
253
253
  * Gets or sets the text color to use for the cells when the row is hovered.
254
254
  */
255
255
  get: function () {
256
- return brushToString(this.i.n0);
256
+ return brushToString(this.i.n1);
257
257
  },
258
258
  set: function (v) {
259
- this.i.n0 = stringToBrush(v);
260
- this._a("rowHoverTextColor", brushToString(this.i.n0));
259
+ this.i.n1 = stringToBrush(v);
260
+ this._a("rowHoverTextColor", brushToString(this.i.n1));
261
261
  },
262
262
  enumerable: false,
263
263
  configurable: true
@@ -267,11 +267,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
267
267
  * Gets the actual text color that is used for the cells when they are hovered.
268
268
  */
269
269
  get: function () {
270
- return brushToString(this.i.nt);
270
+ return brushToString(this.i.nu);
271
271
  },
272
272
  set: function (v) {
273
- this.i.nt = stringToBrush(v);
274
- this._a("actualRowHoverTextColor", brushToString(this.i.nt));
273
+ this.i.nu = stringToBrush(v);
274
+ this._a("actualRowHoverTextColor", brushToString(this.i.nu));
275
275
  },
276
276
  enumerable: false,
277
277
  configurable: true
@@ -359,11 +359,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
359
359
  * Gets whether this column was projected from markup/templates and is constrained.
360
360
  */
361
361
  get: function () {
362
- return this.i.jo;
362
+ return this.i.jn;
363
363
  },
364
364
  set: function (v) {
365
- this.i.jo = ensureBool(v);
366
- this._a("isFromMarkup", this.i.jo);
365
+ this.i.jn = ensureBool(v);
366
+ this._a("isFromMarkup", this.i.jn);
367
367
  },
368
368
  enumerable: false,
369
369
  configurable: true
@@ -373,11 +373,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
373
373
  * Gets whether this column was auto generated.
374
374
  */
375
375
  get: function () {
376
- return this.i.ji;
376
+ return this.i.jh;
377
377
  },
378
378
  set: function (v) {
379
- this.i.ji = ensureBool(v);
380
- this._a("isAutoGenerated", this.i.ji);
379
+ this.i.jh = ensureBool(v);
380
+ this._a("isAutoGenerated", this.i.jh);
381
381
  },
382
382
  enumerable: false,
383
383
  configurable: true
@@ -439,11 +439,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
439
439
  * Gets or sets whether filtering is enabled for this column.
440
440
  */
441
441
  get: function () {
442
- return this.i.jn;
442
+ return this.i.jm;
443
443
  },
444
444
  set: function (v) {
445
- this.i.jn = ensureBool(v);
446
- this._a("isFilteringEnabled", this.i.jn);
445
+ this.i.jm = ensureBool(v);
446
+ this._a("isFilteringEnabled", this.i.jm);
447
447
  },
448
448
  enumerable: false,
449
449
  configurable: true
@@ -453,11 +453,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
453
453
  * Gets or sets whether resizing is enabled for this column.
454
454
  */
455
455
  get: function () {
456
- return this.i.jq;
456
+ return this.i.jp;
457
457
  },
458
458
  set: function (v) {
459
- this.i.jq = ensureBool(v);
460
- this._a("isResizingEnabled", this.i.jq);
459
+ this.i.jp = ensureBool(v);
460
+ this._a("isResizingEnabled", this.i.jp);
461
461
  },
462
462
  enumerable: false,
463
463
  configurable: true
@@ -467,11 +467,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
467
467
  * Gets or sets whether or not a column is hidden from the grid
468
468
  */
469
469
  get: function () {
470
- return this.i.jp;
470
+ return this.i.jo;
471
471
  },
472
472
  set: function (v) {
473
- this.i.jp = ensureBool(v);
474
- this._a("isHidden", this.i.jp);
473
+ this.i.jo = ensureBool(v);
474
+ this._a("isHidden", this.i.jo);
475
475
  },
476
476
  enumerable: false,
477
477
  configurable: true
@@ -481,11 +481,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
481
481
  * Gets or sets if a column should be removed from the grid when it is fully hidden
482
482
  */
483
483
  get: function () {
484
- return this.i.jt;
484
+ return this.i.js;
485
485
  },
486
486
  set: function (v) {
487
- this.i.jt = ensureBool(v);
488
- this._a("shouldRemoveWhenHidden", this.i.jt);
487
+ this.i.js = ensureBool(v);
488
+ this._a("shouldRemoveWhenHidden", this.i.js);
489
489
  },
490
490
  enumerable: false,
491
491
  configurable: true
@@ -551,11 +551,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
551
551
  * Gets the actual column options icon color for this column.
552
552
  */
553
553
  get: function () {
554
- return brushToString(this.i.nq);
554
+ return brushToString(this.i.nr);
555
555
  },
556
556
  set: function (v) {
557
- this.i.nq = stringToBrush(v);
558
- this._a("actualColumnOptionsIconColor", brushToString(this.i.nq));
557
+ this.i.nr = stringToBrush(v);
558
+ this._a("actualColumnOptionsIconColor", brushToString(this.i.nr));
559
559
  },
560
560
  enumerable: false,
561
561
  configurable: true
@@ -565,11 +565,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
565
565
  * Gets or sets the column options icon color for this column.
566
566
  */
567
567
  get: function () {
568
- return brushToString(this.i.nv);
568
+ return brushToString(this.i.nw);
569
569
  },
570
570
  set: function (v) {
571
- this.i.nv = stringToBrush(v);
572
- this._a("columnOptionsIconColor", brushToString(this.i.nv));
571
+ this.i.nw = stringToBrush(v);
572
+ this._a("columnOptionsIconColor", brushToString(this.i.nw));
573
573
  },
574
574
  enumerable: false,
575
575
  configurable: true
@@ -607,11 +607,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
607
607
  * Gets the actual state of the column options for this column.
608
608
  */
609
609
  get: function () {
610
- return this.i.jb;
610
+ return this.i.ja;
611
611
  },
612
612
  set: function (v) {
613
- this.i.jb = ensureBool(v);
614
- this._a("actualIsColumnOptionsEnabled", this.i.jb);
613
+ this.i.ja = ensureBool(v);
614
+ this._a("actualIsColumnOptionsEnabled", this.i.ja);
615
615
  },
616
616
  enumerable: false,
617
617
  configurable: true
@@ -622,11 +622,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
622
622
  * then it will be disabled for the column regardless of what this is set to.
623
623
  */
624
624
  get: function () {
625
- return this.i.jj;
625
+ return this.i.ji;
626
626
  },
627
627
  set: function (v) {
628
- this.i.jj = ensureBool(v);
629
- this._a("isColumnOptionsEnabled", this.i.jj);
628
+ this.i.ji = ensureBool(v);
629
+ this._a("isColumnOptionsEnabled", this.i.ji);
630
630
  },
631
631
  enumerable: false,
632
632
  configurable: true
@@ -636,11 +636,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
636
636
  * Gets the actual state of summaries menu in the column options for this column.
637
637
  */
638
638
  get: function () {
639
- return this.i.jd;
639
+ return this.i.jc;
640
640
  },
641
641
  set: function (v) {
642
- this.i.jd = ensureBool(v);
643
- this._a("actualIsColumnOptionsSummariesEnabled", this.i.jd);
642
+ this.i.jc = ensureBool(v);
643
+ this._a("actualIsColumnOptionsSummariesEnabled", this.i.jc);
644
644
  },
645
645
  enumerable: false,
646
646
  configurable: true
@@ -650,11 +650,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
650
650
  * Gets or sets whether to show the summaries option in the column options menu for this column.
651
651
  */
652
652
  get: function () {
653
- return this.i.jl;
653
+ return this.i.jk;
654
654
  },
655
655
  set: function (v) {
656
- this.i.jl = ensureBool(v);
657
- this._a("isColumnOptionsSummariesEnabled", this.i.jl);
656
+ this.i.jk = ensureBool(v);
657
+ this._a("isColumnOptionsSummariesEnabled", this.i.jk);
658
658
  },
659
659
  enumerable: false,
660
660
  configurable: true
@@ -664,11 +664,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
664
664
  * Gets the actual state of grouping menu in the column options for this column.
665
665
  */
666
666
  get: function () {
667
- return this.i.jc;
667
+ return this.i.jb;
668
668
  },
669
669
  set: function (v) {
670
- this.i.jc = ensureBool(v);
671
- this._a("actualIsColumnOptionsGroupingEnabled", this.i.jc);
670
+ this.i.jb = ensureBool(v);
671
+ this._a("actualIsColumnOptionsGroupingEnabled", this.i.jb);
672
672
  },
673
673
  enumerable: false,
674
674
  configurable: true
@@ -678,11 +678,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
678
678
  * Gets or sets whether to show the grouping option in the column options menu for this column.
679
679
  */
680
680
  get: function () {
681
- return this.i.jk;
681
+ return this.i.jj;
682
682
  },
683
683
  set: function (v) {
684
- this.i.jk = ensureBool(v);
685
- this._a("isColumnOptionsGroupingEnabled", this.i.jk);
684
+ this.i.jj = ensureBool(v);
685
+ this._a("isColumnOptionsGroupingEnabled", this.i.jj);
686
686
  },
687
687
  enumerable: false,
688
688
  configurable: true
@@ -692,11 +692,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
692
692
  * Gets or sets if the column is editable.
693
693
  */
694
694
  get: function () {
695
- return this.i.jm;
695
+ return this.i.jl;
696
696
  },
697
697
  set: function (v) {
698
- this.i.jm = ensureBool(v);
699
- this._a("isEditable", this.i.jm);
698
+ this.i.jl = ensureBool(v);
699
+ this._a("isEditable", this.i.jl);
700
700
  },
701
701
  enumerable: false,
702
702
  configurable: true
@@ -706,11 +706,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
706
706
  * Gets or sets the text color used for deleted rows.
707
707
  */
708
708
  get: function () {
709
- return brushToString(this.i.nw);
709
+ return brushToString(this.i.nx);
710
710
  },
711
711
  set: function (v) {
712
- this.i.nw = stringToBrush(v);
713
- this._a("deletedTextColor", brushToString(this.i.nw));
712
+ this.i.nx = stringToBrush(v);
713
+ this._a("deletedTextColor", brushToString(this.i.nx));
714
714
  },
715
715
  enumerable: false,
716
716
  configurable: true
@@ -720,11 +720,11 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
720
720
  * Gets the actual text color used for deleted rows.
721
721
  */
722
722
  get: function () {
723
- return brushToString(this.i.nr);
723
+ return brushToString(this.i.ns);
724
724
  },
725
725
  set: function (v) {
726
- this.i.nr = stringToBrush(v);
727
- this._a("actualDeletedTextColor", brushToString(this.i.nr));
726
+ this.i.ns = stringToBrush(v);
727
+ this._a("actualDeletedTextColor", brushToString(this.i.ns));
728
728
  },
729
729
  enumerable: false,
730
730
  configurable: true
@@ -781,16 +781,16 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
781
781
  * Gets the actual font style used for unsaved cell edits.
782
782
  */
783
783
  get: function () {
784
- if (this.i.it == null) {
784
+ if (this.i.is == null) {
785
785
  return null;
786
786
  }
787
- return this.i.it.fontString;
787
+ return this.i.is.fontString;
788
788
  },
789
789
  set: function (v) {
790
790
  var fi = new FontInfo();
791
791
  fi.fontString = v;
792
- this.i.it = fi;
793
- this._a("actualEditFontInfo", this.i.it != null ? this.i.it.fontString : "");
792
+ this.i.is = fi;
793
+ this._a("actualEditFontInfo", this.i.is != null ? this.i.is.fontString : "");
794
794
  },
795
795
  enumerable: false,
796
796
  configurable: true
@@ -977,14 +977,14 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
977
977
  return (iv);
978
978
  };
979
979
  IgcDataGridColumnComponent.prototype.setNamedHeaderValue = function (valueName, animationType, value) {
980
- this.i.m1(valueName, (animationType == null ? null : animationType), value);
980
+ this.i.m2(valueName, (animationType == null ? null : animationType), value);
981
981
  };
982
982
  /**
983
983
  * Returns if the column has named header values.
984
984
 
985
985
  */
986
986
  IgcDataGridColumnComponent.prototype.hasNamedHeaderValues = function () {
987
- var iv = this.i.jg();
987
+ var iv = this.i.jf();
988
988
  return (iv);
989
989
  };
990
990
  /**
@@ -993,7 +993,7 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
993
993
  * @param valueName * The named value to check for.
994
994
  */
995
995
  IgcDataGridColumnComponent.prototype.hasNamedHeaderValue = function (valueName) {
996
- var iv = this.i.jf(valueName);
996
+ var iv = this.i.je(valueName);
997
997
  return (iv);
998
998
  };
999
999
  /**
@@ -1002,7 +1002,7 @@ var IgcDataGridColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
1002
1002
  * @param valueName * The named header value to remove.
1003
1003
  */
1004
1004
  IgcDataGridColumnComponent.prototype.removeNamedHeaderValue = function (valueName) {
1005
- this.i.m0(valueName);
1005
+ this.i.m1(valueName);
1006
1006
  };
1007
1007
  /**
1008
1008
  * Gets the value of a named header value for this column by name.
@@ -342,6 +342,9 @@ var IgcDataGridFilterDialogComponent = /** @class */ /*@__PURE__*/ (function (_s
342
342
  IgcDataGridFilterDialogComponent.prototype.provideContextAccessor = function (accessor) {
343
343
  this.i.provideContextAccessor(accessor);
344
344
  };
345
+ IgcDataGridFilterDialogComponent.prototype.dismissContextAccessor = function (accessor) {
346
+ this.i.dismissContextAccessor(accessor);
347
+ };
345
348
  Object.defineProperty(IgcDataGridFilterDialogComponent.prototype, "dialogOpening", {
346
349
  get: function () {
347
350
  return this._dialogOpening;
@@ -80,11 +80,11 @@ var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
80
80
  * Gets or sets the date time format to use for this column. If FormatString is specificied this value is ignored.
81
81
  */
82
82
  get: function () {
83
- return this.i.n7;
83
+ return this.i.n8;
84
84
  },
85
85
  set: function (v) {
86
- this.i.n7 = ensureEnum(DateTimeFormats_$type, v);
87
- this._a("dateTimeFormat", enumToString(DateTimeFormats_$type, this.i.n7));
86
+ this.i.n8 = ensureEnum(DateTimeFormats_$type, v);
87
+ this._a("dateTimeFormat", enumToString(DateTimeFormats_$type, this.i.n8));
88
88
  },
89
89
  enumerable: false,
90
90
  configurable: true
@@ -94,10 +94,10 @@ var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
94
94
  * Gets or sets the format string to apply to the value. If set, the other value formatting properties on this column are ignored.
95
95
  */
96
96
  get: function () {
97
- return this.i.op;
97
+ return this.i.oq;
98
98
  },
99
99
  set: function (v) {
100
- this.i.op = v;
100
+ this.i.oq = v;
101
101
  },
102
102
  enumerable: false,
103
103
  configurable: true
@@ -107,24 +107,24 @@ var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
107
107
  * Gets or sets the format string to use when editing dates.
108
108
  */
109
109
  get: function () {
110
- return this.i.oi;
110
+ return this.i.oj;
111
111
  },
112
112
  set: function (v) {
113
- this.i.oi = v;
113
+ this.i.oj = v;
114
114
  },
115
115
  enumerable: false,
116
116
  configurable: true
117
117
  });
118
118
  Object.defineProperty(IgcDateTimeColumnComponent.prototype, "formatSpecifiers", {
119
119
  get: function () {
120
- return this.i.n3;
120
+ return this.i.n4;
121
121
  },
122
122
  set: function (v) {
123
123
  if (v && !Array.isArray(v) && typeof (v) == "string") {
124
124
  var re = /\s*(?:,|\s|$)\s*/gm;
125
125
  v = v.split(re);
126
126
  }
127
- this.i.n3 = v;
127
+ this.i.n4 = v;
128
128
  },
129
129
  enumerable: false,
130
130
  configurable: true
@@ -134,10 +134,10 @@ var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
134
134
  * Gets or sets the INTL DateTimeFormat object to use for formatting the date values.
135
135
  */
136
136
  get: function () {
137
- return this.i.oe;
137
+ return this.i.of;
138
138
  },
139
139
  set: function (v) {
140
- this.i.oe = v;
140
+ this.i.of = v;
141
141
  },
142
142
  enumerable: false,
143
143
  configurable: true
@@ -147,11 +147,11 @@ var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
147
147
  * Gets or sets the ShowTodayButton property to detirmine if the today button is shown
148
148
  */
149
149
  get: function () {
150
- return this.i.oa;
150
+ return this.i.ob;
151
151
  },
152
152
  set: function (v) {
153
- this.i.oa = ensureBool(v);
154
- this._a("showTodayButton", this.i.oa);
153
+ this.i.ob = ensureBool(v);
154
+ this._a("showTodayButton", this.i.ob);
155
155
  },
156
156
  enumerable: false,
157
157
  configurable: true
@@ -161,11 +161,11 @@ var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
161
161
  * Gets or sets the editor type used for editing cells in this column.
162
162
  */
163
163
  get: function () {
164
- return this.i.n8;
164
+ return this.i.n9;
165
165
  },
166
166
  set: function (v) {
167
- this.i.n8 = ensureEnum(EditorType_$type, v);
168
- this._a("editorType", enumToString(EditorType_$type, this.i.n8));
167
+ this.i.n9 = ensureEnum(EditorType_$type, v);
168
+ this._a("editorType", enumToString(EditorType_$type, this.i.n9));
169
169
  },
170
170
  enumerable: false,
171
171
  configurable: true
@@ -175,10 +175,10 @@ var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
175
175
  * Gets or sets the ComboBox data source.
176
176
  */
177
177
  get: function () {
178
- return this.i.od;
178
+ return this.i.oe;
179
179
  },
180
180
  set: function (v) {
181
- this.i.od = v;
181
+ this.i.oe = v;
182
182
  },
183
183
  enumerable: false,
184
184
  configurable: true
@@ -188,10 +188,10 @@ var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
188
188
  * Gets or sets the ComboBox text field.
189
189
  */
190
190
  get: function () {
191
- return this.i.ok;
191
+ return this.i.ol;
192
192
  },
193
193
  set: function (v) {
194
- this.i.ok = v;
194
+ this.i.ol = v;
195
195
  },
196
196
  enumerable: false,
197
197
  configurable: true
@@ -201,10 +201,10 @@ var IgcDateTimeColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
201
201
  * Gets or sets the ComboBox value field.
202
202
  */
203
203
  get: function () {
204
- return this.i.ol;
204
+ return this.i.om;
205
205
  },
206
206
  set: function (v) {
207
- this.i.ol = v;
207
+ this.i.om = v;
208
208
  },
209
209
  enumerable: false,
210
210
  configurable: true
@@ -80,11 +80,11 @@ var IgcImageColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
80
80
  * Gets or sets the stretch option to use when rendering images
81
81
  */
82
82
  get: function () {
83
- return this.i.n6;
83
+ return this.i.n7;
84
84
  },
85
85
  set: function (v) {
86
- this.i.n6 = ensureEnum(ImageStretchOptions_$type, v);
87
- this._a("imageStretchOption", enumToString(ImageStretchOptions_$type, this.i.n6));
86
+ this.i.n7 = ensureEnum(ImageStretchOptions_$type, v);
87
+ this._a("imageStretchOption", enumToString(ImageStretchOptions_$type, this.i.n7));
88
88
  },
89
89
  enumerable: false,
90
90
  configurable: true
@@ -94,11 +94,11 @@ var IgcImageColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
94
94
  * Gets or sets the editor type used for editing cells in this column.
95
95
  */
96
96
  get: function () {
97
- return this.i.n2;
97
+ return this.i.n3;
98
98
  },
99
99
  set: function (v) {
100
- this.i.n2 = ensureEnum(EditorType_$type, v);
101
- this._a("editorType", enumToString(EditorType_$type, this.i.n2));
100
+ this.i.n3 = ensureEnum(EditorType_$type, v);
101
+ this._a("editorType", enumToString(EditorType_$type, this.i.n3));
102
102
  },
103
103
  enumerable: false,
104
104
  configurable: true
@@ -108,10 +108,10 @@ var IgcImageColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
108
108
  * Gets or sets the ComboBox data source.
109
109
  */
110
110
  get: function () {
111
- return this.i.n7;
111
+ return this.i.n8;
112
112
  },
113
113
  set: function (v) {
114
- this.i.n7 = v;
114
+ this.i.n8 = v;
115
115
  },
116
116
  enumerable: false,
117
117
  configurable: true
@@ -121,10 +121,10 @@ var IgcImageColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
121
121
  * Gets or sets the ComboBox text field.
122
122
  */
123
123
  get: function () {
124
- return this.i.n8;
124
+ return this.i.n9;
125
125
  },
126
126
  set: function (v) {
127
- this.i.n8 = v;
127
+ this.i.n9 = v;
128
128
  },
129
129
  enumerable: false,
130
130
  configurable: true
@@ -134,10 +134,10 @@ var IgcImageColumnComponent = /** @class */ /*@__PURE__*/ (function (_super) {
134
134
  * Gets or sets the ComboBox value field.
135
135
  */
136
136
  get: function () {
137
- return this.i.n9;
137
+ return this.i.oa;
138
138
  },
139
139
  set: function (v) {
140
- this.i.n9 = v;
140
+ this.i.oa = v;
141
141
  },
142
142
  enumerable: false,
143
143
  configurable: true