@gardenfi/garden-book 0.2.3-beta.2 → 0.2.3-beta.4

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.
@@ -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 {};
@@ -0,0 +1,7 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { StackText } from './StackText';
3
+
4
+ declare const meta: Meta<typeof StackText>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof StackText>;
7
+ export declare const Default: Story;
@@ -1,4 +1,5 @@
1
1
  import { ScaleY } from './ScaleY/ScaleY';
2
2
  import { Shine } from './Shine/Shine';
3
+ import { StackText } from './StackText/StackText';
3
4
 
4
- export { ScaleY, Shine };
5
+ export { ScaleY, Shine, StackText };
@@ -0,0 +1,8 @@
1
+ interface ClientOnlyLottieProps {
2
+ animationData: any;
3
+ loop?: boolean;
4
+ autoplay?: boolean;
5
+ style?: React.CSSProperties;
6
+ }
7
+ export declare const ClientOnlyLottie: ({ animationData, loop, autoplay, style, }: ClientOnlyLottieProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -1,5 +1,5 @@
1
1
  import { default as React } from 'react';
2
2
 
3
3
  type SvgProps = React.SVGProps<SVGSVGElement>;
4
- export declare const GardenIconOutline: React.FC<SvgProps>;
4
+ export declare const EncryptedIcon: React.FC<SvgProps>;
5
5
  export {};
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+
3
+ type SvgProps = React.SVGProps<SVGSVGElement>;
4
+ export declare const Rotate360Icon: React.FC<SvgProps>;
5
+ export {};
@@ -1,5 +1,5 @@
1
1
  import { default as React } from 'react';
2
2
 
3
3
  type SvgProps = React.SVGProps<SVGSVGElement>;
4
- export declare const NFTIcon: React.FC<SvgProps>;
4
+ export declare const RoutingIcon: React.FC<SvgProps>;
5
5
  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';
@@ -27,5 +27,3 @@ export { Dodo } from './DODO';
27
27
  export { Vertex } from './Vertex';
28
28
  export { Radiant } from './Radiant';
29
29
  export { GardenIcon } from './GardenIcon';
30
- export { GardenIconOutline } from './GardenIconOutline';
31
- export { NFTIcon } from './NFTIcon';
@@ -2,6 +2,8 @@ import { default as React } from 'react';
2
2
 
3
3
  type FooterProps = React.HTMLAttributes<HTMLDivElement> & {
4
4
  network?: string;
5
+ navigate?: (path: string) => void;
6
+ maskUrl?: string;
5
7
  };
6
8
  export declare const Footer: React.FC<FooterProps>;
7
9
  export {};
@@ -4,6 +4,8 @@ declare const meta: {
4
4
  title: string;
5
5
  component: import('react').FC<import('react').HTMLAttributes<HTMLDivElement> & {
6
6
  network?: string;
7
+ navigate?: (path: string) => void;
8
+ maskUrl?: string;
7
9
  }>;
8
10
  tags: string[];
9
11
  parameters: {
@@ -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 {};
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Custom hook that returns true only on the client side
3
+ * Useful for components that need to avoid SSR hydration issues
4
+ */
5
+ export declare const useClientOnly: () => boolean;