@gardenfi/garden-book 0.1.86 → 0.1.88-beta.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.
@@ -0,0 +1,10 @@
1
+ import { FC, ReactNode } from 'react';
2
+
3
+ type BottomSheetProps = {
4
+ children: ReactNode;
5
+ open: boolean;
6
+ onOpenChange?: (open: boolean) => void;
7
+ dark?: boolean;
8
+ };
9
+ export declare const BottomSheet: FC<BottomSheetProps>;
10
+ export {};
@@ -0,0 +1,7 @@
1
+ import { Meta, StoryObj } from '@storybook/react';
2
+ import { BottomSheet } from './BottomSheet';
3
+
4
+ declare const meta: Meta<typeof BottomSheet>;
5
+ export default meta;
6
+ type Story = StoryObj<typeof meta>;
7
+ export declare const Primary: Story;
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+
3
+ type SvgProps = React.SVGProps<SVGSVGElement>;
4
+ export declare const GasStationIcon: React.FC<SvgProps>;
5
+ export {};
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+
3
+ type SvgProps = React.SVGProps<SVGSVGElement>;
4
+ export declare const SwapHorizontalIcon: React.FC<SvgProps>;
5
+ export {};
@@ -1,5 +1,7 @@
1
1
  import { default as React } from 'react';
2
2
 
3
- type SvgProps = React.SVGProps<SVGSVGElement>;
3
+ type SvgProps = React.SVGProps<SVGSVGElement> & {
4
+ className?: string;
5
+ };
4
6
  export declare const WalletIcon: React.FC<SvgProps>;
5
7
  export {};
@@ -52,3 +52,5 @@ export { RelayLinkIcon } from './RelayLinkIcon';
52
52
  export { ThorswapIcon } from './ThorswapIcon';
53
53
  export { DeleteIcon } from './DeleteIcon';
54
54
  export { WarningIcon } from './WarningIcon';
55
+ export { SwapHorizontalIcon } from './SwapHorizontalIcon';
56
+ export { GasStationIcon } from './GasStationIcon';
@@ -14,7 +14,7 @@ declare const Modal: React.FC<ModalProps> & {
14
14
  };
15
15
  type ChildrenProps = {
16
16
  children: React.ReactNode;
17
- opacityLevel: OpacityProps["level"];
17
+ opacityLevel: OpacityProps['level'];
18
18
  className?: string;
19
19
  };
20
20
  export { Modal };
@@ -1,7 +1,7 @@
1
1
  import { VariantProps } from 'class-variance-authority';
2
2
  import { default as React } from 'react';
3
3
 
4
- export type OpacityVariants = "extra-light" | "light" | "medium" | "semi-dark" | "full";
4
+ export type OpacityVariants = 'extra-light' | 'light' | 'medium' | 'semi-dark' | 'full';
5
5
  declare const OpacityStyles: (props?: ({
6
6
  level?: "extra-light" | "light" | "medium" | "semi-dark" | "full" | null | undefined;
7
7
  } & import('class-variance-authority/types').ClassProp) | undefined) => string;
@@ -3,8 +3,9 @@ import { Typography } from './Typography/Typography';
3
3
  import { Opacity } from './Opacity/Opacity';
4
4
  import { Sidebar } from './Sidebar/Sidebar';
5
5
  import { Modal } from './Modal/Modal';
6
+ import { BottomSheet } from './BottomSheet/BottomSheet';
6
7
  export type { OpacityVariants } from './Opacity/Opacity';
7
8
  export * from './Icons';
8
9
  export * from './Logo';
9
10
  export { CheckBox } from './Checkbox/Checkbox';
10
- export { Button, Typography, Sidebar, Opacity, Modal };
11
+ export { Button, Typography, Sidebar, Opacity, Modal, BottomSheet };