@thebuoyant-tsdev/mui-ts-library 1.3.1 → 1.4.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 +5 -34
- package/README.md +6 -35
- package/dist/components/confirm-dialog/ConfirmDialog.types.d.ts +4 -4
- package/dist/components/gantt-chart/GanttBarRow.d.ts +24 -0
- package/dist/components/gantt-chart/GanttChart.constants.d.ts +4 -0
- package/dist/components/gantt-chart/GanttChart.types.d.ts +23 -23
- package/dist/components/gantt-chart/GanttDependencyArrows.d.ts +22 -0
- package/dist/components/gantt-chart/GanttStatusContextMenu.d.ts +19 -0
- package/dist/components/gantt-chart/GanttWeekendStrips.d.ts +17 -0
- package/dist/components/gantt-chart/hooks/useGanttDrag.d.ts +44 -0
- package/dist/components/json-editor/JsonEditor.types.d.ts +13 -13
- package/dist/components/password-strength-meter/PasswordStrengthBar.d.ts +12 -0
- package/dist/components/password-strength-meter/PasswordStrengthMeter.types.d.ts +9 -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/shared/ToolbarButton.d.ts +13 -0
- package/dist/components/shared/normalizeSize.d.ts +11 -0
- package/dist/components/sql-editor/SqlEditor.types.d.ts +15 -15
- package/dist/components/tag-selection/TagSelection.types.d.ts +11 -11
- package/dist/index.cjs +1 -1
- package/dist/index.js +1174 -1066
- package/package.json +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thebuoyant-tsdev/mui-ts-library",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.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": {
|