@yamada-ui/react 0.3.1 → 0.4.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/index.d.ts +2 -0
- package/dist/index.js +5 -1
- package/dist/index.mjs +2 -0
- package/package.json +9 -7
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -215,6 +215,8 @@ __reExport(src_exports, require("@yamada-ui/use-idle"), module.exports);
|
|
|
215
215
|
__reExport(src_exports, require("@yamada-ui/use-os"), module.exports);
|
|
216
216
|
__reExport(src_exports, require("@yamada-ui/use-local-storage"), module.exports);
|
|
217
217
|
__reExport(src_exports, require("@yamada-ui/use-window-event"), module.exports);
|
|
218
|
+
__reExport(src_exports, require("@yamada-ui/use-media-query"), module.exports);
|
|
219
|
+
__reExport(src_exports, require("@yamada-ui/use-clipboard"), module.exports);
|
|
218
220
|
// Annotate the CommonJS export names for ESM import in node:
|
|
219
221
|
0 && (module.exports = {
|
|
220
222
|
extendComponent,
|
|
@@ -311,5 +313,7 @@ __reExport(src_exports, require("@yamada-ui/use-window-event"), module.exports);
|
|
|
311
313
|
...require("@yamada-ui/use-idle"),
|
|
312
314
|
...require("@yamada-ui/use-os"),
|
|
313
315
|
...require("@yamada-ui/use-local-storage"),
|
|
314
|
-
...require("@yamada-ui/use-window-event")
|
|
316
|
+
...require("@yamada-ui/use-window-event"),
|
|
317
|
+
...require("@yamada-ui/use-media-query"),
|
|
318
|
+
...require("@yamada-ui/use-clipboard")
|
|
315
319
|
});
|
package/dist/index.mjs
CHANGED
|
@@ -101,6 +101,8 @@ export * from "@yamada-ui/use-idle";
|
|
|
101
101
|
export * from "@yamada-ui/use-os";
|
|
102
102
|
export * from "@yamada-ui/use-local-storage";
|
|
103
103
|
export * from "@yamada-ui/use-window-event";
|
|
104
|
+
export * from "@yamada-ui/use-media-query";
|
|
105
|
+
export * from "@yamada-ui/use-clipboard";
|
|
104
106
|
export {
|
|
105
107
|
extendComponent,
|
|
106
108
|
extendComponentDefaultProps,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yamada-ui/react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
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",
|
|
@@ -67,13 +67,13 @@
|
|
|
67
67
|
"@yamada-ui/native-select": "0.1.7",
|
|
68
68
|
"@yamada-ui/native-table": "0.1.9",
|
|
69
69
|
"@yamada-ui/notice": "0.1.7",
|
|
70
|
-
"@yamada-ui/number-input": "0.1.
|
|
70
|
+
"@yamada-ui/number-input": "0.1.8",
|
|
71
71
|
"@yamada-ui/pagination": "0.1.7",
|
|
72
72
|
"@yamada-ui/pin-input": "0.1.7",
|
|
73
73
|
"@yamada-ui/popover": "0.1.7",
|
|
74
74
|
"@yamada-ui/portal": "0.1.2",
|
|
75
75
|
"@yamada-ui/progress": "0.2.2",
|
|
76
|
-
"@yamada-ui/providers": "0.
|
|
76
|
+
"@yamada-ui/providers": "0.3.0",
|
|
77
77
|
"@yamada-ui/radio": "0.1.8",
|
|
78
78
|
"@yamada-ui/reorder": "0.1.7",
|
|
79
79
|
"@yamada-ui/scroll-area": "0.1.7",
|
|
@@ -94,6 +94,7 @@
|
|
|
94
94
|
"@yamada-ui/use-boolean": "0.1.0",
|
|
95
95
|
"@yamada-ui/use-breakpoint": "0.1.7",
|
|
96
96
|
"@yamada-ui/use-clickable": "0.1.1",
|
|
97
|
+
"@yamada-ui/use-clipboard": "0.1.0",
|
|
97
98
|
"@yamada-ui/use-controllable-state": "0.1.1",
|
|
98
99
|
"@yamada-ui/use-counter": "0.1.1",
|
|
99
100
|
"@yamada-ui/use-descendant": "0.1.1",
|
|
@@ -103,17 +104,18 @@
|
|
|
103
104
|
"@yamada-ui/use-focus-visible": "0.1.1",
|
|
104
105
|
"@yamada-ui/use-hover": "0.1.0",
|
|
105
106
|
"@yamada-ui/use-idle": "0.1.0",
|
|
106
|
-
"@yamada-ui/use-interval": "0.1.
|
|
107
|
+
"@yamada-ui/use-interval": "0.1.2",
|
|
107
108
|
"@yamada-ui/use-latest-ref": "0.1.0",
|
|
108
|
-
"@yamada-ui/use-local-storage": "0.1.
|
|
109
|
-
"@yamada-ui/use-
|
|
109
|
+
"@yamada-ui/use-local-storage": "0.1.2",
|
|
110
|
+
"@yamada-ui/use-media-query": "0.1.1",
|
|
111
|
+
"@yamada-ui/use-os": "0.1.1",
|
|
110
112
|
"@yamada-ui/use-outside-click": "0.1.1",
|
|
111
113
|
"@yamada-ui/use-pan-event": "0.1.2",
|
|
112
114
|
"@yamada-ui/use-popper": "0.1.7",
|
|
113
115
|
"@yamada-ui/use-previous": "0.1.1",
|
|
114
116
|
"@yamada-ui/use-resize-observer": "0.1.1",
|
|
115
117
|
"@yamada-ui/use-size": "0.1.1",
|
|
116
|
-
"@yamada-ui/use-timeout": "0.1.
|
|
118
|
+
"@yamada-ui/use-timeout": "0.1.2",
|
|
117
119
|
"@yamada-ui/use-token": "0.1.7",
|
|
118
120
|
"@yamada-ui/use-value": "0.1.7",
|
|
119
121
|
"@yamada-ui/use-window-event": "0.1.0",
|