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