@gardenfi/garden-book 0.2.3-beta.2 → 0.2.3-beta.3
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/animations/StackText/StackText.d.ts +10 -0
- package/dist/animations/StackText/StackText.stories.d.ts +7 -0
- package/dist/animations/index.d.ts +2 -1
- package/dist/components/atoms/{Logo/GardenIconOutline.d.ts → Icons/EncryptedIcon.d.ts} +1 -1
- package/dist/components/atoms/Icons/Rotate360Icon.d.ts +5 -0
- package/dist/components/atoms/{Logo/NFTIcon.d.ts → Icons/RoutingIcon.d.ts} +1 -1
- package/dist/components/atoms/Icons/index.d.ts +3 -0
- package/dist/components/atoms/Logo/index.d.ts +0 -2
- package/dist/components/organisms/Footer/Footer.d.ts +2 -0
- package/dist/components/organisms/Footer/Footer.stories.d.ts +2 -0
- package/dist/components/organisms/Footer/FooterBackgroundAnimation.d.ts +7 -0
- package/dist/components/organisms/Footer/FooterLink.d.ts +19 -0
- package/dist/style.css +1 -1
- package/dist/ui.cjs.js +17 -9
- package/dist/ui.es.js +4410 -3715
- package/dist/ui.umd.js +17 -9
- package/package.json +9 -8
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
type StackTextProps = {
|
|
2
|
+
value: string;
|
|
3
|
+
isHovered?: boolean;
|
|
4
|
+
};
|
|
5
|
+
export type StackTextRef = {
|
|
6
|
+
startAnimation: () => void;
|
|
7
|
+
stopAnimation: () => void;
|
|
8
|
+
};
|
|
9
|
+
export declare const StackText: import('react').ForwardRefExoticComponent<StackTextProps & import('react').RefAttributes<StackTextRef>>;
|
|
10
|
+
export {};
|
|
@@ -72,3 +72,6 @@ export { XSolidIcon } from './XSolidIcon';
|
|
|
72
72
|
export { XIcon } from './XIcon';
|
|
73
73
|
export { ZellicIcon } from './ZellicIcon';
|
|
74
74
|
export { SearchIconThin } from './SearchIconThin';
|
|
75
|
+
export { Rotate360Icon } from './Rotate360Icon';
|
|
76
|
+
export { EncryptedIcon } from './EncryptedIcon';
|
|
77
|
+
export { RoutingIcon } from './RoutingIcon';
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
type FooterBackgroundAnimationProps = {
|
|
2
|
+
isMobile: boolean;
|
|
3
|
+
isLogoHovered: boolean;
|
|
4
|
+
maskUrl?: string;
|
|
5
|
+
};
|
|
6
|
+
export declare const FooterBackgroundAnimation: ({ isMobile, isLogoHovered, maskUrl, }: FooterBackgroundAnimationProps) => import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
export {};
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
type FooterLink = {
|
|
2
|
+
title: string;
|
|
3
|
+
link: string | undefined;
|
|
4
|
+
isExternal: boolean;
|
|
5
|
+
chain?: string;
|
|
6
|
+
};
|
|
7
|
+
type FooterLinksProps = {
|
|
8
|
+
title: string;
|
|
9
|
+
links: Record<string, FooterLink>;
|
|
10
|
+
hoveredIndex?: number | null;
|
|
11
|
+
onHover?: (index: number | null) => void;
|
|
12
|
+
className?: string;
|
|
13
|
+
listClassName?: string;
|
|
14
|
+
isRoutes?: boolean;
|
|
15
|
+
isHomepage?: boolean;
|
|
16
|
+
navigate?: (path: string) => void;
|
|
17
|
+
};
|
|
18
|
+
export declare const FooterLinks: React.FC<FooterLinksProps>;
|
|
19
|
+
export {};
|