@thebuoyant-tsdev/mui-ts-library 2.0.1 → 2.2.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 +32 -1
- package/README.md +32 -1
- package/dist/components/json-editor/JsonEditorToolbar.d.ts +2 -2
- package/dist/components/rich-text-editor/RichTextEditor.types.d.ts +23 -0
- package/dist/components/rich-text-editor/RichTextEditorEmojiPicker.d.ts +10 -0
- package/dist/components/rich-text-editor/RichTextEditorImageDialog.d.ts +10 -0
- package/dist/components/rich-text-editor/RichTextEditorTableMenu.d.ts +9 -0
- package/dist/components/rich-text-editor/util/emojis.d.ts +9 -0
- package/dist/components/sql-editor/SqlEditorToolbar.d.ts +2 -2
- 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 +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2662 -1271
- package/package.json +15 -11
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thebuoyant-tsdev/mui-ts-library",
|
|
3
|
-
"version": "2.0
|
|
3
|
+
"version": "2.2.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"
|
|
@@ -138,15 +138,18 @@
|
|
|
138
138
|
"@lezer/highlight": "^1.2.3",
|
|
139
139
|
"@replit/codemirror-minimap": "^0.5.2",
|
|
140
140
|
"@tanstack/react-virtual": "^3.13.24",
|
|
141
|
-
"@tiptap/extension-character-count": "^3.23.
|
|
142
|
-
"@tiptap/extension-color": "^3.23.
|
|
143
|
-
"@tiptap/extension-highlight": "^3.23.
|
|
144
|
-
"@tiptap/extension-
|
|
145
|
-
"@tiptap/extension-
|
|
146
|
-
"@tiptap/extension-
|
|
147
|
-
"@tiptap/extension-
|
|
148
|
-
"@tiptap/
|
|
149
|
-
"@tiptap/
|
|
141
|
+
"@tiptap/extension-character-count": "^3.23.6",
|
|
142
|
+
"@tiptap/extension-color": "^3.23.6",
|
|
143
|
+
"@tiptap/extension-highlight": "^3.23.6",
|
|
144
|
+
"@tiptap/extension-image": "^3.23.6",
|
|
145
|
+
"@tiptap/extension-link": "^3.23.6",
|
|
146
|
+
"@tiptap/extension-placeholder": "^3.23.6",
|
|
147
|
+
"@tiptap/extension-table": "^3.23.6",
|
|
148
|
+
"@tiptap/extension-text-style": "^3.23.6",
|
|
149
|
+
"@tiptap/extension-underline": "^3.23.6",
|
|
150
|
+
"@tiptap/react": "^3.23.6",
|
|
151
|
+
"@tiptap/starter-kit": "^3.23.6",
|
|
152
|
+
"d3": "^7.9.0",
|
|
150
153
|
"sql-formatter": "^15.8.0",
|
|
151
154
|
"tiptap-markdown": "^0.9.0",
|
|
152
155
|
"zustand": "^5.0.12"
|
|
@@ -161,6 +164,7 @@
|
|
|
161
164
|
"@testing-library/jest-dom": "^6.9.1",
|
|
162
165
|
"@testing-library/react": "^16.3.2",
|
|
163
166
|
"@testing-library/user-event": "^14.6.1",
|
|
167
|
+
"@types/d3": "^7.4.3",
|
|
164
168
|
"@types/node": "^24.12.0",
|
|
165
169
|
"@types/react": "^19.2.14",
|
|
166
170
|
"@types/react-dom": "^19.2.3",
|