meticulous-ui 3.6.5 → 3.6.6

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 +37 -33
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -34,12 +34,12 @@ npm install react react-dom styled-components
34
34
 
35
35
  Unlike many UI libraries, meticulous-ui combines:
36
36
 
37
- ✅ Components
38
- ✅ Hooks
39
- ✅ Utilities
40
- ✅ Icons
41
- ✅ Tokens
42
- ✅ Tree-shaking
37
+ ✅ Components
38
+ ✅ Hooks
39
+ ✅ Utilities
40
+ ✅ Icons
41
+ ✅ Tokens
42
+ ✅ Tree-shaking
43
43
  ✅ Styled-components theming
44
44
 
45
45
  One install instead of 5 packages.
@@ -77,33 +77,37 @@ import blue from 'meticulous-ui/colors/blue';
77
77
 
78
78
  ## 📦 Components
79
79
 
80
- | Component | Description |
81
- | ---------------- | ---------------------------------------------------------------------------------------------------------------- |
82
- | `Pagination` | Fully responsive pagination component |
83
- | `Toast` | Push 4 types of notifications on screen |
84
- | `Timer` | Renders analog / digital clock with alarm |
85
- | `OtpInput` | Gives inputs to enter and edit OTP |
86
- | `VideoPlayer` | Renders video with keyboard shortcuts |
87
- | `Image` | Renders image with shimmer, lower resolution |
88
- | `Input` | Renders input box to let user enter input |
89
- | `Checkbox` | Renders checkbox to let user give boolean value |
90
- | `RadioGroup` | Renders radio options in a group to let user select |
91
- | `FileUploader` | Renders a button type input from where user can upload |
92
- | `Textarea` | Renders textarea box to let user enter description |
93
- | `Dropdown` | Renders dropdown to select from options |
94
- | `Selectbox` | Renders selectbox to select multiple values from options |
95
- | `Spinner` | Renders a spinner to show the loading state |
96
- | `Loader` | Renders a loader with dots to show the loading state |
97
- | `PageLoader` | Renders a loader with line at the top of page |
98
- | `Button` | Renders a button to click & take an action |
99
- | `Shimmer` | Animated skeleton loading placeholder |
100
- | `Carousel` | Carousel providing slider between components displaying slides |
101
- | `Modal` | Accessible dialog overlay with title, body, footer, Escape/overlay-click dismissal, and mobile bottom-sheet mode |
102
- | `DatePicker` | Calendar-based date picker with month/year navigation |
103
- | `Headings` | Semantic heading components: `H1`–`H6` |
104
- | `P` | Styled paragraph component |
105
- | `ToastContainer` | Renders the container that displays active Toast notifications |
106
- | `RootComponent` | This is the required wrapper for any app that uses meticulous-ui |
80
+ Production-ready React components for forms, feedback, layout, media, navigation, and interactions.
81
+
82
+ ### Core UI
83
+
84
+ `Button` · `Input` · `Textarea` · `Checkbox` · `RadioGroup` · `Dropdown` · `Selectbox`
85
+
86
+ ### Feedback & Loading
87
+
88
+ `Toast` · `ToastContainer` · `Spinner` · `Loader` · `PageLoader` · `Shimmer`
89
+
90
+ ### Overlays & Navigation
91
+
92
+ `Modal` · `Pagination` · `Carousel`
93
+
94
+ ### Forms & Productivity
95
+
96
+ `OtpInput` · `FileUploader` · `DatePicker`
97
+
98
+ ### Media
99
+
100
+ `Image` · `VideoPlayer`
101
+
102
+ ### Typography
103
+
104
+ `Headings` (`H1`–`H6`) · `P`
105
+
106
+ ### Utility Components
107
+
108
+ `Timer` · `RootComponent`
109
+
110
+ 👉 Explore full docs and live examples on the [demo site](https://meticulous-ui.vercel.app/).
107
111
 
108
112
  ## 📦 Icon Components
109
113
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meticulous-ui",
3
- "version": "3.6.5",
3
+ "version": "3.6.6",
4
4
  "license": "ISC",
5
5
  "description": "A comprehensive React UI component library with a wide range of customizable components, icons, colors, and utilities for building modern web applications.",
6
6
  "types": "./index.d.ts",