@szum-tech/design-system 3.6.0 → 3.7.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/dist/{chunk-N2Q3D32M.js → chunk-3BLXG7ET.js} +1 -1
- package/dist/{chunk-5Q3H4MOX.js → chunk-ACJ3ES2B.js} +1 -1
- package/dist/{chunk-6WGZMVJT.cjs → chunk-BAWVLSRF.cjs} +1 -1
- package/dist/{chunk-FUS2IGBX.js → chunk-FKCWRNWB.js} +2 -2
- package/dist/chunk-M7NIRB3U.js +43 -0
- package/dist/chunk-UJX74PFK.cjs +46 -0
- package/dist/{chunk-Z33XUQTB.cjs → chunk-X55H6LRX.cjs} +1 -1
- package/dist/{chunk-54PWKHYF.cjs → chunk-Z6CZAPVG.cjs} +2 -2
- package/dist/components/badge/index.cjs +4 -4
- package/dist/components/badge/index.js +1 -1
- package/dist/components/button/index.cjs +7 -6
- package/dist/components/button/index.js +6 -5
- package/dist/components/color-swatch/index.cjs +2 -2
- package/dist/components/color-swatch/index.js +1 -1
- package/dist/components/dialog/index.cjs +9 -9
- package/dist/components/dialog/index.js +1 -1
- package/dist/components/index.cjs +52 -43
- package/dist/components/index.d.cts +1 -0
- package/dist/components/index.d.ts +1 -0
- package/dist/components/index.js +6 -5
- package/dist/components/scroll-area/index.cjs +16 -0
- package/dist/components/scroll-area/index.d.cts +11 -0
- package/dist/components/scroll-area/index.d.ts +11 -0
- package/dist/components/scroll-area/index.js +3 -0
- package/dist/components/stepper/index.cjs +25 -24
- package/dist/components/stepper/index.js +6 -5
- package/dist/components/toaster/index.cjs +8 -7
- package/dist/components/toaster/index.js +6 -5
- package/package.json +1 -1
- package/tailwind/scroll.css +10 -11
- package/dist/{chunk-GWRG4LH5.js → chunk-6SNQ2B5C.js} +1 -1
- package/dist/{chunk-JXZ27PK6.cjs → chunk-AEMI4LPB.cjs} +1 -1
|
@@ -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
|
|
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: {
|
|
@@ -13,7 +13,7 @@ function DialogClose(props) {
|
|
|
13
13
|
}
|
|
14
14
|
var dialogContentVariants = cva(
|
|
15
15
|
[
|
|
16
|
-
"bg-background fixed
|
|
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
|
|
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
|
|
15
|
-
warning: "bg-warning text-warning-foreground [a&]:hover:bg-warning/90
|
|
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"
|
|
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 };
|
|
@@ -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"
|
|
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;
|
|
@@ -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
|
|
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
|
|
17
|
-
warning: "bg-warning text-warning-foreground [a&]:hover:bg-warning/90
|
|
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
|
|
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
|
|
11
|
+
get: function () { return chunkZ6CZAPVG_cjs.Badge; }
|
|
12
12
|
});
|
|
13
13
|
Object.defineProperty(exports, "BadgeButton", {
|
|
14
14
|
enumerable: true,
|
|
15
|
-
get: function () { return
|
|
15
|
+
get: function () { return chunkZ6CZAPVG_cjs.BadgeButton; }
|
|
16
16
|
});
|
|
17
17
|
Object.defineProperty(exports, "BadgeDot", {
|
|
18
18
|
enumerable: true,
|
|
19
|
-
get: function () { return
|
|
19
|
+
get: function () { return chunkZ6CZAPVG_cjs.BadgeDot; }
|
|
20
20
|
});
|
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkAEMI4LPB_cjs = require('../../chunk-AEMI4LPB.cjs');
|
|
4
|
+
require('../../chunk-3WSQRFUY.cjs');
|
|
4
5
|
require('../../chunk-NU5UQPBX.cjs');
|
|
5
6
|
require('../../chunk-GR37JJQK.cjs');
|
|
6
7
|
require('../../chunk-3DUJHGXE.cjs');
|
|
7
8
|
require('../../chunk-TH44JYXB.cjs');
|
|
8
9
|
require('../../chunk-XENOUBSI.cjs');
|
|
10
|
+
require('../../chunk-UJX74PFK.cjs');
|
|
9
11
|
require('../../chunk-3ZRMIVJM.cjs');
|
|
10
12
|
require('../../chunk-GHV2TURY.cjs');
|
|
11
|
-
require('../../chunk-3WSQRFUY.cjs');
|
|
12
13
|
require('../../chunk-2Y2ZCPNV.cjs');
|
|
13
14
|
require('../../chunk-HCHVDUI6.cjs');
|
|
14
|
-
require('../../chunk-
|
|
15
|
-
require('../../chunk-
|
|
15
|
+
require('../../chunk-X55H6LRX.cjs');
|
|
16
|
+
require('../../chunk-BAWVLSRF.cjs');
|
|
16
17
|
require('../../chunk-YTVV2IUF.cjs');
|
|
17
18
|
require('../../chunk-S3ANEJJ7.cjs');
|
|
18
19
|
require('../../chunk-UIOBJSKZ.cjs');
|
|
@@ -22,7 +23,7 @@ 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-
|
|
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
|
|
34
|
+
get: function () { return chunkAEMI4LPB_cjs.Button; }
|
|
34
35
|
});
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
export { Button } from '../../chunk-
|
|
1
|
+
export { Button } from '../../chunk-6SNQ2B5C.js';
|
|
2
|
+
import '../../chunk-P5IUC7HJ.js';
|
|
2
3
|
import '../../chunk-OQCNPNPS.js';
|
|
3
4
|
import '../../chunk-HJJPEVIH.js';
|
|
4
5
|
import '../../chunk-XV3AQ6NS.js';
|
|
5
6
|
import '../../chunk-PBEZZMAB.js';
|
|
6
7
|
import '../../chunk-4TRADSTP.js';
|
|
8
|
+
import '../../chunk-M7NIRB3U.js';
|
|
7
9
|
import '../../chunk-O7QFYWMK.js';
|
|
8
10
|
import '../../chunk-DTSFPOLX.js';
|
|
9
|
-
import '../../chunk-P5IUC7HJ.js';
|
|
10
11
|
import '../../chunk-6BSR3O2J.js';
|
|
11
12
|
import '../../chunk-5F2Y65JH.js';
|
|
12
|
-
import '../../chunk-
|
|
13
|
-
import '../../chunk-
|
|
13
|
+
import '../../chunk-3BLXG7ET.js';
|
|
14
|
+
import '../../chunk-ACJ3ES2B.js';
|
|
14
15
|
import '../../chunk-KYFNEU4K.js';
|
|
15
16
|
import '../../chunk-I3RSTJP6.js';
|
|
16
17
|
import '../../chunk-XJIUGEPN.js';
|
|
@@ -20,6 +21,6 @@ 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-
|
|
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
|
|
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
|
|
11
|
+
get: function () { return chunkX55H6LRX_cjs.ColorSwatch; }
|
|
12
12
|
});
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
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
|
|
11
|
+
get: function () { return chunkBAWVLSRF_cjs.Dialog; }
|
|
12
12
|
});
|
|
13
13
|
Object.defineProperty(exports, "DialogClose", {
|
|
14
14
|
enumerable: true,
|
|
15
|
-
get: function () { return
|
|
15
|
+
get: function () { return chunkBAWVLSRF_cjs.DialogClose; }
|
|
16
16
|
});
|
|
17
17
|
Object.defineProperty(exports, "DialogContent", {
|
|
18
18
|
enumerable: true,
|
|
19
|
-
get: function () { return
|
|
19
|
+
get: function () { return chunkBAWVLSRF_cjs.DialogContent; }
|
|
20
20
|
});
|
|
21
21
|
Object.defineProperty(exports, "DialogDescription", {
|
|
22
22
|
enumerable: true,
|
|
23
|
-
get: function () { return
|
|
23
|
+
get: function () { return chunkBAWVLSRF_cjs.DialogDescription; }
|
|
24
24
|
});
|
|
25
25
|
Object.defineProperty(exports, "DialogFooter", {
|
|
26
26
|
enumerable: true,
|
|
27
|
-
get: function () { return
|
|
27
|
+
get: function () { return chunkBAWVLSRF_cjs.DialogFooter; }
|
|
28
28
|
});
|
|
29
29
|
Object.defineProperty(exports, "DialogHeader", {
|
|
30
30
|
enumerable: true,
|
|
31
|
-
get: function () { return
|
|
31
|
+
get: function () { return chunkBAWVLSRF_cjs.DialogHeader; }
|
|
32
32
|
});
|
|
33
33
|
Object.defineProperty(exports, "DialogTitle", {
|
|
34
34
|
enumerable: true,
|
|
35
|
-
get: function () { return
|
|
35
|
+
get: function () { return chunkBAWVLSRF_cjs.DialogTitle; }
|
|
36
36
|
});
|
|
37
37
|
Object.defineProperty(exports, "DialogTrigger", {
|
|
38
38
|
enumerable: true,
|
|
39
|
-
get: function () { return
|
|
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-
|
|
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,19 +2,20 @@
|
|
|
2
2
|
|
|
3
3
|
'use strict';
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var chunkAEMI4LPB_cjs = require('../chunk-AEMI4LPB.cjs');
|
|
6
|
+
var chunk3WSQRFUY_cjs = require('../chunk-3WSQRFUY.cjs');
|
|
6
7
|
var chunkNU5UQPBX_cjs = require('../chunk-NU5UQPBX.cjs');
|
|
7
8
|
var chunkGR37JJQK_cjs = require('../chunk-GR37JJQK.cjs');
|
|
8
9
|
var chunk3DUJHGXE_cjs = require('../chunk-3DUJHGXE.cjs');
|
|
9
10
|
var chunkTH44JYXB_cjs = require('../chunk-TH44JYXB.cjs');
|
|
10
11
|
var chunkXENOUBSI_cjs = require('../chunk-XENOUBSI.cjs');
|
|
12
|
+
var chunkUJX74PFK_cjs = require('../chunk-UJX74PFK.cjs');
|
|
11
13
|
var chunk3ZRMIVJM_cjs = require('../chunk-3ZRMIVJM.cjs');
|
|
12
14
|
var chunkGHV2TURY_cjs = require('../chunk-GHV2TURY.cjs');
|
|
13
|
-
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
|
|
17
|
-
var
|
|
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
21
|
var chunkUIOBJSKZ_cjs = require('../chunk-UIOBJSKZ.cjs');
|
|
@@ -24,7 +25,7 @@ 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
|
|
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,95 @@ require('../chunk-3376ZTRC.cjs');
|
|
|
32
33
|
|
|
33
34
|
Object.defineProperty(exports, "Button", {
|
|
34
35
|
enumerable: true,
|
|
35
|
-
get: function () { return
|
|
36
|
+
get: function () { return chunkAEMI4LPB_cjs.Button; }
|
|
36
37
|
});
|
|
37
38
|
Object.defineProperty(exports, "Stepper", {
|
|
38
39
|
enumerable: true,
|
|
39
|
-
get: function () { return
|
|
40
|
+
get: function () { return chunkAEMI4LPB_cjs.Stepper; }
|
|
40
41
|
});
|
|
41
42
|
Object.defineProperty(exports, "StepperActivationMode", {
|
|
42
43
|
enumerable: true,
|
|
43
|
-
get: function () { return
|
|
44
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperActivationMode; }
|
|
44
45
|
});
|
|
45
46
|
Object.defineProperty(exports, "StepperContent", {
|
|
46
47
|
enumerable: true,
|
|
47
|
-
get: function () { return
|
|
48
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperContent; }
|
|
48
49
|
});
|
|
49
50
|
Object.defineProperty(exports, "StepperDataState", {
|
|
50
51
|
enumerable: true,
|
|
51
|
-
get: function () { return
|
|
52
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperDataState; }
|
|
52
53
|
});
|
|
53
54
|
Object.defineProperty(exports, "StepperDescription", {
|
|
54
55
|
enumerable: true,
|
|
55
|
-
get: function () { return
|
|
56
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperDescription; }
|
|
56
57
|
});
|
|
57
58
|
Object.defineProperty(exports, "StepperFocusIntent", {
|
|
58
59
|
enumerable: true,
|
|
59
|
-
get: function () { return
|
|
60
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperFocusIntent; }
|
|
60
61
|
});
|
|
61
62
|
Object.defineProperty(exports, "StepperIndicator", {
|
|
62
63
|
enumerable: true,
|
|
63
|
-
get: function () { return
|
|
64
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperIndicator; }
|
|
64
65
|
});
|
|
65
66
|
Object.defineProperty(exports, "StepperItem", {
|
|
66
67
|
enumerable: true,
|
|
67
|
-
get: function () { return
|
|
68
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperItem; }
|
|
68
69
|
});
|
|
69
70
|
Object.defineProperty(exports, "StepperNav", {
|
|
70
71
|
enumerable: true,
|
|
71
|
-
get: function () { return
|
|
72
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperNav; }
|
|
72
73
|
});
|
|
73
74
|
Object.defineProperty(exports, "StepperNavigationDirection", {
|
|
74
75
|
enumerable: true,
|
|
75
|
-
get: function () { return
|
|
76
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperNavigationDirection; }
|
|
76
77
|
});
|
|
77
78
|
Object.defineProperty(exports, "StepperNextTrigger", {
|
|
78
79
|
enumerable: true,
|
|
79
|
-
get: function () { return
|
|
80
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperNextTrigger; }
|
|
80
81
|
});
|
|
81
82
|
Object.defineProperty(exports, "StepperOrientation", {
|
|
82
83
|
enumerable: true,
|
|
83
|
-
get: function () { return
|
|
84
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperOrientation; }
|
|
84
85
|
});
|
|
85
86
|
Object.defineProperty(exports, "StepperPanel", {
|
|
86
87
|
enumerable: true,
|
|
87
|
-
get: function () { return
|
|
88
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperPanel; }
|
|
88
89
|
});
|
|
89
90
|
Object.defineProperty(exports, "StepperPrevTrigger", {
|
|
90
91
|
enumerable: true,
|
|
91
|
-
get: function () { return
|
|
92
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperPrevTrigger; }
|
|
92
93
|
});
|
|
93
94
|
Object.defineProperty(exports, "StepperTitle", {
|
|
94
95
|
enumerable: true,
|
|
95
|
-
get: function () { return
|
|
96
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperTitle; }
|
|
96
97
|
});
|
|
97
98
|
Object.defineProperty(exports, "StepperTrigger", {
|
|
98
99
|
enumerable: true,
|
|
99
|
-
get: function () { return
|
|
100
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperTrigger; }
|
|
100
101
|
});
|
|
101
102
|
Object.defineProperty(exports, "Toaster", {
|
|
102
103
|
enumerable: true,
|
|
103
|
-
get: function () { return
|
|
104
|
+
get: function () { return chunkAEMI4LPB_cjs.Toaster; }
|
|
104
105
|
});
|
|
105
106
|
Object.defineProperty(exports, "toast", {
|
|
106
107
|
enumerable: true,
|
|
107
|
-
get: function () { return
|
|
108
|
+
get: function () { return chunkAEMI4LPB_cjs.toast; }
|
|
108
109
|
});
|
|
109
110
|
Object.defineProperty(exports, "useStepperContext", {
|
|
110
111
|
enumerable: true,
|
|
111
|
-
get: function () { return
|
|
112
|
+
get: function () { return chunkAEMI4LPB_cjs.useStepperContext; }
|
|
112
113
|
});
|
|
113
114
|
Object.defineProperty(exports, "useStepperFocusContext", {
|
|
114
115
|
enumerable: true,
|
|
115
|
-
get: function () { return
|
|
116
|
+
get: function () { return chunkAEMI4LPB_cjs.useStepperFocusContext; }
|
|
116
117
|
});
|
|
117
118
|
Object.defineProperty(exports, "useStepperItemContext", {
|
|
118
119
|
enumerable: true,
|
|
119
|
-
get: function () { return
|
|
120
|
+
get: function () { return chunkAEMI4LPB_cjs.useStepperItemContext; }
|
|
121
|
+
});
|
|
122
|
+
Object.defineProperty(exports, "Spinner", {
|
|
123
|
+
enumerable: true,
|
|
124
|
+
get: function () { return chunk3WSQRFUY_cjs.Spinner; }
|
|
120
125
|
});
|
|
121
126
|
Object.defineProperty(exports, "Textarea", {
|
|
122
127
|
enumerable: true,
|
|
@@ -182,6 +187,14 @@ Object.defineProperty(exports, "RadioGroupItem", {
|
|
|
182
187
|
enumerable: true,
|
|
183
188
|
get: function () { return chunkXENOUBSI_cjs.RadioGroupItem; }
|
|
184
189
|
});
|
|
190
|
+
Object.defineProperty(exports, "ScrollArea", {
|
|
191
|
+
enumerable: true,
|
|
192
|
+
get: function () { return chunkUJX74PFK_cjs.ScrollArea; }
|
|
193
|
+
});
|
|
194
|
+
Object.defineProperty(exports, "ScrollBar", {
|
|
195
|
+
enumerable: true,
|
|
196
|
+
get: function () { return chunkUJX74PFK_cjs.ScrollBar; }
|
|
197
|
+
});
|
|
185
198
|
Object.defineProperty(exports, "Select", {
|
|
186
199
|
enumerable: true,
|
|
187
200
|
get: function () { return chunk3ZRMIVJM_cjs.Select; }
|
|
@@ -238,10 +251,6 @@ Object.defineProperty(exports, "SheetTrigger", {
|
|
|
238
251
|
enumerable: true,
|
|
239
252
|
get: function () { return chunkGHV2TURY_cjs.SheetTrigger; }
|
|
240
253
|
});
|
|
241
|
-
Object.defineProperty(exports, "Spinner", {
|
|
242
|
-
enumerable: true,
|
|
243
|
-
get: function () { return chunk3WSQRFUY_cjs.Spinner; }
|
|
244
|
-
});
|
|
245
254
|
Object.defineProperty(exports, "Card", {
|
|
246
255
|
enumerable: true,
|
|
247
256
|
get: function () { return chunk2Y2ZCPNV_cjs.Card; }
|
|
@@ -276,39 +285,39 @@ Object.defineProperty(exports, "Checkbox", {
|
|
|
276
285
|
});
|
|
277
286
|
Object.defineProperty(exports, "ColorSwatch", {
|
|
278
287
|
enumerable: true,
|
|
279
|
-
get: function () { return
|
|
288
|
+
get: function () { return chunkX55H6LRX_cjs.ColorSwatch; }
|
|
280
289
|
});
|
|
281
290
|
Object.defineProperty(exports, "Dialog", {
|
|
282
291
|
enumerable: true,
|
|
283
|
-
get: function () { return
|
|
292
|
+
get: function () { return chunkBAWVLSRF_cjs.Dialog; }
|
|
284
293
|
});
|
|
285
294
|
Object.defineProperty(exports, "DialogClose", {
|
|
286
295
|
enumerable: true,
|
|
287
|
-
get: function () { return
|
|
296
|
+
get: function () { return chunkBAWVLSRF_cjs.DialogClose; }
|
|
288
297
|
});
|
|
289
298
|
Object.defineProperty(exports, "DialogContent", {
|
|
290
299
|
enumerable: true,
|
|
291
|
-
get: function () { return
|
|
300
|
+
get: function () { return chunkBAWVLSRF_cjs.DialogContent; }
|
|
292
301
|
});
|
|
293
302
|
Object.defineProperty(exports, "DialogDescription", {
|
|
294
303
|
enumerable: true,
|
|
295
|
-
get: function () { return
|
|
304
|
+
get: function () { return chunkBAWVLSRF_cjs.DialogDescription; }
|
|
296
305
|
});
|
|
297
306
|
Object.defineProperty(exports, "DialogFooter", {
|
|
298
307
|
enumerable: true,
|
|
299
|
-
get: function () { return
|
|
308
|
+
get: function () { return chunkBAWVLSRF_cjs.DialogFooter; }
|
|
300
309
|
});
|
|
301
310
|
Object.defineProperty(exports, "DialogHeader", {
|
|
302
311
|
enumerable: true,
|
|
303
|
-
get: function () { return
|
|
312
|
+
get: function () { return chunkBAWVLSRF_cjs.DialogHeader; }
|
|
304
313
|
});
|
|
305
314
|
Object.defineProperty(exports, "DialogTitle", {
|
|
306
315
|
enumerable: true,
|
|
307
|
-
get: function () { return
|
|
316
|
+
get: function () { return chunkBAWVLSRF_cjs.DialogTitle; }
|
|
308
317
|
});
|
|
309
318
|
Object.defineProperty(exports, "DialogTrigger", {
|
|
310
319
|
enumerable: true,
|
|
311
|
-
get: function () { return
|
|
320
|
+
get: function () { return chunkBAWVLSRF_cjs.DialogTrigger; }
|
|
312
321
|
});
|
|
313
322
|
Object.defineProperty(exports, "Field", {
|
|
314
323
|
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
|
|
428
|
+
get: function () { return chunkZ6CZAPVG_cjs.Badge; }
|
|
420
429
|
});
|
|
421
430
|
Object.defineProperty(exports, "BadgeButton", {
|
|
422
431
|
enumerable: true,
|
|
423
|
-
get: function () { return
|
|
432
|
+
get: function () { return chunkZ6CZAPVG_cjs.BadgeButton; }
|
|
424
433
|
});
|
|
425
434
|
Object.defineProperty(exports, "BadgeDot", {
|
|
426
435
|
enumerable: true,
|
|
427
|
-
get: function () { return
|
|
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';
|
package/dist/components/index.js
CHANGED
|
@@ -1,18 +1,19 @@
|
|
|
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-
|
|
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-6SNQ2B5C.js';
|
|
4
|
+
export { Spinner } from '../chunk-P5IUC7HJ.js';
|
|
4
5
|
export { Textarea } from '../chunk-OQCNPNPS.js';
|
|
5
6
|
export { Tooltip, TooltipProvider } from '../chunk-HJJPEVIH.js';
|
|
6
7
|
export { Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup, ItemHeader, ItemMedia, ItemSeparator, ItemTitle } from '../chunk-XV3AQ6NS.js';
|
|
7
8
|
export { Progress } from '../chunk-PBEZZMAB.js';
|
|
8
9
|
export { RadioGroup, RadioGroupItem } from '../chunk-4TRADSTP.js';
|
|
10
|
+
export { ScrollArea, ScrollBar } from '../chunk-M7NIRB3U.js';
|
|
9
11
|
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator } from '../chunk-O7QFYWMK.js';
|
|
10
12
|
export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger } from '../chunk-DTSFPOLX.js';
|
|
11
|
-
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-
|
|
15
|
-
export { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from '../chunk-
|
|
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
19
|
export { Separator } from '../chunk-XJIUGEPN.js';
|
|
@@ -22,6 +23,6 @@ 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-
|
|
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 chunkUJX74PFK_cjs = require('../../chunk-UJX74PFK.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 chunkUJX74PFK_cjs.ScrollArea; }
|
|
12
|
+
});
|
|
13
|
+
Object.defineProperty(exports, "ScrollBar", {
|
|
14
|
+
enumerable: true,
|
|
15
|
+
get: function () { return chunkUJX74PFK_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 };
|
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkAEMI4LPB_cjs = require('../../chunk-AEMI4LPB.cjs');
|
|
4
|
+
require('../../chunk-3WSQRFUY.cjs');
|
|
4
5
|
require('../../chunk-NU5UQPBX.cjs');
|
|
5
6
|
require('../../chunk-GR37JJQK.cjs');
|
|
6
7
|
require('../../chunk-3DUJHGXE.cjs');
|
|
7
8
|
require('../../chunk-TH44JYXB.cjs');
|
|
8
9
|
require('../../chunk-XENOUBSI.cjs');
|
|
10
|
+
require('../../chunk-UJX74PFK.cjs');
|
|
9
11
|
require('../../chunk-3ZRMIVJM.cjs');
|
|
10
12
|
require('../../chunk-GHV2TURY.cjs');
|
|
11
|
-
require('../../chunk-3WSQRFUY.cjs');
|
|
12
13
|
require('../../chunk-2Y2ZCPNV.cjs');
|
|
13
14
|
require('../../chunk-HCHVDUI6.cjs');
|
|
14
|
-
require('../../chunk-
|
|
15
|
-
require('../../chunk-
|
|
15
|
+
require('../../chunk-X55H6LRX.cjs');
|
|
16
|
+
require('../../chunk-BAWVLSRF.cjs');
|
|
16
17
|
require('../../chunk-YTVV2IUF.cjs');
|
|
17
18
|
require('../../chunk-S3ANEJJ7.cjs');
|
|
18
19
|
require('../../chunk-UIOBJSKZ.cjs');
|
|
@@ -22,7 +23,7 @@ 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-
|
|
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
|
|
34
|
+
get: function () { return chunkAEMI4LPB_cjs.Stepper; }
|
|
34
35
|
});
|
|
35
36
|
Object.defineProperty(exports, "StepperActivationMode", {
|
|
36
37
|
enumerable: true,
|
|
37
|
-
get: function () { return
|
|
38
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperActivationMode; }
|
|
38
39
|
});
|
|
39
40
|
Object.defineProperty(exports, "StepperContent", {
|
|
40
41
|
enumerable: true,
|
|
41
|
-
get: function () { return
|
|
42
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperContent; }
|
|
42
43
|
});
|
|
43
44
|
Object.defineProperty(exports, "StepperDataState", {
|
|
44
45
|
enumerable: true,
|
|
45
|
-
get: function () { return
|
|
46
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperDataState; }
|
|
46
47
|
});
|
|
47
48
|
Object.defineProperty(exports, "StepperDescription", {
|
|
48
49
|
enumerable: true,
|
|
49
|
-
get: function () { return
|
|
50
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperDescription; }
|
|
50
51
|
});
|
|
51
52
|
Object.defineProperty(exports, "StepperFocusIntent", {
|
|
52
53
|
enumerable: true,
|
|
53
|
-
get: function () { return
|
|
54
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperFocusIntent; }
|
|
54
55
|
});
|
|
55
56
|
Object.defineProperty(exports, "StepperIndicator", {
|
|
56
57
|
enumerable: true,
|
|
57
|
-
get: function () { return
|
|
58
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperIndicator; }
|
|
58
59
|
});
|
|
59
60
|
Object.defineProperty(exports, "StepperItem", {
|
|
60
61
|
enumerable: true,
|
|
61
|
-
get: function () { return
|
|
62
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperItem; }
|
|
62
63
|
});
|
|
63
64
|
Object.defineProperty(exports, "StepperNav", {
|
|
64
65
|
enumerable: true,
|
|
65
|
-
get: function () { return
|
|
66
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperNav; }
|
|
66
67
|
});
|
|
67
68
|
Object.defineProperty(exports, "StepperNavigationDirection", {
|
|
68
69
|
enumerable: true,
|
|
69
|
-
get: function () { return
|
|
70
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperNavigationDirection; }
|
|
70
71
|
});
|
|
71
72
|
Object.defineProperty(exports, "StepperNextTrigger", {
|
|
72
73
|
enumerable: true,
|
|
73
|
-
get: function () { return
|
|
74
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperNextTrigger; }
|
|
74
75
|
});
|
|
75
76
|
Object.defineProperty(exports, "StepperOrientation", {
|
|
76
77
|
enumerable: true,
|
|
77
|
-
get: function () { return
|
|
78
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperOrientation; }
|
|
78
79
|
});
|
|
79
80
|
Object.defineProperty(exports, "StepperPanel", {
|
|
80
81
|
enumerable: true,
|
|
81
|
-
get: function () { return
|
|
82
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperPanel; }
|
|
82
83
|
});
|
|
83
84
|
Object.defineProperty(exports, "StepperPrevTrigger", {
|
|
84
85
|
enumerable: true,
|
|
85
|
-
get: function () { return
|
|
86
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperPrevTrigger; }
|
|
86
87
|
});
|
|
87
88
|
Object.defineProperty(exports, "StepperTitle", {
|
|
88
89
|
enumerable: true,
|
|
89
|
-
get: function () { return
|
|
90
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperTitle; }
|
|
90
91
|
});
|
|
91
92
|
Object.defineProperty(exports, "StepperTrigger", {
|
|
92
93
|
enumerable: true,
|
|
93
|
-
get: function () { return
|
|
94
|
+
get: function () { return chunkAEMI4LPB_cjs.StepperTrigger; }
|
|
94
95
|
});
|
|
95
96
|
Object.defineProperty(exports, "useStepperContext", {
|
|
96
97
|
enumerable: true,
|
|
97
|
-
get: function () { return
|
|
98
|
+
get: function () { return chunkAEMI4LPB_cjs.useStepperContext; }
|
|
98
99
|
});
|
|
99
100
|
Object.defineProperty(exports, "useStepperFocusContext", {
|
|
100
101
|
enumerable: true,
|
|
101
|
-
get: function () { return
|
|
102
|
+
get: function () { return chunkAEMI4LPB_cjs.useStepperFocusContext; }
|
|
102
103
|
});
|
|
103
104
|
Object.defineProperty(exports, "useStepperItemContext", {
|
|
104
105
|
enumerable: true,
|
|
105
|
-
get: function () { return
|
|
106
|
+
get: function () { return chunkAEMI4LPB_cjs.useStepperItemContext; }
|
|
106
107
|
});
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
export { Stepper, StepperActivationMode, StepperContent, StepperDataState, StepperDescription, StepperFocusIntent, StepperIndicator, StepperItem, StepperNav, StepperNavigationDirection, StepperNextTrigger, StepperOrientation, StepperPanel, StepperPrevTrigger, StepperTitle, StepperTrigger, useStepperContext, useStepperFocusContext, useStepperItemContext } from '../../chunk-
|
|
1
|
+
export { Stepper, StepperActivationMode, StepperContent, StepperDataState, StepperDescription, StepperFocusIntent, StepperIndicator, StepperItem, StepperNav, StepperNavigationDirection, StepperNextTrigger, StepperOrientation, StepperPanel, StepperPrevTrigger, StepperTitle, StepperTrigger, useStepperContext, useStepperFocusContext, useStepperItemContext } from '../../chunk-6SNQ2B5C.js';
|
|
2
|
+
import '../../chunk-P5IUC7HJ.js';
|
|
2
3
|
import '../../chunk-OQCNPNPS.js';
|
|
3
4
|
import '../../chunk-HJJPEVIH.js';
|
|
4
5
|
import '../../chunk-XV3AQ6NS.js';
|
|
5
6
|
import '../../chunk-PBEZZMAB.js';
|
|
6
7
|
import '../../chunk-4TRADSTP.js';
|
|
8
|
+
import '../../chunk-M7NIRB3U.js';
|
|
7
9
|
import '../../chunk-O7QFYWMK.js';
|
|
8
10
|
import '../../chunk-DTSFPOLX.js';
|
|
9
|
-
import '../../chunk-P5IUC7HJ.js';
|
|
10
11
|
import '../../chunk-6BSR3O2J.js';
|
|
11
12
|
import '../../chunk-5F2Y65JH.js';
|
|
12
|
-
import '../../chunk-
|
|
13
|
-
import '../../chunk-
|
|
13
|
+
import '../../chunk-3BLXG7ET.js';
|
|
14
|
+
import '../../chunk-ACJ3ES2B.js';
|
|
14
15
|
import '../../chunk-KYFNEU4K.js';
|
|
15
16
|
import '../../chunk-I3RSTJP6.js';
|
|
16
17
|
import '../../chunk-XJIUGEPN.js';
|
|
@@ -20,6 +21,6 @@ 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-
|
|
24
|
+
import '../../chunk-FKCWRNWB.js';
|
|
24
25
|
import '../../chunk-ZD2QRAOX.js';
|
|
25
26
|
import '../../chunk-BYXBJQAS.js';
|
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkAEMI4LPB_cjs = require('../../chunk-AEMI4LPB.cjs');
|
|
4
|
+
require('../../chunk-3WSQRFUY.cjs');
|
|
4
5
|
require('../../chunk-NU5UQPBX.cjs');
|
|
5
6
|
require('../../chunk-GR37JJQK.cjs');
|
|
6
7
|
require('../../chunk-3DUJHGXE.cjs');
|
|
7
8
|
require('../../chunk-TH44JYXB.cjs');
|
|
8
9
|
require('../../chunk-XENOUBSI.cjs');
|
|
10
|
+
require('../../chunk-UJX74PFK.cjs');
|
|
9
11
|
require('../../chunk-3ZRMIVJM.cjs');
|
|
10
12
|
require('../../chunk-GHV2TURY.cjs');
|
|
11
|
-
require('../../chunk-3WSQRFUY.cjs');
|
|
12
13
|
require('../../chunk-2Y2ZCPNV.cjs');
|
|
13
14
|
require('../../chunk-HCHVDUI6.cjs');
|
|
14
|
-
require('../../chunk-
|
|
15
|
-
require('../../chunk-
|
|
15
|
+
require('../../chunk-X55H6LRX.cjs');
|
|
16
|
+
require('../../chunk-BAWVLSRF.cjs');
|
|
16
17
|
require('../../chunk-YTVV2IUF.cjs');
|
|
17
18
|
require('../../chunk-S3ANEJJ7.cjs');
|
|
18
19
|
require('../../chunk-UIOBJSKZ.cjs');
|
|
@@ -22,7 +23,7 @@ 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-
|
|
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
|
|
34
|
+
get: function () { return chunkAEMI4LPB_cjs.Toaster; }
|
|
34
35
|
});
|
|
35
36
|
Object.defineProperty(exports, "toast", {
|
|
36
37
|
enumerable: true,
|
|
37
|
-
get: function () { return
|
|
38
|
+
get: function () { return chunkAEMI4LPB_cjs.toast; }
|
|
38
39
|
});
|
|
@@ -1,16 +1,17 @@
|
|
|
1
|
-
export { Toaster, toast } from '../../chunk-
|
|
1
|
+
export { Toaster, toast } from '../../chunk-6SNQ2B5C.js';
|
|
2
|
+
import '../../chunk-P5IUC7HJ.js';
|
|
2
3
|
import '../../chunk-OQCNPNPS.js';
|
|
3
4
|
import '../../chunk-HJJPEVIH.js';
|
|
4
5
|
import '../../chunk-XV3AQ6NS.js';
|
|
5
6
|
import '../../chunk-PBEZZMAB.js';
|
|
6
7
|
import '../../chunk-4TRADSTP.js';
|
|
8
|
+
import '../../chunk-M7NIRB3U.js';
|
|
7
9
|
import '../../chunk-O7QFYWMK.js';
|
|
8
10
|
import '../../chunk-DTSFPOLX.js';
|
|
9
|
-
import '../../chunk-P5IUC7HJ.js';
|
|
10
11
|
import '../../chunk-6BSR3O2J.js';
|
|
11
12
|
import '../../chunk-5F2Y65JH.js';
|
|
12
|
-
import '../../chunk-
|
|
13
|
-
import '../../chunk-
|
|
13
|
+
import '../../chunk-3BLXG7ET.js';
|
|
14
|
+
import '../../chunk-ACJ3ES2B.js';
|
|
14
15
|
import '../../chunk-KYFNEU4K.js';
|
|
15
16
|
import '../../chunk-I3RSTJP6.js';
|
|
16
17
|
import '../../chunk-XJIUGEPN.js';
|
|
@@ -20,6 +21,6 @@ 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-
|
|
24
|
+
import '../../chunk-FKCWRNWB.js';
|
|
24
25
|
import '../../chunk-ZD2QRAOX.js';
|
|
25
26
|
import '../../chunk-BYXBJQAS.js';
|
package/package.json
CHANGED
package/tailwind/scroll.css
CHANGED
|
@@ -2,24 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
@layer base {
|
|
4
4
|
* {
|
|
5
|
-
/* width */
|
|
6
5
|
::-webkit-scrollbar {
|
|
7
|
-
|
|
6
|
+
@apply h-2 w-2;
|
|
8
7
|
}
|
|
9
|
-
|
|
10
|
-
/* Track */
|
|
11
8
|
::-webkit-scrollbar-track {
|
|
12
|
-
|
|
9
|
+
@apply bg-background;
|
|
13
10
|
}
|
|
14
|
-
|
|
15
|
-
/* Handle */
|
|
16
11
|
::-webkit-scrollbar-thumb {
|
|
17
|
-
|
|
12
|
+
@apply bg-border rounded;
|
|
18
13
|
}
|
|
19
|
-
|
|
20
|
-
/* Handle on hover */
|
|
21
14
|
::-webkit-scrollbar-thumb:hover {
|
|
22
|
-
|
|
15
|
+
@apply bg-border/80;
|
|
16
|
+
}
|
|
17
|
+
::-webkit-scrollbar-button {
|
|
18
|
+
@apply hidden;
|
|
19
|
+
}
|
|
20
|
+
::-webkit-scrollbar-corner {
|
|
21
|
+
@apply bg-background;
|
|
23
22
|
}
|
|
24
23
|
}
|
|
25
24
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { useComposedRefs } from './chunk-O7QFYWMK.js';
|
|
2
1
|
import { Spinner } from './chunk-P5IUC7HJ.js';
|
|
2
|
+
import { useComposedRefs } from './chunk-O7QFYWMK.js';
|
|
3
3
|
import { useDirection, Direction } from './chunk-H5O5L6XT.js';
|
|
4
4
|
import { useLazyRef, useIsomorphicLayoutEffect } from './chunk-DFD2WUOU.js';
|
|
5
5
|
import { cn } from './chunk-ZD2QRAOX.js';
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var chunk3ZRMIVJM_cjs = require('./chunk-3ZRMIVJM.cjs');
|
|
4
3
|
var chunk3WSQRFUY_cjs = require('./chunk-3WSQRFUY.cjs');
|
|
4
|
+
var chunk3ZRMIVJM_cjs = require('./chunk-3ZRMIVJM.cjs');
|
|
5
5
|
var chunkEW6TE3N5_cjs = require('./chunk-EW6TE3N5.cjs');
|
|
6
6
|
var chunk7EYMOUWG_cjs = require('./chunk-7EYMOUWG.cjs');
|
|
7
7
|
var chunkH2BWO3SI_cjs = require('./chunk-H2BWO3SI.cjs');
|