@equal-experts/kuat-react 0.8.0 → 0.9.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.
- package/README.md +120 -7
- package/dist/accordion.js +6 -7
- package/dist/alert-dialog.js +13 -14
- package/dist/badge.js +3 -4
- package/dist/button-group.js +6 -7
- package/dist/button.js +3 -4
- package/dist/carousel-vRCoMeVE.js +1401 -0
- package/dist/carousel.d.ts +2 -0
- package/dist/carousel.js +9 -0
- package/dist/{checkbox-field-Bslh9sHw.js → checkbox-field-7OmstdY0.js} +1 -1
- package/dist/checkbox.js +6 -7
- package/dist/field.js +11 -12
- package/dist/index.d.ts +1 -13
- package/dist/index.js +448 -1839
- package/dist/input.js +5 -6
- package/dist/kuat-carousel-DsHwXGpb.js +16 -0
- package/dist/kuat-carousel.d.ts +2 -0
- package/dist/kuat-carousel.js +9 -0
- package/dist/kuat-radial-progress.js +1 -1
- package/dist/{radio-field-G8dvdsLE.js → radio-field-BD77QCpO.js} +1 -1
- package/dist/radio.js +6 -7
- package/dist/select.js +12 -13
- 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 -2
- package/dist/toggle-group.js +5 -6
- package/dist/toggle.js +6 -7
- package/package.json +17 -5
- 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
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
export { Carousel, CarouselContent, CarouselItem, CarouselPrevious, CarouselNext, useCarousel, } from './components/ui/carousel';
|
|
2
|
+
export type { CarouselItemBasis, CarouselEventHandler, CarouselEventHandlers, CarouselProps, CarouselContentProps, CarouselItemProps, } from './components/ui/carousel';
|
package/dist/carousel.js
ADDED
|
@@ -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,10 +1,9 @@
|
|
|
1
|
-
import { c as
|
|
2
|
-
|
|
3
|
-
import { b as e, c as r, C as s, a as x } from "./checkbox-field-Bslh9sHw.js";
|
|
1
|
+
import { c as o } from "./utils-DLUjLwnh.js";
|
|
2
|
+
import { b as c, c as e, C as s, a as r } from "./checkbox-field-7OmstdY0.js";
|
|
4
3
|
export {
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
c as CHECKBOX_FIELD_APPEARANCES,
|
|
5
|
+
e as CHECKBOX_FIELD_LAYOUTS,
|
|
7
6
|
s as Checkbox,
|
|
8
|
-
|
|
9
|
-
|
|
7
|
+
r as CheckboxField,
|
|
8
|
+
o as cn
|
|
10
9
|
};
|
package/dist/field.js
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
|
-
import { c as
|
|
2
|
-
|
|
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";
|
|
1
|
+
import { c as i } from "./utils-DLUjLwnh.js";
|
|
2
|
+
import { j as d, F as l, a as F, b as r, c as o, d as t, e as n, f as p, g as c, h as f, i as E } from "./field-CpIBifwy.js";
|
|
4
3
|
export {
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
d as FIELD_ORIENTATIONS,
|
|
5
|
+
l as Field,
|
|
7
6
|
F as FieldContent,
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
7
|
+
r as FieldDescription,
|
|
8
|
+
o as FieldError,
|
|
9
|
+
t as FieldGroup,
|
|
11
10
|
n as FieldLabel,
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
11
|
+
p as FieldLegend,
|
|
12
|
+
c as FieldSeparator,
|
|
13
|
+
f as FieldSet,
|
|
15
14
|
E as FieldTitle,
|
|
16
|
-
|
|
15
|
+
i as cn
|
|
17
16
|
};
|
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';
|