Updated the import statements in multiple component files to use the updated package name for shared resources. This change was necessary for import consistency and to ensure proper functioning of the components as per the new package name "@pswui-lib/shared@1.0.0".
34 lines
917 B
TypeScript
34 lines
917 B
TypeScript
import React from "react";
|
|
import { VariantProps, vcn } from "@pswui-lib/shared@1.0.0";
|
|
|
|
const [labelVariant, resolveLabelVariantProps] = vcn({
|
|
base: "has-[input[disabled]]:brightness-75 has-[input[disabled]]:cursor-not-allowed has-[input:invalid]:text-red-500",
|
|
variants: {
|
|
direction: {
|
|
vertical: "flex flex-col gap-2 justify-center items-start",
|
|
horizontal: "flex flex-row gap-2 justify-start items-center",
|
|
},
|
|
},
|
|
defaults: {
|
|
direction: "vertical",
|
|
},
|
|
});
|
|
|
|
interface LabelProps
|
|
extends VariantProps<typeof labelVariant>,
|
|
React.ComponentPropsWithoutRef<"label"> {}
|
|
|
|
const Label = React.forwardRef<HTMLLabelElement, LabelProps>((props, ref) => {
|
|
const [variantProps, otherPropsCompressed] = resolveLabelVariantProps(props);
|
|
|
|
return (
|
|
<label
|
|
ref={ref}
|
|
{...otherPropsCompressed}
|
|
className={labelVariant(variantProps)}
|
|
/>
|
|
);
|
|
});
|
|
|
|
export { Label };
|