@yamada-ui/react 0.5.10 → 0.5.11
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-XEQVDUBF.mjs → chunk-2WAOE43L.mjs} +12 -4
- package/dist/{chunk-RYYPCE3B.mjs → chunk-ITYVEL25.mjs} +26 -5
- package/dist/extend-theme.js +26 -5
- package/dist/extend-theme.mjs +1 -1
- package/dist/index.js +38 -9
- package/dist/index.mjs +2 -2
- package/dist/with-default.js +12 -4
- package/dist/with-default.mjs +1 -1
- package/package.json +84 -84
|
@@ -9,7 +9,9 @@ var withDefaultSize = ({
|
|
|
9
9
|
if (isArray(components))
|
|
10
10
|
keys = components;
|
|
11
11
|
return merge(theme, {
|
|
12
|
-
components: Object.fromEntries(
|
|
12
|
+
components: Object.fromEntries(
|
|
13
|
+
keys.map((key) => [key, { defaultProps: { size } }])
|
|
14
|
+
)
|
|
13
15
|
});
|
|
14
16
|
};
|
|
15
17
|
var withDefaultVariant = ({
|
|
@@ -21,7 +23,9 @@ var withDefaultVariant = ({
|
|
|
21
23
|
if (isArray(components))
|
|
22
24
|
keys = components;
|
|
23
25
|
return merge(theme, {
|
|
24
|
-
components: Object.fromEntries(
|
|
26
|
+
components: Object.fromEntries(
|
|
27
|
+
keys.map((key) => [key, { defaultProps: { variant } }])
|
|
28
|
+
)
|
|
25
29
|
});
|
|
26
30
|
};
|
|
27
31
|
var withDefaultColorScheme = ({
|
|
@@ -33,7 +37,9 @@ var withDefaultColorScheme = ({
|
|
|
33
37
|
if (isArray(components))
|
|
34
38
|
keys = components;
|
|
35
39
|
return merge(theme, {
|
|
36
|
-
components: Object.fromEntries(
|
|
40
|
+
components: Object.fromEntries(
|
|
41
|
+
keys.map((key) => [key, { defaultProps: { colorScheme } }])
|
|
42
|
+
)
|
|
37
43
|
});
|
|
38
44
|
};
|
|
39
45
|
var withDefaultProps = ({
|
|
@@ -45,7 +51,9 @@ var withDefaultProps = ({
|
|
|
45
51
|
if (isArray(components))
|
|
46
52
|
keys = components;
|
|
47
53
|
return merge(theme, {
|
|
48
|
-
components: Object.fromEntries(
|
|
54
|
+
components: Object.fromEntries(
|
|
55
|
+
keys.map((key) => [key, { defaultProps }])
|
|
56
|
+
)
|
|
49
57
|
});
|
|
50
58
|
};
|
|
51
59
|
|
|
@@ -32,17 +32,38 @@ var extendToken = (token, tokens) => mergeObject(get(defaultTheme, token, {}), t
|
|
|
32
32
|
var extendStyle = (name, style) => {
|
|
33
33
|
var _a;
|
|
34
34
|
const props = {
|
|
35
|
-
theme: {
|
|
35
|
+
theme: {
|
|
36
|
+
__config: {},
|
|
37
|
+
__cssMap: {},
|
|
38
|
+
__cssVars: {},
|
|
39
|
+
__breakpoints: void 0
|
|
40
|
+
}
|
|
36
41
|
};
|
|
37
42
|
return mergeObject(
|
|
38
43
|
runIfFunc(get(defaultTheme, `styles.${name}`, {}), props),
|
|
39
44
|
(_a = runIfFunc(style, props)) != null ? _a : {}
|
|
40
45
|
);
|
|
41
46
|
};
|
|
42
|
-
var extendComponent = (name, componentStyle) => mergeObject(
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
47
|
+
var extendComponent = (name, componentStyle) => mergeObject(
|
|
48
|
+
get(defaultTheme, `components.${name}`, {}),
|
|
49
|
+
componentStyle != null ? componentStyle : {}
|
|
50
|
+
);
|
|
51
|
+
var extendComponentSize = (name, componentSizes) => mergeObject(
|
|
52
|
+
get(defaultTheme, `components.${name}.sizes`, {}),
|
|
53
|
+
componentSizes != null ? componentSizes : {}
|
|
54
|
+
);
|
|
55
|
+
var extendComponentVariant = (name, componentVariants) => mergeObject(
|
|
56
|
+
get(defaultTheme, `components.${name}.variants`, {}),
|
|
57
|
+
componentVariants != null ? componentVariants : {}
|
|
58
|
+
);
|
|
59
|
+
var extendComponentDefaultProps = (name, componentDefaultProps) => mergeObject(
|
|
60
|
+
get(
|
|
61
|
+
defaultTheme,
|
|
62
|
+
`components.${name}.defaultProps`,
|
|
63
|
+
{}
|
|
64
|
+
),
|
|
65
|
+
componentDefaultProps != null ? componentDefaultProps : {}
|
|
66
|
+
);
|
|
46
67
|
|
|
47
68
|
export {
|
|
48
69
|
extendTheme,
|
package/dist/extend-theme.js
CHANGED
|
@@ -55,17 +55,38 @@ var extendToken = (token, tokens) => (0, import_utils.merge)((0, import_utils.ge
|
|
|
55
55
|
var extendStyle = (name, style) => {
|
|
56
56
|
var _a;
|
|
57
57
|
const props = {
|
|
58
|
-
theme: {
|
|
58
|
+
theme: {
|
|
59
|
+
__config: {},
|
|
60
|
+
__cssMap: {},
|
|
61
|
+
__cssVars: {},
|
|
62
|
+
__breakpoints: void 0
|
|
63
|
+
}
|
|
59
64
|
};
|
|
60
65
|
return (0, import_utils.merge)(
|
|
61
66
|
(0, import_utils.runIfFunc)((0, import_utils.getMemoizedObject)(import_theme.defaultTheme, `styles.${name}`, {}), props),
|
|
62
67
|
(_a = (0, import_utils.runIfFunc)(style, props)) != null ? _a : {}
|
|
63
68
|
);
|
|
64
69
|
};
|
|
65
|
-
var extendComponent = (name, componentStyle) => (0, import_utils.merge)(
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
70
|
+
var extendComponent = (name, componentStyle) => (0, import_utils.merge)(
|
|
71
|
+
(0, import_utils.getMemoizedObject)(import_theme.defaultTheme, `components.${name}`, {}),
|
|
72
|
+
componentStyle != null ? componentStyle : {}
|
|
73
|
+
);
|
|
74
|
+
var extendComponentSize = (name, componentSizes) => (0, import_utils.merge)(
|
|
75
|
+
(0, import_utils.getMemoizedObject)(import_theme.defaultTheme, `components.${name}.sizes`, {}),
|
|
76
|
+
componentSizes != null ? componentSizes : {}
|
|
77
|
+
);
|
|
78
|
+
var extendComponentVariant = (name, componentVariants) => (0, import_utils.merge)(
|
|
79
|
+
(0, import_utils.getMemoizedObject)(import_theme.defaultTheme, `components.${name}.variants`, {}),
|
|
80
|
+
componentVariants != null ? componentVariants : {}
|
|
81
|
+
);
|
|
82
|
+
var extendComponentDefaultProps = (name, componentDefaultProps) => (0, import_utils.merge)(
|
|
83
|
+
(0, import_utils.getMemoizedObject)(
|
|
84
|
+
import_theme.defaultTheme,
|
|
85
|
+
`components.${name}.defaultProps`,
|
|
86
|
+
{}
|
|
87
|
+
),
|
|
88
|
+
componentDefaultProps != null ? componentDefaultProps : {}
|
|
89
|
+
);
|
|
69
90
|
// Annotate the CommonJS export names for ESM import in node:
|
|
70
91
|
0 && (module.exports = {
|
|
71
92
|
extendComponent,
|
package/dist/extend-theme.mjs
CHANGED
package/dist/index.js
CHANGED
|
@@ -63,17 +63,38 @@ var extendToken = (token, tokens) => (0, import_utils.merge)((0, import_utils.ge
|
|
|
63
63
|
var extendStyle = (name, style) => {
|
|
64
64
|
var _a;
|
|
65
65
|
const props = {
|
|
66
|
-
theme: {
|
|
66
|
+
theme: {
|
|
67
|
+
__config: {},
|
|
68
|
+
__cssMap: {},
|
|
69
|
+
__cssVars: {},
|
|
70
|
+
__breakpoints: void 0
|
|
71
|
+
}
|
|
67
72
|
};
|
|
68
73
|
return (0, import_utils.merge)(
|
|
69
74
|
(0, import_utils.runIfFunc)((0, import_utils.getMemoizedObject)(import_theme.defaultTheme, `styles.${name}`, {}), props),
|
|
70
75
|
(_a = (0, import_utils.runIfFunc)(style, props)) != null ? _a : {}
|
|
71
76
|
);
|
|
72
77
|
};
|
|
73
|
-
var extendComponent = (name, componentStyle) => (0, import_utils.merge)(
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
78
|
+
var extendComponent = (name, componentStyle) => (0, import_utils.merge)(
|
|
79
|
+
(0, import_utils.getMemoizedObject)(import_theme.defaultTheme, `components.${name}`, {}),
|
|
80
|
+
componentStyle != null ? componentStyle : {}
|
|
81
|
+
);
|
|
82
|
+
var extendComponentSize = (name, componentSizes) => (0, import_utils.merge)(
|
|
83
|
+
(0, import_utils.getMemoizedObject)(import_theme.defaultTheme, `components.${name}.sizes`, {}),
|
|
84
|
+
componentSizes != null ? componentSizes : {}
|
|
85
|
+
);
|
|
86
|
+
var extendComponentVariant = (name, componentVariants) => (0, import_utils.merge)(
|
|
87
|
+
(0, import_utils.getMemoizedObject)(import_theme.defaultTheme, `components.${name}.variants`, {}),
|
|
88
|
+
componentVariants != null ? componentVariants : {}
|
|
89
|
+
);
|
|
90
|
+
var extendComponentDefaultProps = (name, componentDefaultProps) => (0, import_utils.merge)(
|
|
91
|
+
(0, import_utils.getMemoizedObject)(
|
|
92
|
+
import_theme.defaultTheme,
|
|
93
|
+
`components.${name}.defaultProps`,
|
|
94
|
+
{}
|
|
95
|
+
),
|
|
96
|
+
componentDefaultProps != null ? componentDefaultProps : {}
|
|
97
|
+
);
|
|
77
98
|
|
|
78
99
|
// src/with-default.ts
|
|
79
100
|
var import_utils2 = require("@yamada-ui/utils");
|
|
@@ -86,7 +107,9 @@ var withDefaultSize = ({
|
|
|
86
107
|
if ((0, import_utils2.isArray)(components))
|
|
87
108
|
keys = components;
|
|
88
109
|
return (0, import_utils2.merge)(theme, {
|
|
89
|
-
components: Object.fromEntries(
|
|
110
|
+
components: Object.fromEntries(
|
|
111
|
+
keys.map((key) => [key, { defaultProps: { size } }])
|
|
112
|
+
)
|
|
90
113
|
});
|
|
91
114
|
};
|
|
92
115
|
var withDefaultVariant = ({
|
|
@@ -98,7 +121,9 @@ var withDefaultVariant = ({
|
|
|
98
121
|
if ((0, import_utils2.isArray)(components))
|
|
99
122
|
keys = components;
|
|
100
123
|
return (0, import_utils2.merge)(theme, {
|
|
101
|
-
components: Object.fromEntries(
|
|
124
|
+
components: Object.fromEntries(
|
|
125
|
+
keys.map((key) => [key, { defaultProps: { variant } }])
|
|
126
|
+
)
|
|
102
127
|
});
|
|
103
128
|
};
|
|
104
129
|
var withDefaultColorScheme = ({
|
|
@@ -110,7 +135,9 @@ var withDefaultColorScheme = ({
|
|
|
110
135
|
if ((0, import_utils2.isArray)(components))
|
|
111
136
|
keys = components;
|
|
112
137
|
return (0, import_utils2.merge)(theme, {
|
|
113
|
-
components: Object.fromEntries(
|
|
138
|
+
components: Object.fromEntries(
|
|
139
|
+
keys.map((key) => [key, { defaultProps: { colorScheme } }])
|
|
140
|
+
)
|
|
114
141
|
});
|
|
115
142
|
};
|
|
116
143
|
var withDefaultProps = ({
|
|
@@ -122,7 +149,9 @@ var withDefaultProps = ({
|
|
|
122
149
|
if ((0, import_utils2.isArray)(components))
|
|
123
150
|
keys = components;
|
|
124
151
|
return (0, import_utils2.merge)(theme, {
|
|
125
|
-
components: Object.fromEntries(
|
|
152
|
+
components: Object.fromEntries(
|
|
153
|
+
keys.map((key) => [key, { defaultProps }])
|
|
154
|
+
)
|
|
126
155
|
});
|
|
127
156
|
};
|
|
128
157
|
|
package/dist/index.mjs
CHANGED
|
@@ -9,13 +9,13 @@ import {
|
|
|
9
9
|
extendStyle,
|
|
10
10
|
extendTheme,
|
|
11
11
|
extendToken
|
|
12
|
-
} from "./chunk-
|
|
12
|
+
} from "./chunk-ITYVEL25.mjs";
|
|
13
13
|
import {
|
|
14
14
|
withDefaultColorScheme,
|
|
15
15
|
withDefaultProps,
|
|
16
16
|
withDefaultSize,
|
|
17
17
|
withDefaultVariant
|
|
18
|
-
} from "./chunk-
|
|
18
|
+
} from "./chunk-2WAOE43L.mjs";
|
|
19
19
|
|
|
20
20
|
// src/index.ts
|
|
21
21
|
export * from "@yamada-ui/core";
|
package/dist/with-default.js
CHANGED
|
@@ -36,7 +36,9 @@ var withDefaultSize = ({
|
|
|
36
36
|
if ((0, import_utils.isArray)(components))
|
|
37
37
|
keys = components;
|
|
38
38
|
return (0, import_utils.merge)(theme, {
|
|
39
|
-
components: Object.fromEntries(
|
|
39
|
+
components: Object.fromEntries(
|
|
40
|
+
keys.map((key) => [key, { defaultProps: { size } }])
|
|
41
|
+
)
|
|
40
42
|
});
|
|
41
43
|
};
|
|
42
44
|
var withDefaultVariant = ({
|
|
@@ -48,7 +50,9 @@ var withDefaultVariant = ({
|
|
|
48
50
|
if ((0, import_utils.isArray)(components))
|
|
49
51
|
keys = components;
|
|
50
52
|
return (0, import_utils.merge)(theme, {
|
|
51
|
-
components: Object.fromEntries(
|
|
53
|
+
components: Object.fromEntries(
|
|
54
|
+
keys.map((key) => [key, { defaultProps: { variant } }])
|
|
55
|
+
)
|
|
52
56
|
});
|
|
53
57
|
};
|
|
54
58
|
var withDefaultColorScheme = ({
|
|
@@ -60,7 +64,9 @@ var withDefaultColorScheme = ({
|
|
|
60
64
|
if ((0, import_utils.isArray)(components))
|
|
61
65
|
keys = components;
|
|
62
66
|
return (0, import_utils.merge)(theme, {
|
|
63
|
-
components: Object.fromEntries(
|
|
67
|
+
components: Object.fromEntries(
|
|
68
|
+
keys.map((key) => [key, { defaultProps: { colorScheme } }])
|
|
69
|
+
)
|
|
64
70
|
});
|
|
65
71
|
};
|
|
66
72
|
var withDefaultProps = ({
|
|
@@ -72,7 +78,9 @@ var withDefaultProps = ({
|
|
|
72
78
|
if ((0, import_utils.isArray)(components))
|
|
73
79
|
keys = components;
|
|
74
80
|
return (0, import_utils.merge)(theme, {
|
|
75
|
-
components: Object.fromEntries(
|
|
81
|
+
components: Object.fromEntries(
|
|
82
|
+
keys.map((key) => [key, { defaultProps }])
|
|
83
|
+
)
|
|
76
84
|
});
|
|
77
85
|
};
|
|
78
86
|
// Annotate the CommonJS export names for ESM import in node:
|
package/dist/with-default.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yamada-ui/react",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.11",
|
|
4
4
|
"description": "React UI components of the Yamada, by the Yamada, for the Yamada built with React and Emotion",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"yamada",
|
|
@@ -35,91 +35,91 @@
|
|
|
35
35
|
"url": "https://github.com/hirotomoyamada/yamada-ui/issues"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@yamada-ui/accordion": "0.2.
|
|
39
|
-
"@yamada-ui/alert": "0.3.
|
|
40
|
-
"@yamada-ui/autocomplete": "0.2.
|
|
41
|
-
"@yamada-ui/avatar": "0.2.
|
|
42
|
-
"@yamada-ui/badge": "0.2.
|
|
43
|
-
"@yamada-ui/breadcrumb": "0.2.
|
|
44
|
-
"@yamada-ui/button": "0.2.
|
|
45
|
-
"@yamada-ui/card": "0.2.
|
|
46
|
-
"@yamada-ui/checkbox": "0.2.
|
|
47
|
-
"@yamada-ui/close-button": "0.2.
|
|
48
|
-
"@yamada-ui/core": "0.5.
|
|
49
|
-
"@yamada-ui/editable": "0.2.
|
|
50
|
-
"@yamada-ui/file-button": "0.2.
|
|
51
|
-
"@yamada-ui/file-input": "0.2.
|
|
52
|
-
"@yamada-ui/focus-lock": "0.2.
|
|
53
|
-
"@yamada-ui/form-control": "0.2.
|
|
54
|
-
"@yamada-ui/highlight": "0.2.
|
|
55
|
-
"@yamada-ui/icon": "0.2.
|
|
56
|
-
"@yamada-ui/image": "0.2.
|
|
57
|
-
"@yamada-ui/indicator": "0.2.
|
|
58
|
-
"@yamada-ui/input": "0.2.
|
|
59
|
-
"@yamada-ui/kbd": "0.2.
|
|
60
|
-
"@yamada-ui/layouts": "0.2.
|
|
61
|
-
"@yamada-ui/link": "0.2.
|
|
62
|
-
"@yamada-ui/list": "0.2.
|
|
63
|
-
"@yamada-ui/loading": "0.3.
|
|
64
|
-
"@yamada-ui/menu": "0.2.
|
|
65
|
-
"@yamada-ui/modal": "0.2.
|
|
66
|
-
"@yamada-ui/motion": "0.3.
|
|
67
|
-
"@yamada-ui/native-select": "0.2.
|
|
68
|
-
"@yamada-ui/native-table": "0.2.
|
|
69
|
-
"@yamada-ui/notice": "0.3.
|
|
70
|
-
"@yamada-ui/number-input": "0.2.
|
|
71
|
-
"@yamada-ui/pagination": "0.2.
|
|
72
|
-
"@yamada-ui/pin-input": "0.2.
|
|
73
|
-
"@yamada-ui/popover": "0.2.
|
|
74
|
-
"@yamada-ui/portal": "0.2.
|
|
75
|
-
"@yamada-ui/progress": "0.3.
|
|
76
|
-
"@yamada-ui/providers": "0.5.
|
|
77
|
-
"@yamada-ui/radio": "0.2.
|
|
78
|
-
"@yamada-ui/reorder": "0.2.
|
|
79
|
-
"@yamada-ui/scroll-area": "0.2.
|
|
80
|
-
"@yamada-ui/segmented-control": "0.2.
|
|
81
|
-
"@yamada-ui/select": "0.2.
|
|
82
|
-
"@yamada-ui/skeleton": "0.2.
|
|
83
|
-
"@yamada-ui/slider": "0.2.
|
|
84
|
-
"@yamada-ui/stepper": "0.2.
|
|
85
|
-
"@yamada-ui/switch": "0.2.
|
|
86
|
-
"@yamada-ui/tabs": "0.2.
|
|
87
|
-
"@yamada-ui/tag": "0.2.
|
|
88
|
-
"@yamada-ui/textarea": "0.2.
|
|
89
|
-
"@yamada-ui/theme": "0.3.
|
|
90
|
-
"@yamada-ui/tooltip": "0.2.
|
|
91
|
-
"@yamada-ui/transitions": "0.2.
|
|
92
|
-
"@yamada-ui/typography": "0.2.
|
|
93
|
-
"@yamada-ui/use-animation": "0.1.
|
|
38
|
+
"@yamada-ui/accordion": "0.2.9",
|
|
39
|
+
"@yamada-ui/alert": "0.3.7",
|
|
40
|
+
"@yamada-ui/autocomplete": "0.2.11",
|
|
41
|
+
"@yamada-ui/avatar": "0.2.8",
|
|
42
|
+
"@yamada-ui/badge": "0.2.7",
|
|
43
|
+
"@yamada-ui/breadcrumb": "0.2.7",
|
|
44
|
+
"@yamada-ui/button": "0.2.7",
|
|
45
|
+
"@yamada-ui/card": "0.2.7",
|
|
46
|
+
"@yamada-ui/checkbox": "0.2.8",
|
|
47
|
+
"@yamada-ui/close-button": "0.2.7",
|
|
48
|
+
"@yamada-ui/core": "0.5.2",
|
|
49
|
+
"@yamada-ui/editable": "0.2.7",
|
|
50
|
+
"@yamada-ui/file-button": "0.2.7",
|
|
51
|
+
"@yamada-ui/file-input": "0.2.7",
|
|
52
|
+
"@yamada-ui/focus-lock": "0.2.3",
|
|
53
|
+
"@yamada-ui/form-control": "0.2.7",
|
|
54
|
+
"@yamada-ui/highlight": "0.2.7",
|
|
55
|
+
"@yamada-ui/icon": "0.2.7",
|
|
56
|
+
"@yamada-ui/image": "0.2.7",
|
|
57
|
+
"@yamada-ui/indicator": "0.2.7",
|
|
58
|
+
"@yamada-ui/input": "0.2.7",
|
|
59
|
+
"@yamada-ui/kbd": "0.2.7",
|
|
60
|
+
"@yamada-ui/layouts": "0.2.7",
|
|
61
|
+
"@yamada-ui/link": "0.2.7",
|
|
62
|
+
"@yamada-ui/list": "0.2.7",
|
|
63
|
+
"@yamada-ui/loading": "0.3.7",
|
|
64
|
+
"@yamada-ui/menu": "0.2.11",
|
|
65
|
+
"@yamada-ui/modal": "0.2.8",
|
|
66
|
+
"@yamada-ui/motion": "0.3.5",
|
|
67
|
+
"@yamada-ui/native-select": "0.2.7",
|
|
68
|
+
"@yamada-ui/native-table": "0.2.7",
|
|
69
|
+
"@yamada-ui/notice": "0.3.7",
|
|
70
|
+
"@yamada-ui/number-input": "0.2.7",
|
|
71
|
+
"@yamada-ui/pagination": "0.2.7",
|
|
72
|
+
"@yamada-ui/pin-input": "0.2.8",
|
|
73
|
+
"@yamada-ui/popover": "0.2.10",
|
|
74
|
+
"@yamada-ui/portal": "0.2.3",
|
|
75
|
+
"@yamada-ui/progress": "0.3.7",
|
|
76
|
+
"@yamada-ui/providers": "0.5.3",
|
|
77
|
+
"@yamada-ui/radio": "0.2.7",
|
|
78
|
+
"@yamada-ui/reorder": "0.2.8",
|
|
79
|
+
"@yamada-ui/scroll-area": "0.2.7",
|
|
80
|
+
"@yamada-ui/segmented-control": "0.2.8",
|
|
81
|
+
"@yamada-ui/select": "0.2.11",
|
|
82
|
+
"@yamada-ui/skeleton": "0.2.7",
|
|
83
|
+
"@yamada-ui/slider": "0.2.7",
|
|
84
|
+
"@yamada-ui/stepper": "0.2.8",
|
|
85
|
+
"@yamada-ui/switch": "0.2.8",
|
|
86
|
+
"@yamada-ui/tabs": "0.2.10",
|
|
87
|
+
"@yamada-ui/tag": "0.2.7",
|
|
88
|
+
"@yamada-ui/textarea": "0.2.7",
|
|
89
|
+
"@yamada-ui/theme": "0.3.8",
|
|
90
|
+
"@yamada-ui/tooltip": "0.2.10",
|
|
91
|
+
"@yamada-ui/transitions": "0.2.8",
|
|
92
|
+
"@yamada-ui/typography": "0.2.7",
|
|
93
|
+
"@yamada-ui/use-animation": "0.1.19",
|
|
94
94
|
"@yamada-ui/use-boolean": "0.1.0",
|
|
95
|
-
"@yamada-ui/use-breakpoint": "0.1.
|
|
96
|
-
"@yamada-ui/use-clickable": "0.2.
|
|
97
|
-
"@yamada-ui/use-clipboard": "0.1.
|
|
98
|
-
"@yamada-ui/use-controllable-state": "0.1.
|
|
99
|
-
"@yamada-ui/use-counter": "0.2.
|
|
100
|
-
"@yamada-ui/use-descendant": "0.1.
|
|
101
|
-
"@yamada-ui/use-disclosure": "0.2.
|
|
102
|
-
"@yamada-ui/use-event-listener": "0.1.
|
|
103
|
-
"@yamada-ui/use-focus": "0.1.
|
|
104
|
-
"@yamada-ui/use-focus-visible": "0.1.
|
|
105
|
-
"@yamada-ui/use-hover": "0.1.
|
|
106
|
-
"@yamada-ui/use-idle": "0.1.
|
|
107
|
-
"@yamada-ui/use-interval": "0.1.
|
|
95
|
+
"@yamada-ui/use-breakpoint": "0.1.19",
|
|
96
|
+
"@yamada-ui/use-clickable": "0.2.3",
|
|
97
|
+
"@yamada-ui/use-clipboard": "0.1.4",
|
|
98
|
+
"@yamada-ui/use-controllable-state": "0.1.5",
|
|
99
|
+
"@yamada-ui/use-counter": "0.2.3",
|
|
100
|
+
"@yamada-ui/use-descendant": "0.1.5",
|
|
101
|
+
"@yamada-ui/use-disclosure": "0.2.5",
|
|
102
|
+
"@yamada-ui/use-event-listener": "0.1.4",
|
|
103
|
+
"@yamada-ui/use-focus": "0.1.4",
|
|
104
|
+
"@yamada-ui/use-focus-visible": "0.1.4",
|
|
105
|
+
"@yamada-ui/use-hover": "0.1.4",
|
|
106
|
+
"@yamada-ui/use-idle": "0.1.4",
|
|
107
|
+
"@yamada-ui/use-interval": "0.1.5",
|
|
108
108
|
"@yamada-ui/use-latest-ref": "0.1.0",
|
|
109
|
-
"@yamada-ui/use-local-storage": "0.1.
|
|
110
|
-
"@yamada-ui/use-media-query": "0.1.
|
|
111
|
-
"@yamada-ui/use-os": "0.1.
|
|
112
|
-
"@yamada-ui/use-outside-click": "0.1.
|
|
113
|
-
"@yamada-ui/use-pan-event": "0.1.
|
|
114
|
-
"@yamada-ui/use-popper": "0.2.
|
|
115
|
-
"@yamada-ui/use-previous": "0.1.
|
|
116
|
-
"@yamada-ui/use-resize-observer": "0.1.
|
|
117
|
-
"@yamada-ui/use-size": "0.1.
|
|
118
|
-
"@yamada-ui/use-timeout": "0.1.
|
|
119
|
-
"@yamada-ui/use-token": "0.1.
|
|
120
|
-
"@yamada-ui/use-value": "0.1.
|
|
121
|
-
"@yamada-ui/use-window-event": "0.1.
|
|
122
|
-
"@yamada-ui/utils": "0.1.
|
|
109
|
+
"@yamada-ui/use-local-storage": "0.1.6",
|
|
110
|
+
"@yamada-ui/use-media-query": "0.1.16",
|
|
111
|
+
"@yamada-ui/use-os": "0.1.4",
|
|
112
|
+
"@yamada-ui/use-outside-click": "0.1.4",
|
|
113
|
+
"@yamada-ui/use-pan-event": "0.1.5",
|
|
114
|
+
"@yamada-ui/use-popper": "0.2.7",
|
|
115
|
+
"@yamada-ui/use-previous": "0.1.4",
|
|
116
|
+
"@yamada-ui/use-resize-observer": "0.1.4",
|
|
117
|
+
"@yamada-ui/use-size": "0.1.4",
|
|
118
|
+
"@yamada-ui/use-timeout": "0.1.5",
|
|
119
|
+
"@yamada-ui/use-token": "0.1.19",
|
|
120
|
+
"@yamada-ui/use-value": "0.1.19",
|
|
121
|
+
"@yamada-ui/use-window-event": "0.1.4",
|
|
122
|
+
"@yamada-ui/utils": "0.1.4"
|
|
123
123
|
},
|
|
124
124
|
"devDependencies": {
|
|
125
125
|
"clean-package": "2.2.0",
|