@qodo/design-system 0.17.2 → 0.17.4
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/design-system.css +1 -1
- package/dist/index.cjs.js +2 -2
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -2
- package/dist/index.esm.js +273 -257
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -99,7 +99,7 @@ declare interface BadgeProps extends React_2.HTMLAttributes<HTMLDivElement>, Var
|
|
|
99
99
|
|
|
100
100
|
declare const badgeVariants: (props?: ({
|
|
101
101
|
variant?: "default" | "secondary" | "outline" | "text" | "success" | "warning" | "destructive" | "error" | "primary" | "pending" | null | undefined;
|
|
102
|
-
size?: "
|
|
102
|
+
size?: "xs" | "sm" | "lg" | "md" | null | undefined;
|
|
103
103
|
} & ClassProp) | undefined) => string;
|
|
104
104
|
|
|
105
105
|
export declare const BaseCell: (props: BaseCellProps) => JSX_2.Element;
|
|
@@ -145,7 +145,7 @@ export declare interface ButtonProps extends React_2.ButtonHTMLAttributes<HTMLBu
|
|
|
145
145
|
|
|
146
146
|
declare const buttonVariants: (props?: ({
|
|
147
147
|
variant?: "default" | "secondary" | "outline" | "ghost" | "link" | "danger" | null | undefined;
|
|
148
|
-
size?: "default" | "sm" | "lg" | "icon" | null | undefined;
|
|
148
|
+
size?: "default" | "xs" | "sm" | "lg" | "icon" | null | undefined;
|
|
149
149
|
} & ClassProp) | undefined) => string;
|
|
150
150
|
|
|
151
151
|
export declare function Card({ className, ...props }: React_2.ComponentProps<"div"> & {
|