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
|
@@ -490,11 +490,11 @@ export var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
490
490
|
* Gets or sets the search background color.
|
|
491
491
|
*/
|
|
492
492
|
get: function () {
|
|
493
|
-
return brushToString(this.i.
|
|
493
|
+
return brushToString(this.i.fs);
|
|
494
494
|
},
|
|
495
495
|
set: function (v) {
|
|
496
|
-
this.i.
|
|
497
|
-
this._a("searchBackgroundColor", brushToString(this.i.
|
|
496
|
+
this.i.fs = stringToBrush(v);
|
|
497
|
+
this._a("searchBackgroundColor", brushToString(this.i.fs));
|
|
498
498
|
},
|
|
499
499
|
enumerable: false,
|
|
500
500
|
configurable: true
|
|
@@ -579,11 +579,11 @@ export var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
579
579
|
* Gets or sets the checkbox tick color.
|
|
580
580
|
*/
|
|
581
581
|
get: function () {
|
|
582
|
-
return brushToString(this.i.
|
|
582
|
+
return brushToString(this.i.fg);
|
|
583
583
|
},
|
|
584
584
|
set: function (v) {
|
|
585
|
-
this.i.
|
|
586
|
-
this._a("checkboxTickColor", brushToString(this.i.
|
|
585
|
+
this.i.fg = stringToBrush(v);
|
|
586
|
+
this._a("checkboxTickColor", brushToString(this.i.fg));
|
|
587
587
|
},
|
|
588
588
|
enumerable: false,
|
|
589
589
|
configurable: true
|
|
@@ -677,11 +677,39 @@ export var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
677
677
|
* Gets or sets the scrollbar background color.
|
|
678
678
|
*/
|
|
679
679
|
get: function () {
|
|
680
|
-
return brushToString(this.i.
|
|
680
|
+
return brushToString(this.i.scrollbarBackground);
|
|
681
|
+
},
|
|
682
|
+
set: function (v) {
|
|
683
|
+
this.i.scrollbarBackground = stringToBrush(v);
|
|
684
|
+
this._a("scrollbarBackground", brushToString(this.i.scrollbarBackground));
|
|
685
|
+
},
|
|
686
|
+
enumerable: false,
|
|
687
|
+
configurable: true
|
|
688
|
+
});
|
|
689
|
+
Object.defineProperty(IgcCheckboxListComponent.prototype, "scrollbarHoverBackground", {
|
|
690
|
+
/**
|
|
691
|
+
* Gets or sets the scrollbar thumb background color when the pointer is over it.
|
|
692
|
+
*/
|
|
693
|
+
get: function () {
|
|
694
|
+
return brushToString(this.i.scrollbarHoverBackground);
|
|
681
695
|
},
|
|
682
696
|
set: function (v) {
|
|
683
|
-
this.i.
|
|
684
|
-
this._a("
|
|
697
|
+
this.i.scrollbarHoverBackground = stringToBrush(v);
|
|
698
|
+
this._a("scrollbarHoverBackground", brushToString(this.i.scrollbarHoverBackground));
|
|
699
|
+
},
|
|
700
|
+
enumerable: false,
|
|
701
|
+
configurable: true
|
|
702
|
+
});
|
|
703
|
+
Object.defineProperty(IgcCheckboxListComponent.prototype, "scrollbarActiveBackground", {
|
|
704
|
+
/**
|
|
705
|
+
* Gets or sets the scrollbar thumb background color when the user is dragging it.
|
|
706
|
+
*/
|
|
707
|
+
get: function () {
|
|
708
|
+
return brushToString(this.i.scrollbarActiveBackground);
|
|
709
|
+
},
|
|
710
|
+
set: function (v) {
|
|
711
|
+
this.i.scrollbarActiveBackground = stringToBrush(v);
|
|
712
|
+
this._a("scrollbarActiveBackground", brushToString(this.i.scrollbarActiveBackground));
|
|
685
713
|
},
|
|
686
714
|
enumerable: false,
|
|
687
715
|
configurable: true
|
|
@@ -691,10 +719,10 @@ export var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
691
719
|
* Gets / sets the caption of the "Select All" checkbox.
|
|
692
720
|
*/
|
|
693
721
|
get: function () {
|
|
694
|
-
return this.i.
|
|
722
|
+
return this.i.c3;
|
|
695
723
|
},
|
|
696
724
|
set: function (v) {
|
|
697
|
-
this.i.
|
|
725
|
+
this.i.c3 = v;
|
|
698
726
|
},
|
|
699
727
|
enumerable: false,
|
|
700
728
|
configurable: true
|
|
@@ -718,11 +746,11 @@ export var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
718
746
|
* Gets or sets the color to use for the actual header selectAllCaption text.
|
|
719
747
|
*/
|
|
720
748
|
get: function () {
|
|
721
|
-
return brushToString(this.i.
|
|
749
|
+
return brushToString(this.i.fc);
|
|
722
750
|
},
|
|
723
751
|
set: function (v) {
|
|
724
|
-
this.i.
|
|
725
|
-
this._a("actualSelectAllCaptionTextColor", brushToString(this.i.
|
|
752
|
+
this.i.fc = stringToBrush(v);
|
|
753
|
+
this._a("actualSelectAllCaptionTextColor", brushToString(this.i.fc));
|
|
726
754
|
},
|
|
727
755
|
enumerable: false,
|
|
728
756
|
configurable: true
|
|
@@ -898,17 +926,17 @@ export var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
898
926
|
|
|
899
927
|
*/
|
|
900
928
|
IgcCheckboxListComponent.prototype.selectAll = function () {
|
|
901
|
-
this.i.
|
|
929
|
+
this.i.en();
|
|
902
930
|
};
|
|
903
931
|
/**
|
|
904
932
|
* Deselects all the items in the checkbox list.
|
|
905
933
|
|
|
906
934
|
*/
|
|
907
935
|
IgcCheckboxListComponent.prototype.deselectAll = function () {
|
|
908
|
-
this.i.
|
|
936
|
+
this.i.dj();
|
|
909
937
|
};
|
|
910
938
|
IgcCheckboxListComponent.prototype.notifySetItem = function (index, oldItem, newItem) {
|
|
911
|
-
this.i.
|
|
939
|
+
this.i.dy(index, oldItem, newItem);
|
|
912
940
|
};
|
|
913
941
|
/**
|
|
914
942
|
* Manually notifies the checkboxlist's grid that the data it has bound to has been cleared and needs to be re-examined.
|
|
@@ -916,22 +944,22 @@ export var IgcCheckboxListComponent = /** @class */ /*@__PURE__*/ (function (_su
|
|
|
916
944
|
|
|
917
945
|
*/
|
|
918
946
|
IgcCheckboxListComponent.prototype.notifyClearItems = function () {
|
|
919
|
-
this.i.
|
|
947
|
+
this.i.du();
|
|
920
948
|
};
|
|
921
949
|
IgcCheckboxListComponent.prototype.notifyInsertItem = function (index, newItem) {
|
|
922
|
-
this.i.
|
|
950
|
+
this.i.dv(index, newItem);
|
|
923
951
|
};
|
|
924
952
|
IgcCheckboxListComponent.prototype.notifyRemoveItem = function (index, oldItem) {
|
|
925
|
-
this.i.
|
|
953
|
+
this.i.dx(index, oldItem);
|
|
926
954
|
};
|
|
927
955
|
IgcCheckboxListComponent.prototype.refresh = function () {
|
|
928
956
|
this.i.refresh();
|
|
929
957
|
};
|
|
930
958
|
IgcCheckboxListComponent.prototype.addKeyValue = function (value) {
|
|
931
|
-
this.i.
|
|
959
|
+
this.i.de(value);
|
|
932
960
|
};
|
|
933
961
|
IgcCheckboxListComponent.prototype.removeKeyValue = function (value) {
|
|
934
|
-
this.i.
|
|
962
|
+
this.i.el(value);
|
|
935
963
|
};
|
|
936
964
|
IgcCheckboxListComponent.prototype.getDesiredSize = function (availableSize) {
|
|
937
965
|
var iv = this.i.getDesiredSize(toSize(availableSize));
|
|
@@ -75,33 +75,33 @@ export var IgcColumnMovingSeparatorComponent = /** @class */ /*@__PURE__*/ (func
|
|
|
75
75
|
* Gets or sets the separator width for this column.
|
|
76
76
|
*/
|
|
77
77
|
get: function () {
|
|
78
|
-
return this.i.
|
|
78
|
+
return this.i.g8;
|
|
79
79
|
},
|
|
80
80
|
set: function (v) {
|
|
81
|
-
this.i.
|
|
82
|
-
this._a("separatorWidth", this.i.
|
|
81
|
+
this.i.g8 = +v;
|
|
82
|
+
this._a("separatorWidth", this.i.g8);
|
|
83
83
|
},
|
|
84
84
|
enumerable: false,
|
|
85
85
|
configurable: true
|
|
86
86
|
});
|
|
87
87
|
Object.defineProperty(IgcColumnMovingSeparatorComponent.prototype, "actualOpacity", {
|
|
88
88
|
get: function () {
|
|
89
|
-
return this.i.
|
|
89
|
+
return this.i.g5;
|
|
90
90
|
},
|
|
91
91
|
set: function (v) {
|
|
92
|
-
this.i.
|
|
93
|
-
this._a("actualOpacity", this.i.
|
|
92
|
+
this.i.g5 = +v;
|
|
93
|
+
this._a("actualOpacity", this.i.g5);
|
|
94
94
|
},
|
|
95
95
|
enumerable: false,
|
|
96
96
|
configurable: true
|
|
97
97
|
});
|
|
98
98
|
Object.defineProperty(IgcColumnMovingSeparatorComponent.prototype, "opacity", {
|
|
99
99
|
get: function () {
|
|
100
|
-
return this.i.
|
|
100
|
+
return this.i.g6;
|
|
101
101
|
},
|
|
102
102
|
set: function (v) {
|
|
103
|
-
this.i.
|
|
104
|
-
this._a("opacity", this.i.
|
|
103
|
+
this.i.g6 = +v;
|
|
104
|
+
this._a("opacity", this.i.g6);
|
|
105
105
|
},
|
|
106
106
|
enumerable: false,
|
|
107
107
|
configurable: true
|
|
@@ -72,22 +72,22 @@ export var IgcColumnResizingSeparatorComponent = /** @class */ /*@__PURE__*/ (fu
|
|
|
72
72
|
};
|
|
73
73
|
Object.defineProperty(IgcColumnResizingSeparatorComponent.prototype, "actualOpacity", {
|
|
74
74
|
get: function () {
|
|
75
|
-
return this.i.
|
|
75
|
+
return this.i.g5;
|
|
76
76
|
},
|
|
77
77
|
set: function (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
|
enumerable: false,
|
|
82
82
|
configurable: true
|
|
83
83
|
});
|
|
84
84
|
Object.defineProperty(IgcColumnResizingSeparatorComponent.prototype, "opacity", {
|
|
85
85
|
get: function () {
|
|
86
|
-
return this.i.
|
|
86
|
+
return this.i.g6;
|
|
87
87
|
},
|
|
88
88
|
set: function (v) {
|
|
89
|
-
this.i.
|
|
90
|
-
this._a("opacity", this.i.
|
|
89
|
+
this.i.g6 = +v;
|
|
90
|
+
this._a("opacity", this.i.g6);
|
|
91
91
|
},
|
|
92
92
|
enumerable: false,
|
|
93
93
|
configurable: true
|
|
@@ -78,10 +78,10 @@ export var IgcComboBoxColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
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.
|
|
81
|
+
return this.i.s2;
|
|
82
82
|
},
|
|
83
83
|
set: function (v) {
|
|
84
|
-
this.i.
|
|
84
|
+
this.i.s2 = v;
|
|
85
85
|
},
|
|
86
86
|
enumerable: false,
|
|
87
87
|
configurable: true
|
|
@@ -91,10 +91,10 @@ export var IgcComboBoxColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
91
91
|
* Gets or sets the ComboBox data source.
|
|
92
92
|
*/
|
|
93
93
|
get: function () {
|
|
94
|
-
return this.i.
|
|
94
|
+
return this.i.s3;
|
|
95
95
|
},
|
|
96
96
|
set: function (v) {
|
|
97
|
-
this.i.
|
|
97
|
+
this.i.s3 = v;
|
|
98
98
|
},
|
|
99
99
|
enumerable: false,
|
|
100
100
|
configurable: true
|
|
@@ -104,10 +104,10 @@ export var IgcComboBoxColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
104
104
|
* Gets or sets the ComboBox text field.
|
|
105
105
|
*/
|
|
106
106
|
get: function () {
|
|
107
|
-
return this.i.
|
|
107
|
+
return this.i.s7;
|
|
108
108
|
},
|
|
109
109
|
set: function (v) {
|
|
110
|
-
this.i.
|
|
110
|
+
this.i.s7 = v;
|
|
111
111
|
},
|
|
112
112
|
enumerable: false,
|
|
113
113
|
configurable: true
|
|
@@ -117,10 +117,10 @@ export var IgcComboBoxColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
117
117
|
* Gets or sets the ComboBox value field.
|
|
118
118
|
*/
|
|
119
119
|
get: function () {
|
|
120
|
-
return this.i.
|
|
120
|
+
return this.i.s8;
|
|
121
121
|
},
|
|
122
122
|
set: function (v) {
|
|
123
|
-
this.i.
|
|
123
|
+
this.i.s8 = v;
|
|
124
124
|
},
|
|
125
125
|
enumerable: false,
|
|
126
126
|
configurable: true
|
|
@@ -130,14 +130,14 @@ export var IgcComboBoxColumnComponent = /** @class */ /*@__PURE__*/ (function (_
|
|
|
130
130
|
* Gets or sets the ComboBox value field.
|
|
131
131
|
*/
|
|
132
132
|
get: function () {
|
|
133
|
-
return this.i.
|
|
133
|
+
return this.i.s0;
|
|
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.
|
|
140
|
+
this.i.s0 = v;
|
|
141
141
|
},
|
|
142
142
|
enumerable: false,
|
|
143
143
|
configurable: true
|
|
@@ -71,6 +71,9 @@ var IgcDataBindingEventArgs = /** @class */ /*@__PURE__*/ (function () {
|
|
|
71
71
|
case "FilterCellModel":
|
|
72
72
|
extTypeName = "IgcFilterCellInfo";
|
|
73
73
|
break;
|
|
74
|
+
case "SummaryCellModel":
|
|
75
|
+
extTypeName = "IgcSummaryCellInfo";
|
|
76
|
+
break;
|
|
74
77
|
}
|
|
75
78
|
if (extTypeName) {
|
|
76
79
|
if (TypeRegistrar.isRegistered(extTypeName)) {
|