@trinityui/design-system 1.0.4 → 1.0.6

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.
Files changed (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +5 -8
package/README.md CHANGED
@@ -6,6 +6,12 @@ MUI v6/7 with Trinity branding. WCAG 2.1 AA accessible.
6
6
  npm install @trinityui/design-system @mui/material @mui/icons-material @emotion/react @emotion/styled
7
7
  ```
8
8
 
9
+ For Angular/Vue/static HTML (CSS only, no React components):
10
+
11
+ ```bash
12
+ npm install @trinityui/design-system-css
13
+ ```
14
+
9
15
  ## Setup (One Time)
10
16
 
11
17
  ```tsx
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@trinityui/design-system",
3
3
  "private": false,
4
- "version": "1.0.4",
4
+ "version": "1.0.6",
5
5
  "type": "module",
6
6
  "description": "Trinity Design System - A customizable MUI-based component library",
7
7
  "main": "dist/index.js",
@@ -39,6 +39,7 @@
39
39
  ],
40
40
  "scripts": {
41
41
  "build": "vite build && tsc --project tsconfig.lib.json && cp src/styles/trinity.css dist/trinity.css",
42
+ "build:css-package": "mkdir -p packages/design-system-css/dist && cp src/styles/trinity.css packages/design-system-css/dist/trinity.css",
42
43
  "build:lib": "tsc --project tsconfig.lib.json",
43
44
  "build:css": "npx tsx scripts/generate-css.ts",
44
45
  "build:css:sync": "npx tsx scripts/generate-css-from-tokens.ts",
@@ -106,15 +107,11 @@
106
107
  "@mui/material": "^7.3.7",
107
108
  "@mui/x-data-grid": "^8.0.0",
108
109
  "react": "^19.2.4",
109
- "react-dom": "^19.2.4",
110
- "recharts": "^3.0.0"
110
+ "react-dom": "^19.2.4"
111
111
  },
112
112
  "peerDependenciesMeta": {
113
113
  "@mui/x-data-grid": {
114
114
  "optional": true
115
- },
116
- "recharts": {
117
- "optional": true
118
115
  }
119
116
  },
120
117
  "dependencies": {
@@ -122,7 +119,8 @@
122
119
  "@mui/utils": "^7.3.8",
123
120
  "@storybook/manager-api": "^8.6.14",
124
121
  "@storybook/theming": "^8.6.14",
125
- "react-feather": "^2.0.10"
122
+ "react-feather": "^2.0.10",
123
+ "recharts": "^3.7.0"
126
124
  },
127
125
  "devDependencies": {
128
126
  "@emotion/react": "^11.14.0",
@@ -157,7 +155,6 @@
157
155
  "jsdom": "^28.1.0",
158
156
  "jszip": "^3.10.1",
159
157
  "playwright": "^1.58.2",
160
- "recharts": "^3.7.0",
161
158
  "size-limit": "^12.0.0",
162
159
  "storybook": "^10.2.12",
163
160
  "tailwindcss": "latest",