@reeverdev/ui 0.1.4 → 0.1.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/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +10 -7
- package/dist/index.d.ts +10 -7
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -59,12 +59,15 @@ interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProp
|
|
|
59
59
|
declare const Badge: React$1.ForwardRefExoticComponent<BadgeProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
60
60
|
|
|
61
61
|
declare const buttonVariants: (props?: ({
|
|
62
|
-
variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | "destructive" | "link" | null | undefined;
|
|
62
|
+
variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | "destructive" | "link" | "shadow" | null | undefined;
|
|
63
63
|
size?: "sm" | "md" | "lg" | "icon" | null | undefined;
|
|
64
64
|
radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
|
|
65
65
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
66
66
|
interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
67
67
|
asChild?: boolean;
|
|
68
|
+
href?: string;
|
|
69
|
+
loading?: boolean;
|
|
70
|
+
loadingText?: string;
|
|
68
71
|
}
|
|
69
72
|
declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
70
73
|
|
|
@@ -3212,8 +3215,8 @@ declare const ColorWheel: React$1.ForwardRefExoticComponent<ColorWheelProps & Re
|
|
|
3212
3215
|
|
|
3213
3216
|
declare const flexVariants: (props?: ({
|
|
3214
3217
|
direction?: "row" | "column" | "column-reverse" | "row-reverse" | null | undefined;
|
|
3215
|
-
align?: "
|
|
3216
|
-
justify?: "
|
|
3218
|
+
align?: "end" | "center" | "start" | "baseline" | "stretch" | null | undefined;
|
|
3219
|
+
justify?: "end" | "center" | "start" | "between" | "around" | "evenly" | null | undefined;
|
|
3217
3220
|
wrap?: "wrap" | "nowrap" | "wrap-reverse" | null | undefined;
|
|
3218
3221
|
gap?: 0 | 1 | 2 | 4 | 3 | 5 | 6 | 10 | 12 | 8 | null | undefined;
|
|
3219
3222
|
inline?: boolean | null | undefined;
|
|
@@ -3234,9 +3237,9 @@ declare const gridVariants: (props?: ({
|
|
|
3234
3237
|
gapX?: 0 | 1 | 2 | 4 | 3 | 5 | 6 | 10 | 12 | 8 | null | undefined;
|
|
3235
3238
|
gapY?: 0 | 1 | 2 | 4 | 3 | 5 | 6 | 10 | 12 | 8 | null | undefined;
|
|
3236
3239
|
flow?: "row" | "col" | "dense" | "row-dense" | "col-dense" | null | undefined;
|
|
3237
|
-
align?: "
|
|
3238
|
-
justify?: "
|
|
3239
|
-
placeItems?: "
|
|
3240
|
+
align?: "end" | "center" | "start" | "baseline" | "stretch" | null | undefined;
|
|
3241
|
+
justify?: "end" | "center" | "start" | "stretch" | null | undefined;
|
|
3242
|
+
placeItems?: "end" | "center" | "start" | "stretch" | null | undefined;
|
|
3240
3243
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3241
3244
|
interface GridProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof gridVariants> {
|
|
3242
3245
|
/** Element to render as */
|
|
@@ -3281,7 +3284,7 @@ declare const Well: React$1.ForwardRefExoticComponent<WellProps & React$1.RefAtt
|
|
|
3281
3284
|
declare const labeledValueVariants: (props?: ({
|
|
3282
3285
|
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
3283
3286
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
3284
|
-
align?: "
|
|
3287
|
+
align?: "end" | "center" | "start" | null | undefined;
|
|
3285
3288
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3286
3289
|
interface LabeledValueProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "children">, VariantProps<typeof labeledValueVariants> {
|
|
3287
3290
|
/** Label text */
|
package/dist/index.d.ts
CHANGED
|
@@ -59,12 +59,15 @@ interface BadgeProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProp
|
|
|
59
59
|
declare const Badge: React$1.ForwardRefExoticComponent<BadgeProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
60
60
|
|
|
61
61
|
declare const buttonVariants: (props?: ({
|
|
62
|
-
variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | "destructive" | "link" | null | undefined;
|
|
62
|
+
variant?: "solid" | "outline" | "ghost" | "soft" | "surface" | "destructive" | "link" | "shadow" | null | undefined;
|
|
63
63
|
size?: "sm" | "md" | "lg" | "icon" | null | undefined;
|
|
64
64
|
radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
|
|
65
65
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
66
66
|
interface ButtonProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof buttonVariants> {
|
|
67
67
|
asChild?: boolean;
|
|
68
|
+
href?: string;
|
|
69
|
+
loading?: boolean;
|
|
70
|
+
loadingText?: string;
|
|
68
71
|
}
|
|
69
72
|
declare const Button: React$1.ForwardRefExoticComponent<ButtonProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
70
73
|
|
|
@@ -3212,8 +3215,8 @@ declare const ColorWheel: React$1.ForwardRefExoticComponent<ColorWheelProps & Re
|
|
|
3212
3215
|
|
|
3213
3216
|
declare const flexVariants: (props?: ({
|
|
3214
3217
|
direction?: "row" | "column" | "column-reverse" | "row-reverse" | null | undefined;
|
|
3215
|
-
align?: "
|
|
3216
|
-
justify?: "
|
|
3218
|
+
align?: "end" | "center" | "start" | "baseline" | "stretch" | null | undefined;
|
|
3219
|
+
justify?: "end" | "center" | "start" | "between" | "around" | "evenly" | null | undefined;
|
|
3217
3220
|
wrap?: "wrap" | "nowrap" | "wrap-reverse" | null | undefined;
|
|
3218
3221
|
gap?: 0 | 1 | 2 | 4 | 3 | 5 | 6 | 10 | 12 | 8 | null | undefined;
|
|
3219
3222
|
inline?: boolean | null | undefined;
|
|
@@ -3234,9 +3237,9 @@ declare const gridVariants: (props?: ({
|
|
|
3234
3237
|
gapX?: 0 | 1 | 2 | 4 | 3 | 5 | 6 | 10 | 12 | 8 | null | undefined;
|
|
3235
3238
|
gapY?: 0 | 1 | 2 | 4 | 3 | 5 | 6 | 10 | 12 | 8 | null | undefined;
|
|
3236
3239
|
flow?: "row" | "col" | "dense" | "row-dense" | "col-dense" | null | undefined;
|
|
3237
|
-
align?: "
|
|
3238
|
-
justify?: "
|
|
3239
|
-
placeItems?: "
|
|
3240
|
+
align?: "end" | "center" | "start" | "baseline" | "stretch" | null | undefined;
|
|
3241
|
+
justify?: "end" | "center" | "start" | "stretch" | null | undefined;
|
|
3242
|
+
placeItems?: "end" | "center" | "start" | "stretch" | null | undefined;
|
|
3240
3243
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3241
3244
|
interface GridProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantProps<typeof gridVariants> {
|
|
3242
3245
|
/** Element to render as */
|
|
@@ -3281,7 +3284,7 @@ declare const Well: React$1.ForwardRefExoticComponent<WellProps & React$1.RefAtt
|
|
|
3281
3284
|
declare const labeledValueVariants: (props?: ({
|
|
3282
3285
|
orientation?: "horizontal" | "vertical" | null | undefined;
|
|
3283
3286
|
size?: "sm" | "md" | "lg" | null | undefined;
|
|
3284
|
-
align?: "
|
|
3287
|
+
align?: "end" | "center" | "start" | null | undefined;
|
|
3285
3288
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
3286
3289
|
interface LabeledValueProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "children">, VariantProps<typeof labeledValueVariants> {
|
|
3287
3290
|
/** Label text */
|