igniteui-webcomponents-grids 5.0.1 → 5.0.2
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-grids.umd.js +1366 -1366
- package/bundles/igniteui-webcomponents-grids.umd.min.js +1 -1
- package/esm2015/lib/CanvasGridCellBase.js +52 -52
- package/esm2015/lib/CanvasTemplateCellPresenter.js +7 -7
- package/esm2015/lib/CanvasTemplateHeaderCellPresenter.js +6 -6
- package/esm2015/lib/CanvasTextHeaderCell.js +1 -1
- package/esm2015/lib/CheckboxListView_combined.js +165 -165
- package/esm2015/lib/ColumnChooserView_combined.js +42 -42
- package/esm2015/lib/ColumnFilterCondition_combined.js +659 -659
- package/esm2015/lib/ColumnGroupingView_combined.js +40 -40
- package/esm2015/lib/ColumnPinningView_combined.js +42 -42
- package/esm2015/lib/DataGridAccessibilityLayoutPanel.js +2 -2
- package/esm2015/lib/DataGridCellLayoutPanel.js +48 -48
- package/esm2015/lib/DataGridToolbarView_combined.js +87 -87
- package/esm2015/lib/EditorCell.js +86 -86
- package/esm2015/lib/EditorCellPresenter.js +1 -1
- package/esm2015/lib/FilterCell.js +90 -90
- package/esm2015/lib/FilterCellPresenter.js +1 -1
- package/esm2015/lib/GridColumnFilterOptionsView_combined.js +7 -7
- package/esm2015/lib/ISummaryChooserView_combined.js +6 -6
- package/esm2015/lib/TemplateHeader.js +1 -1
- package/esm2015/lib/igc-checkbox-list-component.js +26 -26
- package/esm2015/lib/igc-column-chooser-component.js +2 -2
- package/esm2015/lib/igc-column-pinning-component.js +2 -2
- package/esm2015/lib/igc-data-grid-toolbar-component.js +2 -2
- package/esm2015/public_api.js +20 -20
- package/esm5/lib/CanvasGridCellBase.js +52 -52
- package/esm5/lib/CanvasTemplateCellPresenter.js +7 -7
- package/esm5/lib/CanvasTemplateHeaderCellPresenter.js +6 -6
- package/esm5/lib/CanvasTextHeaderCell.js +1 -1
- package/esm5/lib/CheckboxListView_combined.js +156 -156
- package/esm5/lib/ColumnChooserView_combined.js +41 -41
- package/esm5/lib/ColumnFilterCondition_combined.js +654 -654
- package/esm5/lib/ColumnGroupingView_combined.js +40 -40
- package/esm5/lib/ColumnPinningView_combined.js +41 -41
- package/esm5/lib/DataGridAccessibilityLayoutPanel.js +2 -2
- package/esm5/lib/DataGridCellLayoutPanel.js +48 -48
- package/esm5/lib/DataGridToolbarView_combined.js +86 -86
- package/esm5/lib/EditorCell.js +85 -85
- package/esm5/lib/EditorCellPresenter.js +1 -1
- package/esm5/lib/FilterCell.js +88 -88
- package/esm5/lib/FilterCellPresenter.js +1 -1
- package/esm5/lib/GridColumnFilterOptionsView_combined.js +7 -7
- package/esm5/lib/ISummaryChooserView_combined.js +6 -6
- package/esm5/lib/TemplateHeader.js +1 -1
- package/esm5/lib/igc-checkbox-list-component.js +26 -26
- package/esm5/lib/igc-column-chooser-component.js +2 -2
- package/esm5/lib/igc-column-pinning-component.js +2 -2
- package/esm5/lib/igc-data-grid-toolbar-component.js +2 -2
- package/esm5/public_api.js +20 -20
- package/fesm2015/igniteui-webcomponents-grids.js +1386 -1386
- package/fesm5/igniteui-webcomponents-grids.js +1366 -1366
- package/grids/combined.js +587 -590
- package/grids/lib/igc-grid-base-directive.d.ts +1 -0
- package/grids/lib/igc-row-island-component.d.ts +1 -0
- package/grids/styles.css +1 -1
- package/grids/themes/dark/bootstrap.css +1 -1
- package/grids/themes/dark/fluent.css +1 -1
- package/grids/themes/dark/indigo.css +1 -1
- package/grids/themes/dark/material.css +1 -1
- package/grids/themes/light/bootstrap.css +1 -1
- package/grids/themes/light/fluent.css +1 -1
- package/grids/themes/light/indigo.css +1 -1
- package/grids/themes/light/material.css +1 -1
- package/lib/CanvasGridCellBase.d.ts +7 -7
- package/lib/CanvasTemplateCellPresenter.d.ts +2 -2
- package/lib/CanvasTemplateHeaderCellPresenter.d.ts +2 -2
- package/lib/CheckboxListView_combined.d.ts +23 -23
- package/lib/ColumnChooserView_combined.d.ts +4 -4
- package/lib/ColumnFilterCondition_combined.d.ts +113 -113
- package/lib/ColumnGroupingView_combined.d.ts +2 -2
- package/lib/ColumnPinningView_combined.d.ts +4 -4
- package/lib/DataGridCellLayoutPanel.d.ts +3 -3
- package/lib/DataGridToolbarView_combined.d.ts +5 -5
- package/lib/EditorCell.d.ts +8 -8
- package/lib/FilterCell.d.ts +12 -12
- package/package.json +4 -4
- package/public_api.d.ts +20 -20
|
@@ -15,7 +15,7 @@ import { ICellActionManager } from "./ICellActionManager";
|
|
|
15
15
|
*/
|
|
16
16
|
export declare class CanvasGridCellBase extends Base implements INativeCell {
|
|
17
17
|
static $t: Type;
|
|
18
|
-
private
|
|
18
|
+
private b;
|
|
19
19
|
private s;
|
|
20
20
|
private o;
|
|
21
21
|
protected get aa(): boolean;
|
|
@@ -116,9 +116,9 @@ export declare class CanvasGridCellBase extends Base implements INativeCell {
|
|
|
116
116
|
private cz;
|
|
117
117
|
private m;
|
|
118
118
|
cd(a: Color): void;
|
|
119
|
-
private
|
|
120
|
-
private
|
|
121
|
-
private
|
|
119
|
+
private a;
|
|
120
|
+
private d;
|
|
121
|
+
private f;
|
|
122
122
|
private bz;
|
|
123
123
|
cj(a: number): void;
|
|
124
124
|
private r;
|
|
@@ -141,8 +141,8 @@ export declare class CanvasGridCellBase extends Base implements INativeCell {
|
|
|
141
141
|
private n;
|
|
142
142
|
private bp;
|
|
143
143
|
private static bs;
|
|
144
|
-
private
|
|
145
|
-
protected get
|
|
144
|
+
private c;
|
|
145
|
+
protected get e(): CellContentHorizontalAlignment;
|
|
146
146
|
ci(a: CellContentHorizontalAlignment): void;
|
|
147
147
|
private ar;
|
|
148
148
|
private h;
|
|
@@ -150,7 +150,7 @@ export declare class CanvasGridCellBase extends Base implements INativeCell {
|
|
|
150
150
|
private cw;
|
|
151
151
|
private ap;
|
|
152
152
|
protected bk(a: TextBlock, b: string, c: number, d: RenderingContext): number;
|
|
153
|
-
private
|
|
153
|
+
private g;
|
|
154
154
|
cq(a: CellContentVerticalAlignment): void;
|
|
155
155
|
protected ag(a: ICellActionManager): boolean;
|
|
156
156
|
private static bq;
|
|
@@ -9,8 +9,8 @@ import { Type } from "igniteui-webcomponents-core";
|
|
|
9
9
|
*/
|
|
10
10
|
export declare class CanvasTemplateCellPresenter extends CanvasCellPresenterBase {
|
|
11
11
|
static $t: Type;
|
|
12
|
-
private
|
|
12
|
+
private e;
|
|
13
13
|
constructor(a: CanvasGridCellBase, b: DataGrid);
|
|
14
|
-
get
|
|
14
|
+
get d(): CanvasTemplateCell;
|
|
15
15
|
protected b(a: CellModel): void;
|
|
16
16
|
}
|
|
@@ -9,8 +9,8 @@ import { Type } from "igniteui-webcomponents-core";
|
|
|
9
9
|
*/
|
|
10
10
|
export declare class CanvasTemplateHeaderCellPresenter extends CanvasCellPresenterBase {
|
|
11
11
|
static $t: Type;
|
|
12
|
-
private
|
|
13
|
-
get
|
|
12
|
+
private e;
|
|
13
|
+
get d(): CanvasTemplateHeaderCell;
|
|
14
14
|
constructor(a: CanvasGridCellBase, b: DataGrid);
|
|
15
15
|
protected b(a: CellModel): void;
|
|
16
16
|
}
|
|
@@ -64,8 +64,8 @@ export declare class CheckboxListView extends Base {
|
|
|
64
64
|
export declare class CheckboxList extends Base implements INotifyPropertyChanged {
|
|
65
65
|
static $t: Type;
|
|
66
66
|
m: CheckboxListView;
|
|
67
|
-
|
|
68
|
-
private
|
|
67
|
+
f: DataGrid;
|
|
68
|
+
private j;
|
|
69
69
|
private ad;
|
|
70
70
|
private d;
|
|
71
71
|
private ak;
|
|
@@ -82,11 +82,11 @@ export declare class CheckboxList extends Base implements INotifyPropertyChanged
|
|
|
82
82
|
private get e();
|
|
83
83
|
private ai;
|
|
84
84
|
private get aj();
|
|
85
|
-
private
|
|
86
|
-
get
|
|
85
|
+
private g;
|
|
86
|
+
get h(): GridSelectedKeysCollection;
|
|
87
87
|
private a;
|
|
88
|
-
get
|
|
89
|
-
set
|
|
88
|
+
get primaryKey(): string[];
|
|
89
|
+
set primaryKey(a: string[]);
|
|
90
90
|
propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
|
|
91
91
|
constructor();
|
|
92
92
|
private cv;
|
|
@@ -108,11 +108,11 @@ export declare class CheckboxList extends Base implements INotifyPropertyChanged
|
|
|
108
108
|
get itemsSource(): any;
|
|
109
109
|
set itemsSource(a: any);
|
|
110
110
|
private a2;
|
|
111
|
-
get
|
|
112
|
-
set
|
|
111
|
+
get dataMemberPath(): string;
|
|
112
|
+
set dataMemberPath(a: string);
|
|
113
113
|
private a4;
|
|
114
|
-
get
|
|
115
|
-
set
|
|
114
|
+
get selectedMemberPath(): string;
|
|
115
|
+
set selectedMemberPath(a: string);
|
|
116
116
|
private a3;
|
|
117
117
|
get bi(): string;
|
|
118
118
|
set bi(a: string);
|
|
@@ -133,17 +133,17 @@ export declare class CheckboxList extends Base implements INotifyPropertyChanged
|
|
|
133
133
|
get aa(): BaseControlTheme;
|
|
134
134
|
set aa(a: BaseControlTheme);
|
|
135
135
|
private ab;
|
|
136
|
-
get
|
|
137
|
-
set
|
|
136
|
+
get density(): ControlDisplayDensity;
|
|
137
|
+
set density(a: ControlDisplayDensity);
|
|
138
138
|
private di;
|
|
139
|
-
get
|
|
140
|
-
set
|
|
139
|
+
get searchIconColor(): Brush;
|
|
140
|
+
set searchIconColor(a: Brush);
|
|
141
141
|
private dg;
|
|
142
142
|
get dz(): Brush;
|
|
143
143
|
set dz(a: Brush);
|
|
144
144
|
private dj;
|
|
145
|
-
get
|
|
146
|
-
set
|
|
145
|
+
get searchTextColor(): Brush;
|
|
146
|
+
set searchTextColor(a: Brush);
|
|
147
147
|
private dh;
|
|
148
148
|
get d0(): Brush;
|
|
149
149
|
set d0(a: Brush);
|
|
@@ -182,7 +182,7 @@ export declare class CheckboxList extends Base implements INotifyPropertyChanged
|
|
|
182
182
|
provideHrElement(a: any): void;
|
|
183
183
|
co(): void;
|
|
184
184
|
private cg;
|
|
185
|
-
private
|
|
185
|
+
private i;
|
|
186
186
|
c0(a: number): void;
|
|
187
187
|
b8(a: number): void;
|
|
188
188
|
c2(): void;
|
|
@@ -205,16 +205,16 @@ export declare class CheckboxList extends Base implements INotifyPropertyChanged
|
|
|
205
205
|
set dm(a: Brush);
|
|
206
206
|
get aq(): boolean;
|
|
207
207
|
private at;
|
|
208
|
-
get
|
|
209
|
-
set
|
|
208
|
+
get showSelectAll(): boolean;
|
|
209
|
+
set showSelectAll(a: boolean);
|
|
210
210
|
static du: Brush;
|
|
211
211
|
private c8;
|
|
212
|
-
get
|
|
213
|
-
set
|
|
212
|
+
get backgroundColor(): Brush;
|
|
213
|
+
set backgroundColor(a: Brush);
|
|
214
214
|
static dv: Brush;
|
|
215
215
|
private de;
|
|
216
|
-
get
|
|
217
|
-
set
|
|
216
|
+
get rowHoverBackgroundColor(): Brush;
|
|
217
|
+
set rowHoverBackgroundColor(a: Brush);
|
|
218
218
|
static dw: Brush;
|
|
219
219
|
private dl;
|
|
220
220
|
get d5(): Brush;
|
|
@@ -32,7 +32,7 @@ export declare class ColumnChooserView extends Base {
|
|
|
32
32
|
*/
|
|
33
33
|
export declare class ColumnChooser extends Base implements INotifyPropertyChanged {
|
|
34
34
|
static $t: Type;
|
|
35
|
-
private
|
|
35
|
+
private a;
|
|
36
36
|
private d;
|
|
37
37
|
propertyChanged: (sender: any, e: PropertyChangedEventArgs) => void;
|
|
38
38
|
private m;
|
|
@@ -42,9 +42,9 @@ export declare class ColumnChooser extends Base implements INotifyPropertyChange
|
|
|
42
42
|
provideContainer(a: DomRenderer, b: CheckboxList): void;
|
|
43
43
|
private k;
|
|
44
44
|
private get l();
|
|
45
|
-
private
|
|
46
|
-
get
|
|
47
|
-
set
|
|
45
|
+
private b;
|
|
46
|
+
get c(): DataGrid;
|
|
47
|
+
set c(a: DataGrid);
|
|
48
48
|
private o;
|
|
49
49
|
get v(): string;
|
|
50
50
|
set v(a: string);
|