@vuer-ai/vuer-uikit 0.0.33 → 0.0.35

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 (51) hide show
  1. package/dist/{chunk-QF5IKMHU.js → chunk-GFPXAGJY.js} +10 -4
  2. package/dist/{chunk-2QJF6YMB.mjs → chunk-KAUA4ODT.mjs} +11 -5
  3. package/dist/{chunk-JCUMV4F7.mjs → chunk-Q7JNDXDJ.mjs} +6 -3
  4. package/dist/{chunk-LKFZSASJ.js → chunk-QJPJVF7K.js} +10 -4
  5. package/dist/{chunk-X2LJ5T2W.js → chunk-R37JH544.js} +10 -1
  6. package/dist/{chunk-CCNGF3D2.js → chunk-TC4RAHDO.js} +5 -2
  7. package/dist/{chunk-SHQFIJDC.mjs → chunk-VPIDZYRX.mjs} +11 -2
  8. package/dist/{chunk-7XU7C4DL.mjs → chunk-WVXZ6OBP.mjs} +1 -1
  9. package/dist/{chunk-VIONNA5B.js → chunk-XFKSENGQ.js} +1 -1
  10. package/dist/{chunk-D6KVE3E3.mjs → chunk-ZBG3KB7B.mjs} +11 -5
  11. package/dist/index.js +31 -31
  12. package/dist/index.mjs +5 -5
  13. package/dist/ui/collapsible.js +4 -4
  14. package/dist/ui/collapsible.mjs +1 -1
  15. package/dist/ui/index.js +31 -31
  16. package/dist/ui/index.mjs +5 -5
  17. package/dist/ui/modal.js +11 -11
  18. package/dist/ui/modal.mjs +1 -1
  19. package/dist/ui/popover.js +5 -5
  20. package/dist/ui/popover.mjs +1 -1
  21. package/dist/ui/sheet.js +9 -9
  22. package/dist/ui/sheet.mjs +1 -1
  23. package/dist/ui/version-badge.js +2 -2
  24. package/dist/ui/version-badge.mjs +1 -1
  25. package/package.json +1 -1
  26. package/src/ui/avatar.tsx +97 -0
  27. package/src/ui/badge.tsx +7 -0
  28. package/src/ui/button.tsx +9 -0
  29. package/src/ui/card.tsx +21 -0
  30. package/src/ui/checkbox.tsx +4 -0
  31. package/src/ui/collapsible.tsx +24 -3
  32. package/src/ui/drawer.tsx +18 -0
  33. package/src/ui/input.tsx +15 -0
  34. package/src/ui/layout.tsx +3 -0
  35. package/src/ui/modal.tsx +32 -4
  36. package/src/ui/popover.tsx +18 -2
  37. package/src/ui/radio-group.tsx +6 -0
  38. package/src/ui/select.tsx +30 -0
  39. package/src/ui/sheet.tsx +46 -4
  40. package/src/ui/slider.tsx +9 -0
  41. package/src/ui/switch.tsx +6 -0
  42. package/src/ui/tabs.tsx +14 -0
  43. package/src/ui/textarea.tsx +3 -0
  44. package/src/ui/theme/ThemeProvider.tsx +12 -0
  45. package/src/ui/timeline.tsx +6 -0
  46. package/src/ui/toast.tsx +3 -0
  47. package/src/ui/toggle-group.tsx +15 -0
  48. package/src/ui/toggle.tsx +9 -0
  49. package/src/ui/tooltip.tsx +12 -0
  50. package/src/ui/tree-view-v2.tsx +10 -0
  51. package/src/ui/tree-view.tsx +36 -0
@@ -36,8 +36,11 @@ var Sheet = chunkQG7ZF6TO_js.createClientOnlyComponent(SheetRoot, SheetFallback)
36
36
  function SheetTriggerRoot({ ...props }) {
37
37
  return /* @__PURE__ */ jsxRuntime.jsx(SheetPrimitive__namespace.Trigger, { "data-slot": "sheet-trigger", ...props });
38
38
  }
39
- function SheetTriggerFallback({ ...props }) {
40
- return /* @__PURE__ */ jsxRuntime.jsx("button", { "data-slot": "sheet-trigger", ...props });
39
+ function SheetTriggerFallback({ asChild, children, ...props }) {
40
+ if (asChild) {
41
+ return /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children });
42
+ }
43
+ return /* @__PURE__ */ jsxRuntime.jsx("button", { "data-slot": "sheet-trigger", ...props, children });
41
44
  }
