@thebuoyant-tsdev/mui-ts-library 1.3.2 → 2.0.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 +13 -8
- package/README.md +13 -8
- package/dist/components/confirm-dialog/ConfirmDialog.types.d.ts +6 -4
- package/dist/components/gantt-chart/GanttChart.types.d.ts +24 -23
- package/dist/components/gantt-chart/GanttTimelineHeader.d.ts +5 -1
- package/dist/components/json-editor/JsonEditor.d.ts +1 -1
- package/dist/components/json-editor/JsonEditor.types.d.ts +15 -13
- package/dist/components/json-editor/JsonEditorContent.d.ts +2 -1
- package/dist/components/password-strength-meter/PasswordStrengthBar.d.ts +3 -1
- package/dist/components/password-strength-meter/PasswordStrengthMeter.d.ts +1 -1
- package/dist/components/password-strength-meter/PasswordStrengthMeter.types.d.ts +21 -9
- package/dist/components/rich-text-editor/RichTextEditor.d.ts +1 -1
- package/dist/components/rich-text-editor/RichTextEditor.types.d.ts +23 -13
- package/dist/components/rich-text-editor/RichTextEditorFooter.d.ts +3 -1
- package/dist/components/rich-text-editor/RichTextEditorToolbar.d.ts +3 -1
- package/dist/components/sql-editor/SqlEditor.types.d.ts +15 -15
- package/dist/components/sql-editor/SqlEditorContent.d.ts +2 -1
- package/dist/components/tag-selection/TagSelection.types.d.ts +11 -11
- package/dist/index.cjs +1 -1
- package/dist/index.js +955 -785
- package/package.json +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thebuoyant-tsdev/mui-ts-library",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "Type-safe React component library for MUI v9. Confirm dialog with useConfirm hook, Gantt chart with drag & drop, multi-tag selector, WYSIWYG rich text editor (TipTap v3), SQL code editor (CodeMirror 6), JSON editor with real-time validation (CodeMirror 6), and password strength meter. Full TypeScript, dark mode, i18n.",
|
|
6
6
|
"author": {
|
|
@@ -113,6 +113,7 @@
|
|
|
113
113
|
"preview": "vite preview",
|
|
114
114
|
"storybook": "storybook dev -p 6006",
|
|
115
115
|
"build-storybook": "storybook build",
|
|
116
|
+
"preview-storybook": "http-server storybook-static -p 6007 -o --cors",
|
|
116
117
|
"build-storybook-docker": "bash scripts/build-storybook-docker.sh",
|
|
117
118
|
"test": "vitest",
|
|
118
119
|
"test:run": "vitest run",
|
|
@@ -136,6 +137,7 @@
|
|
|
136
137
|
"@codemirror/state": "^6.6.0",
|
|
137
138
|
"@codemirror/view": "^6.43.0",
|
|
138
139
|
"@lezer/highlight": "^1.2.3",
|
|
140
|
+
"@replit/codemirror-minimap": "^0.5.2",
|
|
139
141
|
"@tanstack/react-virtual": "^3.13.24",
|
|
140
142
|
"@tiptap/extension-character-count": "^3.23.4",
|
|
141
143
|
"@tiptap/extension-color": "^3.23.4",
|
|
@@ -170,6 +172,7 @@
|
|
|
170
172
|
"eslint-plugin-react-refresh": "^0.5.2",
|
|
171
173
|
"eslint-plugin-storybook": "^10.3.4",
|
|
172
174
|
"globals": "^17.4.0",
|
|
175
|
+
"http-server": "^14.1.1",
|
|
173
176
|
"jsdom": "^29.0.1",
|
|
174
177
|
"storybook": "^10.3.4",
|
|
175
178
|
"typescript": "~5.9.3",
|