randmarcomps 1.45.0 → 1.46.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/randmarcomps.d.ts +4 -2
- package/dist/randmarcomps.js +418 -415
- package/dist/randmarcomps.umd.cjs +6 -6
- package/dist/style.css +4 -2
- package/package.json +1 -1
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -79,10 +79,11 @@ export declare function InputOTPSlot({ index, className, ...props }: React_2.Com
|
|
|
79
79
|
index: number;
|
|
80
80
|
}): JSX.Element;
|
|
81
81
|
|
|
82
|
-
export declare function Layout({ children, routes, footer, searchResultsRouteName, dashboardTitle, onSignOut, }: LayoutProps): JSX.Element;
|
|
82
|
+
export declare function Layout({ children, rightMenu, routes, footer, searchResultsRouteName, dashboardTitle, onSignOut, }: LayoutProps): JSX.Element;
|
|
83
83
|
|
|
84
84
|
declare interface LayoutProps {
|
|
85
85
|
children: React.ReactNode;
|
|
86
|
+
rightMenu?: React.ReactNode;
|
|
86
87
|
footer: React.ReactNode;
|
|
87
88
|
routes: NavRoute[];
|
|
88
89
|
searchResultsRouteName: string;
|
|
@@ -283,10 +284,11 @@ export declare const TooltipProvider: React_2.FC<TooltipPrimitive.TooltipProvide
|
|
|
283
284
|
|
|
284
285
|
export declare const TooltipTrigger: React_2.ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & React_2.RefAttributes<HTMLButtonElement>>;
|
|
285
286
|
|
|
286
|
-
export declare function Topbar({ onSignOut, searchResultsRouteName }: TopbarProps): JSX.Element;
|
|
287
|
+
export declare function Topbar({ onSignOut, searchResultsRouteName, rightMenu }: TopbarProps): JSX.Element;
|
|
287
288
|
|
|
288
289
|
declare interface TopbarProps {
|
|
289
290
|
onSignOut?: () => void;
|
|
291
|
+
rightMenu?: React.ReactNode;
|
|
290
292
|
searchResultsRouteName: string;
|
|
291
293
|
}
|
|
292
294
|
|