@thebuoyant-tsdev/mui-ts-library 2.1.0 → 2.3.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.de.md +99 -10
- package/README.md +99 -10
- package/dist/components/chord-chart/ChordChart.d.ts +5 -0
- package/dist/components/chord-chart/ChordChart.types.d.ts +80 -0
- package/dist/components/sunburst-chart/SunburstChart.d.ts +5 -0
- package/dist/components/sunburst-chart/SunburstChart.types.d.ts +65 -0
- package/dist/index.cjs +1 -1
- package/dist/index.d.cts +4 -0
- package/dist/index.d.ts +4 -0
- package/dist/index.js +724 -184
- package/package.json +4 -2
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thebuoyant-tsdev/mui-ts-library",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.0",
|
|
4
4
|
"private": false,
|
|
5
|
-
"description": "Type-safe React component library for MUI v9. Confirm dialog
|
|
5
|
+
"description": "Type-safe React component library for MUI v9. Confirm dialog, Gantt chart, tag selector, rich text editor, SQL editor, JSON editor, password strength meter, and D3 charts (SunburstChart). Full TypeScript, dark mode, i18n.",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Thomas Schlender",
|
|
8
8
|
"email": "thebuoyant@gmail.com"
|
|
@@ -149,6 +149,7 @@
|
|
|
149
149
|
"@tiptap/extension-underline": "^3.23.6",
|
|
150
150
|
"@tiptap/react": "^3.23.6",
|
|
151
151
|
"@tiptap/starter-kit": "^3.23.6",
|
|
152
|
+
"d3": "^7.9.0",
|
|
152
153
|
"sql-formatter": "^15.8.0",
|
|
153
154
|
"tiptap-markdown": "^0.9.0",
|
|
154
155
|
"zustand": "^5.0.12"
|
|
@@ -163,6 +164,7 @@
|
|
|
163
164
|
"@testing-library/jest-dom": "^6.9.1",
|
|
164
165
|
"@testing-library/react": "^16.3.2",
|
|
165
166
|
"@testing-library/user-event": "^14.6.1",
|
|
167
|
+
"@types/d3": "^7.4.3",
|
|
166
168
|
"@types/node": "^24.12.0",
|
|
167
169
|
"@types/react": "^19.2.14",
|
|
168
170
|
"@types/react-dom": "^19.2.3",
|