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
@@ -66,6 +66,8 @@ export let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
66
66
  this._selectedKeyRemoved_wrapped = null;
67
67
  this._checkedChanged = null;
68
68
  this._checkedChanged_wrapped = null;
69
+ this._labelClicked = null;
70
+ this._labelClicked_wrapped = null;
69
71
  this._indexTypeChanged = null;
70
72
  this._indexTypeChanged_wrapped = null;
71
73
  this._keysCleared = null;
@@ -274,6 +276,27 @@ export let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
274
276
  set dataMemberPath(v) {
275
277
  this.i.dataMemberPath = v;
276
278
  }
279
+ get dataLegendTarget() {
280
+ return this.i.bh;
281
+ }
282
+ set dataLegendTarget(v) {
283
+ this.i.bh = v;
284
+ }
285
+ /**
286
+ * Gets or Sets the property name that contains the values.
287
+ */
288
+ get subtitleMemberPath() {
289
+ return this.i.cw;
290
+ }
291
+ set subtitleMemberPath(v) {
292
+ this.i.cw = v;
293
+ }
294
+ get propertyTypeMemberPath() {
295
+ return this.i.cb;
296
+ }
297
+ set propertyTypeMemberPath(v) {
298
+ this.i.cb = v;
299
+ }
277
300
  /**
278
301
  * Gets or Sets the property name that contains the values.
279
302
  */
@@ -287,48 +310,48 @@ export let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
287
310
  * Gets or Sets the property name that contains the values.
288
311
  */
289
312
  get filterPlaceholderText() {
290
- return this.i.bm;
313
+ return this.i.b4;
291
314
  }
292
315
  set filterPlaceholderText(v) {
293
- this.i.bm = v;
316
+ this.i.b4 = v;
294
317
  }
295
318
  /**
296
319
  * Gets or Sets the property name that contains the values.
297
320
  */
298
321
  get searchInputType() {
299
- return this.i.x;
322
+ return this.i.y;
300
323
  }
301
324
  set searchInputType(v) {
302
- this.i.x = ensureEnum(InputGroupDisplayType_$type, v);
303
- this._a("searchInputType", enumToString(InputGroupDisplayType_$type, this.i.x));
325
+ this.i.y = ensureEnum(InputGroupDisplayType_$type, v);
326
+ this._a("searchInputType", enumToString(InputGroupDisplayType_$type, this.i.y));
304
327
  }
305
328
  /**
306
329
  * Gets or Sets the property name that contains the values.
307
330
  */
308
331
  get rowHeight() {
309
- return this.i.a3;
332
+ return this.i.be;
310
333
  }
311
334
  set rowHeight(v) {
312
- this.i.a3 = +v;
313
- this._a("rowHeight", this.i.a3);
335
+ this.i.be = +v;
336
+ this._a("rowHeight", this.i.be);
314
337
  }
315
338
  get actualRowHeight() {
316
- return this.i.a1;
339
+ return this.i.bc;
317
340
  }
318
341
  /**
319
342
  * Gets or Sets the property name that contains the values.
320
343
  */
