@gardenfi/garden-book 0.2.6 → 0.2.8

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.
@@ -4,10 +4,17 @@ type BreakpointVariants = "xs" | "sm" | "md" | "lg" | "xl";
4
4
  type Breakpoints = {
5
5
  [K in BreakpointVariants]?: SizeVariants;
6
6
  };
7
+ type ButtonColors = {
8
+ primary?: string;
9
+ secondary?: string;
10
+ ternary?: string;
11
+ disabled?: string;
12
+ };
7
13
  export declare const Button: import('react').ForwardRefExoticComponent<import('react').ButtonHTMLAttributes<HTMLButtonElement> & {
8
14
  variant?: Variants;
9
15
  size?: SizeVariants;
10
16
  breakpoints?: Breakpoints;
11
17
  loading?: boolean;
18
+ colors?: ButtonColors;
12
19
  } & import('react').RefAttributes<HTMLButtonElement>>;
13
20
  export {};
@@ -13,3 +13,5 @@ export declare const SecondarySmall: Story;
13
13
  export declare const DisabledLargeLoading: Story;
14
14
  export declare const DisabledMedium: Story;
15
15
  export declare const DisabledSmall: Story;
16
+ export declare const CustomPrimary: Story;
17
+ export declare const CustomSecondary: Story;
@@ -2,6 +2,7 @@ import { FC } from 'react';
2
2
 
3
3
  type CheckBoxProps = React.HTMLAttributes<HTMLDivElement> & {
4
4
  checked: boolean;
5
+ color?: string;
5
6
  };
6
7
  export declare const CheckBox: FC<CheckBoxProps>;
7
8
  export {};
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+
3
+ type SvgProps = React.SVGProps<SVGSVGElement>;
4
+ export declare const ArrowInwardIcon: 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 FaqIcon: 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 FolderIcon: React.FC<SvgProps>;
5
+ export {};
@@ -80,3 +80,6 @@ export { DollarChipIcon } from './DollarChipIcon';
80
80
  export { GiftBoxIcon } from './GiftBoxIcon';
81
81
  export { RaiseHandIcon } from './RaiseHandIcon';
82
82
  export { RowInfoIcon } from './RowInfoIcon';
83
+ export { FolderIcon } from './FolderIcon';
84
+ export { ArrowInwardIcon } from './ArrowInwardIcon';
85
+ export { FaqIcon } from './FaqIcon';
@@ -0,0 +1,5 @@
1
+ import { default as React } from 'react';
2
+
3
+ type SvgProps = React.SVGProps<SVGSVGElement>;
4
+ export declare const GardenDocs: 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 GardenExplorerAlt: React.FC<SvgProps>;
5
+ export {};
@@ -1,5 +1,8 @@
1
1
  import { default as React } from 'react';
2
2
 
3
- type SvgProps = React.SVGProps<SVGSVGElement>;
4
- export declare const GardenIcon: React.FC<SvgProps>;
3
+ type GardenIconVariant = "garden-rose" | "iris" | "mist" | "elderberry";
4
+ type GardenIconProps = React.SVGProps<SVGSVGElement> & {
5
+ variant?: GardenIconVariant;
6
+ };
7
+ export declare const GardenIcon: React.FC<GardenIconProps>;
5
8
  export {};
@@ -29,3 +29,5 @@ export { Radiant } from './Radiant';
29
29
  export { GardenIcon } from './GardenIcon';
30
30
  export { GardenIconOutline } from './GardenIconOutline';
31
31
  export { NFTIcon } from './NFTIcon';
32
+ export { GardenExplorerAlt } from './GardenExplorerAlt';
33
+ export { GardenDocs } from './GardenDocs';
@@ -8,6 +8,7 @@ declare const modalStyles: (props?: ({
8
8
  type ModalProps = VariantProps<typeof modalStyles> & {
9
9
  onClose?: () => void;
10
10
  children: React.ReactNode;
11
+ disableScrollLock?: boolean;
11
12
  };
12
13
  declare const Modal: React.FC<ModalProps> & {
13
14
  Children: React.FC<ChildrenProps>;