@trinityui/design-system 2.0.2 → 2.0.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/CHANGELOG.md +19 -0
- package/dist/charts.js +33 -30
- package/dist/components/FlowAutoLayout/index.d.ts +2 -0
- package/dist/components/FlowAutoLayout/index.d.ts.map +1 -0
- package/dist/components/FlowAutoLayout/useFlowAutoLayout.d.ts +24 -0
- package/dist/components/FlowAutoLayout/useFlowAutoLayout.d.ts.map +1 -0
- package/dist/components/Timeline/Timeline.d.ts.map +1 -1
- package/dist/components/index.d.ts +2 -0
- package/dist/components/index.d.ts.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +55606 -4531
- package/package.json +18 -6
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trinityui/design-system",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "2.0.
|
|
4
|
+
"version": "2.0.3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"description": "Trinity Design System - A customizable MUI-based component library",
|
|
7
7
|
"main": "dist/index.js",
|
|
@@ -113,15 +113,17 @@
|
|
|
113
113
|
"react-dom": "^19.2.4"
|
|
114
114
|
},
|
|
115
115
|
"dependencies": {
|
|
116
|
+
"@dagrejs/dagre": "^2.0.4",
|
|
116
117
|
"@fontsource/montserrat": "^5.2.8",
|
|
117
118
|
"@mui/utils": "^7.3.9",
|
|
118
|
-
"@storybook/manager-api": "^8.6.14",
|
|
119
|
-
"@storybook/theming": "^8.6.14",
|
|
120
119
|
"@syncfusion/ej2-react-richtexteditor": "^32.2.9",
|
|
121
120
|
"@tanstack/react-virtual": "^3.13.21",
|
|
121
|
+
"@xyflow/react": "^12.10.1",
|
|
122
122
|
"ag-grid-community": "^35.1.0",
|
|
123
123
|
"ag-grid-enterprise": "^35.1.0",
|
|
124
124
|
"ag-grid-react": "^35.1.0",
|
|
125
|
+
"d3-hierarchy": "^3.1.2",
|
|
126
|
+
"elkjs": "^0.11.1",
|
|
125
127
|
"highcharts": "^12.5.0",
|
|
126
128
|
"highcharts-react-official": "^3.2.3",
|
|
127
129
|
"react-feather": "^2.0.10"
|
|
@@ -137,7 +139,6 @@
|
|
|
137
139
|
"@storybook/addon-a11y": "^10.2.17",
|
|
138
140
|
"@storybook/addon-docs": "^10.2.17",
|
|
139
141
|
"@storybook/addon-vitest": "^10.2.17",
|
|
140
|
-
"@storybook/react": "^10.2.17",
|
|
141
142
|
"@storybook/react-vite": "^10.2.17",
|
|
142
143
|
"@tailwindcss/vite": "latest",
|
|
143
144
|
"@testing-library/jest-dom": "^6.9.1",
|
|
@@ -145,6 +146,7 @@
|
|
|
145
146
|
"@testing-library/user-event": "^14.6.1",
|
|
146
147
|
"@trinityui/design-system-css": "workspace:*",
|
|
147
148
|
"@types/node": "^25.4.0",
|
|
149
|
+
"@types/d3-hierarchy": "^3.1.7",
|
|
148
150
|
"@types/react": "latest",
|
|
149
151
|
"@types/react-dom": "latest",
|
|
150
152
|
"@vitejs/plugin-react": "latest",
|
|
@@ -168,7 +170,8 @@
|
|
|
168
170
|
"typescript-eslint": "^8.57.0",
|
|
169
171
|
"vite": "latest",
|
|
170
172
|
"vitest": "^4.0.18",
|
|
171
|
-
"vitest-axe": "^0.1.0"
|
|
173
|
+
"vitest-axe": "^0.1.0",
|
|
174
|
+
"eslint-plugin-storybook": "10.2.17"
|
|
172
175
|
},
|
|
173
176
|
"keywords": [
|
|
174
177
|
"design-system",
|
|
@@ -179,5 +182,14 @@
|
|
|
179
182
|
"components"
|
|
180
183
|
],
|
|
181
184
|
"author": "Trinity Design",
|
|
182
|
-
"license": "MIT"
|
|
185
|
+
"license": "MIT",
|
|
186
|
+
"imports": {
|
|
187
|
+
"#*": [
|
|
188
|
+
"./*",
|
|
189
|
+
"./*.ts",
|
|
190
|
+
"./*.tsx",
|
|
191
|
+
"./*.js",
|
|
192
|
+
"./*.jsx"
|
|
193
|
+
]
|
|
194
|
+
}
|
|
183
195
|
}
|