igniteui-webcomponents-data-grids 7.1.0-beta.1 → 7.1.0-beta.3
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.
- package/bundles/igniteui-webcomponents-data-grids.umd.js +11002 -9831
- package/bundles/igniteui-webcomponents-data-grids.umd.min.js +1 -1
- package/esm2015/lib/AccessibilityRow.js +10 -10
- package/esm2015/lib/CanvasCellPresenterBase.js +12 -12
- package/esm2015/lib/CanvasContentCellModelHelper.js +12 -12
- package/esm2015/lib/CanvasDateTimeCellPresenter.js +8 -8
- package/esm2015/lib/CanvasGridCellBase.js +2 -2
- package/esm2015/lib/CanvasImageCellPresenter.js +9 -9
- package/esm2015/lib/CanvasNumericCellPresenter.js +8 -8
- package/esm2015/lib/CanvasSectionHeaderCellPresenter.js +9 -9
- package/esm2015/lib/CanvasSummaryCellPresenter.js +4 -4
- package/esm2015/lib/CanvasTemplateCellPresenter.js +5 -5
- package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +5 -5
- package/esm2015/lib/CanvasTextCellPresenter.js +9 -9
- package/esm2015/lib/CanvasTextHeaderCellPresenter.js +11 -11
- package/esm2015/lib/CellPath.js +79 -69
- package/esm2015/lib/CellPresenterBase.js +46 -46
- package/esm2015/lib/CheckboxListBridge.js +12 -0
- package/esm2015/lib/CheckboxListView_combined.js +329 -283
- package/esm2015/lib/ColumnChooserView_combined.js +11 -11
- package/esm2015/lib/ColumnFilterCondition_combined.js +7043 -6712
- package/esm2015/lib/ColumnGroupingView_combined.js +5 -5
- package/esm2015/lib/ColumnPinningView_combined.js +11 -11
- package/esm2015/lib/ComparisonOperatorSelectorView_combined.js +7 -7
- package/esm2015/lib/ContentCellModelHelper.js +16 -16
- package/esm2015/lib/DataGridAccessibilityLayoutPanel.js +1 -1
- package/esm2015/lib/DataGridCellLayoutPanel.js +17 -17
- package/esm2015/lib/DataGridScrollerKeyboardListener.js +2 -2
- package/esm2015/lib/DataGridToolbarView_combined.js +2 -2
- package/esm2015/lib/DateTimeCellPresenter.js +9 -9
- package/esm2015/lib/DraggerView.js +1 -7
- package/esm2015/lib/EditorCell.js +290 -290
- package/esm2015/lib/EditorCellPresenter.js +27 -27
- package/esm2015/lib/FilterCell.js +267 -267
- package/esm2015/lib/FilterCellPresenter.js +17 -17
- package/esm2015/lib/GridCellBase.js +210 -202
- package/esm2015/lib/GridColumnFilterOptionsView_combined.js +13 -13
- package/esm2015/lib/GridColumnGroupOptionsView_combined.js +7 -7
- package/esm2015/lib/GridColumnHideOptionsView_combined.js +3 -3
- package/esm2015/lib/GridColumnMoveOptionsView_combined.js +1 -1
- package/esm2015/lib/GridColumnOptionsView_combined.js +1 -1
- package/esm2015/lib/GridColumnPinOptionsView_combined.js +4 -4
- package/esm2015/lib/GridColumnSortOptionsView_combined.js +2 -2
- package/esm2015/lib/GridColumnSummaryOptionsView_combined.js +7 -7
- package/esm2015/lib/GridExternalWrapper.js +12 -6
- package/esm2015/lib/GridFilterDialogView_combined.js +238 -187
- package/esm2015/lib/ISummaryChooserView_combined.js +4 -4
- package/esm2015/lib/ImageCell.js +58 -58
- package/esm2015/lib/ImageCellPresenter.js +17 -17
- package/esm2015/lib/MultiColumnComboBoxView_combined.js +9 -9
- package/esm2015/lib/NumericCell.js +8 -8
- package/esm2015/lib/NumericCellPresenter.js +9 -9
- package/esm2015/lib/PropertyEditorView_combined.js +19 -19
- package/esm2015/lib/SectionHeaderCell.js +30 -20
- package/esm2015/lib/SectionHeaderCellPresenter.js +10 -10
- package/esm2015/lib/SummaryCell.js +44 -44
- package/esm2015/lib/SummaryCellPresenter.js +9 -9
- package/esm2015/lib/TemplateCell.js +15 -15
- package/esm2015/lib/TemplateCellPresenter.js +6 -6
- package/esm2015/lib/TemplateHeader.js +8 -8
- package/esm2015/lib/TemplateHeaderCell.js +5 -5
- package/esm2015/lib/TemplateHeaderCellModel.js +18 -18
- package/esm2015/lib/TemplateHeaderCellPresenter.js +6 -6
- package/esm2015/lib/TemplateSectionHeader.js +2 -2
- package/esm2015/lib/TextCell.js +31 -30
- package/esm2015/lib/TextCellPresenter.js +10 -10
- package/esm2015/lib/TextHeaderCell.js +181 -175
- package/esm2015/lib/TextHeaderCellPresenter.js +66 -57
- package/esm2015/lib/VerticalSeparatorCell.js +37 -37
- package/esm2015/lib/igc-cell-info.js +195 -186
- package/esm2015/lib/igc-checkbox-list-component.js +42 -22
- package/esm2015/lib/igc-column-moving-separator-component.js +9 -9
- package/esm2015/lib/igc-column-resizing-separator-component.js +6 -6
- package/esm2015/lib/igc-combo-box-column-component.js +10 -10
- package/esm2015/lib/igc-data-binding-event-args.js +3 -0
- package/esm2015/lib/igc-data-grid-column-component.js +336 -276
- package/esm2015/lib/igc-data-grid-component.js +220 -32
- package/esm2015/lib/igc-data-grid-filter-dialog-component.js +67 -37
- package/esm2015/lib/igc-data-grid-toolbar-component.js +40 -8
- package/esm2015/lib/igc-date-time-cell-info.js +12 -12
- package/esm2015/lib/igc-date-time-column-component.js +23 -23
- package/esm2015/lib/igc-definition-base-component.js +64 -64
- package/esm2015/lib/igc-editor-cell-info.js +23 -23
- package/esm2015/lib/igc-filter-cell-info.js +26 -26
- package/esm2015/lib/igc-filter-row-definition-component.js +12 -12
- package/esm2015/lib/igc-header-component.js +24 -24
- package/esm2015/lib/igc-image-cell-info.js +6 -6
- package/esm2015/lib/igc-image-column-component.js +12 -12
- package/esm2015/lib/igc-multi-column-combo-box-component.js +160 -32
- package/esm2015/lib/igc-numeric-cell-info.js +28 -28
- package/esm2015/lib/igc-numeric-column-component.js +38 -38
- package/esm2015/lib/igc-section-header-cell-info.js +6 -6
- package/esm2015/lib/igc-section-header-component.js +36 -36
- package/esm2015/lib/igc-summary-cell-info.js +9 -9
- package/esm2015/lib/igc-summary-row-component.js +30 -30
- package/esm2015/lib/igc-summary-row-root-module.js +2 -0
- package/esm2015/lib/igc-summary-row-section-module.js +2 -0
- package/esm2015/lib/igc-template-cell-info.js +2 -2
- package/esm2015/lib/igc-template-header-cell-info.js +2 -2
- package/esm2015/lib/igc-text-cell-info.js +2 -2
- package/esm2015/lib/igc-text-column-component.js +9 -9
- package/esm2015/lib/igc-text-header-cell-info.js +67 -40
- package/esm5/lib/AccessibilityRow.js +10 -10
- package/esm5/lib/CanvasCellPresenterBase.js +12 -12
- package/esm5/lib/CanvasContentCellModelHelper.js +12 -12
- package/esm5/lib/CanvasDateTimeCellPresenter.js +8 -8
- package/esm5/lib/CanvasGridCellBase.js +2 -2
- package/esm5/lib/CanvasImageCellPresenter.js +9 -9
- package/esm5/lib/CanvasNumericCellPresenter.js +8 -8
- package/esm5/lib/CanvasSectionHeaderCellPresenter.js +9 -9
- package/esm5/lib/CanvasSummaryCellPresenter.js +4 -4
- package/esm5/lib/CanvasTemplateCellPresenter.js +5 -5
- package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +5 -5
- package/esm5/lib/CanvasTextCellPresenter.js +9 -9
- package/esm5/lib/CanvasTextHeaderCellPresenter.js +11 -11
- package/esm5/lib/CellPath.js +79 -65
- package/esm5/lib/CellPresenterBase.js +46 -46
- package/esm5/lib/CheckboxListBridge.js +12 -0
- package/esm5/lib/CheckboxListView_combined.js +332 -278
- package/esm5/lib/ColumnChooserView_combined.js +11 -11
- package/esm5/lib/ColumnFilterCondition_combined.js +6860 -6456
- package/esm5/lib/ColumnGroupingView_combined.js +5 -5
- package/esm5/lib/ColumnPinningView_combined.js +11 -11
- package/esm5/lib/ComparisonOperatorSelectorView_combined.js +7 -7
- package/esm5/lib/ContentCellModelHelper.js +16 -16
- package/esm5/lib/DataGridAccessibilityLayoutPanel.js +1 -1
- package/esm5/lib/DataGridCellLayoutPanel.js +17 -17
- package/esm5/lib/DataGridScrollerKeyboardListener.js +2 -2
- package/esm5/lib/DataGridToolbarView_combined.js +2 -2
- package/esm5/lib/DateTimeCellPresenter.js +9 -9
- package/esm5/lib/DraggerView.js +1 -7
- package/esm5/lib/EditorCell.js +276 -276
- package/esm5/lib/EditorCellPresenter.js +27 -27
- package/esm5/lib/FilterCell.js +257 -257
- package/esm5/lib/FilterCellPresenter.js +17 -17
- package/esm5/lib/GridCellBase.js +205 -193
- package/esm5/lib/GridColumnFilterOptionsView_combined.js +13 -13
- package/esm5/lib/GridColumnGroupOptionsView_combined.js +7 -7
- package/esm5/lib/GridColumnHideOptionsView_combined.js +3 -3
- package/esm5/lib/GridColumnMoveOptionsView_combined.js +1 -1
- package/esm5/lib/GridColumnOptionsView_combined.js +1 -1
- package/esm5/lib/GridColumnPinOptionsView_combined.js +4 -4
- package/esm5/lib/GridColumnSortOptionsView_combined.js +2 -2
- package/esm5/lib/GridColumnSummaryOptionsView_combined.js +7 -7
- package/esm5/lib/GridExternalWrapper.js +12 -6
- package/esm5/lib/GridFilterDialogView_combined.js +240 -177
- package/esm5/lib/ISummaryChooserView_combined.js +4 -4
- package/esm5/lib/ImageCell.js +57 -57
- package/esm5/lib/ImageCellPresenter.js +17 -17
- package/esm5/lib/MultiColumnComboBoxView_combined.js +9 -9
- package/esm5/lib/NumericCell.js +8 -8
- package/esm5/lib/NumericCellPresenter.js +9 -9
- package/esm5/lib/PropertyEditorView_combined.js +19 -19
- package/esm5/lib/SectionHeaderCell.js +30 -20
- package/esm5/lib/SectionHeaderCellPresenter.js +10 -10
- package/esm5/lib/SummaryCell.js +44 -44
- package/esm5/lib/SummaryCellPresenter.js +9 -9
- package/esm5/lib/TemplateCell.js +15 -15
- package/esm5/lib/TemplateCellPresenter.js +6 -6
- package/esm5/lib/TemplateHeader.js +8 -8
- package/esm5/lib/TemplateHeaderCell.js +5 -5
- package/esm5/lib/TemplateHeaderCellModel.js +17 -17
- package/esm5/lib/TemplateHeaderCellPresenter.js +6 -6
- package/esm5/lib/TemplateSectionHeader.js +2 -2
- package/esm5/lib/TextCell.js +31 -30
- package/esm5/lib/TextCellPresenter.js +10 -10
- package/esm5/lib/TextHeaderCell.js +185 -179
- package/esm5/lib/TextHeaderCellPresenter.js +66 -57
- package/esm5/lib/VerticalSeparatorCell.js +37 -37
- package/esm5/lib/igc-cell-info.js +207 -186
- package/esm5/lib/igc-checkbox-list-component.js +50 -22
- package/esm5/lib/igc-column-moving-separator-component.js +9 -9
- package/esm5/lib/igc-column-resizing-separator-component.js +6 -6
- package/esm5/lib/igc-combo-box-column-component.js +10 -10
- package/esm5/lib/igc-data-binding-event-args.js +3 -0
- package/esm5/lib/igc-data-grid-column-component.js +360 -276
- package/esm5/lib/igc-data-grid-component.js +240 -32
- package/esm5/lib/igc-data-grid-filter-dialog-component.js +79 -37
- package/esm5/lib/igc-data-grid-toolbar-component.js +40 -8
- package/esm5/lib/igc-date-time-cell-info.js +12 -12
- package/esm5/lib/igc-date-time-column-component.js +23 -23
- package/esm5/lib/igc-definition-base-component.js +64 -64
- package/esm5/lib/igc-editor-cell-info.js +23 -23
- package/esm5/lib/igc-filter-cell-info.js +26 -26
- package/esm5/lib/igc-filter-row-definition-component.js +12 -12
- package/esm5/lib/igc-header-component.js +24 -24
- package/esm5/lib/igc-image-cell-info.js +6 -6
- package/esm5/lib/igc-image-column-component.js +12 -12
- package/esm5/lib/igc-multi-column-combo-box-component.js +160 -32
- package/esm5/lib/igc-numeric-cell-info.js +28 -28
- package/esm5/lib/igc-numeric-column-component.js +38 -38
- package/esm5/lib/igc-section-header-cell-info.js +6 -6
- package/esm5/lib/igc-section-header-component.js +36 -36
- package/esm5/lib/igc-summary-cell-info.js +9 -9
- package/esm5/lib/igc-summary-row-component.js +29 -29
- package/esm5/lib/igc-summary-row-root-module.js +2 -0
- package/esm5/lib/igc-summary-row-section-module.js +2 -0
- package/esm5/lib/igc-template-cell-info.js +2 -2
- package/esm5/lib/igc-template-header-cell-info.js +2 -2
- package/esm5/lib/igc-text-cell-info.js +2 -2
- package/esm5/lib/igc-text-column-component.js +9 -9
- package/esm5/lib/igc-text-header-cell-info.js +79 -40
- package/fesm2015/igniteui-webcomponents-data-grids.js +10931 -9949
- package/fesm5/igniteui-webcomponents-data-grids.js +11002 -9831
- package/lib/CellPath.d.ts +21 -20
- package/lib/CheckboxListExternal.d.ts +3 -0
- package/lib/CheckboxListView_combined.d.ts +77 -71
- package/lib/ColumnFilterCondition_combined.d.ts +1759 -1699
- package/lib/EditorCell.d.ts +63 -63
- package/lib/FilterCell.d.ts +55 -55
- package/lib/GridCellBase.d.ts +82 -80
- package/lib/GridExternalWrapper.d.ts +2 -0
- package/lib/GridFilterDialogView_combined.d.ts +61 -52
- package/lib/ImageCell.d.ts +15 -15
- package/lib/NumericCell.d.ts +2 -2
- package/lib/SectionHeaderCell.d.ts +6 -4
- package/lib/SummaryCell.d.ts +10 -10
- package/lib/TemplateCell.d.ts +5 -5
- package/lib/TemplateHeader.d.ts +3 -3
- package/lib/TemplateHeaderCell.d.ts +2 -2
- package/lib/TemplateHeaderCellModel.d.ts +7 -7
- package/lib/TemplateSectionHeader.d.ts +2 -2
- package/lib/TextCell.d.ts +7 -7
- package/lib/TextHeaderCell.d.ts +30 -30
- package/lib/VerticalSeparatorCell.d.ts +8 -8
- package/lib/igc-cell-info.d.ts +3 -0
- package/lib/igc-checkbox-list-component.d.ts +10 -0
- package/lib/igc-data-grid-column-component.d.ts +30 -0
- package/lib/igc-data-grid-component.d.ts +27 -0
- package/lib/igc-data-grid-filter-dialog-component.d.ts +15 -0
- package/lib/igc-summary-row-component.d.ts +2 -2
- package/lib/igc-text-header-cell-info.d.ts +15 -0
- package/package.json +4 -4
|
@@ -399,11 +399,11 @@ let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
|
|
|
399
399
|
* Gets or sets the search background color.
|
|
400
400
|
*/
|
|
401
401
|
get searchBackgroundColor() {
|
|
402
|
-
return brushToString(this.i.
|
|
402
|
+
return brushToString(this.i.fs);
|
|
403
403
|
}
|
|
404
404
|
set searchBackgroundColor(v) {
|
|
405
|
-
this.i.
|
|
406
|
-
this._a("searchBackgroundColor", brushToString(this.i.
|
|
405
|
+
this.i.fs = stringToBrush(v);
|
|
406
|
+
this._a("searchBackgroundColor", brushToString(this.i.fs));
|
|
407
407
|
}
|
|
408
408
|
/**
|
|
409
409
|
* Gets or sets the search background color.
|
|
@@ -464,11 +464,11 @@ let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
|
|
|
464
464
|
* Gets or sets the checkbox tick color.
|
|
465
465
|
*/
|
|
466
466
|
get checkboxTickColor() {
|
|
467
|
-
return brushToString(this.i.
|
|
467
|
+
return brushToString(this.i.fg);
|
|
468
468
|
}
|
|
469
469
|
set checkboxTickColor(v) {
|
|
470
|
-
this.i.
|
|
471
|
-
this._a("checkboxTickColor", brushToString(this.i.
|
|
470
|
+
this.i.fg = stringToBrush(v);
|
|
471
|
+
this._a("checkboxTickColor", brushToString(this.i.fg));
|
|
472
472
|
}
|
|
473
473
|
/**
|
|
474
474
|
* Gets or sets the checkbox background color when checked.
|
|
@@ -534,20 +534,40 @@ let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
|
|
|
534
534
|
* Gets or sets the scrollbar background color.
|
|
535
535
|
*/
|
|
536
536
|
get scrollbarBackground() {
|
|
537
|
-
return brushToString(this.i.
|
|
537
|
+
return brushToString(this.i.scrollbarBackground);
|
|
538
538
|
}
|
|
539
539
|
set scrollbarBackground(v) {
|
|
540
|
-
this.i.
|
|
541
|
-
this._a("scrollbarBackground", brushToString(this.i.
|
|
540
|
+
this.i.scrollbarBackground = stringToBrush(v);
|
|
541
|
+
this._a("scrollbarBackground", brushToString(this.i.scrollbarBackground));
|
|
542
|
+
}
|
|
543
|
+
/**
|
|
544
|
+
* Gets or sets the scrollbar thumb background color when the pointer is over it.
|
|
545
|
+
*/
|
|
546
|
+
get scrollbarHoverBackground() {
|
|
547
|
+
return brushToString(this.i.scrollbarHoverBackground);
|
|
548
|
+
}
|
|
549
|
+
set scrollbarHoverBackground(v) {
|
|
550
|
+
this.i.scrollbarHoverBackground = stringToBrush(v);
|
|
551
|
+
this._a("scrollbarHoverBackground", brushToString(this.i.scrollbarHoverBackground));
|
|
552
|
+
}
|
|
553
|
+
/**
|
|
554
|
+
* Gets or sets the scrollbar thumb background color when the user is dragging it.
|
|
555
|
+
*/
|
|
556
|
+
get scrollbarActiveBackground() {
|
|
557
|
+
return brushToString(this.i.scrollbarActiveBackground);
|
|
558
|
+
}
|
|
559
|
+
set scrollbarActiveBackground(v) {
|
|
560
|
+
this.i.scrollbarActiveBackground = stringToBrush(v);
|
|
561
|
+
this._a("scrollbarActiveBackground", brushToString(this.i.scrollbarActiveBackground));
|
|
542
562
|
}
|
|
543
563
|
/**
|
|
544
564
|
* Gets / sets the caption of the "Select All" checkbox.
|
|
545
565
|
*/
|
|
546
566
|
get selectAllCaption() {
|
|
547
|
-
return this.i.
|
|
567
|
+
return this.i.c3;
|
|
548
568
|
}
|
|
549
569
|
set selectAllCaption(v) {
|
|
550
|
-
this.i.
|
|
570
|
+
this.i.c3 = v;
|
|
551
571
|
}
|
|
552
572
|
/**
|
|
553
573
|
* Gets or sets the color to use for the "Select All" label.
|
|
@@ -563,11 +583,11 @@ let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
|
|
|
563
583
|
* Gets or sets the color to use for the actual header selectAllCaption text.
|
|
564
584
|
*/
|
|
565
585
|
get actualSelectAllCaptionTextColor() {
|
|
566
|
-
return brushToString(this.i.
|
|
586
|
+
return brushToString(this.i.fc);
|
|
567
587
|
}
|
|
568
588
|
set actualSelectAllCaptionTextColor(v) {
|
|
569
|
-
this.i.
|
|
570
|
-
this._a("actualSelectAllCaptionTextColor", brushToString(this.i.
|
|
589
|
+
this.i.fc = stringToBrush(v);
|
|
590
|
+
this._a("actualSelectAllCaptionTextColor", brushToString(this.i.fc));
|
|
571
591
|
}
|
|
572
592
|
/**
|
|
573
593
|
* Gets / sets whether the "Select all" checkbox is visible.
|
|
@@ -708,17 +728,17 @@ let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
|
|
|
708
728
|
|
|
709
729
|
*/
|
|
710
730
|
selectAll() {
|
|
711
|
-
this.i.
|
|
731
|
+
this.i.en();
|
|
712
732
|
}
|
|
713
733
|
/**
|
|
714
734
|
* Deselects all the items in the checkbox list.
|
|
715
735
|
|
|
716
736
|
*/
|
|
717
737
|
deselectAll() {
|
|
718
|
-
this.i.
|
|
738
|
+
this.i.dj();
|
|
719
739
|
}
|
|
720
740
|
notifySetItem(index, oldItem, newItem) {
|
|
721
|
-
this.i.
|
|
741
|
+
this.i.dy(index, oldItem, newItem);
|
|
722
742
|
}
|
|
723
743
|
/**
|
|
724
744
|
* Manually notifies the checkboxlist's grid that the data it has bound to has been cleared and needs to be re-examined.
|
|
@@ -726,22 +746,22 @@ let IgcCheckboxListComponent = /*@__PURE__*/ (() => {
|
|
|
726
746
|
|
|
727
747
|
*/
|
|
728
748
|
notifyClearItems() {
|
|
729
|
-
this.i.
|
|
749
|
+
this.i.du();
|
|
730
750
|
}
|
|
731
751
|
notifyInsertItem(index, newItem) {
|
|
732
|
-
this.i.
|
|
752
|
+
this.i.dv(index, newItem);
|
|
733
753
|
}
|
|
734
754
|
notifyRemoveItem(index, oldItem) {
|
|
735
|
-
this.i.
|
|
755
|
+
this.i.dx(index, oldItem);
|
|
736
756
|
}
|
|
737
757
|
refresh() {
|
|
738
758
|
this.i.refresh();
|
|
739
759
|
}
|
|
740
760
|
addKeyValue(value) {
|
|
741
|
-
this.i.
|
|
761
|
+
this.i.de(value);
|
|
742
762
|
}
|
|
743
763
|
removeKeyValue(value) {
|
|
744
|
-
this.i.
|
|
764
|
+
this.i.el(value);
|
|
745
765
|
}
|
|
746
766
|
getDesiredSize(availableSize) {
|
|
747
767
|
let iv = this.i.getDesiredSize(toSize(availableSize));
|
|
@@ -65,25 +65,25 @@ let IgcColumnMovingSeparatorComponent = /*@__PURE__*/ (() => {
|
|
|
65
65
|
* Gets or sets the separator width for this column.
|
|
66
66
|
*/
|
|
67
67
|
get separatorWidth() {
|
|
68
|
-
return this.i.
|
|
68
|
+
return this.i.g8;
|
|
69
69
|
}
|
|
70
70
|
set separatorWidth(v) {
|
|
71
|
-
this.i.
|
|
72
|
-
this._a("separatorWidth", this.i.
|
|
71
|
+
this.i.g8 = +v;
|
|
72
|
+
this._a("separatorWidth", this.i.g8);
|
|
73
73
|
}
|
|
74
74
|
get actualOpacity() {
|
|
75
|
-
return this.i.
|
|
75
|
+
return this.i.g5;
|
|
76
76
|
}
|
|
77
77
|
set actualOpacity(v) {
|
|
78
|
-
this.i.
|
|
79
|
-
this._a("actualOpacity", this.i.
|
|
78
|
+
this.i.g5 = +v;
|
|
79
|
+
this._a("actualOpacity", this.i.g5);
|
|
80
80
|
}
|
|
81
81
|
get opacity() {
|
|
82
|
-
return this.i.
|
|
82
|
+
return this.i.g6;
|
|
83
83
|
}
|
|
84
84
|
set opacity(v) {
|
|
85
|
-
this.i.
|
|
86
|
-
this._a("opacity", this.i.
|
|
85
|
+
this.i.g6 = +v;
|
|
86
|
+
this._a("opacity", this.i.g6);
|
|
87
87
|
}
|
|
88
88
|
}
|
|
89
89
|
IgcColumnMovingSeparatorComponent._observedAttributesIgcColumnMovingSeparatorComponent = null;
|
|
@@ -62,18 +62,18 @@ let IgcColumnResizingSeparatorComponent = /*@__PURE__*/ (() => {
|
|
|
62
62
|
}
|
|
63
63
|
}
|
|
64
64
|
get actualOpacity() {
|
|
65
|
-
return this.i.
|
|
65
|
+
return this.i.g5;
|
|
66
66
|
}
|
|
67
67
|
set actualOpacity(v) {
|
|
68
|
-
this.i.
|
|
69
|
-
this._a("actualOpacity", this.i.
|
|
68
|
+
this.i.g5 = +v;
|
|
69
|
+
this._a("actualOpacity", this.i.g5);
|
|
70
70
|
}
|
|
71
71
|
get opacity() {
|
|
72
|
-
return this.i.
|
|
72
|
+
return this.i.g6;
|
|
73
73
|
}
|
|
74
74
|
set opacity(v) {
|
|
75
|
-
this.i.
|
|
76
|
-
this._a("opacity", this.i.
|
|
75
|
+
this.i.g6 = +v;
|
|
76
|
+
this._a("opacity", this.i.g6);
|
|
77
77
|
}
|
|
78
78
|
}
|
|
79
79
|
IgcColumnResizingSeparatorComponent._observedAttributesIgcColumnResizingSeparatorComponent = null;
|
|
@@ -65,50 +65,50 @@ let IgcComboBoxColumnComponent = /*@__PURE__*/ (() => {
|
|
|
65
65
|
* 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.
|
|
66
66
|
*/
|
|
67
67
|
get actualDataSource() {
|
|
68
|
-
return this.i.
|
|
68
|
+
return this.i.s2;
|
|
69
69
|
}
|
|
70
70
|
set actualDataSource(v) {
|
|
71
|
-
this.i.
|
|
71
|
+
this.i.s2 = v;
|
|
72
72
|
}
|
|
73
73
|
/**
|
|
74
74
|
* Gets or sets the ComboBox data source.
|
|
75
75
|
*/
|
|
76
76
|
get dataSource() {
|
|
77
|
-
return this.i.
|
|
77
|
+
return this.i.s3;
|
|
78
78
|
}
|
|
79
79
|
set dataSource(v) {
|
|
80
|
-
this.i.
|
|
80
|
+
this.i.s3 = v;
|
|
81
81
|
}
|
|
82
82
|
/**
|
|
83
83
|
* Gets or sets the ComboBox text field.
|
|
84
84
|
*/
|
|
85
85
|
get textField() {
|
|
86
|
-
return this.i.
|
|
86
|
+
return this.i.s7;
|
|
87
87
|
}
|
|
88
88
|
set textField(v) {
|
|
89
|
-
this.i.
|
|
89
|
+
this.i.s7 = v;
|
|
90
90
|
}
|
|
91
91
|
/**
|
|
92
92
|
* Gets or sets the ComboBox value field.
|
|
93
93
|
*/
|
|
94
94
|
get valueField() {
|
|
95
|
-
return this.i.
|
|
95
|
+
return this.i.s8;
|
|
96
96
|
}
|
|
97
97
|
set valueField(v) {
|
|
98
|
-
this.i.
|
|
98
|
+
this.i.s8 = v;
|
|
99
99
|
}
|
|
100
100
|
/**
|
|
101
101
|
* Gets or sets the ComboBox value field.
|
|
102
102
|
*/
|
|
103
103
|
get valueMultiField() {
|
|
104
|
-
return this.i.
|
|
104
|
+
return this.i.s0;
|
|
105
105
|
}
|
|
106
106
|
set valueMultiField(v) {
|
|
107
107
|
if (v && !Array.isArray(v) && typeof (v) == "string") {
|
|
108
108
|
const re = /\s*(?:,|\s|$)\s*/gm;
|
|
109
109
|
v = v.split(re);
|
|
110
110
|
}
|
|
111
|
-
this.i.
|
|
111
|
+
this.i.s0 = v;
|
|
112
112
|
}
|
|
113
113
|
}
|
|
114
114
|
IgcComboBoxColumnComponent._observedAttributesIgcComboBoxColumnComponent = null;
|
|
@@ -66,6 +66,9 @@ export class IgcDataBindingEventArgs {
|
|
|
66
66
|
case "FilterCellModel":
|
|
67
67
|
extTypeName = "IgcFilterCellInfo";
|
|
68
68
|
break;
|
|
69
|
+
case "SummaryCellModel":
|
|
70
|
+
extTypeName = "IgcSummaryCellInfo";
|
|
71
|
+
break;
|
|
69
72
|
}
|
|
70
73
|
if (extTypeName) {
|
|
71
74
|
if (TypeRegistrar.isRegistered(extTypeName)) {
|