@sakura-ui/sakura-ui 0.3.0 → 0.4.2

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.
Files changed (133) hide show
  1. package/README.md +71 -0
  2. package/package.json +26 -25
  3. package/packages/core/package.json +10 -8
  4. package/packages/core/src/components/Button.tsx +1 -1
  5. package/packages/core/src/components/Card.tsx +8 -3
  6. package/packages/core/src/components/IconButton.tsx +1 -1
  7. package/packages/core/src/components/LangSelector.tsx +2 -2
  8. package/packages/core/src/components/Link.tsx +0 -1
  9. package/packages/core/src/components/LinkCard.tsx +87 -52
  10. package/packages/core/src/components/MenuButton.tsx +2 -2
  11. package/packages/core/src/components/NavigationItem.tsx +1 -1
  12. package/packages/core/src/components/NotificationBanner.tsx +20 -0
  13. package/packages/core/src/components/PopoverMenu.tsx +1 -0
  14. package/packages/core/src/components/buttonStyle.ts +1 -1
  15. package/packages/core/src/components/index.ts +1 -1
  16. package/packages/core/src/icons/index.ts +1 -1
  17. package/packages/core/src/index.ts +1 -0
  18. package/packages/core/vite.config.ts +2 -1
  19. package/packages/forms/.turbo/turbo-build.log +12 -22
  20. package/packages/forms/dist/index.cjs.js +52 -79
  21. package/packages/forms/dist/index.es.js +455 -646
  22. package/packages/forms/dist/types/components/Checkbox.d.ts +2 -2
  23. package/packages/forms/dist/types/components/Checkbox.d.ts.map +1 -1
  24. package/packages/forms/dist/types/components/FieldsetControl.d.ts +2 -2
  25. package/packages/forms/dist/types/components/FieldsetControl.d.ts.map +1 -1
  26. package/packages/forms/dist/types/components/FileInput.d.ts +2 -2
  27. package/packages/forms/dist/types/components/FileInput.d.ts.map +1 -1
  28. package/packages/forms/dist/types/components/Input.d.ts +2 -2
  29. package/packages/forms/dist/types/components/Input.d.ts.map +1 -1
  30. package/packages/forms/dist/types/components/LabelControl.d.ts +2 -2
  31. package/packages/forms/dist/types/components/LabelControl.d.ts.map +1 -1
  32. package/packages/forms/dist/types/components/Radio.d.ts +2 -2
  33. package/packages/forms/dist/types/components/Radio.d.ts.map +1 -1
  34. package/packages/forms/dist/types/components/Select.d.ts +2 -2
  35. package/packages/forms/dist/types/components/Select.d.ts.map +1 -1
  36. package/packages/forms/dist/types/components/Textarea.d.ts +2 -2
  37. package/packages/forms/dist/types/components/Textarea.d.ts.map +1 -1
  38. package/packages/forms/dist/types/components/controlled/CheckboxGroup.d.ts +1 -1
  39. package/packages/forms/dist/types/components/controlled/RadioGroup.d.ts +1 -1
  40. package/packages/forms/dist/types/components/inputStyle.d.ts +1 -1
  41. package/packages/forms/dist/types/components/inputStyle.d.ts.map +1 -1
  42. package/packages/forms/node_modules/.bin/autoprefixer +44 -6
  43. package/packages/forms/package.json +9 -7
  44. package/packages/forms/src/components/Checkbox.tsx +1 -2
  45. package/packages/forms/src/components/FileInput.tsx +3 -3
  46. package/packages/forms/src/components/Input.tsx +0 -1
  47. package/packages/forms/src/components/Radio.tsx +0 -1
  48. package/packages/forms/src/components/Select.tsx +0 -1
  49. package/packages/forms/src/components/Textarea.tsx +0 -1
  50. package/packages/forms/tests/FieldsetControl.test.tsx +8 -2
  51. package/packages/forms/tests/FileInput.test.tsx +30 -5
  52. package/packages/forms/tests/LabelControl.test.tsx +8 -2
  53. package/packages/forms/vite.config.ts +2 -1
  54. package/packages/helper/.turbo/turbo-build.log +12 -23
  55. package/packages/helper/dist/index.cjs.js +7 -9
  56. package/packages/helper/dist/index.es.js +23 -23
  57. package/packages/helper/dist/types/calc.d.ts.map +1 -1
  58. package/packages/helper/dist/types/cx.d.ts.map +1 -1
  59. package/packages/helper/dist/types/styles.d.ts +9 -9
  60. package/packages/helper/dist/types/styles.d.ts.map +1 -1
  61. package/packages/helper/dist/types/treefy.d.ts.map +1 -1
  62. package/packages/helper/node_modules/.bin/vitest +55 -0
  63. package/packages/helper/package.json +13 -3
  64. package/packages/helper/src/cx.ts +1 -1
  65. package/packages/helper/src/styles.ts +2 -4
  66. package/packages/helper/src/treefy.ts +3 -1
  67. package/packages/helper/tests/calc.test.ts +22 -0
  68. package/packages/helper/tests/cx.test.ts +30 -0
  69. package/packages/helper/tests/querySelector.test.ts +24 -0
  70. package/packages/helper/tests/treefy.test.ts +111 -0
  71. package/packages/helper/tests/vitest.setup.ts +2 -0
  72. package/packages/markdown/.turbo/turbo-build.log +12 -22
  73. package/packages/markdown/dist/index.cjs.js +37 -63
  74. package/packages/markdown/dist/index.es.js +4287 -4425
  75. package/packages/markdown/dist/types/components/Markdown.d.ts.map +1 -1
  76. package/packages/markdown/dist/types/plugins/attr.d.ts.map +1 -1
  77. package/packages/markdown/dist/types/plugins/card.d.ts.map +1 -1
  78. package/packages/markdown/dist/types/plugins/cell.d.ts.map +1 -1
  79. package/packages/markdown/dist/types/plugins/faq.d.ts.map +1 -1
  80. package/packages/markdown/dist/types/plugins/grid.d.ts.map +1 -1
  81. package/packages/markdown/dist/types/plugins/headings.d.ts +3 -1
  82. package/packages/markdown/dist/types/plugins/headings.d.ts.map +1 -1
  83. package/packages/markdown/dist/types/plugins/helper.d.ts.map +1 -1
  84. package/packages/markdown/dist/types/plugins/linkButton.d.ts.map +1 -1
  85. package/packages/markdown/dist/types/plugins/youtube.d.ts.map +1 -1
  86. package/packages/markdown/node_modules/.bin/autoprefixer +44 -6
  87. package/packages/markdown/package.json +16 -15
  88. package/packages/markdown/src/components/Markdown.tsx +4 -0
  89. package/packages/markdown/src/plugins/grid.ts +4 -1
  90. package/packages/markdown/src/plugins/headings.ts +6 -3
  91. package/packages/markdown/src/plugins/linkButton.ts +2 -1
  92. package/packages/markdown/src/plugins/youtube.ts +5 -4
  93. package/packages/tailwind-theme-plugin/#package.json# +51 -0
  94. package/packages/tailwind-theme-plugin/.turbo/turbo-build.log +12 -22
  95. package/packages/tailwind-theme-plugin/dist/index.cjs.js +1 -1
  96. package/packages/tailwind-theme-plugin/dist/index.es.js +1111 -1477
  97. package/packages/tailwind-theme-plugin/dist/types/index.d.ts +1 -4
  98. package/packages/tailwind-theme-plugin/dist/types/index.d.ts.map +1 -1
  99. package/packages/tailwind-theme-plugin/node_modules/.bin/autoprefixer +44 -6
  100. package/packages/tailwind-theme-plugin/package.json +8 -6
  101. package/packages/tailwind-theme-plugin/src/index.ts +15 -58
  102. package/packages/tailwind-theme-plugin/vite.config.ts +2 -0
  103. package/packages/forms/node_modules/.bin/tailwind +0 -17
  104. package/packages/forms/node_modules/.bin/tailwindcss +0 -17
  105. package/packages/forms/node_modules/.bin/ts-node +0 -17
  106. package/packages/forms/node_modules/.bin/ts-node-cwd +0 -17
  107. package/packages/forms/node_modules/.bin/ts-node-esm +0 -17
  108. package/packages/forms/node_modules/.bin/ts-node-script +0 -17
  109. package/packages/forms/node_modules/.bin/ts-node-transpile-only +0 -17
  110. package/packages/forms/node_modules/.bin/ts-script +0 -17
  111. package/packages/forms/node_modules/.bin/tsc +0 -17
  112. package/packages/forms/node_modules/.bin/tsserver +0 -17
  113. package/packages/forms/node_modules/.vite/vitest/results.json +0 -1
  114. package/packages/markdown/node_modules/.bin/tailwind +0 -17
  115. package/packages/markdown/node_modules/.bin/tailwindcss +0 -17
  116. package/packages/markdown/node_modules/.bin/ts-node +0 -17
  117. package/packages/markdown/node_modules/.bin/ts-node-cwd +0 -17
  118. package/packages/markdown/node_modules/.bin/ts-node-esm +0 -17
  119. package/packages/markdown/node_modules/.bin/ts-node-script +0 -17
  120. package/packages/markdown/node_modules/.bin/ts-node-transpile-only +0 -17
  121. package/packages/markdown/node_modules/.bin/ts-script +0 -17
  122. package/packages/markdown/node_modules/.bin/tsc +0 -17
  123. package/packages/markdown/node_modules/.bin/tsserver +0 -17
  124. package/packages/tailwind-theme-plugin/node_modules/.bin/tailwind +0 -17
  125. package/packages/tailwind-theme-plugin/node_modules/.bin/tailwindcss +0 -17
  126. package/packages/tailwind-theme-plugin/node_modules/.bin/ts-node +0 -17
  127. package/packages/tailwind-theme-plugin/node_modules/.bin/ts-node-cwd +0 -17
  128. package/packages/tailwind-theme-plugin/node_modules/.bin/ts-node-esm +0 -17
  129. package/packages/tailwind-theme-plugin/node_modules/.bin/ts-node-script +0 -17
  130. package/packages/tailwind-theme-plugin/node_modules/.bin/ts-node-transpile-only +0 -17
  131. package/packages/tailwind-theme-plugin/node_modules/.bin/ts-script +0 -17
  132. package/packages/tailwind-theme-plugin/node_modules/.bin/tsc +0 -17
  133. package/packages/tailwind-theme-plugin/node_modules/.bin/tsserver +0 -17
