@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wolkabout/commons",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "21.2.0",
6
6
  "@angular/common": "21.2.0",
@@ -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
  */