@sd-angular/core 1.0.48 → 1.0.51
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 +5 -5
- 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/components/desktop-cell-view/desktop-cell-view.component.js +2 -2
- package/esm2015/grid-material/src/lib/grid-material.component.js +3 -3
- package/esm2015/grid-material/src/lib/models/grid-group.model.js +2 -0
- package/esm2015/grid-material/src/lib/models/grid-option.model.js +1 -1
- package/esm2015/grid-material/src/lib/pipes/cell-view.pipe.js +3 -3
- package/fesm2015/sd-angular-core-grid-material.js +5 -5
- package/fesm2015/sd-angular-core-grid-material.js.map +1 -1
- package/grid-material/sd-angular-core-grid-material.metadata.json +1 -1
- package/grid-material/src/lib/models/grid-group.model.d.ts +4 -0
- package/grid-material/src/lib/models/grid-option.model.d.ts +2 -0
- package/package.json +1 -1
- package/{sd-angular-core-1.0.48.tgz → sd-angular-core-1.0.51.tgz} +0 -0
|
@@ -9,6 +9,7 @@ import { SdGridMaterialSelection } from './grid-selection.model';
|
|
|
9
9
|
import { Observable } from 'rxjs';
|
|
10
10
|
import { SdEditor } from './grid-editor.model';
|
|
11
11
|
import { SdGridMaterialStyle } from './grid-style.model';
|
|
12
|
+
import { SdGridMaterialGroup } from './grid-group.model';
|
|
12
13
|
export declare type SdGridMaterialOption<T = any> = SdGridMaterialLocalOption<T> | SdGridMaterialServerOption<T>;
|
|
13
14
|
interface SdGridMaterialBaseOption<T = any> {
|
|
14
15
|
shadow?: boolean;
|
|
@@ -32,6 +33,7 @@ interface SdGridMaterialBaseOption<T = any> {
|
|
|
32
33
|
commands?: SdGridMaterialCommand<T>[];
|
|
33
34
|
columns: SdGridMaterialColumn<T>[];
|
|
34
35
|
subInformation?: SdGridMaterialSubInformation<T>;
|
|
36
|
+
group?: SdGridMaterialGroup<T>;
|
|
35
37
|
style?: SdGridMaterialStyle<T>;
|
|
36
38
|
displayOnEmpty?: boolean | ((rowData: T, column?: SdGridMaterialColumn<T>) => string);
|
|
37
39
|
}
|
package/package.json
CHANGED
|
index d3b3486..b3034a0 100644
|
|
|
Binary file
|