kitzo 2.5.5 → 3.0.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.
Files changed (2) hide show
  1. package/README.md +24 -20
  2. package/package.json +3 -12
package/README.md CHANGED
@@ -1,40 +1,44 @@
1
1
  # Kitzo
2
2
 
3
- **Lightweight React UI components and essential hooks.**
3
+ A lightweight, production-ready React micro-utility library providing essential components, hooks, and functions for modern web applications.
4
4
 
5
- ---
6
-
7
- ### Installation
5
+ ## Installation
8
6
 
9
7
  ```bash
10
8
  npm install kitzo
11
9
  ```
12
10
 
13
- ---
11
+ ## Core Features
12
+
13
+ ### React Components
14
+
15
+ Essential, accessible, and performance-optimized UI components:
14
16
 
15
- ### Core Features
17
+ - **Toast**: A flexible notification system with support for custom positions, animations, and interaction patterns.
18
+ - **Tooltip**: A contextual information component with smart positioning and customizable delay and animations.
16
19
 
17
- #### Components
20
+ ### React Hooks
18
21
 
19
- - **Toast** Accessible, animated notifications.
20
- - **Tooltip** — Smart-positioned contextual labels.
22
+ A collection of hooks to simplify common React application logic:
21
23
 
22
- #### Hooks
24
+ - **useDebounce**: Delays value updates until a specified time has passed.
25
+ - **useDebouncedCallback**: Returns a debounced version of a callback function.
26
+ - **useThrottle**: Limits the execution rate of a frequently changing value.
27
+ - **useLocalStorage**: Synchronizes state with browser local storage.
28
+ - **useWindowSize**: Provides real-time window dimensions.
29
+ - **useCopy**: Simplifies clipboard operations within components.
23
30
 
24
- - **useDebounce** — Optimize performance by delaying execution.
25
- - **useWindowSize** — Real-time viewport dimensions.
26
- - **useCopy** — Simple "copy to clipboard" functionality.
27
- - **useThrottle** — Limits how often a value can change within a specified time interval.
31
+ ### Utility Functions
28
32
 
29
- ---
33
+ - **copy**: A standalone function for programmatically interacting with the system clipboard.
30
34
 
31
- ### Documentation
35
+ ## Documentation
32
36
 
33
- For usage guides and live demos, visit documentation:
37
+ For full usage guides, API references, and live demonstrations, visit the documentation site:
34
38
  [https://kitzo.vercel.app](https://kitzo.vercel.app)
35
39
 
36
- ---
40
+ Check out the [root project](file:///home/riyad/Desktop/kitzo-monorepo/README.md) for project-wide information.
37
41
 
38
- ### License
42
+ ## License
39
43
 
40
- MIT
44
+ This project is licensed under the MIT License.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "kitzo",
3
- "version": "2.5.5",
4
- "description": "A lightweight React micro-utility.",
3
+ "version": "3.0.0",
4
+ "description": "A lightweight production-ready React micro-utility library providing essential components, hooks, and functions for modern web applications.",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist"
@@ -44,24 +44,14 @@
44
44
  "react-dom": ">=19"
45
45
  },
46
46
  "devDependencies": {
47
- "@changesets/cli": "^2.29.8",
48
47
  "@eslint/js": "^9.39.2",
49
48
  "@tailwindcss/vite": "^4.1.18",
50
- "@types/node": "^25.0.6",
51
- "@types/react": "^19.2.8",
52
- "@types/react-dom": "^19.2.3",
53
49
  "@vitejs/plugin-react-swc": "^4.2.2",
54
- "daisyui": "^5.5.14",
55
- "eslint": "^9.39.2",
56
50
  "eslint-plugin-react-hooks": "^7.0.1",
57
51
  "eslint-plugin-react-refresh": "^0.4.26",
58
52
  "globals": "^17.0.0",
59
- "prettier": "^3.7.4",
60
- "prettier-plugin-tailwindcss": "^0.7.2",
61
53
  "react": "^19.2.3",
62
54
  "react-dom": "^19.2.3",
63
- "tailwindcss": "^4.1.18",
64
- "typescript": "~5.8.2",
65
55
  "typescript-eslint": "^8.52.0",
66
56
  "vite": "^7.3.1",
67
57
  "vite-plugin-dts": "^4.5.4"
@@ -70,6 +60,7 @@
70
60
  "dev": "vite",
71
61
  "dev:host": "vite --host",
72
62
  "build": "tsc -b && vite build",
63
+ "type-check": "tsc --noEmit",
73
64
  "lint": "eslint .",
74
65
  "preview": "vite preview",
75
66
  "cs": "changeset"