@yamada-ui/react 0.3.2 → 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 +3 -1
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",
|
|
@@ -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",
|
|
@@ -106,6 +107,7 @@
|
|
|
106
107
|
"@yamada-ui/use-interval": "0.1.2",
|
|
107
108
|
"@yamada-ui/use-latest-ref": "0.1.0",
|
|
108
109
|
"@yamada-ui/use-local-storage": "0.1.2",
|
|
110
|
+
"@yamada-ui/use-media-query": "0.1.1",
|
|
109
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",
|