@sd-angular/core 1.3.184 → 1.3.186
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 +18 -3
- package/bundles/sd-angular-core-grid-material.umd.js.map +1 -1
- package/bundles/sd-angular-core-grid-material.umd.min.js +2 -2
- package/bundles/sd-angular-core-grid-material.umd.min.js.map +1 -1
- package/esm2015/grid-material/src/lib/components/desktop-cell/desktop-cell.component.js +16 -5
- package/fesm2015/sd-angular-core-grid-material.js +15 -4
- 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/components/desktop-cell/desktop-cell.component.d.ts +5 -1
- package/package.json +1 -1
- package/{sd-angular-core-1.3.184.tgz → sd-angular-core-1.3.186.tgz} +0 -0
|
@@ -1,16 +1,20 @@
|
|
|
1
|
+
import { ElementRef, Renderer2 } from '@angular/core';
|
|
1
2
|
import { SdMaterialCellDefDirective } from '../../directives/sd-material-cell-def.directive';
|
|
2
3
|
import { SdGridMaterialColumn } from '../../models/grid-column.model';
|
|
3
4
|
import { SdGridMaterialOption } from '../../models/grid-option.model';
|
|
4
5
|
export declare class SdDesktopCell {
|
|
6
|
+
private elementRef;
|
|
7
|
+
private renderer;
|
|
5
8
|
sdId: string;
|
|
6
9
|
value: any;
|
|
7
10
|
key: string;
|
|
8
11
|
column: SdGridMaterialColumn;
|
|
12
|
+
set _column(column: SdGridMaterialColumn);
|
|
9
13
|
item: any;
|
|
10
14
|
gridOption: SdGridMaterialOption;
|
|
11
15
|
cellDef: {
|
|
12
16
|
[column: string]: SdMaterialCellDefDirective;
|
|
13
17
|
};
|
|
14
18
|
idx: number;
|
|
15
|
-
constructor();
|
|
19
|
+
constructor(elementRef: ElementRef, renderer: Renderer2);
|
|
16
20
|
}
|
package/package.json
CHANGED
|
index f7f184e..c47d916 100644
|
|
|
Binary file
|