@sd-angular/core 0.0.988 → 0.0.989
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 +7 -7
- 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 +2 -2
- package/esm2015/grid-material/src/lib/models/grid.model.js +1 -1
- package/esm2015/grid-material/src/lib/pipes/editor-handler-column.pipe.js +2 -3
- package/esm2015/grid-material/src/lib/pipes/sd-id.pipe.js +5 -4
- package/esm2015/grid-material/src/lib/pipes/selection-visible-select-all.pipe.js +2 -2
- package/fesm2015/sd-angular-core-grid-material.js +7 -7
- 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.model.d.ts +1 -0
- package/grid-material/src/lib/pipes/editor-handler-column.pipe.d.ts +1 -1
- package/grid-material/src/lib/pipes/sd-id.pipe.d.ts +2 -1
- package/package.json +1 -1
- package/{sd-angular-core-0.0.988.tgz → sd-angular-core-0.0.989.tgz} +0 -0
|
@@ -3,5 +3,5 @@ import { SdGridMaterialColumn } from '../models/grid-column.model';
|
|
|
3
3
|
import { SdItem } from '../models/grid.model';
|
|
4
4
|
export declare class SdEditorHandlerColumnPipe implements PipeTransform {
|
|
5
5
|
#private;
|
|
6
|
-
transform(
|
|
6
|
+
transform(value: boolean, item: SdItem, column: SdGridMaterialColumn): boolean;
|
|
7
7
|
}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { PipeTransform } from '@angular/core';
|
|
2
|
+
import { SdGridMaterialColumn } from '../models/grid-column.model';
|
|
2
3
|
import { SdItem } from '../models/grid.model';
|
|
3
4
|
export declare class SdIdPipe implements PipeTransform {
|
|
4
|
-
transform(value: any, item: SdItem): string;
|
|
5
|
+
transform(value: any, item: SdItem, column: SdGridMaterialColumn): string;
|
|
5
6
|
}
|
package/package.json
CHANGED
|
index 2ce6647..39980bb 100644
|
|
|
Binary file
|