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
@@ -42,6 +42,8 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
42
42
  _this._selectedKeyRemoved_wrapped = null;
43
43
  _this._checkedChanged = null;
44
44
  _this._checkedChanged_wrapped = null;
45
+ _this._labelClicked = null;
46
+ _this._labelClicked_wrapped = null;
45
47
  _this._indexTypeChanged = null;
46
48
  _this._indexTypeChanged_wrapped = null;
47
49
  _this._keysCleared = null;
@@ -308,6 +310,39 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
308
310
  enumerable: false,
309
311
  configurable: true
310
312
  });
313
+ Object.defineProperty(IgcCheckboxListComponent.prototype, "dataLegendTarget", {
314
+ get: function () {
315
+ return this.i.bh;
316
+ },
317
+ set: function (v) {
318
+ this.i.bh = v;
319
+ },
320
+ enumerable: false,
321
+ configurable: true
322
+ });
323
+ Object.defineProperty(IgcCheckboxListComponent.prototype, "subtitleMemberPath", {
324
+ /**
325
+ * Gets or Sets the property name that contains the values.
326
+ */
327
+ get: function () {
328
+ return this.i.cw;
329
+ },
330
+ set: function (v) {
331
+ this.i.cw = v;
332
+ },
333
+ enumerable: false,
334
+ configurable: true
335
+ });
336
+ Object.defineProperty(IgcCheckboxListComponent.prototype, "propertyTypeMemberPath", {
337
+ get: function () {
338
+ return this.i.cb;
339
+ },
340
+ set: function (v) {
341
+ this.i.cb = v;
342
+ },
343
+ enumerable: false,
344
+ configurable: true
345
+ });
311
346
  Object.defineProperty(IgcCheckboxListComponent.prototype, "selectedMemberPath", {
312
347
  /**
313
348
  * Gets or Sets the property name that contains the values.
@@ -326,10 +361,10 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
326
361
  * Gets or Sets the property name that contains the values.
327
362
  */
328
363
  get: function () {
329
- return this.i.bm;
364
+ return this.i.b4;
330
365
  },
331
366
  set: function (v) {
332
- this.i.bm = v;
367
+ this.i.b4 = v;
333
368
  },
334
369
  enumerable: false,
335
370
  configurable: true
@@ -339,11 +374,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
339
374
  * Gets or Sets the property name that contains the values.
340
375
  */
341
376
  get: function () {
342
- return this.i.x;
377
+ return this.i.y;
343
378
  },
344
379
  set: function (v) {
345
- this.i.x = ensureEnum(InputGroupDisplayType_$type, v);
346
- this._a("searchInputType", enumToString(InputGroupDisplayType_$type, this.i.x));
380
+ this.i.y = ensureEnum(InputGroupDisplayType_$type, v);
381
+ this._a("searchInputType", enumToString(InputGroupDisplayType_$type, this.i.y));
347
382
  },
348
383
  enumerable: false,
349
384
  configurable: true
@@ -353,18 +388,18 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
353
388
  * Gets or Sets the property name that contains the values.
354
389
  */
355
390
  get: function () {
356
- return this.i.a3;
391
+ return this.i.be;
357
392
  },
358
393
  set: function (v) {
359
- this.i.a3 = +v;
360
- this._a("rowHeight", this.i.a3);
394
+ this.i.be = +v;
395
+ this._a("rowHeight", this.i.be);
361
396
  },
362
397
  enumerable: false,
363
398
  configurable: true
364
399
  });
