daleui 0.0.2 → 0.0.5
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/README.md +43 -0
- package/dist/check-DEVerfH5.js +72 -0
- package/dist/components/Box/Box.d.ts +34 -0
- package/dist/components/Box/Box.js +34 -0
- package/dist/components/Button/Button.d.ts +37 -0
- package/dist/components/Button/Button.js +367 -0
- package/dist/components/Card/Card.d.ts +68 -0
- package/dist/components/Card/Card.js +132 -0
- package/dist/components/Checkbox/Checkbox.d.ts +34 -0
- package/dist/components/Checkbox/Checkbox.js +657 -0
- package/dist/components/Flex/Flex.d.ts +361 -0
- package/dist/components/Flex/Flex.js +65 -0
- package/dist/components/HStack/HStack.d.ts +23 -0
- package/dist/components/HStack/HStack.js +35 -0
- package/dist/components/Heading/Heading.d.ts +33 -0
- package/dist/components/Heading/Heading.js +67 -0
- package/dist/components/Icon/Icon.d.ts +20 -0
- package/dist/components/Icon/Icon.js +325 -0
- package/dist/components/Label/Label.d.ts +35 -0
- package/dist/components/Label/Label.js +74 -0
- package/dist/components/Link/Link.d.ts +33 -0
- package/dist/components/Link/Link.js +176 -0
- package/dist/components/PasswordInput/PasswordInput.d.ts +17 -0
- package/dist/components/PasswordInput/PasswordInput.js +151 -0
- package/dist/components/RadioGroup/RadioGroup.d.ts +82 -0
- package/dist/components/RadioGroup/RadioGroup.js +713 -0
- package/dist/components/Select/Select.d.ts +39 -0
- package/dist/components/Select/Select.js +222 -0
- package/dist/components/Tag/Tag.d.ts +26 -0
- package/dist/components/Tag/Tag.js +189 -0
- package/dist/components/Text/Text.d.ts +22 -0
- package/dist/components/Text/Text.js +115 -0
- package/dist/components/TextInput/TextInput.d.ts +21 -0
- package/dist/components/TextInput/TextInput.js +106 -0
- package/dist/components/VStack/VStack.d.ts +23 -0
- package/dist/components/VStack/VStack.js +35 -0
- package/dist/css-QiVVeZaw.js +212 -0
- package/dist/cva-BrKodHDH.js +57 -0
- package/dist/cx-DN21T1EH.js +9 -0
- package/dist/hstack-cCrHxysi.js +43 -0
- package/dist/index.css +1 -0
- package/dist/index.d.ts +18 -0
- package/dist/index.js +37 -0
- package/dist/tokens/colors.d.ts +4 -0
- package/dist/tokens/iconography.d.ts +45 -0
- package/dist/tokens/spacing.d.ts +42 -0
- package/dist/tokens/typography.d.ts +312 -0
- package/dist/use-locale-context-DYXE7B4r.js +775 -0
- package/package.json +62 -39
- package/styled-system/css/conditions.mjs +36 -0
- package/styled-system/css/css.d.ts +22 -0
- package/styled-system/css/css.mjs +45 -0
- package/styled-system/css/cva.d.ts +6 -0
- package/styled-system/css/cva.mjs +87 -0
- package/styled-system/css/cx.d.ts +5 -0
- package/styled-system/css/cx.mjs +15 -0
- package/styled-system/css/index.d.ts +5 -0
- package/styled-system/css/index.mjs +4 -0
- package/styled-system/css/sva.d.ts +4 -0
- package/styled-system/css/sva.mjs +46 -0
- package/styled-system/helpers.mjs +316 -0
- package/styled-system/patterns/aspect-ratio.d.ts +20 -0
- package/styled-system/patterns/aspect-ratio.mjs +38 -0
- package/styled-system/patterns/bleed.d.ts +21 -0
- package/styled-system/patterns/bleed.mjs +24 -0
- package/styled-system/patterns/box.d.ts +20 -0
- package/styled-system/patterns/box.mjs +15 -0
- package/styled-system/patterns/center.d.ts +20 -0
- package/styled-system/patterns/center.mjs +21 -0
- package/styled-system/patterns/circle.d.ts +20 -0
- package/styled-system/patterns/circle.mjs +25 -0
- package/styled-system/patterns/container.d.ts +20 -0
- package/styled-system/patterns/container.mjs +21 -0
- package/styled-system/patterns/cq.d.ts +21 -0
- package/styled-system/patterns/cq.mjs +21 -0
- package/styled-system/patterns/divider.d.ts +22 -0
- package/styled-system/patterns/divider.mjs +25 -0
- package/styled-system/patterns/flex.d.ts +26 -0
- package/styled-system/patterns/flex.mjs +26 -0
- package/styled-system/patterns/float.d.ts +23 -0
- package/styled-system/patterns/float.mjs +52 -0
- package/styled-system/patterns/grid-item.d.ts +25 -0
- package/styled-system/patterns/grid-item.mjs +25 -0
- package/styled-system/patterns/grid.d.ts +24 -0
- package/styled-system/patterns/grid.mjs +27 -0
- package/styled-system/patterns/hstack.d.ts +21 -0
- package/styled-system/patterns/hstack.mjs +24 -0
- package/styled-system/patterns/index.d.ts +21 -0
- package/styled-system/patterns/index.mjs +20 -0
- package/styled-system/patterns/link-overlay.d.ts +20 -0
- package/styled-system/patterns/link-overlay.mjs +24 -0
- package/styled-system/patterns/spacer.d.ts +20 -0
- package/styled-system/patterns/spacer.mjs +21 -0
- package/styled-system/patterns/square.d.ts +20 -0
- package/styled-system/patterns/square.mjs +24 -0
- package/styled-system/patterns/stack.d.ts +23 -0
- package/styled-system/patterns/stack.mjs +24 -0
- package/styled-system/patterns/visually-hidden.d.ts +20 -0
- package/styled-system/patterns/visually-hidden.mjs +18 -0
- package/styled-system/patterns/vstack.d.ts +21 -0
- package/styled-system/patterns/vstack.mjs +24 -0
- package/styled-system/patterns/wrap.d.ts +24 -0
- package/styled-system/patterns/wrap.mjs +25 -0
- package/styled-system/tokens/index.d.ts +9 -0
- package/styled-system/tokens/index.mjs +3176 -0
- package/styled-system/tokens/tokens.d.ts +63 -0
- package/styled-system/types/composition.d.ts +224 -0
- package/styled-system/types/conditions.d.ts +310 -0
- package/styled-system/types/csstype.d.ts +21298 -0
- package/styled-system/types/global.d.ts +20 -0
- package/styled-system/types/index.d.ts +7 -0
- package/styled-system/types/parts.d.ts +8 -0
- package/styled-system/types/pattern.d.ts +78 -0
- package/styled-system/types/prop-type.d.ts +265 -0
- package/styled-system/types/recipe.d.ts +181 -0
- package/styled-system/types/selectors.d.ts +59 -0
- package/styled-system/types/static-css.d.ts +56 -0
- package/styled-system/types/style-props.d.ts +7504 -0
- package/styled-system/types/system-types.d.ts +269 -0
- package/.github/CODEOWNERS +0 -1
- package/.github/FUNDING.yml +0 -1
- package/.github/workflows/automation.yml +0 -13
- package/.github/workflows/chromatic.yml +0 -19
- package/.github/workflows/deployment.yml +0 -32
- package/.github/workflows/integration.yml +0 -15
- package/.github/workflows/storybook-tests.yml +0 -17
- package/.storybook/main.ts +0 -18
- package/.storybook/preview.ts +0 -29
- package/.storybook/test-runner.ts +0 -33
- package/bun.lock +0 -2099
- package/chromatic.config.json +0 -5
- package/eslint.config.js +0 -28
- package/index.html +0 -13
- package/panda.config.ts +0 -61
- package/postcss.config.cjs +0 -5
- package/public/logo.svg +0 -9
- package/src/App.tsx +0 -67
- package/src/assets/Discord.svg +0 -1
- package/src/assets/GitHub.svg +0 -1
- package/src/assets/LinkedIn.svg +0 -1
- package/src/assets/Medium.svg +0 -1
- package/src/assets/YouTube.svg +0 -1
- package/src/components/Button/Button.stories.tsx +0 -115
- package/src/components/Button/Button.test.tsx +0 -108
- package/src/components/Button/Button.tsx +0 -245
- package/src/components/Button/index.tsx +0 -1
- package/src/components/Checkbox/Checkbox.stories.tsx +0 -129
- package/src/components/Checkbox/Checkbox.test.tsx +0 -169
- package/src/components/Checkbox/Checkbox.tsx +0 -190
- package/src/components/Heading/Heading.stories.tsx +0 -72
- package/src/components/Heading/Heading.test.tsx +0 -55
- package/src/components/Heading/Heading.tsx +0 -73
- package/src/components/Heading/index.tsx +0 -1
- package/src/components/Icon/Icon.stories.tsx +0 -106
- package/src/components/Icon/Icon.test.tsx +0 -44
- package/src/components/Icon/Icon.tsx +0 -116
- package/src/components/Icon/index.tsx +0 -1
- package/src/components/Text/Text.stories.tsx +0 -65
- package/src/components/Text/Text.test.tsx +0 -54
- package/src/components/Text/Text.tsx +0 -93
- package/src/components/Text/index.tsx +0 -1
- package/src/index.css +0 -2
- package/src/main.tsx +0 -10
- package/src/setupTests.tsx +0 -5
- package/src/styles/globalCss.ts +0 -43
- package/src/tokens/colors.mdx +0 -100
- package/src/tokens/colors.ts +0 -288
- package/src/tokens/iconography.mdx +0 -15
- package/src/tokens/iconography.tsx +0 -54
- package/src/tokens/typography.mdx +0 -38
- package/src/tokens/typography.ts +0 -132
- package/src/vite-env.d.ts +0 -2
- package/tsconfig.app.json +0 -25
- package/tsconfig.json +0 -7
- package/tsconfig.node.json +0 -22
- package/vite.config.ts +0 -16
|
@@ -0,0 +1,106 @@
|
|
|
1
|
+
import { jsxs as b, jsx as n } from "react/jsx-runtime";
|
|
2
|
+
import "react";
|
|
3
|
+
import "../../css-QiVVeZaw.js";
|
|
4
|
+
import { c as p } from "../../cx-DN21T1EH.js";
|
|
5
|
+
import { c as d } from "../../cva-BrKodHDH.js";
|
|
6
|
+
import { Icon as f } from "../Icon/Icon.js";
|
|
7
|
+
function S({
|
|
8
|
+
invalid: r,
|
|
9
|
+
className: s,
|
|
10
|
+
leadingIcon: t,
|
|
11
|
+
trailingIcon: a,
|
|
12
|
+
disabled: e,
|
|
13
|
+
ref: u,
|
|
14
|
+
...c
|
|
15
|
+
}) {
|
|
16
|
+
const i = (l) => {
|
|
17
|
+
let o;
|
|
18
|
+
return e ? o = "neutral" : r && (o = "danger"), /* @__PURE__ */ n(f, { name: l, size: "md", tone: o, "data-testid": `icon-${l}` });
|
|
19
|
+
};
|
|
20
|
+
return /* @__PURE__ */ b(
|
|
21
|
+
"div",
|
|
22
|
+
{
|
|
23
|
+
className: p(m({ invalid: r }), s),
|
|
24
|
+
"data-disabled": e ? "" : void 0,
|
|
25
|
+
children: [
|
|
26
|
+
t && i(t),
|
|
27
|
+
/* @__PURE__ */ n(
|
|
28
|
+
"input",
|
|
29
|
+
{
|
|
30
|
+
className: h(),
|
|
31
|
+
ref: u,
|
|
32
|
+
disabled: e,
|
|
33
|
+
"aria-invalid": r ? !0 : void 0,
|
|
34
|
+
...c
|
|
35
|
+
}
|
|
36
|
+
),
|
|
37
|
+
a && i(a)
|
|
38
|
+
]
|
|
39
|
+
}
|
|
40
|
+
);
|
|
41
|
+
}
|
|
42
|
+
const m = d({
|
|
43
|
+
base: {
|
|
44
|
+
display: "inline-flex",
|
|
45
|
+
alignItems: "center",
|
|
46
|
+
gap: "8",
|
|
47
|
+
width: "100%",
|
|
48
|
+
height: "12",
|
|
49
|
+
paddingX: "12",
|
|
50
|
+
fontSize: "md",
|
|
51
|
+
position: "relative",
|
|
52
|
+
border: "neutral",
|
|
53
|
+
borderWidth: "md",
|
|
54
|
+
borderRadius: "sm",
|
|
55
|
+
transition: "all 0.2s ease-in-out",
|
|
56
|
+
backgroundColor: "appBg",
|
|
57
|
+
"&:focus-within": {
|
|
58
|
+
outlineStyle: "solid",
|
|
59
|
+
outlineWidth: "lg",
|
|
60
|
+
outlineOffset: "2px",
|
|
61
|
+
borderRadius: "md",
|
|
62
|
+
outlineColor: "border.brand.focus"
|
|
63
|
+
},
|
|
64
|
+
"&:has(input:disabled)": {
|
|
65
|
+
cursor: "not-allowed",
|
|
66
|
+
backgroundColor: "bg.neutral.disabled",
|
|
67
|
+
borderColor: "border.neutral.disabled"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
variants: {
|
|
71
|
+
invalid: {
|
|
72
|
+
true: {
|
|
73
|
+
border: "danger"
|
|
74
|
+
},
|
|
75
|
+
false: {
|
|
76
|
+
"&:hover": {
|
|
77
|
+
borderColor: "border.neutral.hover"
|
|
78
|
+
},
|
|
79
|
+
"&:active": {
|
|
80
|
+
borderColor: "border.neutral.active"
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
}), h = d({
|
|
86
|
+
base: {
|
|
87
|
+
width: "100%",
|
|
88
|
+
height: "100%",
|
|
89
|
+
flex: "1",
|
|
90
|
+
outline: "none",
|
|
91
|
+
border: "none",
|
|
92
|
+
backgroundColor: "transparent",
|
|
93
|
+
color: "fg.neutral",
|
|
94
|
+
fontFamily: "inherit",
|
|
95
|
+
"&::placeholder": {
|
|
96
|
+
color: "fg.neutral.placeholder"
|
|
97
|
+
},
|
|
98
|
+
"&[disabled]": {
|
|
99
|
+
color: "fg.neutral.disabled",
|
|
100
|
+
cursor: "not-allowed"
|
|
101
|
+
}
|
|
102
|
+
}
|
|
103
|
+
});
|
|
104
|
+
export {
|
|
105
|
+
S as TextInput
|
|
106
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { FlexProps } from "../Flex/Flex";
|
|
2
|
+
type Align = "top" | "bottom" | "center" | "between" | "around";
|
|
3
|
+
export interface VStackProps extends Omit<FlexProps, "direction" | "align" | "justify"> {
|
|
4
|
+
/** 세로 배치 방식 */
|
|
5
|
+
reversed?: boolean;
|
|
6
|
+
/** 주축 정렬 방식(세로 정렬) */
|
|
7
|
+
align?: Align;
|
|
8
|
+
}
|
|
9
|
+
/**
|
|
10
|
+
* - 수직 정렬을 위한 추상화 컴포넌트로, 정렬 방식 변경이 필요하면 Flex 컴포넌트를 권장합니다.
|
|
11
|
+
* - `children` 속성을 통해서 자식 요소들을 전달할 수 있습니다.
|
|
12
|
+
* - `as` 속성을 통해서 렌더링할 HTML 요소를 지정할 수 있습니다. 기본값은 `div`입니다.
|
|
13
|
+
* - `role` 속성을 통해서 역할을 지정할 수 있습니다.
|
|
14
|
+
* - `align` 속성을 통해서 세로 정렬 방식을 지정할 수 있습니다. `top`, `bottom`, `center`, `between`, `around` 중 선택 가능하며 기본값은 `top`입니다.
|
|
15
|
+
* - `reversed` 속성을 통해서 세로 배치 방식을 지정할 수 있습니다. 기본값은 `false`입니다.
|
|
16
|
+
* - `gap` 속성을 통해서 요소 간 간격을 지정할 수 있습니다.
|
|
17
|
+
*
|
|
18
|
+
* ### 접근성(Accessibility) 안내
|
|
19
|
+
* - 이미 시맨틱 태그를 쓰면(as=`nav` | `main` | `aside` | `footer` 등) 중복 role 지정은 피하시길 바랍니다.
|
|
20
|
+
* - 접근성을 위해 기본적으로 적절한 HTML 시맨틱 요소를 사용하고 필요시 ARIA 속성을 활용하여 접근성을 향상시킵니다.
|
|
21
|
+
*/
|
|
22
|
+
export declare const VStack: ({ children, as, align, reversed, gap, className, ...rest }: VStackProps) => import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
export {};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import { jsx as l } from "react/jsx-runtime";
|
|
2
|
+
import { Flex as m } from "../Flex/Flex.js";
|
|
3
|
+
const f = ({
|
|
4
|
+
children: t,
|
|
5
|
+
as: n = "div",
|
|
6
|
+
align: e = "top",
|
|
7
|
+
reversed: o = !1,
|
|
8
|
+
gap: r,
|
|
9
|
+
className: a,
|
|
10
|
+
...i
|
|
11
|
+
}) => {
|
|
12
|
+
const c = o ? "columnReverse" : "column", s = {
|
|
13
|
+
top: "start",
|
|
14
|
+
center: "center",
|
|
15
|
+
bottom: "end",
|
|
16
|
+
between: "between",
|
|
17
|
+
around: "around"
|
|
18
|
+
}[e];
|
|
19
|
+
return /* @__PURE__ */ l(
|
|
20
|
+
m,
|
|
21
|
+
{
|
|
22
|
+
as: n,
|
|
23
|
+
direction: c,
|
|
24
|
+
justify: s,
|
|
25
|
+
align: "center",
|
|
26
|
+
gap: r,
|
|
27
|
+
className: a,
|
|
28
|
+
...i,
|
|
29
|
+
children: t
|
|
30
|
+
}
|
|
31
|
+
);
|
|
32
|
+
};
|
|
33
|
+
export {
|
|
34
|
+
f as VStack
|
|
35
|
+
};
|
|
@@ -0,0 +1,212 @@
|
|
|
1
|
+
function m(r) {
|
|
2
|
+
return typeof r == "object" && r != null && !Array.isArray(r);
|
|
3
|
+
}
|
|
4
|
+
var M = (r) => typeof r == "object" && r !== null;
|
|
5
|
+
function _(r) {
|
|
6
|
+
return Object.fromEntries(Object.entries(r ?? {}).filter(([t, o]) => o !== void 0));
|
|
7
|
+
}
|
|
8
|
+
var j = (r) => r === "base";
|
|
9
|
+
function z(r) {
|
|
10
|
+
return r.slice().filter((t) => !j(t));
|
|
11
|
+
}
|
|
12
|
+
function x(r) {
|
|
13
|
+
return String.fromCharCode(r + (r > 25 ? 39 : 97));
|
|
14
|
+
}
|
|
15
|
+
function L(r) {
|
|
16
|
+
let t = "", o;
|
|
17
|
+
for (o = Math.abs(r); o > 52; o = o / 52 | 0) t = x(o % 52) + t;
|
|
18
|
+
return x(o % 52) + t;
|
|
19
|
+
}
|
|
20
|
+
function D(r, t) {
|
|
21
|
+
let o = t.length;
|
|
22
|
+
for (; o; ) r = r * 33 ^ t.charCodeAt(--o);
|
|
23
|
+
return r;
|
|
24
|
+
}
|
|
25
|
+
function X(r) {
|
|
26
|
+
return L(D(5381, r) >>> 0);
|
|
27
|
+
}
|
|
28
|
+
var k = /\s*!(important)?/i;
|
|
29
|
+
function F(r) {
|
|
30
|
+
return typeof r == "string" ? k.test(r) : !1;
|
|
31
|
+
}
|
|
32
|
+
function V(r) {
|
|
33
|
+
return typeof r == "string" ? r.replace(k, "").trim() : r;
|
|
34
|
+
}
|
|
35
|
+
function v(r) {
|
|
36
|
+
return typeof r == "string" ? r.replaceAll(" ", "_") : r;
|
|
37
|
+
}
|
|
38
|
+
var f = (r) => {
|
|
39
|
+
const t = /* @__PURE__ */ new Map();
|
|
40
|
+
return (...e) => {
|
|
41
|
+
const n = JSON.stringify(e);
|
|
42
|
+
if (t.has(n))
|
|
43
|
+
return t.get(n);
|
|
44
|
+
const i = r(...e);
|
|
45
|
+
return t.set(n, i), i;
|
|
46
|
+
};
|
|
47
|
+
}, Y = /* @__PURE__ */ new Set(["__proto__", "constructor", "prototype"]);
|
|
48
|
+
function w(...r) {
|
|
49
|
+
return r.reduce((t, o) => (o && Object.keys(o).forEach((e) => {
|
|
50
|
+
if (Y.has(e)) return;
|
|
51
|
+
const n = t[e], i = o[e];
|
|
52
|
+
m(n) && m(i) ? t[e] = w(n, i) : t[e] = i;
|
|
53
|
+
}), t), {});
|
|
54
|
+
}
|
|
55
|
+
var N = (r) => r != null;
|
|
56
|
+
function h(r, t, o = {}) {
|
|
57
|
+
const { stop: e, getKey: n } = o;
|
|
58
|
+
function i(a, s = []) {
|
|
59
|
+
if (M(a)) {
|
|
60
|
+
const l = {};
|
|
61
|
+
for (const [d, g] of Object.entries(a)) {
|
|
62
|
+
const c = n?.(d, g) ?? d, b = [...s, c];
|
|
63
|
+
if (e?.(a, b))
|
|
64
|
+
return t(a, s);
|
|
65
|
+
const p = i(g, b);
|
|
66
|
+
N(p) && (l[c] = p);
|
|
67
|
+
}
|
|
68
|
+
return l;
|
|
69
|
+
}
|
|
70
|
+
return t(a, s);
|
|
71
|
+
}
|
|
72
|
+
return i(r);
|
|
73
|
+
}
|
|
74
|
+
function G(r, t) {
|
|
75
|
+
return Array.isArray(r) ? r.map((o) => t(o)) : m(r) ? h(r, (o) => t(o)) : t(r);
|
|
76
|
+
}
|
|
77
|
+
function q(r, t) {
|
|
78
|
+
return r.reduce(
|
|
79
|
+
(o, e, n) => {
|
|
80
|
+
const i = t[n];
|
|
81
|
+
return e != null && (o[i] = e), o;
|
|
82
|
+
},
|
|
83
|
+
{}
|
|
84
|
+
);
|
|
85
|
+
}
|
|
86
|
+
function C(r, t, o = !0) {
|
|
87
|
+
const { utility: e, conditions: n } = t, { hasShorthand: i, resolveShorthand: a } = e;
|
|
88
|
+
return h(
|
|
89
|
+
r,
|
|
90
|
+
(s) => Array.isArray(s) ? q(s, n.breakpoints.keys) : s,
|
|
91
|
+
{
|
|
92
|
+
stop: (s) => Array.isArray(s),
|
|
93
|
+
getKey: o ? (s) => i ? a(s) : s : void 0
|
|
94
|
+
}
|
|
95
|
+
);
|
|
96
|
+
}
|
|
97
|
+
var H = {
|
|
98
|
+
shift: (r) => r,
|
|
99
|
+
finalize: (r) => r,
|
|
100
|
+
breakpoints: { keys: [] }
|
|
101
|
+
}, $ = (r) => typeof r == "string" ? r.replaceAll(/[\n\s]+/g, " ") : r;
|
|
102
|
+
function K(r) {
|
|
103
|
+
const { utility: t, hash: o, conditions: e = H } = r, n = (a) => [t.prefix, a].filter(Boolean).join("-"), i = (a, s) => {
|
|
104
|
+
let l;
|
|
105
|
+
if (o) {
|
|
106
|
+
const d = [...e.finalize(a), s];
|
|
107
|
+
l = n(t.toHash(d, X));
|
|
108
|
+
} else
|
|
109
|
+
l = [...e.finalize(a), n(s)].join(":");
|
|
110
|
+
return l;
|
|
111
|
+
};
|
|
112
|
+
return f(({ base: a, ...s } = {}) => {
|
|
113
|
+
const l = Object.assign(s, a), d = C(l, r), g = /* @__PURE__ */ new Set();
|
|
114
|
+
return h(d, (c, b) => {
|
|
115
|
+
if (c == null) return;
|
|
116
|
+
const p = F(c), [P, ...I] = e.shift(b), A = z(I), W = t.transform(P, V($(c)));
|
|
117
|
+
let u = i(A, W.className);
|
|
118
|
+
p && (u = `${u}!`), g.add(u);
|
|
119
|
+
}), Array.from(g).join(" ");
|
|
120
|
+
});
|
|
121
|
+
}
|
|
122
|
+
function U(...r) {
|
|
123
|
+
return r.flat().filter((t) => m(t) && Object.keys(_(t)).length > 0);
|
|
124
|
+
}
|
|
125
|
+
function Z(r) {
|
|
126
|
+
function t(n) {
|
|
127
|
+
const i = U(...n);
|
|
128
|
+
return i.length === 1 ? i : i.map((a) => C(a, r));
|
|
129
|
+
}
|
|
130
|
+
function o(...n) {
|
|
131
|
+
return w(...t(n));
|
|
132
|
+
}
|
|
133
|
+
function e(...n) {
|
|
134
|
+
return Object.assign({}, ...t(n));
|
|
135
|
+
}
|
|
136
|
+
return { mergeCss: f(o), assignCss: e };
|
|
137
|
+
}
|
|
138
|
+
var J = /([A-Z])/g, Q = /^ms-/, rr = f((r) => r.startsWith("--") ? r : r.replace(J, "-$1").replace(Q, "-ms-").toLowerCase()), tr = ["min", "max", "clamp", "calc"], or = new RegExp(`^(${tr.join("|")})\\(.*\\)`), er = (r) => typeof r == "string" && or.test(r), nr = "cm,mm,Q,in,pc,pt,px,em,ex,ch,rem,lh,rlh,vw,vh,vmin,vmax,vb,vi,svw,svh,lvw,lvh,dvw,dvh,cqw,cqh,cqi,cqb,cqmin,cqmax,%", ir = `(?:${nr.split(",").join("|")})`, ar = new RegExp(`^[+-]?[0-9]*.?[0-9]+(?:[eE][+-]?[0-9]+)?${ir}$`), sr = (r) => typeof r == "string" && ar.test(r), lr = (r) => typeof r == "string" && /^var\(--.+\)$/.test(r), xr = {
|
|
139
|
+
map: G,
|
|
140
|
+
isCssFunction: er,
|
|
141
|
+
isCssVar: lr,
|
|
142
|
+
isCssUnit: sr
|
|
143
|
+
}, yr = (r, t) => {
|
|
144
|
+
if (!r?.defaultValues) return t;
|
|
145
|
+
const o = typeof r.defaultValues == "function" ? r.defaultValues(t) : r.defaultValues;
|
|
146
|
+
return Object.assign({}, o, _(t));
|
|
147
|
+
};
|
|
148
|
+
function Sr(r, ...t) {
|
|
149
|
+
const o = Object.getOwnPropertyDescriptors(r), e = Object.keys(o), n = (a) => {
|
|
150
|
+
const s = {};
|
|
151
|
+
for (let l = 0; l < a.length; l++) {
|
|
152
|
+
const d = a[l];
|
|
153
|
+
o[d] && (Object.defineProperty(s, d, o[d]), delete o[d]);
|
|
154
|
+
}
|
|
155
|
+
return s;
|
|
156
|
+
}, i = (a) => n(Array.isArray(a) ? a : e.filter(a));
|
|
157
|
+
return t.map(i).concat(n(e));
|
|
158
|
+
}
|
|
159
|
+
var _r = (...r) => {
|
|
160
|
+
const t = r.reduce((o, e) => (e && e.forEach((n) => o.add(n)), o), /* @__PURE__ */ new Set([]));
|
|
161
|
+
return Array.from(t);
|
|
162
|
+
};
|
|
163
|
+
const dr = "_hover,_focus,_focusWithin,_focusVisible,_disabled,_active,_visited,_target,_readOnly,_readWrite,_empty,_checked,_enabled,_expanded,_highlighted,_complete,_incomplete,_dragging,_before,_after,_firstLetter,_firstLine,_marker,_selection,_file,_backdrop,_first,_last,_only,_even,_odd,_firstOfType,_lastOfType,_onlyOfType,_peerFocus,_peerHover,_peerActive,_peerFocusWithin,_peerFocusVisible,_peerDisabled,_peerChecked,_peerInvalid,_peerExpanded,_peerPlaceholderShown,_groupFocus,_groupHover,_groupActive,_groupFocusWithin,_groupFocusVisible,_groupDisabled,_groupChecked,_groupExpanded,_groupInvalid,_indeterminate,_required,_valid,_invalid,_autofill,_inRange,_outOfRange,_placeholder,_placeholderShown,_pressed,_selected,_grabbed,_underValue,_overValue,_atValue,_default,_optional,_open,_closed,_fullscreen,_loading,_hidden,_current,_currentPage,_currentStep,_today,_unavailable,_rangeStart,_rangeEnd,_now,_topmost,_motionReduce,_motionSafe,_print,_landscape,_portrait,_dark,_light,_osDark,_osLight,_highContrast,_lessContrast,_moreContrast,_ltr,_rtl,_scrollbar,_scrollbarThumb,_scrollbarTrack,_horizontal,_vertical,_icon,_starting,_noscript,_invertedColors,sm,smOnly,smDown,md,mdOnly,mdDown,lg,lgOnly,lgDown,xl,xlOnly,xlDown,2xl,2xlOnly,2xlDown,smToMd,smToLg,smToXl,smTo2xl,mdToLg,mdToXl,mdTo2xl,lgToXl,lgTo2xl,xlTo2xl,@/xs,@/sm,@/md,@/lg,@/xl,@/2xl,@/3xl,@/4xl,@/5xl,@/6xl,@/7xl,@/8xl,base", R = new Set(dr.split(",")), cr = /^@|&|&$/;
|
|
164
|
+
function y(r) {
|
|
165
|
+
return R.has(r) || cr.test(r);
|
|
166
|
+
}
|
|
167
|
+
const gr = /^_/, br = /&|@/;
|
|
168
|
+
function pr(r) {
|
|
169
|
+
return r.map((t) => R.has(t) ? t.replace(gr, "") : br.test(t) ? `[${v(t.trim())}]` : t);
|
|
170
|
+
}
|
|
171
|
+
function mr(r) {
|
|
172
|
+
return r.sort((t, o) => {
|
|
173
|
+
const e = y(t), n = y(o);
|
|
174
|
+
return e && !n ? 1 : !e && n ? -1 : 0;
|
|
175
|
+
});
|
|
176
|
+
}
|
|
177
|
+
const ur = "aspectRatio:asp,boxDecorationBreak:bx-db,zIndex:z,boxSizing:bx-s,objectPosition:obj-p,objectFit:obj-f,overscrollBehavior:ovs-b,overscrollBehaviorX:ovs-bx,overscrollBehaviorY:ovs-by,position:pos/1,top:top,left:left,inset:inset,insetInline:inset-x/insetX,insetBlock:inset-y/insetY,insetBlockEnd:inset-be,insetBlockStart:inset-bs,insetInlineEnd:inset-e/insetEnd/end,insetInlineStart:inset-s/insetStart/start,right:right,bottom:bottom,float:float,visibility:vis,display:d,hideFrom:hide,hideBelow:show,flexBasis:flex-b,flex:flex,flexDirection:flex-d/flexDir,flexGrow:flex-g,flexShrink:flex-sh,gridTemplateColumns:grid-tc,gridTemplateRows:grid-tr,gridColumn:grid-c,gridRow:grid-r,gridColumnStart:grid-cs,gridColumnEnd:grid-ce,gridAutoFlow:grid-af,gridAutoColumns:grid-ac,gridAutoRows:grid-ar,gap:gap,gridGap:grid-g,gridRowGap:grid-rg,gridColumnGap:grid-cg,rowGap:rg,columnGap:cg,justifyContent:jc,alignContent:ac,alignItems:ai,alignSelf:as,padding:p/1,paddingLeft:pl/1,paddingRight:pr/1,paddingTop:pt/1,paddingBottom:pb/1,paddingBlock:py/1/paddingY,paddingBlockEnd:pbe,paddingBlockStart:pbs,paddingInline:px/paddingX/1,paddingInlineEnd:pe/1/paddingEnd,paddingInlineStart:ps/1/paddingStart,marginLeft:ml/1,marginRight:mr/1,marginTop:mt/1,marginBottom:mb/1,margin:m/1,marginBlock:my/1/marginY,marginBlockEnd:mbe,marginBlockStart:mbs,marginInline:mx/1/marginX,marginInlineEnd:me/1/marginEnd,marginInlineStart:ms/1/marginStart,spaceX:sx,spaceY:sy,outlineWidth:ring-w/ringWidth,outlineColor:ring-c/ringColor,outline:ring/1,outlineOffset:ring-o/ringOffset,focusRing:focus-ring,focusVisibleRing:focus-v-ring,focusRingColor:focus-ring-c,focusRingOffset:focus-ring-o,focusRingWidth:focus-ring-w,focusRingStyle:focus-ring-s,divideX:dvd-x,divideY:dvd-y,divideColor:dvd-c,divideStyle:dvd-s,width:w/1,inlineSize:w-is,minWidth:min-w/minW,minInlineSize:min-w-is,maxWidth:max-w/maxW,maxInlineSize:max-w-is,height:h/1,blockSize:h-bs,minHeight:min-h/minH,minBlockSize:min-h-bs,maxHeight:max-h/maxH,maxBlockSize:max-b,boxSize:size,color:c,fontFamily:ff,fontSize:fs,fontSizeAdjust:fs-a,fontPalette:fp,fontKerning:fk,fontFeatureSettings:ff-s,fontWeight:fw,fontSmoothing:fsmt,fontVariant:fv,fontVariantAlternates:fv-alt,fontVariantCaps:fv-caps,fontVariationSettings:fv-s,fontVariantNumeric:fv-num,letterSpacing:ls,lineHeight:lh,textAlign:ta,textDecoration:td,textDecorationColor:td-c,textEmphasisColor:te-c,textDecorationStyle:td-s,textDecorationThickness:td-t,textUnderlineOffset:tu-o,textTransform:tt,textIndent:ti,textShadow:tsh,textShadowColor:tsh-c/textShadowColor,WebkitTextFillColor:wktf-c,textOverflow:tov,verticalAlign:va,wordBreak:wb,textWrap:tw,truncate:trunc,lineClamp:lc,listStyleType:li-t,listStylePosition:li-pos,listStyleImage:li-img,listStyle:li-s,backgroundPosition:bg-p/bgPosition,backgroundPositionX:bg-p-x/bgPositionX,backgroundPositionY:bg-p-y/bgPositionY,backgroundAttachment:bg-a/bgAttachment,backgroundClip:bg-cp/bgClip,background:bg/1,backgroundColor:bg-c/bgColor,backgroundOrigin:bg-o/bgOrigin,backgroundImage:bg-i/bgImage,backgroundRepeat:bg-r/bgRepeat,backgroundBlendMode:bg-bm/bgBlendMode,backgroundSize:bg-s/bgSize,backgroundGradient:bg-grad/bgGradient,backgroundLinear:bg-linear/bgLinear,backgroundRadial:bg-radial/bgRadial,backgroundConic:bg-conic/bgConic,textGradient:txt-grad,gradientFromPosition:grad-from-pos,gradientToPosition:grad-to-pos,gradientFrom:grad-from,gradientTo:grad-to,gradientVia:grad-via,gradientViaPosition:grad-via-pos,borderRadius:bdr/rounded,borderTopLeftRadius:bdr-tl/roundedTopLeft,borderTopRightRadius:bdr-tr/roundedTopRight,borderBottomRightRadius:bdr-br/roundedBottomRight,borderBottomLeftRadius:bdr-bl/roundedBottomLeft,borderTopRadius:bdr-t/roundedTop,borderRightRadius:bdr-r/roundedRight,borderBottomRadius:bdr-b/roundedBottom,borderLeftRadius:bdr-l/roundedLeft,borderStartStartRadius:bdr-ss/roundedStartStart,borderStartEndRadius:bdr-se/roundedStartEnd,borderStartRadius:bdr-s/roundedStart,borderEndStartRadius:bdr-es/roundedEndStart,borderEndEndRadius:bdr-ee/roundedEndEnd,borderEndRadius:bdr-e/roundedEnd,border:bd,borderWidth:bd-w,borderTopWidth:bd-t-w,borderLeftWidth:bd-l-w,borderRightWidth:bd-r-w,borderBottomWidth:bd-b-w,borderBlockStartWidth:bd-bs-w,borderBlockEndWidth:bd-be-w,borderColor:bd-c,borderInline:bd-x/borderX,borderInlineWidth:bd-x-w/borderXWidth,borderInlineColor:bd-x-c/borderXColor,borderBlock:bd-y/borderY,borderBlockWidth:bd-y-w/borderYWidth,borderBlockColor:bd-y-c/borderYColor,borderLeft:bd-l,borderLeftColor:bd-l-c,borderInlineStart:bd-s/borderStart,borderInlineStartWidth:bd-s-w/borderStartWidth,borderInlineStartColor:bd-s-c/borderStartColor,borderRight:bd-r,borderRightColor:bd-r-c,borderInlineEnd:bd-e/borderEnd,borderInlineEndWidth:bd-e-w/borderEndWidth,borderInlineEndColor:bd-e-c/borderEndColor,borderTop:bd-t,borderTopColor:bd-t-c,borderBottom:bd-b,borderBottomColor:bd-b-c,borderBlockEnd:bd-be,borderBlockEndColor:bd-be-c,borderBlockStart:bd-bs,borderBlockStartColor:bd-bs-c,opacity:op,boxShadow:bx-sh/shadow,boxShadowColor:bx-sh-c/shadowColor,mixBlendMode:mix-bm,filter:filter,brightness:brightness,contrast:contrast,grayscale:grayscale,hueRotate:hue-rotate,invert:invert,saturate:saturate,sepia:sepia,dropShadow:drop-shadow,blur:blur,backdropFilter:bkdp,backdropBlur:bkdp-blur,backdropBrightness:bkdp-brightness,backdropContrast:bkdp-contrast,backdropGrayscale:bkdp-grayscale,backdropHueRotate:bkdp-hue-rotate,backdropInvert:bkdp-invert,backdropOpacity:bkdp-opacity,backdropSaturate:bkdp-saturate,backdropSepia:bkdp-sepia,borderCollapse:bd-cl,borderSpacing:bd-sp,borderSpacingX:bd-sx,borderSpacingY:bd-sy,tableLayout:tbl,transitionTimingFunction:trs-tmf,transitionDelay:trs-dly,transitionDuration:trs-dur,transitionProperty:trs-prop,transition:trs,animation:anim,animationName:anim-n,animationTimingFunction:anim-tmf,animationDuration:anim-dur,animationDelay:anim-dly,animationPlayState:anim-ps,animationComposition:anim-comp,animationFillMode:anim-fm,animationDirection:anim-dir,animationIterationCount:anim-ic,animationRange:anim-r,animationState:anim-s,animationRangeStart:anim-rs,animationRangeEnd:anim-re,animationTimeline:anim-tl,transformOrigin:trf-o,transformBox:trf-b,transformStyle:trf-s,transform:trf,rotate:rotate,rotateX:rotate-x,rotateY:rotate-y,rotateZ:rotate-z,scale:scale,scaleX:scale-x,scaleY:scale-y,translate:translate,translateX:translate-x/x,translateY:translate-y/y,translateZ:translate-z/z,accentColor:ac-c,caretColor:ca-c,scrollBehavior:scr-bhv,scrollbar:scr-bar,scrollbarColor:scr-bar-c,scrollbarGutter:scr-bar-g,scrollbarWidth:scr-bar-w,scrollMargin:scr-m,scrollMarginLeft:scr-ml,scrollMarginRight:scr-mr,scrollMarginTop:scr-mt,scrollMarginBottom:scr-mb,scrollMarginBlock:scr-my/scrollMarginY,scrollMarginBlockEnd:scr-mbe,scrollMarginBlockStart:scr-mbt,scrollMarginInline:scr-mx/scrollMarginX,scrollMarginInlineEnd:scr-me,scrollMarginInlineStart:scr-ms,scrollPadding:scr-p,scrollPaddingBlock:scr-py/scrollPaddingY,scrollPaddingBlockStart:scr-pbs,scrollPaddingBlockEnd:scr-pbe,scrollPaddingInline:scr-px/scrollPaddingX,scrollPaddingInlineEnd:scr-pe,scrollPaddingInlineStart:scr-ps,scrollPaddingLeft:scr-pl,scrollPaddingRight:scr-pr,scrollPaddingTop:scr-pt,scrollPaddingBottom:scr-pb,scrollSnapAlign:scr-sa,scrollSnapStop:scrs-s,scrollSnapType:scrs-t,scrollSnapStrictness:scrs-strt,scrollSnapMargin:scrs-m,scrollSnapMarginTop:scrs-mt,scrollSnapMarginBottom:scrs-mb,scrollSnapMarginLeft:scrs-ml,scrollSnapMarginRight:scrs-mr,scrollSnapCoordinate:scrs-c,scrollSnapDestination:scrs-d,scrollSnapPointsX:scrs-px,scrollSnapPointsY:scrs-py,scrollSnapTypeX:scrs-tx,scrollSnapTypeY:scrs-ty,scrollTimeline:scrtl,scrollTimelineAxis:scrtl-a,scrollTimelineName:scrtl-n,touchAction:tch-a,userSelect:us,overflow:ov,overflowWrap:ov-wrap,overflowX:ov-x,overflowY:ov-y,overflowAnchor:ov-a,overflowBlock:ov-b,overflowInline:ov-i,overflowClipBox:ovcp-bx,overflowClipMargin:ovcp-m,overscrollBehaviorBlock:ovs-bb,overscrollBehaviorInline:ovs-bi,fill:fill,stroke:stk,strokeWidth:stk-w,strokeDasharray:stk-dsh,strokeDashoffset:stk-do,strokeLinecap:stk-lc,strokeLinejoin:stk-lj,strokeMiterlimit:stk-ml,strokeOpacity:stk-op,srOnly:sr,debug:debug,appearance:ap,backfaceVisibility:bfv,clipPath:cp-path,hyphens:hy,mask:msk,maskImage:msk-i,maskSize:msk-s,textSizeAdjust:txt-adj,container:cq,containerName:cq-n,containerType:cq-t,cursor:cursor,textStyle:textStyle", B = /* @__PURE__ */ new Map(), E = /* @__PURE__ */ new Map();
|
|
178
|
+
ur.split(",").forEach((r) => {
|
|
179
|
+
const [t, o] = r.split(":"), [e, ...n] = o.split("/");
|
|
180
|
+
B.set(t, e), n.length && n.forEach((i) => {
|
|
181
|
+
E.set(i === "1" ? e : i, t);
|
|
182
|
+
});
|
|
183
|
+
});
|
|
184
|
+
const S = (r) => E.get(r) || r, T = {
|
|
185
|
+
conditions: {
|
|
186
|
+
shift: mr,
|
|
187
|
+
finalize: pr,
|
|
188
|
+
breakpoints: { keys: ["base", "sm", "md", "lg", "xl", "2xl"] }
|
|
189
|
+
},
|
|
190
|
+
utility: {
|
|
191
|
+
transform: (r, t) => {
|
|
192
|
+
const o = S(r);
|
|
193
|
+
return { className: `${B.get(o) || rr(o)}_${v(t)}` };
|
|
194
|
+
},
|
|
195
|
+
hasShorthand: !0,
|
|
196
|
+
toHash: (r, t) => t(r.join(":")),
|
|
197
|
+
resolveShorthand: S
|
|
198
|
+
}
|
|
199
|
+
}, fr = K(T), hr = (...r) => fr(O(...r));
|
|
200
|
+
hr.raw = (...r) => O(...r);
|
|
201
|
+
const { mergeCss: O } = Z(T);
|
|
202
|
+
export {
|
|
203
|
+
_ as a,
|
|
204
|
+
w as b,
|
|
205
|
+
hr as c,
|
|
206
|
+
O as d,
|
|
207
|
+
yr as g,
|
|
208
|
+
f as m,
|
|
209
|
+
xr as p,
|
|
210
|
+
Sr as s,
|
|
211
|
+
_r as u
|
|
212
|
+
};
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { m as g, a as y, s as C, u as P, b as h, d as u, c as E } from "./css-QiVVeZaw.js";
|
|
2
|
+
const V = (n) => ({
|
|
3
|
+
base: {},
|
|
4
|
+
variants: {},
|
|
5
|
+
defaultVariants: {},
|
|
6
|
+
compoundVariants: [],
|
|
7
|
+
...n
|
|
8
|
+
});
|
|
9
|
+
function K(n) {
|
|
10
|
+
const { base: f, variants: s, defaultVariants: e, compoundVariants: m } = V(n), i = (t) => ({ ...e, ...y(t) });
|
|
11
|
+
function r(t = {}) {
|
|
12
|
+
const a = i(t);
|
|
13
|
+
let o = { ...f };
|
|
14
|
+
for (const [d, l] of Object.entries(a))
|
|
15
|
+
s[d]?.[l] && (o = u(o, s[d][l]));
|
|
16
|
+
const c = M(m, a);
|
|
17
|
+
return u(o, c);
|
|
18
|
+
}
|
|
19
|
+
function v(t) {
|
|
20
|
+
const a = V(t.config), o = P(t.variantKeys, Object.keys(s));
|
|
21
|
+
return K({
|
|
22
|
+
base: u(f, a.base),
|
|
23
|
+
variants: Object.fromEntries(
|
|
24
|
+
o.map((c) => [c, u(s[c], a.variants[c])])
|
|
25
|
+
),
|
|
26
|
+
defaultVariants: h(e, a.defaultVariants),
|
|
27
|
+
compoundVariants: [...m, ...a.compoundVariants]
|
|
28
|
+
});
|
|
29
|
+
}
|
|
30
|
+
function p(t) {
|
|
31
|
+
return E(r(t));
|
|
32
|
+
}
|
|
33
|
+
const b = Object.keys(s);
|
|
34
|
+
function j(t) {
|
|
35
|
+
return C(t, b);
|
|
36
|
+
}
|
|
37
|
+
const O = Object.fromEntries(Object.entries(s).map(([t, a]) => [t, Object.keys(a)]));
|
|
38
|
+
return Object.assign(g(p), {
|
|
39
|
+
__cva__: !0,
|
|
40
|
+
variantMap: O,
|
|
41
|
+
variantKeys: b,
|
|
42
|
+
raw: r,
|
|
43
|
+
config: n,
|
|
44
|
+
merge: v,
|
|
45
|
+
splitVariantProps: j,
|
|
46
|
+
getVariantProps: i
|
|
47
|
+
});
|
|
48
|
+
}
|
|
49
|
+
function M(n, f) {
|
|
50
|
+
let s = {};
|
|
51
|
+
return n.forEach((e) => {
|
|
52
|
+
Object.entries(e).every(([i, r]) => i === "css" ? !0 : (Array.isArray(r) ? r : [r]).some((p) => f[i] === p)) && (s = u(s, e.css));
|
|
53
|
+
}), s;
|
|
54
|
+
}
|
|
55
|
+
export {
|
|
56
|
+
K as c
|
|
57
|
+
};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import { c as o, g as f, p as l } from "./css-QiVVeZaw.js";
|
|
2
|
+
const n = {
|
|
3
|
+
transform(t) {
|
|
4
|
+
const { direction: s, align: e, justify: r, wrap: x, basis: g, grow: p, shrink: y, ...u } = t;
|
|
5
|
+
return {
|
|
6
|
+
display: "flex",
|
|
7
|
+
flexDirection: s,
|
|
8
|
+
alignItems: e,
|
|
9
|
+
justifyContent: r,
|
|
10
|
+
flexWrap: x,
|
|
11
|
+
flexBasis: g,
|
|
12
|
+
flexGrow: p,
|
|
13
|
+
flexShrink: y,
|
|
14
|
+
...u
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
}, i = (t = {}) => {
|
|
18
|
+
const s = f(n, t);
|
|
19
|
+
return n.transform(s, l);
|
|
20
|
+
}, m = (t) => o(i(t));
|
|
21
|
+
m.raw = i;
|
|
22
|
+
const a = {
|
|
23
|
+
transform(t) {
|
|
24
|
+
const { justify: s, gap: e, ...r } = t;
|
|
25
|
+
return {
|
|
26
|
+
display: "flex",
|
|
27
|
+
alignItems: "center",
|
|
28
|
+
justifyContent: s,
|
|
29
|
+
gap: e,
|
|
30
|
+
flexDirection: "row",
|
|
31
|
+
...r
|
|
32
|
+
};
|
|
33
|
+
},
|
|
34
|
+
defaultValues: { gap: "8px" }
|
|
35
|
+
}, c = (t = {}) => {
|
|
36
|
+
const s = f(a, t);
|
|
37
|
+
return a.transform(s, l);
|
|
38
|
+
}, w = (t) => o(c(t));
|
|
39
|
+
w.raw = c;
|
|
40
|
+
export {
|
|
41
|
+
m as f,
|
|
42
|
+
w as h
|
|
43
|
+
};
|