@equal-experts/kuat-react 0.8.0 → 0.9.1

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 (54) hide show
  1. package/README.md +102 -7
  2. package/dist/accordion.js +1 -1
  3. package/dist/alert-dialog.js +1 -1
  4. package/dist/badge.js +1 -1
  5. package/dist/button-group.js +1 -1
  6. package/dist/button.js +1 -1
  7. package/dist/{checkbox-field-Bslh9sHw.js → checkbox-field-7OmstdY0.js} +1 -1
  8. package/dist/checkbox.js +1 -1
  9. package/dist/field.js +1 -1
  10. package/dist/index.d.ts +1 -13
  11. package/dist/index.js +113 -112
  12. package/dist/input.js +1 -1
  13. package/dist/kuat-radial-progress.js +1 -1
  14. package/dist/{radio-field-G8dvdsLE.js → radio-field-BD77QCpO.js} +1 -1
  15. package/dist/radio.js +1 -1
  16. package/dist/select.js +1 -1
  17. package/dist/sonner.js +1 -1
  18. package/dist/style.css +1 -0
  19. package/dist/style.css.d.ts +2 -0
  20. package/dist/{switch-field-Ce9CiRqk.js → switch-field-xn_CPJH7.js} +1 -1
  21. package/dist/switch.js +1 -1
  22. package/dist/textarea.js +1 -1
  23. package/dist/toggle-group.js +1 -1
  24. package/dist/toggle.js +1 -1
  25. package/package.json +6 -3
  26. package/dist/accordion.css +0 -1
  27. package/dist/alert-dialog.css +0 -1
  28. package/dist/badge.css +0 -1
  29. package/dist/button-group.css +0 -1
  30. package/dist/button.css +0 -1
  31. package/dist/checkbox-field.css +0 -1
  32. package/dist/constants.css +0 -1
  33. package/dist/field.css +0 -1
  34. package/dist/index.css +0 -1
  35. package/dist/input.css +0 -1
  36. package/dist/kuat-radial-progress.css +0 -1
  37. package/dist/radio-field.css +0 -1
  38. package/dist/select.css +0 -1
  39. package/dist/sonner-content.css +0 -1
  40. package/dist/styles.css +0 -1
  41. package/dist/switch-field.css +0 -1
  42. package/dist/textarea.css +0 -1
  43. /package/dist/{accordion-DwQCxX_5.js → accordion-CUlVo4uo.js} +0 -0
  44. /package/dist/{alert-dialog-CT9DCCMH.js → alert-dialog-yHaNWLGX.js} +0 -0
  45. /package/dist/{badge-Yftb6Tdy.js → badge-BZgdEQSD.js} +0 -0
  46. /package/dist/{button-DqdoNQqx.js → button-C0a1gFoV.js} +0 -0
  47. /package/dist/{button-group-BNfxHMty.js → button-group-enIzvVeN.js} +0 -0
  48. /package/dist/{constants-DHz0LWRt.js → constants-Cfitvm6L.js} +0 -0
  49. /package/dist/{field-DRLopwY4.js → field-CpIBifwy.js} +0 -0
  50. /package/dist/{input-2x92vprz.js → input-DmkHok33.js} +0 -0
  51. /package/dist/{kuat-radial-progress-B3nQqPFW.js → kuat-radial-progress-YcpYzHjk.js} +0 -0
  52. /package/dist/{select-Oz2Zj-L0.js → select-CkwcI4vN.js} +0 -0
  53. /package/dist/{sonner-content-B6xwQO7z.js → sonner-content-CXBD6jNn.js} +0 -0
  54. /package/dist/{textarea-DiU8h_H0.js → textarea-B0irOcAM.js} +0 -0
package/README.md CHANGED
@@ -27,18 +27,31 @@ React components and blocks for the Kuat Design System: **localized primitives**
27
27
  ## Installation
28
28
 
29
29
  ```bash
30
- pnpm add @equal-experts/kuat-core @equal-experts/kuat-react
30
+ pnpm add react react-dom @equal-experts/kuat-core @equal-experts/kuat-react
31
31
  ```
32
32
 
33
33
  You need **both** packages: core supplies CSS variables and the Tailwind preset; this package supplies components.
34
34
 
35
35
  ### Peer dependencies
36
36
 
