@chitrank2050/monoline-ui 0.2.0 → 0.2.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.
- package/README.md +3 -1
- package/metadata.json +3 -0
- package/package.json +15 -2
package/README.md
CHANGED
|
@@ -230,7 +230,9 @@ Monoline supports three levels of client-router control:
|
|
|
230
230
|
```tsx
|
|
231
231
|
import Link from "next/link"
|
|
232
232
|
|
|
233
|
-
|
|
233
|
+
export default function MyFooter() {
|
|
234
|
+
return <Footer linkComponent={Link} columns={myColumns} />
|
|
235
|
+
}
|
|
234
236
|
```
|
|
235
237
|
|
|
236
238
|
**B. Per-link** - override individual links in the config array:
|
package/metadata.json
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chitrank2050/monoline-ui",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"description": "A token-first, responsive React component library and Tailwind CSS v4 design system built from my portfolio's visual language.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"author": {
|
|
@@ -8,6 +8,7 @@
|
|
|
8
8
|
"email": "chitrank2050@gmail.com",
|
|
9
9
|
"url": "https://www.chitrankagnihotri.com"
|
|
10
10
|
},
|
|
11
|
+
"homepage": "https://monolineui.chitrankagnihotri.com/",
|
|
11
12
|
"repository": {
|
|
12
13
|
"type": "git",
|
|
13
14
|
"url": "https://github.com/chitranklabs/monoline-ui"
|
|
@@ -28,7 +29,19 @@
|
|
|
28
29
|
"button",
|
|
29
30
|
"toggle",
|
|
30
31
|
"tag",
|
|
31
|
-
"footer"
|
|
32
|
+
"footer",
|
|
33
|
+
"avatar",
|
|
34
|
+
"badge",
|
|
35
|
+
"callout",
|
|
36
|
+
"card",
|
|
37
|
+
"code-block",
|
|
38
|
+
"command-search",
|
|
39
|
+
"input",
|
|
40
|
+
"navbar",
|
|
41
|
+
"select",
|
|
42
|
+
"skeleton",
|
|
43
|
+
"toast",
|
|
44
|
+
"segmented-control"
|
|
32
45
|
],
|
|
33
46
|
"license": "MIT",
|
|
34
47
|
"publishConfig": {
|