igniteui-webcomponents-data-grids 7.1.0-beta.2 → 7.1.0-beta.4
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
package/lib/ImageCell.d.ts
CHANGED
|
@@ -10,25 +10,25 @@ import { ImageStretchOptions } from "./ImageStretchOptions";
|
|
|
10
10
|
*/
|
|
11
11
|
export declare class ImageCell extends GridCellBase {
|
|
12
12
|
static $t: Type;
|
|
13
|
-
private d5;
|
|
14
|
-
private dz;
|
|
15
|
-
private d0;
|
|
16
13
|
private d7;
|
|
17
14
|
private d1;
|
|
18
15
|
private d2;
|
|
16
|
+
private d9;
|
|
17
|
+
private d3;
|
|
19
18
|
private d4;
|
|
20
|
-
|
|
21
|
-
get
|
|
22
|
-
|
|
19
|
+
private d6;
|
|
20
|
+
get d8(): DomWrapper;
|
|
21
|
+
get d5(): number;
|
|
22
|
+
set d5(a: number);
|
|
23
23
|
constructor(a: DomRenderer);
|
|
24
|
-
private
|
|
25
|
-
|
|
26
|
-
private
|
|
27
|
-
|
|
28
|
-
private
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
24
|
+
private ec;
|
|
25
|
+
ed(a: string, b: ImageResourceType): void;
|
|
26
|
+
private eb;
|
|
27
|
+
eg(a: ImageStretchOptions): void;
|
|
28
|
+
private eh;
|
|
29
|
+
ea(): void;
|
|
30
|
+
ee(a: CellContentHorizontalAlignment): void;
|
|
31
|
+
ef(a: CellContentVerticalAlignment): void;
|
|
32
32
|
protected get_ae(): boolean;
|
|
33
|
-
protected
|
|
33
|
+
protected cn(a: string, b: any, c: any): void;
|
|
34
34
|
}
|
package/lib/NumericCell.d.ts
CHANGED
|
@@ -7,6 +7,6 @@ import { Type } from "igniteui-webcomponents-core";
|
|
|
7
7
|
export declare class NumericCell extends TextCell {
|
|
8
8
|
static $t: Type;
|
|
9
9
|
constructor(a: DomRenderer);
|
|
10
|
-
protected
|
|
11
|
-
|
|
10
|
+
protected cn(a: string, b: any, c: any): void;
|
|
11
|
+
cb(): void;
|
|
12
12
|
}
|
|
@@ -7,10 +7,12 @@ import { Type } from "igniteui-webcomponents-core";
|
|
|
7
7
|
*/
|
|
8
8
|
export declare class SectionHeaderCell extends GridCellBase {
|
|
9
9
|
static $t: Type;
|
|
10
|
-
private
|
|
11
|
-
get
|
|
10
|
+
private d1;
|
|
11
|
+
get d2(): DomWrapper;
|
|
12
12
|
constructor(a: DomRenderer);
|
|
13
|
-
|
|
13
|
+
c3(a: DomWrapper, b: FontInfo): void;
|
|
14
|
+
private d3;
|
|
15
|
+
c4(a: number, b: number): void;
|
|
14
16
|
protected get_ae(): boolean;
|
|
15
|
-
protected
|
|
17
|
+
protected cn(a: string, b: any, c: any): void;
|
|
16
18
|
}
|
package/lib/SummaryCell.d.ts
CHANGED
|
@@ -7,17 +7,17 @@ import { Type } from "igniteui-webcomponents-core";
|
|
|
7
7
|
*/
|
|
8
8
|
export declare class SummaryCell extends GridCellBase {
|
|
9
9
|
static $t: Type;
|
|
10
|
-
private dz;
|
|
11
|
-
get d2(): DomWrapper;
|
|
12
|
-
private d0;
|
|
13
|
-
get d3(): DomWrapper;
|
|
14
10
|
private d1;
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
11
|
+
get d4(): DomWrapper;
|
|
12
|
+
private d2;
|
|
13
|
+
get d5(): DomWrapper;
|
|
14
|
+
private d3;
|
|
15
|
+
private d7;
|
|
16
|
+
df(a: number, b: number): void;
|
|
17
|
+
private d6;
|
|
18
|
+
c4(a: number, b: number): void;
|
|
19
|
+
c3(a: DomWrapper, b: FontInfo): void;
|
|
20
20
|
constructor(a: DomRenderer);
|
|
21
21
|
protected get_ae(): boolean;
|
|
22
|
-
protected
|
|
22
|
+
protected cn(a: string, b: any, c: any): void;
|
|
23
23
|
}
|
package/lib/TemplateCell.d.ts
CHANGED
|
@@ -7,11 +7,11 @@ import { Type } from "igniteui-webcomponents-core";
|
|
|
7
7
|
*/
|
|
8
8
|
export declare class TemplateCell extends GridCellBase {
|
|
9
9
|
static $t: Type;
|
|
10
|
-
private
|
|
11
|
-
get
|
|
10
|
+
private d1;
|
|
11
|
+
get d2(): TemplateCellContainer;
|
|
12
12
|
constructor(a: DomRenderer);
|
|
13
13
|
protected get_ae(): boolean;
|
|
14
|
-
protected
|
|
15
|
-
|
|
16
|
-
private
|
|
14
|
+
protected cn(a: string, b: any, c: any): void;
|
|
15
|
+
cc(): void;
|
|
16
|
+
private d3;
|
|
17
17
|
}
|
package/lib/TemplateHeader.d.ts
CHANGED
|
@@ -12,8 +12,8 @@ export declare class TemplateHeader extends Header {
|
|
|
12
12
|
static $t: Type;
|
|
13
13
|
constructor();
|
|
14
14
|
protected n(a: CellPath): CellModel;
|
|
15
|
-
protected
|
|
16
|
-
|
|
17
|
-
|
|
15
|
+
protected d5(a: CellPath, b: DataGrid, c: any): string;
|
|
16
|
+
er(a: CellModel, b: DataGrid, c: any, d: any): void;
|
|
17
|
+
hv(a: TemplateHeaderCellModel, b: any): void;
|
|
18
18
|
cellUpdating: (sender: any, args: TemplateHeaderCellUpdatingEventArgs) => void;
|
|
19
19
|
}
|
|
@@ -7,8 +7,8 @@ import { Type } from "igniteui-webcomponents-core";
|
|
|
7
7
|
*/
|
|
8
8
|
export declare class TemplateHeaderCell extends GridCellBase {
|
|
9
9
|
static $t: Type;
|
|
10
|
-
private
|
|
11
|
-
get
|
|
10
|
+
private d1;
|
|
11
|
+
get d2(): TemplateCellContainer;
|
|
12
12
|
constructor(a: DomRenderer);
|
|
13
13
|
protected get_ac(): boolean;
|
|
14
14
|
}
|
|
@@ -6,12 +6,12 @@ import { CellModelExport } from "./CellModelExport";
|
|
|
6
6
|
*/
|
|
7
7
|
export declare class TemplateHeaderCellModel extends TemplateCellModel {
|
|
8
8
|
static $t: Type;
|
|
9
|
-
static readonly
|
|
10
|
-
private
|
|
11
|
-
get
|
|
12
|
-
set
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
9
|
+
static readonly oi: number;
|
|
10
|
+
private og;
|
|
11
|
+
get oh(): boolean;
|
|
12
|
+
set oh(a: boolean);
|
|
13
|
+
mw(a: string, b: any): void;
|
|
14
|
+
l8(a: string): Type;
|
|
15
|
+
ik(a: string): any;
|
|
16
16
|
b(a: CellModelExport): CellModelExport;
|
|
17
17
|
}
|
|
@@ -10,8 +10,8 @@ import { TemplateSectionHeaderCellUpdatingEventArgs } from "./TemplateSectionHea
|
|
|
10
10
|
*/
|
|
11
11
|
export declare class TemplateSectionHeader extends SectionHeader {
|
|
12
12
|
static $t: Type;
|
|
13
|
-
protected
|
|
13
|
+
protected d5(a: CellPath, b: DataGrid, c: any): string;
|
|
14
14
|
protected n(a: CellPath): CellModel;
|
|
15
|
-
|
|
15
|
+
ie(a: TemplateSectionHeaderCellModel, b: any): void;
|
|
16
16
|
cellUpdating: (sender: any, args: TemplateSectionHeaderCellUpdatingEventArgs) => void;
|
|
17
17
|
}
|
package/lib/TextCell.d.ts
CHANGED
|
@@ -7,14 +7,14 @@ import { FontInfo } from "igniteui-webcomponents-core";
|
|
|
7
7
|
*/
|
|
8
8
|
export declare class TextCell extends GridCellBase {
|
|
9
9
|
static $t: Type;
|
|
10
|
-
private dz;
|
|
11
|
-
get d0(): DomWrapper;
|
|
12
|
-
private d2;
|
|
13
|
-
dd(a: number, b: number): void;
|
|
14
10
|
private d1;
|
|
15
|
-
|
|
11
|
+
get d2(): DomWrapper;
|
|
12
|
+
private d4;
|
|
13
|
+
df(a: number, b: number): void;
|
|
14
|
+
private d3;
|
|
15
|
+
c4(a: number, b: number): void;
|
|
16
16
|
constructor(a: DomRenderer);
|
|
17
|
-
|
|
17
|
+
c3(a: DomWrapper, b: FontInfo): void;
|
|
18
18
|
protected get_ae(): boolean;
|
|
19
|
-
protected
|
|
19
|
+
protected cn(a: string, b: any, c: any): void;
|
|
20
20
|
}
|
package/lib/TextHeaderCell.d.ts
CHANGED
|
@@ -14,45 +14,45 @@ import { BaseControlTheme } from "igniteui-webcomponents-core";
|
|
|
14
14
|
*/
|
|
15
15
|
export declare class TextHeaderCell extends GridCellBase {
|
|
16
16
|
static $t: Type;
|
|
17
|
-
private
|
|
17
|
+
private ec;
|
|
18
|
+
private d8;
|
|
18
19
|
private d6;
|
|
19
|
-
private d4;
|
|
20
|
-
private d0;
|
|
21
|
-
private dz;
|
|
22
|
-
get ed(): DomWrapper;
|
|
23
|
-
get d7(): GridSortIndicator;
|
|
24
|
-
get d5(): GridFilterDialog;
|
|
25
20
|
private d2;
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
get
|
|
29
|
-
|
|
21
|
+
private d1;
|
|
22
|
+
get ef(): DomWrapper;
|
|
23
|
+
get d9(): GridSortIndicator;
|
|
24
|
+
get d7(): GridFilterDialog;
|
|
25
|
+
private d4;
|
|
26
|
+
get d5(): ColumnOptionsIconBehavior;
|
|
27
|
+
set d5(a: ColumnOptionsIconBehavior);
|
|
28
|
+
get d3(): ColumnOptionsIconAlignment;
|
|
29
|
+
set d3(a: ColumnOptionsIconAlignment);
|
|
30
30
|
protected af(a: ICellActionManager): boolean;
|
|
31
|
-
private ec;
|
|
32
|
-
private ef;
|
|
33
|
-
dd(a: number, b: number): void;
|
|
34
31
|
private ee;
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
32
|
+
private eh;
|
|
33
|
+
df(a: number, b: number): void;
|
|
34
|
+
private eg;
|
|
35
|
+
c4(a: number, b: number): void;
|
|
36
|
+
c3(a: DomWrapper, b: FontInfo): void;
|
|
37
|
+
protected dg(a: number, b: number, c: number, d: number): void;
|
|
38
38
|
constructor(a: DomRenderer);
|
|
39
|
-
private ei;
|
|
40
|
-
private ep;
|
|
41
|
-
private eo;
|
|
42
39
|
private ek;
|
|
43
|
-
private
|
|
44
|
-
private
|
|
45
|
-
cj(a: DomWrapper, b: DomWrapper, c: CellContentHorizontalAlignment): void;
|
|
46
|
-
c7(a: number, b: number, c: number, d: number): void;
|
|
47
|
-
private en;
|
|
40
|
+
private er;
|
|
41
|
+
private eq;
|
|
48
42
|
private em;
|
|
49
|
-
|
|
50
|
-
private
|
|
43
|
+
private en;
|
|
44
|
+
private el;
|
|
45
|
+
cl(a: DomWrapper, b: DomWrapper, c: CellContentHorizontalAlignment): void;
|
|
46
|
+
c9(a: number, b: number, c: number, d: number): void;
|
|
47
|
+
private ep;
|
|
48
|
+
private eo;
|
|
49
|
+
protected cn(a: string, b: any, c: any): void;
|
|
50
|
+
private ea;
|
|
51
51
|
onContactStarted(e_: NormalizedEvent, a: boolean): void;
|
|
52
52
|
onContactCompleted(e_: NormalizedEvent, a: boolean): void;
|
|
53
53
|
detach(): void;
|
|
54
|
-
|
|
54
|
+
dd(a: BaseControlTheme): void;
|
|
55
55
|
protected get_ac(): boolean;
|
|
56
|
-
|
|
57
|
-
|
|
56
|
+
ed: DomWrapper;
|
|
57
|
+
eb: boolean;
|
|
58
58
|
}
|
|
@@ -8,14 +8,14 @@ import { Type } from "igniteui-webcomponents-core";
|
|
|
8
8
|
*/
|
|
9
9
|
export declare class VerticalSeparatorCell extends GridCellBase {
|
|
10
10
|
static $t: Type;
|
|
11
|
-
private d0;
|
|
12
|
-
private dz;
|
|
13
|
-
private d1;
|
|
14
11
|
private d2;
|
|
15
|
-
|
|
16
|
-
cy(a: Brush, b: number, c: number, d: number, e: number): void;
|
|
17
|
-
dd(a: number, b: number): void;
|
|
18
|
-
cx(a: Color): void;
|
|
19
|
-
private d4;
|
|
12
|
+
private d1;
|
|
20
13
|
private d3;
|
|
14
|
+
private d4;
|
|
15
|
+
constructor(a: DomRenderer);
|
|
16
|
+
c0(a: Brush, b: number, c: number, d: number, e: number): void;
|
|
17
|
+
df(a: number, b: number): void;
|
|
18
|
+
cz(a: Color): void;
|
|
19
|
+
private d6;
|
|
20
|
+
private d5;
|
|
21
21
|
}
|
package/lib/igc-cell-info.d.ts
CHANGED
|
@@ -38,6 +38,9 @@ export declare abstract class IgcCellInfo {
|
|
|
38
38
|
* Gets the column index for the current cell.
|
|
39
39
|
*/
|
|
40
40
|
get columnIdx(): number;
|
|
41
|
+
get isSectionSummary(): boolean;
|
|
42
|
+
get isRootSummary(): boolean;
|
|
43
|
+
get isFirstRootSummarySeparator(): boolean;
|
|
41
44
|
/**
|
|
42
45
|
* Gets if the position of the cell is dirty.
|
|
43
46
|
*/
|
|
@@ -199,6 +199,16 @@ export declare class IgcCheckboxListComponent extends IgcHTMLElement {
|
|
|
199
199
|
*/
|
|
200
200
|
get scrollbarBackground(): string;
|
|
201
201
|
set scrollbarBackground(v: string);
|
|
202
|
+
/**
|
|
203
|
+
* Gets or sets the scrollbar thumb background color when the pointer is over it.
|
|
204
|
+
*/
|
|
205
|
+
get scrollbarHoverBackground(): string;
|
|
206
|
+
set scrollbarHoverBackground(v: string);
|
|
207
|
+
/**
|
|
208
|
+
* Gets or sets the scrollbar thumb background color when the user is dragging it.
|
|
209
|
+
*/
|
|
210
|
+
get scrollbarActiveBackground(): string;
|
|
211
|
+
set scrollbarActiveBackground(v: string);
|
|
202
212
|
/**
|
|
203
213
|
* Gets / sets the caption of the "Select All" checkbox.
|
|
204
214
|
*/
|
|
@@ -259,6 +259,36 @@ export declare abstract class IgcDataGridColumnComponent extends IgcDefinitionBa
|
|
|
259
259
|
*/
|
|
260
260
|
get columnOptionsBackground(): string;
|
|
261
261
|
set columnOptionsBackground(v: string);
|
|
262
|
+
/**
|
|
263
|
+
* Gets the resolved scrollbar background color for checkbox lists in the column options dialog.
|
|
264
|
+
*/
|
|
265
|
+
get actualColumnOptionsScrollbarBackground(): string;
|
|
266
|
+
set actualColumnOptionsScrollbarBackground(v: string);
|
|
267
|
+
/**
|
|
268
|
+
* Gets or sets the scrollbar background color for checkbox lists in this column's options dialog.
|
|
269
|
+
*/
|
|
270
|
+
get columnOptionsScrollbarBackground(): string;
|
|
271
|
+
set columnOptionsScrollbarBackground(v: string);
|
|
272
|
+
/**
|
|
273
|
+
* Gets the resolved scrollbar thumb hover background color for checkbox lists in the column options dialog.
|
|
274
|
+
*/
|
|
275
|
+
get actualColumnOptionsScrollbarHoverBackground(): string;
|
|
276
|
+
set actualColumnOptionsScrollbarHoverBackground(v: string);
|
|
277
|
+
/**
|
|
278
|
+
* Gets or sets the scrollbar thumb hover background color for checkbox lists in this column's options dialog.
|
|
279
|
+
*/
|
|
280
|
+
get columnOptionsScrollbarHoverBackground(): string;
|
|
281
|
+
set columnOptionsScrollbarHoverBackground(v: string);
|
|
282
|
+
/**
|
|
283
|
+
* Gets the resolved scrollbar thumb active (dragging) background color for checkbox lists in the column options dialog.
|
|
284
|
+
*/
|
|
285
|
+
get actualColumnOptionsScrollbarActiveBackground(): string;
|
|
286
|
+
set actualColumnOptionsScrollbarActiveBackground(v: string);
|
|
287
|
+
/**
|
|
288
|
+
* Gets or sets the scrollbar thumb active (dragging) background color for checkbox lists in this column's options dialog.
|
|
289
|
+
*/
|
|
290
|
+
get columnOptionsScrollbarActiveBackground(): string;
|
|
291
|
+
set columnOptionsScrollbarActiveBackground(v: string);
|
|
262
292
|
/**
|
|
263
293
|
* Gets or sets the text color for text inside the column options menu.
|
|
264
294
|
*/
|
|
@@ -124,6 +124,8 @@ export declare class IgcDataGridComponent extends IgcHTMLElement {
|
|
|
124
124
|
get useAccessibility(): boolean;
|
|
125
125
|
private _setScrollbarStyle;
|
|
126
126
|
private _setScrollbarColor;
|
|
127
|
+
private _setScrollbarHoverColor;
|
|
128
|
+
private _setScrollbarActiveColor;
|
|
127
129
|
private _moveFocusNext;
|
|
128
130
|
private _moveFocusPrevious;
|
|
129
131
|
private _columnsAdapter;
|
|
@@ -1104,11 +1106,36 @@ export declare class IgcDataGridComponent extends IgcHTMLElement {
|
|
|
1104
1106
|
*/
|
|
1105
1107
|
get scrollbarBackground(): string;
|
|
1106
1108
|
set scrollbarBackground(v: string);
|
|
1109
|
+
/**
|
|
1110
|
+
* Gets or sets the scrollbar thumb background color when the pointer is over it.
|
|
1111
|
+
*/
|
|
1112
|
+
get scrollbarHoverBackground(): string;
|
|
1113
|
+
set scrollbarHoverBackground(v: string);
|
|
1114
|
+
/**
|
|
1115
|
+
* Gets or sets the scrollbar thumb background color when the user is dragging it.
|
|
1116
|
+
*/
|
|
1117
|
+
get scrollbarActiveBackground(): string;
|
|
1118
|
+
set scrollbarActiveBackground(v: string);
|
|
1107
1119
|
/**
|
|
1108
1120
|
* Gets or sets the column options dropdown background color.
|
|
1109
1121
|
*/
|
|
1110
1122
|
get columnOptionsBackground(): string;
|
|
1111
1123
|
set columnOptionsBackground(v: string);
|
|
1124
|
+
/**
|
|
1125
|
+
* Gets or sets the scrollbar background color for checkbox lists in the column options dialog.
|
|
1126
|
+
*/
|
|
1127
|
+
get columnOptionsScrollbarBackground(): string;
|
|
1128
|
+
set columnOptionsScrollbarBackground(v: string);
|
|
1129
|
+
/**
|
|
1130
|
+
* Gets or sets the scrollbar thumb hover background color for checkbox lists in the column options dialog.
|
|
1131
|
+
*/
|
|
1132
|
+
get columnOptionsScrollbarHoverBackground(): string;
|
|
1133
|
+
set columnOptionsScrollbarHoverBackground(v: string);
|
|
1134
|
+
/**
|
|
1135
|
+
* Gets or sets the scrollbar thumb active (dragging) background color for checkbox lists in the column options dialog.
|
|
1136
|
+
*/
|
|
1137
|
+
get columnOptionsScrollbarActiveBackground(): string;
|
|
1138
|
+
set columnOptionsScrollbarActiveBackground(v: string);
|
|
1112
1139
|
/**
|
|
1113
1140
|
* Gets or sets the text color for text inside the column options menu.
|
|
1114
1141
|
*/
|
|
@@ -63,6 +63,21 @@ export declare class IgcDataGridFilterDialogComponent extends IgcHTMLElement {
|
|
|
63
63
|
*/
|
|
64
64
|
get columnOptionsBackground(): string;
|
|
65
65
|
set columnOptionsBackground(v: string);
|
|
66
|
+
/**
|
|
67
|
+
* Gets or sets the scrollbar background color for checkbox lists in the column options dialog.
|
|
68
|
+
*/
|
|
69
|
+
get columnOptionsScrollbarBackground(): string;
|
|
70
|
+
set columnOptionsScrollbarBackground(v: string);
|
|
71
|
+
/**
|
|
72
|
+
* Gets or sets the scrollbar thumb hover background color for checkbox lists in the column options dialog.
|
|
73
|
+
*/
|
|
74
|
+
get columnOptionsScrollbarHoverBackground(): string;
|
|
75
|
+
set columnOptionsScrollbarHoverBackground(v: string);
|
|
76
|
+
/**
|
|
77
|
+
* Gets or sets the scrollbar thumb active (dragging) background color for checkbox lists in the column options dialog.
|
|
78
|
+
*/
|
|
79
|
+
get columnOptionsScrollbarActiveBackground(): string;
|
|
80
|
+
set columnOptionsScrollbarActiveBackground(v: string);
|
|
66
81
|
/**
|
|
67
82
|
* Gets or sets the text color for text inside the column options menu.
|
|
68
83
|
*/
|
|
@@ -33,8 +33,8 @@ export declare abstract class IgcSummaryRowComponent extends IgcDefinitionBaseCo
|
|
|
33
33
|
/**
|
|
34
34
|
* Gets or sets the text style for the summary labels.
|
|
35
35
|
*/
|
|
36
|
-
get
|
|
37
|
-
set
|
|
36
|
+
get summaryLabelTextStyle(): string;
|
|
37
|
+
set summaryLabelTextStyle(v: string);
|
|
38
38
|
/**
|
|
39
39
|
* Gets or sets the amount of left padding to use for the cell content for this column.
|
|
40
40
|
*/
|
|
@@ -46,6 +46,21 @@ export declare class IgcTextHeaderCellInfo extends IgcTextCellInfo {
|
|
|
46
46
|
*/
|
|
47
47
|
get columnOptionsBackground(): string;
|
|
48
48
|
set columnOptionsBackground(v: string);
|
|
49
|
+
/**
|
|
50
|
+
* Gets or sets the scrollbar background color for checkbox lists in the column options dialog.
|
|
51
|
+
*/
|
|
52
|
+
get columnOptionsScrollbarBackground(): string;
|
|
53
|
+
set columnOptionsScrollbarBackground(v: string);
|
|
54
|
+
/**
|
|
55
|
+
* Gets or sets the scrollbar thumb hover background color for checkbox lists in the column options dialog.
|
|
56
|
+
*/
|
|
57
|
+
get columnOptionsScrollbarHoverBackground(): string;
|
|
58
|
+
set columnOptionsScrollbarHoverBackground(v: string);
|
|
59
|
+
/**
|
|
60
|
+
* Gets or sets the scrollbar thumb active (dragging) background color for checkbox lists in the column options dialog.
|
|
61
|
+
*/
|
|
62
|
+
get columnOptionsScrollbarActiveBackground(): string;
|
|
63
|
+
set columnOptionsScrollbarActiveBackground(v: string);
|
|
49
64
|
/**
|
|
50
65
|
* Gets or sets the text color for text inside the column options menu.
|
|
51
66
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "igniteui-webcomponents-data-grids",
|
|
3
|
-
"version": "7.1.0-beta.
|
|
3
|
+
"version": "7.1.0-beta.4",
|
|
4
4
|
"description": "Ignite UI Web Components data grid components.",
|
|
5
5
|
"homepage": "https://github.com/IgniteUI/igniteui-webcomponents-data-grids",
|
|
6
6
|
"keywords": [
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"tslib": "^2.3.1"
|
|
19
19
|
},
|
|
20
20
|
"peerDependencies": {
|
|
21
|
-
"igniteui-webcomponents-core": "7.1.0-beta.
|
|
22
|
-
"igniteui-webcomponents-layouts": "7.1.0-beta.
|
|
23
|
-
"igniteui-webcomponents-inputs": "7.1.0-beta.
|
|
21
|
+
"igniteui-webcomponents-core": "7.1.0-beta.4",
|
|
22
|
+
"igniteui-webcomponents-layouts": "7.1.0-beta.4",
|
|
23
|
+
"igniteui-webcomponents-inputs": "7.1.0-beta.4"
|
|
24
24
|
},
|
|
25
25
|
"sideEffects": [
|
|
26
26
|
"./grids/combined.js"
|