37
- `react` and `react-dom` are required. Radix UI and other peers are listed in this package’s `package.json` under `peerDependencies`—install the primitives that match the components you use.
37
+ Install peers for the components you use before running `dev` or `build`.
38
+
39
+ | Components you use | Required peers |
40
+ |---|---|
41
+ | `Button`, `KuatHeader` | `@radix-ui/react-slot`, `lucide-react` |
42
+ | `Accordion` | `@radix-ui/react-accordion` |
43
+ | `AlertDialog` | `@radix-ui/react-alert-dialog` |
44
+ | `Select` / `KuatSelect` | `@radix-ui/react-select`, `@radix-ui/react-separator` |
45
+ | `Checkbox` / `CheckboxField` | `@radix-ui/react-checkbox` |
46
+ | `RadioGroup` / `RadioField` | `@radix-ui/react-radio-group` |
47
+ | `Switch` / `SwitchField` | `@radix-ui/react-switch` |
48
+ | `Toggle` / `ToggleGroup` | `@radix-ui/react-toggle`, `@radix-ui/react-toggle-group` |
49
+ | `Sonner` | `sonner` |
50
+
51
+ Example peer install for a broad setup:
38
52
 
39
53
  ```bash
40
- pnpm add react react-dom
41
- # Add @radix-ui/* and lucide-react as needed for your components — see peerDependencies
54
+ pnpm add @radix-ui/react-slot @radix-ui/react-accordion @radix-ui/react-alert-dialog @radix-ui/react-select @radix-ui/react-separator @radix-ui/react-checkbox @radix-ui/react-radio-group @radix-ui/react-switch @radix-ui/react-toggle @radix-ui/react-toggle-group lucide-react sonner
42
55
  ```
43
56
 
44
57
  ---
@@ -81,6 +94,12 @@ import { KuatRadialProgress } from '@equal-experts/kuat-react/kuat-radial-progre
81
94
 
