@sd-angular/core 1.0.69 → 1.0.70
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/sd-angular-core-grid-material.umd.js +35 -10
- package/bundles/sd-angular-core-grid-material.umd.js.map +1 -1
- package/bundles/sd-angular-core-grid-material.umd.min.js +1 -1
- package/bundles/sd-angular-core-grid-material.umd.min.js.map +1 -1
- package/esm2015/grid-material/src/lib/models/grid-action.model.js +1 -1
- package/esm2015/grid-material/src/lib/models/grid.model.js +1 -1
- package/esm2015/grid-material/src/lib/pipes/selection-visible.pipe.js +31 -6
- package/fesm2015/sd-angular-core-grid-material.js +30 -5
- package/fesm2015/sd-angular-core-grid-material.js.map +1 -1
- package/grid-material/src/lib/models/grid-action.model.d.ts +2 -0
- package/grid-material/src/lib/models/grid.model.d.ts +1 -0
- package/package.json +1 -1
- package/{sd-angular-core-1.0.69.tgz → sd-angular-core-1.0.70.tgz} +0 -0
|
@@ -7,6 +7,7 @@ export interface SdGridMaterialActionNormal<T = any> {
|
|
|
7
7
|
color?: 'primary' | 'accent' | 'warn' | 'info' | 'success' | 'warning' | 'danger' | 'secondary';
|
|
8
8
|
type?: 'fill' | 'light' | 'outline' | 'link';
|
|
9
9
|
hidden?: boolean | ((rowData?: T) => boolean);
|
|
10
|
+
isGrouped?: boolean;
|
|
10
11
|
click: (selectedItems?: T[]) => void;
|
|
11
12
|
}
|
|
12
13
|
interface SdGridMaterialActionChildren<T = any> {
|
|
@@ -16,6 +17,7 @@ interface SdGridMaterialActionChildren<T = any> {
|
|
|
16
17
|
title?: string;
|
|
17
18
|
color?: 'primary' | 'accent' | 'warn' | 'info' | 'success' | 'warning' | 'danger' | 'secondary';
|
|
18
19
|
type?: 'fill' | 'light' | 'outline' | 'link';
|
|
20
|
+
isGrouped?: boolean;
|
|
19
21
|
children: SdGridMaterialActionNormal<T>[];
|
|
20
22
|
}
|
|
21
23
|
export declare type SdGridMaterialActionSimple<T = any> = SdGridMaterialActionSimpleNormal<T> | SdGridMaterialActionSimpleChildren<T>;
|
package/package.json
CHANGED
|
index c6ca776..307d205 100644
|
|
|
Binary file
|