@reeverdev/ui 0.2.18 → 0.2.19
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 +9 -4
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +5 -9
- package/dist/index.d.ts +5 -9
- package/dist/index.js +9 -4
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -943,19 +943,15 @@ interface DotsProps extends React$1.HTMLAttributes<HTMLSpanElement>, VariantProp
|
|
|
943
943
|
declare const Dots: React$1.ForwardRefExoticComponent<DotsProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
944
944
|
|
|
945
945
|
declare const circularProgressVariants: (props?: ({
|
|
946
|
-
size?: "sm" | "md" | "lg" |
|
|
946
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
947
|
+
color?: "default" | "success" | "warning" | "danger" | null | undefined;
|
|
947
948
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
948
|
-
interface CircularProgressProps extends React$1.
|
|
949
|
-
/** Progress value (0-100). If undefined, shows indeterminate spinner */
|
|
949
|
+
interface CircularProgressProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "color">, VariantProps<typeof circularProgressVariants> {
|
|
950
950
|
value?: number;
|
|
951
|
-
/** Stroke width of the progress circle */
|
|
952
|
-
strokeWidth?: number;
|
|
953
|
-
/** Whether to show the value label in the center */
|
|
954
951
|
showValue?: boolean;
|
|
955
|
-
|
|
956
|
-
label?: string;
|
|
952
|
+
trackClassName?: string;
|
|
957
953
|
}
|
|
958
|
-
declare const CircularProgress: React$1.ForwardRefExoticComponent<CircularProgressProps & React$1.RefAttributes<
|
|
954
|
+
declare const CircularProgress: React$1.ForwardRefExoticComponent<CircularProgressProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
959
955
|
|
|
960
956
|
declare const inputOTPVariants: (props?: ({
|
|
961
957
|
size?: "sm" | "md" | "lg" | null | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -943,19 +943,15 @@ interface DotsProps extends React$1.HTMLAttributes<HTMLSpanElement>, VariantProp
|
|
|
943
943
|
declare const Dots: React$1.ForwardRefExoticComponent<DotsProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
944
944
|
|
|
945
945
|
declare const circularProgressVariants: (props?: ({
|
|
946
|
-
size?: "sm" | "md" | "lg" |
|
|
946
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
947
|
+
color?: "default" | "success" | "warning" | "danger" | null | undefined;
|
|
947
948
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
948
|
-
interface CircularProgressProps extends React$1.
|
|
949
|
-
/** Progress value (0-100). If undefined, shows indeterminate spinner */
|
|
949
|
+
interface CircularProgressProps extends Omit<React$1.HTMLAttributes<HTMLDivElement>, "color">, VariantProps<typeof circularProgressVariants> {
|
|
950
950
|
value?: number;
|
|
951
|
-
/** Stroke width of the progress circle */
|
|
952
|
-
strokeWidth?: number;
|
|
953
|
-
/** Whether to show the value label in the center */
|
|
954
951
|
showValue?: boolean;
|
|
955
|
-
|
|
956
|
-
label?: string;
|
|
952
|
+
trackClassName?: string;
|
|
957
953
|
}
|
|
958
|
-
declare const CircularProgress: React$1.ForwardRefExoticComponent<CircularProgressProps & React$1.RefAttributes<
|
|
954
|
+
declare const CircularProgress: React$1.ForwardRefExoticComponent<CircularProgressProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
959
955
|
|
|
960
956
|
declare const inputOTPVariants: (props?: ({
|
|
961
957
|
size?: "sm" | "md" | "lg" | null | undefined;
|