@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.
- package/README.md +102 -7
- package/dist/accordion.js +1 -1
- package/dist/alert-dialog.js +1 -1
- package/dist/badge.js +1 -1
- package/dist/button-group.js +1 -1
- package/dist/button.js +1 -1
- package/dist/{checkbox-field-Bslh9sHw.js → checkbox-field-7OmstdY0.js} +1 -1
- package/dist/checkbox.js +1 -1
- package/dist/field.js +1 -1
- package/dist/index.d.ts +1 -13
- package/dist/index.js +113 -112
- package/dist/input.js +1 -1
- package/dist/kuat-radial-progress.js +1 -1
- package/dist/{radio-field-G8dvdsLE.js → radio-field-BD77QCpO.js} +1 -1
- package/dist/radio.js +1 -1
- package/dist/select.js +1 -1
- package/dist/sonner.js +1 -1
- package/dist/style.css +1 -0
- package/dist/style.css.d.ts +2 -0
- package/dist/{switch-field-Ce9CiRqk.js → switch-field-xn_CPJH7.js} +1 -1
- package/dist/switch.js +1 -1
- package/dist/textarea.js +1 -1
- package/dist/toggle-group.js +1 -1
- package/dist/toggle.js +1 -1
- package/package.json +6 -3
- package/dist/accordion.css +0 -1
- package/dist/alert-dialog.css +0 -1
- package/dist/badge.css +0 -1
- package/dist/button-group.css +0 -1
- package/dist/button.css +0 -1
- package/dist/checkbox-field.css +0 -1
- package/dist/constants.css +0 -1
- package/dist/field.css +0 -1
- package/dist/index.css +0 -1
- package/dist/input.css +0 -1
- package/dist/kuat-radial-progress.css +0 -1
- package/dist/radio-field.css +0 -1
- package/dist/select.css +0 -1
- package/dist/sonner-content.css +0 -1
- package/dist/styles.css +0 -1
- package/dist/switch-field.css +0 -1
- package/dist/textarea.css +0 -1
- /package/dist/{accordion-DwQCxX_5.js → accordion-CUlVo4uo.js} +0 -0
- /package/dist/{alert-dialog-CT9DCCMH.js → alert-dialog-yHaNWLGX.js} +0 -0
- /package/dist/{badge-Yftb6Tdy.js → badge-BZgdEQSD.js} +0 -0
- /package/dist/{button-DqdoNQqx.js → button-C0a1gFoV.js} +0 -0
- /package/dist/{button-group-BNfxHMty.js → button-group-enIzvVeN.js} +0 -0
- /package/dist/{constants-DHz0LWRt.js → constants-Cfitvm6L.js} +0 -0
- /package/dist/{field-DRLopwY4.js → field-CpIBifwy.js} +0 -0
- /package/dist/{input-2x92vprz.js → input-DmkHok33.js} +0 -0
- /package/dist/{kuat-radial-progress-B3nQqPFW.js → kuat-radial-progress-YcpYzHjk.js} +0 -0
- /package/dist/{select-Oz2Zj-L0.js → select-CkwcI4vN.js} +0 -0
- /package/dist/{sonner-content-B6xwQO7z.js → sonner-content-CXBD6jNn.js} +0 -0
- /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
|
-
|
|
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-
|
|
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.
|
|
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
|
-
|
|
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
|
-
###
|
|
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-
|
|
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,
|
package/dist/alert-dialog.js
CHANGED
|
@@ -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-
|
|
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
package/dist/button-group.js
CHANGED
|
@@ -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-
|
|
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,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-
|
|
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-
|
|
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-
|
|
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-
|
|
3
|
-
import { d as
|
|
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
|
|
9
|
-
import { A as
|
|
10
|
-
import { A as
|
|
11
|
-
import { c as
|
|
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
|
|
14
|
-
import { a as
|
|
15
|
-
import { a as
|
|
16
|
-
import { j as
|
|
17
|
-
import { K as
|
|
18
|
-
import { b as
|
|
19
|
-
import { c as
|
|
20
|
-
import { b as
|
|
21
|
-
import { a as
|
|
22
|
-
import { a as
|
|
23
|
-
const
|
|
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
|
|
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
|
|
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
|
|
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
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
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
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
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
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2002
|
+
ho as Checkbox,
|
|
2003
|
+
go as CheckboxField,
|
|
2004
|
+
Pn as ContentCard,
|
|
2004
2005
|
Te as EELogo,
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
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
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
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
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
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
|
-
|
|
2068
|
-
|
|
2068
|
+
Bn as kuatHeaderVariants,
|
|
2069
|
+
Po as toast,
|
|
2069
2070
|
Ce as useCarousel,
|
|
2070
|
-
|
|
2071
|
+
Un as useKuatCarousel
|
|
2071
2072
|
};
|
package/dist/input.js
CHANGED
|
@@ -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-
|
|
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-
|
|
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-
|
|
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