@wolkabout/commons 0.3.3 → 0.3.4
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/README.md +17 -17
- package/fesm2022/wolkabout-commons.mjs +109 -102
- package/fesm2022/wolkabout-commons.mjs.map +1 -1
- package/package.json +1 -1
- package/types/wolkabout-commons.d.ts +2 -2
package/package.json
CHANGED
|
@@ -1066,7 +1066,7 @@ declare class NestedListDataControl<ItemType> {
|
|
|
1066
1066
|
readonly deselectItem: () => void;
|
|
1067
1067
|
readonly updateItem: (item: ItemType) => void;
|
|
1068
1068
|
readonly addItem: (item: ItemType) => void;
|
|
1069
|
-
readonly removeItem: (id: string) => void;
|
|
1069
|
+
readonly removeItem: (id: string | string[]) => void;
|
|
1070
1070
|
readonly associatedItemAdded: (scopeGuid: string) => void;
|
|
1071
1071
|
readonly associatedItemRemoved: (scopeGuid: string) => void;
|
|
1072
1072
|
readonly associatedItemScopeChanged: (fromGuid: string, toGuid: string) => void;
|
|
@@ -1085,7 +1085,7 @@ declare class NestedListDataControl<ItemType> {
|
|
|
1085
1085
|
/**
|
|
1086
1086
|
* Internal event hook. Do not use outside the Nested List Component
|
|
1087
1087
|
*/
|
|
1088
|
-
get itemRemoved$(): Observable<string>;
|
|
1088
|
+
get itemRemoved$(): Observable<string[]>;
|
|
1089
1089
|
/**
|
|
1090
1090
|
* Internal event hook. Do not use outside the Nested List Component
|
|
1091
1091
|
*/
|