@skyux/grids 6.0.0-beta.7 → 6.0.0
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 +2 -2
- package/esm2020/lib/modules/grid/grid-cell.component.mjs +1 -1
- package/esm2020/lib/modules/grid/grid-column.component.mjs +1 -1
- package/esm2020/lib/modules/grid/grid-column.model.mjs +1 -1
- package/esm2020/lib/modules/grid/grid.component.mjs +1 -1
- package/fesm2015/skyux-grids.mjs.map +1 -1
- package/fesm2020/skyux-grids.mjs.map +1 -1
- package/lib/modules/grid/grid-column.component.d.ts +2 -2
- package/lib/modules/grid/grid-column.model.d.ts +2 -2
- package/package.json +8 -8
|
@@ -5,7 +5,7 @@ import { SkyGridColumnAlignment } from './types/grid-column-alignment';
|
|
|
5
5
|
* @deprecated `SkyGridComponent` and its features are deprecated. We recommend using the data grid instead. For more information, see https://developer.blackbaud.com/skyux/components/data-grid
|
|
6
6
|
*/
|
|
7
7
|
export declare class SkyGridColumnModel {
|
|
8
|
-
template: TemplateRef<
|
|
8
|
+
template: TemplateRef<unknown>;
|
|
9
9
|
id: string;
|
|
10
10
|
field: string;
|
|
11
11
|
heading: string;
|
|
@@ -22,5 +22,5 @@ export declare class SkyGridColumnModel {
|
|
|
22
22
|
*/
|
|
23
23
|
alignment: SkyGridColumnAlignment;
|
|
24
24
|
searchFunction: (data: any, searchText: string) => boolean;
|
|
25
|
-
constructor(template: TemplateRef<
|
|
25
|
+
constructor(template: TemplateRef<unknown>, data?: any);
|
|
26
26
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@skyux/grids",
|
|
3
|
-
"version": "6.0.0
|
|
3
|
+
"version": "6.0.0",
|
|
4
4
|
"author": "Blackbaud, Inc.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blackbaud",
|
|
@@ -35,13 +35,13 @@
|
|
|
35
35
|
"@angular/common": "^13.3.2",
|
|
36
36
|
"@angular/core": "^13.3.2",
|
|
37
37
|
"@angular/forms": "^13.3.2",
|
|
38
|
-
"@skyux/core": "6.0.0
|
|
39
|
-
"@skyux/forms": "6.0.0
|
|
40
|
-
"@skyux/i18n": "6.0.0
|
|
41
|
-
"@skyux/indicators": "6.0.0
|
|
42
|
-
"@skyux/layout": "6.0.0
|
|
43
|
-
"@skyux/list-builder-common": "6.0.0
|
|
44
|
-
"@skyux/popovers": "6.0.0
|
|
38
|
+
"@skyux/core": "6.0.0",
|
|
39
|
+
"@skyux/forms": "6.0.0",
|
|
40
|
+
"@skyux/i18n": "6.0.0",
|
|
41
|
+
"@skyux/indicators": "6.0.0",
|
|
42
|
+
"@skyux/layout": "6.0.0",
|
|
43
|
+
"@skyux/list-builder-common": "6.0.0",
|
|
44
|
+
"@skyux/popovers": "6.0.0"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"dragula": "3.7.3",
|