@umami/react-zen 0.75.0 → 0.76.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.
- package/package.json +19 -13
- package/styles.css +2 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umami/react-zen",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.76.0",
|
|
4
4
|
"description": "Modern, minimalist React component library",
|
|
5
5
|
"author": "Umami <hello@umami.is>",
|
|
6
6
|
"license": "MIT",
|
|
@@ -19,6 +19,18 @@
|
|
|
19
19
|
"publishConfig": {
|
|
20
20
|
"access": "public"
|
|
21
21
|
},
|
|
22
|
+
"scripts": {
|
|
23
|
+
"dev": "next dev -p 9001 --turbo",
|
|
24
|
+
"build": "next build",
|
|
25
|
+
"start": "next start",
|
|
26
|
+
"lint": "next lint",
|
|
27
|
+
"types": "tsc -p tsconfig.build.json",
|
|
28
|
+
"esbuild": "node esbuild.mjs",
|
|
29
|
+
"rollup": "rollup -c",
|
|
30
|
+
"dts": "node dts.mjs",
|
|
31
|
+
"css": "node css.mjs",
|
|
32
|
+
"bundle": "npm-run-all types dts esbuild css"
|
|
33
|
+
},
|
|
22
34
|
"lint-staged": {
|
|
23
35
|
"**/*.{js,jsx,ts,tsx}": [
|
|
24
36
|
"prettier --write",
|
|
@@ -89,16 +101,10 @@
|
|
|
89
101
|
"stylelint-config-recommended": "^15.0.0",
|
|
90
102
|
"typescript": "^5.7.3"
|
|
91
103
|
},
|
|
92
|
-
"
|
|
93
|
-
"
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
"types": "tsc -p tsconfig.build.json",
|
|
98
|
-
"esbuild": "node esbuild.mjs",
|
|
99
|
-
"rollup": "rollup -c",
|
|
100
|
-
"dts": "node dts.mjs",
|
|
101
|
-
"css": "node css.mjs",
|
|
102
|
-
"bundle": "npm-run-all types dts esbuild css"
|
|
104
|
+
"pnpm": {
|
|
105
|
+
"onlyBuiltDependencies": [
|
|
106
|
+
"esbuild",
|
|
107
|
+
"sharp"
|
|
108
|
+
]
|
|
103
109
|
}
|
|
104
|
-
}
|
|
110
|
+
}
|
package/styles.css
CHANGED
|
@@ -296,11 +296,13 @@ li {
|
|
|
296
296
|
}
|
|
297
297
|
|
|
298
298
|
:where(html, body) {
|
|
299
|
+
color: var(--font-color);
|
|
299
300
|
font-size: var(--font-size);
|
|
300
301
|
background-color: var(--background-color);
|
|
301
302
|
}
|
|
302
303
|
|
|
303
304
|
:where(a, a:active, a:visited, a:hover) {
|
|
305
|
+
color: var(--font-color);
|
|
304
306
|
text-decoration: none;
|
|
305
307
|
}
|
|
306
308
|
|
|
@@ -313,7 +315,6 @@ li {
|
|
|
313
315
|
}
|
|
314
316
|
|
|
315
317
|
:where(*) {
|
|
316
|
-
color: var(--font-color);
|
|
317
318
|
outline-color: var(--primary-color);
|
|
318
319
|
}
|
|
319
320
|
|