@thebuoyant-tsdev/mui-ts-library 2.6.0 → 3.1.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/package.json CHANGED
@@ -1,8 +1,8 @@
1
1
  {
2
2
  "name": "@thebuoyant-tsdev/mui-ts-library",
3
- "version": "2.6.0",
3
+ "version": "3.1.0",
4
4
  "private": false,
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), confirm dialog, tag selector, and password strength meter. Full TypeScript, dark mode, i18n.",
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"
@@ -58,7 +58,6 @@
58
58
  "i18n",
59
59
  "a11y",
60
60
  "storybook",
61
-
62
61
  "gantt",
63
62
  "gantt-chart",
64
63
  "react-gantt",
@@ -72,7 +71,6 @@
72
71
  "virtualization",
73
72
  "dependency-chart",
74
73
  "critical-path",
75
-
76
74
  "rich-text-editor",
77
75
  "wysiwyg",
78
76
  "tiptap",
@@ -81,7 +79,6 @@
81
79
  "markdown",
82
80
  "emoji-picker",
83
81
  "table-editor",
84
-
85
82
  "sql-editor",
86
83
  "sql",
87
84
  "codemirror",
@@ -92,29 +89,19 @@
92
89
  "postgresql",
93
90
  "mysql",
94
91
  "sqlite",
95
-
96
92
  "json-editor",
97
93
  "json-viewer",
98
94
  "json-formatter",
99
95
  "json-validator",
100
96
  "json-schema",
101
-
102
- "confirm-dialog",
103
- "dialog",
104
- "modal",
105
- "alert-dialog",
106
- "countdown",
107
-
108
97
  "tag-input",
109
98
  "tag-selector",
110
99
  "multi-select",
111
100
  "autocomplete",
112
101
  "chip-input",
113
-
114
102
  "password-strength",
115
103
  "password-strength-meter",
116
104
  "password-validator",
117
-
118
105
  "d3",
119
106
  "d3-chart",
120
107
  "d3-visualization",
@@ -159,10 +146,10 @@
159
146
  "peerDependencies": {
160
147
  "@emotion/react": "^11.14.0",
161
148
  "@emotion/styled": "^11.14.1",
162
- "@mui/icons-material": "^9.0.1",
163
- "@mui/material": "^9.0.1",
164
- "react": "^19.2.4",
165
- "react-dom": "^19.2.4"
149
+ "@mui/icons-material": "^9.0.0",
150
+ "@mui/material": "^9.0.0",
151
+ "react": "^19.0.0",
152
+ "react-dom": "^19.0.0"
166
153
  },
167
154
  "dependencies": {
168
155
  "@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 {};