@wolkabout/commons 0.0.59 → 0.0.60

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.0.59",
3
+ "version": "0.0.60",
4
4
  "peerDependencies": {
5
5
  "@angular/cdk": "21.2.0",
6
6
  "@angular/common": "21.2.0",
@@ -1097,8 +1097,8 @@ declare class PdfViewerComponent {
1097
1097
  interface StandardListItem<ItemType> {
1098
1098
  id: string;
1099
1099
  name: string;
1100
- icon: string | LoadedIcon | SvgIcon;
1101
- rightIcon?: string | LoadedIcon | SvgIcon;
1100
+ icon: string | number | LoadedIcon | SvgIcon;
1101
+ rightIcon?: string | number | LoadedIcon | SvgIcon;
1102
1102
  data: ItemType;
1103
1103
  }
1104
1104
  declare abstract class StandardListDataSource<ItemType> {