@szum-tech/design-system 3.6.0 → 3.7.0

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 (31) hide show
  1. package/dist/{chunk-N2Q3D32M.js → chunk-3BLXG7ET.js} +1 -1
  2. package/dist/chunk-4YXM4NWG.cjs +46 -0
  3. package/dist/{chunk-5Q3H4MOX.js → chunk-ACJ3ES2B.js} +1 -1
  4. package/dist/{chunk-6WGZMVJT.cjs → chunk-BAWVLSRF.cjs} +1 -1
  5. package/dist/{chunk-FUS2IGBX.js → chunk-FKCWRNWB.js} +2 -2
  6. package/dist/chunk-KXMI4545.js +43 -0
  7. package/dist/{chunk-Z33XUQTB.cjs → chunk-X55H6LRX.cjs} +1 -1
  8. package/dist/{chunk-54PWKHYF.cjs → chunk-Z6CZAPVG.cjs} +2 -2
  9. package/dist/components/badge/index.cjs +4 -4
  10. package/dist/components/badge/index.js +1 -1
  11. package/dist/components/button/index.cjs +9 -8
  12. package/dist/components/button/index.js +8 -7
  13. package/dist/components/color-swatch/index.cjs +2 -2
  14. package/dist/components/color-swatch/index.js +1 -1
  15. package/dist/components/dialog/index.cjs +9 -9
  16. package/dist/components/dialog/index.js +1 -1
  17. package/dist/components/index.cjs +94 -85
  18. package/dist/components/index.d.cts +1 -0
  19. package/dist/components/index.d.ts +1 -0
  20. package/dist/components/index.js +8 -7
  21. package/dist/components/scroll-area/index.cjs +16 -0
  22. package/dist/components/scroll-area/index.d.cts +11 -0
  23. package/dist/components/scroll-area/index.d.ts +11 -0
  24. package/dist/components/scroll-area/index.js +3 -0
  25. package/dist/components/stepper/index.cjs +27 -26
  26. package/dist/components/stepper/index.js +8 -7
  27. package/dist/components/toaster/index.cjs +10 -9
  28. package/dist/components/toaster/index.js +8 -7
  29. package/package.json +1 -1
  30. /package/dist/{chunk-GWRG4LH5.js → chunk-E2Y5T6U6.js} +0 -0
  31. /package/dist/{chunk-JXZ27PK6.cjs → chunk-ZTD7ED52.cjs} +0 -0
@@ -5,7 +5,7 @@ import { cva } from 'class-variance-authority';
5
5
  import { jsx } from 'react/jsx-runtime';
6
6
 