321
344
  get cellTextStyle() {
322
- if (this.i.ai == null) {
345
+ if (this.i.am == null) {
323
346
  return null;
324
347
  }
325
- return this.i.ai.fontString;
348
+ return this.i.am.fontString;
326
349
  }
327
350
  set cellTextStyle(v) {
328
351
  let fi = new FontInfo();
329
352
  fi.fontString = v;
330
- this.i.ai = fi;
331
- this._a("cellTextStyle", this.i.ai != null ? this.i.ai.fontString : "");
353
+ this.i.am = fi;
354
+ this._a("cellTextStyle", this.i.am != null ? this.i.am.fontString : "");
332
355
  }
333
356
  /**
334
357
  * Gets or Sets the property name that contains the values.
@@ -374,11 +397,21 @@ export let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
374
397
  * Gets or sets the search background color.
375
398
  */
376
399
  get searchBackgroundColor() {
377
- return brushToString(this.i.ea);
400
+ return brushToString(this.i.e1);
378
401
  }
379
402
  set searchBackgroundColor(v) {
380
- this.i.ea = stringToBrush(v);
381
- this._a("searchBackgroundColor", brushToString(this.i.ea));
403
+ this.i.e1 = stringToBrush(v);
404
+ this._a("searchBackgroundColor", brushToString(this.i.e1));
405
+ }
406
+ /**
407
+ * Gets or sets the search background color.
408
+ */
409
+ get labelClickTriggersChange() {
410
+ return this.i.a1;
411
+ }
412
+ set labelClickTriggersChange(v) {
413
+ this.i.a1 = ensureBool(v);
414
+ this._a("labelClickTriggersChange", this.i.a1);
382
415
  }
383
416
  /**
384
417
  * Gets or sets the search text color.
@@ -394,125 +427,135 @@ export let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
394
427
  * Gets or sets the search border color.
395
428
  */
396
429
  get searchBorderColor() {
397
- return brushToString(this.i.eb);
430
+ return brushToString(this.i.e2);
398
431
  }
399
432
  set searchBorderColor(v) {
400
- this.i.eb = stringToBrush(v);
401
- this._a("searchBorderColor", brushToString(this.i.eb));
433
+ this.i.e2 = stringToBrush(v);
434
+ this._a("searchBorderColor", brushToString(this.i.e2));
402
435
  }
403
436
  /**
404
437
  * Gets or sets the text style.
405
438
  */
406
439
  get searchTextStyle() {
407
- if (this.i.aj == null) {
440
+ if (this.i.an == null) {
408
441
  return null;
409
442
  }
410
- return this.i.aj.fontString;
443
+ return this.i.an.fontString;
411
444
  }
412
445
  set searchTextStyle(v) {
413
446
  let fi = new FontInfo();
414
447
  fi.fontString = v;
415
- this.i.aj = fi;
416
- this._a("searchTextStyle", this.i.aj != null ? this.i.aj.fontString : "");
448
+ this.i.an = fi;
449
+ this._a("searchTextStyle", this.i.an != null ? this.i.an.fontString : "");
417
450
  }
418
451
  /**
419
452
  * Gets or sets the checkbox tick color.
420
453
  */
421
454
  get checkboxTickColor() {
422
- return brushToString(this.i.d2);
455
+ return brushToString(this.i.et);
423
456
  }
424
457
  set checkboxTickColor(v) {
425
- this.i.d2 = stringToBrush(v);
426
- this._a("checkboxTickColor", brushToString(this.i.d2));
458
+ this.i.et = stringToBrush(v);
459
+ this._a("checkboxTickColor", brushToString(this.i.et));
427
460
  }
428
461
  /**
429
462
  * Gets or sets the checkbox background color when checked.
430
463
  */
431
464
  get checkboxCheckedBackgroundColor() {
432
- return brushToString(this.i.d0);
465
+ return brushToString(this.i.er);
433
466
  }
434
467
  set checkboxCheckedBackgroundColor(v) {
435
- this.i.d0 = stringToBrush(v);
436
- this._a("checkboxCheckedBackgroundColor", brushToString(this.i.d0));
468
+ this.i.er = stringToBrush(v);
469
+ this._a("checkboxCheckedBackgroundColor", brushToString(this.i.er));
437
470
  }
438
471
  /**
439
472
  * Gets or sets the checkbox background color when unchecked.
440
473
  */
441
474
  get checkboxUncheckedBackgroundColor() {
442
- return brushToString(this.i.d3);
475
+ return brushToString(this.i.eu);
443
476
  }
444
477
  set checkboxUncheckedBackgroundColor(v) {
445
- this.i.d3 = stringToBrush(v);
446
- this._a("checkboxUncheckedBackgroundColor", brushToString(this.i.d3));
478
+ this.i.eu = stringToBrush(v);
479
+ this._a("checkboxUncheckedBackgroundColor", brushToString(this.i.eu));
447
480
  }
448
481
  /**
449
482
  * Gets or sets the checkbox border color when checked.
450
483
  */
451
484
  get checkboxCheckedBorderColor() {
452
- return brushToString(this.i.d1);
485
+ return brushToString(this.i.es);
453
486
  }
454
487
  set checkboxCheckedBorderColor(v) {
455
- this.i.d1 = stringToBrush(v);
456
- this._a("checkboxCheckedBorderColor", brushToString(this.i.d1));
488
+ this.i.es = stringToBrush(v);
489
+ this._a("checkboxCheckedBorderColor", brushToString(this.i.es));
457
490
  }
458
491
  /**
459
492
  * Gets or sets the checkbox border color when unchecked.
460
493
  */
461
494
  get checkboxUncheckedBorderColor() {
462
- return brushToString(this.i.d4);
495
+ return brushToString(this.i.ev);
463
496
  }
464
497
  set checkboxUncheckedBorderColor(v) {
465
- this.i.d4 = stringToBrush(v);
466
- this._a("checkboxUncheckedBorderColor", brushToString(this.i.d4));
498
+ this.i.ev = stringToBrush(v);
499
+ this._a("checkboxUncheckedBorderColor", brushToString(this.i.ev));
500
+ }
501
+ /**
502
+ * Gets or sets the corner radius to use for the checkbox.
503
+ */
504
+ get checkboxCornerRadius() {
505
+ return this.i.a7;
506
+ }
507
+ set checkboxCornerRadius(v) {
508
+ this.i.a7 = +v;
509
+ this._a("checkboxCornerRadius", this.i.a7);
467
510
  }
468
511
  /**
469
512
  * Gets or sets the style of scrollbar.
470
513
  */
471
514
  get scrollbarStyle() {
472
- return this.i.aa;
515
+ return this.i.ab;
473
516
  }
474
517
  set scrollbarStyle(v) {
475
- this.i.aa = ensureEnum(ScrollbarStyle_$type, v);
476
- this._a("scrollbarStyle", enumToString(ScrollbarStyle_$type, this.i.aa));
518
+ this.i.ab = ensureEnum(ScrollbarStyle_$type, v);
519
+ this._a("scrollbarStyle", enumToString(ScrollbarStyle_$type, this.i.ab));
477
520
  }
478
521
  /**
479
522
  * Gets or sets the scrollbar background color.
480
523
  */
481
524
  get scrollbarBackground() {
482
- return brushToString(this.i.d9);
525
+ return brushToString(this.i.e0);
483
526
  }
484
527
  set scrollbarBackground(v) {
485
- this.i.d9 = stringToBrush(v);
486
- this._a("scrollbarBackground", brushToString(this.i.d9));
528
+ this.i.e0 = stringToBrush(v);
529
+ this._a("scrollbarBackground", brushToString(this.i.e0));
487
530
  }
488
531
  /**
489
532
  * Gets / sets the caption of the "Select All" checkbox.
490
533
  */
491
534
  get selectAllCaption() {
492
- return this.i.b4;
535
+ return this.i.cp;
493
536
  }
494
537
  set selectAllCaption(v) {
495
- this.i.b4 = v;
538
+ this.i.cp = v;
496
539
  }
497
540
  /**
498
541
  * Gets or sets the color to use for the "Select All" label.
499
542
  */
500
543
  get selectAllCaptionTextColor() {
501
- return brushToString(this.i.ee);
544
+ return brushToString(this.i.e5);
502
545
  }
503
546
  set selectAllCaptionTextColor(v) {
504
- this.i.ee = stringToBrush(v);
505
- this._a("selectAllCaptionTextColor", brushToString(this.i.ee));
547
+ this.i.e5 = stringToBrush(v);
548
+ this._a("selectAllCaptionTextColor", brushToString(this.i.e5));
506
549
  }
507
550
  /**
508
551
  * Gets or sets the color to use for the actual header selectAllCaption text.
509
552
  */
510
553
  get actualSelectAllCaptionTextColor() {
511
- return brushToString(this.i.dy);
554
+ return brushToString(this.i.ep);
512
555
  }
513
556
  set actualSelectAllCaptionTextColor(v) {
514
- this.i.dy = stringToBrush(v);
515
- this._a("actualSelectAllCaptionTextColor", brushToString(this.i.dy));
557
+ this.i.ep = stringToBrush(v);
558
+ this._a("actualSelectAllCaptionTextColor", brushToString(this.i.ep));
516
559
  }
517
560
  /**
518
561
  * Gets / sets whether the "Select all" checkbox is visible.
@@ -548,31 +591,41 @@ export let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
548
591
  * Gets or sets the color to use for the text of the component.
549
592
  */
550
593
  get textColor() {
551
- return brushToString(this.i.eg);
594
+ return brushToString(this.i.e7);
552
595
  }
553
596
  set textColor(v) {
554
- this.i.eg = stringToBrush(v);
555
- this._a("textColor", brushToString(this.i.eg));
597
+ this.i.e7 = stringToBrush(v);
598
+ this._a("textColor", brushToString(this.i.e7));
556
599
  }
557
600
  /**
558
601
  * Gets or sets whether the filter input is visible.
559
602
  */
560
603
  get showFilter() {
561
- return this.i.au;
604
+ return this.i.a3;
562
605
  }
563
606
  set showFilter(v) {
564
- this.i.au = ensureBool(v);
565
- this._a("showFilter", this.i.au);
607
+ this.i.a3 = ensureBool(v);
608
+ this._a("showFilter", this.i.a3);
566
609
  }
567
610
  /**
568
611
  * Gets or sets whether row hover highlighting is enabled.
569
612
  */
570
613
  get isRowHoverEnabled() {
571
- return this.i.ar;
614
+ return this.i.az;
572
615
  }
573
616
  set isRowHoverEnabled(v) {
574
- this.i.ar = ensureBool(v);
575
- this._a("isRowHoverEnabled", this.i.ar);
617
+ this.i.az = ensureBool(v);
618
+ this._a("isRowHoverEnabled", this.i.az);
619
+ }
620
+ /**
621
+ * Gets or sets whether checkbox should be displayed to the right.
622
+ */
623
+ get checkboxAlignedRight() {
624
+ return this.i.av;
625
+ }
626
+ set checkboxAlignedRight(v) {
627
+ this.i.av = ensureBool(v);
628
+ this._a("checkboxAlignedRight", this.i.av);
576
629
  }
577
630
  findByName(name) {
578
631
  if (this.findEphemera) {
@@ -643,17 +696,17 @@ export let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
643
696
 
644
697
  */
645
698
  selectAll() {
646
- this.i.dd();
699
+ this.i.d3();
647
700
  }
648
701
  /**
649
702
  * Deselects all the items in the checkbox list.
650
703
 
651
704
  */
652
705
  deselectAll() {
653
- this.i.ci();
706
+ this.i.c5();
654
707
  }
655
708
  notifySetItem(index, oldItem, newItem) {
656
- this.i.cs(index, oldItem, newItem);
709
+ this.i.dg(index, oldItem, newItem);
657
710
  }
658
711
  /**
659
712
  * Manually notifies the checkboxlist's grid that the data it has bound to has been cleared and needs to be re-examined.
@@ -661,19 +714,22 @@ export let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
661
714
 
662
715
  */
663
716
  notifyClearItems() {
664
- this.i.cp();
717
+ this.i.dc();
665
718
  }
666
719
  notifyInsertItem(index, newItem) {
667
- this.i.cq(index, newItem);
720
+ this.i.dd(index, newItem);
668
721
  }
669
722
  notifyRemoveItem(index, oldItem) {
670
- this.i.cr(index, oldItem);
723
+ this.i.df(index, oldItem);
724
+ }
725
+ refresh() {
726
+ this.i.refresh();
671
727
  }
672
728
  addKeyValue(value) {
673
- this.i.cd(value);
729
+ this.i.c0(value);
674
730
  }
675
731
  removeKeyValue(value) {
676
- this.i.db(value);
732
+ this.i.d1(value);
677
733
  }
678
734
  getDesiredSize(availableSize) {
679
735
  let iv = this.i.getDesiredSize(toSize(availableSize));
@@ -684,7 +740,7 @@ export let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
684
740
 
685
741
  */
686
742
  isNothingSelected() {
687
- let iv = this.i.ap();
743
+ let iv = this.i.ax();
688
744
  return (iv);
689
745
  }
690
746
  /**
@@ -692,7 +748,7 @@ export let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
692
748
 
693
749
  */
694
750
  isEverythingSelected() {
695
- let iv = this.i.ao();
751
+ let iv = this.i.aw();
696
752
  return (iv);
697
753
  }
698
754
  /**
@@ -773,6 +829,29 @@ export let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
773
829
  this.i.checkedChanged = delegateCombine(this.i.checkedChanged, this._checkedChanged_wrapped);
774
830
  ;
775
831
  }
832
+ get labelClicked() {
833
+ return this._labelClicked;
834
+ }
835
+ set labelClicked(ev) {
836
+ if (this._labelClicked_wrapped !== null) {
837
+ this.i.labelClicked = delegateRemove(this.i.labelClicked, this._labelClicked_wrapped);
838
+ this._labelClicked_wrapped = null;
839
+ this._labelClicked = null;
840
+ }
841
+ this._labelClicked = ev;
842
+ this._labelClicked_wrapped = (o, e) => {
843
+ let outerArgs = new IgcCheckedChangedEventArgs();
844
+ outerArgs._provideImplementation(e);
845
+ if (this.beforeLabelClicked) {
846
+ this.beforeLabelClicked(this, outerArgs);
847
+ }
848
+ if (this._labelClicked) {
849
+ this._labelClicked(this, outerArgs);
850
+ }
851
+ };
852
+ this.i.labelClicked = delegateCombine(this.i.labelClicked, this._labelClicked_wrapped);
853
+ ;
854
+ }
776
855
  get indexTypeChanged() {
777
856
  return this._indexTypeChanged;
778
857
  }
@@ -68,50 +68,50 @@ export let IgcComboBoxColumnComponent = /*@__PURE__*/ (() => {
68
68
  * 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.
69
69
  */
70
70
  get actualDataSource() {
71
- return this.i.n4;
71
+ return this.i.n5;
72
72
  }
73
73
  set actualDataSource(v) {
74
- this.i.n4 = v;
74
+ this.i.n5 = v;
75
75
  }
76
76
  /**
77
77
  * Gets or sets the ComboBox data source.
78
78
  */
79
79
  get dataSource() {
80
- return this.i.n5;
80
+ return this.i.n6;
81
81
  }
82
82
  set dataSource(v) {
83
- this.i.n5 = v;
83
+ this.i.n6 = v;
84
84
  }
85
85
  /**
86
86
  * Gets or sets the ComboBox text field.
87
87
  */
88
88
  get textField() {
89
- return this.i.n9;
89
+ return this.i.oa;
90
90
  }
91
91
  set textField(v) {
92
- this.i.n9 = v;
92
+ this.i.oa = v;
93
93
  }
94
94
  /**
95
95
  * Gets or sets the ComboBox value field.
96
96
  */
97
97
  get valueField() {
98
- return this.i.oa;
98
+ return this.i.ob;
99
99
  }
100
100
  set valueField(v) {
101
- this.i.oa = v;
101
+ this.i.ob = v;
102
102
  }
103
103
  /**
104
104
  * Gets or sets the ComboBox value field.
105
105
  */
106
106
  get valueMultiField() {
107
- return this.i.n2;
107
+ return this.i.n3;
108
108
  }
109
109
  set valueMultiField(v) {
110
110
  if (v && !Array.isArray(v) && typeof (v) == "string") {
111
111
  const re = /\s*(?:,|\s|$)\s*/gm;
112
112
  v = v.split(re);
113
113
  }
114
- this.i.n2 = v;
114
+ this.i.n3 = v;
115
115
  }
116
116
  }
117
117
  IgcComboBoxColumnComponent._observedAttributesIgcComboBoxColumnComponent = null;