@skyux/grids 10.0.0-alpha.1 → 10.0.0-alpha.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/documentation.json +402 -402
- package/esm2022/lib/modules/grid/grid-adapter.service.mjs +6 -7
- package/esm2022/lib/modules/grid/grid-cell.component.mjs +3 -3
- package/esm2022/lib/modules/grid/grid-column.component.mjs +3 -3
- package/esm2022/lib/modules/grid/grid.component.mjs +11 -12
- package/esm2022/lib/modules/grid/grid.module.mjs +4 -4
- package/esm2022/lib/modules/shared/sky-grids-resources.module.mjs +5 -5
- package/fesm2022/skyux-grids.mjs +29 -31
- package/fesm2022/skyux-grids.mjs.map +1 -1
- package/lib/modules/grid/grid-adapter.service.d.ts +1 -1
- package/lib/modules/grid/grid.component.d.ts +9 -9
- package/package.json +11 -11
|
@@ -30,13 +30,13 @@ export declare class SkyGridComponent implements OnInit, AfterContentInit, After
|
|
|
30
30
|
/**
|
|
31
31
|
* Columns and column properties for the grid.
|
|
32
32
|
*/
|
|
33
|
-
set columns(newColumns:
|
|
34
|
-
get columns():
|
|
33
|
+
set columns(newColumns: SkyGridColumnModel[]);
|
|
34
|
+
get columns(): SkyGridColumnModel[];
|
|
35
35
|
/**
|
|
36
36
|
* The data for the grid. Each item requires an `id` and a property that maps
|
|
37
37
|
* to the `field` or `id` property of each column in the grid.
|
|
38
38
|
*/
|
|
39
|
-
data:
|
|
39
|
+
data: any[];
|
|
40
40
|
/**
|
|
41
41
|
* Whether to enable the multiselect feature to display a column of
|
|
42
42
|
* checkboxes on the left side of the grid. You can specify a unique ID with
|
|
@@ -85,15 +85,15 @@ export declare class SkyGridComponent implements OnInit, AfterContentInit, After
|
|
|
85
85
|
* The columns to display in the grid based on the `id` or `field` properties
|
|
86
86
|
* of the columns. If no columns are specified, then the grid displays all columns.
|
|
87
87
|
*/
|
|
88
|
-
set selectedColumnIds(value:
|
|
89
|
-
get selectedColumnIds():
|
|
88
|
+
set selectedColumnIds(value: string[]);
|
|
89
|
+
get selectedColumnIds(): string[];
|
|
90
90
|
/**
|
|
91
91
|
* The set of IDs for the rows to select in a multiselect grid.
|
|
92
92
|
* The IDs match the `id` properties of the `data` objects.
|
|
93
93
|
* Rows with IDs that are not included are de-selected in the grid.
|
|
94
94
|
*/
|
|
95
|
-
set selectedRowIds(value:
|
|
96
|
-
get selectedRowIds():
|
|
95
|
+
set selectedRowIds(value: string[]);
|
|
96
|
+
get selectedRowIds(): string[];
|
|
97
97
|
/**
|
|
98
98
|
* The unique key for the UI Config Service to retrieve stored settings from a database.
|
|
99
99
|
* The UI Config Service saves configuration settings for users and returns
|
|
@@ -143,11 +143,11 @@ export declare class SkyGridComponent implements OnInit, AfterContentInit, After
|
|
|
143
143
|
sortFieldChange: EventEmitter<ListSortFieldSelectorModel>;
|
|
144
144
|
columnResizeStep: number;
|
|
145
145
|
currentSortField: BehaviorSubject<ListSortFieldSelectorModel>;
|
|
146
|
-
displayedColumns:
|
|
146
|
+
displayedColumns: SkyGridColumnModel[];
|
|
147
147
|
dragulaGroupName: string;
|
|
148
148
|
gridId: number;
|
|
149
149
|
rowDeleteConfigs: SkyGridRowDeleteConfig[];
|
|
150
|
-
items:
|
|
150
|
+
items: any[];
|
|
151
151
|
maxColWidth: number;
|
|
152
152
|
minColWidth: number;
|
|
153
153
|
showResizeBar: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/grids",
|
|
3
|
-
"version": "10.0.0-alpha.
|
|
3
|
+
"version": "10.0.0-alpha.2",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -30,16 +30,16 @@
|
|
|
30
30
|
}
|
|
31
31
|
},
|
|
32
32
|
"peerDependencies": {
|
|
33
|
-
"@angular/common": "^17.1.
|
|
34
|
-
"@angular/core": "^17.1.
|
|
35
|
-
"@angular/forms": "^17.1.
|
|
36
|
-
"@skyux/core": "10.0.0-alpha.
|
|
37
|
-
"@skyux/forms": "10.0.0-alpha.
|
|
38
|
-
"@skyux/i18n": "10.0.0-alpha.
|
|
39
|
-
"@skyux/indicators": "10.0.0-alpha.
|
|
40
|
-
"@skyux/layout": "10.0.0-alpha.
|
|
41
|
-
"@skyux/list-builder-common": "10.0.0-alpha.
|
|
42
|
-
"@skyux/popovers": "10.0.0-alpha.
|
|
33
|
+
"@angular/common": "^17.1.1",
|
|
34
|
+
"@angular/core": "^17.1.1",
|
|
35
|
+
"@angular/forms": "^17.1.1",
|
|
36
|
+
"@skyux/core": "10.0.0-alpha.2",
|
|
37
|
+
"@skyux/forms": "10.0.0-alpha.2",
|
|
38
|
+
"@skyux/i18n": "10.0.0-alpha.2",
|
|
39
|
+
"@skyux/indicators": "10.0.0-alpha.2",
|
|
40
|
+
"@skyux/layout": "10.0.0-alpha.2",
|
|
41
|
+
"@skyux/list-builder-common": "10.0.0-alpha.2",
|
|
42
|
+
"@skyux/popovers": "10.0.0-alpha.2"
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"@types/dragula": "2.1.36",
|