randmarcomps 1.32.0 → 1.34.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 +3 -3
- package/dist/randmarcomps.js +475 -475
- package/dist/randmarcomps.umd.cjs +8 -8
- package/package.json +1 -1
package/dist/randmarcomps.d.ts
CHANGED
|
@@ -49,9 +49,9 @@ declare interface LayoutProps {
|
|
|
49
49
|
children: React.ReactNode;
|
|
50
50
|
footer: React.ReactNode;
|
|
51
51
|
routes: NavRoute[];
|
|
52
|
-
searchResultsRouteName
|
|
52
|
+
searchResultsRouteName: string;
|
|
53
53
|
dashboardTitle?: string;
|
|
54
|
-
onSignOut
|
|
54
|
+
onSignOut?: () => void;
|
|
55
55
|
}
|
|
56
56
|
|
|
57
57
|
export declare function Navbar({ routes, footer, dashboardTitle }: NavbarProps): JSX.Element;
|
|
@@ -241,7 +241,7 @@ export declare const TooltipTrigger: React_2.ForwardRefExoticComponent<TooltipPr
|
|
|
241
241
|
export declare function Topbar({ onSignOut, searchResultsRouteName }: TopbarProps): JSX.Element;
|
|
242
242
|
|
|
243
243
|
declare interface TopbarProps {
|
|
244
|
-
onSignOut
|
|
244
|
+
onSignOut?: () => void;
|
|
245
245
|
searchResultsRouteName: string;
|
|
246
246
|
}
|
|
247
247
|
|