@szum-tech/design-system 3.4.0 → 3.5.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.
- package/dist/chunk-PBEZZMAB.js +25 -0
- package/dist/chunk-TH44JYXB.cjs +27 -0
- package/dist/components/badge/index.cjs +2 -2
- 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/field/index.cjs +11 -11
- package/dist/components/field/index.js +1 -1
- package/dist/components/index.cjs +59 -54
- 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/progress/index.cjs +12 -0
- package/dist/components/progress/index.d.cts +8 -0
- package/dist/components/progress/index.d.ts +8 -0
- package/dist/components/progress/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 +27 -35
- /package/dist/{chunk-PAHTQUQC.js → chunk-6VC76QIP.js} +0 -0
- /package/dist/{chunk-6U4URFAI.js → chunk-KYFNEU4K.js} +0 -0
- /package/dist/{chunk-777F7WSJ.js → chunk-LLQ52RQE.js} +0 -0
- /package/dist/{chunk-NT3AA6QQ.cjs → chunk-RDYKJP7U.cjs} +0 -0
- /package/dist/{chunk-P2MKLQQK.cjs → chunk-YHDEDCPE.cjs} +0 -0
- /package/dist/{chunk-H3CLI4CJ.cjs → chunk-YTVV2IUF.cjs} +0 -0
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { cn } from './chunk-ZD2QRAOX.js';
|
|
2
|
+
import { Progress as Progress$1 } from 'radix-ui';
|
|
3
|
+
import { jsx } from 'react/jsx-runtime';
|
|
4
|
+
|
|
5
|
+
function Progress({ className, value, ...props }) {
|
|
6
|
+
return /* @__PURE__ */ jsx(
|
|
7
|
+
Progress$1.Root,
|
|
8
|
+
{
|
|
9
|
+
"data-slot": "progress",
|
|
10
|
+
className: cn("bg-primary/20 relative h-2 w-full overflow-hidden rounded", className),
|
|
11
|
+
value,
|
|
12
|
+
...props,
|
|
13
|
+
children: /* @__PURE__ */ jsx(
|
|
14
|
+
Progress$1.Indicator,
|
|
15
|
+
{
|
|
16
|
+
"data-slot": "progress-indicator",
|
|
17
|
+
className: "bg-primary size-full flex-1 transition-all duration-500 ease-in-out",
|
|
18
|
+
style: { transform: `translateX(-${100 - (value || 0)}%)` }
|
|
19
|
+
}
|
|
20
|
+
)
|
|
21
|
+
}
|
|
22
|
+
);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export { Progress };
|
|
@@ -0,0 +1,27 @@
|
|
|
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 Progress({ className, value, ...props }) {
|
|
8
|
+
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
9
|
+
radixUi.Progress.Root,
|
|
10
|
+
{
|
|
11
|
+
"data-slot": "progress",
|
|
12
|
+
className: chunkH2BWO3SI_cjs.cn("bg-primary/20 relative h-2 w-full overflow-hidden rounded", className),
|
|
13
|
+
value,
|
|
14
|
+
...props,
|
|
15
|
+
children: /* @__PURE__ */ jsxRuntime.jsx(
|
|
16
|
+
radixUi.Progress.Indicator,
|
|
17
|
+
{
|
|
18
|
+
"data-slot": "progress-indicator",
|
|
19
|
+
className: "bg-primary size-full flex-1 transition-all duration-500 ease-in-out",
|
|
20
|
+
style: { transform: `translateX(-${100 - (value || 0)}%)` }
|
|
21
|
+
}
|
|
22
|
+
)
|
|
23
|
+
}
|
|
24
|
+
);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
exports.Progress = Progress;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkRDYKJP7U_cjs = require('../../chunk-RDYKJP7U.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, "Badge", {
|
|
10
10
|
enumerable: true,
|
|
11
|
-
get: function () { return
|
|
11
|
+
get: function () { return chunkRDYKJP7U_cjs.Badge; }
|
|
12
12
|
});
|
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkYHDEDCPE_cjs = require('../../chunk-YHDEDCPE.cjs');
|
|
4
|
+
require('../../chunk-NU5UQPBX.cjs');
|
|
4
5
|
require('../../chunk-GR37JJQK.cjs');
|
|
6
|
+
require('../../chunk-TH44JYXB.cjs');
|
|
5
7
|
require('../../chunk-XENOUBSI.cjs');
|
|
6
8
|
require('../../chunk-Y6EVJSAH.cjs');
|
|
7
9
|
require('../../chunk-GHV2TURY.cjs');
|
|
8
10
|
require('../../chunk-3WSQRFUY.cjs');
|
|
9
|
-
require('../../chunk-NU5UQPBX.cjs');
|
|
10
11
|
require('../../chunk-2Y2ZCPNV.cjs');
|
|
11
12
|
require('../../chunk-HCHVDUI6.cjs');
|
|
12
13
|
require('../../chunk-PH4LO5TE.cjs');
|
|
13
|
-
require('../../chunk-
|
|
14
|
+
require('../../chunk-YTVV2IUF.cjs');
|
|
14
15
|
require('../../chunk-S3ANEJJ7.cjs');
|
|
15
16
|
require('../../chunk-YWG7TML6.cjs');
|
|
16
17
|
require('../../chunk-5AA4IE2T.cjs');
|
|
@@ -18,9 +19,9 @@ require('../../chunk-3DUJHGXE.cjs');
|
|
|
18
19
|
require('../../chunk-UIOBJSKZ.cjs');
|
|
19
20
|
require('../../chunk-EW6TE3N5.cjs');
|
|
20
21
|
require('../../chunk-7EYMOUWG.cjs');
|
|
21
|
-
require('../../chunk-I7AV5IQO.cjs');
|
|
22
22
|
require('../../chunk-TMXVL5CV.cjs');
|
|
23
|
-
require('../../chunk-
|
|
23
|
+
require('../../chunk-I7AV5IQO.cjs');
|
|
24
|
+
require('../../chunk-RDYKJP7U.cjs');
|
|
24
25
|
require('../../chunk-H2BWO3SI.cjs');
|
|
25
26
|
require('../../chunk-3376ZTRC.cjs');
|
|
26
27
|
|
|
@@ -28,5 +29,5 @@ require('../../chunk-3376ZTRC.cjs');
|
|
|
28
29
|
|
|
29
30
|
Object.defineProperty(exports, "Button", {
|
|
30
31
|
enumerable: true,
|
|
31
|
-
get: function () { return
|
|
32
|
+
get: function () { return chunkYHDEDCPE_cjs.Button; }
|
|
32
33
|
});
|
|
@@ -1,14 +1,15 @@
|
|
|
1
|
-
export { Button } from '../../chunk-
|
|
1
|
+
export { Button } from '../../chunk-LLQ52RQE.js';
|
|
2
|
+
import '../../chunk-OQCNPNPS.js';
|
|
2
3
|
import '../../chunk-HJJPEVIH.js';
|
|
4
|
+
import '../../chunk-PBEZZMAB.js';
|
|
3
5
|
import '../../chunk-4TRADSTP.js';
|
|
4
6
|
import '../../chunk-U4AWAABZ.js';
|
|
5
7
|
import '../../chunk-DTSFPOLX.js';
|
|
6
8
|
import '../../chunk-P5IUC7HJ.js';
|
|
7
|
-
import '../../chunk-OQCNPNPS.js';
|
|
8
9
|
import '../../chunk-6BSR3O2J.js';
|
|
9
10
|
import '../../chunk-5F2Y65JH.js';
|
|
10
11
|
import '../../chunk-AGVEKVWD.js';
|
|
11
|
-
import '../../chunk-
|
|
12
|
+
import '../../chunk-KYFNEU4K.js';
|
|
12
13
|
import '../../chunk-I3RSTJP6.js';
|
|
13
14
|
import '../../chunk-UW6GOD7J.js';
|
|
14
15
|
import '../../chunk-UGSNASZM.js';
|
|
@@ -16,8 +17,8 @@ import '../../chunk-XV3AQ6NS.js';
|
|
|
16
17
|
import '../../chunk-XJIUGEPN.js';
|
|
17
18
|
import '../../chunk-H5O5L6XT.js';
|
|
18
19
|
import '../../chunk-DFD2WUOU.js';
|
|
19
|
-
import '../../chunk-NGVFYKAT.js';
|
|
20
20
|
import '../../chunk-5MJPZUTO.js';
|
|
21
|
-
import '../../chunk-
|
|
21
|
+
import '../../chunk-NGVFYKAT.js';
|
|
22
|
+
import '../../chunk-6VC76QIP.js';
|
|
22
23
|
import '../../chunk-ZD2QRAOX.js';
|
|
23
24
|
import '../../chunk-BYXBJQAS.js';
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkYTVV2IUF_cjs = require('../../chunk-YTVV2IUF.cjs');
|
|
4
4
|
require('../../chunk-S3ANEJJ7.cjs');
|
|
5
5
|
require('../../chunk-UIOBJSKZ.cjs');
|
|
6
6
|
require('../../chunk-H2BWO3SI.cjs');
|
|
@@ -10,41 +10,41 @@ require('../../chunk-3376ZTRC.cjs');
|
|
|
10
10
|
|
|
11
11
|
Object.defineProperty(exports, "Field", {
|
|
12
12
|
enumerable: true,
|
|
13
|
-
get: function () { return
|
|
13
|
+
get: function () { return chunkYTVV2IUF_cjs.Field; }
|
|
14
14
|
});
|
|
15
15
|
Object.defineProperty(exports, "FieldContent", {
|
|
16
16
|
enumerable: true,
|
|
17
|
-
get: function () { return
|
|
17
|
+
get: function () { return chunkYTVV2IUF_cjs.FieldContent; }
|
|
18
18
|
});
|
|
19
19
|
Object.defineProperty(exports, "FieldDescription", {
|
|
20
20
|
enumerable: true,
|
|
21
|
-
get: function () { return
|
|
21
|
+
get: function () { return chunkYTVV2IUF_cjs.FieldDescription; }
|
|
22
22
|
});
|
|
23
23
|
Object.defineProperty(exports, "FieldError", {
|
|
24
24
|
enumerable: true,
|
|
25
|
-
get: function () { return
|
|
25
|
+
get: function () { return chunkYTVV2IUF_cjs.FieldError; }
|
|
26
26
|
});
|
|
27
27
|
Object.defineProperty(exports, "FieldGroup", {
|
|
28
28
|
enumerable: true,
|
|
29
|
-
get: function () { return
|
|
29
|
+
get: function () { return chunkYTVV2IUF_cjs.FieldGroup; }
|
|
30
30
|
});
|
|
31
31
|
Object.defineProperty(exports, "FieldLabel", {
|
|
32
32
|
enumerable: true,
|
|
33
|
-
get: function () { return
|
|
33
|
+
get: function () { return chunkYTVV2IUF_cjs.FieldLabel; }
|
|
34
34
|
});
|
|
35
35
|
Object.defineProperty(exports, "FieldLegend", {
|
|
36
36
|
enumerable: true,
|
|
37
|
-
get: function () { return
|
|
37
|
+
get: function () { return chunkYTVV2IUF_cjs.FieldLegend; }
|
|
38
38
|
});
|
|
39
39
|
Object.defineProperty(exports, "FieldSeparator", {
|
|
40
40
|
enumerable: true,
|
|
41
|
-
get: function () { return
|
|
41
|
+
get: function () { return chunkYTVV2IUF_cjs.FieldSeparator; }
|
|
42
42
|
});
|
|
43
43
|
Object.defineProperty(exports, "FieldSet", {
|
|
44
44
|
enumerable: true,
|
|
45
|
-
get: function () { return
|
|
45
|
+
get: function () { return chunkYTVV2IUF_cjs.FieldSet; }
|
|
46
46
|
});
|
|
47
47
|
Object.defineProperty(exports, "FieldTitle", {
|
|
48
48
|
enumerable: true,
|
|
49
|
-
get: function () { return
|
|
49
|
+
get: function () { return chunkYTVV2IUF_cjs.FieldTitle; }
|
|
50
50
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export { Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle } from '../../chunk-
|
|
1
|
+
export { Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle } from '../../chunk-KYFNEU4K.js';
|
|
2
2
|
import '../../chunk-I3RSTJP6.js';
|
|
3
3
|
import '../../chunk-XJIUGEPN.js';
|
|
4
4
|
import '../../chunk-ZD2QRAOX.js';
|
|
@@ -2,17 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
'use strict';
|
|
4
4
|
|
|
5
|
-
var
|
|
5
|
+
var chunkYHDEDCPE_cjs = require('../chunk-YHDEDCPE.cjs');
|
|
6
|
+
var chunkNU5UQPBX_cjs = require('../chunk-NU5UQPBX.cjs');
|
|
6
7
|
var chunkGR37JJQK_cjs = require('../chunk-GR37JJQK.cjs');
|
|
8
|
+
var chunkTH44JYXB_cjs = require('../chunk-TH44JYXB.cjs');
|
|
7
9
|
var chunkXENOUBSI_cjs = require('../chunk-XENOUBSI.cjs');
|
|
8
10
|
var chunkY6EVJSAH_cjs = require('../chunk-Y6EVJSAH.cjs');
|
|
9
11
|
var chunkGHV2TURY_cjs = require('../chunk-GHV2TURY.cjs');
|
|
10
12
|
var chunk3WSQRFUY_cjs = require('../chunk-3WSQRFUY.cjs');
|
|
11
|
-
var chunkNU5UQPBX_cjs = require('../chunk-NU5UQPBX.cjs');
|
|
12
13
|
var chunk2Y2ZCPNV_cjs = require('../chunk-2Y2ZCPNV.cjs');
|
|
13
14
|
var chunkHCHVDUI6_cjs = require('../chunk-HCHVDUI6.cjs');
|
|
14
15
|
var chunkPH4LO5TE_cjs = require('../chunk-PH4LO5TE.cjs');
|
|
15
|
-
var
|
|
16
|
+
var chunkYTVV2IUF_cjs = require('../chunk-YTVV2IUF.cjs');
|
|
16
17
|
var chunkS3ANEJJ7_cjs = require('../chunk-S3ANEJJ7.cjs');
|
|
17
18
|
var chunkYWG7TML6_cjs = require('../chunk-YWG7TML6.cjs');
|
|
18
19
|
var chunk5AA4IE2T_cjs = require('../chunk-5AA4IE2T.cjs');
|
|
@@ -20,9 +21,9 @@ var chunk3DUJHGXE_cjs = require('../chunk-3DUJHGXE.cjs');
|
|
|
20
21
|
var chunkUIOBJSKZ_cjs = require('../chunk-UIOBJSKZ.cjs');
|
|
21
22
|
require('../chunk-EW6TE3N5.cjs');
|
|
22
23
|
require('../chunk-7EYMOUWG.cjs');
|
|
23
|
-
var chunkI7AV5IQO_cjs = require('../chunk-I7AV5IQO.cjs');
|
|
24
24
|
var chunkTMXVL5CV_cjs = require('../chunk-TMXVL5CV.cjs');
|
|
25
|
-
var
|
|
25
|
+
var chunkI7AV5IQO_cjs = require('../chunk-I7AV5IQO.cjs');
|
|
26
|
+
var chunkRDYKJP7U_cjs = require('../chunk-RDYKJP7U.cjs');
|
|
26
27
|
require('../chunk-H2BWO3SI.cjs');
|
|
27
28
|
require('../chunk-3376ZTRC.cjs');
|
|
28
29
|
|
|
@@ -30,91 +31,95 @@ require('../chunk-3376ZTRC.cjs');
|
|
|
30
31
|
|
|
31
32
|
Object.defineProperty(exports, "Button", {
|
|
32
33
|
enumerable: true,
|
|
33
|
-
get: function () { return
|
|
34
|
+
get: function () { return chunkYHDEDCPE_cjs.Button; }
|
|
34
35
|
});
|
|
35
36
|
Object.defineProperty(exports, "Stepper", {
|
|
36
37
|
enumerable: true,
|
|
37
|
-
get: function () { return
|
|
38
|
+
get: function () { return chunkYHDEDCPE_cjs.Stepper; }
|
|
38
39
|
});
|
|
39
40
|
Object.defineProperty(exports, "StepperActivationMode", {
|
|
40
41
|
enumerable: true,
|
|
41
|
-
get: function () { return
|
|
42
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperActivationMode; }
|
|
42
43
|
});
|
|
43
44
|
Object.defineProperty(exports, "StepperContent", {
|
|
44
45
|
enumerable: true,
|
|
45
|
-
get: function () { return
|
|
46
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperContent; }
|
|
46
47
|
});
|
|
47
48
|
Object.defineProperty(exports, "StepperDataState", {
|
|
48
49
|
enumerable: true,
|
|
49
|
-
get: function () { return
|
|
50
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperDataState; }
|
|
50
51
|
});
|
|
51
52
|
Object.defineProperty(exports, "StepperDescription", {
|
|
52
53
|
enumerable: true,
|
|
53
|
-
get: function () { return
|
|
54
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperDescription; }
|
|
54
55
|
});
|
|
55
56
|
Object.defineProperty(exports, "StepperFocusIntent", {
|
|
56
57
|
enumerable: true,
|
|
57
|
-
get: function () { return
|
|
58
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperFocusIntent; }
|
|
58
59
|
});
|
|
59
60
|
Object.defineProperty(exports, "StepperIndicator", {
|
|
60
61
|
enumerable: true,
|
|
61
|
-
get: function () { return
|
|
62
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperIndicator; }
|
|
62
63
|
});
|
|
63
64
|
Object.defineProperty(exports, "StepperItem", {
|
|
64
65
|
enumerable: true,
|
|
65
|
-
get: function () { return
|
|
66
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperItem; }
|
|
66
67
|
});
|
|
67
68
|
Object.defineProperty(exports, "StepperNav", {
|
|
68
69
|
enumerable: true,
|
|
69
|
-
get: function () { return
|
|
70
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperNav; }
|
|
70
71
|
});
|
|
71
72
|
Object.defineProperty(exports, "StepperNavigationDirection", {
|
|
72
73
|
enumerable: true,
|
|
73
|
-
get: function () { return
|
|
74
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperNavigationDirection; }
|
|
74
75
|
});
|
|
75
76
|
Object.defineProperty(exports, "StepperNextTrigger", {
|
|
76
77
|
enumerable: true,
|
|
77
|
-
get: function () { return
|
|
78
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperNextTrigger; }
|
|
78
79
|
});
|
|
79
80
|
Object.defineProperty(exports, "StepperOrientation", {
|
|
80
81
|
enumerable: true,
|
|
81
|
-
get: function () { return
|
|
82
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperOrientation; }
|
|
82
83
|
});
|
|
83
84
|
Object.defineProperty(exports, "StepperPanel", {
|
|
84
85
|
enumerable: true,
|
|
85
|
-
get: function () { return
|
|
86
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperPanel; }
|
|
86
87
|
});
|
|
87
88
|
Object.defineProperty(exports, "StepperPrevTrigger", {
|
|
88
89
|
enumerable: true,
|
|
89
|
-
get: function () { return
|
|
90
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperPrevTrigger; }
|
|
90
91
|
});
|
|
91
92
|
Object.defineProperty(exports, "StepperTitle", {
|
|
92
93
|
enumerable: true,
|
|
93
|
-
get: function () { return
|
|
94
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperTitle; }
|
|
94
95
|
});
|
|
95
96
|
Object.defineProperty(exports, "StepperTrigger", {
|
|
96
97
|
enumerable: true,
|
|
97
|
-
get: function () { return
|
|
98
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperTrigger; }
|
|
98
99
|
});
|
|
99
100
|
Object.defineProperty(exports, "Toaster", {
|
|
100
101
|
enumerable: true,
|
|
101
|
-
get: function () { return
|
|
102
|
+
get: function () { return chunkYHDEDCPE_cjs.Toaster; }
|
|
102
103
|
});
|
|
103
104
|
Object.defineProperty(exports, "toast", {
|
|
104
105
|
enumerable: true,
|
|
105
|
-
get: function () { return
|
|
106
|
+
get: function () { return chunkYHDEDCPE_cjs.toast; }
|
|
106
107
|
});
|
|
107
108
|
Object.defineProperty(exports, "useStepperContext", {
|
|
108
109
|
enumerable: true,
|
|
109
|
-
get: function () { return
|
|
110
|
+
get: function () { return chunkYHDEDCPE_cjs.useStepperContext; }
|
|
110
111
|
});
|
|
111
112
|
Object.defineProperty(exports, "useStepperFocusContext", {
|
|
112
113
|
enumerable: true,
|
|
113
|
-
get: function () { return
|
|
114
|
+
get: function () { return chunkYHDEDCPE_cjs.useStepperFocusContext; }
|
|
114
115
|
});
|
|
115
116
|
Object.defineProperty(exports, "useStepperItemContext", {
|
|
116
117
|
enumerable: true,
|
|
117
|
-
get: function () { return
|
|
118
|
+
get: function () { return chunkYHDEDCPE_cjs.useStepperItemContext; }
|
|
119
|
+
});
|
|
120
|
+
Object.defineProperty(exports, "Textarea", {
|
|
121
|
+
enumerable: true,
|
|
122
|
+
get: function () { return chunkNU5UQPBX_cjs.Textarea; }
|
|
118
123
|
});
|
|
119
124
|
Object.defineProperty(exports, "Tooltip", {
|
|
120
125
|
enumerable: true,
|
|
@@ -124,6 +129,10 @@ Object.defineProperty(exports, "TooltipProvider", {
|
|
|
124
129
|
enumerable: true,
|
|
125
130
|
get: function () { return chunkGR37JJQK_cjs.TooltipProvider; }
|
|
126
131
|
});
|
|
132
|
+
Object.defineProperty(exports, "Progress", {
|
|
133
|
+
enumerable: true,
|
|
134
|
+
get: function () { return chunkTH44JYXB_cjs.Progress; }
|
|
135
|
+
});
|
|
127
136
|
Object.defineProperty(exports, "RadioGroup", {
|
|
128
137
|
enumerable: true,
|
|
129
138
|
get: function () { return chunkXENOUBSI_cjs.RadioGroup; }
|
|
@@ -192,10 +201,6 @@ Object.defineProperty(exports, "Spinner", {
|
|
|
192
201
|
enumerable: true,
|
|
193
202
|
get: function () { return chunk3WSQRFUY_cjs.Spinner; }
|
|
194
203
|
});
|
|
195
|
-
Object.defineProperty(exports, "Textarea", {
|
|
196
|
-
enumerable: true,
|
|
197
|
-
get: function () { return chunkNU5UQPBX_cjs.Textarea; }
|
|
198
|
-
});
|
|
199
204
|
Object.defineProperty(exports, "Card", {
|
|
200
205
|
enumerable: true,
|
|
201
206
|
get: function () { return chunk2Y2ZCPNV_cjs.Card; }
|
|
@@ -262,43 +267,43 @@ Object.defineProperty(exports, "DialogTrigger", {
|
|
|
262
267
|
});
|
|
263
268
|
Object.defineProperty(exports, "Field", {
|
|
264
269
|
enumerable: true,
|
|
265
|
-
get: function () { return
|
|
270
|
+
get: function () { return chunkYTVV2IUF_cjs.Field; }
|
|
266
271
|
});
|
|
267
272
|
Object.defineProperty(exports, "FieldContent", {
|
|
268
273
|
enumerable: true,
|
|
269
|
-
get: function () { return
|
|
274
|
+
get: function () { return chunkYTVV2IUF_cjs.FieldContent; }
|
|
270
275
|
});
|
|
271
276
|
Object.defineProperty(exports, "FieldDescription", {
|
|
272
277
|
enumerable: true,
|
|
273
|
-
get: function () { return
|
|
278
|
+
get: function () { return chunkYTVV2IUF_cjs.FieldDescription; }
|
|
274
279
|
});
|
|
275
280
|
Object.defineProperty(exports, "FieldError", {
|
|
276
281
|
enumerable: true,
|
|
277
|
-
get: function () { return
|
|
282
|
+
get: function () { return chunkYTVV2IUF_cjs.FieldError; }
|
|
278
283
|
});
|
|
279
284
|
Object.defineProperty(exports, "FieldGroup", {
|
|
280
285
|
enumerable: true,
|
|
281
|
-
get: function () { return
|
|
286
|
+
get: function () { return chunkYTVV2IUF_cjs.FieldGroup; }
|
|
282
287
|
});
|
|
283
288
|
Object.defineProperty(exports, "FieldLabel", {
|
|
284
289
|
enumerable: true,
|
|
285
|
-
get: function () { return
|
|
290
|
+
get: function () { return chunkYTVV2IUF_cjs.FieldLabel; }
|
|
286
291
|
});
|
|
287
292
|
Object.defineProperty(exports, "FieldLegend", {
|
|
288
293
|
enumerable: true,
|
|
289
|
-
get: function () { return
|
|
294
|
+
get: function () { return chunkYTVV2IUF_cjs.FieldLegend; }
|
|
290
295
|
});
|
|
291
296
|
Object.defineProperty(exports, "FieldSeparator", {
|
|
292
297
|
enumerable: true,
|
|
293
|
-
get: function () { return
|
|
298
|
+
get: function () { return chunkYTVV2IUF_cjs.FieldSeparator; }
|
|
294
299
|
});
|
|
295
300
|
Object.defineProperty(exports, "FieldSet", {
|
|
296
301
|
enumerable: true,
|
|
297
|
-
get: function () { return
|
|
302
|
+
get: function () { return chunkYTVV2IUF_cjs.FieldSet; }
|
|
298
303
|
});
|
|
299
304
|
Object.defineProperty(exports, "FieldTitle", {
|
|
300
305
|
enumerable: true,
|
|
301
|
-
get: function () { return
|
|
306
|
+
get: function () { return chunkYTVV2IUF_cjs.FieldTitle; }
|
|
302
307
|
});
|
|
303
308
|
Object.defineProperty(exports, "Label", {
|
|
304
309
|
enumerable: true,
|
|
@@ -356,18 +361,6 @@ Object.defineProperty(exports, "Separator", {
|
|
|
356
361
|
enumerable: true,
|
|
357
362
|
get: function () { return chunkUIOBJSKZ_cjs.Separator; }
|
|
358
363
|
});
|
|
359
|
-
Object.defineProperty(exports, "Avatar", {
|
|
360
|
-
enumerable: true,
|
|
361
|
-
get: function () { return chunkI7AV5IQO_cjs.Avatar; }
|
|
362
|
-
});
|
|
363
|
-
Object.defineProperty(exports, "AvatarFallback", {
|
|
364
|
-
enumerable: true,
|
|
365
|
-
get: function () { return chunkI7AV5IQO_cjs.AvatarFallback; }
|
|
366
|
-
});
|
|
367
|
-
Object.defineProperty(exports, "AvatarImage", {
|
|
368
|
-
enumerable: true,
|
|
369
|
-
get: function () { return chunkI7AV5IQO_cjs.AvatarImage; }
|
|
370
|
-
});
|
|
371
364
|
Object.defineProperty(exports, "AlertDialog", {
|
|
372
365
|
enumerable: true,
|
|
373
366
|
get: function () { return chunkTMXVL5CV_cjs.AlertDialog; }
|
|
@@ -404,7 +397,19 @@ Object.defineProperty(exports, "AlertDialogTrigger", {
|
|
|
404
397
|
enumerable: true,
|
|
405
398
|
get: function () { return chunkTMXVL5CV_cjs.AlertDialogTrigger; }
|
|
406
399
|
});
|
|
400
|
+
Object.defineProperty(exports, "Avatar", {
|
|
401
|
+
enumerable: true,
|
|
402
|
+
get: function () { return chunkI7AV5IQO_cjs.Avatar; }
|
|
403
|
+
});
|
|
404
|
+
Object.defineProperty(exports, "AvatarFallback", {
|
|
405
|
+
enumerable: true,
|
|
406
|
+
get: function () { return chunkI7AV5IQO_cjs.AvatarFallback; }
|
|
407
|
+
});
|
|
408
|
+
Object.defineProperty(exports, "AvatarImage", {
|
|
409
|
+
enumerable: true,
|
|
410
|
+
get: function () { return chunkI7AV5IQO_cjs.AvatarImage; }
|
|
411
|
+
});
|
|
407
412
|
Object.defineProperty(exports, "Badge", {
|
|
408
413
|
enumerable: true,
|
|
409
|
-
get: function () { return
|
|
414
|
+
get: function () { return chunkRDYKJP7U_cjs.Badge; }
|
|
410
415
|
});
|
|
@@ -10,6 +10,7 @@ export { Header, HeaderProps } from './header/index.cjs';
|
|
|
10
10
|
export { Input, InputProps } from './input/index.cjs';
|
|
11
11
|
export { Item, ItemActions, ItemActionsProps, ItemContent, ItemContentProps, ItemDescription, ItemDescriptionProps, ItemFooter, ItemFooterProps, ItemGroup, ItemGroupProps, ItemHeader, ItemHeaderProps, ItemMedia, ItemMediaProps, ItemMediaVariantType, ItemProps, ItemSeparator, ItemSeparatorProps, ItemSizeType, ItemTitle, ItemTitleProps, ItemVariantType } from './item/index.cjs';
|
|
12
12
|
export { Label, LabelProps } from './label/index.cjs';
|
|
13
|
+
export { Progress, ProgressProps } from './progress/index.cjs';
|
|
13
14
|
export { Select, SelectContent, SelectContentProps, SelectGroup, SelectGroupProps, SelectItem, SelectItemProps, SelectLabel, SelectLabelProps, SelectProps, SelectSeparator, SelectSeparatorProps } from './select/index.cjs';
|
|
14
15
|
export { Separator, SeparatorProps } from './separator/index.cjs';
|
|
15
16
|
export { Sheet, SheetClose, SheetCloseProps, SheetContent, SheetContentProps, SheetContentSide, SheetDescription, SheetDescriptionProps, SheetFooter, SheetFooterProps, SheetHeader, SheetHeaderProps, SheetProps, SheetTitle, SheetTitleProps, SheetTrigger, SheetTriggerProps } from './sheet/index.cjs';
|
|
@@ -10,6 +10,7 @@ export { Header, HeaderProps } from './header/index.js';
|
|
|
10
10
|
export { Input, InputProps } from './input/index.js';
|
|
11
11
|
export { Item, ItemActions, ItemActionsProps, ItemContent, ItemContentProps, ItemDescription, ItemDescriptionProps, ItemFooter, ItemFooterProps, ItemGroup, ItemGroupProps, ItemHeader, ItemHeaderProps, ItemMedia, ItemMediaProps, ItemMediaVariantType, ItemProps, ItemSeparator, ItemSeparatorProps, ItemSizeType, ItemTitle, ItemTitleProps, ItemVariantType } from './item/index.js';
|
|
12
12
|
export { Label, LabelProps } from './label/index.js';
|
|
13
|
+
export { Progress, ProgressProps } from './progress/index.js';
|
|
13
14
|
export { Select, SelectContent, SelectContentProps, SelectGroup, SelectGroupProps, SelectItem, SelectItemProps, SelectLabel, SelectLabelProps, SelectProps, SelectSeparator, SelectSeparatorProps } from './select/index.js';
|
|
14
15
|
export { Separator, SeparatorProps } from './separator/index.js';
|
|
15
16
|
export { Sheet, SheetClose, SheetCloseProps, SheetContent, SheetContentProps, SheetContentSide, SheetDescription, SheetDescriptionProps, SheetFooter, SheetFooterProps, SheetHeader, SheetHeaderProps, SheetProps, SheetTitle, SheetTitleProps, SheetTrigger, SheetTriggerProps } from './sheet/index.js';
|
package/dist/components/index.js
CHANGED
|
@@ -1,16 +1,17 @@
|
|
|
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-LLQ52RQE.js';
|
|
4
|
+
export { Textarea } from '../chunk-OQCNPNPS.js';
|
|
4
5
|
export { Tooltip, TooltipProvider } from '../chunk-HJJPEVIH.js';
|
|
6
|
+
export { Progress } from '../chunk-PBEZZMAB.js';
|
|
5
7
|
export { RadioGroup, RadioGroupItem } from '../chunk-4TRADSTP.js';
|
|
6
8
|
export { Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator } from '../chunk-U4AWAABZ.js';
|
|
7
9
|
export { Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetTitle, SheetTrigger } from '../chunk-DTSFPOLX.js';
|
|
8
10
|
export { Spinner } from '../chunk-P5IUC7HJ.js';
|
|
9
|
-
export { Textarea } from '../chunk-OQCNPNPS.js';
|
|
10
11
|
export { Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle } from '../chunk-6BSR3O2J.js';
|
|
11
12
|
export { Checkbox } from '../chunk-5F2Y65JH.js';
|
|
12
13
|
export { Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger } from '../chunk-AGVEKVWD.js';
|
|
13
|
-
export { Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle } from '../chunk-
|
|
14
|
+
export { Field, FieldContent, FieldDescription, FieldError, FieldGroup, FieldLabel, FieldLegend, FieldSeparator, FieldSet, FieldTitle } from '../chunk-KYFNEU4K.js';
|
|
14
15
|
export { Label } from '../chunk-I3RSTJP6.js';
|
|
15
16
|
export { Header } from '../chunk-UW6GOD7J.js';
|
|
16
17
|
export { Input } from '../chunk-UGSNASZM.js';
|
|
@@ -18,8 +19,8 @@ export { Item, ItemActions, ItemContent, ItemDescription, ItemFooter, ItemGroup,
|
|
|
18
19
|
export { Separator } from '../chunk-XJIUGEPN.js';
|
|
19
20
|
import '../chunk-H5O5L6XT.js';
|
|
20
21
|
import '../chunk-DFD2WUOU.js';
|
|
21
|
-
export { Avatar, AvatarFallback, AvatarImage } from '../chunk-NGVFYKAT.js';
|
|
22
22
|
export { AlertDialog, AlertDialogAction, AlertDialogCancel, AlertDialogContent, AlertDialogDescription, AlertDialogFooter, AlertDialogHeader, AlertDialogTitle, AlertDialogTrigger } from '../chunk-5MJPZUTO.js';
|
|
23
|
-
export {
|
|
23
|
+
export { Avatar, AvatarFallback, AvatarImage } from '../chunk-NGVFYKAT.js';
|
|
24
|
+
export { Badge } from '../chunk-6VC76QIP.js';
|
|
24
25
|
import '../chunk-ZD2QRAOX.js';
|
|
25
26
|
import '../chunk-BYXBJQAS.js';
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
var chunkTH44JYXB_cjs = require('../../chunk-TH44JYXB.cjs');
|
|
4
|
+
require('../../chunk-H2BWO3SI.cjs');
|
|
5
|
+
require('../../chunk-3376ZTRC.cjs');
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
Object.defineProperty(exports, "Progress", {
|
|
10
|
+
enumerable: true,
|
|
11
|
+
get: function () { return chunkTH44JYXB_cjs.Progress; }
|
|
12
|
+
});
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
import { Progress as Progress$1 } from 'radix-ui';
|
|
4
|
+
|
|
5
|
+
type ProgressProps = React.ComponentProps<typeof Progress$1.Root>;
|
|
6
|
+
declare function Progress({ className, value, ...props }: ProgressProps): react_jsx_runtime.JSX.Element;
|
|
7
|
+
|
|
8
|
+
export { Progress, type ProgressProps };
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
+
import * as React from 'react';
|
|
3
|
+
import { Progress as Progress$1 } from 'radix-ui';
|
|
4
|
+
|
|
5
|
+
type ProgressProps = React.ComponentProps<typeof Progress$1.Root>;
|
|
6
|
+
declare function Progress({ className, value, ...props }: ProgressProps): react_jsx_runtime.JSX.Element;
|
|
7
|
+
|
|
8
|
+
export { Progress, type ProgressProps };
|
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkYHDEDCPE_cjs = require('../../chunk-YHDEDCPE.cjs');
|
|
4
|
+
require('../../chunk-NU5UQPBX.cjs');
|
|
4
5
|
require('../../chunk-GR37JJQK.cjs');
|
|
6
|
+
require('../../chunk-TH44JYXB.cjs');
|
|
5
7
|
require('../../chunk-XENOUBSI.cjs');
|
|
6
8
|
require('../../chunk-Y6EVJSAH.cjs');
|
|
7
9
|
require('../../chunk-GHV2TURY.cjs');
|
|
8
10
|
require('../../chunk-3WSQRFUY.cjs');
|
|
9
|
-
require('../../chunk-NU5UQPBX.cjs');
|
|
10
11
|
require('../../chunk-2Y2ZCPNV.cjs');
|
|
11
12
|
require('../../chunk-HCHVDUI6.cjs');
|
|
12
13
|
require('../../chunk-PH4LO5TE.cjs');
|
|
13
|
-
require('../../chunk-
|
|
14
|
+
require('../../chunk-YTVV2IUF.cjs');
|
|
14
15
|
require('../../chunk-S3ANEJJ7.cjs');
|
|
15
16
|
require('../../chunk-YWG7TML6.cjs');
|
|
16
17
|
require('../../chunk-5AA4IE2T.cjs');
|
|
@@ -18,9 +19,9 @@ require('../../chunk-3DUJHGXE.cjs');
|
|
|
18
19
|
require('../../chunk-UIOBJSKZ.cjs');
|
|
19
20
|
require('../../chunk-EW6TE3N5.cjs');
|
|
20
21
|
require('../../chunk-7EYMOUWG.cjs');
|
|
21
|
-
require('../../chunk-I7AV5IQO.cjs');
|
|
22
22
|
require('../../chunk-TMXVL5CV.cjs');
|
|
23
|
-
require('../../chunk-
|
|
23
|
+
require('../../chunk-I7AV5IQO.cjs');
|
|
24
|
+
require('../../chunk-RDYKJP7U.cjs');
|
|
24
25
|
require('../../chunk-H2BWO3SI.cjs');
|
|
25
26
|
require('../../chunk-3376ZTRC.cjs');
|
|
26
27
|
|
|
@@ -28,77 +29,77 @@ require('../../chunk-3376ZTRC.cjs');
|
|
|
28
29
|
|
|
29
30
|
Object.defineProperty(exports, "Stepper", {
|
|
30
31
|
enumerable: true,
|
|
31
|
-
get: function () { return
|
|
32
|
+
get: function () { return chunkYHDEDCPE_cjs.Stepper; }
|
|
32
33
|
});
|
|
33
34
|
Object.defineProperty(exports, "StepperActivationMode", {
|
|
34
35
|
enumerable: true,
|
|
35
|
-
get: function () { return
|
|
36
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperActivationMode; }
|
|
36
37
|
});
|
|
37
38
|
Object.defineProperty(exports, "StepperContent", {
|
|
38
39
|
enumerable: true,
|
|
39
|
-
get: function () { return
|
|
40
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperContent; }
|
|
40
41
|
});
|
|
41
42
|
Object.defineProperty(exports, "StepperDataState", {
|
|
42
43
|
enumerable: true,
|
|
43
|
-
get: function () { return
|
|
44
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperDataState; }
|
|
44
45
|
});
|
|
45
46
|
Object.defineProperty(exports, "StepperDescription", {
|
|
46
47
|
enumerable: true,
|
|
47
|
-
get: function () { return
|
|
48
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperDescription; }
|
|
48
49
|
});
|
|
49
50
|
Object.defineProperty(exports, "StepperFocusIntent", {
|
|
50
51
|
enumerable: true,
|
|
51
|
-
get: function () { return
|
|
52
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperFocusIntent; }
|
|
52
53
|
});
|
|
53
54
|
Object.defineProperty(exports, "StepperIndicator", {
|
|
54
55
|
enumerable: true,
|
|
55
|
-
get: function () { return
|
|
56
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperIndicator; }
|
|
56
57
|
});
|
|
57
58
|
Object.defineProperty(exports, "StepperItem", {
|
|
58
59
|
enumerable: true,
|
|
59
|
-
get: function () { return
|
|
60
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperItem; }
|
|
60
61
|
});
|
|
61
62
|
Object.defineProperty(exports, "StepperNav", {
|
|
62
63
|
enumerable: true,
|
|
63
|
-
get: function () { return
|
|
64
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperNav; }
|
|
64
65
|
});
|
|
65
66
|
Object.defineProperty(exports, "StepperNavigationDirection", {
|
|
66
67
|
enumerable: true,
|
|
67
|
-
get: function () { return
|
|
68
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperNavigationDirection; }
|
|
68
69
|
});
|
|
69
70
|
Object.defineProperty(exports, "StepperNextTrigger", {
|
|
70
71
|
enumerable: true,
|
|
71
|
-
get: function () { return
|
|
72
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperNextTrigger; }
|
|
72
73
|
});
|
|
73
74
|
Object.defineProperty(exports, "StepperOrientation", {
|
|
74
75
|
enumerable: true,
|
|
75
|
-
get: function () { return
|
|
76
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperOrientation; }
|
|
76
77
|
});
|
|
77
78
|
Object.defineProperty(exports, "StepperPanel", {
|
|
78
79
|
enumerable: true,
|
|
79
|
-
get: function () { return
|
|
80
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperPanel; }
|
|
80
81
|
});
|
|
81
82
|
Object.defineProperty(exports, "StepperPrevTrigger", {
|
|
82
83
|
enumerable: true,
|
|
83
|
-
get: function () { return
|
|
84
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperPrevTrigger; }
|
|
84
85
|
});
|
|
85
86
|
Object.defineProperty(exports, "StepperTitle", {
|
|
86
87
|
enumerable: true,
|
|
87
|
-
get: function () { return
|
|
88
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperTitle; }
|
|
88
89
|
});
|
|
89
90
|
Object.defineProperty(exports, "StepperTrigger", {
|
|
90
91
|
enumerable: true,
|
|
91
|
-
get: function () { return
|
|
92
|
+
get: function () { return chunkYHDEDCPE_cjs.StepperTrigger; }
|
|
92
93
|
});
|
|
93
94
|
Object.defineProperty(exports, "useStepperContext", {
|
|
94
95
|
enumerable: true,
|
|
95
|
-
get: function () { return
|
|
96
|
+
get: function () { return chunkYHDEDCPE_cjs.useStepperContext; }
|
|
96
97
|
});
|
|
97
98
|
Object.defineProperty(exports, "useStepperFocusContext", {
|
|
98
99
|
enumerable: true,
|
|
99
|
-
get: function () { return
|
|
100
|
+
get: function () { return chunkYHDEDCPE_cjs.useStepperFocusContext; }
|
|
100
101
|
});
|
|
101
102
|
Object.defineProperty(exports, "useStepperItemContext", {
|
|
102
103
|
enumerable: true,
|
|
103
|
-
get: function () { return
|
|
104
|
+
get: function () { return chunkYHDEDCPE_cjs.useStepperItemContext; }
|
|
104
105
|
});
|
|
@@ -1,14 +1,15 @@
|
|
|
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-LLQ52RQE.js';
|
|
2
|
+
import '../../chunk-OQCNPNPS.js';
|
|
2
3
|
import '../../chunk-HJJPEVIH.js';
|
|
4
|
+
import '../../chunk-PBEZZMAB.js';
|
|
3
5
|
import '../../chunk-4TRADSTP.js';
|
|
4
6
|
import '../../chunk-U4AWAABZ.js';
|
|
5
7
|
import '../../chunk-DTSFPOLX.js';
|
|
6
8
|
import '../../chunk-P5IUC7HJ.js';
|
|
7
|
-
import '../../chunk-OQCNPNPS.js';
|
|
8
9
|
import '../../chunk-6BSR3O2J.js';
|
|
9
10
|
import '../../chunk-5F2Y65JH.js';
|
|
10
11
|
import '../../chunk-AGVEKVWD.js';
|
|
11
|
-
import '../../chunk-
|
|
12
|
+
import '../../chunk-KYFNEU4K.js';
|
|
12
13
|
import '../../chunk-I3RSTJP6.js';
|
|
13
14
|
import '../../chunk-UW6GOD7J.js';
|
|
14
15
|
import '../../chunk-UGSNASZM.js';
|
|
@@ -16,8 +17,8 @@ import '../../chunk-XV3AQ6NS.js';
|
|
|
16
17
|
import '../../chunk-XJIUGEPN.js';
|
|
17
18
|
import '../../chunk-H5O5L6XT.js';
|
|
18
19
|
import '../../chunk-DFD2WUOU.js';
|
|
19
|
-
import '../../chunk-NGVFYKAT.js';
|
|
20
20
|
import '../../chunk-5MJPZUTO.js';
|
|
21
|
-
import '../../chunk-
|
|
21
|
+
import '../../chunk-NGVFYKAT.js';
|
|
22
|
+
import '../../chunk-6VC76QIP.js';
|
|
22
23
|
import '../../chunk-ZD2QRAOX.js';
|
|
23
24
|
import '../../chunk-BYXBJQAS.js';
|
|
@@ -1,16 +1,17 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var chunkYHDEDCPE_cjs = require('../../chunk-YHDEDCPE.cjs');
|
|
4
|
+
require('../../chunk-NU5UQPBX.cjs');
|
|
4
5
|
require('../../chunk-GR37JJQK.cjs');
|
|
6
|
+
require('../../chunk-TH44JYXB.cjs');
|
|
5
7
|
require('../../chunk-XENOUBSI.cjs');
|
|
6
8
|
require('../../chunk-Y6EVJSAH.cjs');
|
|
7
9
|
require('../../chunk-GHV2TURY.cjs');
|
|
8
10
|
require('../../chunk-3WSQRFUY.cjs');
|
|
9
|
-
require('../../chunk-NU5UQPBX.cjs');
|
|
10
11
|
require('../../chunk-2Y2ZCPNV.cjs');
|
|
11
12
|
require('../../chunk-HCHVDUI6.cjs');
|
|
12
13
|
require('../../chunk-PH4LO5TE.cjs');
|
|
13
|
-
require('../../chunk-
|
|
14
|
+
require('../../chunk-YTVV2IUF.cjs');
|
|
14
15
|
require('../../chunk-S3ANEJJ7.cjs');
|
|
15
16
|
require('../../chunk-YWG7TML6.cjs');
|
|
16
17
|
require('../../chunk-5AA4IE2T.cjs');
|
|
@@ -18,9 +19,9 @@ require('../../chunk-3DUJHGXE.cjs');
|
|
|
18
19
|
require('../../chunk-UIOBJSKZ.cjs');
|
|
19
20
|
require('../../chunk-EW6TE3N5.cjs');
|
|
20
21
|
require('../../chunk-7EYMOUWG.cjs');
|
|
21
|
-
require('../../chunk-I7AV5IQO.cjs');
|
|
22
22
|
require('../../chunk-TMXVL5CV.cjs');
|
|
23
|
-
require('../../chunk-
|
|
23
|
+
require('../../chunk-I7AV5IQO.cjs');
|
|
24
|
+
require('../../chunk-RDYKJP7U.cjs');
|
|
24
25
|
require('../../chunk-H2BWO3SI.cjs');
|
|
25
26
|
require('../../chunk-3376ZTRC.cjs');
|
|
26
27
|
|
|
@@ -28,9 +29,9 @@ require('../../chunk-3376ZTRC.cjs');
|
|
|
28
29
|
|
|
29
30
|
Object.defineProperty(exports, "Toaster", {
|
|
30
31
|
enumerable: true,
|
|
31
|
-
get: function () { return
|
|
32
|
+
get: function () { return chunkYHDEDCPE_cjs.Toaster; }
|
|
32
33
|
});
|
|
33
34
|
Object.defineProperty(exports, "toast", {
|
|
34
35
|
enumerable: true,
|
|
35
|
-
get: function () { return
|
|
36
|
+
get: function () { return chunkYHDEDCPE_cjs.toast; }
|
|
36
37
|
});
|
|
@@ -1,14 +1,15 @@
|
|
|
1
|
-
export { Toaster, toast } from '../../chunk-
|
|
1
|
+
export { Toaster, toast } from '../../chunk-LLQ52RQE.js';
|
|
2
|
+
import '../../chunk-OQCNPNPS.js';
|
|
2
3
|
import '../../chunk-HJJPEVIH.js';
|
|
4
|
+
import '../../chunk-PBEZZMAB.js';
|
|
3
5
|
import '../../chunk-4TRADSTP.js';
|
|
4
6
|
import '../../chunk-U4AWAABZ.js';
|
|
5
7
|
import '../../chunk-DTSFPOLX.js';
|
|
6
8
|
import '../../chunk-P5IUC7HJ.js';
|
|
7
|
-
import '../../chunk-OQCNPNPS.js';
|
|
8
9
|
import '../../chunk-6BSR3O2J.js';
|
|
9
10
|
import '../../chunk-5F2Y65JH.js';
|
|
10
11
|
import '../../chunk-AGVEKVWD.js';
|
|
11
|
-
import '../../chunk-
|
|
12
|
+
import '../../chunk-KYFNEU4K.js';
|
|
12
13
|
import '../../chunk-I3RSTJP6.js';
|
|
13
14
|
import '../../chunk-UW6GOD7J.js';
|
|
14
15
|
import '../../chunk-UGSNASZM.js';
|
|
@@ -16,8 +17,8 @@ import '../../chunk-XV3AQ6NS.js';
|
|
|
16
17
|
import '../../chunk-XJIUGEPN.js';
|
|
17
18
|
import '../../chunk-H5O5L6XT.js';
|
|
18
19
|
import '../../chunk-DFD2WUOU.js';
|
|
19
|
-
import '../../chunk-NGVFYKAT.js';
|
|
20
20
|
import '../../chunk-5MJPZUTO.js';
|
|
21
|
-
import '../../chunk-
|
|
21
|
+
import '../../chunk-NGVFYKAT.js';
|
|
22
|
+
import '../../chunk-6VC76QIP.js';
|
|
22
23
|
import '../../chunk-ZD2QRAOX.js';
|
|
23
24
|
import '../../chunk-BYXBJQAS.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@szum-tech/design-system",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.5.0",
|
|
4
4
|
"description": "Szum-Tech design system with tailwindcss support",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"szum-tech",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"require": "./dist/components/index.cjs"
|
|
39
39
|
}
|
|
40
40
|
},
|
|
41
|
-
"./
|
|
41
|
+
"./components/*": {
|
|
42
42
|
"import": {
|
|
43
43
|
"types": "./dist/components/*/index.d.ts",
|
|
44
44
|
"import": "./dist/components/*/index.js"
|
|
@@ -119,29 +119,22 @@
|
|
|
119
119
|
"test:watch": "vitest --watch",
|
|
120
120
|
"type-check": "tsc --noEmit"
|
|
121
121
|
},
|
|
122
|
-
"overrides": {
|
|
123
|
-
"@storybook-community/storybook-dark-mode": {
|
|
124
|
-
"storybook": "^10.0.6",
|
|
125
|
-
"@storybook/addon-docs": "^10.0.6"
|
|
126
|
-
}
|
|
127
|
-
},
|
|
128
122
|
"dependencies": {
|
|
129
123
|
"class-variance-authority": "^0.7.1",
|
|
130
124
|
"clsx": "^2.1.1",
|
|
131
|
-
"lucide-react": "^0.
|
|
132
|
-
"radix-ui": "^1.4.
|
|
125
|
+
"lucide-react": "^0.554.0",
|
|
126
|
+
"radix-ui": "^1.4.3",
|
|
133
127
|
"sonner": "^2.0.7",
|
|
134
128
|
"tailwind-merge": "^3.3.1",
|
|
135
129
|
"tailwindcss-animate": "^1.0.7"
|
|
136
130
|
},
|
|
137
131
|
"devDependencies": {
|
|
138
|
-
"@
|
|
139
|
-
"@storybook
|
|
140
|
-
"@storybook/addon-
|
|
141
|
-
"@storybook/addon-
|
|
142
|
-
"@storybook/
|
|
143
|
-
"@storybook/
|
|
144
|
-
"@storybook/react-vite": "^10.0.6",
|
|
132
|
+
"@storybook-community/storybook-dark-mode": "^7.0.3",
|
|
133
|
+
"@storybook/addon-docs": "^10.0.8",
|
|
134
|
+
"@storybook/addon-links": "^10.0.8",
|
|
135
|
+
"@storybook/addon-vitest": "^10.0.8",
|
|
136
|
+
"@storybook/builder-vite": "^10.0.8",
|
|
137
|
+
"@storybook/react-vite": "^10.0.8",
|
|
145
138
|
"@szum-tech/eslint-config": "^2.1.7",
|
|
146
139
|
"@szum-tech/prettier-config": "^1.6.2",
|
|
147
140
|
"@szum-tech/semantic-release-config": "^2.3.1",
|
|
@@ -150,18 +143,18 @@
|
|
|
150
143
|
"@testing-library/jest-dom": "^6.6.4",
|
|
151
144
|
"@testing-library/react": "^16.3.0",
|
|
152
145
|
"@testing-library/user-event": "^14.6.1",
|
|
153
|
-
"@types/node": "^24.1
|
|
154
|
-
"@types/react": "^19.
|
|
155
|
-
"@types/react-dom": "^19.
|
|
156
|
-
"@vitejs/plugin-react": "^5.
|
|
157
|
-
"@vitest/browser": "^4.0.
|
|
158
|
-
"@vitest/browser-playwright": "^4.0.
|
|
159
|
-
"@vitest/coverage-v8": "^4.0.
|
|
160
|
-
"@vitest/ui": "^4.0.
|
|
146
|
+
"@types/node": "^24.10.1",
|
|
147
|
+
"@types/react": "^19.2.7",
|
|
148
|
+
"@types/react-dom": "^19.2.3",
|
|
149
|
+
"@vitejs/plugin-react": "^5.1.1",
|
|
150
|
+
"@vitest/browser": "^4.0.13",
|
|
151
|
+
"@vitest/browser-playwright": "^4.0.13",
|
|
152
|
+
"@vitest/coverage-v8": "^4.0.13",
|
|
153
|
+
"@vitest/ui": "^4.0.13",
|
|
161
154
|
"cpy-cli": "^6.0.0",
|
|
162
|
-
"eslint": "^9.
|
|
155
|
+
"eslint": "^9.39.1",
|
|
163
156
|
"happy-dom": "^20.0.2",
|
|
164
|
-
"playwright": "^1.
|
|
157
|
+
"playwright": "^1.56.1",
|
|
165
158
|
"prettier": "^3.6.2",
|
|
166
159
|
"react": "^19.1.1",
|
|
167
160
|
"react-docgen": "^8.0.0",
|
|
@@ -169,19 +162,18 @@
|
|
|
169
162
|
"react-dom": "^19.1.0",
|
|
170
163
|
"semantic-release": "^24.2.9",
|
|
171
164
|
"serve": "^14.2.4",
|
|
172
|
-
"storybook": "^10.0.
|
|
165
|
+
"storybook": "^10.0.8",
|
|
173
166
|
"storybook-addon-tag-badges": "^3.0.2",
|
|
174
167
|
"tailwindcss": "^4.1.11",
|
|
175
|
-
"tsup": "^8.5.
|
|
176
|
-
"typescript": "^5.
|
|
177
|
-
"vite": "^7.
|
|
168
|
+
"tsup": "^8.5.1",
|
|
169
|
+
"typescript": "^5.9.3",
|
|
170
|
+
"vite": "^7.2.4",
|
|
178
171
|
"vite-tsconfig-paths": "^5.1.4",
|
|
179
|
-
"vitest": "^4.0.
|
|
180
|
-
"zod": "^4.0.14"
|
|
172
|
+
"vitest": "^4.0.13"
|
|
181
173
|
},
|
|
182
174
|
"peerDependencies": {
|
|
183
|
-
"react": ">=19.
|
|
184
|
-
"react-dom": ">=19.
|
|
175
|
+
"react": ">=19.1.0",
|
|
176
|
+
"react-dom": ">=19.1.0",
|
|
185
177
|
"tailwindcss": ">=4"
|
|
186
178
|
},
|
|
187
179
|
"engines": {
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|