@clasing/ui 0.0.42 → 0.0.44

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/index.d.ts CHANGED
@@ -18,20 +18,22 @@ export declare const Button: ({ className, intent, size, children, iconLeft, ico
18
18
  export declare const ButtonIcon: ({ iconName, className, intent, size, rounded, disabled, isLoading, notification, ...props }: IButtonIconProps) => JSX_2.Element;
19
19
 
20
20
  declare const buttonIconStyles: (props?: ({
21
- intent?: "fill" | "outline" | null | undefined;
21
+ intent?: "fill" | "outline" | "ghost" | null | undefined;
22
22
  size?: "small" | "medium" | "large" | null | undefined;
23
23
  rounded?: "full" | "sm" | null | undefined;
24
24
  } & ClassProp) | undefined) => string;
25
25
 
26
26
  declare const buttonStyles: (props?: ({
27
- intent?: "outline" | "primary" | "secondary" | "tertiary" | "ghost" | "destructive" | null | undefined;
27
+ intent?: "outline" | "link" | "primary" | "secondary" | "tertiary" | "ghost" | "destructive" | null | undefined;
28
28
  size?: "small" | "medium" | "large" | null | undefined;
29
+ weight?: "bold" | "light" | "regular" | "semibold" | null | undefined;
29
30
  } & ClassProp) | undefined) => string;
30
31
 
31
32
  export declare const Card: ({ className, intent, children, ...props }: ICardProps) => JSX_2.Element;
32
33
 
33
34
  declare const cardStyles: (props?: ({
34
35
  intent?: "outline" | "default" | null | undefined;
36
+ shadow?: "none" | "sm" | "xs" | "md" | "lg" | "xl" | "2xl" | null | undefined;
35
37
  } & ClassProp) | undefined) => string;
36
38
 
37
39
  declare interface IBadgeProps extends React.HTMLAttributes<HTMLSpanElement>, VariantProps<typeof badgeStyles> {