@reeverdev/ui 0.1.21 → 0.1.22
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 +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -143,7 +143,7 @@ interface SkeletonProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantP
|
|
|
143
143
|
declare const Skeleton: React$1.ForwardRefExoticComponent<SkeletonProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
144
144
|
|
|
145
145
|
declare const avatarVariants: (props?: ({
|
|
146
|
-
size?: "sm" | "md" | "lg" |
|
|
146
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
147
147
|
radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
|
|
148
148
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
149
149
|
interface AvatarProps extends React$1.ComponentPropsWithoutRef<typeof AvatarPrimitive.Root>, VariantProps<typeof avatarVariants> {
|
|
@@ -3098,7 +3098,7 @@ declare const DiskUsageMeter: React$1.ForwardRefExoticComponent<Omit<MeterProps,
|
|
|
3098
3098
|
declare const BatteryMeter: React$1.ForwardRefExoticComponent<Omit<MeterProps, "color" | "high" | "low" | "optimum"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
3099
3099
|
|
|
3100
3100
|
declare const colorSwatchVariants: (props?: ({
|
|
3101
|
-
size?: "sm" | "md" | "lg" | "
|
|
3101
|
+
size?: "sm" | "md" | "lg" | "xl" | "xs" | null | undefined;
|
|
3102
3102
|
shape?: "square" | "circle" | null | undefined;
|
|
3103
3103
|
interactive?: boolean | null | undefined;
|
|
3104
3104
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
package/dist/index.d.ts
CHANGED
|
@@ -143,7 +143,7 @@ interface SkeletonProps extends React$1.HTMLAttributes<HTMLDivElement>, VariantP
|
|
|
143
143
|
declare const Skeleton: React$1.ForwardRefExoticComponent<SkeletonProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
144
144
|
|
|
145
145
|
declare const avatarVariants: (props?: ({
|
|
146
|
-
size?: "sm" | "md" | "lg" |
|
|
146
|
+
size?: "sm" | "md" | "lg" | null | undefined;
|
|
147
147
|
radius?: "none" | "sm" | "md" | "lg" | "full" | null | undefined;
|
|
148
148
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
149
149
|
interface AvatarProps extends React$1.ComponentPropsWithoutRef<typeof AvatarPrimitive.Root>, VariantProps<typeof avatarVariants> {
|
|
@@ -3098,7 +3098,7 @@ declare const DiskUsageMeter: React$1.ForwardRefExoticComponent<Omit<MeterProps,
|
|
|
3098
3098
|
declare const BatteryMeter: React$1.ForwardRefExoticComponent<Omit<MeterProps, "color" | "high" | "low" | "optimum"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
3099
3099
|
|
|
3100
3100
|
declare const colorSwatchVariants: (props?: ({
|
|
3101
|
-
size?: "sm" | "md" | "lg" | "
|
|
3101
|
+
size?: "sm" | "md" | "lg" | "xl" | "xs" | null | undefined;
|
|
3102
3102
|
shape?: "square" | "circle" | null | undefined;
|
|
3103
3103
|
interactive?: boolean | null | undefined;
|
|
3104
3104
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|