@thebuoyant-tsdev/mui-ts-library 3.1.0 → 3.1.1
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 +31 -0
- package/README.md +31 -0
- package/package.json +1 -1
package/README.de.md
CHANGED
|
@@ -309,6 +309,37 @@ import type {
|
|
|
309
309
|
|
|
310
310
|
---
|
|
311
311
|
|
|
312
|
+
## Changelog
|
|
313
|
+
|
|
314
|
+
### [3.1.0] — 2026-06-16
|
|
315
|
+
|
|
316
|
+
**TagSelection — Suchergebnis-Highlighting**
|
|
317
|
+
- Übereinstimmende Teile von Tag-Labels im Dropdown werden beim Tippen **fett** hervorgehoben (z. B. `"Reac"` → **Reac**t).
|
|
318
|
+
- Case-insensitiv, keine API-Änderungen.
|
|
319
|
+
|
|
320
|
+
---
|
|
321
|
+
|
|
322
|
+
### [3.0.0] — 2026-06-15 — Breaking Changes
|
|
323
|
+
|
|
324
|
+
**Entfernt**
|
|
325
|
+
- `ConfirmDialog`, `ConfirmDialogProvider`, `useConfirm` komplett entfernt. Migration: MUI `Dialog` direkt verwenden oder bei `2.x` bleiben.
|
|
326
|
+
|
|
327
|
+
**TagSelection — `onTagCreate`-Signatur geändert**
|
|
328
|
+
- Vorher: `(label: string, color: TagColor) => void`
|
|
329
|
+
- Nachher: `(tag: TagSelectionItem) => void` — Tag ist vollständig konstruiert, enthält bereits `selected: true` und gewählte Farben.
|
|
330
|
+
|
|
331
|
+
**TagSelection — Custom-Color-Picker**
|
|
332
|
+
- Neues Farb-Picker-Panel bei Tag-Erstellung: Hintergrund- und Textfarb-Swatches, Hex-Eingabe, Auto-WCAG-Kontrast-Toggle.
|
|
333
|
+
|
|
334
|
+
**Chart & Gantt — Farb-Prop-Fix**
|
|
335
|
+
- `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.
|
|
336
|
+
|
|
337
|
+
---
|
|
338
|
+
|
|
339
|
+
[→ Vollständiger Changelog](https://github.com/thebuoyant/mui-ts-library/blob/main/CHANGELOG.md)
|
|
340
|
+
|
|
341
|
+
---
|
|
342
|
+
|
|
312
343
|
## Lizenz
|
|
313
344
|
|
|
314
345
|
MIT © Thomas Schlender
|
package/README.md
CHANGED
|
@@ -309,6 +309,37 @@ import type {
|
|
|
309
309
|
|
|
310
310
|
---
|
|
311
311
|
|
|
312
|
+
## Changelog
|
|
313
|
+
|
|
314
|
+
### [3.1.0] — 2026-06-16
|
|
315
|
+
|
|
316
|
+
**TagSelection — Search Result Highlighting**
|
|
317
|
+
- Matching portions of tag labels in the dropdown are now rendered in **bold** while the user types (e.g. `"Reac"` → **Reac**t).
|
|
318
|
+
- Case-insensitive, no API changes.
|
|
319
|
+
|
|
320
|
+
---
|
|
321
|
+
|
|
322
|
+
### [3.0.0] — 2026-06-15 — Breaking Changes
|
|
323
|
+
|
|
324
|
+
**Removed**
|
|
325
|
+
- `ConfirmDialog`, `ConfirmDialogProvider`, `useConfirm` removed entirely. Migration: use MUI `Dialog` directly, or stay on `2.x`.
|
|
326
|
+
|
|
327
|
+
**TagSelection — `onTagCreate` signature changed**
|
|
328
|
+
- Before: `(label: string, color: TagColor) => void`
|
|
329
|
+
- After: `(tag: TagSelectionItem) => void` — tag is fully constructed, already includes `selected: true` and chosen colors.
|
|
330
|
+
|
|
331
|
+
**TagSelection — Custom Color Picker**
|
|
332
|
+
- New color picker panel on tag creation: background + text color swatches, hex input, auto WCAG-contrast toggle.
|
|
333
|
+
|
|
334
|
+
**Chart & Gantt — color prop fix**
|
|
335
|
+
- `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.
|
|
336
|
+
|
|
337
|
+
---
|
|
338
|
+
|
|
339
|
+
[→ Full changelog](https://github.com/thebuoyant/mui-ts-library/blob/main/CHANGELOG.md)
|
|
340
|
+
|
|
341
|
+
---
|
|
342
|
+
|
|
312
343
|
## License
|
|
313
344
|
|
|
314
345
|
MIT © Thomas Schlender
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thebuoyant-tsdev/mui-ts-library",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.1",
|
|
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": {
|