@npm-questionpro/wick-ui-lib 0.3.0 → 0.3.1

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.
@@ -3,12 +3,12 @@ import { VariantProps } from 'class-variance-authority';
3
3
  import * as React from 'react';
4
4
  declare const buttonVariants: (props?: ({
5
5
  size?: "md" | "sm" | "mobile" | null | undefined;
6
- color?: "primary" | "accent" | "error" | null | undefined;
6
+ color?: "primary" | "upgrade" | "error" | null | undefined;
7
7
  variant?: "link" | "primary" | "secondary" | "outline" | "rounded" | "iconOnly" | null | undefined;
8
8
  } & import('class-variance-authority/dist/types').ClassProp) | undefined) => string;
9
9
  export interface IButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
10
10
  asChild?: boolean;
11
- color?: 'primary' | 'accent' | 'error';
11
+ color?: 'primary' | 'upgrade' | 'error';
12
12
  }
13
13
  declare const Button: React.ForwardRefExoticComponent<IButtonProps & React.RefAttributes<HTMLButtonElement>>;
14
14
  export { Button };
@@ -3,7 +3,7 @@ import { ReactNode } from 'react';
3
3
  export interface IWuButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
4
4
  variant?: 'primary' | 'secondary' | 'outline' | 'rounded' | 'link' | 'iconOnly';
5
5
  size?: 'md' | 'sm' | 'mobile';
6
- color?: 'primary' | 'accent' | 'error';
6
+ color?: 'primary' | 'upgrade' | 'error';
7
7
  icon?: ReactNode;
8
8
  iconPosition?: 'left' | 'right';
9
9
  floating?: boolean;
@@ -0,0 +1,3 @@
1
+ export declare const MediumLight: () => JSX.Element;
2
+ export declare const StylesAndFormat: () => JSX.Element;
3
+ export declare const Colors: () => JSX.Element;