meticulous-ui 1.0.2 â 1.0.3
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 +14 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -6,13 +6,18 @@ A lightweight, modern React component library designed for elegance and precisio
|
|
|
6
6
|
|
|
7
7
|
## đ Installation
|
|
8
8
|
|
|
9
|
-
```
|
|
9
|
+
```
|
|
10
|
+
|
|
10
11
|
npm install meticulous-ui
|
|
11
12
|
# or
|
|
12
13
|
yarn add meticulous-ui
|
|
13
14
|
|
|
15
|
+
```
|
|
16
|
+
|
|
14
17
|
## đ§Š Usage
|
|
15
18
|
|
|
19
|
+
```jsx
|
|
20
|
+
|
|
16
21
|
import React from "react";
|
|
17
22
|
import { Pagination } from "meticulous-ui";
|
|
18
23
|
|
|
@@ -26,30 +31,37 @@ function App() {
|
|
|
26
31
|
}
|
|
27
32
|
|
|
28
33
|
export default App;
|
|
34
|
+
|
|
29
35
|
```
|
|
30
36
|
|
|
31
37
|
## đĻ Components
|
|
38
|
+
|
|
32
39
|
```
|
|
40
|
+
|
|
33
41
|
| Component | Description |
|
|
34
42
|
| -------------- | ------------------------------------- |
|
|
35
43
|
| `Pagination` | Fully responsive pagination component |
|
|
36
44
|
| `ChevronLeft` | Left navigation icon |
|
|
37
45
|
| `ChevronRight` | Right navigation icon |
|
|
46
|
+
|
|
38
47
|
```
|
|
39
48
|
|
|
40
49
|
## đą Features
|
|
41
50
|
|
|
42
51
|
```
|
|
52
|
+
|
|
43
53
|
âī¸ Built with React + Styled Components
|
|
44
54
|
đ¨ Zero external CSS dependencies
|
|
45
55
|
đ§ą Easy to extend and customize
|
|
46
56
|
đĒļ Small bundle size
|
|
47
57
|
đĻ ESM + CJS support out of the box
|
|
58
|
+
|
|
48
59
|
```
|
|
49
60
|
|
|
50
61
|
## đ ī¸ Build Setup (for contributors)
|
|
51
62
|
|
|
52
63
|
```
|
|
64
|
+
|
|
53
65
|
# install dependencies
|
|
54
66
|
npm install
|
|
55
67
|
|
|
@@ -58,4 +70,5 @@ npm run dev
|
|
|
58
70
|
|
|
59
71
|
# build for production (dist/)
|
|
60
72
|
npm run build
|
|
73
|
+
|
|
61
74
|
```
|