42
45
  var SheetTrigger = chunkQG7ZF6TO_js.createClientOnlyComponent(SheetTriggerRoot, SheetTriggerFallback);
43
46
  function SheetCloseRoot({ ...props }) {
@@ -50,8 +53,11 @@ function SheetCloseRoot({ ...props }) {
50
53
  }
51
54
  );
52
55
  }
53
- function SheetCloseFallback({ ...props }) {
54
- return /* @__PURE__ */ jsxRuntime.jsx("button", { "data-slot": "sheet-close", className: chunk7KYAICHB_js.cn("focus:ring-0 focus:outline-none"), ...props });
56
+ function SheetCloseFallback({ asChild, children, ...props }) {
57
+ if (asChild) {
58
+ return /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children });
59
+ }
60
+ return /* @__PURE__ */ jsxRuntime.jsx("button", { "data-slot": "sheet-close", className: chunk7KYAICHB_js.cn("focus:ring-0 focus:outline-none"), ...props, children });
55
61
  }
56
62
  var SheetClose = chunkQG7ZF6TO_js.createClientOnlyComponent(SheetCloseRoot, SheetCloseFallback);
57
63
  function SheetPortal({ ...props }) {
@@ -2,7 +2,7 @@ import { createClientOnlyComponent } from './chunk-4F2GSF2T.mjs';
2
2
  import { cn } from './chunk-WM2VP7MI.mjs';
3
3
  import * as SheetPrimitive from '@radix-ui/react-dialog';
4
4
  import { XIcon } from 'lucide-react';
5
- import { jsx, jsxs } from 'react/jsx-runtime';
5
+ import { jsx, Fragment, jsxs } from 'react/jsx-runtime';
6
6
 
7
7
  function SheetRoot({ ...props }) {
8
8
  return /* @__PURE__ */ jsx(SheetPrimitive.Root, { "data-slot": "sheet", ...props });
@@ -14,8 +14,11 @@ var Sheet = createClientOnlyComponent(SheetRoot, SheetFallback);
14
14
  function SheetTriggerRoot({ ...props }) {
15
15
  return /* @__PURE__ */ jsx(SheetPrimitive.Trigger, { "data-slot": "sheet-trigger", ...props });
16
16
  }
17
- function SheetTriggerFallback({ ...props }) {
18
- return /* @__PURE__ */ jsx("button", { "data-slot": "sheet-trigger", ...props });
17
+ function SheetTriggerFallback({ asChild, children, ...props }) {
18
+ if (asChild) {
19
+ return /* @__PURE__ */ jsx(Fragment, { children });
20
+ }
21
+ return /* @__PURE__ */ jsx("button", { "data-slot": "sheet-trigger", ...props, children });
19
22
  }
20
23
  var SheetTrigger = createClientOnlyComponent(SheetTriggerRoot, SheetTriggerFallback);
21
24
  function SheetCloseRoot({ ...props }) {
@@ -28,8 +31,11 @@ function SheetCloseRoot({ ...props }) {
28
31
  }
29
32
  );
30
33
  }
31
- function SheetCloseFallback({ ...props }) {
32
- return /* @__PURE__ */ jsx("button", { "data-slot": "sheet-close", className: cn("focus:ring-0 focus:outline-none"), ...props });
34
+ function SheetCloseFallback({ asChild, children, ...props }) {
35
+ if (asChild) {
36
+ return /* @__PURE__ */ jsx(Fragment, { children });
37
+ }
38
+ return /* @__PURE__ */ jsx("button", { "data-slot": "sheet-close", className: cn("focus:ring-0 focus:outline-none"), ...props, children });
33
39
  }
34
40
  var SheetClose = createClientOnlyComponent(SheetCloseRoot, SheetCloseFallback);
35
41
  function SheetPortal({ ...props }) {
@@ -1,7 +1,7 @@
1
1
  import { createClientOnlyComponent } from './chunk-4F2GSF2T.mjs';
2
2
  import { cn } from './chunk-WM2VP7MI.mjs';
3
3
  import * as PopoverPrimitive from '@radix-ui/react-popover';
4
- import { jsx } from 'react/jsx-runtime';
4
+ import { jsx, Fragment } from 'react/jsx-runtime';
5
5
 
6
6
  function PopoverRoot({ ...props }) {
7
7
  return /* @__PURE__ */ jsx(PopoverPrimitive.Root, { "data-slot": "popover", ...props });
@@ -13,8 +13,11 @@ var Popover = createClientOnlyComponent(PopoverRoot, PopoverFallback);
13
13
  function PopoverTriggerRoot({ ...props }) {
14
14
  return /* @__PURE__ */ jsx(PopoverPrimitive.Trigger, { "data-slot": "popover-trigger", ...props });
15
15
  }
16
- function PopoverTriggerFallback({ ...props }) {
17
- return /* @__PURE__ */ jsx("button", { "data-slot": "popover-trigger", ...props });
16
+ function PopoverTriggerFallback({ asChild, children, ...props }) {
17
+ if (asChild) {
18
+ return /* @__PURE__ */ jsx(Fragment, { children });
19
+ }
20
+ return /* @__PURE__ */ jsx("button", { "data-slot": "popover-trigger", ...props, children });
18
21
  }
19
22
  var PopoverTrigger = createClientOnlyComponent(PopoverTriggerRoot, PopoverTriggerFallback);
20
23
  function PopoverContentRoot({
@@ -37,8 +37,11 @@ var Modal = chunkQG7ZF6TO_js.createClientOnlyComponent(ModalRoot, ModalFallback)
37
37
  function ModalTriggerRoot({ ...props }) {
38
38
  return /* @__PURE__ */ jsxRuntime.jsx(DialogPrimitive__namespace.Trigger, { "data-slot": "modal-trigger", ...props });
39
39
  }
40
- function ModalTriggerFallback({ ...props }) {
41
- return /* @__PURE__ */ jsxRuntime.jsx("button", { "data-slot": "modal-trigger", ...props });
40
+ function ModalTriggerFallback({ asChild, children, ...props }) {
41
+ if (asChild) {
42
+ return /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children });
43
+ }
44
+ return /* @__PURE__ */ jsxRuntime.jsx("button", { "data-slot": "modal-trigger", ...props, children });
42
45
  }
43
46
  var ModalTrigger = chunkQG7ZF6TO_js.createClientOnlyComponent(ModalTriggerRoot, ModalTriggerFallback);
44
47
  function ModalPortal({ ...props }) {
@@ -47,8 +50,11 @@ function ModalPortal({ ...props }) {
47
50
  function ModalCloseRoot({ ...props }) {
48
51
  return /* @__PURE__ */ jsxRuntime.jsx(DialogPrimitive__namespace.Close, { "data-slot": "modal-close", ...props });
49
52
  }
50
- function ModalCloseFallback({ ...props }) {
51
- return /* @__PURE__ */ jsxRuntime.jsx("button", { "data-slot": "modal-close", ...props });
53
+ function ModalCloseFallback({ asChild, children, ...props }) {
54
+ if (asChild) {
55
+ return /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children });
56
+ }
57
+ return /* @__PURE__ */ jsxRuntime.jsx("button", { "data-slot": "modal-close", ...props, children });
52
58
  }
53
59
  var ModalClose = chunkQG7ZF6TO_js.createClientOnlyComponent(ModalCloseRoot, ModalCloseFallback);
54
60
  var modalOverlayVariants = classVarianceAuthority.cva([
@@ -31,7 +31,16 @@ var Collapsible = chunkQG7ZF6TO_js.createClientOnlyComponent(CollapsibleRoot, Co
31
31
  var CollapsibleTriggerRoot = ({
32
32
  ...props
33
33
  }) => /* @__PURE__ */ jsxRuntime.jsx(CollapsiblePrimitive__namespace.CollapsibleTrigger, { "data-slot": "collapsible-trigger", ...props });
34
- var CollapsibleTriggerFallback = ({ children }) => /* @__PURE__ */ jsxRuntime.jsx("button", { "data-slot": "collapsible-trigger", children });
34
+ var CollapsibleTriggerFallback = ({
35
+ asChild,
36
+ children,
37
+ ...props
38
+ }) => {
39
+ if (asChild) {
40
+ return /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children });
41
+ }
42
+ return /* @__PURE__ */ jsxRuntime.jsx("button", { "data-slot": "collapsible-trigger", ...props, children });
43
+ };
35
44
  var CollapsibleTrigger2 = chunkQG7ZF6TO_js.createClientOnlyComponent(
36
45
  CollapsibleTriggerRoot,
37
46
  CollapsibleTriggerFallback
@@ -35,8 +35,11 @@ var Popover = chunkQG7ZF6TO_js.createClientOnlyComponent(PopoverRoot, PopoverFal
35
35
  function PopoverTriggerRoot({ ...props }) {
36
36
  return /* @__PURE__ */ jsxRuntime.jsx(PopoverPrimitive__namespace.Trigger, { "data-slot": "popover-trigger", ...props });
37
37
  }
38
- function PopoverTriggerFallback({ ...props }) {
39
- return /* @__PURE__ */ jsxRuntime.jsx("button", { "data-slot": "popover-trigger", ...props });
38
+ function PopoverTriggerFallback({ asChild, children, ...props }) {
39
+ if (asChild) {
40
+ return /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children });
41
+ }
42
+ return /* @__PURE__ */ jsxRuntime.jsx("button", { "data-slot": "popover-trigger", ...props, children });
40
43
  }
41
44
  var PopoverTrigger = chunkQG7ZF6TO_js.createClientOnlyComponent(PopoverTriggerRoot, PopoverTriggerFallback);
42
45
  function PopoverContentRoot({
@@ -1,7 +1,7 @@
1
1
  import { createClientOnlyComponent } from './chunk-4F2GSF2T.mjs';
2
2
  import { cn } from './chunk-WM2VP7MI.mjs';
3
3
  import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
4
- import { jsx } from 'react/jsx-runtime';
4
+ import { jsx, Fragment } from 'react/jsx-runtime';
5
5
 
6
6
  var CollapsibleRoot = ({ ...props }) => /* @__PURE__ */ jsx(CollapsiblePrimitive.Root, { "data-slot": "collapsible", ...props });
7
7
  var CollapsibleFallback = ({ children }) => /* @__PURE__ */ jsx("div", { "data-slot": "collapsible", children });
@@ -9,7 +9,16 @@ var Collapsible = createClientOnlyComponent(CollapsibleRoot, CollapsibleFallback
9
9
  var CollapsibleTriggerRoot = ({
10
10
  ...props
11
11
  }) => /* @__PURE__ */ jsx(CollapsiblePrimitive.CollapsibleTrigger, { "data-slot": "collapsible-trigger", ...props });
12
- var CollapsibleTriggerFallback = ({ children }) => /* @__PURE__ */ jsx("button", { "data-slot": "collapsible-trigger", children });
12
+ var CollapsibleTriggerFallback = ({
13
+ asChild,
14
+ children,
15
+ ...props
16
+ }) => {
17
+ if (asChild) {
18
+ return /* @__PURE__ */ jsx(Fragment, { children });
19
+ }
20
+ return /* @__PURE__ */ jsx("button", { "data-slot": "collapsible-trigger", ...props, children });
21
+ };
13
22
  var CollapsibleTrigger2 = createClientOnlyComponent(
14
23
  CollapsibleTriggerRoot,
15
24
  CollapsibleTriggerFallback
@@ -1,7 +1,7 @@
1
1
  import { Badge } from './chunk-IZCHLZ4H.mjs';
2
2
  import { jsx } from 'react/jsx-runtime';
3
3
 
4
- var PACKAGE_VERSION = "0.0.33" ;
4
+ var PACKAGE_VERSION = "0.0.35" ;
5
5
  var PACKAGE_NAME = "@vuer-ai/vuer-uikit" ;
6
6
  function VersionBadge({
7
7
  className,
@@ -3,7 +3,7 @@
3
3
  var chunkILJK43VJ_js = require('./chunk-ILJK43VJ.js');
4
4
  var jsxRuntime = require('react/jsx-runtime');
5
5
 
6
- var PACKAGE_VERSION = "0.0.33" ;
6
+ var PACKAGE_VERSION = "0.0.35" ;
7
7
  var PACKAGE_NAME = "@vuer-ai/vuer-uikit" ;
8
8
  function VersionBadge({
9
9
  className,
@@ -3,7 +3,7 @@ import { cn } from './chunk-WM2VP7MI.mjs';
3
3
  import * as DialogPrimitive from '@radix-ui/react-dialog';
4
4
  import { cva } from 'class-variance-authority';
5
5
  import { XIcon } from 'lucide-react';
6
- import { jsx, jsxs } from 'react/jsx-runtime';
6
+ import { jsx, Fragment, jsxs } from 'react/jsx-runtime';
7
7
 
8
8
  function ModalRoot({ ...props }) {
9
9
  return /* @__PURE__ */ jsx(DialogPrimitive.Root, { "data-slot": "modal", ...props });
@@ -15,8 +15,11 @@ var Modal = createClientOnlyComponent(ModalRoot, ModalFallback);
15
15
  function ModalTriggerRoot({ ...props }) {
16
16
  return /* @__PURE__ */ jsx(DialogPrimitive.Trigger, { "data-slot": "modal-trigger", ...props });
17
17
  }
18
- function ModalTriggerFallback({ ...props }) {
19
- return /* @__PURE__ */ jsx("button", { "data-slot": "modal-trigger", ...props });
18
+ function ModalTriggerFallback({ asChild, children, ...props }) {
19
+ if (asChild) {
20
+ return /* @__PURE__ */ jsx(Fragment, { children });
21
+ }
22
+ return /* @__PURE__ */ jsx("button", { "data-slot": "modal-trigger", ...props, children });
20
23
  }
21
24
  var ModalTrigger = createClientOnlyComponent(ModalTriggerRoot, ModalTriggerFallback);
22
25
  function ModalPortal({ ...props }) {
@@ -25,8 +28,11 @@ function ModalPortal({ ...props }) {
25
28
  function ModalCloseRoot({ ...props }) {
26
29
  return /* @__PURE__ */ jsx(DialogPrimitive.Close, { "data-slot": "modal-close", ...props });
27
30
  }
28
- function ModalCloseFallback({ ...props }) {
29
- return /* @__PURE__ */ jsx("button", { "data-slot": "modal-close", ...props });
31
+ function ModalCloseFallback({ asChild, children, ...props }) {
32
+ if (asChild) {
33
+ return /* @__PURE__ */ jsx(Fragment, { children });
34
+ }
35
+ return /* @__PURE__ */ jsx("button", { "data-slot": "modal-close", ...props, children });
30
36
  }
31
37
  var ModalClose = createClientOnlyComponent(ModalCloseRoot, ModalCloseFallback);
32
38
  var modalOverlayVariants = cva([
package/dist/index.js CHANGED
@@ -6,11 +6,11 @@ var chunkQJR6MCTR_js = require('./chunk-QJR6MCTR.js');
6
6
  var chunkFSFUZ7Y6_js = require('./chunk-FSFUZ7Y6.js');
7
7
  var chunkEAN5SZYQ_js = require('./chunk-EAN5SZYQ.js');
8
8
  var chunkR3SHGA4V_js = require('./chunk-R3SHGA4V.js');
9
- var chunkVIONNA5B_js = require('./chunk-VIONNA5B.js');
9
+ var chunkXFKSENGQ_js = require('./chunk-XFKSENGQ.js');
10
10
  var chunk3ZFILFNB_js = require('./chunk-3ZFILFNB.js');
11
11
  var chunkEMHRYI5O_js = require('./chunk-EMHRYI5O.js');
12
12
  var chunkBXYVNNXU_js = require('./chunk-BXYVNNXU.js');
13
- var chunkQF5IKMHU_js = require('./chunk-QF5IKMHU.js');
13
+ var chunkGFPXAGJY_js = require('./chunk-GFPXAGJY.js');
14
14
  var chunkJ2ZRCEKZ_js = require('./chunk-J2ZRCEKZ.js');
15
15
  var chunkRFFQCDHN_js = require('./chunk-RFFQCDHN.js');
16
16
  var chunkNC6NIC5C_js = require('./chunk-NC6NIC5C.js');
@@ -20,13 +20,13 @@ var chunkJWFD5H5L_js = require('./chunk-JWFD5H5L.js');
20
20
  var chunkEW34OO4H_js = require('./chunk-EW34OO4H.js');
21
21
  var chunkPBQSATSN_js = require('./chunk-PBQSATSN.js');
22
22
  var chunkP6K4746M_js = require('./chunk-P6K4746M.js');
23
- var chunkLKFZSASJ_js = require('./chunk-LKFZSASJ.js');
24
- var chunkCCNGF3D2_js = require('./chunk-CCNGF3D2.js');
23
+ var chunkQJPJVF7K_js = require('./chunk-QJPJVF7K.js');
24
+ var chunkTC4RAHDO_js = require('./chunk-TC4RAHDO.js');
25
25
  var chunk6C6V7VLS_js = require('./chunk-6C6V7VLS.js');
26
26
  var chunkILJK43VJ_js = require('./chunk-ILJK43VJ.js');
27
27
  var chunkPVQWUU6F_js = require('./chunk-PVQWUU6F.js');
28
28
  var chunkPY5KHH5C_js = require('./chunk-PY5KHH5C.js');
29
- var chunkX2LJ5T2W_js = require('./chunk-X2LJ5T2W.js');
29
+ var chunkR37JH544_js = require('./chunk-R37JH544.js');
30
30
  require('./chunk-KJ42IGH6.js');
31
31
  var chunkAKBWNVRH_js = require('./chunk-AKBWNVRH.js');
32
32
  var chunkWCK3EIS2_js = require('./chunk-WCK3EIS2.js');
@@ -77,7 +77,7 @@ Object.defineProperty(exports, "TreeView", {
77
77
  });
78
78
  Object.defineProperty(exports, "VersionBadge", {
79
79
  enumerable: true,
80
- get: function () { return chunkVIONNA5B_js.VersionBadge; }
80
+ get: function () { return chunkXFKSENGQ_js.VersionBadge; }
81
81
  });
82
82
  Object.defineProperty(exports, "ThemeProvider", {
83
83
  enumerable: true,
@@ -101,35 +101,35 @@ Object.defineProperty(exports, "RadioGroupItem", {
101
101
  });
102
102
  Object.defineProperty(exports, "Sheet", {
103
103
  enumerable: true,
104
- get: function () { return chunkQF5IKMHU_js.Sheet; }
104
+ get: function () { return chunkGFPXAGJY_js.Sheet; }
105
105
  });
106
106
  Object.defineProperty(exports, "SheetClose", {
107
107
  enumerable: true,
108
- get: function () { return chunkQF5IKMHU_js.SheetClose; }
108
+ get: function () { return chunkGFPXAGJY_js.SheetClose; }
109
109
  });
110
110
  Object.defineProperty(exports, "SheetContent", {
111
111
  enumerable: true,
112
- get: function () { return chunkQF5IKMHU_js.SheetContent; }
112
+ get: function () { return chunkGFPXAGJY_js.SheetContent; }
113
113
  });
114
114
  Object.defineProperty(exports, "SheetDescription", {
115
115
  enumerable: true,
116
- get: function () { return chunkQF5IKMHU_js.SheetDescription; }
116
+ get: function () { return chunkGFPXAGJY_js.SheetDescription; }
117
117
  });
118
118
  Object.defineProperty(exports, "SheetFooter", {
119
119
  enumerable: true,
120
- get: function () { return chunkQF5IKMHU_js.SheetFooter; }
120
+ get: function () { return chunkGFPXAGJY_js.SheetFooter; }
121
121
  });
122
122
  Object.defineProperty(exports, "SheetHeader", {
123
123
  enumerable: true,
124
- get: function () { return chunkQF5IKMHU_js.SheetHeader; }
124
+ get: function () { return chunkGFPXAGJY_js.SheetHeader; }
125
125
  });
126
126
  Object.defineProperty(exports, "SheetTitle", {
127
127
  enumerable: true,
128
- get: function () { return chunkQF5IKMHU_js.SheetTitle; }
128
+ get: function () { return chunkGFPXAGJY_js.SheetTitle; }
129
129
  });
130
130
  Object.defineProperty(exports, "SheetTrigger", {
131
131
  enumerable: true,
132
- get: function () { return chunkQF5IKMHU_js.SheetTrigger; }
132
+ get: function () { return chunkGFPXAGJY_js.SheetTrigger; }
133
133
  });
134
134
  Object.defineProperty(exports, "Slider", {
135
135
  enumerable: true,
@@ -273,59 +273,59 @@ Object.defineProperty(exports, "Layout", {
273
273
  });
274
274
  Object.defineProperty(exports, "Modal", {
275
275
  enumerable: true,
276
- get: function () { return chunkLKFZSASJ_js.Modal; }
276
+ get: function () { return chunkQJPJVF7K_js.Modal; }
277
277
  });
278
278
  Object.defineProperty(exports, "ModalClose", {
279
279
  enumerable: true,
280
- get: function () { return chunkLKFZSASJ_js.ModalClose; }
280
+ get: function () { return chunkQJPJVF7K_js.ModalClose; }
281
281
  });
282
282
  Object.defineProperty(exports, "ModalContent", {
283
283
  enumerable: true,
284
- get: function () { return chunkLKFZSASJ_js.ModalContent; }
284
+ get: function () { return chunkQJPJVF7K_js.ModalContent; }
285
285
  });
286
286
  Object.defineProperty(exports, "ModalDescription", {
287
287
  enumerable: true,
288
- get: function () { return chunkLKFZSASJ_js.ModalDescription; }
288
+ get: function () { return chunkQJPJVF7K_js.ModalDescription; }
289
289
  });
290
290
  Object.defineProperty(exports, "ModalFooter", {
291
291
  enumerable: true,
292
- get: function () { return chunkLKFZSASJ_js.ModalFooter; }
292
+ get: function () { return chunkQJPJVF7K_js.ModalFooter; }
293
293
  });
294
294
  Object.defineProperty(exports, "ModalHeader", {
295
295
  enumerable: true,
296
- get: function () { return chunkLKFZSASJ_js.ModalHeader; }
296
+ get: function () { return chunkQJPJVF7K_js.ModalHeader; }
297
297
  });
298
298
  Object.defineProperty(exports, "ModalOverlay", {
299
299
  enumerable: true,
300
- get: function () { return chunkLKFZSASJ_js.ModalOverlay; }
300
+ get: function () { return chunkQJPJVF7K_js.ModalOverlay; }
301
301
  });
302
302
  Object.defineProperty(exports, "ModalPortal", {
303
303
  enumerable: true,
304
- get: function () { return chunkLKFZSASJ_js.ModalPortal; }
304
+ get: function () { return chunkQJPJVF7K_js.ModalPortal; }
305
305
  });
306
306
  Object.defineProperty(exports, "ModalTitle", {
307
307
  enumerable: true,
308
- get: function () { return chunkLKFZSASJ_js.ModalTitle; }
308
+ get: function () { return chunkQJPJVF7K_js.ModalTitle; }
309
309
  });
310
310
  Object.defineProperty(exports, "ModalTrigger", {
311
311
  enumerable: true,
312
- get: function () { return chunkLKFZSASJ_js.ModalTrigger; }
312
+ get: function () { return chunkQJPJVF7K_js.ModalTrigger; }
313
313
  });
314
314
  Object.defineProperty(exports, "Popover", {
315
315
  enumerable: true,
316
- get: function () { return chunkCCNGF3D2_js.Popover; }
316
+ get: function () { return chunkTC4RAHDO_js.Popover; }
317
317
  });
318
318
  Object.defineProperty(exports, "PopoverAnchor", {
319
319
  enumerable: true,
320
- get: function () { return chunkCCNGF3D2_js.PopoverAnchor; }
320
+ get: function () { return chunkTC4RAHDO_js.PopoverAnchor; }
321
321
  });
322
322
  Object.defineProperty(exports, "PopoverContent", {
323
323
  enumerable: true,
324
- get: function () { return chunkCCNGF3D2_js.PopoverContent; }
324
+ get: function () { return chunkTC4RAHDO_js.PopoverContent; }
325
325
  });
326
326
  Object.defineProperty(exports, "PopoverTrigger", {
327
327
  enumerable: true,
328
- get: function () { return chunkCCNGF3D2_js.PopoverTrigger; }
328
+ get: function () { return chunkTC4RAHDO_js.PopoverTrigger; }
329
329
  });
330
330
  Object.defineProperty(exports, "Avatar", {
331
331
  enumerable: true,
@@ -409,15 +409,15 @@ Object.defineProperty(exports, "Checkbox", {
409
409
  });
410
410
  Object.defineProperty(exports, "Collapsible", {
411
411
  enumerable: true,
412
- get: function () { return chunkX2LJ5T2W_js.Collapsible; }
412
+ get: function () { return chunkR37JH544_js.Collapsible; }
413
413
  });
414
414
  Object.defineProperty(exports, "CollapsibleContent", {
415
415
  enumerable: true,
416
- get: function () { return chunkX2LJ5T2W_js.CollapsibleContent; }
416
+ get: function () { return chunkR37JH544_js.CollapsibleContent; }
417
417
  });
418
418
  Object.defineProperty(exports, "CollapsibleTrigger", {
419
419
  enumerable: true,
420
- get: function () { return chunkX2LJ5T2W_js.CollapsibleTrigger; }
420
+ get: function () { return chunkR37JH544_js.CollapsibleTrigger; }
421
421
  });
422
422
  Object.defineProperty(exports, "CursorProvider", {
423
423
  enumerable: true,
package/dist/index.mjs CHANGED
@@ -4,11 +4,11 @@ export { Toaster, toast } from './chunk-EAZQH4IX.mjs';
4
4
  export { ToggleGroup, ToggleGroupItem } from './chunk-G6CSH3FC.mjs';
5
5
  export { Toggle, toggleVariants } from './chunk-K6R7H7R2.mjs';
6
6
  export { TreeView } from './chunk-NKNUMZJL.mjs';
7
- export { VersionBadge } from './chunk-7XU7C4DL.mjs';
7
+ export { VersionBadge } from './chunk-WVXZ6OBP.mjs';
8
8
  export { ThemeProvider, useTheme } from './chunk-4QERYDMC.mjs';
9
9
  export { ThemeScript } from './chunk-YIBD2FEV.mjs';
10
10
  export { RadioGroup, RadioGroupItem } from './chunk-EL4FTB5J.mjs';
11
- export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger } from './chunk-2QJF6YMB.mjs';
11
+ export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger } from './chunk-KAUA4ODT.mjs';
12
12
  export { Slider } from './chunk-47WYS4WO.mjs';
13
13
  export { Switch } from './chunk-SWGYWILR.mjs';
14
14
  export { Timeline } from './chunk-MFXAWZIK.mjs';
@@ -18,13 +18,13 @@ export { Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, Dr
18
18
  export { DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger } from './chunk-56JBJR5O.mjs';
19
19
  export { InputNumbers } from './chunk-HQX4LDOI.mjs';
20
20
  export { Layout } from './chunk-CBNIBUFP.mjs';
21
- export { Modal, ModalClose, ModalContent, ModalDescription, ModalFooter, ModalHeader, ModalOverlay, ModalPortal, ModalTitle, ModalTrigger } from './chunk-D6KVE3E3.mjs';
22
- export { Popover, PopoverAnchor, PopoverContent, PopoverTrigger } from './chunk-JCUMV4F7.mjs';
21
+ export { Modal, ModalClose, ModalContent, ModalDescription, ModalFooter, ModalHeader, ModalOverlay, ModalPortal, ModalTitle, ModalTrigger } from './chunk-ZBG3KB7B.mjs';
22
+ export { Popover, PopoverAnchor, PopoverContent, PopoverTrigger } from './chunk-Q7JNDXDJ.mjs';
23
23
  export { Avatar, AvatarFallback, AvatarFallbackRoot, AvatarFallbackSSR, AvatarGroup, AvatarImage, AvatarImageFallback, AvatarImageRoot, AvatarRoot, AvatarSSRFallback } from './chunk-4X4OZQHW.mjs';
24
24
  export { Badge, badgeVariants } from './chunk-IZCHLZ4H.mjs';
25
25
  export { Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from './chunk-WSQ2D6H6.mjs';
26
26
  export { Checkbox } from './chunk-X4FMXFT3.mjs';
27
- export { Collapsible, CollapsibleContent, CollapsibleTrigger } from './chunk-SHQFIJDC.mjs';
27
+ export { Collapsible, CollapsibleContent, CollapsibleTrigger } from './chunk-VPIDZYRX.mjs';
28
28
  import './chunk-VGCVIHBR.mjs';
29
29
  export { CursorProvider } from './chunk-NSN3O6CZ.mjs';
30
30
  export { CursorButton, CursorInputRoot, CursorSelectTrigger, CursorTabs, CursorTextarea } from './chunk-VN2N7EAO.mjs';
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkX2LJ5T2W_js = require('../chunk-X2LJ5T2W.js');
3
+ var chunkR37JH544_js = require('../chunk-R37JH544.js');
4
4
  require('../chunk-T4N7UHZ7.js');
5
5
  require('../chunk-QG7ZF6TO.js');
6
6
  require('../chunk-OASPTOVZ.js');
@@ -12,13 +12,13 @@ require('../chunk-7KYAICHB.js');
12
12
 
13
13
  Object.defineProperty(exports, "Collapsible", {
14
14
  enumerable: true,
15
- get: function () { return chunkX2LJ5T2W_js.Collapsible; }
15
+ get: function () { return chunkR37JH544_js.Collapsible; }
16
16
  });
17
17
  Object.defineProperty(exports, "CollapsibleContent", {
18
18
  enumerable: true,
19
- get: function () { return chunkX2LJ5T2W_js.CollapsibleContent; }
19
+ get: function () { return chunkR37JH544_js.CollapsibleContent; }
20
20
  });
21
21
  Object.defineProperty(exports, "CollapsibleTrigger", {
22
22
  enumerable: true,
23
- get: function () { return chunkX2LJ5T2W_js.CollapsibleTrigger; }
23
+ get: function () { return chunkR37JH544_js.CollapsibleTrigger; }
24
24
  });
@@ -1,4 +1,4 @@
1
- export { Collapsible, CollapsibleContent, CollapsibleTrigger } from '../chunk-SHQFIJDC.mjs';
1
+ export { Collapsible, CollapsibleContent, CollapsibleTrigger } from '../chunk-VPIDZYRX.mjs';
2
2
  import '../chunk-LXDQ4KMN.mjs';
3
3
  import '../chunk-4F2GSF2T.mjs';
4
4
  import '../chunk-QG5Z4C65.mjs';