@perch33/react-usefilter-hook 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @perch733/react-usefilter-hook
1
+ # @perch33/react-usefilter-hook
2
2
 
3
3
  A lightweight and reusable React hook for filtering lists with accent normalization, punctuation removal, and TypeScript support.
4
4
  Ideal for search bars, dynamic lists, admin dashboards, e-commerce filters, etc.
@@ -20,20 +20,20 @@ Ideal for search bars, dynamic lists, admin dashboards, e-commerce filters, etc.
20
20
  ## 📦 Installation
21
21
 
22
22
  ```sh
23
- npm install @perch733/react-usefilter-hook
23
+ npm install @perch33/react-usefilter-hook
24
24
  ```
25
25
 
26
26
  or
27
27
 
28
28
  ```sh
29
- yarn add @perch733/react-usefilter-hook
29
+ yarn add @perch33/react-usefilter-hook
30
30
 
31
31
  ```
32
32
 
33
33
  ## 🚀 Usage Example (Basic)
34
34
 
35
35
  ```tsx
36
- import { useFilter } from "@perch733/react-usefilter-hook";
36
+ import { useFilter } from "@perch33/react-usefilter-hook";
37
37
 
38
38
  const products = [
39
39
  { title: "Cámara Fotográfica" },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@perch33/react-usefilter-hook",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A lightweight and reusable React hook for filtering lists with accent normalization, punctuation removal and TypeScript support.",
5
5
  "main": "dist/cjs/index.min.js",
6
6
  "module": "dist/esm/index.min.js",