react-18-ui-library 0.3.1 → 0.3.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 +13 -1
- package/package.json +4 -2
package/README.md
CHANGED
|
@@ -3,13 +3,23 @@
|
|
|
3
3
|
> A fully customizable, theme-aware React 18 enterprise UI component library — 70+ components, schema-driven forms, fluent validation, drag-and-drop file upload, and zero runtime CSS-in-JS overhead.
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/react-18-ui-library)
|
|
6
|
+
[](https://6998a00a26549f1450ed8008-alszlltjoh.chromatic.com/)
|
|
6
7
|
[](https://www.typescriptlang.org/)
|
|
7
8
|
[](https://react.dev/)
|
|
8
9
|
[](https://tailwindcss.com/)
|
|
9
10
|
[](LICENSE)
|
|
10
11
|
[](https://snyk.io/)
|
|
11
12
|
|
|
12
|
-
|
|
13
|
+
---
|
|
14
|
+
|
|
15
|
+
<p align="center">
|
|
16
|
+
<strong>📚 <a href="https://6998a00a26549f1450ed8008-alszlltjoh.chromatic.com/">View the live component library in Storybook</a></strong><br>
|
|
17
|
+
<em>Browse, test, and explore 70+ components</em>
|
|
18
|
+
</p>
|
|
19
|
+
|
|
20
|
+

|
|
21
|
+
|
|
22
|
+
---
|
|
13
23
|
|
|
14
24
|
## Table of Contents
|
|
15
25
|
|
|
@@ -73,6 +83,8 @@ export function App() {
|
|
|
73
83
|
|
|
74
84
|
> **Important:** `react-18-ui-library/styles` must be imported **before** any of your own stylesheets so your CSS token overrides take precedence. You do **not** need Tailwind installed in your consuming app — all utility classes are pre-compiled into the library's stylesheet.
|
|
75
85
|
|
|
86
|
+
> **📚 [View all components in Storybook →](https://6998a00a26549f1450ed8008-alszlltjoh.chromatic.com/)** — Browse and interact with the full component library.
|
|
87
|
+
|
|
76
88
|
---
|
|
77
89
|
|
|
78
90
|
## Theme System
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-18-ui-library",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.3",
|
|
4
4
|
"description": "A fully customizable, theme-aware React 18 enterprise UI component library",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.esm.js",
|
|
@@ -34,7 +34,8 @@
|
|
|
34
34
|
"snyk:report:html": "snyk test --json-file-output=reports/snyk-results.json; node scripts/snyk-report.mjs",
|
|
35
35
|
"publish:minor": "npm version minor && npm publish --provenance --access public",
|
|
36
36
|
"publish:major": "npm version major && npm publish --provenance --access public",
|
|
37
|
-
"publish:patch": "npm version patch && npm publish --provenance --access public"
|
|
37
|
+
"publish:patch": "npm version patch && npm publish --provenance --access public",
|
|
38
|
+
"chromatic": "npx chromatic"
|
|
38
39
|
},
|
|
39
40
|
"peerDependencies": {
|
|
40
41
|
"react": "^18.0.0",
|
|
@@ -88,6 +89,7 @@
|
|
|
88
89
|
"@vitejs/plugin-react": "^4.2.1",
|
|
89
90
|
"@vitest/coverage-v8": "^1.3.1",
|
|
90
91
|
"autoprefixer": "^10.4.18",
|
|
92
|
+
"chromatic": "^15.1.1",
|
|
91
93
|
"eslint": "^8.57.0",
|
|
92
94
|
"eslint-plugin-react": "^7.34.0",
|
|
93
95
|
"eslint-plugin-react-hooks": "^4.6.0",
|