7
7
  var colorSwatchVariants = cva(
8
- "box-border rounded border border-border shadow-sm [background-clip:padding-box] data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
8
+ "border-border box-border rounded border shadow-sm [background-clip:padding-box] data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
9
9
  {
10
10
  variants: {
11
11
  size: {
@@ -0,0 +1,46 @@
1
+ 'use strict';
2
+
3
+ var chunkH2BWO3SI_cjs = require('./chunk-H2BWO3SI.cjs');
4
+ var radixUi = require('radix-ui');
5
+ var jsxRuntime = require('react/jsx-runtime');
6
+
7
+ function ScrollBar({ className, orientation = "vertical", ...props }) {
8
+ return /* @__PURE__ */ jsxRuntime.jsx(
9
+ radixUi.ScrollArea.ScrollAreaScrollbar,
10
+ {
11
+ "data-slot": "scroll-area-scrollbar",
12
+ orientation,
13
+ className: chunkH2BWO3SI_cjs.cn(
14
+ "flex touch-none p-px transition-colors select-none",
15
+ orientation === "vertical" ? "h-full w-2.5 border-l border-l-transparent" : "",
16
+ orientation === "horizontal" ? "h-2.5 flex-col border-t border-t-transparent" : "",
17
+ className
18
+ ),
19
+ ...props,
20
+ children: /* @__PURE__ */ jsxRuntime.jsx(
21
+ radixUi.ScrollArea.ScrollAreaThumb,
22
+ {
23
+ "data-slot": "scroll-area-thumb",
24
+ className: "bg-border relative flex-1 rounded-full"
25
+ }
26
+ )
27
+ }
28
+ );
29
+ }
30
+ function ScrollArea({ className, children, ...props }) {
31
+ return /* @__PURE__ */ jsxRuntime.jsxs(radixUi.ScrollArea.Root, { "data-slot": "scroll-area", className: chunkH2BWO3SI_cjs.cn("relative", className), ...props, children: [
32
+ /* @__PURE__ */ jsxRuntime.jsx(
33
+ radixUi.ScrollArea.Viewport,
34
+ {
35
+ "data-slot": "scroll-area-viewport",
36
+ className: "focus-visible:ring-ring/50 size-full rounded-[inherit] transition-[color,box-shadow] outline-none focus-visible:ring focus-visible:outline-1",
37
+ children
38
+ }
39
+ ),
40
+ /* @__PURE__ */ jsxRuntime.jsx(ScrollBar, {}),
41
+ /* @__PURE__ */ jsxRuntime.jsx(radixUi.ScrollArea.Corner, {})
42
+ ] });
43
+ }
44
+
45
+ exports.ScrollArea = ScrollArea;
46
+ exports.ScrollBar = ScrollBar;
@@ -13,7 +13,7 @@ function DialogClose(props) {
13
13
  }
14
14
  var dialogContentVariants = cva(
15
15
  [
16
- "bg-background fixed top-[50%] left-[50%] z-50 grid w-full gap-4 rounded border border-border p-6 shadow-lg duration-200 translate-x-[-50%] translate-y-[-50%] max-w-[calc(100%-1rem)]",
16
+ "bg-background border-border fixed left-[50%] top-[50%] z-50 grid w-full max-w-[calc(100%-1rem)] translate-x-[-50%] translate-y-[-50%] gap-4 rounded border p-6 shadow-lg duration-200",
17
17
  "data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 "
18
18
  ],
19
19
  {
@@ -15,7 +15,7 @@ function DialogClose(props) {
15
15
  }
16
16
  var dialogContentVariants = classVarianceAuthority.cva(
17
17
  [
18
- "bg-background fixed top-[50%] left-[50%] z-50 grid w-full gap-4 rounded border border-border p-6 shadow-lg duration-200 translate-x-[-50%] translate-y-[-50%] max-w-[calc(100%-1rem)]",
18
+ "bg-background border-border fixed left-[50%] top-[50%] z-50 grid w-full max-w-[calc(100%-1rem)] translate-x-[-50%] translate-y-[-50%] gap-4 rounded border p-6 shadow-lg duration-200",
19
19
  "data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 "
20
20
  ],
21
21
  {
@@ -11,8 +11,8 @@ var badgeVariants = cva(
11
11
  primary: "bg-primary text-primary-foreground [a&]:hover:bg-primary/90 border-transparent",
12
12
  secondary: "bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 border-transparent",
13
13
  outline: "text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground",
14
- success: "bg-success text-success-foreground [a&]:hover:bg-success/90 border-transparent focus-visible:ring-success/20",
15
- warning: "bg-warning text-warning-foreground [a&]:hover:bg-warning/90 border-transparent focus-visible:ring-warning/20",
14
+ success: "bg-success text-success-foreground [a&]:hover:bg-success/90 focus-visible:ring-success/20 border-transparent",
15
+ warning: "bg-warning text-warning-foreground [a&]:hover:bg-warning/90 focus-visible:ring-warning/20 border-transparent",
16
16
  error: "bg-error [a&]:hover:bg-error/90 focus-visible:ring-error/20 dark:focus-visible:ring-error/40 dark:bg-error/60 text-error-foreground border-transparent"
17
17
  }
18
18
  },
@@ -0,0 +1,43 @@
1
+ import { cn } from './chunk-ZD2QRAOX.js';
2
+ import { ScrollArea as ScrollArea$1 } from 'radix-ui';
3
+ import { jsx, jsxs } from 'react/jsx-runtime';
4
+
5
+ function ScrollBar({ className, orientation = "vertical", ...props }) {
6
+ return /* @__PURE__ */ jsx(
7
+ ScrollArea$1.ScrollAreaScrollbar,
8
+ {
9
+ "data-slot": "scroll-area-scrollbar",
10
+ orientation,
11
+ className: cn(
12
+ "flex touch-none p-px transition-colors select-none",
13
+ orientation === "vertical" ? "h-full w-2.5 border-l border-l-transparent" : "",
14
+ orientation === "horizontal" ? "h-2.5 flex-col border-t border-t-transparent" : "",
15
+ className
16
+ ),
17
+ ...props,
18
+ children: /* @__PURE__ */ jsx(
19
+ ScrollArea$1.ScrollAreaThumb,
20
+ {
21
+ "data-slot": "scroll-area-thumb",
22
+ className: "bg-border relative flex-1 rounded-full"
23
+ }
24
+ )
25
+ }
26
+ );
27
+ }
28
+ function ScrollArea({ className, children, ...props }) {
29
+ return /* @__PURE__ */ jsxs(ScrollArea$1.Root, { "data-slot": "scroll-area", className: cn("relative", className), ...props, children: [
30
+ /* @__PURE__ */ jsx(
31
+ ScrollArea$1.Viewport,
32
+ {
33
+ "data-slot": "scroll-area-viewport",
34
+ className: "focus-visible:ring-ring/50 size-full rounded-[inherit] transition-[color,box-shadow] outline-none focus-visible:ring focus-visible:outline-1",
35
+ children
36
+ }
37
+ ),
38
+ /* @__PURE__ */ jsx(ScrollBar, {}),
39
+ /* @__PURE__ */ jsx(ScrollArea$1.Corner, {})
40
+ ] });
41
+ }
42
+
43
+ export { ScrollArea, ScrollBar };
@@ -27,7 +27,7 @@ function _interopNamespace(e) {
27
27
  var React__namespace = /*#__PURE__*/_interopNamespace(React);
28
28
 
29
29
  var colorSwatchVariants = classVarianceAuthority.cva(
30
- "box-border rounded border border-border shadow-sm [background-clip:padding-box] data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
30
+ "border-border box-border rounded border shadow-sm [background-clip:padding-box] data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
31
31
  {
32
32
  variants: {
33
33
  size: {
@@ -13,8 +13,8 @@ var badgeVariants = classVarianceAuthority.cva(
13
13
  primary: "bg-primary text-primary-foreground [a&]:hover:bg-primary/90 border-transparent",
14
14
  secondary: "bg-secondary text-secondary-foreground [a&]:hover:bg-secondary/90 border-transparent",
15
15
  outline: "text-foreground [a&]:hover:bg-accent [a&]:hover:text-accent-foreground",
16
- success: "bg-success text-success-foreground [a&]:hover:bg-success/90 border-transparent focus-visible:ring-success/20",
17
- warning: "bg-warning text-warning-foreground [a&]:hover:bg-warning/90 border-transparent focus-visible:ring-warning/20",
16
+ success: "bg-success text-success-foreground [a&]:hover:bg-success/90 focus-visible:ring-success/20 border-transparent",
17
+ warning: "bg-warning text-warning-foreground [a&]:hover:bg-warning/90 focus-visible:ring-warning/20 border-transparent",
18
18
  error: "bg-error [a&]:hover:bg-error/90 focus-visible:ring-error/20 dark:focus-visible:ring-error/40 dark:bg-error/60 text-error-foreground border-transparent"
19
19
  }
20
20
  },
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunk54PWKHYF_cjs = require('../../chunk-54PWKHYF.cjs');
3
+ var chunkZ6CZAPVG_cjs = require('../../chunk-Z6CZAPVG.cjs');
4
4
  require('../../chunk-H2BWO3SI.cjs');
5
5
  require('../../chunk-3376ZTRC.cjs');
6
6
 
@@ -8,13 +8,13 @@ require('../../chunk-3376ZTRC.cjs');
8
8
 
9
9
  Object.defineProperty(exports, "Badge", {
10
10
  enumerable: true,
11
- get: function () { return chunk54PWKHYF_cjs.Badge; }
11
+ get: function () { return chunkZ6CZAPVG_cjs.Badge; }
12
12
  });
13
13
  Object.defineProperty(exports, "BadgeButton", {
14
14
  enumerable: true,
15
- get: function () { return chunk54PWKHYF_cjs.BadgeButton; }
15
+ get: function () { return chunkZ6CZAPVG_cjs.BadgeButton; }
16
16
  });
17
17
  Object.defineProperty(exports, "BadgeDot", {
18
18
  enumerable: true,
19
- get: function () { return chunk54PWKHYF_cjs.BadgeDot; }
19
+ get: function () { return chunkZ6CZAPVG_cjs.BadgeDot; }
20
20
  });
@@ -1,3 +1,3 @@
1
- export { Badge, BadgeButton, BadgeDot } from '../../chunk-FUS2IGBX.js';
1
+ export { Badge, BadgeButton, BadgeDot } from '../../chunk-FKCWRNWB.js';
2
2
  import '../../chunk-ZD2QRAOX.js';
3
3
  import '../../chunk-BYXBJQAS.js';
@@ -1,28 +1,29 @@
1
1
  'use strict';
2
2
 
3
- var chunkJXZ27PK6_cjs = require('../../chunk-JXZ27PK6.cjs');
3
+ var chunkZTD7ED52_cjs = require('../../chunk-ZTD7ED52.cjs');
4
4
  require('../../chunk-NU5UQPBX.cjs');
5
5
  require('../../chunk-GR37JJQK.cjs');
6
- require('../../chunk-3DUJHGXE.cjs');
6
+ require('../../chunk-5AA4IE2T.cjs');
7
7
  require('../../chunk-TH44JYXB.cjs');
8
8
  require('../../chunk-XENOUBSI.cjs');
9
+ require('../../chunk-4YXM4NWG.cjs');
9
10
  require('../../chunk-3ZRMIVJM.cjs');
10
11
  require('../../chunk-GHV2TURY.cjs');
11
12
  require('../../chunk-3WSQRFUY.cjs');
12
13
  require('../../chunk-2Y2ZCPNV.cjs');
13
14
  require('../../chunk-HCHVDUI6.cjs');
14
- require('../../chunk-Z33XUQTB.cjs');
15
- require('../../chunk-6WGZMVJT.cjs');
15
+ require('../../chunk-X55H6LRX.cjs');
16
+ require('../../chunk-BAWVLSRF.cjs');
16
17
  require('../../chunk-YTVV2IUF.cjs');
17
18
  require('../../chunk-S3ANEJJ7.cjs');
18
- require('../../chunk-UIOBJSKZ.cjs');
19
19
  require('../../chunk-YWG7TML6.cjs');
20
- require('../../chunk-5AA4IE2T.cjs');
20
+ require('../../chunk-3DUJHGXE.cjs');
21
+ require('../../chunk-UIOBJSKZ.cjs');
21
22
  require('../../chunk-EW6TE3N5.cjs');
22
23
  require('../../chunk-7EYMOUWG.cjs');
23
24
  require('../../chunk-TMXVL5CV.cjs');
24
25
  require('../../chunk-I7AV5IQO.cjs');
25
- require('../../chunk-54PWKHYF.cjs');
26
+ require('../../chunk-Z6CZAPVG.cjs');
26
27
  require('../../chunk-H2BWO3SI.cjs');
27
28
  require('../../chunk-3376ZTRC.cjs');
28
29
 
@@ -30,5 +31,5 @@ require('../../chunk-3376ZTRC.cjs');
30
31
 
31
32
  Object.defineProperty(exports, "Button", {
32
33
  enumerable: true,
33
- get: function () { return chunkJXZ27PK6_cjs.Button; }
34
+ get: function () { return chunkZTD7ED52_cjs.Button; }
34
35
  });
@@ -1,25 +1,26 @@
1
- export { Button } from '../../chunk-GWRG4LH5.js';
1
+ export { Button } from '../../chunk-E2Y5T6U6.js';
2
2
  import '../../chunk-OQCNPNPS.js';
3
3
  import '../../chunk-HJJPEVIH.js';
4
- import '../../chunk-XV3AQ6NS.js';
4
+ import '../../chunk-UGSNASZM.js';
5
5
  import '../../chunk-PBEZZMAB.js';
6
6
  import '../../chunk-4TRADSTP.js';
7
+ import '../../chunk-KXMI4545.js';
7
8
  import '../../chunk-O7QFYWMK.js';
8
9
  import '../../chunk-DTSFPOLX.js';
9
10
  import '../../chunk-P5IUC7HJ.js';
10
11
  import '../../chunk-6BSR3O2J.js';
11
12
  import '../../chunk-5F2Y65JH.js';
12
- import '../../chunk-N2Q3D32M.js';
13
- import '../../chunk-5Q3H4MOX.js';
13
+ import '../../chunk-3BLXG7ET.js';
14
+ import '../../chunk-ACJ3ES2B.js';
14
15
  import '../../chunk-KYFNEU4K.js';
15
16
  import '../../chunk-I3RSTJP6.js';
16
- import '../../chunk-XJIUGEPN.js';
17
17
  import '../../chunk-UW6GOD7J.js';
18
- import '../../chunk-UGSNASZM.js';
18
+ import '../../chunk-XV3AQ6NS.js';
19
+ import '../../chunk-XJIUGEPN.js';
19
20
  import '../../chunk-H5O5L6XT.js';
20
21
  import '../../chunk-DFD2WUOU.js';
21
22
  import '../../chunk-5MJPZUTO.js';
22
23
  import '../../chunk-NGVFYKAT.js';
23
- import '../../chunk-FUS2IGBX.js';
24
+ import '../../chunk-FKCWRNWB.js';
24
25
  import '../../chunk-ZD2QRAOX.js';
25
26
  import '../../chunk-BYXBJQAS.js';
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunkZ33XUQTB_cjs = require('../../chunk-Z33XUQTB.cjs');
3
+ var chunkX55H6LRX_cjs = require('../../chunk-X55H6LRX.cjs');
4
4
  require('../../chunk-H2BWO3SI.cjs');
5
5
  require('../../chunk-3376ZTRC.cjs');
6
6
 
@@ -8,5 +8,5 @@ require('../../chunk-3376ZTRC.cjs');
8
8
 
9
9
  Object.defineProperty(exports, "ColorSwatch", {
10
10
  enumerable: true,
11
- get: function () { return chunkZ33XUQTB_cjs.ColorSwatch; }
11
+ get: function () { return chunkX55H6LRX_cjs.ColorSwatch; }
12
12
  });
@@ -1,3 +1,3 @@
1
- export { ColorSwatch } from '../../chunk-N2Q3D32M.js';
1
+ export { ColorSwatch } from '../../chunk-3BLXG7ET.js';
2
2
  import '../../chunk-ZD2QRAOX.js';
3
3
  import '../../chunk-BYXBJQAS.js';
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var chunk6WGZMVJT_cjs = require('../../chunk-6WGZMVJT.cjs');
3
+ var chunkBAWVLSRF_cjs = require('../../chunk-BAWVLSRF.cjs');
4
4
  require('../../chunk-H2BWO3SI.cjs');
5
5
  require('../../chunk-3376ZTRC.cjs');
6
6
 
@@ -8,33 +8,33 @@ require('../../chunk-3376ZTRC.cjs');
8
8
 
9
9
  Object.defineProperty(exports, "Dialog", {
10
10
  enumerable: true,
11
- get: function () { return chunk6WGZMVJT_cjs.Dialog; }
11
+ get: function () { return chunkBAWVLSRF_cjs.Dialog; }
12
12
  });
13
13
  Object.defineProperty(exports, "DialogClose", {
14
14
  enumerable: true,
15
- get: function () { return chunk6WGZMVJT_cjs.DialogClose; }
15
+ get: function () { return chunkBAWVLSRF_cjs.DialogClose; }
16
16
  });
17
17
  Object.defineProperty(exports, "DialogContent", {
18
18
  enumerable: true,
19
- get: function () { return chunk6WGZMVJT_cjs.DialogContent; }
19
+ get: function () { return chunkBAWVLSRF_cjs.DialogContent; }
20
20
  });
21
21
  Object.defineProperty(exports, "DialogDescription", {
22
22
  enumerable: true,
23
- get: function () { return chunk6WGZMVJT_cjs.DialogDescription; }
23
+ get: function () { return chunkBAWVLSRF_cjs.DialogDescription; }
24
24
  });
25
25
  Object.defineProperty(exports, "DialogFooter", {
26
26
  enumerable: true,
27
- get: function () { return chunk6WGZMVJT_cjs.DialogFooter; }
27
+ get: function () { return chunkBAWVLSRF_cjs.DialogFooter; }
28
28
  });
29
29
  Object.defineProperty(exports, "DialogHeader", {
30
30
  enumerable: true,
31
- get: function () { return chunk6WGZMVJT_cjs.DialogHeader; }
31
+ get: function () { return chunkBAWVLSRF_cjs.DialogHeader; }
32
32
  });
33
33
  Object.defineProperty(exports, "DialogTitle", {
34
34
  enumerable: true,
35
- get: function () { return chunk6WGZMVJT_cjs.DialogTitle; }
35
+ get: function () { return chunkBAWVLSRF_cjs.DialogTitle; }
36
36
  });
37
37
  Object.defineProperty(exports, "DialogTrigger", {
38
38
  enumerable: true,
39
- get: function () { return chunk6WGZMVJT_cjs.DialogTrigger; }
39
+ get: function () { return chunkBAWVLSRF_cjs.DialogTrigger; }
40
40
  });
@@ -1,3 +1,3 @@
1
- export { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from '../../chunk-5Q3H4MOX.js';
1
+ export { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from '../../chunk-ACJ3ES2B.js';
2
2
  import '../../chunk-ZD2QRAOX.js';
3
3
  import '../../chunk-BYXBJQAS.js';
@@ -2,29 +2,30 @@
2
2
 
3
3
  'use strict';
4
4
 
5
- var chunkJXZ27PK6_cjs = require('../chunk-JXZ27PK6.cjs');
5
+ var chunkZTD7ED52_cjs = require('../chunk-ZTD7ED52.cjs');
6
6
  var chunkNU5UQPBX_cjs = require('../chunk-NU5UQPBX.cjs');
7
7
  var chunkGR37JJQK_cjs = require('../chunk-GR37JJQK.cjs');
8
- var chunk3DUJHGXE_cjs = require('../chunk-3DUJHGXE.cjs');
8
+ var chunk5AA4IE2T_cjs = require('../chunk-5AA4IE2T.cjs');
9
9
  var chunkTH44JYXB_cjs = require('../chunk-TH44JYXB.cjs');
10
10
  var chunkXENOUBSI_cjs = require('../chunk-XENOUBSI.cjs');
11
+ var chunk4YXM4NWG_cjs = require('../chunk-4YXM4NWG.cjs');
11
12
  var chunk3ZRMIVJM_cjs = require('../chunk-3ZRMIVJM.cjs');
12
13
  var chunkGHV2TURY_cjs = require('../chunk-GHV2TURY.cjs');
13
14
  var chunk3WSQRFUY_cjs = require('../chunk-3WSQRFUY.cjs');
14
15
  var chunk2Y2ZCPNV_cjs = require('../chunk-2Y2ZCPNV.cjs');
15
16
  var chunkHCHVDUI6_cjs = require('../chunk-HCHVDUI6.cjs');
16
- var chunkZ33XUQTB_cjs = require('../chunk-Z33XUQTB.cjs');
17
- var chunk6WGZMVJT_cjs = require('../chunk-6WGZMVJT.cjs');
17
+ var chunkX55H6LRX_cjs = require('../chunk-X55H6LRX.cjs');
18
+ var chunkBAWVLSRF_cjs = require('../chunk-BAWVLSRF.cjs');
18
19
  var chunkYTVV2IUF_cjs = require('../chunk-YTVV2IUF.cjs');
19
20
  var chunkS3ANEJJ7_cjs = require('../chunk-S3ANEJJ7.cjs');
20
- var chunkUIOBJSKZ_cjs = require('../chunk-UIOBJSKZ.cjs');
21
21
  var chunkYWG7TML6_cjs = require('../chunk-YWG7TML6.cjs');
22
- var chunk5AA4IE2T_cjs = require('../chunk-5AA4IE2T.cjs');
22
+ var chunk3DUJHGXE_cjs = require('../chunk-3DUJHGXE.cjs');
23
+ var chunkUIOBJSKZ_cjs = require('../chunk-UIOBJSKZ.cjs');
23
24
  require('../chunk-EW6TE3N5.cjs');
24
25
  require('../chunk-7EYMOUWG.cjs');
25
26
  var chunkTMXVL5CV_cjs = require('../chunk-TMXVL5CV.cjs');
26
27
  var chunkI7AV5IQO_cjs = require('../chunk-I7AV5IQO.cjs');
27
- var chunk54PWKHYF_cjs = require('../chunk-54PWKHYF.cjs');
28
+ var chunkZ6CZAPVG_cjs = require('../chunk-Z6CZAPVG.cjs');
28
29
  require('../chunk-H2BWO3SI.cjs');
29
30
  require('../chunk-3376ZTRC.cjs');
30
31
 
@@ -32,91 +33,91 @@ require('../chunk-3376ZTRC.cjs');
32
33
 
33
34
  Object.defineProperty(exports, "Button", {
34
35
  enumerable: true,
35
- get: function () { return chunkJXZ27PK6_cjs.Button; }
36
+ get: function () { return chunkZTD7ED52_cjs.Button; }
36
37
  });
37
38
  Object.defineProperty(exports, "Stepper", {
38
39
  enumerable: true,
39
- get: function () { return chunkJXZ27PK6_cjs.Stepper; }
40
+ get: function () { return chunkZTD7ED52_cjs.Stepper; }
40
41
  });
41
42
  Object.defineProperty(exports, "StepperActivationMode", {
42
43
  enumerable: true,
43
- get: function () { return chunkJXZ27PK6_cjs.StepperActivationMode; }
44
+ get: function () { return chunkZTD7ED52_cjs.StepperActivationMode; }
44
45
  });
45
46
  Object.defineProperty(exports, "StepperContent", {
46
47
  enumerable: true,
47
- get: function () { return chunkJXZ27PK6_cjs.StepperContent; }
48
+ get: function () { return chunkZTD7ED52_cjs.StepperContent; }
48
49
  });
49
50
  Object.defineProperty(exports, "StepperDataState", {
50
51
  enumerable: true,
51
- get: function () { return chunkJXZ27PK6_cjs.StepperDataState; }
52
+ get: function () { return chunkZTD7ED52_cjs.StepperDataState; }
52
53
  });
53
54
  Object.defineProperty(exports, "StepperDescription", {
54
55
  enumerable: true,
55
- get: function () { return chunkJXZ27PK6_cjs.StepperDescription; }
56
+ get: function () { return chunkZTD7ED52_cjs.StepperDescription; }
56
57
  });
57
58
  Object.defineProperty(exports, "StepperFocusIntent", {
58
59
  enumerable: true,
59
- get: function () { return chunkJXZ27PK6_cjs.StepperFocusIntent; }
60
+ get: function () { return chunkZTD7ED52_cjs.StepperFocusIntent; }
60
61
  });
61
62
  Object.defineProperty(exports, "StepperIndicator", {
62
63
  enumerable: true,
63
- get: function () { return chunkJXZ27PK6_cjs.StepperIndicator; }
64
+ get: function () { return chunkZTD7ED52_cjs.StepperIndicator; }
64
65
  });
65
66
  Object.defineProperty(exports, "StepperItem", {
66
67
  enumerable: true,
67
- get: function () { return chunkJXZ27PK6_cjs.StepperItem; }
68
+ get: function () { return chunkZTD7ED52_cjs.StepperItem; }
68
69
  });
69
70
  Object.defineProperty(exports, "StepperNav", {
70
71
  enumerable: true,
71
- get: function () { return chunkJXZ27PK6_cjs.StepperNav; }
72
+ get: function () { return chunkZTD7ED52_cjs.StepperNav; }
72
73
  });
73
74
  Object.defineProperty(exports, "StepperNavigationDirection", {
74
75
  enumerable: true,
75
- get: function () { return chunkJXZ27PK6_cjs.StepperNavigationDirection; }
76
+ get: function () { return chunkZTD7ED52_cjs.StepperNavigationDirection; }
76
77
  });
77
78
  Object.defineProperty(exports, "StepperNextTrigger", {
78
79
  enumerable: true,
79
- get: function () { return chunkJXZ27PK6_cjs.StepperNextTrigger; }
80
+ get: function () { return chunkZTD7ED52_cjs.StepperNextTrigger; }
80
81
  });
81
82
  Object.defineProperty(exports, "StepperOrientation", {
82
83
  enumerable: true,
83
- get: function () { return chunkJXZ27PK6_cjs.StepperOrientation; }
84
+ get: function () { return chunkZTD7ED52_cjs.StepperOrientation; }
84
85
  });
85
86
  Object.defineProperty(exports, "StepperPanel", {
86
87
  enumerable: true,
87
- get: function () { return chunkJXZ27PK6_cjs.StepperPanel; }
88
+ get: function () { return chunkZTD7ED52_cjs.StepperPanel; }
88
89
  });
89
90
  Object.defineProperty(exports, "StepperPrevTrigger", {
90
91
  enumerable: true,
91
- get: function () { return chunkJXZ27PK6_cjs.StepperPrevTrigger; }
92
+ get: function () { return chunkZTD7ED52_cjs.StepperPrevTrigger; }
92
93
  });
93
94
  Object.defineProperty(exports, "StepperTitle", {
94
95
  enumerable: true,
95
- get: function () { return chunkJXZ27PK6_cjs.StepperTitle; }
96
+ get: function () { return chunkZTD7ED52_cjs.StepperTitle; }
96
97
  });
97
98
  Object.defineProperty(exports, "StepperTrigger", {
98
99
  enumerable: true,
99
- get: function () { return chunkJXZ27PK6_cjs.StepperTrigger; }
100
+ get: function () { return chunkZTD7ED52_cjs.StepperTrigger; }
100
101
  });
101
102
  Object.defineProperty(exports, "Toaster", {
102
103
  enumerable: true,
103
- get: function () { return chunkJXZ27PK6_cjs.Toaster; }
104
+ get: function () { return chunkZTD7ED52_cjs.Toaster; }
104
105
  });
105
106
  Object.defineProperty(exports, "toast", {
106
107
  enumerable: true,
107
- get: function () { return chunkJXZ27PK6_cjs.toast; }
108
+ get: function () { return chunkZTD7ED52_cjs.toast; }
108
109
  });
109
110
  Object.defineProperty(exports, "useStepperContext", {
110
111
  enumerable: true,
111
- get: function () { return chunkJXZ27PK6_cjs.useStepperContext; }
112
+ get: function () { return chunkZTD7ED52_cjs.useStepperContext; }
112
113
  });
113
114
  Object.defineProperty(exports, "useStepperFocusContext", {
114
115
  enumerable: true,
115
- get: function () { return chunkJXZ27PK6_cjs.useStepperFocusContext; }
116
+ get: function () { return chunkZTD7ED52_cjs.useStepperFocusContext; }
116
117
  });
117
118
  Object.defineProperty(exports, "useStepperItemContext", {
118
119
  enumerable: true,
119
- get: function () { return chunkJXZ27PK6_cjs.useStepperItemContext; }
120
+ get: function () { return chunkZTD7ED52_cjs.useStepperItemContext; }
120
121
  });
121
122
  Object.defineProperty(exports, "Textarea", {
122
123
  enumerable: true,
@@ -130,45 +131,9 @@ Object.defineProperty(exports, "TooltipProvider", {
130
131
  enumerable: true,
131
132
  get: function () { return chunkGR37JJQK_cjs.TooltipProvider; }
132
133
  });
133
- Object.defineProperty(exports, "Item", {
134
- enumerable: true,
135
- get: function () { return chunk3DUJHGXE_cjs.Item; }
136
- });
137
- Object.defineProperty(exports, "ItemActions", {
138
- enumerable: true,
139
- get: function () { return chunk3DUJHGXE_cjs.ItemActions; }
140
- });
141
- Object.defineProperty(exports, "ItemContent", {
142
- enumerable: true,
143
- get: function () { return chunk3DUJHGXE_cjs.ItemContent; }
144
- });
145
- Object.defineProperty(exports, "ItemDescription", {
146
- enumerable: true,
147
- get: function () { return chunk3DUJHGXE_cjs.ItemDescription; }
148
- });
149
- Object.defineProperty(exports, "ItemFooter", {
150
- enumerable: true,
151
- get: function () { return chunk3DUJHGXE_cjs.ItemFooter; }
152
- });
153
- Object.defineProperty(exports, "ItemGroup", {
154
- enumerable: true,
155
- get: function () { return chunk3DUJHGXE_cjs.ItemGroup; }
156
- });
157
- Object.defineProperty(exports, "ItemHeader", {
158
- enumerable: true,
159
- get: function () { return chunk3DUJHGXE_cjs.ItemHeader; }
160
- });
161
- Object.defineProperty(exports, "ItemMedia", {
162
- enumerable: true,
163
- get: function () { return chunk3DUJHGXE_cjs.ItemMedia; }
164
- });
165
- Object.defineProperty(exports, "ItemSeparator", {
166
- enumerable: true,
167
- get: function () { return chunk3DUJHGXE_cjs.ItemSeparator; }
168
- });
169
- Object.defineProperty(exports, "ItemTitle", {
134
+ Object.defineProperty(exports, "Input", {
170
135
  enumerable: true,
171
- get: function () { return chunk3DUJHGXE_cjs.ItemTitle; }
136
+ get: function () { return chunk5AA4IE2T_cjs.Input; }
172
137
  });
173
138
  Object.defineProperty(exports, "Progress", {
174
139
  enumerable: true,
@@ -182,6 +147,14 @@ Object.defineProperty(exports, "RadioGroupItem", {
182
147
  enumerable: true,
183
148
  get: function () { return chunkXENOUBSI_cjs.RadioGroupItem; }
184
149
  });
150
+ Object.defineProperty(exports, "ScrollArea", {
151
+ enumerable: true,
152
+ get: function () { return chunk4YXM4NWG_cjs.ScrollArea; }
153
+ });
154
+ Object.defineProperty(exports, "ScrollBar", {
155
+ enumerable: true,
156
+ get: function () { return chunk4YXM4NWG_cjs.ScrollBar; }
157
+ });
185
158
  Object.defineProperty(exports, "Select", {
186
159
  enumerable: true,
187
160
  get: function () { return chunk3ZRMIVJM_cjs.Select; }
@@ -276,39 +249,39 @@ Object.defineProperty(exports, "Checkbox", {
276
249
  });
277
250
  Object.defineProperty(exports, "ColorSwatch", {
278
251
  enumerable: true,
279
- get: function () { return chunkZ33XUQTB_cjs.ColorSwatch; }
252
+ get: function () { return chunkX55H6LRX_cjs.ColorSwatch; }
280
253
  });
281
254
  Object.defineProperty(exports, "Dialog", {
282
255
  enumerable: true,
283
- get: function () { return chunk6WGZMVJT_cjs.Dialog; }
256
+ get: function () { return chunkBAWVLSRF_cjs.Dialog; }
284
257
  });
285
258
  Object.defineProperty(exports, "DialogClose", {
286
259
  enumerable: true,
287
- get: function () { return chunk6WGZMVJT_cjs.DialogClose; }
260
+ get: function () { return chunkBAWVLSRF_cjs.DialogClose; }
288
261
  });
289
262
  Object.defineProperty(exports, "DialogContent", {
290
263
  enumerable: true,
291
- get: function () { return chunk6WGZMVJT_cjs.DialogContent; }
264
+ get: function () { return chunkBAWVLSRF_cjs.DialogContent; }
292
265
  });
293
266
  Object.defineProperty(exports, "DialogDescription", {
294
267
  enumerable: true,
295
- get: function () { return chunk6WGZMVJT_cjs.DialogDescription; }
268
+ get: function () { return chunkBAWVLSRF_cjs.DialogDescription; }
296
269
  });
297
270
  Object.defineProperty(exports, "DialogFooter", {
298
271
  enumerable: true,
299
- get: function () { return chunk6WGZMVJT_cjs.DialogFooter; }
272
+ get: function () { return chunkBAWVLSRF_cjs.DialogFooter; }
300
273
  });
301
274
  Object.defineProperty(exports, "DialogHeader", {
302
275
  enumerable: true,
303
- get: function () { return chunk6WGZMVJT_cjs.DialogHeader; }
276
+ get: function () { return chunkBAWVLSRF_cjs.DialogHeader; }
304
277
  });
305
278
  Object.defineProperty(exports, "DialogTitle", {
306
279
  enumerable: true,
307
- get: function () { return chunk6WGZMVJT_cjs.DialogTitle; }
280
+ get: function () { return chunkBAWVLSRF_cjs.DialogTitle; }
308
281
  });
309
282
  Object.defineProperty(exports, "DialogTrigger", {
310
283
  enumerable: true,
311
- get: function () { return chunk6WGZMVJT_cjs.DialogTrigger; }
284
+ get: function () { return chunkBAWVLSRF_cjs.DialogTrigger; }
312
285
  });
313
286
  Object.defineProperty(exports, "Field", {
314
287
  enumerable: true,
@@ -354,17 +327,53 @@ Object.defineProperty(exports, "Label", {
354
327
  enumerable: true,
355
328
  get: function () { return chunkS3ANEJJ7_cjs.Label; }
356
329
  });
357
- Object.defineProperty(exports, "Separator", {
358
- enumerable: true,
359
- get: function () { return chunkUIOBJSKZ_cjs.Separator; }
360
- });
361
330
  Object.defineProperty(exports, "Header", {
362
331
  enumerable: true,
363
332
  get: function () { return chunkYWG7TML6_cjs.Header; }
364
333
  });
365
- Object.defineProperty(exports, "Input", {
334
+ Object.defineProperty(exports, "Item", {
366
335
  enumerable: true,
367
- get: function () { return chunk5AA4IE2T_cjs.Input; }
336
+ get: function () { return chunk3DUJHGXE_cjs.Item; }
337
+ });
338
+ Object.defineProperty(exports, "ItemActions", {
339
+ enumerable: true,
340
+ get: function () { return chunk3DUJHGXE_cjs.ItemActions; }
341
+ });
342
+ Object.defineProperty(exports, "ItemContent", {
343
+ enumerable: true,
344
+ get: function () { return chunk3DUJHGXE_cjs.ItemContent; }
345
+ });
346
+ Object.defineProperty(exports, "ItemDescription", {
347
+ enumerable: true,
348
+ get: function () { return chunk3DUJHGXE_cjs.ItemDescription; }
349
+ });
350
+ Object.defineProperty(exports, "ItemFooter", {
351
+ enumerable: true,
352
+ get: function () { return chunk3DUJHGXE_cjs.ItemFooter; }
353
+ });
354
+ Object.defineProperty(exports, "ItemGroup", {
355
+ enumerable: true,
356
+ get: function () { return chunk3DUJHGXE_cjs.ItemGroup; }
357
+ });
358
+ Object.defineProperty(exports, "ItemHeader", {
359
+ enumerable: true,
360
+ get: function () { return chunk3DUJHGXE_cjs.ItemHeader; }
361
+ });
362
+ Object.defineProperty(exports, "ItemMedia", {
363
+ enumerable: true,
364
+ get: function () { return chunk3DUJHGXE_cjs.ItemMedia; }
365
+ });
366
+ Object.defineProperty(exports, "ItemSeparator", {
367
+ enumerable: true,
368
+ get: function () { return chunk3DUJHGXE_cjs.ItemSeparator; }
369
+ });
370
+ Object.defineProperty(exports, "ItemTitle", {
371
+ enumerable: true,
372
+ get: function () { return chunk3DUJHGXE_cjs.ItemTitle; }
373
+ });
374
+ Object.defineProperty(exports, "Separator", {
375
+ enumerable: true,
376
+ get: function () { return chunkUIOBJSKZ_cjs.Separator; }
368
377
  });
369
378
  Object.defineProperty(exports, "AlertDialog", {
370
379
  enumerable: true,
@@ -416,13 +425,13 @@ Object.defineProperty(exports, "AvatarImage", {
416
425
  });
417
426
  Object.defineProperty(exports, "Badge", {
418
427
  enumerable: true,
419
- get: function () { return chunk54PWKHYF_cjs.Badge; }
428
+ get: function () { return chunkZ6CZAPVG_cjs.Badge; }
420
429
  });
421
430
  Object.defineProperty(exports, "BadgeButton", {
422
431
  enumerable: true,
423
- get: function () { return chunk54PWKHYF_cjs.BadgeButton; }
432
+ get: function () { return chunkZ6CZAPVG_cjs.BadgeButton; }
424
433
  });
425
434
  Object.defineProperty(exports, "BadgeDot", {
426
435
  enumerable: true,
427
- get: function () { return chunk54PWKHYF_cjs.BadgeDot; }
436
+ get: function () { return chunkZ6CZAPVG_cjs.BadgeDot; }
428
437
  });
@@ -21,6 +21,7 @@ export { Toaster, ToasterProps } from './toaster/index.cjs';
21
21
  export { Tooltip, TooltipProps, TooltipProvider, TooltipProviderProps } from './tooltip/index.cjs';
22
22
  export { RadioGroup, RadioGroupItem, RadioGroupItemProps, RadioGroupProps } from './radio-group/index.cjs';
23
23
  export { ColorSwatch, ColorSwatchProps, ColorSwatchSize } from './color-swatch/index.cjs';
24
+ export { ScrollArea, ScrollAreaProps, ScrollBar, ScrollBarProps } from './scroll-area/index.cjs';
24
25
  export { toast } from 'sonner';
25
26
  import 'react';
26
27
  import 'radix-ui';
@@ -21,6 +21,7 @@ export { Toaster, ToasterProps } from './toaster/index.js';
21
21
  export { Tooltip, TooltipProps, TooltipProvider, TooltipProviderProps } from './tooltip/index.js';
22
22
  export { RadioGroup, RadioGroupItem, RadioGroupItemProps, RadioGroupProps } from './radio-group/index.js';
23
23
  export { ColorSwatch, ColorSwatchProps, ColorSwatchSize } from './color-swatch/index.js';
24
+ export { ScrollArea, ScrollAreaProps, ScrollBar, ScrollBarProps } from './scroll-area/index.js';
24
25
  export { toast } from 'sonner';
25
26
  import 'react';
26
27
  import 'radix-ui';
@@ -1,27 +1,28 @@
1
1
  "use client";
2
2
 
3
- export { Button, Stepper, StepperActivationMode, StepperContent, StepperDataState, StepperDescription, StepperFocusIntent, StepperIndicator, StepperItem, StepperNav, StepperNavigationDirection, StepperNextTrigger, StepperOrientation, StepperPanel, StepperPrevTrigger, StepperTitle, StepperTrigger, Toaster, toast, useStepperContext, useStepperFocusContext, useStepperItemContext } from '../chunk-GWRG4LH5.js';
3
+ export { Button, Stepper, StepperActivationMode, StepperContent, StepperDataState, StepperDescription, StepperFocusIntent, StepperIndicator, StepperItem, StepperNav, StepperNavigationDirection, StepperNextTrigger, StepperOrientation, StepperPanel, StepperPrevTrigger, StepperTitle, StepperTrigger, Toaster, toast, useStepperContext, useStepperFocusContext, useStepperItemContext } from '../chunk-E2Y5T6U6.js';
4
4
  export { Textarea } from '../chunk-OQCNPNPS.js';
5
5
  export { Tooltip, TooltipProvider } from '../chunk-HJJPEVIH.js';
6
- export { Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle } from '../chunk-XV3AQ6NS.js';
6
+ export { Input } from '../chunk-UGSNASZM.js';
7
7
  export { Progress } from '../chunk-PBEZZMAB.js';
8
8
  export { RadioGroup, RadioGroupItem } from '../chunk-4TRADSTP.js';
9
+ export { ScrollArea, ScrollBar } from '../chunk-KXMI4545.js';
9
10
  export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator } from '../chunk-O7QFYWMK.js';
10
11
  export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger } from '../chunk-DTSFPOLX.js';
11
12
  export { Spinner } from '../chunk-P5IUC7HJ.js';
12
13
  export { Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from '../chunk-6BSR3O2J.js';
13
14
  export { Checkbox } from '../chunk-5F2Y65JH.js';
14
- export { ColorSwatch } from '../chunk-N2Q3D32M.js';
15
- export { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from '../chunk-5Q3H4MOX.js';
15
+ export { ColorSwatch } from '../chunk-3BLXG7ET.js';
16
+ export { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from '../chunk-ACJ3ES2B.js';
16
17
  export { Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle } from '../chunk-KYFNEU4K.js';
17
18
  export { Label } from '../chunk-I3RSTJP6.js';
18
- export { Separator } from '../chunk-XJIUGEPN.js';
19
19
  export { Header } from '../chunk-UW6GOD7J.js';
20
- export { Input } from '../chunk-UGSNASZM.js';
20
+ export { Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle } from '../chunk-XV3AQ6NS.js';
21
+ export { Separator } from '../chunk-XJIUGEPN.js';
21
22
  import '../chunk-H5O5L6XT.js';
22
23
  import '../chunk-DFD2WUOU.js';
23
24
  export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger } from '../chunk-5MJPZUTO.js';
24
25
  export { Avatar, AvatarFallback, AvatarImage } from '../chunk-NGVFYKAT.js';
25
- export { Badge, BadgeButton, BadgeDot } from '../chunk-FUS2IGBX.js';
26
+ export { Badge, BadgeButton, BadgeDot } from '../chunk-FKCWRNWB.js';
26
27
  import '../chunk-ZD2QRAOX.js';
27
28
  import '../chunk-BYXBJQAS.js';
@@ -0,0 +1,16 @@
1
+ 'use strict';
2
+
3
+ var chunk4YXM4NWG_cjs = require('../../chunk-4YXM4NWG.cjs');
4
+ require('../../chunk-H2BWO3SI.cjs');
5
+ require('../../chunk-3376ZTRC.cjs');
6
+
7
+
8
+
9
+ Object.defineProperty(exports, "ScrollArea", {
10
+ enumerable: true,
11
+ get: function () { return chunk4YXM4NWG_cjs.ScrollArea; }
12
+ });
13
+ Object.defineProperty(exports, "ScrollBar", {
14
+ enumerable: true,
15
+ get: function () { return chunk4YXM4NWG_cjs.ScrollBar; }
16
+ });
@@ -0,0 +1,11 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import * as React from 'react';
3
+ import { ScrollArea as ScrollArea$1 } from 'radix-ui';
4
+
5
+ type ScrollAreaProps = React.ComponentProps<typeof ScrollArea$1.Root>;
6
+ declare function ScrollArea({ className, children, ...props }: ScrollAreaProps): react_jsx_runtime.JSX.Element;
7
+
8
+ type ScrollBarProps = React.ComponentProps<typeof ScrollArea$1.ScrollAreaScrollbar>;
9
+ declare function ScrollBar({ className, orientation, ...props }: ScrollBarProps): react_jsx_runtime.JSX.Element;
10
+
11
+ export { ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps };
@@ -0,0 +1,11 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import * as React from 'react';
3
+ import { ScrollArea as ScrollArea$1 } from 'radix-ui';
4
+
5
+ type ScrollAreaProps = React.ComponentProps<typeof ScrollArea$1.Root>;
6
+ declare function ScrollArea({ className, children, ...props }: ScrollAreaProps): react_jsx_runtime.JSX.Element;
7
+
8
+ type ScrollBarProps = React.ComponentProps<typeof ScrollArea$1.ScrollAreaScrollbar>;
9
+ declare function ScrollBar({ className, orientation, ...props }: ScrollBarProps): react_jsx_runtime.JSX.Element;
10
+
11
+ export { ScrollArea, type ScrollAreaProps, ScrollBar, type ScrollBarProps };
@@ -0,0 +1,3 @@
1
+ export { ScrollArea, ScrollBar } from '../../chunk-KXMI4545.js';
2
+ import '../../chunk-ZD2QRAOX.js';
3
+ import '../../chunk-BYXBJQAS.js';
@@ -1,28 +1,29 @@
1
1
  'use strict';
2
2
 
3
- var chunkJXZ27PK6_cjs = require('../../chunk-JXZ27PK6.cjs');
3
+ var chunkZTD7ED52_cjs = require('../../chunk-ZTD7ED52.cjs');
4
4
  require('../../chunk-NU5UQPBX.cjs');
5
5
  require('../../chunk-GR37JJQK.cjs');
6
- require('../../chunk-3DUJHGXE.cjs');
6
+ require('../../chunk-5AA4IE2T.cjs');
7
7
  require('../../chunk-TH44JYXB.cjs');
8
8
  require('../../chunk-XENOUBSI.cjs');
9
+ require('../../chunk-4YXM4NWG.cjs');
9
10
  require('../../chunk-3ZRMIVJM.cjs');
10
11
  require('../../chunk-GHV2TURY.cjs');
11
12
  require('../../chunk-3WSQRFUY.cjs');
12
13
  require('../../chunk-2Y2ZCPNV.cjs');
13
14
  require('../../chunk-HCHVDUI6.cjs');
14
- require('../../chunk-Z33XUQTB.cjs');
15
- require('../../chunk-6WGZMVJT.cjs');
15
+ require('../../chunk-X55H6LRX.cjs');
16
+ require('../../chunk-BAWVLSRF.cjs');
16
17
  require('../../chunk-YTVV2IUF.cjs');
17
18
  require('../../chunk-S3ANEJJ7.cjs');
18
- require('../../chunk-UIOBJSKZ.cjs');
19
19
  require('../../chunk-YWG7TML6.cjs');
20
- require('../../chunk-5AA4IE2T.cjs');
20
+ require('../../chunk-3DUJHGXE.cjs');
21
+ require('../../chunk-UIOBJSKZ.cjs');
21
22
  require('../../chunk-EW6TE3N5.cjs');
22
23
  require('../../chunk-7EYMOUWG.cjs');
23
24
  require('../../chunk-TMXVL5CV.cjs');
24
25
  require('../../chunk-I7AV5IQO.cjs');
25
- require('../../chunk-54PWKHYF.cjs');
26
+ require('../../chunk-Z6CZAPVG.cjs');
26
27
  require('../../chunk-H2BWO3SI.cjs');
27
28
  require('../../chunk-3376ZTRC.cjs');
28
29
 
@@ -30,77 +31,77 @@ require('../../chunk-3376ZTRC.cjs');
30
31
 
31
32
  Object.defineProperty(exports, "Stepper", {
32
33
  enumerable: true,
33
- get: function () { return chunkJXZ27PK6_cjs.Stepper; }
34
+ get: function () { return chunkZTD7ED52_cjs.Stepper; }
34
35
  });
35
36
  Object.defineProperty(exports, "StepperActivationMode", {
36
37
  enumerable: true,
37
- get: function () { return chunkJXZ27PK6_cjs.StepperActivationMode; }
38
+ get: function () { return chunkZTD7ED52_cjs.StepperActivationMode; }
38
39
  });
39
40
  Object.defineProperty(exports, "StepperContent", {
40
41
  enumerable: true,
41
- get: function () { return chunkJXZ27PK6_cjs.StepperContent; }
42
+ get: function () { return chunkZTD7ED52_cjs.StepperContent; }
42
43
  });
43
44
  Object.defineProperty(exports, "StepperDataState", {
44
45
  enumerable: true,
45
- get: function () { return chunkJXZ27PK6_cjs.StepperDataState; }
46
+ get: function () { return chunkZTD7ED52_cjs.StepperDataState; }
46
47
  });
47
48
  Object.defineProperty(exports, "StepperDescription", {
48
49
  enumerable: true,
49
- get: function () { return chunkJXZ27PK6_cjs.StepperDescription; }
50
+ get: function () { return chunkZTD7ED52_cjs.StepperDescription; }
50
51
  });
51
52
  Object.defineProperty(exports, "StepperFocusIntent", {
52
53
  enumerable: true,
53
- get: function () { return chunkJXZ27PK6_cjs.StepperFocusIntent; }
54
+ get: function () { return chunkZTD7ED52_cjs.StepperFocusIntent; }
54
55
  });
55
56
  Object.defineProperty(exports, "StepperIndicator", {
56
57
  enumerable: true,
57
- get: function () { return chunkJXZ27PK6_cjs.StepperIndicator; }
58
+ get: function () { return chunkZTD7ED52_cjs.StepperIndicator; }
58
59
  });
59
60
  Object.defineProperty(exports, "StepperItem", {
60
61
  enumerable: true,
61
- get: function () { return chunkJXZ27PK6_cjs.StepperItem; }
62
+ get: function () { return chunkZTD7ED52_cjs.StepperItem; }
62
63
  });
63
64
  Object.defineProperty(exports, "StepperNav", {
64
65
  enumerable: true,
65
- get: function () { return chunkJXZ27PK6_cjs.StepperNav; }
66
+ get: function () { return chunkZTD7ED52_cjs.StepperNav; }
66
67
  });
67
68
  Object.defineProperty(exports, "StepperNavigationDirection", {
68
69
  enumerable: true,
69
- get: function () { return chunkJXZ27PK6_cjs.StepperNavigationDirection; }
70
+ get: function () { return chunkZTD7ED52_cjs.StepperNavigationDirection; }
70
71
  });
71
72
  Object.defineProperty(exports, "StepperNextTrigger", {
72
73
  enumerable: true,
73
- get: function () { return chunkJXZ27PK6_cjs.StepperNextTrigger; }
74
+ get: function () { return chunkZTD7ED52_cjs.StepperNextTrigger; }
74
75
  });
75
76
  Object.defineProperty(exports, "StepperOrientation", {
76
77
  enumerable: true,
77
- get: function () { return chunkJXZ27PK6_cjs.StepperOrientation; }
78
+ get: function () { return chunkZTD7ED52_cjs.StepperOrientation; }
78
79
  });
79
80
  Object.defineProperty(exports, "StepperPanel", {
80
81
  enumerable: true,
81
- get: function () { return chunkJXZ27PK6_cjs.StepperPanel; }
82
+ get: function () { return chunkZTD7ED52_cjs.StepperPanel; }
82
83
  });
83
84
  Object.defineProperty(exports, "StepperPrevTrigger", {
84
85
  enumerable: true,
85
- get: function () { return chunkJXZ27PK6_cjs.StepperPrevTrigger; }
86
+ get: function () { return chunkZTD7ED52_cjs.StepperPrevTrigger; }
86
87
  });
87
88
  Object.defineProperty(exports, "StepperTitle", {
88
89
  enumerable: true,
89
- get: function () { return chunkJXZ27PK6_cjs.StepperTitle; }
90
+ get: function () { return chunkZTD7ED52_cjs.StepperTitle; }
90
91
  });
91
92
  Object.defineProperty(exports, "StepperTrigger", {
92
93
  enumerable: true,
93
- get: function () { return chunkJXZ27PK6_cjs.StepperTrigger; }
94
+ get: function () { return chunkZTD7ED52_cjs.StepperTrigger; }
94
95
  });
95
96
  Object.defineProperty(exports, "useStepperContext", {
96
97
  enumerable: true,
97
- get: function () { return chunkJXZ27PK6_cjs.useStepperContext; }
98
+ get: function () { return chunkZTD7ED52_cjs.useStepperContext; }
98
99
  });
99
100
  Object.defineProperty(exports, "useStepperFocusContext", {
100
101
  enumerable: true,
101
- get: function () { return chunkJXZ27PK6_cjs.useStepperFocusContext; }
102
+ get: function () { return chunkZTD7ED52_cjs.useStepperFocusContext; }
102
103
  });
103
104
  Object.defineProperty(exports, "useStepperItemContext", {
104
105
  enumerable: true,
105
- get: function () { return chunkJXZ27PK6_cjs.useStepperItemContext; }
106
+ get: function () { return chunkZTD7ED52_cjs.useStepperItemContext; }
106
107
  });
@@ -1,25 +1,26 @@
1
- export { Stepper, StepperActivationMode, StepperContent, StepperDataState, StepperDescription, StepperFocusIntent, StepperIndicator, StepperItem, StepperNav, StepperNavigationDirection, StepperNextTrigger, StepperOrientation, StepperPanel, StepperPrevTrigger, StepperTitle, StepperTrigger, useStepperContext, useStepperFocusContext, useStepperItemContext } from '../../chunk-GWRG4LH5.js';
1
+ export { Stepper, StepperActivationMode, StepperContent, StepperDataState, StepperDescription, StepperFocusIntent, StepperIndicator, StepperItem, StepperNav, StepperNavigationDirection, StepperNextTrigger, StepperOrientation, StepperPanel, StepperPrevTrigger, StepperTitle, StepperTrigger, useStepperContext, useStepperFocusContext, useStepperItemContext } from '../../chunk-E2Y5T6U6.js';
2
2
  import '../../chunk-OQCNPNPS.js';
3
3
  import '../../chunk-HJJPEVIH.js';
4
- import '../../chunk-XV3AQ6NS.js';
4
+ import '../../chunk-UGSNASZM.js';
5
5
  import '../../chunk-PBEZZMAB.js';
6
6
  import '../../chunk-4TRADSTP.js';
7
+ import '../../chunk-KXMI4545.js';
7
8
  import '../../chunk-O7QFYWMK.js';
8
9
  import '../../chunk-DTSFPOLX.js';
9
10
  import '../../chunk-P5IUC7HJ.js';
10
11
  import '../../chunk-6BSR3O2J.js';
11
12
  import '../../chunk-5F2Y65JH.js';
12
- import '../../chunk-N2Q3D32M.js';
13
- import '../../chunk-5Q3H4MOX.js';
13
+ import '../../chunk-3BLXG7ET.js';
14
+ import '../../chunk-ACJ3ES2B.js';
14
15
  import '../../chunk-KYFNEU4K.js';
15
16
  import '../../chunk-I3RSTJP6.js';
16
- import '../../chunk-XJIUGEPN.js';
17
17
  import '../../chunk-UW6GOD7J.js';
18
- import '../../chunk-UGSNASZM.js';
18
+ import '../../chunk-XV3AQ6NS.js';
19
+ import '../../chunk-XJIUGEPN.js';
19
20
  import '../../chunk-H5O5L6XT.js';
20
21
  import '../../chunk-DFD2WUOU.js';
21
22
  import '../../chunk-5MJPZUTO.js';
22
23
  import '../../chunk-NGVFYKAT.js';
23
- import '../../chunk-FUS2IGBX.js';
24
+ import '../../chunk-FKCWRNWB.js';
24
25
  import '../../chunk-ZD2QRAOX.js';
25
26
  import '../../chunk-BYXBJQAS.js';
@@ -1,28 +1,29 @@
1
1
  'use strict';
2
2
 
3
- var chunkJXZ27PK6_cjs = require('../../chunk-JXZ27PK6.cjs');
3
+ var chunkZTD7ED52_cjs = require('../../chunk-ZTD7ED52.cjs');
4
4
  require('../../chunk-NU5UQPBX.cjs');
5
5
  require('../../chunk-GR37JJQK.cjs');
6
- require('../../chunk-3DUJHGXE.cjs');
6
+ require('../../chunk-5AA4IE2T.cjs');
7
7
  require('../../chunk-TH44JYXB.cjs');
8
8
  require('../../chunk-XENOUBSI.cjs');
9
+ require('../../chunk-4YXM4NWG.cjs');
9
10
  require('../../chunk-3ZRMIVJM.cjs');
10
11
  require('../../chunk-GHV2TURY.cjs');
11
12
  require('../../chunk-3WSQRFUY.cjs');
12
13
  require('../../chunk-2Y2ZCPNV.cjs');
13
14
  require('../../chunk-HCHVDUI6.cjs');
14
- require('../../chunk-Z33XUQTB.cjs');
15
- require('../../chunk-6WGZMVJT.cjs');
15
+ require('../../chunk-X55H6LRX.cjs');
16
+ require('../../chunk-BAWVLSRF.cjs');
16
17
  require('../../chunk-YTVV2IUF.cjs');
17
18
  require('../../chunk-S3ANEJJ7.cjs');
18
- require('../../chunk-UIOBJSKZ.cjs');
19
19
  require('../../chunk-YWG7TML6.cjs');
20
- require('../../chunk-5AA4IE2T.cjs');
20
+ require('../../chunk-3DUJHGXE.cjs');
21
+ require('../../chunk-UIOBJSKZ.cjs');
21
22
  require('../../chunk-EW6TE3N5.cjs');
22
23
  require('../../chunk-7EYMOUWG.cjs');
23
24
  require('../../chunk-TMXVL5CV.cjs');
24
25
  require('../../chunk-I7AV5IQO.cjs');
25
- require('../../chunk-54PWKHYF.cjs');
26
+ require('../../chunk-Z6CZAPVG.cjs');
26
27
  require('../../chunk-H2BWO3SI.cjs');
27
28
  require('../../chunk-3376ZTRC.cjs');
28
29
 
@@ -30,9 +31,9 @@ require('../../chunk-3376ZTRC.cjs');
30
31
 
31
32
  Object.defineProperty(exports, "Toaster", {
32
33
  enumerable: true,
33
- get: function () { return chunkJXZ27PK6_cjs.Toaster; }
34
+ get: function () { return chunkZTD7ED52_cjs.Toaster; }
34
35
  });
35
36
  Object.defineProperty(exports, "toast", {
36
37
  enumerable: true,
37
- get: function () { return chunkJXZ27PK6_cjs.toast; }
38
+ get: function () { return chunkZTD7ED52_cjs.toast; }
38
39
  });
@@ -1,25 +1,26 @@
1
- export { Toaster, toast } from '../../chunk-GWRG4LH5.js';
1
+ export { Toaster, toast } from '../../chunk-E2Y5T6U6.js';
2
2
  import '../../chunk-OQCNPNPS.js';
3
3
  import '../../chunk-HJJPEVIH.js';
4
- import '../../chunk-XV3AQ6NS.js';
4
+ import '../../chunk-UGSNASZM.js';
5
5
  import '../../chunk-PBEZZMAB.js';
6
6
  import '../../chunk-4TRADSTP.js';
7
+ import '../../chunk-KXMI4545.js';
7
8
  import '../../chunk-O7QFYWMK.js';
8
9
  import '../../chunk-DTSFPOLX.js';
9
10
  import '../../chunk-P5IUC7HJ.js';
10
11
  import '../../chunk-6BSR3O2J.js';
11
12
  import '../../chunk-5F2Y65JH.js';
12
- import '../../chunk-N2Q3D32M.js';
13
- import '../../chunk-5Q3H4MOX.js';
13
+ import '../../chunk-3BLXG7ET.js';
14
+ import '../../chunk-ACJ3ES2B.js';
14
15
  import '../../chunk-KYFNEU4K.js';
15
16
  import '../../chunk-I3RSTJP6.js';
16
- import '../../chunk-XJIUGEPN.js';
17
17
  import '../../chunk-UW6GOD7J.js';
18
- import '../../chunk-UGSNASZM.js';
18
+ import '../../chunk-XV3AQ6NS.js';
19
+ import '../../chunk-XJIUGEPN.js';
19
20
  import '../../chunk-H5O5L6XT.js';
20
21
  import '../../chunk-DFD2WUOU.js';
21
22
  import '../../chunk-5MJPZUTO.js';
22
23
  import '../../chunk-NGVFYKAT.js';
23
- import '../../chunk-FUS2IGBX.js';
24
+ import '../../chunk-FKCWRNWB.js';
24
25
  import '../../chunk-ZD2QRAOX.js';
25
26
  import '../../chunk-BYXBJQAS.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@szum-tech/design-system",
3
- "version": "3.6.0",
3
+ "version": "3.7.0",
4
4
  "description": "Szum-Tech design system with tailwindcss support",
5
5
  "keywords": [
6
6
  "szum-tech",
File without changes
File without changes