@wolkabout/commons 0.2.3 → 0.2.5

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