@usefy/use-throttle 0.0.18 → 0.0.19

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.
Files changed (2) hide show
  1. package/README.md +0 -15
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -382,21 +382,6 @@ pnpm test --coverage
382
382
 
383
383
  ---
384
384
 
385
- ## Related Packages
386
-
387
- Explore other hooks in the **@usefy** collection:
388
-
389
- | Package | Description |
390
- | ------------------------------------------------------------------------------------------ | ------------------------------------- |
391
- | [@usefy/use-throttle-callback](https://www.npmjs.com/package/@usefy/use-throttle-callback) | Throttled callbacks with cancel/flush |
392
- | [@usefy/use-debounce](https://www.npmjs.com/package/@usefy/use-debounce) | Value debouncing |
393
- | [@usefy/use-debounce-callback](https://www.npmjs.com/package/@usefy/use-debounce-callback) | Debounced callbacks |
394
- | [@usefy/use-toggle](https://www.npmjs.com/package/@usefy/use-toggle) | Boolean state management |
395
- | [@usefy/use-counter](https://www.npmjs.com/package/@usefy/use-counter) | Counter state management |
396
- | [@usefy/use-click-any-where](https://www.npmjs.com/package/@usefy/use-click-any-where) | Global click detection |
397
-
398
- ---
399
-
400
385
  ## License
401
386
 
402
387
  MIT © [mirunamu](https://github.com/geon0529)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@usefy/use-throttle",
3
- "version": "0.0.18",
3
+ "version": "0.0.19",
4
4
  "description": "A React hook for throttling values",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -17,7 +17,7 @@
17
17
  ],
18
18
  "sideEffects": false,
19
19
  "dependencies": {
20
- "@usefy/use-debounce": "0.0.18"
20
+ "@usefy/use-debounce": "0.0.19"
21
21
  },
22
22
  "peerDependencies": {
23
23
  "react": "^18.0.0 || ^19.0.0"