365
400
  Object.defineProperty(IgcCheckboxListComponent.prototype, "actualRowHeight", {
366
401
  get: function () {
367
- return this.i.a1;
402
+ return this.i.bc;
368
403
  },
369
404
  enumerable: false,
370
405
  configurable: true
@@ -374,16 +409,16 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
374
409
  * Gets or Sets the property name that contains the values.
375
410
  */
376
411
  get: function () {
377
- if (this.i.ai == null) {
412
+ if (this.i.am == null) {
378
413
  return null;
379
414
  }
380
- return this.i.ai.fontString;
415
+ return this.i.am.fontString;
381
416
  },
382
417
  set: function (v) {
383
418
  var fi = new FontInfo();
384
419
  fi.fontString = v;
385
- this.i.ai = fi;
386
- this._a("cellTextStyle", this.i.ai != null ? this.i.ai.fontString : "");
420
+ this.i.am = fi;
421
+ this._a("cellTextStyle", this.i.am != null ? this.i.am.fontString : "");
387
422
  },
388
423
  enumerable: false,
389
424
  configurable: true
@@ -449,11 +484,25 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
449
484
  * Gets or sets the search background color.
450
485
  */
451
486
  get: function () {
452
- return brushToString(this.i.ea);
487
+ return brushToString(this.i.e1);
488
+ },
489
+ set: function (v) {
490
+ this.i.e1 = stringToBrush(v);
491
+ this._a("searchBackgroundColor", brushToString(this.i.e1));
492
+ },
493
+ enumerable: false,
494
+ configurable: true
495
+ });
496
+ Object.defineProperty(IgcCheckboxListComponent.prototype, "labelClickTriggersChange", {
497
+ /**
498
+ * Gets or sets the search background color.
499
+ */
500
+ get: function () {
501
+ return this.i.a1;
453
502
  },
454
503
  set: function (v) {
455
- this.i.ea = stringToBrush(v);
456
- this._a("searchBackgroundColor", brushToString(this.i.ea));
504
+ this.i.a1 = ensureBool(v);
505
+ this._a("labelClickTriggersChange", this.i.a1);
457
506
  },
458
507
  enumerable: false,
459
508
  configurable: true
@@ -477,11 +526,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
477
526
  * Gets or sets the search border color.
478
527
  */
479
528
  get: function () {
480
- return brushToString(this.i.eb);
529
+ return brushToString(this.i.e2);
481
530
  },
482
531
  set: function (v) {
483
- this.i.eb = stringToBrush(v);
484
- this._a("searchBorderColor", brushToString(this.i.eb));
532
+ this.i.e2 = stringToBrush(v);
533
+ this._a("searchBorderColor", brushToString(this.i.e2));
485
534
  },
486
535
  enumerable: false,
487
536
  configurable: true
@@ -491,16 +540,16 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
491
540
  * Gets or sets the text style.
492
541
  */
493
542
  get: function () {
494
- if (this.i.aj == null) {
543
+ if (this.i.an == null) {
495
544
  return null;
496
545
  }
497
- return this.i.aj.fontString;
546
+ return this.i.an.fontString;
498
547
  },
499
548
  set: function (v) {
500
549
  var fi = new FontInfo();
501
550
  fi.fontString = v;
502
- this.i.aj = fi;
503
- this._a("searchTextStyle", this.i.aj != null ? this.i.aj.fontString : "");
551
+ this.i.an = fi;
552
+ this._a("searchTextStyle", this.i.an != null ? this.i.an.fontString : "");
504
553
  },
505
554
  enumerable: false,
506
555
  configurable: true
@@ -510,11 +559,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
510
559
  * Gets or sets the checkbox tick color.
511
560
  */
512
561
  get: function () {
513
- return brushToString(this.i.d2);
562
+ return brushToString(this.i.et);
514
563
  },
515
564
  set: function (v) {
516
- this.i.d2 = stringToBrush(v);
517
- this._a("checkboxTickColor", brushToString(this.i.d2));
565
+ this.i.et = stringToBrush(v);
566
+ this._a("checkboxTickColor", brushToString(this.i.et));
518
567
  },
519
568
  enumerable: false,
520
569
  configurable: true
@@ -524,11 +573,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
524
573
  * Gets or sets the checkbox background color when checked.
525
574
  */
526
575
  get: function () {
527
- return brushToString(this.i.d0);
576
+ return brushToString(this.i.er);
528
577
  },
529
578
  set: function (v) {
530
- this.i.d0 = stringToBrush(v);
531
- this._a("checkboxCheckedBackgroundColor", brushToString(this.i.d0));
579
+ this.i.er = stringToBrush(v);
580
+ this._a("checkboxCheckedBackgroundColor", brushToString(this.i.er));
532
581
  },
533
582
  enumerable: false,
534
583
  configurable: true
@@ -538,11 +587,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
538
587
  * Gets or sets the checkbox background color when unchecked.
539
588
  */
540
589
  get: function () {
541
- return brushToString(this.i.d3);
590
+ return brushToString(this.i.eu);
542
591
  },
543
592
  set: function (v) {
544
- this.i.d3 = stringToBrush(v);
545
- this._a("checkboxUncheckedBackgroundColor", brushToString(this.i.d3));
593
+ this.i.eu = stringToBrush(v);
594
+ this._a("checkboxUncheckedBackgroundColor", brushToString(this.i.eu));
546
595
  },
547
596
  enumerable: false,
548
597
  configurable: true
@@ -552,11 +601,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
552
601
  * Gets or sets the checkbox border color when checked.
553
602
  */
554
603
  get: function () {
555
- return brushToString(this.i.d1);
604
+ return brushToString(this.i.es);
556
605
  },
557
606
  set: function (v) {
558
- this.i.d1 = stringToBrush(v);
559
- this._a("checkboxCheckedBorderColor", brushToString(this.i.d1));
607
+ this.i.es = stringToBrush(v);
608
+ this._a("checkboxCheckedBorderColor", brushToString(this.i.es));
560
609
  },
561
610
  enumerable: false,
562
611
  configurable: true
@@ -566,11 +615,25 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
566
615
  * Gets or sets the checkbox border color when unchecked.
567
616
  */
568
617
  get: function () {
569
- return brushToString(this.i.d4);
618
+ return brushToString(this.i.ev);
619
+ },
620
+ set: function (v) {
621
+ this.i.ev = stringToBrush(v);
622
+ this._a("checkboxUncheckedBorderColor", brushToString(this.i.ev));
623
+ },
624
+ enumerable: false,
625
+ configurable: true
626
+ });
627
+ Object.defineProperty(IgcCheckboxListComponent.prototype, "checkboxCornerRadius", {
628
+ /**
629
+ * Gets or sets the corner radius to use for the checkbox.
630
+ */
631
+ get: function () {
632
+ return this.i.a7;
570
633
  },
571
634
  set: function (v) {
572
- this.i.d4 = stringToBrush(v);
573
- this._a("checkboxUncheckedBorderColor", brushToString(this.i.d4));
635
+ this.i.a7 = +v;
636
+ this._a("checkboxCornerRadius", this.i.a7);
574
637
  },
575
638
  enumerable: false,
576
639
  configurable: true
@@ -580,11 +643,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
580
643
  * Gets or sets the style of scrollbar.
581
644
  */
582
645
  get: function () {
583
- return this.i.aa;
646
+ return this.i.ab;
584
647
  },
585
648
  set: function (v) {
586
- this.i.aa = ensureEnum(ScrollbarStyle_$type, v);
587
- this._a("scrollbarStyle", enumToString(ScrollbarStyle_$type, this.i.aa));
649
+ this.i.ab = ensureEnum(ScrollbarStyle_$type, v);
650
+ this._a("scrollbarStyle", enumToString(ScrollbarStyle_$type, this.i.ab));
588
651
  },
589
652
  enumerable: false,
590
653
  configurable: true
@@ -594,11 +657,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
594
657
  * Gets or sets the scrollbar background color.
595
658
  */
596
659
  get: function () {
597
- return brushToString(this.i.d9);
660
+ return brushToString(this.i.e0);
598
661
  },
599
662
  set: function (v) {
600
- this.i.d9 = stringToBrush(v);
601
- this._a("scrollbarBackground", brushToString(this.i.d9));
663
+ this.i.e0 = stringToBrush(v);
664
+ this._a("scrollbarBackground", brushToString(this.i.e0));
602
665
  },
603
666
  enumerable: false,
604
667
  configurable: true
@@ -608,10 +671,10 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
608
671
  * Gets / sets the caption of the "Select All" checkbox.
609
672
  */
610
673
  get: function () {
611
- return this.i.b4;
674
+ return this.i.cp;
612
675
  },
613
676
  set: function (v) {
614
- this.i.b4 = v;
677
+ this.i.cp = v;
615
678
  },
616
679
  enumerable: false,
617
680
  configurable: true
@@ -621,11 +684,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
621
684
  * Gets or sets the color to use for the "Select All" label.
622
685
  */
623
686
  get: function () {
624
- return brushToString(this.i.ee);
687
+ return brushToString(this.i.e5);
625
688
  },
626
689
  set: function (v) {
627
- this.i.ee = stringToBrush(v);
628
- this._a("selectAllCaptionTextColor", brushToString(this.i.ee));
690
+ this.i.e5 = stringToBrush(v);
691
+ this._a("selectAllCaptionTextColor", brushToString(this.i.e5));
629
692
  },
630
693
  enumerable: false,
631
694
  configurable: true
@@ -635,11 +698,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
635
698
  * Gets or sets the color to use for the actual header selectAllCaption text.
636
699
  */
637
700
  get: function () {
638
- return brushToString(this.i.dy);
701
+ return brushToString(this.i.ep);
639
702
  },
640
703
  set: function (v) {
641
- this.i.dy = stringToBrush(v);
642
- this._a("actualSelectAllCaptionTextColor", brushToString(this.i.dy));
704
+ this.i.ep = stringToBrush(v);
705
+ this._a("actualSelectAllCaptionTextColor", brushToString(this.i.ep));
643
706
  },
644
707
  enumerable: false,
645
708
  configurable: true
@@ -691,11 +754,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
691
754
  * Gets or sets the color to use for the text of the component.
692
755
  */
693
756
  get: function () {
694
- return brushToString(this.i.eg);
757
+ return brushToString(this.i.e7);
695
758
  },
696
759
  set: function (v) {
697
- this.i.eg = stringToBrush(v);
698
- this._a("textColor", brushToString(this.i.eg));
760
+ this.i.e7 = stringToBrush(v);
761
+ this._a("textColor", brushToString(this.i.e7));
699
762
  },
700
763
  enumerable: false,
701
764
  configurable: true
@@ -705,11 +768,11 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
705
768
  * Gets or sets whether the filter input is visible.
706
769
  */
707
770
  get: function () {
708
- return this.i.au;
771
+ return this.i.a3;
709
772
  },
710
773
  set: function (v) {
711
- this.i.au = ensureBool(v);
712
- this._a("showFilter", this.i.au);
774
+ this.i.a3 = ensureBool(v);
775
+ this._a("showFilter", this.i.a3);
713
776
  },
714
777
  enumerable: false,
715
778
  configurable: true
@@ -719,11 +782,25 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
719
782
  * Gets or sets whether row hover highlighting is enabled.
720
783
  */
721
784
  get: function () {
722
- return this.i.ar;
785
+ return this.i.az;
786
+ },
787
+ set: function (v) {
788
+ this.i.az = ensureBool(v);
789
+ this._a("isRowHoverEnabled", this.i.az);
790
+ },
791
+ enumerable: false,
792
+ configurable: true
793
+ });
794
+ Object.defineProperty(IgcCheckboxListComponent.prototype, "checkboxAlignedRight", {
795
+ /**
796
+ * Gets or sets whether checkbox should be displayed to the right.
797
+ */
798
+ get: function () {
799
+ return this.i.av;
723
800
  },
724
801
  set: function (v) {
725
- this.i.ar = ensureBool(v);
726
- this._a("isRowHoverEnabled", this.i.ar);
802
+ this.i.av = ensureBool(v);
803
+ this._a("checkboxAlignedRight", this.i.av);
727
804
  },
728
805
  enumerable: false,
729
806
  configurable: true
@@ -801,17 +878,17 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
801
878
 
802
879
  */
803
880
  IgcCheckboxListComponent.prototype.selectAll = function () {
804
- this.i.dd();
881
+ this.i.d3();
805
882
  };
806
883
  /**
807
884
  * Deselects all the items in the checkbox list.
808
885
 
809
886
  */
810
887
  IgcCheckboxListComponent.prototype.deselectAll = function () {
811
- this.i.ci();
888
+ this.i.c5();
812
889
  };
813
890
  IgcCheckboxListComponent.prototype.notifySetItem = function (index, oldItem, newItem) {
814
- this.i.cs(index, oldItem, newItem);
891
+ this.i.dg(index, oldItem, newItem);
815
892
  };
816
893
  /**
817
894
  * Manually notifies the checkboxlist's grid that the data it has bound to has been cleared and needs to be re-examined.
@@ -819,19 +896,22 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
819
896
 
820
897
  */
821
898
  IgcCheckboxListComponent.prototype.notifyClearItems = function () {
822
- this.i.cp();
899
+ this.i.dc();
823
900
  };
824
901
  IgcCheckboxListComponent.prototype.notifyInsertItem = function (index, newItem) {
825
- this.i.cq(index, newItem);
902
+ this.i.dd(index, newItem);
826
903
  };
827
904
  IgcCheckboxListComponent.prototype.notifyRemoveItem = function (index, oldItem) {
828
- this.i.cr(index, oldItem);
905
+ this.i.df(index, oldItem);
906
+ };
907
+ IgcCheckboxListComponent.prototype.refresh = function () {
908
+ this.i.refresh();
829
909
  };
830
910
  IgcCheckboxListComponent.prototype.addKeyValue = function (value) {
831
- this.i.cd(value);
911
+ this.i.c0(value);
832
912
  };
833
913
  IgcCheckboxListComponent.prototype.removeKeyValue = function (value) {
834
- this.i.db(value);
914
+ this.i.d1(value);
835
915
  };
836
916
  IgcCheckboxListComponent.prototype.getDesiredSize = function (availableSize) {
837
917
  var iv = this.i.getDesiredSize(toSize(availableSize));
@@ -842,7 +922,7 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
842
922
 
843
923
  */
844
924
  IgcCheckboxListComponent.prototype.isNothingSelected = function () {
845
- var iv = this.i.ap();
925
+ var iv = this.i.ax();
846
926
  return (iv);
847
927
  };
848
928
  /**
@@ -850,7 +930,7 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
850
930
 
851
931
  */
852
932
  IgcCheckboxListComponent.prototype.isEverythingSelected = function () {
853
- var iv = this.i.ao();
933
+ var iv = this.i.aw();
854
934
  return (iv);
855
935
  };
856
936
  Object.defineProperty(IgcCheckboxListComponent.prototype, "selectedKeyAdded", {
@@ -946,6 +1026,34 @@ var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_super) {
946
1026
  enumerable: false,
947
1027
  configurable: true
948
1028
  });
1029
+ Object.defineProperty(IgcCheckboxListComponent.prototype, "labelClicked", {
1030
+ get: function () {
1031
+ return this._labelClicked;
1032
+ },
1033
+ set: function (ev) {
1034
+ var _this = this;
1035
+ if (this._labelClicked_wrapped !== null) {
1036
+ this.i.labelClicked = delegateRemove(this.i.labelClicked, this._labelClicked_wrapped);
1037
+ this._labelClicked_wrapped = null;
1038
+ this._labelClicked = null;
1039
+ }
1040
+ this._labelClicked = ev;
1041
+ this._labelClicked_wrapped = function (o, e) {
1042
+ var outerArgs = new IgcCheckedChangedEventArgs();
1043
+ outerArgs._provideImplementation(e);
1044
+ if (_this.beforeLabelClicked) {
1045
+ _this.beforeLabelClicked(_this, outerArgs);
1046
+ }
1047
+ if (_this._labelClicked) {
1048
+ _this._labelClicked(_this, outerArgs);
1049
+ }
1050
+ };
1051
+ this.i.labelClicked = delegateCombine(this.i.labelClicked, this._labelClicked_wrapped);
1052
+ ;
1053
+ },
1054
+ enumerable: false,
1055
+ configurable: true
1056
+ });
949
1057
  Object.defineProperty(IgcCheckboxListComponent.prototype, "indexTypeChanged", {
950
1058
  get: function () {
951
1059
  return this._indexTypeChanged;
@@ -78,10 +78,10 @@ var IgcComboBoxColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
78
78
  * 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.
79
79
  */
80
80
  get: function () {
81
- return this.i.n4;
81
+ return this.i.n5;
82
82
  },
83
83
  set: function (v) {
84
- this.i.n4 = v;
84
+ this.i.n5 = v;
85
85
  },
86
86
  enumerable: false,
87
87
  configurable: true
@@ -91,10 +91,10 @@ var IgcComboBoxColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
91
91
  * Gets or sets the ComboBox data source.
92
92
  */
93
93
  get: function () {
94
- return this.i.n5;
94
+ return this.i.n6;
95
95
  },
96
96
  set: function (v) {
97
- this.i.n5 = v;
97
+ this.i.n6 = v;
98
98
  },
99
99
  enumerable: false,
100
100
  configurable: true
@@ -104,10 +104,10 @@ var IgcComboBoxColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
104
104
  * Gets or sets the ComboBox text field.
105
105
  */
106
106
  get: function () {
107
- return this.i.n9;
107
+ return this.i.oa;
108
108
  },
109
109
  set: function (v) {
110
- this.i.n9 = v;
110
+ this.i.oa = v;
111
111
  },
112
112
  enumerable: false,
113
113
  configurable: true
@@ -117,10 +117,10 @@ var IgcComboBoxColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
117
117
  * Gets or sets the ComboBox value field.
118
118
  */
119
119
  get: function () {
120
- return this.i.oa;
120
+ return this.i.ob;
121
121
  },
122
122
  set: function (v) {
123
- this.i.oa = v;
123
+ this.i.ob = v;
124
124
  },
125
125
  enumerable: false,
126
126
  configurable: true
@@ -130,14 +130,14 @@ var IgcComboBoxColumnComponent = /** @class */ /*@__PURE__*/ (function (_super)
130
130
  * Gets or sets the ComboBox value field.
131
131
  */
132
132
  get: function () {
133
- return this.i.n2;
133
+ return this.i.n3;
134
134
  },
135
135
  set: function (v) {
136
136
  if (v && !Array.isArray(v) && typeof (v) == "string") {
137
137
  var re = /\s*(?:,|\s|$)\s*/gm;
138
138
  v = v.split(re);
139
139
  }
140
- this.i.n2 = v;
140
+ this.i.n3 = v;
141
141
  },
142
142
  enumerable: false,
143
143
  configurable: true