82
95
  See [public-api-inventory.md](https://github.com/equalexperts/kuat-mono/blob/master/kuat-docs/setup/public-api-inventory.md) for the full subpath list.
83
96
 
97
+ `KuatCarousel` is currently exported from the root barrel:
98
+
99
+ ```tsx
100
+ import { KuatCarousel } from '@equal-experts/kuat-react';
101
+ ```
102
+
84
103
  ---
85
104
 
86
105
  ## Recommended setup
@@ -101,21 +120,47 @@ export default {
101
120
  } satisfies Config;
102
121
  ```
103
122
 
104
- ### 2. Design tokens (once per app)
123
+ ### 2. Tailwind runtime stylesheet (required for Tailwind v4)
124
+
125
+ Create a global stylesheet and load Tailwind:
126
+
127
+ ```css
128
+ /* src/tailwind.css */
129
+ @import "tailwindcss";
130
+ ```
131
+
132
+ ### 3. Design tokens and Kuat styles (once per app entrypoint)
105
133
 
106
134
  ```typescript
107
135
  // main.tsx
108
136
  import '@equal-experts/kuat-core/variables.css';
137
+ import '@equal-experts/kuat-react/styles';
138
+ import './tailwind.css';
139
+ import './app.css';
109
140
  ```
110
141
 
111
- ### 3. shadcn for gaps only
142
+ Import order matters: load Kuat tokens and Kuat styles before app-specific styles.
143
+
144
+ If you scaffolded from a starter template (for example Vite), remove or neutralize template CSS that resets fonts/layout globally (for example `src/index.css` with `:root { font: ... }`, `body { ... }`, `#root { ... }`). These rules can override Kuat typography and spacing.
145
+
146
+ Typical cleanup for a smoke setup:
147
+
148
+ ```typescript
149
+ // Keep in main.tsx
150
+ import '@equal-experts/kuat-core/variables.css';
151
+ import '@equal-experts/kuat-react/styles';
152
+ import './tailwind.css';
153
+ // Remove template global CSS import if it overrides root/body fonts or layout
154
+ ```
155
+
156
+ ### 4. shadcn for gaps only
112
157
 
113
158
  ```bash
114
159
  npx shadcn@latest init
115
160
  npx shadcn@latest add dialog dropdown-menu # examples — skip `button` if you use Kuat Button
116
161
  ```
117
162
 
118
- ### 4. Use Kuat + shadcn together
163
+ ### 5. Use Kuat + shadcn together
119
164
 
120
165
  ```tsx
121
166
  import { Button, ButtonGroup, Field } from '@equal-experts/kuat-react';
@@ -170,6 +215,56 @@ export function Box({ className, ...props }: React.ComponentProps<'div'>) {
170
215
 
171
216
  ---
172
217
 
218
+ ## Verification test (human or agent)
219
+
220
+ Use this quick smoke test after installation to verify imports, styles, and Tailwind are wired correctly.
221
+
222
+ ### 1. Add a smoke component
223
+
224
+ ```tsx
225
+ import { Button, Field, KuatCarousel, KuatCarouselContent, KuatCarouselItem } from '@equal-experts/kuat-react';
226
+
227
+ export function KuatInstallSmoke() {
228
+ return (
229
+ <div className="space-y-6 p-6">
230
+ <h1 className="text-4xl font-bold">Kuat install smoke test</h1>
231
+
232
+ <Field>
233
+ <label htmlFor="name">Name</label>
234
+ <input id="name" placeholder="Test input" />
235
+ </Field>
236
+
237
+ <Button variant="primary">Primary action</Button>
238
+
239
+ <KuatCarousel opts={{ loop: false }}>
240
+ <KuatCarouselContent>
241
+ <KuatCarouselItem>Slide 1</KuatCarouselItem>
242
+ <KuatCarouselItem>Slide 2</KuatCarouselItem>
243
+ </KuatCarouselContent>
244
+ </KuatCarousel>
245
+ </div>
246
+ );
247
+ }
248
+ ```
249
+
250
+ ### 2. Run checks
251
+
252
+ ```bash
253
+ pnpm build
254
+ pnpm dev
255
+ ```
256
+
257
+ ### 3. Pass/fail criteria
258
+
259
+ - Pass: no unresolved import errors for `@equal-experts/kuat-react/styles` or component imports.
260
+ - Pass: heading renders visibly larger and bold (`text-4xl font-bold` applied).
261
+ - Pass: `Button`, `Field`, and `KuatCarousel` render with Kuat styles (not plain browser defaults).
262
+ - Pass: typography uses Kuat font stack (Lexend for sans) rather than template defaults.
263
+ - Fail: any need to import internal `dist/*.css` files manually.
264
+ - Fail: using `@equal-experts/kuat-react/carousel` instead of root barrel import for carousel.
265
+
266
+ ---
267
+
173
268
  ## Migration (legacy projects)
174
269
 
175
270
  Older docs suggested installing **all** primitives via shadcn. Kuat now ships many components from this package.
package/dist/accordion.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { c as n } from "./utils-DLUjLwnh.js";
2
2
  /* empty css */
3
- import { A as i, c as t, a as e, b as s } from "./accordion-DwQCxX_5.js";
3
+ import { A as i, c as t, a as e, b as s } from "./accordion-CUlVo4uo.js";
4
4
  export {
5
5
  i as Accordion,
6
6
  t as AccordionContent,
@@ -1,6 +1,6 @@
1
1
  import { c as r } from "./utils-DLUjLwnh.js";
2
2
  /* empty css */
3
- import { A as t, i, j as g, d as s, h as A, f as D, e as c, b as n, a as p, g as f, c as m } from "./alert-dialog-CT9DCCMH.js";
3
+ import { A as t, i, j as g, d as s, h as A, f as D, e as c, b as n, a as p, g as f, c as m } from "./alert-dialog-yHaNWLGX.js";
4
4
  export {
5
5
  t as AlertDialog,
6
6
  i as AlertDialogAction,
package/dist/badge.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { c as e } from "./utils-DLUjLwnh.js";
2
2
  /* empty css */
3
- import { B as t, b as m } from "./badge-Yftb6Tdy.js";
3
+ import { B as t, b as m } from "./badge-BZgdEQSD.js";
4
4
  export {
5
5
  t as Badge,
6
6
  m as badgeVariants,
@@ -1,6 +1,6 @@
1
1
  import { c as a } from "./utils-DLUjLwnh.js";
2
2
  /* empty css */
3
- import { B as u, a as n, b as s, c as e } from "./button-group-BNfxHMty.js";
3
+ import { B as u, a as n, b as s, c as e } from "./button-group-enIzvVeN.js";
4
4
  export {
5
5
  u as ButtonGroup,
6
6
  n as ButtonGroupSeparator,
package/dist/button.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { c as a } from "./utils-DLUjLwnh.js";
2
2
  /* empty css */
3
- import { B as s, b as m } from "./button-DqdoNQqx.js";
3
+ import { B as s, b as m } from "./button-C0a1gFoV.js";
4
4
  export {
5
5
  s as Button,
6
6
  m as buttonVariants,
@@ -1,7 +1,7 @@
1
1
  import { jsx as e, jsxs as o } from "react/jsx-runtime";
2
2
  import * as d from "react";
3
3
  import { c as h } from "./utils-DLUjLwnh.js";
4
- import { F as C, e as F, a as u, i as y, b as E } from "./field-DRLopwY4.js";
4
+ import { F as C, e as F, a as u, i as y, b as E } from "./field-CpIBifwy.js";
5
5
  import * as s from "@radix-ui/react-checkbox";
6
6
  import { Check as I, Minus as R } from "lucide-react";
7
7
  const m = d.forwardRef(({ className: a, ...i }, c) => /* @__PURE__ */ e(
package/dist/checkbox.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { c as E } from "./utils-DLUjLwnh.js";
2
2
  /* empty css */
3
- import { b as e, c as r, C as s, a as x } from "./checkbox-field-Bslh9sHw.js";
3
+ import { b as e, c as r, C as s, a as x } from "./checkbox-field-7OmstdY0.js";
4
4
  export {
5
5
  e as CHECKBOX_FIELD_APPEARANCES,
6
6
  r as CHECKBOX_FIELD_LAYOUTS,
package/dist/field.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { c as s } from "./utils-DLUjLwnh.js";
2
2
  /* empty css */
3
- import { j as l, F as r, a as F, b as o, c as t, d as p, e as n, f as c, g as f, h as m, i as E } from "./field-DRLopwY4.js";
3
+ import { j as l, F as r, a as F, b as o, c as t, d as p, e as n, f as c, g as f, h as m, i as E } from "./field-CpIBifwy.js";
4
4
  export {
5
5
  l as FIELD_ORIENTATIONS,
6
6
  r as Field,
package/dist/index.d.ts CHANGED
@@ -1,16 +1,4 @@
1
- /**
2
- * @equal-experts/kuat-react
3
- *
4
- * Kuat Design System - React Components
5
- *
6
- * This package provides:
7
- * - Custom Kuat components (ButtonGroup, future blocks)
8
- * - Utilities (cn)
9
- * - Design tokens via bundled styles
10
- *
11
- // For standard UI components not listed below (e.g. Dialog), install them directly
12
- // via shadcn CLI with kuat-core theming. See documentation for setup guide.
13
- */
1
+
14
2
  export { cn } from './lib/utils';
15
3
  export { ButtonGroup, ButtonGroupSeparator, ButtonGroupText, buttonGroupVariants, BUTTON_GROUP_ORIENTATIONS, } from './components/ui/button-group';
16
4
  export type { ButtonGroupProps, ButtonGroupTextProps, ButtonGroupSeparatorProps, ButtonGroupOrientation, } from './components/ui/button-group';
package/dist/index.js CHANGED
@@ -1,26 +1,27 @@
1
+ /* empty css */
1
2
  import { c as v } from "./utils-DLUjLwnh.js";
2
- import { S as st } from "./button-group-BNfxHMty.js";
3
- import { d as Xn, B as Yn, a as Qn, b as Jn, c as Wn } from "./button-group-BNfxHMty.js";
3
+ import { S as st } from "./button-group-enIzvVeN.js";
4
+ import { d as Yn, B as Qn, a as Jn, b as Wn, c as er } from "./button-group-enIzvVeN.js";
4
5
  import { jsxs as H, jsx as d, Fragment as _e } from "react/jsx-runtime";
5
6
  import * as _ from "react";
6
7
  import { useRef as We, useState as et, useCallback as At, useEffect as He } from "react";
7
8
  import { ChevronLeft as Vt, ChevronRight as Oe, MoreHorizontal as Dt, ChevronDown as Mt } from "lucide-react";
8
- import { b as tr, a as nr, K as rr } from "./kuat-radial-progress-B3nQqPFW.js";
9
- import { A as sr, c as cr, a as ar, b as ir } from "./accordion-DwQCxX_5.js";
10
- import { A as ur, i as dr, j as fr, d as mr, h as pr, f as hr, e as gr, b as br, a as Sr, g as Cr, c as Nr } from "./alert-dialog-CT9DCCMH.js";
11
- import { c as _r, a as Er, B as Lr, b as wr } from "./badge-Yftb6Tdy.js";
9
+ import { b as nr, a as rr, K as or } from "./kuat-radial-progress-YcpYzHjk.js";
10
+ import { A as cr, c as ar, a as ir, b as lr } from "./accordion-CUlVo4uo.js";
11
+ import { A as dr, i as fr, j as mr, d as pr, h as hr, f as gr, e as br, b as Sr, a as Cr, g as Nr, c as yr } from "./alert-dialog-yHaNWLGX.js";
12
+ import { c as Er, a as Lr, B as wr, b as xr } from "./badge-BZgdEQSD.js";
12
13
  import * as R from "@radix-ui/react-dropdown-menu";
13
- import { d as vr, c as Ir, a as Hr, B as Tr, b as kr } from "./button-DqdoNQqx.js";
14
- import { a as Vr, T as Dr } from "./textarea-DiU8h_H0.js";
15
- import { a as Or, I as Rr } from "./input-2x92vprz.js";
16
- import { j as Br, F as Fr, a as Gr, b as Zr, c as Kr, d as Ur, e as jr, f as zr, g as $r, h as qr, i as Xr } from "./field-DRLopwY4.js";
17
- import { K as Qr, j as Jr, k as Wr, S as eo, a as to, b as no, c as ro, d as oo, e as so, f as co, g as ao, h as io, i as lo } from "./select-Oz2Zj-L0.js";
18
- import { b as fo, c as mo, C as po, a as ho } from "./checkbox-field-Bslh9sHw.js";
19
- import { c as bo, d as So, b as Co, R as No, a as yo } from "./radio-field-G8dvdsLE.js";
20
- import { b as Eo, c as Lo, S as wo, a as xo } from "./switch-field-Ce9CiRqk.js";
21
- import { a as Io, b as Ho, T as To, c as ko, d as Ao } from "./constants-DHz0LWRt.js";
22
- import { a as Do, S as Mo, b as Oo, t as Ro } from "./sonner-content-B6xwQO7z.js";
23
- const Rn = _.forwardRef(function({
14
+ import { d as Ir, c as Hr, a as Tr, B as kr, b as Ar } from "./button-C0a1gFoV.js";
15
+ import { a as Dr, T as Mr } from "./textarea-B0irOcAM.js";
16
+ import { a as Rr, I as Pr } from "./input-DmkHok33.js";
17
+ import { j as Fr, F as Gr, a as Zr, b as Kr, c as Ur, d as jr, e as zr, f as $r, g as qr, h as Xr, i as Yr } from "./field-CpIBifwy.js";
18
+ import { K as Jr, j as Wr, k as eo, S as to, a as no, b as ro, c as oo, d as so, e as co, f as ao, g as io, h as lo, i as uo } from "./select-CkwcI4vN.js";
19
+ import { b as mo, c as po, C as ho, a as go } from "./checkbox-field-7OmstdY0.js";
20
+ import { c as So, d as Co, b as No, R as yo, a as _o } from "./radio-field-BD77QCpO.js";
21
+ import { b as Lo, c as wo, S as xo, a as vo } from "./switch-field-xn_CPJH7.js";
22
+ import { a as Ho, b as To, T as ko, c as Ao, d as Vo } from "./constants-Cfitvm6L.js";
23
+ import { a as Mo, S as Oo, b as Ro, t as Po } from "./sonner-content-CXBD6jNn.js";
24
+ const Pn = _.forwardRef(function({
24
25
  className: t,
25
26
  asChild: n = !1,
26
27
  imageSrc: r = null,
@@ -197,7 +198,7 @@ const Ot = _.forwardRef(
197
198
  }
198
199
  );
199
200
  Ot.displayName = "KuatHeader";
200
- function Pn(e) {
201
+ function Bn(e) {
201
202
  const t = (e == null ? void 0 : e.variant) ?? "default";
202
203
  return v("kuat-header", `kuat-header--${t}`);
203
204
  }
@@ -1593,7 +1594,7 @@ const Sn = _.forwardRef(
1593
1594
  ({ slidesPerView: e = 1, ...t }, n) => /* @__PURE__ */ d(ut, { ref: n, basis: e, ...t })
1594
1595
  );
1595
1596
  Sn.displayName = "KuatCarousel";
1596
- const Bn = dt, Fn = ft, Gn = mt, Zn = pt, Kn = Ce, Un = ["service", "demo"], jn = ["light", "dark"], Cn = _.forwardRef(
1597
+ const Fn = dt, Gn = ft, Zn = mt, Kn = pt, Un = Ce, jn = ["service", "demo"], zn = ["light", "dark"], Cn = _.forwardRef(
1597
1598
  ({
1598
1599
  className: e,
1599
1600
  title: t,
@@ -1645,7 +1646,7 @@ const Bn = dt, Fn = ft, Gn = mt, Zn = pt, Kn = Ce, Un = ["service", "demo"], jn
1645
1646
  }
1646
1647
  );
1647
1648
  Cn.displayName = "KuatLogoLockup";
1648
- function zn({ className: e }) {
1649
+ function $n({ className: e }) {
1649
1650
  return /* @__PURE__ */ H(
1650
1651
  "svg",
1651
1652
  {
@@ -1957,28 +1958,28 @@ const kn = _.forwardRef(
1957
1958
  );
1958
1959
  kn.displayName = "Breadcrumb";
1959
1960
  export {
1960
- sr as Accordion,
1961
- cr as AccordionContent,
1962
- ar as AccordionItem,
1963
- ir as AccordionTrigger,
1964
- ur as AlertDialog,
1965
- dr as AlertDialogAction,
1966
- fr as AlertDialogCancel,
1967
- mr as AlertDialogContent,
1968
- pr as AlertDialogDescription,
1969
- hr as AlertDialogFooter,
1970
- gr as AlertDialogHeader,
1971
- br as AlertDialogOverlay,
1972
- Sr as AlertDialogPortal,
1973
- Cr as AlertDialogTitle,
1974
- Nr as AlertDialogTrigger,
1975
- _r as BADGE_ROUNDNESS,
1976
- Er as BADGE_VARIANTS,
1977
- vr as BUTTON_COLORS,
1978
- Xn as BUTTON_GROUP_ORIENTATIONS,
1979
- Ir as BUTTON_SIZES,
1980
- Hr as BUTTON_VARIANTS,
1981
- Lr as Badge,
1961
+ cr as Accordion,
1962
+ ar as AccordionContent,
1963
+ ir as AccordionItem,
1964
+ lr as AccordionTrigger,
1965
+ dr as AlertDialog,
1966
+ fr as AlertDialogAction,
1967
+ mr as AlertDialogCancel,
1968
+ pr as AlertDialogContent,
1969
+ hr as AlertDialogDescription,
1970
+ gr as AlertDialogFooter,
1971
+ br as AlertDialogHeader,
1972
+ Sr as AlertDialogOverlay,
1973
+ Cr as AlertDialogPortal,
1974
+ Nr as AlertDialogTitle,
1975
+ yr as AlertDialogTrigger,
1976
+ Er as BADGE_ROUNDNESS,
1977
+ Lr as BADGE_VARIANTS,
1978
+ Ir as BUTTON_COLORS,
1979
+ Yn as BUTTON_GROUP_ORIENTATIONS,
1980
+ Hr as BUTTON_SIZES,
1981
+ Tr as BUTTON_VARIANTS,
1982
+ wr as Badge,
1982
1983
  kn as Breadcrumb,
1983
1984
  St as BreadcrumbEllipsis,
1984
1985
  Ve as BreadcrumbItem,
@@ -1987,85 +1988,85 @@ export {
1987
1988
  De as BreadcrumbPage,
1988
1989
  ht as BreadcrumbRoot,
1989
1990
  Me as BreadcrumbSeparator,
1990
- Tr as Button,
1991
- Yn as ButtonGroup,
1992
- Qn as ButtonGroupSeparator,
1993
- Jn as ButtonGroupText,
1994
- fo as CHECKBOX_FIELD_APPEARANCES,
1995
- mo as CHECKBOX_FIELD_LAYOUTS,
1991
+ kr as Button,
1992
+ Qn as ButtonGroup,
1993
+ Jn as ButtonGroupSeparator,
1994
+ Wn as ButtonGroupText,
1995
+ mo as CHECKBOX_FIELD_APPEARANCES,
1996
+ po as CHECKBOX_FIELD_LAYOUTS,
1996
1997
  ut as Carousel,
1997
1998
  dt as CarouselContent,
1998
1999
  ft as CarouselItem,
1999
2000
  pt as CarouselNext,
2000
2001
  mt as CarouselPrevious,
2001
- po as Checkbox,
2002
- ho as CheckboxField,
2003
- Rn as ContentCard,
2002
+ ho as Checkbox,
2003
+ go as CheckboxField,
2004
+ Pn as ContentCard,
2004
2005
  Te as EELogo,
2005
- zn as EELogoIcon,
2006
- Br as FIELD_ORIENTATIONS,
2007
- Fr as Field,
2008
- Gr as FieldContent,
2009
- Zr as FieldDescription,
2010
- Kr as FieldError,
2011
- Ur as FieldGroup,
2012
- jr as FieldLabel,
2013
- zr as FieldLegend,
2014
- $r as FieldSeparator,
2015
- qr as FieldSet,
2016
- Xr as FieldTitle,
2017
- Or as INPUT_SIZES,
2018
- Rr as Input,
2019
- jn as KUAT_LOGO_LOCKUP_MODE,
2020
- Un as KUAT_LOGO_LOCKUP_USE,
2021
- tr as KUAT_RADIAL_PROGRESS_COLORS,
2022
- nr as KUAT_RADIAL_PROGRESS_SIZES,
2006
+ $n as EELogoIcon,
2007
+ Fr as FIELD_ORIENTATIONS,
2008
+ Gr as Field,
2009
+ Zr as FieldContent,
2010
+ Kr as FieldDescription,
2011
+ Ur as FieldError,
2012
+ jr as FieldGroup,
2013
+ zr as FieldLabel,
2014
+ $r as FieldLegend,
2015
+ qr as FieldSeparator,
2016
+ Xr as FieldSet,
2017
+ Yr as FieldTitle,
2018
+ Rr as INPUT_SIZES,
2019
+ Pr as Input,
2020
+ zn as KUAT_LOGO_LOCKUP_MODE,
2021
+ jn as KUAT_LOGO_LOCKUP_USE,
2022
+ nr as KUAT_RADIAL_PROGRESS_COLORS,
2023
+ rr as KUAT_RADIAL_PROGRESS_SIZES,
2023
2024
  Sn as KuatCarousel,
2024
- Bn as KuatCarouselContent,
2025
- Fn as KuatCarouselItem,
2026
- Zn as KuatCarouselNext,
2027
- Gn as KuatCarouselPrevious,
2025
+ Fn as KuatCarouselContent,
2026
+ Gn as KuatCarouselItem,
2027
+ Kn as KuatCarouselNext,
2028
+ Zn as KuatCarouselPrevious,
2028
2029
  Ot as KuatHeader,
2029
2030
  Cn as KuatLogoLockup,
2030
- rr as KuatRadialProgress,
2031
- Qr as KuatSelect,
2032
- bo as RADIO_FIELD_APPEARANCES,
2033
- So as RADIO_FIELD_LAYOUTS,
2034
- Co as RadioField,
2035
- No as RadioGroup,
2036
- yo as RadioGroupItem,
2037
- Jr as SELECT_LINES,
2038
- Wr as SELECT_SIZES,
2039
- Do as SONNER_POSITIONS,
2040
- Eo as SWITCH_FIELD_APPEARANCES,
2041
- Lo as SWITCH_FIELD_LAYOUTS,
2042
- eo as Select,
2043
- to as SelectContent,
2044
- no as SelectGroup,
2045
- ro as SelectItem,
2046
- oo as SelectLabel,
2047
- so as SelectScrollDownButton,
2048
- co as SelectScrollUpButton,
2049
- ao as SelectSeparator,
2050
- io as SelectTrigger,
2051
- lo as SelectValue,
2052
- Mo as Sonner,
2053
- Oo as SonnerContent,
2054
- wo as Switch,
2055
- xo as SwitchField,
2056
- Vr as TEXTAREA_RESIZE,
2057
- Io as TOGGLE_SIZES,
2058
- Ho as TOGGLE_SKINS,
2059
- Dr as Textarea,
2060
- To as Toggle,
2061
- ko as ToggleGroup,
2062
- Ao as ToggleGroupItem,
2063
- wr as badgeVariants,
2064
- Wn as buttonGroupVariants,
2065
- kr as buttonVariants,
2031
+ or as KuatRadialProgress,
2032
+ Jr as KuatSelect,
2033
+ So as RADIO_FIELD_APPEARANCES,
2034
+ Co as RADIO_FIELD_LAYOUTS,
2035
+ No as RadioField,
2036
+ yo as RadioGroup,
2037
+ _o as RadioGroupItem,
2038
+ Wr as SELECT_LINES,
2039
+ eo as SELECT_SIZES,
2040
+ Mo as SONNER_POSITIONS,
2041
+ Lo as SWITCH_FIELD_APPEARANCES,
2042
+ wo as SWITCH_FIELD_LAYOUTS,
2043
+ to as Select,
2044
+ no as SelectContent,
2045
+ ro as SelectGroup,
2046
+ oo as SelectItem,
2047
+ so as SelectLabel,
2048
+ co as SelectScrollDownButton,
2049
+ ao as SelectScrollUpButton,
2050
+ io as SelectSeparator,
2051
+ lo as SelectTrigger,
2052
+ uo as SelectValue,
2053
+ Oo as Sonner,
2054
+ Ro as SonnerContent,
2055
+ xo as Switch,
2056
+ vo as SwitchField,
2057
+ Dr as TEXTAREA_RESIZE,
2058
+ Ho as TOGGLE_SIZES,
2059
+ To as TOGGLE_SKINS,
2060
+ Mr as Textarea,
2061
+ ko as Toggle,
2062
+ Ao as ToggleGroup,
2063
+ Vo as ToggleGroupItem,
2064
+ xr as badgeVariants,
2065
+ er as buttonGroupVariants,
2066
+ Ar as buttonVariants,
2066
2067
  v as cn,
2067
- Pn as kuatHeaderVariants,
2068
- Ro as toast,
2068
+ Bn as kuatHeaderVariants,
2069
+ Po as toast,
2069
2070
  Ce as useCarousel,
2070
- Kn as useKuatCarousel
2071
+ Un as useKuatCarousel
2071
2072
  };
package/dist/input.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { c as p } from "./utils-DLUjLwnh.js";
2
2
  /* empty css */
3
- import { a as I, I as m } from "./input-2x92vprz.js";
3
+ import { a as I, I as m } from "./input-DmkHok33.js";
4
4
  export {
5
5
  I as INPUT_SIZES,
6
6
  m as Input,
@@ -1,4 +1,4 @@
1
- import { b as S, a as A, K as _ } from "./kuat-radial-progress-B3nQqPFW.js";
1
+ import { b as S, a as A, K as _ } from "./kuat-radial-progress-YcpYzHjk.js";
2
2
  export {
3
3
  S as KUAT_RADIAL_PROGRESS_COLORS,
4
4
  A as KUAT_RADIAL_PROGRESS_SIZES,
@@ -1,7 +1,7 @@
1
1
  import { jsx as a, jsxs as m } from "react/jsx-runtime";
2
2
  import * as l from "react";
3
3
  import { c as s } from "./utils-DLUjLwnh.js";
4
- import { F as I, e as A, a as b, i as v, b as D } from "./field-DRLopwY4.js";
4
+ import { F as I, e as A, a as b, i as v, b as D } from "./field-CpIBifwy.js";
5
5
  import * as r from "@radix-ui/react-radio-group";
6
6
  const g = l.forwardRef(({ className: d, ...e }, i) => /* @__PURE__ */ a(
7
7
  r.Root,
package/dist/radio.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { c as R } from "./utils-DLUjLwnh.js";
2
2
  /* empty css */
3
- import { c as A, d, b as i, R as p, a as I } from "./radio-field-G8dvdsLE.js";
3
+ import { c as A, d, b as i, R as p, a as I } from "./radio-field-BD77QCpO.js";
4
4
  export {
5
5
  A as RADIO_FIELD_APPEARANCES,
6
6
  d as RADIO_FIELD_LAYOUTS,
package/dist/select.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { c as S } from "./utils-DLUjLwnh.js";
2
2
  /* empty css */
3
- import { K as c, j as s, k as o, S as r, a as n, b as p, c as E, d as u, e as m, f as L, g as f, h as g, i } from "./select-Oz2Zj-L0.js";
3
+ import { K as c, j as s, k as o, S as r, a as n, b as p, c as E, d as u, e as m, f as L, g as f, h as g, i } from "./select-CkwcI4vN.js";
4
4
  export {
5
5
  c as KuatSelect,
6
6
  s as SELECT_LINES,
package/dist/sonner.js CHANGED
@@ -1,4 +1,4 @@
1
- import { a as o, S as t, b as S, t as s } from "./sonner-content-B6xwQO7z.js";
1
+ import { a as o, S as t, b as S, t as s } from "./sonner-content-CXBD6jNn.js";
2
2
  export {
3
3
  o as SONNER_POSITIONS,
4
4
  t as Sonner,