@thebuoyant-tsdev/mui-ts-library 2.6.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/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.0.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"
@@ -99,12 +99,6 @@
99
99
  "json-validator",
100
100
  "json-schema",
101
101
 
102
- "confirm-dialog",
103
- "dialog",
104
- "modal",
105
- "alert-dialog",
106
- "countdown",
107
-
108
102
  "tag-input",
109
103
  "tag-selector",
110
104
  "multi-select",
@@ -159,10 +153,10 @@
159
153
  "peerDependencies": {
160
154
  "@emotion/react": "^11.14.0",
161
155
  "@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"
156
+ "@mui/icons-material": "^9.0.0",
157
+ "@mui/material": "^9.0.0",
158
+ "react": "^19.0.0",
159
+ "react-dom": "^19.0.0"
166
160
  },
167
161
  "dependencies": {
168
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 {};