@wolkabout/commons 0.2.4 → 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.4",
3
+ "version": "0.2.5",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "21.2.0",
6
6
  "@angular/common": "21.2.0",
@@ -1016,6 +1016,7 @@ interface NestedListItem<ItemType> {
1016
1016
  rightNumber?: number;
1017
1017
  isRoot: boolean;
1018
1018
  bulkSelectDisabled?: boolean;
1019
+ bulkSelectDisabledTooltip?: string;
1019
1020
  data: ItemType;
1020
1021
  }
1021
1022
  declare abstract class NestedListDataSource<ItemType> {
@@ -1108,6 +1109,7 @@ interface StandardListItem<ItemType> {
1108
1109
  icon: string | number | LoadedIcon | SvgIcon;
1109
1110
  rightIcon?: string | number | LoadedIcon | SvgIcon;
1110
1111
  bulkSelectDisabled?: boolean;
1112
+ bulkSelectDisabledTooltip?: string;
1111
1113
  data: ItemType;
1112
1114
  }
1113
1115
  declare abstract class StandardListDataSource<ItemType> {