@@ -1,329 +1,148 @@
1
1
  import R from "react";
2
- var z = { exports: {} }, q = {};
3
- /**
4
- * @license React
5
- * react-jsx-runtime.production.js
6
- *
7
- * Copyright (c) Meta Platforms, Inc. and affiliates.
8
- *
9
- * This source code is licensed under the MIT license found in the
10
- * LICENSE file in the root directory of this source tree.
11
- */
12
- var ye;
13
- function Me() {
14
- if (ye) return q;
15
- ye = 1;
16
- var s = Symbol.for("react.transitional.element"), d = Symbol.for("react.fragment");
17
- function f(b, i, o) {
18
- var n = null;
19
- if (o !== void 0 && (n = "" + o), i.key !== void 0 && (n = "" + i.key), "key" in i) {
20
- o = {};
21
- for (var g in i)
22
- g !== "key" && (o[g] = i[g]);
23
- } else o = i;
24
- return i = o.ref, {
25
- $$typeof: s,
26
- type: b,
27
- key: n,
28
- ref: i !== void 0 ? i : null,
29
- props: o
2
+ var I = { exports: {} }, E = {};
3
+ var W;
4
+ function fe() {
5
+ if (W) return E;
6
+ W = 1;
7
+ var r = /* @__PURE__ */ Symbol.for("react.transitional.element"), n = /* @__PURE__ */ Symbol.for("react.fragment");
8
+ function d(i, a, t) {
9
+ var o = null;
10
+ if (t !== void 0 && (o = "" + t), a.key !== void 0 && (o = "" + a.key), "key" in a) {
11
+ t = {};
12
+ for (var u in a)
13
+ u !== "key" && (t[u] = a[u]);
14
+ } else t = a;
15
+ return a = t.ref, {
16
+ $$typeof: r,
17
+ type: i,
18
+ key: o,
19
+ ref: a !== void 0 ? a : null,
20
+ props: t
30
21
  };
31
22
  }
32
- return q.Fragment = d, q.jsx = f, q.jsxs = f, q;
23
+ return E.Fragment = n, E.jsx = d, E.jsxs = d, E;
33
24
  }
34
- var M = {};
35
- /**
36
- * @license React
37
- * react-jsx-runtime.development.js
38
- *
39
- * Copyright (c) Meta Platforms, Inc. and affiliates.
40
- *
41
- * This source code is licensed under the MIT license found in the
42
- * LICENSE file in the root directory of this source tree.
43
- */
44
- var Ee;
45
- function Ye() {
46
- return Ee || (Ee = 1, process.env.NODE_ENV !== "production" && function() {
47
- function s(e) {
25
+ var _ = {};
26
+ var B;
27
+ function pe() {
28
+ return B || (B = 1, process.env.NODE_ENV !== "production" && (function() {
29
+ function r(e) {
48
30
  if (e == null) return null;
49
31
  if (typeof e == "function")
50
- return e.$$typeof === $e ? null : e.displayName || e.name || null;
32
+ return e.$$typeof === de ? null : e.displayName || e.name || null;
51
33
  if (typeof e == "string") return e;
52
34
  switch (e) {
53
- case U:
35
+ case k:
54
36
  return "Fragment";
55
- case Pe:
56
- return "Portal";
57
- case se:
37
+ case re:
58
38
  return "Profiler";
59
- case te:
39
+ case ee:
60
40
  return "StrictMode";
61
- case G:
41
+ case ae:
62
42
  return "Suspense";
63
- case H:
43
+ case oe:
64
44
  return "SuspenseList";
45
+ case ie:
46
+ return "Activity";
65
47
  }
66
48
  if (typeof e == "object")
67
49
  switch (typeof e.tag == "number" && console.error(
68
50
  "Received an unexpected object in getComponentNameFromType(). This is likely a bug in React. Please file an issue."
69
51
  ), e.$$typeof) {
70
- case le:
71
- return (e.displayName || "Context") + ".Provider";
72
- case oe:
52
+ case K:
53
+ return "Portal";
54
+ case se:
55
+ return e.displayName || "Context";
56
+ case te:
73
57
  return (e._context.displayName || "Context") + ".Consumer";
74
- case F:
75
- var r = e.render;
76
- return e = e.displayName, e || (e = r.displayName || r.name || "", e = e !== "" ? "ForwardRef(" + e + ")" : "ForwardRef"), e;
77
- case J:
78
- return r = e.displayName || null, r !== null ? r : s(e.type) || "Memo";
79
- case V:
80
- r = e._payload, e = e._init;
58
+ case le:
59
+ var l = e.render;
60
+ return e = e.displayName, e || (e = l.displayName || l.name || "", e = e !== "" ? "ForwardRef(" + e + ")" : "ForwardRef"), e;
61
+ case ne:
62
+ return l = e.displayName || null, l !== null ? l : r(e.type) || "Memo";
63
+ case P:
64
+ l = e._payload, e = e._init;
81
65
  try {
82
- return s(e(r));
66
+ return r(e(l));
83
67
  } catch {
84
68
  }
85
69
  }
86
70
  return null;
87
71
  }
88
- function d(e) {
72
+ function n(e) {
89
73
  return "" + e;
90
74
  }
91
- function f(e) {
75
+ function d(e) {
92
76
  try {
93
- d(e);
94
- var r = !1;
77
+ n(e);
78
+ var l = !1;
95
79
  } catch {
96
- r = !0;
80
+ l = !0;
97
81
  }
98
- if (r) {
99
- r = console;
100
- var t = r.error, u = typeof Symbol == "function" && Symbol.toStringTag && e[Symbol.toStringTag] || e.constructor.name || "Object";
101
- return t.call(
102
- r,
82
+ if (l) {
83
+ l = console;
84
+ var p = l.error, b = typeof Symbol == "function" && Symbol.toStringTag && e[Symbol.toStringTag] || e.constructor.name || "Object";
85
+ return p.call(
86
+ l,
103
87
  "The provided key is an unsupported type %s. This value must be coerced to a string before using it here.",
104
- u
105
- ), d(e);
88
+ b
89
+ ), n(e);
106
90
  }
107
91
  }
108
- function b() {
109
- }
110
- function i() {
111
- if ($ === 0) {
112
- ne = console.log, ce = console.info, de = console.warn, ue = console.error, fe = console.group, be = console.groupCollapsed, ge = console.groupEnd;
113
- var e = {
114
- configurable: !0,
115
- enumerable: !0,
116
- value: b,
117
- writable: !0
118
- };
119
- Object.defineProperties(console, {
120
- info: e,
121
- log: e,
122
- warn: e,
123
- error: e,
124
- group: e,
125
- groupCollapsed: e,
126
- groupEnd: e
127
- });
128
- }
129
- $++;
130
- }
131
- function o() {
132
- if ($--, $ === 0) {
133
- var e = { configurable: !0, enumerable: !0, writable: !0 };
134
- Object.defineProperties(console, {
135
- log: S({}, e, { value: ne }),
136
- info: S({}, e, { value: ce }),
137
- warn: S({}, e, { value: de }),
138
- error: S({}, e, { value: ue }),
139
- group: S({}, e, { value: fe }),
140
- groupCollapsed: S({}, e, { value: be }),
141
- groupEnd: S({}, e, { value: ge })
142
- });
143
- }
144
- 0 > $ && console.error(
145
- "disabledDepth fell below zero. This is a bug in React. Please file an issue."
146
- );
147
- }
148
- function n(e) {
149
- if (X === void 0)
150
- try {
151
- throw Error();
152
- } catch (t) {
153
- var r = t.stack.trim().match(/\n( *(at )?)/);
154
- X = r && r[1] || "", pe = -1 < t.stack.indexOf(`
155
- at`) ? " (<anonymous>)" : -1 < t.stack.indexOf("@") ? "@unknown:0:0" : "";
156
- }
157
- return `
158
- ` + X + e + pe;
159
- }
160
- function g(e, r) {
161
- if (!e || Z) return "";
162
- var t = Q.get(e);
163
- if (t !== void 0) return t;
164
- Z = !0, t = Error.prepareStackTrace, Error.prepareStackTrace = void 0;
165
- var u = null;
166
- u = I.H, I.H = null, i();
92
+ function i(e) {
93
+ if (e === k) return "<>";
94
+ if (typeof e == "object" && e !== null && e.$$typeof === P)
95
+ return "<...>";
167
96
  try {
168
- var v = {
169
- DetermineComponentFrameRoot: function() {
170
- try {
171
- if (r) {
172
- var C = function() {
173
- throw Error();
174
- };
175
- if (Object.defineProperty(C.prototype, "props", {
176
- set: function() {
177
- throw Error();
178
- }
179
- }), typeof Reflect == "object" && Reflect.construct) {
180
- try {
181
- Reflect.construct(C, []);
182
- } catch (T) {
183
- var Y = T;
184
- }
185
- Reflect.construct(e, [], C);
186
- } else {
187
- try {
188
- C.call();
189
- } catch (T) {
190
- Y = T;
191
- }
192
- e.call(C.prototype);
193
- }
194
- } else {
195
- try {
196
- throw Error();
197
- } catch (T) {
198
- Y = T;
199
- }
200
- (C = e()) && typeof C.catch == "function" && C.catch(function() {
201
- });
202
- }
203
- } catch (T) {
204
- if (T && Y && typeof T.stack == "string")
205
- return [T.stack, Y.stack];
206
- }
207
- return [null, null];
208
- }
209
- };
210
- v.DetermineComponentFrameRoot.displayName = "DetermineComponentFrameRoot";
211
- var x = Object.getOwnPropertyDescriptor(
212
- v.DetermineComponentFrameRoot,
213
- "name"
214
- );
215
- x && x.configurable && Object.defineProperty(
216
- v.DetermineComponentFrameRoot,
217
- "name",
218
- { value: "DetermineComponentFrameRoot" }
219
- );
220
- var a = v.DetermineComponentFrameRoot(), w = a[0], A = a[1];
221
- if (w && A) {
222
- var h = w.split(`
223
- `), P = A.split(`
224
- `);
225
- for (a = x = 0; x < h.length && !h[x].includes(
226
- "DetermineComponentFrameRoot"
227
- ); )
228
- x++;
229
- for (; a < P.length && !P[a].includes(
230
- "DetermineComponentFrameRoot"
231
- ); )
232
- a++;
233
- if (x === h.length || a === P.length)
234
- for (x = h.length - 1, a = P.length - 1; 1 <= x && 0 <= a && h[x] !== P[a]; )
235
- a--;
236
- for (; 1 <= x && 0 <= a; x--, a--)
237
- if (h[x] !== P[a]) {
238
- if (x !== 1 || a !== 1)
239
- do
240
- if (x--, a--, 0 > a || h[x] !== P[a]) {
241
- var O = `
242
- ` + h[x].replace(
243
- " at new ",
244
- " at "
245
- );
246
- return e.displayName && O.includes("<anonymous>") && (O = O.replace("<anonymous>", e.displayName)), typeof e == "function" && Q.set(e, O), O;
247
- }
248
- while (1 <= x && 0 <= a);
249
- break;
250
- }
251
- }
252
- } finally {
253
- Z = !1, I.H = u, o(), Error.prepareStackTrace = t;
254
- }
255
- return h = (h = e ? e.displayName || e.name : "") ? n(h) : "", typeof e == "function" && Q.set(e, h), h;
256
- }
257
- function c(e) {
258
- if (e == null) return "";
259
- if (typeof e == "function") {
260
- var r = e.prototype;
261
- return g(
262
- e,
263
- !(!r || !r.isReactComponent)
264
- );
265
- }
266
- if (typeof e == "string") return n(e);
267
- switch (e) {
268
- case G:
269
- return n("Suspense");
270
- case H:
271
- return n("SuspenseList");
97
+ var l = r(e);
98
+ return l ? "<" + l + ">" : "<...>";
99
+ } catch {
100
+ return "<...>";
272
101
  }
273
- if (typeof e == "object")
274
- switch (e.$$typeof) {
275
- case F:
276
- return e = g(e.render, !1), e;
277
- case J:
278
- return c(e.type);
279
- case V:
280
- r = e._payload, e = e._init;
281
- try {
282
- return c(e(r));
283
- } catch {
284
- }
285
- }
286
- return "";
287
102
  }
288
- function m() {
289
- var e = I.A;
103
+ function a() {
104
+ var e = C.A;
290
105
  return e === null ? null : e.getOwner();
291
106
  }
292
- function p(e) {
293
- if (ie.call(e, "key")) {
294
- var r = Object.getOwnPropertyDescriptor(e, "key").get;
295
- if (r && r.isReactWarning) return !1;
107
+ function t() {
108
+ return Error("react-stack-top-frame");
109
+ }
110
+ function o(e) {
111
+ if (q.call(e, "key")) {
112
+ var l = Object.getOwnPropertyDescriptor(e, "key").get;
113
+ if (l && l.isReactWarning) return !1;
296
114
  }
297
115
  return e.key !== void 0;
298
116
  }
299
- function y(e, r) {
300
- function t() {
301
- xe || (xe = !0, console.error(
117
+ function u(e, l) {
118
+ function p() {
119
+ F || (F = !0, console.error(
302
120
  "%s: `key` is not a prop. Trying to access it will result in `undefined` being returned. If you need to access the same value within the child component, you should pass it as a different prop. (https://react.dev/link/special-props)",
303
- r
121
+ l
304
122
  ));
305
123
  }
306
- t.isReactWarning = !0, Object.defineProperty(e, "key", {
307
- get: t,
124
+ p.isReactWarning = !0, Object.defineProperty(e, "key", {
125
+ get: p,
308
126
  configurable: !0
309
127
  });
310
128
  }
311
- function E() {
312
- var e = s(this.type);
313
- return me[e] || (me[e] = !0, console.error(
129
+ function c() {
130
+ var e = r(this.type);
131
+ return Y[e] || (Y[e] = !0, console.error(
314
132
  "Accessing element.ref was removed in React 19. ref is now a regular prop. It will be removed from the JSX Element type in a future release."
315
133
  )), e = this.props.ref, e !== void 0 ? e : null;
316
134
  }
317
- function j(e, r, t, u, v, x) {
318
- return t = x.ref, e = {
319
- $$typeof: B,
135
+ function x(e, l, p, b, w, A) {
136
+ var m = p.ref;
137
+ return e = {
138
+ $$typeof: M,
320
139
  type: e,
321
- key: r,
322
- props: x,
323
- _owner: v
324
- }, (t !== void 0 ? t : null) !== null ? Object.defineProperty(e, "ref", {
140
+ key: l,
141
+ props: p,
142
+ _owner: b
143
+ }, (m !== void 0 ? m : null) !== null ? Object.defineProperty(e, "ref", {
325
144
  enumerable: !1,
326
- get: E
145
+ get: c
327
146
  }) : Object.defineProperty(e, "ref", { enumerable: !1, value: null }), e._store = {}, Object.defineProperty(e._store, "validated", {
328
147
  configurable: !1,
329
148
  enumerable: !1,
@@ -334,168 +153,167 @@ function Ye() {
334
153
  enumerable: !1,
335
154
  writable: !0,
336
155
  value: null
156
+ }), Object.defineProperty(e, "_debugStack", {
157
+ configurable: !1,
158
+ enumerable: !1,
159
+ writable: !0,
160
+ value: w
161
+ }), Object.defineProperty(e, "_debugTask", {
162
+ configurable: !1,
163
+ enumerable: !1,
164
+ writable: !0,
165
+ value: A
337
166
  }), Object.freeze && (Object.freeze(e.props), Object.freeze(e)), e;
338
167
  }
339
- function D(e, r, t, u, v, x) {
340
- if (typeof e == "string" || typeof e == "function" || e === U || e === se || e === te || e === G || e === H || e === Ae || typeof e == "object" && e !== null && (e.$$typeof === V || e.$$typeof === J || e.$$typeof === le || e.$$typeof === oe || e.$$typeof === F || e.$$typeof === Oe || e.getModuleId !== void 0)) {
341
- var a = r.children;
342
- if (a !== void 0)
343
- if (u)
344
- if (L(a)) {
345
- for (u = 0; u < a.length; u++)
346
- ee(a[u], e);
347
- Object.freeze && Object.freeze(a);
348
- } else
349
- console.error(
350
- "React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead."
351
- );
352
- else ee(a, e);
353
- } else
354
- a = "", (e === void 0 || typeof e == "object" && e !== null && Object.keys(e).length === 0) && (a += " You likely forgot to export your component from the file it's defined in, or you might have mixed up default and named imports."), e === null ? u = "null" : L(e) ? u = "array" : e !== void 0 && e.$$typeof === B ? (u = "<" + (s(e.type) || "Unknown") + " />", a = " Did you accidentally export a JSX literal instead of a component?") : u = typeof e, console.error(
355
- "React.jsx: type is invalid -- expected a string (for built-in components) or a class/function (for composite components) but got: %s.%s",
356
- u,
357
- a
358
- );
359
- if (ie.call(r, "key")) {
360
- a = s(e);
361
- var w = Object.keys(r).filter(function(h) {
362
- return h !== "key";
168
+ function f(e, l, p, b, w, A) {
169
+ var m = l.children;
170
+ if (m !== void 0)
171
+ if (b)
172
+ if (ce(m)) {
173
+ for (b = 0; b < m.length; b++)
174
+ g(m[b]);
175
+ Object.freeze && Object.freeze(m);
176
+ } else
177
+ console.error(
178
+ "React.jsx: Static children should always be an array. You are likely explicitly calling React.jsxs or React.jsxDEV. Use the Babel transform instead."
179
+ );
180
+ else g(m);
181
+ if (q.call(l, "key")) {
182
+ m = r(e);
183
+ var j = Object.keys(l).filter(function(ue) {
184
+ return ue !== "key";
363
185
  });
364
- u = 0 < w.length ? "{key: someKey, " + w.join(": ..., ") + ": ...}" : "{key: someKey}", ve[a + u] || (w = 0 < w.length ? "{" + w.join(": ..., ") + ": ...}" : "{}", console.error(
186
+ b = 0 < j.length ? "{key: someKey, " + j.join(": ..., ") + ": ...}" : "{key: someKey}", L[m + b] || (j = 0 < j.length ? "{" + j.join(": ..., ") + ": ...}" : "{}", console.error(
365
187
  `A props object containing a "key" prop is being spread into JSX:
366
188
  let props = %s;
367
189
  <%s {...props} />
368
190
  React keys must be passed directly to JSX without using spread:
369
191
  let props = %s;
370
192
  <%s key={someKey} {...props} />`,
371
- u,
372
- a,
373
- w,
374
- a
375
- ), ve[a + u] = !0);
193
+ b,
194
+ m,
195
+ j,
196
+ m
197
+ ), L[m + b] = !0);
376
198
  }
377
- if (a = null, t !== void 0 && (f(t), a = "" + t), p(r) && (f(r.key), a = "" + r.key), "key" in r) {
378
- t = {};
379
- for (var A in r)
380
- A !== "key" && (t[A] = r[A]);
381
- } else t = r;
382
- return a && y(
383
- t,
199
+ if (m = null, p !== void 0 && (d(p), m = "" + p), o(l) && (d(l.key), m = "" + l.key), "key" in l) {
200
+ p = {};
201
+ for (var O in l)
202
+ O !== "key" && (p[O] = l[O]);
203
+ } else p = l;
204
+ return m && u(
205
+ p,
384
206
  typeof e == "function" ? e.displayName || e.name || "Unknown" : e
385
- ), j(e, a, x, v, m(), t);
207
+ ), x(
208
+ e,
209
+ m,
210
+ p,
211
+ a(),
212
+ w,
213
+ A
214
+ );
386
215
  }
387
- function ee(e, r) {
388
- if (typeof e == "object" && e && e.$$typeof !== qe) {
389
- if (L(e))
390
- for (var t = 0; t < e.length; t++) {
391
- var u = e[t];
392
- W(u) && re(u, r);
393
- }
394
- else if (W(e))
395
- e._store && (e._store.validated = 1);
396
- else if (e === null || typeof e != "object" ? t = null : (t = ae && e[ae] || e["@@iterator"], t = typeof t == "function" ? t : null), typeof t == "function" && t !== e.entries && (t = t.call(e), t !== e))
397
- for (; !(e = t.next()).done; )
398
- W(e.value) && re(e.value, r);
399
- }
216
+ function g(e) {
217
+ h(e) ? e._store && (e._store.validated = 1) : typeof e == "object" && e !== null && e.$$typeof === P && (e._payload.status === "fulfilled" ? h(e._payload.value) && e._payload.value._store && (e._payload.value._store.validated = 1) : e._store && (e._store.validated = 1));
400
218
  }
401
- function W(e) {
402
- return typeof e == "object" && e !== null && e.$$typeof === B;
219
+ function h(e) {
220
+ return typeof e == "object" && e !== null && e.$$typeof === M;
403
221
  }
404
- function re(e, r) {
405
- if (e._store && !e._store.validated && e.key == null && (e._store.validated = 1, r = Ie(r), !he[r])) {
406
- he[r] = !0;
407
- var t = "";
408
- e && e._owner != null && e._owner !== m() && (t = null, typeof e._owner.tag == "number" ? t = s(e._owner.type) : typeof e._owner.name == "string" && (t = e._owner.name), t = " It was passed a child from " + t + ".");
409
- var u = I.getCurrentStack;
410
- I.getCurrentStack = function() {
411
- var v = c(e.type);
412
- return u && (v += u() || ""), v;
413
- }, console.error(
414
- 'Each child in a list should have a unique "key" prop.%s%s See https://react.dev/link/warning-keys for more information.',
415
- r,
416
- t
417
- ), I.getCurrentStack = u;
222
+ var v = R, M = /* @__PURE__ */ Symbol.for("react.transitional.element"), K = /* @__PURE__ */ Symbol.for("react.portal"), k = /* @__PURE__ */ Symbol.for("react.fragment"), ee = /* @__PURE__ */ Symbol.for("react.strict_mode"), re = /* @__PURE__ */ Symbol.for("react.profiler"), te = /* @__PURE__ */ Symbol.for("react.consumer"), se = /* @__PURE__ */ Symbol.for("react.context"), le = /* @__PURE__ */ Symbol.for("react.forward_ref"), ae = /* @__PURE__ */ Symbol.for("react.suspense"), oe = /* @__PURE__ */ Symbol.for("react.suspense_list"), ne = /* @__PURE__ */ Symbol.for("react.memo"), P = /* @__PURE__ */ Symbol.for("react.lazy"), ie = /* @__PURE__ */ Symbol.for("react.activity"), de = /* @__PURE__ */ Symbol.for("react.client.reference"), C = v.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, q = Object.prototype.hasOwnProperty, ce = Array.isArray, S = console.createTask ? console.createTask : function() {
223
+ return null;
224
+ };
225
+ v = {
226
+ react_stack_bottom_frame: function(e) {
227
+ return e();
418
228
  }
419
- }
420
- function Ie(e) {
421
- var r = "", t = m();
422
- return t && (t = s(t.type)) && (r = `
423
-
424
- Check the render method of \`` + t + "`."), r || (e = s(e)) && (r = `
425
-
426
- Check the top-level render call using <` + e + ">."), r;
427
- }
428
- var Se = R, B = Symbol.for("react.transitional.element"), Pe = Symbol.for("react.portal"), U = Symbol.for("react.fragment"), te = Symbol.for("react.strict_mode"), se = Symbol.for("react.profiler"), oe = Symbol.for("react.consumer"), le = Symbol.for("react.context"), F = Symbol.for("react.forward_ref"), G = Symbol.for("react.suspense"), H = Symbol.for("react.suspense_list"), J = Symbol.for("react.memo"), V = Symbol.for("react.lazy"), Ae = Symbol.for("react.offscreen"), ae = Symbol.iterator, $e = Symbol.for("react.client.reference"), I = Se.__CLIENT_INTERNALS_DO_NOT_USE_OR_WARN_USERS_THEY_CANNOT_UPGRADE, ie = Object.prototype.hasOwnProperty, S = Object.assign, Oe = Symbol.for("react.client.reference"), L = Array.isArray, $ = 0, ne, ce, de, ue, fe, be, ge;
429
- b.__reactDisabledLog = !0;
430
- var X, pe, Z = !1, Q = new (typeof WeakMap == "function" ? WeakMap : Map)(), qe = Symbol.for("react.client.reference"), xe, me = {}, ve = {}, he = {};
431
- M.Fragment = U, M.jsx = function(e, r, t, u, v) {
432
- return D(e, r, t, !1, u, v);
433
- }, M.jsxs = function(e, r, t, u, v) {
434
- return D(e, r, t, !0, u, v);
435
229
  };
436
- }()), M;
230
+ var F, Y = {}, z = v.react_stack_bottom_frame.bind(
231
+ v,
232
+ t
233
+ )(), D = S(i(t)), L = {};
234
+ _.Fragment = k, _.jsx = function(e, l, p) {
235
+ var b = 1e4 > C.recentlyCreatedOwnerStacks++;
236
+ return f(
237
+ e,
238
+ l,
239
+ p,
240
+ !1,
241
+ b ? Error("react-stack-top-frame") : z,
242
+ b ? S(i(e)) : D
243
+ );
244
+ }, _.jsxs = function(e, l, p) {
245
+ var b = 1e4 > C.recentlyCreatedOwnerStacks++;
246
+ return f(
247
+ e,
248
+ l,
249
+ p,
250
+ !0,
251
+ b ? Error("react-stack-top-frame") : z,
252
+ b ? S(i(e)) : D
253
+ );
254
+ };
255
+ })()), _;
437
256
  }
438
- var Ne;
439
- function ze() {
440
- return Ne || (Ne = 1, process.env.NODE_ENV === "production" ? z.exports = Me() : z.exports = Ye()), z.exports;
257
+ var U;
258
+ function be() {
259
+ return U || (U = 1, process.env.NODE_ENV === "production" ? I.exports = fe() : I.exports = pe()), I.exports;
441
260
  }
442
- var l = ze();
443
- const N = (...s) => s.filter(Boolean).join(" ");
444
- var k;
445
- ((s) => {
446
- s.clickable = `
261
+ var s = be();
262
+ const y = (...r) => r.filter(Boolean).join(" ");
263
+ var N;
264
+ ((r) => {
265
+ r.clickable = `
447
266
  px-2
448
267
  min-h-[calc(44/16*1rem)]
449
268
  border
450
269
  border-transparent
451
270
  rounded-lg
452
271
  hover:bg-solid-grey-50
453
- `, s.selected = `
272
+ `, r.selected = `
454
273
  rounded-full
455
274
  bg-yellow-50
456
275
  `;
457
- const d = `
458
- focus-visible:outline
276
+ const n = `
459
277
  focus-visible:outline-4
460
278
  focus-visible:outline-black
461
279
  focus-visible:ring-yellow-300
462
280
  `;
463
- s.focusRectCondensed = `
464
- ${d}
281
+ r.focusRectCondensed = `
282
+ ${n}
465
283
  focus-visible:-outline-offset-4
466
284
  focus-visible:ring-[calc(6/16*1rem)]
467
285
  focus-visible:ring-inset
468
- `, s.focusRectCondensedWithBg = `
469
- ${s.focusRectCondensed}
286
+ `, r.focusRectCondensedWithBg = `
287
+ ${r.focusRectCondensed}
470
288
  focus-visible:bg-yellow-300
471
- `, s.focusRect = `
472
- ${d}
289
+ `, r.focusRect = `
290
+ ${n}
473
291
  focus-visible:outline-offset-[calc(2/16*1rem)]
474
292
  focus-visible:ring-[calc(2/16*1rem)]
475
- `, s.focusRounded = `
476
- ${s.focusRect}
477
- focus-visible:rounded
478
- `, s.focusCard = `
479
- ${s.focusRect}
293
+ `, r.focusRounded = `
294
+ ${r.focusRect}
295
+ focus-visible:rounded-sm
296
+ `, r.focusCard = `
297
+ ${r.focusRect}
480
298
  focus-visible:rounded-2xl
481
299
  sm:focus-visible:rounded-3xl
482
- `, s.focusRectWithBg = `
483
- ${s.focusRect}
300
+ `, r.focusRectWithBg = `
301
+ ${r.focusRect}
484
302
  focus-visible:bg-yellow-300
485
- `, s.focusRoundedWithBg = `
486
- ${s.focusRectWithBg}
487
- focus-visible:rounded
488
- `, s.hoverUnderline = `
303
+ `, r.focusRoundedWithBg = `
304
+ ${r.focusRectWithBg}
305
+ focus-visible:rounded-sm
306
+ `, r.hoverUnderline = `
489
307
  hover:underline
490
308
  hover:underline-offset-[calc(3/16*1rem)]
491
- `, s.underline = `
309
+ `, r.underline = `
492
310
  underline
493
311
  underline-offset-[calc(3/16*1rem)]
494
312
  hover:decoration-[calc(3/16*1rem)]
495
- `, s.underlineNoDeco = `
313
+ `, r.underlineNoDeco = `
496
314
  underline
497
315
  underline-offset-[calc(3/16*1rem)]
498
- `, s.popover = `
316
+ `, r.popover = `
499
317
  min-w-fit
500
318
  w-auto
501
319
  py-2
@@ -505,33 +323,32 @@ var k;
505
323
  border
506
324
  border-solid-grey-420
507
325
  has-[>:nth-child(7)]:rounded-r-none
508
- `, s.popoverPositionBottomRight = `
326
+ `, r.popoverPositionBottomRight = `
509
327
  absolute
510
328
  top-11
511
329
  right-0
512
- `, s.popoverPositionBottomLeft = `
330
+ `, r.popoverPositionBottomLeft = `
513
331
  absolute
514
332
  top-11
515
333
  left-0
516
- `, ((f) => {
517
- f.focus = `
518
- peer-focus-visible:outline
334
+ `, ((d) => {
335
+ d.focus = `
519
336
  peer-focus-visible:outline-4
520
337
  peer-focus-visible:outline-black
521
338
  peer-focus-visible:ring-yellow-300
522
- `, f.focusRect = `
523
- ${f.focus}
339
+ `, d.focusRect = `
340
+ ${d.focus}
524
341
  peer-focus-visible:outline-offset-[calc(2/16*1rem)]
525
342
  peer-focus-visible:ring-[calc(2/16*1rem)]
526
343
  `;
527
- })(s.Peer || (s.Peer = {}));
528
- })(k || (k = {}));
529
- const _ = R.createContext({
344
+ })(r.Peer || (r.Peer = {}));
345
+ })(N || (N = {}));
346
+ const T = R.createContext({
530
347
  helperTextId: "",
531
348
  errorMessageId: "",
532
349
  isInvalid: !1,
533
350
  isRequired: !1
534
- }), Re = `
351
+ }), G = `
535
352
  bg-white
536
353
  border
537
354
  border-solid
@@ -540,8 +357,8 @@ const _ = R.createContext({
540
357
  disabled:text-solid-gray-500
541
358
  disabled:border-solid-gray-500
542
359
  aria-invalid:border-red-800
543
- ${k.focusRect}
544
- `, je = {
360
+ ${N.focusRect}
361
+ `, V = {
545
362
  // 16(p-4) * 2 + 22(text-label * leading-snug) + boader * 2 = 56px
546
363
  lg: `
547
364
  p-4
@@ -565,13 +382,13 @@ const _ = R.createContext({
565
382
  rounded-md
566
383
  leading-snug
567
384
  `
568
- }, we = `
385
+ }, J = `
569
386
  inline-block
570
387
  cursor-pointer
571
388
  border
572
389
  border-solid
573
390
  border-transparent
574
- `, Te = {
391
+ `, H = {
575
392
  // 16(p-4) * 2 + 22(text-label * leading-snug) + boader(transparent) * 2 = 56px
576
393
  lg: `
577
394
  pr-8
@@ -593,23 +410,23 @@ const _ = R.createContext({
593
410
  text-label
594
411
  leading-snug
595
412
  `
596
- }, Ce = {
413
+ }, X = {
597
414
  lg: "w-[22px] h-[22px] mr-2",
598
415
  md: "w-[18px] h-[18px] mr-1.5",
599
416
  sm: "w-[18px] h-[18px] mr-1"
600
- }, ke = (s) => {
601
- const { id: d, className: f, size: b = "lg", children: i, ...o } = s, n = R.useId(), g = d || n, c = R.useContext(_);
602
- c.isRequired && (o.required = !0), c.groupName && (o.name = c.groupName);
603
- const m = {
417
+ }, Z = (r) => {
418
+ const { id: n, className: d, size: i = "lg", children: a, ...t } = r, o = R.useId(), u = n || o, c = R.useContext(T);
419
+ c.isRequired && (t.required = !0), c.groupName && (t.name = c.groupName);
420
+ const x = {
604
421
  lg: 22 / 24,
605
422
  md: 18 / 24,
606
423
  sm: 18 / 24
607
- }, p = `
424
+ }, f = `
608
425
  peer
609
426
  sr-only
610
- `, y = `
427
+ `, g = `
611
428
  bg-clip-content
612
- rounded
429
+ rounded-sm
613
430
  border
614
431
  border-solid
615
432
  border-solid-gray-900
@@ -618,32 +435,31 @@ const _ = R.createContext({
618
435
  peer-checked:bg-blue-600
619
436
  peer-checked:border-none
620
437
  peer-disabled:border-solid-gray-500
621
- ${k.Peer.focusRect}
438
+ ${N.Peer.focusRect}
622
439
  `;
623
- return /* @__PURE__ */ l.jsx(
440
+ return /* @__PURE__ */ s.jsx(
624
441
  "label",
625
442
  {
626
- htmlFor: g,
627
- className: N(
628
- we,
629
- Te[b],
630
- f
443
+ htmlFor: u,
444
+ className: y(
445
+ J,
446
+ H[i],
447
+ d
631
448
  ),
632
- children: /* @__PURE__ */ l.jsxs("span", { className: "flex items-center", children: [
633
- /* @__PURE__ */ l.jsx(
449
+ children: /* @__PURE__ */ s.jsxs("span", { className: "flex items-center", children: [
450
+ /* @__PURE__ */ s.jsx(
634
451
  "input",
635
452
  {
636
- id: g,
637
- className: p,
453
+ id: u,
454
+ className: f,
638
455
  type: "checkbox",
639
456
  "aria-describedby": c.helperTextId,
640
457
  "aria-errormessage": c.errorMessageId,
641
458
  "aria-invalid": c.isInvalid ?? !1,
642
- "aria-required": c.isRequired ?? !1,
643
- ...o
459
+ ...t
644
460
  }
645
461
  ),
646
- /* @__PURE__ */ l.jsx("span", { className: N(y, Ce[b]), children: /* @__PURE__ */ l.jsx(
462
+ /* @__PURE__ */ s.jsx("span", { className: y(g, X[i]), children: /* @__PURE__ */ s.jsx(
647
463
  "svg",
648
464
  {
649
465
  xmlns: "http://www.w3.org/2000/svg",
@@ -651,22 +467,22 @@ const _ = R.createContext({
651
467
  width: "24",
652
468
  height: "24",
653
469
  viewBox: "0 0 24 24",
654
- children: /* @__PURE__ */ l.jsx("g", { transform: `scale(${m[b]} ${m[b]})`, children: /* @__PURE__ */ l.jsx("path", { d: "m9.55 17.65-5.325-5.325 1.05-1.075 4.275 4.275 9.175-9.175 1.05 1.075Z" }) })
470
+ children: /* @__PURE__ */ s.jsx("g", { transform: `scale(${x[i]} ${x[i]})`, children: /* @__PURE__ */ s.jsx("path", { d: "m9.55 17.65-5.325-5.325 1.05-1.075 4.275 4.275 9.175-9.175 1.05 1.075Z" }) })
655
471
  }
656
472
  ) }),
657
- /* @__PURE__ */ l.jsx("span", { className: "peer-disabled:text-solid-gray-500", children: i })
473
+ /* @__PURE__ */ s.jsx("span", { className: "peer-disabled:text-solid-gray-500", children: a })
658
474
  ] })
659
475
  }
660
476
  );
661
477
  };
662
- ke.displayName = "Checkbox";
663
- const _e = (s) => {
664
- const { id: d, className: f, size: b = "lg", children: i, ...o } = s, n = R.useId(), g = d || n, c = R.useContext(_);
665
- c.isRequired && (o.required = !0), c.groupName && (o.name = c.groupName);
666
- const m = `
478
+ Z.displayName = "Checkbox";
479
+ const Q = (r) => {
480
+ const { id: n, className: d, size: i = "lg", children: a, ...t } = r, o = R.useId(), u = n || o, c = R.useContext(T);
481
+ c.isRequired && (t.required = !0), c.groupName && (t.name = c.groupName);
482
+ const x = `
667
483
  peer
668
484
  sr-only
669
- `, p = `
485
+ `, f = `
670
486
  bg-clip-content
671
487
  rounded-full
672
488
  border
@@ -675,75 +491,73 @@ const _e = (s) => {
675
491
  peer-checked:bg-blue-600
676
492
  peer-checked:border-blue-600
677
493
  peer-disabled:border-solid-gray-500
678
- ${k.Peer.focusRect}
679
- `, y = {
494
+ ${N.Peer.focusRect}
495
+ `, g = {
680
496
  lg: "p-1",
681
497
  md: "p-[3px]",
682
498
  sm: "p-[3px]"
683
499
  };
684
- return /* @__PURE__ */ l.jsx(
500
+ return /* @__PURE__ */ s.jsx(
685
501
  "label",
686
502
  {
687
- htmlFor: g,
688
- className: N(
689
- we,
690
- Te[b],
691
- f
503
+ htmlFor: u,
504
+ className: y(
505
+ J,
506
+ H[i],
507
+ d
692
508
  ),
693
- children: /* @__PURE__ */ l.jsxs("span", { className: "flex items-center", children: [
694
- /* @__PURE__ */ l.jsx(
509
+ children: /* @__PURE__ */ s.jsxs("span", { className: "flex items-center", children: [
510
+ /* @__PURE__ */ s.jsx(
695
511
  "input",
696
512
  {
697
- id: g,
698
- className: m,
513
+ id: u,
514
+ className: x,
699
515
  type: "radio",
700
516
  "aria-describedby": c.helperTextId,
701
517
  "aria-errormessage": c.errorMessageId,
702
518
  "aria-invalid": c.isInvalid ?? !1,
703
- "aria-required": c.isRequired ?? !1,
704
- ...o
519
+ ...t
705
520
  }
706
521
  ),
707
- /* @__PURE__ */ l.jsx(
522
+ /* @__PURE__ */ s.jsx(
708
523
  "span",
709
524
  {
710
525
  "aria-hidden": !0,
711
- className: N(p, y[b], Ce[b])
526
+ className: y(f, g[i], X[i])
712
527
  }
713
528
  ),
714
- /* @__PURE__ */ l.jsx("span", { className: "peer-disabled:text-solid-gray-500", children: i })
529
+ /* @__PURE__ */ s.jsx("span", { className: "peer-disabled:text-solid-gray-500", children: a })
715
530
  ] })
716
531
  }
717
532
  );
718
533
  };
719
- _e.displayName = "Radio";
720
- const We = (s) => {
721
- const { id: d, className: f, size: b = "lg", children: i, ...o } = s, n = R.useContext(_);
722
- return n.isRequired && (o.required = !0), /* @__PURE__ */ l.jsxs("div", { className: "inline-block relative", children: [
723
- /* @__PURE__ */ l.jsx(
534
+ Q.displayName = "Radio";
535
+ const me = (r) => {
536
+ const { id: n, className: d, size: i = "lg", children: a, ...t } = r, o = R.useContext(T);
537
+ return o.isRequired && (t.required = !0), /* @__PURE__ */ s.jsxs("div", { className: "inline-block relative", children: [
538
+ /* @__PURE__ */ s.jsx(
724
539
  "select",
725
540
  {
726
- id: d || n.id,
727
- className: N(
541
+ id: n || o.id,
542
+ className: y(
728
543
  `
729
544
  !pr-8
730
545
  peer
731
546
  cursor-pointer
732
547
  appearance-none
733
548
  `,
734
- Re,
735
- je[b],
736
- f
549
+ G,
550
+ V[i],
551
+ d
737
552
  ),
738
- "aria-describedby": n.helperTextId,
739
- "aria-errormessage": n.errorMessageId,
740
- "aria-invalid": n.isInvalid ?? !1,
741
- "aria-required": n.isRequired ?? !1,
742
- ...o,
743
- children: i
553
+ "aria-describedby": o.helperTextId,
554
+ "aria-errormessage": o.errorMessageId,
555
+ "aria-invalid": o.isInvalid ?? !1,
556
+ ...t,
557
+ children: a
744
558
  }
745
559
  ),
746
- /* @__PURE__ */ l.jsxs(
560
+ /* @__PURE__ */ s.jsxs(
747
561
  "svg",
748
562
  {
749
563
  xmlns: "http://www.w3.org/2000/svg",
@@ -762,8 +576,8 @@ const We = (s) => {
762
576
  height: "16",
763
577
  viewBox: "0 0 16 16",
764
578
  children: [
765
- /* @__PURE__ */ l.jsx("title", { children: "arrow down" }),
766
- /* @__PURE__ */ l.jsx(
579
+ /* @__PURE__ */ s.jsx("title", { children: "arrow down" }),
580
+ /* @__PURE__ */ s.jsx(
767
581
  "path",
768
582
  {
769
583
  d: "M12 15.05 6.35 9.4 7.4 8.35l4.6 4.6 4.6-4.6 1.05 1.05Z",
@@ -775,11 +589,11 @@ const We = (s) => {
775
589
  )
776
590
  ] });
777
591
  };
778
- We.displayName = "Select";
779
- const Be = (s) => {
780
- const { id: d, className: f, size: b = "lg", ...i } = s, o = R.useContext(_);
781
- o.isRequired && (i.required = !0);
782
- const n = `
592
+ me.displayName = "Select";
593
+ const xe = (r) => {
594
+ const { id: n, className: d, size: i = "lg", ...a } = r, t = R.useContext(T);
595
+ t.isRequired && (a.required = !0);
596
+ const o = `
783
597
  file:mr-2
784
598
  file:inline-block
785
599
  file:text-button
@@ -795,7 +609,7 @@ const Be = (s) => {
795
609
  file:active:border-blue-1200
796
610
  file:disabled:border-solid-gray-500
797
611
  file:disabled:cursor-not-allowed
798
- `, g = `
612
+ `, u = `
799
613
  file:text-blue-900
800
614
  file:hover:text-blue-1000
801
615
  file:active:text-blue-1200
@@ -810,9 +624,9 @@ const Be = (s) => {
810
624
  rounded-lg
811
625
  outline-offset-2
812
626
  aria-invalid:text-red-800
813
- ${k.hoverUnderline}
814
- ${k.focusRounded}
815
- `, m = {
627
+ ${N.hoverUnderline}
628
+ ${N.focusRounded}
629
+ `, x = {
816
630
  // 16(p-4) * 2 + 22(text-button * leading-snug) + boader * 2 = 56px
817
631
  lg: `
818
632
  file:p-4
@@ -837,50 +651,46 @@ const Be = (s) => {
837
651
  file:leading-snug
838
652
  `
839
653
  };
840
- return /* @__PURE__ */ l.jsx(
654
+ return /* @__PURE__ */ s.jsx(
841
655
  "input",
842
656
  {
843
657
  type: "file",
844
- id: d || o.id,
845
- className: N(n, g, m[b], c, f),
846
- "aria-describedby": o.helperTextId,
847
- "aria-errormessage": o.errorMessageId,
848
- "aria-invalid": o.isInvalid ?? !1,
849
- "aria-required": o.isRequired ?? !1,
850
- role: "button",
851
- "aria-label": "File Upload",
852
- ...i
658
+ id: n || t.id,
659
+ className: y(o, u, x[i], c, d),
660
+ "aria-describedby": t.helperTextId,
661
+ "aria-errormessage": t.errorMessageId,
662
+ "aria-invalid": t.isInvalid ?? !1,
663
+ ...a
853
664
  }
854
665
  );
855
666
  };
856
- Be.displayName = "FileInput";
857
- const Ue = (s) => {
858
- const { id: d, className: f, size: b = "lg", ...i } = s, o = R.useContext(_);
859
- return o.isRequired && (i.required = !0), /* @__PURE__ */ l.jsx(
667
+ xe.displayName = "FileInput";
668
+ const ge = (r) => {
669
+ const { id: n, className: d, size: i = "lg", ...a } = r, t = R.useContext(T);
670
+ return t.isRequired && (a.required = !0), /* @__PURE__ */ s.jsx(
860
671
  "input",
861
672
  {
862
673
  type: "text",
863
- id: d || o.id,
864
- className: N(
865
- Re,
866
- je[b],
867
- f
674
+ id: n || t.id,
675
+ className: y(
676
+ G,
677
+ V[i],
678
+ d
868
679
  ),
869
- "aria-describedby": o.helperTextId,
870
- "aria-errormessage": o.errorMessageId,
871
- "aria-invalid": o.isInvalid ?? !1,
872
- "aria-required": o.isRequired ?? !1,
873
- ...i
680
+ "aria-describedby": t.helperTextId,
681
+ "aria-errormessage": t.errorMessageId,
682
+ "aria-invalid": t.isInvalid ?? !1,
683
+ ...a
874
684
  }
875
685
  );
876
686
  };
877
- Ue.displayName = "Input";
878
- const Fe = (s) => {
879
- const { id: d, className: f, children: b, onChange: i, maxLength: o, ...n } = s, [g, c] = R.useState(0), m = (j) => {
880
- i && i(j), c(j.target.value.length);
881
- }, p = R.useContext(_);
882
- p.isRequired && (n.required = !0);
883
- const y = g > (o || 0) ? "text-red-800" : "text-solid-gray-700", E = `
687
+ ge.displayName = "Input";
688
+ const he = (r) => {
689
+ const { id: n, className: d, children: i, onChange: a, maxLength: t, ...o } = r, [u, c] = R.useState(0), x = (v) => {
690
+ a && a(v), c(v.target.value.length);
691
+ }, f = R.useContext(T);
692
+ f.isRequired && (o.required = !0);
693
+ const g = u > (t || 0) ? "text-red-800" : "text-solid-gray-700", h = `
884
694
  p-4
885
695
  text-label
886
696
  rounded-lg
@@ -891,192 +701,191 @@ const Fe = (s) => {
891
701
  disabled:text-solid-gray-500
892
702
  disabled:border-solid-gray-500
893
703
  aria-invalid:border-red-800
894
- ${k.focusRect}
704
+ ${N.focusRect}
895
705
  `;
896
- return /* @__PURE__ */ l.jsxs(l.Fragment, { children: [
897
- /* @__PURE__ */ l.jsx(
706
+ return /* @__PURE__ */ s.jsxs(s.Fragment, { children: [
707
+ /* @__PURE__ */ s.jsx(
898
708
  "textarea",
899
709
  {
900
- id: d || p.id,
901
- className: N(E, f),
902
- "aria-describedby": p.helperTextId,
903
- "aria-errormessage": p.errorMessageId,
904
- "aria-invalid": p.isInvalid ?? !1,
905
- "aria-required": p.isRequired ?? !1,
906
- onChange: m,
907
- ...n,
908
- children: b
710
+ id: n || f.id,
711
+ className: y(h, d),
712
+ "aria-describedby": f.helperTextId,
713
+ "aria-errormessage": f.errorMessageId,
714
+ "aria-invalid": f.isInvalid ?? !1,
715
+ onChange: x,
716
+ ...o,
717
+ children: i
909
718
  }
910
719
  ),
911
- o ? /* @__PURE__ */ l.jsxs("p", { className: "text-label text-solid-gray-700", children: [
912
- /* @__PURE__ */ l.jsx("span", { className: y, children: g }),
720
+ t ? /* @__PURE__ */ s.jsxs("p", { className: "text-label text-solid-gray-700", children: [
721
+ /* @__PURE__ */ s.jsx("span", { className: g, children: u }),
913
722
  "/",
914
- /* @__PURE__ */ l.jsx("span", { children: o })
723
+ /* @__PURE__ */ s.jsx("span", { children: t })
915
724
  ] }) : ""
916
725
  ] });
917
726
  };
918
- Fe.displayName = "Textarea";
919
- const Ge = (s) => {
920
- const d = R.useId(), {
921
- labelText: f,
922
- className: b,
923
- helperText: i,
924
- errorMessage: o,
925
- isInvalid: n,
926
- isRequired: g,
727
+ he.displayName = "Textarea";
728
+ const ve = (r) => {
729
+ const n = R.useId(), {
730
+ labelText: d,
731
+ className: i,
732
+ helperText: a,
733
+ errorMessage: t,
734
+ isInvalid: o,
735
+ isRequired: u,
927
736
  children: c,
928
- ...m
929
- } = s, p = {
930
- id: s.htmlFor ?? `input-${d}`,
931
- helperTextId: `helper-text-${d}`,
932
- errorMessageId: `error-message-${d}`,
933
- isInvalid: n ?? !1,
934
- isRequired: g ?? !1
737
+ ...x
738
+ } = r, f = {
739
+ id: r.htmlFor ?? `input-${n}`,
740
+ helperTextId: `helper-text-${n}`,
741
+ errorMessageId: `error-message-${n}`,
742
+ isInvalid: o ?? !1,
743
+ isRequired: u ?? !1
935
744
  };
936
- return /* @__PURE__ */ l.jsx(_.Provider, { value: p, children: /* @__PURE__ */ l.jsxs("div", { className: N("flex flex-col items-start gap-2", b), children: [
937
- /* @__PURE__ */ l.jsxs(
745
+ return /* @__PURE__ */ s.jsx(T.Provider, { value: f, children: /* @__PURE__ */ s.jsxs("div", { className: y("flex flex-col items-start gap-2", i), children: [
746
+ /* @__PURE__ */ s.jsxs(
938
747
  "label",
939
748
  {
940
- className: N("block text-label", n && "text-red-800"),
941
- htmlFor: p.id,
942
- ...m,
749
+ className: y("block text-label", o && "text-red-800"),
750
+ htmlFor: f.id,
751
+ ...x,
943
752
  children: [
944
- f,
945
- g && /* @__PURE__ */ l.jsx("span", { className: "text-label text-red-800", children: " *" })
753
+ d,
754
+ u && /* @__PURE__ */ s.jsx("span", { className: "text-label text-red-800", children: " *" })
946
755
  ]
947
756
  }
948
757
  ),
949
- i && /* @__PURE__ */ l.jsx("p", { id: p.helperTextId, className: `
758
+ a && /* @__PURE__ */ s.jsx("p", { id: f.helperTextId, className: `
950
759
  text-label text-solid-gray-700
951
- `, children: i }),
760
+ `, children: a }),
952
761
  c,
953
- n && /* @__PURE__ */ l.jsx("p", { id: p.errorMessageId, className: `
762
+ o && /* @__PURE__ */ s.jsx("p", { id: f.errorMessageId, className: `
954
763
  text-label text-red-800
955
- `, children: o })
764
+ `, children: t })
956
765
  ] }) });
957
766
  };
958
- Ge.displayName = "LabelControl";
959
- const K = (s) => {
960
- const d = R.useId(), {
961
- labelText: f,
962
- className: b,
963
- helperText: i,
964
- errorMessage: o,
965
- isInvalid: n,
966
- isRequired: g,
767
+ ve.displayName = "LabelControl";
768
+ const $ = (r) => {
769
+ const n = R.useId(), {
770
+ labelText: d,
771
+ className: i,
772
+ helperText: a,
773
+ errorMessage: t,
774
+ isInvalid: o,
775
+ isRequired: u,
967
776
  direction: c,
968
- children: m,
969
- ...p
970
- } = s, E = {
971
- groupName: p.name ?? `group-${d}`,
972
- helperTextId: `helper-text-${d}`,
973
- errorMessageId: `error-message-${d}`,
974
- isInvalid: n ?? !1,
975
- isRequired: g ?? !1
976
- }, j = c ?? "flex-col";
977
- return /* @__PURE__ */ l.jsx(_.Provider, { value: E, children: /* @__PURE__ */ l.jsxs(
777
+ children: x,
778
+ ...f
779
+ } = r, h = {
780
+ groupName: f.name ?? `group-${n}`,
781
+ helperTextId: `helper-text-${n}`,
782
+ errorMessageId: `error-message-${n}`,
783
+ isInvalid: o ?? !1,
784
+ isRequired: u ?? !1
785
+ }, v = c ?? "flex-col";
786
+ return /* @__PURE__ */ s.jsx(T.Provider, { value: h, children: /* @__PURE__ */ s.jsxs(
978
787
  "fieldset",
979
788
  {
980
- className: N("flex flex-col items-start gap-2", b),
981
- ...p,
789
+ className: y("flex flex-col items-start gap-2", i),
790
+ ...f,
982
791
  children: [
983
- /* @__PURE__ */ l.jsx("legend", { children: /* @__PURE__ */ l.jsxs("p", { className: N("block text-label", n && "text-red-800"), children: [
984
- f,
985
- g && /* @__PURE__ */ l.jsx("span", { className: "text-red-800", children: " *" })
792
+ /* @__PURE__ */ s.jsx("legend", { children: /* @__PURE__ */ s.jsxs("p", { className: y("block text-label", o && "text-red-800"), children: [
793
+ d,
794
+ u && /* @__PURE__ */ s.jsx("span", { className: "text-red-800", children: " *" })
986
795
  ] }) }),
987
- /* @__PURE__ */ l.jsx("div", { className: N("inline-flex", j), children: m }),
988
- i && /* @__PURE__ */ l.jsx("p", { id: E.helperTextId, className: "text-sup text-solid-gray-700", children: i }),
989
- n && /* @__PURE__ */ l.jsx("p", { id: E.errorMessageId, className: "text-label text-red-800", children: o })
796
+ /* @__PURE__ */ s.jsx("div", { className: y("inline-flex", v), children: x }),
797
+ a && /* @__PURE__ */ s.jsx("p", { id: h.helperTextId, className: "text-sup text-solid-gray-700", children: a }),
798
+ o && /* @__PURE__ */ s.jsx("p", { id: h.errorMessageId, className: "text-label text-red-800", children: t })
990
799
  ]
991
800
  }
992
801
  ) });
993
802
  };
994
- K.displayName = "FieldsetControl";
995
- const He = (s) => {
803
+ $.displayName = "FieldsetControl";
804
+ const ye = (r) => {
996
805
  const {
997
- items: d,
998
- onChange: f,
999
- className: b,
1000
- labelText: i,
1001
- helperText: o,
1002
- errorMessage: n,
1003
- isInvalid: g,
806
+ items: n,
807
+ onChange: d,
808
+ className: i,
809
+ labelText: a,
810
+ helperText: t,
811
+ errorMessage: o,
812
+ isInvalid: u,
1004
813
  isRequired: c,
1005
- size: m,
1006
- ...p
1007
- } = s;
1008
- return /* @__PURE__ */ l.jsx(
1009
- K,
814
+ size: x,
815
+ ...f
816
+ } = r;
817
+ return /* @__PURE__ */ s.jsx(
818
+ $,
1010
819
  {
1011
- className: b,
1012
- labelText: i,
1013
- helperText: o,
1014
- errorMessage: n,
1015
- isInvalid: g,
820
+ className: i,
821
+ labelText: a,
822
+ helperText: t,
823
+ errorMessage: o,
824
+ isInvalid: u,
1016
825
  isRequired: c,
1017
- ...p,
1018
- children: d.map(({ label: y, value: E }) => /* @__PURE__ */ l.jsx(
1019
- ke,
826
+ ...f,
827
+ children: n.map(({ label: g, value: h }) => /* @__PURE__ */ s.jsx(
828
+ Z,
1020
829
  {
1021
- size: m,
1022
- value: E,
1023
- onChange: f,
1024
- children: y
830
+ size: x,
831
+ value: h,
832
+ onChange: d,
833
+ children: g
1025
834
  },
1026
- `${y}-${E}`
835
+ `${g}-${h}`
1027
836
  ))
1028
837
  }
1029
838
  );
1030
839
  };
1031
- He.displayName = "CheckboxGroup";
1032
- const Je = (s) => {
840
+ ye.displayName = "CheckboxGroup";
841
+ const Re = (r) => {
1033
842
  const {
1034
- items: d,
1035
- onChange: f,
1036
- className: b,
1037
- labelText: i,
1038
- helperText: o,
1039
- errorMessage: n,
1040
- isInvalid: g,
843
+ items: n,
844
+ onChange: d,
845
+ className: i,
846
+ labelText: a,
847
+ helperText: t,
848
+ errorMessage: o,
849
+ isInvalid: u,
1041
850
  isRequired: c,
1042
- defaultValue: m,
1043
- size: p,
1044
- ...y
1045
- } = s;
1046
- return /* @__PURE__ */ l.jsx(
1047
- K,
851
+ defaultValue: x,
852
+ size: f,
853
+ ...g
854
+ } = r;
855
+ return /* @__PURE__ */ s.jsx(
856
+ $,
1048
857
  {
1049
- className: b,
1050
- labelText: i,
1051
- helperText: o,
1052
- errorMessage: n,
1053
- isInvalid: g,
858
+ className: i,
859
+ labelText: a,
860
+ helperText: t,
861
+ errorMessage: o,
862
+ isInvalid: u,
1054
863
  isRequired: c,
1055
- ...y,
1056
- children: d.map(({ label: E, value: j }) => /* @__PURE__ */ l.jsx(
1057
- _e,
864
+ ...g,
865
+ children: n.map(({ label: h, value: v }) => /* @__PURE__ */ s.jsx(
866
+ Q,
1058
867
  {
1059
- size: p,
1060
- value: j,
1061
- onChange: f,
1062
- defaultChecked: m === j,
1063
- children: E
868
+ size: f,
869
+ value: v,
870
+ onChange: d,
871
+ defaultChecked: x === v,
872
+ children: h
1064
873
  },
1065
- `${E}-${j}`
874
+ `${h}-${v}`
1066
875
  ))
1067
876
  }
1068
877
  );
1069
878
  };
1070
- Je.displayName = "RadioGroup";
879
+ Re.displayName = "RadioGroup";
1071
880
  export {
1072
- ke as Checkbox,
1073
- He as CheckboxGroup,
1074
- K as FieldsetControl,
1075
- Be as FileInput,
1076
- Ue as Input,
1077
- Ge as LabelControl,
1078
- _e as Radio,
1079
- Je as RadioGroup,
1080
- We as Select,
1081
- Fe as Textarea
881
+ Z as Checkbox,
882
+ ye as CheckboxGroup,
883
+ $ as FieldsetControl,
884
+ xe as FileInput,
885
+ ge as Input,
886
+ ve as LabelControl,
887
+ Q as Radio,
888
+ Re as RadioGroup,
889
+ me as Select,
890
+ he as Textarea
1082
891
  };