@itamarshdev/reactwind 0.1.1 → 1.1.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/README.md +47 -3
- package/dist/chunk-FHQBPEXA.js +232 -0
- package/dist/chunk-KAWYX6WW.js +341 -0
- package/dist/chunk-M5PDERS6.js +245 -0
- package/dist/index.cjs +183 -3
- package/dist/index.js +1 -1
- package/dist/jsx-dev-runtime.cjs +183 -3
- package/dist/jsx-dev-runtime.d.cts +1 -1
- package/dist/jsx-dev-runtime.d.ts +1 -1
- package/dist/jsx-dev-runtime.js +1 -1
- package/dist/jsx-runtime.cjs +183 -3
- package/dist/jsx-runtime.d.cts +1 -1
- package/dist/jsx-runtime.d.ts +1 -1
- package/dist/jsx-runtime.js +1 -1
- package/dist/types-Bb5v_nmy.d.cts +245 -0
- package/dist/types-Bdh-X84v.d.ts +125 -0
- package/dist/types-CBbQP9uE.d.ts +245 -0
- package/dist/types-CIbmaQ6w.d.ts +125 -0
- package/dist/types-DmvPRSBP.d.cts +125 -0
- package/dist/types-WLlcB_RW.d.cts +125 -0
- package/package.json +22 -243
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
import { T as TailwindColor, a as TailwindSpacing, b as TailwindRadius, c as TailwindShadow, d as TailwindClass } from './tailwind.types-BSQudz76.js';
|
|
2
|
+
|
|
3
|
+
interface ValueProps {
|
|
4
|
+
bg?: TailwindColor | string;
|
|
5
|
+
text?: TailwindColor | string;
|
|
6
|
+
border?: TailwindColor | string;
|
|
7
|
+
fill?: TailwindColor | string;
|
|
8
|
+
stroke?: TailwindColor | string;
|
|
9
|
+
font?: string;
|
|
10
|
+
p?: TailwindSpacing | string;
|
|
11
|
+
m?: TailwindSpacing | string;
|
|
12
|
+
px?: TailwindSpacing | string;
|
|
13
|
+
py?: TailwindSpacing | string;
|
|
14
|
+
mx?: TailwindSpacing | string;
|
|
15
|
+
my?: TailwindSpacing | string;
|
|
16
|
+
gap?: TailwindSpacing | string;
|
|
17
|
+
w?: TailwindSpacing | string;
|
|
18
|
+
h?: TailwindSpacing | string;
|
|
19
|
+
rounded?: TailwindRadius | string | boolean;
|
|
20
|
+
shadow?: TailwindShadow | boolean | string;
|
|
21
|
+
z?: TailwindSpacing | string;
|
|
22
|
+
mb?: TailwindSpacing | string;
|
|
23
|
+
mt?: TailwindSpacing | string;
|
|
24
|
+
ml?: TailwindSpacing | string;
|
|
25
|
+
mr?: TailwindSpacing | string;
|
|
26
|
+
pb?: TailwindSpacing | string;
|
|
27
|
+
pt?: TailwindSpacing | string;
|
|
28
|
+
pl?: TailwindSpacing | string;
|
|
29
|
+
pr?: TailwindSpacing | string;
|
|
30
|
+
"min-w"?: TailwindSpacing | string;
|
|
31
|
+
"max-w"?: TailwindSpacing | string;
|
|
32
|
+
"min-h"?: TailwindSpacing | string;
|
|
33
|
+
"max-h"?: TailwindSpacing | string;
|
|
34
|
+
overflow?: string;
|
|
35
|
+
tracking?: string;
|
|
36
|
+
leading?: string;
|
|
37
|
+
decoration?: string;
|
|
38
|
+
align?: string;
|
|
39
|
+
whitespace?: string;
|
|
40
|
+
break?: string;
|
|
41
|
+
content?: string;
|
|
42
|
+
opacity?: string;
|
|
43
|
+
"bg-opacity"?: string;
|
|
44
|
+
ring?: string;
|
|
45
|
+
"ring-offset"?: string;
|
|
46
|
+
outline?: string;
|
|
47
|
+
divide?: string;
|
|
48
|
+
"mix-blend"?: string;
|
|
49
|
+
"backdrop-blur"?: string;
|
|
50
|
+
blur?: string;
|
|
51
|
+
brightness?: string;
|
|
52
|
+
contrast?: string;
|
|
53
|
+
grayscale?: string;
|
|
54
|
+
"hue-rotate"?: string;
|
|
55
|
+
invert?: string;
|
|
56
|
+
saturate?: string;
|
|
57
|
+
sepia?: string;
|
|
58
|
+
"drop-shadow"?: string;
|
|
59
|
+
transition?: string;
|
|
60
|
+
duration?: string;
|
|
61
|
+
ease?: string;
|
|
62
|
+
delay?: string;
|
|
63
|
+
animate?: string;
|
|
64
|
+
cursor?: string;
|
|
65
|
+
"pointer-events"?: string;
|
|
66
|
+
resize?: string;
|
|
67
|
+
select?: string;
|
|
68
|
+
scale?: string;
|
|
69
|
+
rotate?: string;
|
|
70
|
+
translate?: string;
|
|
71
|
+
skew?: string;
|
|
72
|
+
origin?: string;
|
|
73
|
+
}
|
|
74
|
+
interface LayoutProps {
|
|
75
|
+
flex?: boolean;
|
|
76
|
+
grid?: boolean;
|
|
77
|
+
hidden?: boolean;
|
|
78
|
+
block?: boolean;
|
|
79
|
+
inline?: boolean;
|
|
80
|
+
"inline-block"?: boolean;
|
|
81
|
+
"inline-flex"?: boolean;
|
|
82
|
+
"inline-grid"?: boolean;
|
|
83
|
+
relative?: boolean;
|
|
84
|
+
absolute?: boolean;
|
|
85
|
+
fixed?: boolean;
|
|
86
|
+
sticky?: boolean;
|
|
87
|
+
static?: boolean;
|
|
88
|
+
"flex-row"?: boolean;
|
|
89
|
+
"flex-col"?: boolean;
|
|
90
|
+
"flex-wrap"?: boolean;
|
|
91
|
+
"flex-nowrap"?: boolean;
|
|
92
|
+
"items-center"?: boolean;
|
|
93
|
+
"items-start"?: boolean;
|
|
94
|
+
"items-end"?: boolean;
|
|
95
|
+
"justify-center"?: boolean;
|
|
96
|
+
"justify-between"?: boolean;
|
|
97
|
+
"justify-start"?: boolean;
|
|
98
|
+
"justify-end"?: boolean;
|
|
99
|
+
grow?: boolean;
|
|
100
|
+
shrink?: boolean;
|
|
101
|
+
italic?: boolean;
|
|
102
|
+
"not-italic"?: boolean;
|
|
103
|
+
underline?: boolean;
|
|
104
|
+
uppercase?: boolean;
|
|
105
|
+
lowercase?: boolean;
|
|
106
|
+
capitalize?: boolean;
|
|
107
|
+
truncate?: boolean;
|
|
108
|
+
visible?: boolean;
|
|
109
|
+
invisible?: boolean;
|
|
110
|
+
collapse?: boolean;
|
|
111
|
+
"pointer-events-none"?: boolean;
|
|
112
|
+
"pointer-events-auto"?: boolean;
|
|
113
|
+
"sr-only"?: boolean;
|
|
114
|
+
"not-sr-only"?: boolean;
|
|
115
|
+
}
|
|
116
|
+
declare module "react" {
|
|
117
|
+
interface HTMLAttributes<T> extends LayoutProps, ValueProps {
|
|
118
|
+
classNames?: (TailwindClass | string)[];
|
|
119
|
+
[key: string]: any;
|
|
120
|
+
}
|
|
121
|
+
interface SVGAttributes<T> extends LayoutProps, ValueProps {
|
|
122
|
+
classNames?: (TailwindClass | string)[];
|
|
123
|
+
[key: string]: any;
|
|
124
|
+
}
|
|
125
|
+
}
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
import { T as TailwindColor, a as TailwindSpacing, b as TailwindRadius, c as TailwindShadow, d as TailwindClass } from './tailwind.types-BSQudz76.cjs';
|
|
2
|
+
|
|
3
|
+
interface ValueProps {
|
|
4
|
+
bg?: TailwindColor | string;
|
|
5
|
+
text?: TailwindColor | string;
|
|
6
|
+
border?: TailwindColor | string;
|
|
7
|
+
fill?: TailwindColor | string;
|
|
8
|
+
stroke?: TailwindColor | string;
|
|
9
|
+
font?: string;
|
|
10
|
+
p?: TailwindSpacing | string;
|
|
11
|
+
m?: TailwindSpacing | string;
|
|
12
|
+
px?: TailwindSpacing | string;
|
|
13
|
+
py?: TailwindSpacing | string;
|
|
14
|
+
mx?: TailwindSpacing | string;
|
|
15
|
+
my?: TailwindSpacing | string;
|
|
16
|
+
gap?: TailwindSpacing | string;
|
|
17
|
+
w?: TailwindSpacing | string;
|
|
18
|
+
h?: TailwindSpacing | string;
|
|
19
|
+
rounded?: TailwindRadius | string | boolean;
|
|
20
|
+
shadow?: TailwindShadow | boolean | string;
|
|
21
|
+
z?: TailwindSpacing | string;
|
|
22
|
+
mb?: TailwindSpacing | string;
|
|
23
|
+
mt?: TailwindSpacing | string;
|
|
24
|
+
ml?: TailwindSpacing | string;
|
|
25
|
+
mr?: TailwindSpacing | string;
|
|
26
|
+
pb?: TailwindSpacing | string;
|
|
27
|
+
pt?: TailwindSpacing | string;
|
|
28
|
+
pl?: TailwindSpacing | string;
|
|
29
|
+
pr?: TailwindSpacing | string;
|
|
30
|
+
"min-w"?: TailwindSpacing | string;
|
|
31
|
+
"max-w"?: TailwindSpacing | string;
|
|
32
|
+
"min-h"?: TailwindSpacing | string;
|
|
33
|
+
"max-h"?: TailwindSpacing | string;
|
|
34
|
+
overflow?: string;
|
|
35
|
+
tracking?: string;
|
|
36
|
+
leading?: string;
|
|
37
|
+
decoration?: string;
|
|
38
|
+
align?: string;
|
|
39
|
+
whitespace?: string;
|
|
40
|
+
break?: string;
|
|
41
|
+
content?: string;
|
|
42
|
+
opacity?: string;
|
|
43
|
+
"bg-opacity"?: string;
|
|
44
|
+
ring?: string;
|
|
45
|
+
"ring-offset"?: string;
|
|
46
|
+
outline?: string;
|
|
47
|
+
divide?: string;
|
|
48
|
+
"mix-blend"?: string;
|
|
49
|
+
"backdrop-blur"?: string;
|
|
50
|
+
blur?: string;
|
|
51
|
+
brightness?: string;
|
|
52
|
+
contrast?: string;
|
|
53
|
+
grayscale?: string;
|
|
54
|
+
"hue-rotate"?: string;
|
|
55
|
+
invert?: string;
|
|
56
|
+
saturate?: string;
|
|
57
|
+
sepia?: string;
|
|
58
|
+
"drop-shadow"?: string;
|
|
59
|
+
transition?: string;
|
|
60
|
+
duration?: string;
|
|
61
|
+
ease?: string;
|
|
62
|
+
delay?: string;
|
|
63
|
+
animate?: string;
|
|
64
|
+
cursor?: string;
|
|
65
|
+
"pointer-events"?: string;
|
|
66
|
+
resize?: string;
|
|
67
|
+
select?: string;
|
|
68
|
+
scale?: string;
|
|
69
|
+
rotate?: string;
|
|
70
|
+
translate?: string;
|
|
71
|
+
skew?: string;
|
|
72
|
+
origin?: string;
|
|
73
|
+
}
|
|
74
|
+
interface LayoutProps {
|
|
75
|
+
flex?: boolean;
|
|
76
|
+
grid?: boolean;
|
|
77
|
+
hidden?: boolean;
|
|
78
|
+
block?: boolean;
|
|
79
|
+
inline?: boolean;
|
|
80
|
+
"inline-block"?: boolean;
|
|
81
|
+
"inline-flex"?: boolean;
|
|
82
|
+
"inline-grid"?: boolean;
|
|
83
|
+
relative?: boolean;
|
|
84
|
+
absolute?: boolean;
|
|
85
|
+
fixed?: boolean;
|
|
86
|
+
sticky?: boolean;
|
|
87
|
+
static?: boolean;
|
|
88
|
+
"flex-row"?: boolean;
|
|
89
|
+
"flex-col"?: boolean;
|
|
90
|
+
"flex-wrap"?: boolean;
|
|
91
|
+
"flex-nowrap"?: boolean;
|
|
92
|
+
"items-center"?: boolean;
|
|
93
|
+
"items-start"?: boolean;
|
|
94
|
+
"items-end"?: boolean;
|
|
95
|
+
"justify-center"?: boolean;
|
|
96
|
+
"justify-between"?: boolean;
|
|
97
|
+
"justify-start"?: boolean;
|
|
98
|
+
"justify-end"?: boolean;
|
|
99
|
+
grow?: boolean;
|
|
100
|
+
shrink?: boolean;
|
|
101
|
+
italic?: boolean;
|
|
102
|
+
"not-italic"?: boolean;
|
|
103
|
+
underline?: boolean;
|
|
104
|
+
uppercase?: boolean;
|
|
105
|
+
lowercase?: boolean;
|
|
106
|
+
capitalize?: boolean;
|
|
107
|
+
truncate?: boolean;
|
|
108
|
+
visible?: boolean;
|
|
109
|
+
invisible?: boolean;
|
|
110
|
+
collapse?: boolean;
|
|
111
|
+
"pointer-events-none"?: boolean;
|
|
112
|
+
"pointer-events-auto"?: boolean;
|
|
113
|
+
"sr-only"?: boolean;
|
|
114
|
+
"not-sr-only"?: boolean;
|
|
115
|
+
}
|
|
116
|
+
declare module "react" {
|
|
117
|
+
interface HTMLAttributes<T> extends LayoutProps, ValueProps {
|
|
118
|
+
classNames?: (TailwindClass | string)[];
|
|
119
|
+
[key: string]: any;
|
|
120
|
+
}
|
|
121
|
+
interface SVGAttributes<T> extends LayoutProps, ValueProps {
|
|
122
|
+
classNames?: (TailwindClass | string)[];
|
|
123
|
+
[key: string]: any;
|
|
124
|
+
}
|
|
125
|
+
}
|
|
@@ -0,0 +1,125 @@
|
|
|
1
|
+
import { T as TailwindColor, a as TailwindSpacing, b as TailwindRadius, c as TailwindShadow, d as TailwindClass } from './tailwind.types-BSQudz76.cjs';
|
|
2
|
+
|
|
3
|
+
interface ValueProps {
|
|
4
|
+
bg?: TailwindColor | string;
|
|
5
|
+
text?: TailwindColor | string;
|
|
6
|
+
border?: TailwindColor | string | boolean;
|
|
7
|
+
fill?: TailwindColor | string;
|
|
8
|
+
stroke?: TailwindColor | string;
|
|
9
|
+
font?: string;
|
|
10
|
+
p?: TailwindSpacing | string | number;
|
|
11
|
+
m?: TailwindSpacing | string | number;
|
|
12
|
+
px?: TailwindSpacing | string | number;
|
|
13
|
+
py?: TailwindSpacing | string | number;
|
|
14
|
+
mx?: TailwindSpacing | string | number;
|
|
15
|
+
my?: TailwindSpacing | string | number;
|
|
16
|
+
gap?: TailwindSpacing | string | number;
|
|
17
|
+
w?: TailwindSpacing | string | number;
|
|
18
|
+
h?: TailwindSpacing | string | number;
|
|
19
|
+
rounded?: TailwindRadius | string | boolean;
|
|
20
|
+
shadow?: TailwindShadow | boolean | string;
|
|
21
|
+
z?: TailwindSpacing | string | number;
|
|
22
|
+
mb?: TailwindSpacing | string | number;
|
|
23
|
+
mt?: TailwindSpacing | string | number;
|
|
24
|
+
ml?: TailwindSpacing | string | number;
|
|
25
|
+
mr?: TailwindSpacing | string | number;
|
|
26
|
+
pb?: TailwindSpacing | string | number;
|
|
27
|
+
pt?: TailwindSpacing | string | number;
|
|
28
|
+
pl?: TailwindSpacing | string | number;
|
|
29
|
+
pr?: TailwindSpacing | string | number;
|
|
30
|
+
"min-w"?: TailwindSpacing | string | number;
|
|
31
|
+
"max-w"?: TailwindSpacing | string | number;
|
|
32
|
+
"min-h"?: TailwindSpacing | string | number;
|
|
33
|
+
"max-h"?: TailwindSpacing | string | number;
|
|
34
|
+
overflow?: string;
|
|
35
|
+
tracking?: string;
|
|
36
|
+
leading?: string;
|
|
37
|
+
decoration?: string;
|
|
38
|
+
align?: string;
|
|
39
|
+
whitespace?: string;
|
|
40
|
+
break?: string;
|
|
41
|
+
content?: string;
|
|
42
|
+
opacity?: string;
|
|
43
|
+
"bg-opacity"?: string;
|
|
44
|
+
ring?: string;
|
|
45
|
+
"ring-offset"?: string;
|
|
46
|
+
outline?: string;
|
|
47
|
+
divide?: string;
|
|
48
|
+
"mix-blend"?: string;
|
|
49
|
+
"backdrop-blur"?: string;
|
|
50
|
+
blur?: string;
|
|
51
|
+
brightness?: string;
|
|
52
|
+
contrast?: string;
|
|
53
|
+
grayscale?: string;
|
|
54
|
+
"hue-rotate"?: string;
|
|
55
|
+
invert?: string;
|
|
56
|
+
saturate?: string;
|
|
57
|
+
sepia?: string;
|
|
58
|
+
"drop-shadow"?: string;
|
|
59
|
+
transition?: string | boolean;
|
|
60
|
+
duration?: string;
|
|
61
|
+
ease?: string;
|
|
62
|
+
delay?: string;
|
|
63
|
+
animate?: string;
|
|
64
|
+
cursor?: string;
|
|
65
|
+
"pointer-events"?: string;
|
|
66
|
+
resize?: string;
|
|
67
|
+
select?: string;
|
|
68
|
+
scale?: string;
|
|
69
|
+
rotate?: string;
|
|
70
|
+
translate?: string;
|
|
71
|
+
skew?: string;
|
|
72
|
+
origin?: string;
|
|
73
|
+
}
|
|
74
|
+
interface LayoutProps {
|
|
75
|
+
flex?: boolean;
|
|
76
|
+
grid?: boolean;
|
|
77
|
+
hidden?: boolean;
|
|
78
|
+
block?: boolean;
|
|
79
|
+
inline?: boolean;
|
|
80
|
+
"inline-block"?: boolean;
|
|
81
|
+
"inline-flex"?: boolean;
|
|
82
|
+
"inline-grid"?: boolean;
|
|
83
|
+
relative?: boolean;
|
|
84
|
+
absolute?: boolean;
|
|
85
|
+
fixed?: boolean;
|
|
86
|
+
sticky?: boolean;
|
|
87
|
+
static?: boolean;
|
|
88
|
+
"flex-row"?: boolean;
|
|
89
|
+
"flex-col"?: boolean;
|
|
90
|
+
"flex-wrap"?: boolean;
|
|
91
|
+
"flex-nowrap"?: boolean;
|
|
92
|
+
"items-center"?: boolean;
|
|
93
|
+
"items-start"?: boolean;
|
|
94
|
+
"items-end"?: boolean;
|
|
95
|
+
"justify-center"?: boolean;
|
|
96
|
+
"justify-between"?: boolean;
|
|
97
|
+
"justify-start"?: boolean;
|
|
98
|
+
"justify-end"?: boolean;
|
|
99
|
+
grow?: boolean;
|
|
100
|
+
shrink?: boolean;
|
|
101
|
+
italic?: boolean;
|
|
102
|
+
"not-italic"?: boolean;
|
|
103
|
+
underline?: boolean;
|
|
104
|
+
uppercase?: boolean;
|
|
105
|
+
lowercase?: boolean;
|
|
106
|
+
capitalize?: boolean;
|
|
107
|
+
truncate?: boolean;
|
|
108
|
+
visible?: boolean;
|
|
109
|
+
invisible?: boolean;
|
|
110
|
+
collapse?: boolean;
|
|
111
|
+
"pointer-events-none"?: boolean;
|
|
112
|
+
"pointer-events-auto"?: boolean;
|
|
113
|
+
"sr-only"?: boolean;
|
|
114
|
+
"not-sr-only"?: boolean;
|
|
115
|
+
}
|
|
116
|
+
declare module "react" {
|
|
117
|
+
interface HTMLAttributes<T> extends LayoutProps, ValueProps {
|
|
118
|
+
classNames?: (TailwindClass | string)[];
|
|
119
|
+
[key: string]: any;
|
|
120
|
+
}
|
|
121
|
+
interface SVGAttributes<T> extends LayoutProps, ValueProps {
|
|
122
|
+
classNames?: (TailwindClass | string)[];
|
|
123
|
+
[key: string]: any;
|
|
124
|
+
}
|
|
125
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@itamarshdev/reactwind",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"description": "JSX runtime wrapper that adds a classNames prop to React elements.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"react",
|
|
@@ -12,16 +12,16 @@
|
|
|
12
12
|
"css-in-js",
|
|
13
13
|
"shorthand"
|
|
14
14
|
],
|
|
15
|
-
"homepage": "https://
|
|
15
|
+
"homepage": "https://ItamarShDev.github.io/reactwind/storybook/",
|
|
16
16
|
"bugs": {
|
|
17
|
-
"url": "https://github.com/
|
|
17
|
+
"url": "https://github.com/ItamarShDev/reactwind/issues"
|
|
18
18
|
},
|
|
19
19
|
"repository": {
|
|
20
20
|
"type": "git",
|
|
21
|
-
"url": "
|
|
21
|
+
"url": "https://github.com/ItamarShDev/reactwind.git"
|
|
22
22
|
},
|
|
23
23
|
"license": "MIT",
|
|
24
|
-
"author": "
|
|
24
|
+
"author": "ItamarShDev",
|
|
25
25
|
"type": "module",
|
|
26
26
|
"exports": {
|
|
27
27
|
".": {
|
|
@@ -62,241 +62,18 @@
|
|
|
62
62
|
"storybook": "storybook dev -p 6006",
|
|
63
63
|
"build-storybook": "storybook build"
|
|
64
64
|
},
|
|
65
|
-
"
|
|
66
|
-
"
|
|
67
|
-
"
|
|
68
|
-
"ansi-styles": "^4.3.0",
|
|
69
|
-
"any-promise": "^1.3.0",
|
|
70
|
-
"argparse": "^2.0.1",
|
|
71
|
-
"aria-query": "^5.3.0",
|
|
72
|
-
"assertion-error": "^2.0.1",
|
|
73
|
-
"ast-types": "^0.16.1",
|
|
74
|
-
"available-typed-arrays": "^1.0.7",
|
|
75
|
-
"balanced-match": "^1.0.2",
|
|
76
|
-
"baseline-browser-mapping": "^2.9.19",
|
|
77
|
-
"better-opn": "^3.0.2",
|
|
78
|
-
"brace-expansion": "^2.0.2",
|
|
79
|
-
"browser-assert": "^1.2.1",
|
|
80
|
-
"browserslist": "^4.28.1",
|
|
81
|
-
"bundle-name": "^4.1.0",
|
|
82
|
-
"bundle-require": "^5.1.0",
|
|
83
|
-
"cac": "^6.7.14",
|
|
84
|
-
"call-bind": "^1.0.8",
|
|
85
|
-
"call-bind-apply-helpers": "^1.0.2",
|
|
86
|
-
"call-bound": "^1.0.4",
|
|
87
|
-
"caniuse-lite": "^1.0.30001766",
|
|
88
|
-
"chai": "^5.3.3",
|
|
89
|
-
"chalk": "^4.1.2",
|
|
90
|
-
"check-error": "^2.1.3",
|
|
91
|
-
"chokidar": "^4.0.3",
|
|
92
|
-
"color-convert": "^2.0.1",
|
|
93
|
-
"color-name": "^1.1.4",
|
|
94
|
-
"commander": "^4.1.1",
|
|
95
|
-
"confbox": "^0.1.8",
|
|
96
|
-
"consola": "^3.4.2",
|
|
97
|
-
"convert-source-map": "^2.0.0",
|
|
98
|
-
"cross-spawn": "^7.0.6",
|
|
99
|
-
"css.escape": "^1.5.1",
|
|
100
|
-
"csstype": "^3.2.3",
|
|
101
|
-
"debug": "^4.4.3",
|
|
102
|
-
"deep-eql": "^5.0.2",
|
|
103
|
-
"default-browser": "^5.4.0",
|
|
104
|
-
"default-browser-id": "^5.0.1",
|
|
105
|
-
"define-data-property": "^1.1.4",
|
|
106
|
-
"define-lazy-prop": "^3.0.0",
|
|
107
|
-
"dequal": "^2.0.3",
|
|
108
|
-
"detect-libc": "^2.1.2",
|
|
109
|
-
"doctrine": "^3.0.0",
|
|
110
|
-
"dom-accessibility-api": "^0.6.3",
|
|
111
|
-
"dunder-proto": "^1.0.1",
|
|
112
|
-
"eastasianwidth": "^0.2.0",
|
|
113
|
-
"electron-to-chromium": "^1.5.282",
|
|
114
|
-
"emoji-regex": "^9.2.2",
|
|
115
|
-
"empathic": "^2.0.0",
|
|
116
|
-
"enhanced-resolve": "^5.18.4",
|
|
117
|
-
"entities": "^4.5.0",
|
|
118
|
-
"es-define-property": "^1.0.1",
|
|
119
|
-
"es-errors": "^1.3.0",
|
|
120
|
-
"es-module-lexer": "^1.7.0",
|
|
121
|
-
"es-object-atoms": "^1.1.1",
|
|
122
|
-
"esbuild": "^0.27.2",
|
|
123
|
-
"esbuild-register": "^3.6.0",
|
|
124
|
-
"escalade": "^3.2.0",
|
|
125
|
-
"esprima": "^4.0.1",
|
|
126
|
-
"estree-walker": "^2.0.2",
|
|
127
|
-
"esutils": "^2.0.3",
|
|
128
|
-
"expect-type": "^1.3.0",
|
|
129
|
-
"fdir": "^6.5.0",
|
|
130
|
-
"find-up": "^7.0.0",
|
|
131
|
-
"fix-dts-default-cjs-exports": "^1.0.1",
|
|
132
|
-
"for-each": "^0.3.5",
|
|
133
|
-
"foreground-child": "^3.3.1",
|
|
134
|
-
"fraction.js": "^5.3.4",
|
|
135
|
-
"fsevents": "^2.3.3",
|
|
136
|
-
"function-bind": "^1.1.2",
|
|
137
|
-
"generator-function": "^2.0.1",
|
|
138
|
-
"gensync": "^1.0.0-beta.2",
|
|
139
|
-
"get-intrinsic": "^1.3.0",
|
|
140
|
-
"get-proto": "^1.0.1",
|
|
141
|
-
"glob": "^11.1.0",
|
|
142
|
-
"gopd": "^1.2.0",
|
|
143
|
-
"graceful-fs": "^4.2.11",
|
|
144
|
-
"has-flag": "^4.0.0",
|
|
145
|
-
"has-property-descriptors": "^1.0.2",
|
|
146
|
-
"has-symbols": "^1.1.0",
|
|
147
|
-
"has-tostringtag": "^1.0.2",
|
|
148
|
-
"hasown": "^2.0.2",
|
|
149
|
-
"indent-string": "^4.0.0",
|
|
150
|
-
"inherits": "^2.0.4",
|
|
151
|
-
"is-arguments": "^1.2.0",
|
|
152
|
-
"is-callable": "^1.2.7",
|
|
153
|
-
"is-core-module": "^2.16.1",
|
|
154
|
-
"is-docker": "^3.0.0",
|
|
155
|
-
"is-fullwidth-code-point": "^3.0.0",
|
|
156
|
-
"is-generator-function": "^1.1.2",
|
|
157
|
-
"is-inside-container": "^1.0.0",
|
|
158
|
-
"is-regex": "^1.2.1",
|
|
159
|
-
"is-typed-array": "^1.1.15",
|
|
160
|
-
"is-wsl": "^3.1.0",
|
|
161
|
-
"isexe": "^2.0.0",
|
|
162
|
-
"jackspeak": "^4.1.1",
|
|
163
|
-
"jiti": "^2.6.1",
|
|
164
|
-
"joycon": "^3.1.1",
|
|
165
|
-
"js-tokens": "^4.0.0",
|
|
166
|
-
"jsdoc-type-pratt-parser": "^4.8.0",
|
|
167
|
-
"jsesc": "^3.1.0",
|
|
168
|
-
"json5": "^2.2.3",
|
|
169
|
-
"lightningcss": "^1.30.2",
|
|
170
|
-
"lightningcss-darwin-x64": "^1.30.2",
|
|
171
|
-
"lilconfig": "^3.1.3",
|
|
172
|
-
"lines-and-columns": "^1.2.4",
|
|
173
|
-
"linkify-it": "^5.0.0",
|
|
174
|
-
"load-tsconfig": "^0.2.5",
|
|
175
|
-
"locate-path": "^7.2.0",
|
|
176
|
-
"lodash": "^4.17.23",
|
|
177
|
-
"loose-envify": "^1.4.0",
|
|
178
|
-
"loupe": "^3.2.1",
|
|
179
|
-
"lru-cache": "^11.2.5",
|
|
180
|
-
"lunr": "^2.3.9",
|
|
181
|
-
"lz-string": "^1.5.0",
|
|
182
|
-
"magic-string": "^0.30.21",
|
|
183
|
-
"map-or-similar": "^1.5.0",
|
|
184
|
-
"markdown-it": "^14.1.0",
|
|
185
|
-
"math-intrinsics": "^1.1.0",
|
|
186
|
-
"mdurl": "^2.0.0",
|
|
187
|
-
"memoizerific": "^1.11.3",
|
|
188
|
-
"min-indent": "^1.0.1",
|
|
189
|
-
"minimatch": "^9.0.5",
|
|
190
|
-
"minimist": "^1.2.8",
|
|
191
|
-
"minipass": "^7.1.2",
|
|
192
|
-
"mlly": "^1.8.0",
|
|
193
|
-
"mrmime": "^2.0.1",
|
|
194
|
-
"ms": "^2.1.3",
|
|
195
|
-
"mz": "^2.7.0",
|
|
196
|
-
"nanoid": "^3.3.11",
|
|
197
|
-
"node-releases": "^2.0.27",
|
|
198
|
-
"object-assign": "^4.1.1",
|
|
199
|
-
"obug": "^2.1.1",
|
|
200
|
-
"open": "^10.2.0",
|
|
201
|
-
"p-limit": "^4.0.0",
|
|
202
|
-
"p-locate": "^6.0.0",
|
|
203
|
-
"package-json-from-dist": "^1.0.1",
|
|
204
|
-
"path-exists": "^5.0.0",
|
|
205
|
-
"path-key": "^3.1.1",
|
|
206
|
-
"path-parse": "^1.0.7",
|
|
207
|
-
"path-scurry": "^2.0.1",
|
|
208
|
-
"pathe": "^2.0.3",
|
|
209
|
-
"pathval": "^2.0.1",
|
|
210
|
-
"picocolors": "^1.1.1",
|
|
211
|
-
"picomatch": "^4.0.3",
|
|
212
|
-
"pirates": "^4.0.7",
|
|
213
|
-
"pixelmatch": "^7.1.0",
|
|
214
|
-
"pkg-types": "^1.3.1",
|
|
215
|
-
"playwright": "^1.58.0",
|
|
216
|
-
"playwright-core": "^1.58.0",
|
|
217
|
-
"pngjs": "^7.0.0",
|
|
218
|
-
"polished": "^4.3.1",
|
|
219
|
-
"possible-typed-array-names": "^1.1.0",
|
|
220
|
-
"postcss": "^8.5.6",
|
|
221
|
-
"postcss-load-config": "^6.0.1",
|
|
222
|
-
"postcss-value-parser": "^4.2.0",
|
|
223
|
-
"prettier": "^3.8.1",
|
|
224
|
-
"pretty-format": "^27.5.1",
|
|
225
|
-
"process": "^0.11.10",
|
|
226
|
-
"punycode.js": "^2.3.1",
|
|
227
|
-
"react-docgen": "^8.0.2",
|
|
228
|
-
"react-docgen-typescript": "^2.4.0",
|
|
229
|
-
"react-is": "^17.0.2",
|
|
230
|
-
"readdirp": "^4.1.2",
|
|
231
|
-
"recast": "^0.23.11",
|
|
232
|
-
"redent": "^3.0.0",
|
|
233
|
-
"resolve": "^1.22.11",
|
|
234
|
-
"resolve-from": "^5.0.0",
|
|
235
|
-
"rollup": "^4.57.0",
|
|
236
|
-
"run-applescript": "^7.1.0",
|
|
237
|
-
"safe-regex-test": "^1.1.0",
|
|
238
|
-
"scheduler": "^0.27.0",
|
|
239
|
-
"semver": "^7.7.3",
|
|
240
|
-
"set-function-length": "^1.2.2",
|
|
241
|
-
"shebang-command": "^2.0.0",
|
|
242
|
-
"shebang-regex": "^3.0.0",
|
|
243
|
-
"siginfo": "^2.0.0",
|
|
244
|
-
"signal-exit": "^4.1.0",
|
|
245
|
-
"sirv": "^3.0.2",
|
|
246
|
-
"source-map": "^0.7.6",
|
|
247
|
-
"source-map-js": "^1.2.1",
|
|
248
|
-
"stackback": "^0.0.2",
|
|
249
|
-
"std-env": "^3.10.0",
|
|
250
|
-
"string-width": "^5.1.2",
|
|
251
|
-
"string-width-cjs": "^4.2.3",
|
|
252
|
-
"strip-ansi": "^7.1.2",
|
|
253
|
-
"strip-ansi-cjs": "^6.0.1",
|
|
254
|
-
"strip-bom": "^3.0.0",
|
|
255
|
-
"strip-indent": "^4.1.1",
|
|
256
|
-
"sucrase": "^3.35.1",
|
|
257
|
-
"supports-color": "^7.2.0",
|
|
258
|
-
"supports-preserve-symlinks-flag": "^1.0.0",
|
|
259
|
-
"tapable": "^2.3.0",
|
|
260
|
-
"thenify": "^3.3.1",
|
|
261
|
-
"thenify-all": "^1.6.0",
|
|
262
|
-
"tiny-invariant": "^1.3.3",
|
|
263
|
-
"tinybench": "^2.9.0",
|
|
264
|
-
"tinyexec": "^0.3.2",
|
|
265
|
-
"tinyglobby": "^0.2.15",
|
|
266
|
-
"tinypool": "^2.0.0",
|
|
267
|
-
"tinyrainbow": "^3.0.3",
|
|
268
|
-
"tinyspy": "^4.0.4",
|
|
269
|
-
"totalist": "^3.0.1",
|
|
270
|
-
"tree-kill": "^1.2.2",
|
|
271
|
-
"ts-dedent": "^2.2.0",
|
|
272
|
-
"ts-interface-checker": "^0.1.13",
|
|
273
|
-
"tsconfig-paths": "^4.2.0",
|
|
274
|
-
"tslib": "^2.8.1",
|
|
275
|
-
"type-fest": "^2.19.0",
|
|
276
|
-
"uc.micro": "^2.1.0",
|
|
277
|
-
"ufo": "^1.6.3",
|
|
278
|
-
"undici-types": "^7.16.0",
|
|
279
|
-
"unicorn-magic": "^0.1.0",
|
|
280
|
-
"unplugin": "^2.3.11",
|
|
281
|
-
"update-browserslist-db": "^1.2.3",
|
|
282
|
-
"use-sync-external-store": "^1.6.0",
|
|
283
|
-
"util": "^0.12.5",
|
|
284
|
-
"uuid": "^9.0.1",
|
|
285
|
-
"vite": "^7.3.1",
|
|
286
|
-
"webpack-virtual-modules": "^0.6.2",
|
|
287
|
-
"whatwg-mimetype": "^3.0.0",
|
|
288
|
-
"which": "^2.0.2",
|
|
289
|
-
"which-typed-array": "^1.1.20",
|
|
290
|
-
"why-is-node-running": "^2.3.0",
|
|
291
|
-
"wrap-ansi": "^8.1.0",
|
|
292
|
-
"wrap-ansi-cjs": "^7.0.0",
|
|
293
|
-
"ws": "^8.19.0",
|
|
294
|
-
"wsl-utils": "^0.1.0",
|
|
295
|
-
"yallist": "^3.1.1",
|
|
296
|
-
"yaml": "^2.8.2",
|
|
297
|
-
"yocto-queue": "^1.2.2"
|
|
65
|
+
"peerDependencies": {
|
|
66
|
+
"react": ">=17.0.0",
|
|
67
|
+
"react-dom": ">=17.0.0"
|
|
298
68
|
},
|
|
69
|
+
"dependencies": {},
|
|
299
70
|
"devDependencies": {
|
|
71
|
+
"@semantic-release/changelog": "^6.0.3",
|
|
72
|
+
"@semantic-release/commit-analyzer": "^13.0.1",
|
|
73
|
+
"@semantic-release/git": "^10.0.1",
|
|
74
|
+
"@semantic-release/github": "^12.0.2",
|
|
75
|
+
"@semantic-release/npm": "^13.1.3",
|
|
76
|
+
"@semantic-release/release-notes-generator": "^14.1.0",
|
|
300
77
|
"@storybook/addon-docs": "10.2.1",
|
|
301
78
|
"@storybook/addon-vitest": "^10.2.1",
|
|
302
79
|
"@storybook/react-vite": "10.2.1",
|
|
@@ -312,6 +89,7 @@
|
|
|
312
89
|
"oxlint": "^1.42.0",
|
|
313
90
|
"react": "^19.2.4",
|
|
314
91
|
"react-dom": "^19.2.4",
|
|
92
|
+
"semantic-release": "^25.0.2",
|
|
315
93
|
"storybook": "10.2.1",
|
|
316
94
|
"tailwindcss": "^4.1.18",
|
|
317
95
|
"tsup": "^8.5.1",
|
|
@@ -320,10 +98,11 @@
|
|
|
320
98
|
"typescript": "^5.9.3",
|
|
321
99
|
"vitest": "^4.0.18"
|
|
322
100
|
},
|
|
323
|
-
"peerDependencies": {
|
|
324
|
-
"react": ">=17.0.0",
|
|
325
|
-
"react-dom": ">=17.0.0"
|
|
326
|
-
},
|
|
327
101
|
"packageManager": "bun@1.3.2",
|
|
328
|
-
"module": "./dist/index.js"
|
|
102
|
+
"module": "./dist/index.js",
|
|
103
|
+
"publishConfig": {
|
|
104
|
+
"access": "public",
|
|
105
|
+
"registry": "https://registry.npmjs.org/",
|
|
106
|
+
"provenance": true
|
|
107
|
+
}
|
|
329
108
|
}
|