@thebuoyant-tsdev/mui-ts-library 3.1.0 → 3.2.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 +41 -0
- package/README.md +41 -0
- package/package.json +1 -1
package/README.de.md
CHANGED
|
@@ -6,6 +6,8 @@ Eine typsichere React-Komponentenbibliothek auf Basis von **TypeScript** und **M
|
|
|
6
6
|
|
|
7
7
|
**[→ Live-Storybook](https://thebuoyant.github.io/mui-ts-library/)** — alle Komponenten interaktiv erkunden, ohne Installation.
|
|
8
8
|
|
|
9
|
+
**[→ Im Browser ausprobieren (StackBlitz)](https://stackblitz.com/github/thebuoyant/mui-ts-library/tree/main/stackblitz-demo?startScript=dev)** — live bearbeitbare Demo, keine Installation nötig.
|
|
10
|
+
|
|
9
11
|
---
|
|
10
12
|
|
|
11
13
|
## Komponenten
|
|
@@ -309,6 +311,45 @@ import type {
|
|
|
309
311
|
|
|
310
312
|
---
|
|
311
313
|
|
|
314
|
+
## Changelog
|
|
315
|
+
|
|
316
|
+
### [3.2.0] — 2026-06-16
|
|
317
|
+
|
|
318
|
+
**StackBlitz Live Demo**
|
|
319
|
+
- Neue interaktive Demo — direkt im Browser öffnen, keine lokale Installation nötig: [→ Im Browser ausprobieren](https://stackblitz.com/github/thebuoyant/mui-ts-library/tree/main/stackblitz-demo?startScript=dev)
|
|
320
|
+
- Zeigt TagSelection (mit Search-Highlighting), PasswordStrengthMeter (mit Generator) und GanttChart (Drag & Resize).
|
|
321
|
+
|
|
322
|
+
---
|
|
323
|
+
|
|
324
|
+
### [3.1.0] — 2026-06-16
|
|
325
|
+
|
|
326
|
+
**TagSelection — Suchergebnis-Highlighting**
|
|
327
|
+
- Übereinstimmende Teile von Tag-Labels im Dropdown werden beim Tippen **fett** hervorgehoben (z. B. `"Reac"` → **Reac**t).
|
|
328
|
+
- Case-insensitiv, keine API-Änderungen.
|
|
329
|
+
|
|
330
|
+
---
|
|
331
|
+
|
|
332
|
+
### [3.0.0] — 2026-06-15 — Breaking Changes
|
|
333
|
+
|
|
334
|
+
**Entfernt**
|
|
335
|
+
- `ConfirmDialog`, `ConfirmDialogProvider`, `useConfirm` komplett entfernt. Migration: MUI `Dialog` direkt verwenden oder bei `2.x` bleiben.
|
|
336
|
+
|
|
337
|
+
**TagSelection — `onTagCreate`-Signatur geändert**
|
|
338
|
+
- Vorher: `(label: string, color: TagColor) => void`
|
|
339
|
+
- Nachher: `(tag: TagSelectionItem) => void` — Tag ist vollständig konstruiert, enthält bereits `selected: true` und gewählte Farben.
|
|
340
|
+
|
|
341
|
+
**TagSelection — Custom-Color-Picker**
|
|
342
|
+
- Neues Farb-Picker-Panel bei Tag-Erstellung: Hintergrund- und Textfarb-Swatches, Hex-Eingabe, Auto-WCAG-Kontrast-Toggle.
|
|
343
|
+
|
|
344
|
+
**Chart & Gantt — Farb-Prop-Fix**
|
|
345
|
+
- `linkColor`, `labelColor`, `todayColor` und weitere Farb-Props fallen jetzt korrekt auf Theme-Defaults zurück wenn sie `""` (leerer String) sind. Vorher verursachte das unsichtbare Chart-Links in Storybook.
|
|
346
|
+
|
|
347
|
+
---
|
|
348
|
+
|
|
349
|
+
[→ Vollständiger Changelog](https://github.com/thebuoyant/mui-ts-library/blob/main/CHANGELOG.md)
|
|
350
|
+
|
|
351
|
+
---
|
|
352
|
+
|
|
312
353
|
## Lizenz
|
|
313
354
|
|
|
314
355
|
MIT © Thomas Schlender
|
package/README.md
CHANGED
|
@@ -6,6 +6,8 @@ A type-safe React component library built on **TypeScript** and **MUI (Material
|
|
|
6
6
|
|
|
7
7
|
**[→ Live Storybook](https://thebuoyant.github.io/mui-ts-library/)** — explore all components interactively, no installation needed.
|
|
8
8
|
|
|
9
|
+
**[→ Try it on StackBlitz](https://stackblitz.com/github/thebuoyant/mui-ts-library/tree/main/stackblitz-demo?startScript=dev)** — live editable demo in your browser, no installation required.
|
|
10
|
+
|
|
9
11
|
---
|
|
10
12
|
|
|
11
13
|
## Components
|
|
@@ -309,6 +311,45 @@ import type {
|
|
|
309
311
|
|
|
310
312
|
---
|
|
311
313
|
|
|
314
|
+
## Changelog
|
|
315
|
+
|
|
316
|
+
### [3.2.0] — 2026-06-16
|
|
317
|
+
|
|
318
|
+
**StackBlitz Live Demo**
|
|
319
|
+
- New interactive demo — open in your browser in seconds, no local setup needed: [→ Try it on StackBlitz](https://stackblitz.com/github/thebuoyant/mui-ts-library/tree/main/stackblitz-demo?startScript=dev)
|
|
320
|
+
- Showcases TagSelection (with search highlighting), PasswordStrengthMeter (with generator), and GanttChart (draggable, resizable).
|
|
321
|
+
|
|
322
|
+
---
|
|
323
|
+
|
|
324
|
+
### [3.1.0] — 2026-06-16
|
|
325
|
+
|
|
326
|
+
**TagSelection — Search Result Highlighting**
|
|
327
|
+
- Matching portions of tag labels in the dropdown are now rendered in **bold** while the user types (e.g. `"Reac"` → **Reac**t).
|
|
328
|
+
- Case-insensitive, no API changes.
|
|
329
|
+
|
|
330
|
+
---
|
|
331
|
+
|
|
332
|
+
### [3.0.0] — 2026-06-15 — Breaking Changes
|
|
333
|
+
|
|
334
|
+
**Removed**
|
|
335
|
+
- `ConfirmDialog`, `ConfirmDialogProvider`, `useConfirm` removed entirely. Migration: use MUI `Dialog` directly, or stay on `2.x`.
|
|
336
|
+
|
|
337
|
+
**TagSelection — `onTagCreate` signature changed**
|
|
338
|
+
- Before: `(label: string, color: TagColor) => void`
|
|
339
|
+
- After: `(tag: TagSelectionItem) => void` — tag is fully constructed, already includes `selected: true` and chosen colors.
|
|
340
|
+
|
|
341
|
+
**TagSelection — Custom Color Picker**
|
|
342
|
+
- New color picker panel on tag creation: background + text color swatches, hex input, auto WCAG-contrast toggle.
|
|
343
|
+
|
|
344
|
+
**Chart & Gantt — color prop fix**
|
|
345
|
+
- `linkColor`, `labelColor`, `todayColor` and other color props now correctly fall back to theme defaults when set to `""` (empty string). Previously caused invisible chart links in Storybook.
|
|
346
|
+
|
|
347
|
+
---
|
|
348
|
+
|
|
349
|
+
[→ Full changelog](https://github.com/thebuoyant/mui-ts-library/blob/main/CHANGELOG.md)
|
|
350
|
+
|
|
351
|
+
---
|
|
352
|
+
|
|
312
353
|
## License
|
|
313
354
|
|
|
314
355
|
MIT © Thomas Schlender
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thebuoyant-tsdev/mui-ts-library",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.2.0",
|
|
4
4
|
"private": false,
|
|
5
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": {
|