@obolnetwork/obol-ui 1.0.7 → 1.0.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.
@@ -6,7 +6,7 @@ export declare const Button: import("@stitches/react/types/styled-component").St
6
6
  icon?: boolean | "true" | undefined;
7
7
  fullWidth?: boolean | "true" | undefined;
8
8
  outlined?: boolean | "true" | undefined;
9
- variant?: "nav" | "tx" | undefined;
9
+ variant?: "nav" | "tx" | "wallet" | undefined;
10
10
  }, {
11
11
  motion: "(prefers-reduced-motion)";
12
12
  hover: "(any-hover: hover)";
@@ -484,17 +484,17 @@ export declare const Button: import("@stitches/react/types/styled-component").St
484
484
  };
485
485
  };
486
486
  }>>;
487
- declare type ComponentVariants = Stitches.VariantProps<typeof Button>;
488
- export declare type ComponentProps = ComponentVariants & {
487
+ declare type ButtonComponentVariants = Stitches.VariantProps<typeof Button>;
488
+ export declare type ButtonComponentProps = ButtonComponentVariants & {
489
489
  loading?: boolean;
490
490
  };
491
- export declare const ButtonStory: (props: Omit<ComponentProps, "color" | "icon" | "ghost" | "fullWidth" | "outlined" | "variant"> & {
491
+ export declare const ButtonStory: (props: Omit<ButtonComponentProps, "color" | "icon" | "ghost" | "fullWidth" | "outlined" | "variant"> & {
492
492
  color?: "coordinate" | "test" | "create" | "primary" | "secondary" | undefined;
493
493
  ghost?: boolean | undefined;
494
494
  icon?: boolean | undefined;
495
495
  fullWidth?: boolean | undefined;
496
496
  outlined?: boolean | undefined;
497
- variant?: "nav" | "tx" | undefined;
497
+ variant?: "nav" | "tx" | "wallet" | undefined;
498
498
  } & {
499
499
  children?: import("react").ReactNode;
500
500
  disabled?: boolean | undefined;