@yusr_systems/ui 2.2.10 → 2.4.0
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/dist/index.d.ts +10 -0
- package/dist/yusr-ui.js +632 -610
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1310,6 +1310,16 @@ export declare const useTheme: () => ThemeProviderState;
|
|
|
1310
1310
|
|
|
1311
1311
|
export declare function YusrBusBackground(): JSX.Element;
|
|
1312
1312
|
|
|
1313
|
+
export declare function YusrSideBarMainMenu({ items, LinkComponent, }: {
|
|
1314
|
+
items: {
|
|
1315
|
+
title: string;
|
|
1316
|
+
url: string;
|
|
1317
|
+
icon?: React.ReactNode;
|
|
1318
|
+
hasAuth: boolean;
|
|
1319
|
+
}[];
|
|
1320
|
+
LinkComponent?: React.ElementType;
|
|
1321
|
+
}): JSX.Element;
|
|
1322
|
+
|
|
1313
1323
|
export declare function ZoomableImage({ srcLight, srcDark, alt, className, wrapperClassName, onOpen }: ZoomableImageProps): JSX.Element;
|
|
1314
1324
|
|
|
1315
1325
|
declare interface ZoomableImageProps {
|