@thebuoyant-tsdev/mui-ts-library 2.4.0 → 3.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 +21 -32
- package/README.md +21 -32
- package/dist/components/chord-chart/ChordChart.d.ts +1 -1
- package/dist/components/chord-chart/ChordChart.types.d.ts +15 -0
- package/dist/components/circle-packing-chart/CirclePackingChart.d.ts +5 -0
- package/dist/components/circle-packing-chart/CirclePackingChart.types.d.ts +104 -0
- package/dist/components/gantt-chart/GanttChart.constants.d.ts +1 -0
- package/dist/components/gantt-chart/GanttChart.d.ts +1 -1
- package/dist/components/gantt-chart/GanttChart.types.d.ts +16 -0
- package/dist/components/gantt-chart/GanttTaskPanel.d.ts +2 -1
- package/dist/components/gantt-chart/GanttToolbar.d.ts +2 -1
- package/dist/components/horizontal-tree-chart/HorizontalTreeChart.d.ts +5 -0
- package/dist/components/horizontal-tree-chart/HorizontalTreeChart.types.d.ts +95 -0
- package/dist/components/password-strength-meter/PasswordStrengthMeter.d.ts +1 -1
- package/dist/components/password-strength-meter/PasswordStrengthMeter.types.d.ts +36 -0
- package/dist/components/radial-tree-chart/RadialTreeChart.types.d.ts +6 -0
- package/dist/components/sunburst-chart/SunburstChart.types.d.ts +6 -0
- package/dist/components/tag-selection/TagSelection.types.d.ts +5 -1
- package/dist/components/tag-selection/TagSelectionAutocomplete.d.ts +2 -2
- package/dist/index.cjs +2 -1
- package/dist/index.d.cts +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +2610 -1419
- package/package.json +61 -29
- package/dist/components/confirm-dialog/ConfirmDialog.types.d.ts +0 -23
- package/dist/components/confirm-dialog/ConfirmDialogProvider.d.ts +0 -5
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thebuoyant-tsdev/mui-ts-library",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "3.0.0",
|
|
4
4
|
"private": false,
|
|
5
|
-
"description": "Type-safe React component library for MUI v9.
|
|
5
|
+
"description": "Type-safe React component library for MUI v9. Gantt chart with drag & drop, WYSIWYG rich text editor (TipTap), SQL & JSON code editors (CodeMirror 6), D3 data visualizations (Sunburst, Chord, RadialTree, CirclePacking, HorizontalTree), tag selector, and password strength meter. Full TypeScript, dark mode, i18n.",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Thomas Schlender",
|
|
8
8
|
"email": "thebuoyant@gmail.com"
|
|
@@ -42,65 +42,97 @@
|
|
|
42
42
|
"sideEffects": false,
|
|
43
43
|
"keywords": [
|
|
44
44
|
"react",
|
|
45
|
+
"react-19",
|
|
45
46
|
"typescript",
|
|
46
47
|
"mui",
|
|
47
48
|
"material-ui",
|
|
49
|
+
"mui-v9",
|
|
48
50
|
"mui-components",
|
|
49
51
|
"material-design",
|
|
50
52
|
"component-library",
|
|
53
|
+
"ui-library",
|
|
51
54
|
"ui-components",
|
|
52
55
|
"react-components",
|
|
53
|
-
"form-components",
|
|
54
56
|
"dark-mode",
|
|
57
|
+
"theming",
|
|
55
58
|
"i18n",
|
|
56
|
-
"accessibility",
|
|
57
59
|
"a11y",
|
|
60
|
+
"storybook",
|
|
61
|
+
|
|
58
62
|
"gantt",
|
|
59
63
|
"gantt-chart",
|
|
60
64
|
"react-gantt",
|
|
61
|
-
"react-gantt-chart",
|
|
62
65
|
"project-management",
|
|
63
66
|
"project-timeline",
|
|
64
67
|
"task-management",
|
|
65
68
|
"timeline",
|
|
66
69
|
"milestones",
|
|
67
70
|
"drag-and-drop",
|
|
68
|
-
"drag-drop",
|
|
69
71
|
"resizable",
|
|
70
72
|
"virtualization",
|
|
73
|
+
"dependency-chart",
|
|
74
|
+
"critical-path",
|
|
75
|
+
|
|
71
76
|
"rich-text-editor",
|
|
72
|
-
"react-rich-text-editor",
|
|
73
|
-
"rich-text",
|
|
74
|
-
"text-editor",
|
|
75
77
|
"wysiwyg",
|
|
76
78
|
"tiptap",
|
|
77
79
|
"prosemirror",
|
|
78
|
-
"
|
|
79
|
-
"
|
|
80
|
-
"
|
|
81
|
-
"
|
|
82
|
-
|
|
83
|
-
"multi-select",
|
|
84
|
-
"password-strength",
|
|
85
|
-
"password-strength-meter",
|
|
80
|
+
"text-editor",
|
|
81
|
+
"markdown",
|
|
82
|
+
"emoji-picker",
|
|
83
|
+
"table-editor",
|
|
84
|
+
|
|
86
85
|
"sql-editor",
|
|
87
86
|
"sql",
|
|
88
87
|
"codemirror",
|
|
89
88
|
"codemirror-6",
|
|
90
89
|
"code-editor",
|
|
91
|
-
"sql-formatter",
|
|
92
90
|
"syntax-highlighting",
|
|
93
91
|
"sql-autocomplete",
|
|
94
|
-
"
|
|
95
|
-
"
|
|
96
|
-
"
|
|
97
|
-
|
|
98
|
-
"alert-dialog",
|
|
92
|
+
"postgresql",
|
|
93
|
+
"mysql",
|
|
94
|
+
"sqlite",
|
|
95
|
+
|
|
99
96
|
"json-editor",
|
|
100
|
-
"json",
|
|
101
97
|
"json-viewer",
|
|
102
98
|
"json-formatter",
|
|
103
|
-
"json-validator"
|
|
99
|
+
"json-validator",
|
|
100
|
+
"json-schema",
|
|
101
|
+
|
|
102
|
+
"tag-input",
|
|
103
|
+
"tag-selector",
|
|
104
|
+
"multi-select",
|
|
105
|
+
"autocomplete",
|
|
106
|
+
"chip-input",
|
|
107
|
+
|
|
108
|
+
"password-strength",
|
|
109
|
+
"password-strength-meter",
|
|
110
|
+
"password-validator",
|
|
111
|
+
|
|
112
|
+
"d3",
|
|
113
|
+
"d3-chart",
|
|
114
|
+
"d3-visualization",
|
|
115
|
+
"data-visualization",
|
|
116
|
+
"data-viz",
|
|
117
|
+
"chart",
|
|
118
|
+
"charts",
|
|
119
|
+
"react-chart",
|
|
120
|
+
"hierarchy",
|
|
121
|
+
"hierarchical-data",
|
|
122
|
+
"sunburst",
|
|
123
|
+
"sunburst-chart",
|
|
124
|
+
"chord-diagram",
|
|
125
|
+
"chord-chart",
|
|
126
|
+
"circle-packing",
|
|
127
|
+
"bubble-chart",
|
|
128
|
+
"radial-tree",
|
|
129
|
+
"radial-chart",
|
|
130
|
+
"tree-chart",
|
|
131
|
+
"horizontal-tree",
|
|
132
|
+
"tree-diagram",
|
|
133
|
+
"org-chart",
|
|
134
|
+
"dashboard",
|
|
135
|
+
"analytics"
|
|
104
136
|
],
|
|
105
137
|
"scripts": {
|
|
106
138
|
"dev": "vite",
|
|
@@ -121,10 +153,10 @@
|
|
|
121
153
|
"peerDependencies": {
|
|
122
154
|
"@emotion/react": "^11.14.0",
|
|
123
155
|
"@emotion/styled": "^11.14.1",
|
|
124
|
-
"@mui/icons-material": "^9.0.
|
|
125
|
-
"@mui/material": "^9.0.
|
|
126
|
-
"react": "^19.
|
|
127
|
-
"react-dom": "^19.
|
|
156
|
+
"@mui/icons-material": "^9.0.0",
|
|
157
|
+
"@mui/material": "^9.0.0",
|
|
158
|
+
"react": "^19.0.0",
|
|
159
|
+
"react-dom": "^19.0.0"
|
|
128
160
|
},
|
|
129
161
|
"dependencies": {
|
|
130
162
|
"@codemirror/autocomplete": "^6.20.2",
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import type React from "react";
|
|
2
|
-
export type ConfirmDialogSeverity = "info" | "warning" | "error" | "success";
|
|
3
|
-
export type ConfirmDialogTranslation = {
|
|
4
|
-
confirmLabel: string;
|
|
5
|
-
cancelLabel: string;
|
|
6
|
-
};
|
|
7
|
-
export declare const DEFAULT_CONFIRM_DIALOG_TRANSLATION: ConfirmDialogTranslation;
|
|
8
|
-
export type ConfirmDialogOptions = {
|
|
9
|
-
cancelLabel?: string;
|
|
10
|
-
confirmLabel?: string;
|
|
11
|
-
/** Auto-confirm after this many seconds. Shows a live countdown in the confirm button. */
|
|
12
|
-
countdown?: number;
|
|
13
|
-
description?: string | React.ReactNode;
|
|
14
|
-
hideCancelButton?: boolean;
|
|
15
|
-
maxWidth?: "xs" | "sm" | "md" | "lg" | "xl";
|
|
16
|
-
severity?: ConfirmDialogSeverity;
|
|
17
|
-
showIcon?: boolean;
|
|
18
|
-
title?: string;
|
|
19
|
-
};
|
|
20
|
-
export type ConfirmDialogProviderProps = {
|
|
21
|
-
children: React.ReactNode;
|
|
22
|
-
translation?: Partial<ConfirmDialogTranslation>;
|
|
23
|
-
};
|
|
@@ -1,5 +0,0 @@
|
|
|
1
|
-
import type { ConfirmDialogOptions, ConfirmDialogProviderProps } from "./ConfirmDialog.types";
|
|
2
|
-
type ConfirmFn = (options: ConfirmDialogOptions) => Promise<boolean>;
|
|
3
|
-
export declare function ConfirmDialogProvider({ children, translation }: ConfirmDialogProviderProps): import("react/jsx-runtime").JSX.Element;
|
|
4
|
-
export declare function useConfirm(): ConfirmFn;
|
|
5
|
-
export {};
|