@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.
@@ -0,0 +1,4 @@
1
+ export interface SdGridMaterialGroup<T = any> {
2
+ fields: string[];
3
+ htmlTemplate: (rowDatas: T[]) => string;
4
+ }
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sd-angular/core",
3
- "version": "1.0.48",
3
+ "version": "1.0.51",
4
4
  "homepage": "https://www.facebook.com/DarkP3ter",
5
5
  "author": {
6
6
  "name": "darkpeter",
index d3b3486..b3034a0 100644
Binary file