@yamada-ui/react 0.2.11 → 0.3.1
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 +5 -0
- package/dist/index.js +11 -1
- package/dist/index.mjs +5 -0
- package/package.json +6 -1
package/dist/index.d.ts
CHANGED
|
@@ -79,3 +79,8 @@ export * from '@yamada-ui/use-previous';
|
|
|
79
79
|
export * from '@yamada-ui/stepper';
|
|
80
80
|
export * from '@yamada-ui/native-table';
|
|
81
81
|
export * from '@yamada-ui/indicator';
|
|
82
|
+
export * from '@yamada-ui/use-hover';
|
|
83
|
+
export * from '@yamada-ui/use-idle';
|
|
84
|
+
export * from '@yamada-ui/use-os';
|
|
85
|
+
export * from '@yamada-ui/use-local-storage';
|
|
86
|
+
export * from '@yamada-ui/use-window-event';
|
package/dist/index.js
CHANGED
|
@@ -210,6 +210,11 @@ __reExport(src_exports, require("@yamada-ui/use-previous"), module.exports);
|
|
|
210
210
|
__reExport(src_exports, require("@yamada-ui/stepper"), module.exports);
|
|
211
211
|
__reExport(src_exports, require("@yamada-ui/native-table"), module.exports);
|
|
212
212
|
__reExport(src_exports, require("@yamada-ui/indicator"), module.exports);
|
|
213
|
+
__reExport(src_exports, require("@yamada-ui/use-hover"), module.exports);
|
|
214
|
+
__reExport(src_exports, require("@yamada-ui/use-idle"), module.exports);
|
|
215
|
+
__reExport(src_exports, require("@yamada-ui/use-os"), module.exports);
|
|
216
|
+
__reExport(src_exports, require("@yamada-ui/use-local-storage"), module.exports);
|
|
217
|
+
__reExport(src_exports, require("@yamada-ui/use-window-event"), module.exports);
|
|
213
218
|
// Annotate the CommonJS export names for ESM import in node:
|
|
214
219
|
0 && (module.exports = {
|
|
215
220
|
extendComponent,
|
|
@@ -301,5 +306,10 @@ __reExport(src_exports, require("@yamada-ui/indicator"), module.exports);
|
|
|
301
306
|
...require("@yamada-ui/use-previous"),
|
|
302
307
|
...require("@yamada-ui/stepper"),
|
|
303
308
|
...require("@yamada-ui/native-table"),
|
|
304
|
-
...require("@yamada-ui/indicator")
|
|
309
|
+
...require("@yamada-ui/indicator"),
|
|
310
|
+
...require("@yamada-ui/use-hover"),
|
|
311
|
+
...require("@yamada-ui/use-idle"),
|
|
312
|
+
...require("@yamada-ui/use-os"),
|
|
313
|
+
...require("@yamada-ui/use-local-storage"),
|
|
314
|
+
...require("@yamada-ui/use-window-event")
|
|
305
315
|
});
|
package/dist/index.mjs
CHANGED
|
@@ -96,6 +96,11 @@ export * from "@yamada-ui/use-previous";
|
|
|
96
96
|
export * from "@yamada-ui/stepper";
|
|
97
97
|
export * from "@yamada-ui/native-table";
|
|
98
98
|
export * from "@yamada-ui/indicator";
|
|
99
|
+
export * from "@yamada-ui/use-hover";
|
|
100
|
+
export * from "@yamada-ui/use-idle";
|
|
101
|
+
export * from "@yamada-ui/use-os";
|
|
102
|
+
export * from "@yamada-ui/use-local-storage";
|
|
103
|
+
export * from "@yamada-ui/use-window-event";
|
|
99
104
|
export {
|
|
100
105
|
extendComponent,
|
|
101
106
|
extendComponentDefaultProps,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yamada-ui/react",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.3.1",
|
|
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",
|
|
@@ -101,8 +101,12 @@
|
|
|
101
101
|
"@yamada-ui/use-event-listener": "0.1.1",
|
|
102
102
|
"@yamada-ui/use-focus": "0.1.1",
|
|
103
103
|
"@yamada-ui/use-focus-visible": "0.1.1",
|
|
104
|
+
"@yamada-ui/use-hover": "0.1.0",
|
|
105
|
+
"@yamada-ui/use-idle": "0.1.0",
|
|
104
106
|
"@yamada-ui/use-interval": "0.1.1",
|
|
105
107
|
"@yamada-ui/use-latest-ref": "0.1.0",
|
|
108
|
+
"@yamada-ui/use-local-storage": "0.1.1",
|
|
109
|
+
"@yamada-ui/use-os": "0.1.0",
|
|
106
110
|
"@yamada-ui/use-outside-click": "0.1.1",
|
|
107
111
|
"@yamada-ui/use-pan-event": "0.1.2",
|
|
108
112
|
"@yamada-ui/use-popper": "0.1.7",
|
|
@@ -112,6 +116,7 @@
|
|
|
112
116
|
"@yamada-ui/use-timeout": "0.1.1",
|
|
113
117
|
"@yamada-ui/use-token": "0.1.7",
|
|
114
118
|
"@yamada-ui/use-value": "0.1.7",
|
|
119
|
+
"@yamada-ui/use-window-event": "0.1.0",
|
|
115
120
|
"@yamada-ui/utils": "0.1.1"
|
|
116
121
|
},
|
|
117
122
|
"devDependencies": {
|