@reactuses/core 6.1.12 → 6.3.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 +64 -37
- package/dist/index.cjs +271 -110
- package/dist/index.d.cts +91 -2
- package/dist/index.d.mts +91 -2
- package/dist/index.d.ts +91 -2
- package/dist/index.mjs +271 -111
- package/package.json +35 -5
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@reactuses/core",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.3.0",
|
|
4
|
+
"description": "Collection of 100+ essential React Hooks with TypeScript support, tree-shaking, and SSR compatibility. Sensors, browser APIs, state management, animations, and more.",
|
|
4
5
|
"license": "Unlicense",
|
|
5
6
|
"homepage": "https://www.reactuse.com/",
|
|
6
7
|
"repository": {
|
|
@@ -13,11 +14,40 @@
|
|
|
13
14
|
},
|
|
14
15
|
"keywords": [
|
|
15
16
|
"react",
|
|
16
|
-
"react-
|
|
17
|
-
"react hooks",
|
|
18
|
-
"hook",
|
|
17
|
+
"react-hooks",
|
|
19
18
|
"hooks",
|
|
20
|
-
"
|
|
19
|
+
"react-use",
|
|
20
|
+
"reactuse",
|
|
21
|
+
"typescript",
|
|
22
|
+
"tree-shaking",
|
|
23
|
+
"ssr",
|
|
24
|
+
"custom-hooks",
|
|
25
|
+
"react-utility",
|
|
26
|
+
"browser-hooks",
|
|
27
|
+
"sensor-hooks",
|
|
28
|
+
"state-hooks",
|
|
29
|
+
"utility-hooks",
|
|
30
|
+
"animation-hooks",
|
|
31
|
+
"useToggle",
|
|
32
|
+
"useDebounce",
|
|
33
|
+
"useThrottle",
|
|
34
|
+
"useLocalStorage",
|
|
35
|
+
"useSessionStorage",
|
|
36
|
+
"useMouse",
|
|
37
|
+
"useClipboard",
|
|
38
|
+
"useGeolocation",
|
|
39
|
+
"useIntersectionObserver",
|
|
40
|
+
"useResizeObserver",
|
|
41
|
+
"useMutationObserver",
|
|
42
|
+
"useMediaQuery",
|
|
43
|
+
"useDarkMode",
|
|
44
|
+
"useFullscreen",
|
|
45
|
+
"useIdle",
|
|
46
|
+
"useNetwork",
|
|
47
|
+
"useScroll",
|
|
48
|
+
"useWindowSize",
|
|
49
|
+
"useEventListener",
|
|
50
|
+
"vueuse"
|
|
21
51
|
],
|
|
22
52
|
"sideEffects": false,
|
|
23
53
|
"exports": {
|