@cuby-ui/icons 0.0.549 → 0.0.551

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.
@@ -1,4 +1,4 @@
1
- export declare const CUI_ICONS: {
1
+ declare const CUI_ICONS_REGISTRY: {
2
2
  cuiIconLock2: string;
3
3
  cuiIconClipboardListBold: string;
4
4
  cuiIconClipboardCompletedBold: string;
@@ -269,3 +269,8 @@ export declare const CUI_ICONS: {
269
269
  cuiIconCombinedConveyor: string;
270
270
  cuiIconCombined: string;
271
271
  };
272
+ type CuiIconsTypedMap = {
273
+ readonly [K in keyof typeof CUI_ICONS_REGISTRY]: K;
274
+ };
275
+ export declare const CUI_ICONS: CuiIconsTypedMap;
276
+ export {};