@wolkabout/commons 0.2.3 → 0.2.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.2.3",
3
+ "version": "0.2.4",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "21.2.0",
6
6
  "@angular/common": "21.2.0",
@@ -1015,6 +1015,7 @@ interface NestedListItem<ItemType> {
1015
1015
  icon: string | LoadedIcon | SvgIcon;
1016
1016
  rightNumber?: number;
1017
1017
  isRoot: boolean;
1018
+ bulkSelectDisabled?: boolean;
1018
1019
  data: ItemType;
1019
1020
  }
1020
1021
  declare abstract class NestedListDataSource<ItemType> {
@@ -1106,6 +1107,7 @@ interface StandardListItem<ItemType> {
1106
1107
  name: string;
1107
1108
  icon: string | number | LoadedIcon | SvgIcon;
1108
1109
  rightIcon?: string | number | LoadedIcon | SvgIcon;
1110
+ bulkSelectDisabled?: boolean;
1109
1111
  data: ItemType;
1110
1112
  }
1111
1113
  declare abstract class StandardListDataSource<ItemType> {
@@ -1173,6 +1175,7 @@ declare class NestedListViewComponent<ItemType> {
1173
1175
  dragging: _angular_core.OutputEmitterRef<boolean>;
1174
1176
  children: _angular_core.WritableSignal<NestedListItem<ItemType>[]>;
1175
1177
  filteredChildren: _angular_core.Signal<NestedListItem<ItemType>[]>;
1178
+ allSelectableItems: _angular_core.Signal<NestedListItem<ItemType>[]>;
1176
1179
  itemSelected: _angular_core.OutputEmitterRef<ItemType | null>;
1177
1180
  itemsSelected: _angular_core.OutputEmitterRef<ItemType[]>;
1178
1181
  private countsMap;
@@ -1269,6 +1272,7 @@ declare class StandardListViewComponent<ItemType> {
1269
1272
  searchTerm: _angular_core.Signal<string | null | undefined>;
1270
1273
  items: _angular_core.WritableSignal<StandardListItem<ItemType>[]>;
1271
1274
  filteredItems: _angular_core.Signal<StandardListItem<ItemType>[]>;
1275
+ allSelectableItems: _angular_core.Signal<StandardListItem<ItemType>[]>;
1272
1276
  itemSelected: _angular_core.OutputEmitterRef<ItemType | null>;
1273
1277
  itemsSelected: _angular_core.OutputEmitterRef<ItemType[]>;
1274
1278
  itemTemplate: _angular_core.Signal<TemplateRef<any> | undefined>;