@umami/react-zen 0.215.0 → 0.217.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/README.md +36 -11
- package/dist/index.d.mts +385 -316
- package/dist/index.d.ts +385 -316
- package/dist/index.js +14666 -9520
- package/dist/index.mjs +14722 -9571
- package/package.json +45 -31
- package/styles.css +225 -5346
- package/styles.full.css +2 -0
- package/tailwind.preset.ts +129 -0
- package/dist/index.css +0 -5141
- package/dist/index.css.map +0 -1
package/package.json
CHANGED
|
@@ -1,29 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@umami/react-zen",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.217.0",
|
|
4
4
|
"description": "Modern, minimalist React component library",
|
|
5
|
-
"author": "Umami <hello@umami.is>",
|
|
6
|
-
"license": "MIT",
|
|
7
5
|
"homepage": "https://zen.umami.is",
|
|
8
6
|
"repository": {
|
|
9
7
|
"type": "git",
|
|
10
|
-
"url": "https://github.com/umami-software/react-zen.git"
|
|
8
|
+
"url": "git+https://github.com/umami-software/react-zen.git"
|
|
11
9
|
},
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"author": "Umami <hello@umami.is>",
|
|
12
12
|
"main": "dist/index.js",
|
|
13
13
|
"module": "dist/index.mjs",
|
|
14
14
|
"types": "dist/index.d.ts",
|
|
15
15
|
"files": [
|
|
16
16
|
"dist",
|
|
17
|
-
"styles.css"
|
|
17
|
+
"styles.css",
|
|
18
|
+
"styles.full.css",
|
|
19
|
+
"tailwind.preset.ts"
|
|
18
20
|
],
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
+
"exports": {
|
|
22
|
+
".": {
|
|
23
|
+
"types": "./dist/index.d.ts",
|
|
24
|
+
"import": "./dist/index.mjs",
|
|
25
|
+
"require": "./dist/index.js"
|
|
26
|
+
},
|
|
27
|
+
"./styles.css": "./styles.css",
|
|
28
|
+
"./styles.full.css": "./styles.full.css",
|
|
29
|
+
"./tailwind-preset": "./tailwind.preset.ts"
|
|
21
30
|
},
|
|
22
31
|
"scripts": {
|
|
23
|
-
"dev": "
|
|
24
|
-
"build": "
|
|
25
|
-
"start": "
|
|
26
|
-
"lint": "
|
|
32
|
+
"dev": "pnpm --filter=react-zen-docs dev",
|
|
33
|
+
"build": "pnpm run bundle && pnpm --filter=react-zen-docs build",
|
|
34
|
+
"start": "pnpm --filter=react-zen-docs start",
|
|
35
|
+
"lint": "biome check ./src",
|
|
27
36
|
"icons": "svgr ./src/assets --out-dir src/components/svg --typescript",
|
|
28
37
|
"esbuild": "node esbuild.mjs",
|
|
29
38
|
"rollup": "rollup -c",
|
|
@@ -36,52 +45,57 @@
|
|
|
36
45
|
"biome check --write --no-errors-on-unmatched --files-ignore-unknown=true"
|
|
37
46
|
]
|
|
38
47
|
},
|
|
39
|
-
"dependencies": {
|
|
40
|
-
"@fontsource/jetbrains-mono": "^5.2.8",
|
|
41
|
-
"@internationalized/date": "^3.10.0",
|
|
42
|
-
"@react-aria/focus": "^3.21.2",
|
|
43
|
-
"@react-spring/web": "^9.7.5",
|
|
44
|
-
"classnames": "^2.5.1",
|
|
45
|
-
"glob": "^13.0.0",
|
|
46
|
-
"highlight.js": "^11.11.1",
|
|
47
|
-
"lucide-react": "^0.555.0",
|
|
48
|
-
"next": "^16.0.7",
|
|
49
|
-
"react": "^19.2.1",
|
|
50
|
-
"react-aria-components": "^1.13.0",
|
|
51
|
-
"react-dom": "^19.2.1",
|
|
52
|
-
"react-hook-form": "^7.66.1",
|
|
53
|
-
"react-icons": "^5.4.0",
|
|
54
|
-
"thenby": "^1.3.4",
|
|
55
|
-
"zustand": "^5.0.8"
|
|
56
|
-
},
|
|
57
48
|
"devDependencies": {
|
|
58
49
|
"@biomejs/biome": "^2.3.7",
|
|
59
50
|
"@hyrious/esbuild-plugin-commonjs": "^0.2.6",
|
|
51
|
+
"@internationalized/date": "^3.10.0",
|
|
52
|
+
"@react-aria/focus": "^3.21.2",
|
|
53
|
+
"@react-spring/web": "^9.7.5",
|
|
60
54
|
"@rollup/plugin-alias": "^5.1.0",
|
|
61
55
|
"@rollup/plugin-commonjs": "^25.0.7",
|
|
62
56
|
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
63
57
|
"@svgr/cli": "^8.1.0",
|
|
58
|
+
"@tailwindcss/cli": "^4.1.18",
|
|
59
|
+
"@tailwindcss/postcss": "^4.1.18",
|
|
64
60
|
"@types/mdx": "^2.0.11",
|
|
65
61
|
"@types/node": "^22.19.1",
|
|
66
62
|
"@types/react": "^19.2.7",
|
|
67
63
|
"@types/react-dom": "^19.2.3",
|
|
68
64
|
"@umami/esbuild-plugin-css-modules": "0.4.0",
|
|
69
|
-
"
|
|
65
|
+
"autoprefixer": "^10.4.23",
|
|
70
66
|
"dts-bundle": "^0.7.3",
|
|
71
67
|
"esbuild": "^0.27.0",
|
|
72
68
|
"esbuild-css-modules-plugin": "^3.1.5",
|
|
73
69
|
"esbuild-plugin-svgr": "^3.1.1",
|
|
74
70
|
"esbuild-postcss": "^0.0.4",
|
|
71
|
+
"glob": "^13.0.0",
|
|
72
|
+
"highlight.js": "^11.11.1",
|
|
75
73
|
"husky": "^9.1.1",
|
|
76
74
|
"lint-staged": "^16.2.7",
|
|
75
|
+
"lucide-react": "^0.555.0",
|
|
77
76
|
"npm-run-all": "^4.1.5",
|
|
77
|
+
"postcss": "^8.5.6",
|
|
78
|
+
"react-aria-components": "^1.13.0",
|
|
79
|
+
"react-hook-form": "^7.66.1",
|
|
80
|
+
"react-icons": "^5.4.0",
|
|
78
81
|
"rollup": "^4.53.3",
|
|
79
82
|
"rollup-plugin-copy": "^3.5.0",
|
|
80
83
|
"rollup-plugin-delete": "^2.0.0",
|
|
81
84
|
"rollup-plugin-dts": "^6.3.0",
|
|
82
85
|
"rollup-plugin-esbuild": "^6.1.1",
|
|
83
86
|
"rollup-plugin-postcss": "^4.0.2",
|
|
87
|
+
"tailwind-merge": "^3.4.0",
|
|
88
|
+
"tailwind-variants": "^3.2.2",
|
|
89
|
+
"tailwindcss": "^4.1.18",
|
|
90
|
+
"thenby": "^1.3.4",
|
|
84
91
|
"tsup": "^8.5.1",
|
|
85
|
-
"typescript": "^5.9.3"
|
|
92
|
+
"typescript": "^5.9.3",
|
|
93
|
+
"zustand": "^5.0.8"
|
|
94
|
+
},
|
|
95
|
+
"publishConfig": {
|
|
96
|
+
"access": "public"
|
|
97
|
+
},
|
|
98
|
+
"dependencies": {
|
|
99
|
+
"clsx": "^2.1.1"
|
|
86
100
|
}
|
|
87
101
|
}
|