@szum-tech/design-system
Version:
Szum-Tech design system with tailwindcss support
205 lines (199 loc) • 7.03 kB
JavaScript
;
var chunkUIOBJSKZ_cjs = require('./chunk-UIOBJSKZ.cjs');
var chunkS3ANEJJ7_cjs = require('./chunk-S3ANEJJ7.cjs');
var chunkH2BWO3SI_cjs = require('./chunk-H2BWO3SI.cjs');
var classVarianceAuthority = require('class-variance-authority');
var jsxRuntime = require('react/jsx-runtime');
var React = require('react');
function _interopNamespace(e) {
if (e && e.__esModule) return e;
var n = Object.create(null);
if (e) {
Object.keys(e).forEach(function (k) {
if (k !== 'default') {
var d = Object.getOwnPropertyDescriptor(e, k);
Object.defineProperty(n, k, d.get ? d : {
enumerable: true,
get: function () { return e[k]; }
});
}
});
}
n.default = e;
return Object.freeze(n);
}
var React__namespace = /*#__PURE__*/_interopNamespace(React);
var fieldVariants = classVarianceAuthority.cva("group/field data-[invalid=true]:text-error flex w-full gap-3", {
variants: {
orientation: {
vertical: ["flex-col [&>*]:w-full [&>.sr-only]:w-auto"],
horizontal: [
"flex-row items-center",
"[&>[data-slot=field-label]]:flex-auto",
"has-[>[data-slot=field-content]]:[&>[role=checkbox],[role=radio]]:mt-px has-[>[data-slot=field-content]]:items-start"
],
responsive: [
"@md/field-group:flex-row @md/field-group:items-center @md/field-group:[&>*]:w-auto flex-col [&>*]:w-full [&>.sr-only]:w-auto",
"@md/field-group:[&>[data-slot=field-label]]:flex-auto",
"@md/field-group:has-[>[data-slot=field-content]]:items-start @md/field-group:has-[>[data-slot=field-content]]:[&>[role=checkbox],[role=radio]]:mt-px"
]
}
},
defaultVariants: {
orientation: "vertical"
}
});
function Field({ className, orientation = "vertical", ...props }) {
return /* @__PURE__ */ jsxRuntime.jsx(
"div",
{
role: "group",
"data-slot": "field",
"data-orientation": orientation,
className: chunkH2BWO3SI_cjs.cn(fieldVariants({ orientation }), className),
...props
}
);
}
function FieldContent({ className, ...props }) {
return /* @__PURE__ */ jsxRuntime.jsx(
"div",
{
"data-slot": "field-content",
className: chunkH2BWO3SI_cjs.cn("group/field-content flex flex-1 flex-col gap-1.5 leading-snug", className),
...props
}
);
}
function FieldDescription({ className, ...props }) {
return /* @__PURE__ */ jsxRuntime.jsx(
"p",
{
"data-slot": "field-description",
className: chunkH2BWO3SI_cjs.cn(
"text-muted-foreground text-sm leading-normal font-normal group-has-[[data-orientation=horizontal]]/field:text-balance",
"last:mt-0 nth-last-2:-mt-1 [[data-variant=legend]+&]:-mt-1.5",
"[&>a:hover]:text-primary [&>a]:underline [&>a]:underline-offset-4",
className
),
...props
}
);
}
function FieldError({ className, children, errors, ...props }) {
const content = React__namespace.useMemo(() => {
if (children) {
return children;
}
if (!errors?.length) {
return null;
}
const uniqueErrors = [...new Map(errors.map((error) => [error?.message, error])).values()];
if (uniqueErrors?.length == 1) {
return uniqueErrors[0]?.message;
}
return /* @__PURE__ */ jsxRuntime.jsx("ul", { className: "ml-4 flex list-disc flex-col gap-1", children: uniqueErrors.map((error, index) => error?.message && /* @__PURE__ */ jsxRuntime.jsx("li", { children: error.message }, index)) });
}, [children, errors]);
if (!content) {
return null;
}
return /* @__PURE__ */ jsxRuntime.jsx("div", { role: "alert", "data-slot": "field-error", className: chunkH2BWO3SI_cjs.cn("text-error text-sm font-normal", className), ...props, children: content });
}
function FieldGroup({ className, ...props }) {
return /* @__PURE__ */ jsxRuntime.jsx(
"div",
{
"data-slot": "field-group",
className: chunkH2BWO3SI_cjs.cn(
"group/field-group @container/field-group flex w-full flex-col gap-7 data-[slot=checkbox-group]:gap-3 [&>[data-slot=field-group]]:gap-4",
className
),
...props
}
);
}
function FieldLabel({ className, ...props }) {
return /* @__PURE__ */ jsxRuntime.jsx(
chunkS3ANEJJ7_cjs.Label,
{
"data-slot": "field-label",
className: chunkH2BWO3SI_cjs.cn(
"group/field-label peer/field-label flex w-fit gap-2 leading-snug group-data-[disabled=true]/field:opacity-50",
"has-[>[data-slot=field]]:border-border has-[>[data-slot=field]]:w-full has-[>[data-slot=field]]:flex-col has-[>[data-slot=field]]:rounded has-[>[data-slot=field]]:border [&>*]:data-[slot=field]:p-4",
"has-data-[state=checked]:bg-primary/5 has-data-[state=checked]:border-primary dark:has-data-[state=checked]:bg-primary/10",
className
),
...props
}
);
}
function FieldLegend({ className, variant = "legend", ...props }) {
return /* @__PURE__ */ jsxRuntime.jsx(
"legend",
{
"data-slot": "field-legend",
"data-variant": variant,
className: chunkH2BWO3SI_cjs.cn("mb-3 font-medium", "data-[variant=legend]:text-base", "data-[variant=label]:text-sm", className),
...props
}
);
}
function FieldSeparator({ children, className, ...props }) {
return /* @__PURE__ */ jsxRuntime.jsxs(
"div",
{
"data-slot": "field-separator",
"data-content": !!children,
className: chunkH2BWO3SI_cjs.cn("relative -my-2 h-5 text-sm group-data-[variant=outline]/field-group:-mb-2", className),
...props,
children: [
/* @__PURE__ */ jsxRuntime.jsx(chunkUIOBJSKZ_cjs.Separator, { className: "absolute inset-0 top-1/2" }),
children ? /* @__PURE__ */ jsxRuntime.jsx(
"span",
{
className: "bg-background text-muted-foreground relative mx-auto block w-fit px-2",
"data-slot": "field-separator-content",
children
}
) : null
]
}
);
}
function FieldSet({ className, ...props }) {
return /* @__PURE__ */ jsxRuntime.jsx(
"fieldset",
{
"data-slot": "field-set",
className: chunkH2BWO3SI_cjs.cn(
"flex flex-col gap-6",
"has-[>[data-slot=checkbox-group]]:gap-3 has-[>[data-slot=radio-group]]:gap-3",
className
),
...props
}
);
}
function FieldTitle({ className, ...props }) {
return /* @__PURE__ */ jsxRuntime.jsx(
"div",
{
"data-slot": "field-label",
className: chunkH2BWO3SI_cjs.cn(
"flex w-fit items-center gap-2 text-sm leading-snug font-medium group-data-[disabled=true]/field:opacity-50",
className
),
...props
}
);
}
exports.Field = Field;
exports.FieldContent = FieldContent;
exports.FieldDescription = FieldDescription;
exports.FieldError = FieldError;
exports.FieldGroup = FieldGroup;
exports.FieldLabel = FieldLabel;
exports.FieldLegend = FieldLegend;
exports.FieldSeparator = FieldSeparator;
exports.FieldSet = FieldSet;
exports.FieldTitle = FieldTitle;