@sd-angular/core 0.0.1021 → 0.0.1025
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-autocomplete.umd.js +1 -1
- package/bundles/sd-angular-core-autocomplete.umd.js.map +1 -1
- package/bundles/sd-angular-core-autocomplete.umd.min.js +1 -1
- package/bundles/sd-angular-core-autocomplete.umd.min.js.map +1 -1
- package/bundles/sd-angular-core-common.umd.js +4 -4
- package/bundles/sd-angular-core-common.umd.js.map +1 -1
- package/bundles/sd-angular-core-common.umd.min.js +1 -1
- package/bundles/sd-angular-core-common.umd.min.js.map +1 -1
- package/bundles/sd-angular-core-grid-material.umd.js +16 -2
- 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/common/src/lib/typings/array.extension.d.ts +2 -2
- package/esm2015/autocomplete/src/lib/autocomplete.component.js +2 -2
- package/esm2015/common/src/lib/typings/array.extension.js +5 -5
- package/esm2015/grid-material/src/lib/grid-material.component.js +17 -3
- package/fesm2015/sd-angular-core-autocomplete.js +1 -1
- package/fesm2015/sd-angular-core-autocomplete.js.map +1 -1
- package/fesm2015/sd-angular-core-common.js +4 -4
- package/fesm2015/sd-angular-core-common.js.map +1 -1
- package/fesm2015/sd-angular-core-grid-material.js +16 -2
- 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/grid-material.component.d.ts +3 -0
- package/package.json +1 -1
- package/{sd-angular-core-0.0.1021.tgz → sd-angular-core-0.0.1025.tgz} +0 -0
|
@@ -91,6 +91,9 @@ export declare class SdGridMaterial<T = any> implements OnInit, AfterViewInit, O
|
|
|
91
91
|
onSave: (item: SdGridMaterialItem<T>) => Promise<void>;
|
|
92
92
|
onCancel: (item: SdGridMaterialItem<T>) => void;
|
|
93
93
|
onRemove: (item: SdGridMaterialItem<T>) => void;
|
|
94
|
+
add: (idx: number, item: T) => void;
|
|
95
|
+
update: (idx: number, item: T) => void;
|
|
96
|
+
remove: (idx: number) => void;
|
|
94
97
|
get editedItems(): (T & {
|
|
95
98
|
editorErrorMessage: string;
|
|
96
99
|
})[];
|
package/package.json
CHANGED
|
index 743723d..d082b4d 100644
|
|
|
Binary file
|