diditui 0.0.4 → 0.0.6

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.
package/dist/diditui.d.ts CHANGED
@@ -19,7 +19,7 @@ declare type AsProp<C extends default_2.ElementType> = {
19
19
  export declare function Button({ size, variant, icon, isLoading, disabled, className, children, ...props }: ButtonProps): JSX_2.Element;
20
20
 
21
21
  declare type ButtonProps = ComponentProps<'button'> & {
22
- variant?: 'default' | 'primary' | 'soft';
22
+ variant?: 'default' | 'primary' | 'soft' | 'white';
23
23
  size?: 'md' | 'lg';
24
24
  icon?: IconType;
25
25
  isLoading?: boolean;
@@ -66,7 +66,7 @@ declare const iconStyles: (props?: ({
66
66
  size?: "xs" | "sm" | "md" | "lg" | "xl" | null | undefined;
67
67
  } & ClassProp) | undefined) => string;
68
68
 
69
- export declare type IconType = 'settings' | 'info' | 'arrowRight' | 'scan' | 'warning' | 'check' | 'copy' | 'connect' | 'passKey' | 'didit' | 'close' | 'diditLogo';
69
+ export declare type IconType = 'settings' | 'info' | 'arrowRight' | 'scan' | 'warning' | 'check' | 'copy' | 'connect' | 'passKey' | 'didit' | 'close' | 'diditLogo' | 'idCard' | 'car' | 'passport';
70
70
 
71
71
  /**
72
72
  * Allows for inheriting the props from the specified element type so that
@@ -103,7 +103,7 @@ export declare function QrCode({ uri, size, color, iconName, className, ...props
103
103
 
104
104
  declare type QrCodeProps = ComponentProps<'div'> & {
105
105
  uri: string;
106
- size?: 'sm' | 'md' | 'lg' | number;
106
+ size?: 'sm' | 'md' | 'lg' | 'xl' | number;
107
107
  color?: string;
108
108
  iconName?: IconType;
109
109
  };