@thebuoyant-tsdev/mui-ts-library 3.24.1 → 3.25.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 CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  > [English Version →](README.md)
4
4
 
5
+ [![CI](https://github.com/thebuoyant/mui-ts-library/actions/workflows/ci.yml/badge.svg)](https://github.com/thebuoyant/mui-ts-library/actions/workflows/ci.yml)
6
+ [![npm](https://img.shields.io/npm/v/@thebuoyant-tsdev/mui-ts-library)](https://www.npmjs.com/package/@thebuoyant-tsdev/mui-ts-library)
7
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
8
+
5
9
  Eine typsichere React-Komponentenbibliothek auf Basis von **TypeScript** und **MUI (Material UI v9)**. Die Komponenten folgen MUI's Design-Sprache, unterstützen Dark Mode und Theming von Haus aus und werden mit vollständigen TypeScript-Typen, Storybook-Stories und Unit-Tests ausgeliefert.
6
10
 
7
11
  **[→ Live-Storybook](https://thebuoyant.github.io/mui-ts-library/)** — alle Komponenten interaktiv erkunden, ohne Installation.
@@ -479,6 +483,28 @@ Dieses Projekt folgt [Semantic Versioning](https://semver.org/):
479
483
 
480
484
  ## Changelog
481
485
 
486
+ ### [3.24.1] — 2026-07-10
487
+
488
+ **Behoben**
489
+ - `RichTextEditor`-Toolbar: `H1`/`H2`/`H3`- und `MD`-Button werden jetzt als `<svg><text>` gerendert statt als HTML-`<span>` — konsistente Render-Engine, Strichgewicht und Farbverhalten wie alle anderen SVG-Toolbar-Icons.
490
+ - `RadialStackedBarChart`-Stories: ungenutzten Parameter entfernt, der einen ESLint-Fehler verursachte.
491
+
492
+ ---
493
+
494
+ ### [3.24.0] — 2026-07-10
495
+
496
+ **Hinzugefügt**
497
+ - **CSS-Klassen-API** für `TagSelection`, `PasswordStrengthMeter` und `ColorPicker` — jedes bedeutende DOM-Element trägt jetzt einen stabilen `.MuiTs<Komponente>-<Slot>`-Klassennamen. Einzelne Slots per Plain CSS, CSS Modules oder Tailwind stylen ohne MUI-Interna anzufassen. Drei typisierte Konstanten-Objekte exportiert: `tagSelectionClasses`, `passwordStrengthMeterClasses`, `colorPickerClasses` + geteilte `muiTsStateClasses` (`.MuiTs-disabled`, `.MuiTs-error`, …). Siehe [Full Changelog](https://github.com/thebuoyant/mui-ts-library/blob/main/CHANGELOG.de.md) für Details.
498
+
499
+ ---
500
+
501
+ ### [3.23.0] — 2026-07-10
502
+
503
+ **Hinzugefügt**
504
+ - `ColorPicker`: neue `format?: 'hex' | 'rgb' | 'hsl'`-Prop — kontrolliertes Anzeigeformat, ermöglicht dem Parent die Kontrolle über das aktive Format (z.B. für programmatische Form-Resets). Mit `onFormatChange` kombinieren. Ohne diese Prop bleibt das bisherige unkontrollierte Verhalten erhalten. Siehe [Full Changelog](https://github.com/thebuoyant/mui-ts-library/blob/main/CHANGELOG.de.md) für Details.
505
+
506
+ ---
507
+
482
508
  ### [3.22.0] — 2026-07-09
483
509
 
484
510
  **Hinzugefügt**
package/README.md CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  > [Deutsche Version →](README.de.md)
4
4
 
5
+ [![CI](https://github.com/thebuoyant/mui-ts-library/actions/workflows/ci.yml/badge.svg)](https://github.com/thebuoyant/mui-ts-library/actions/workflows/ci.yml)
6
+ [![npm](https://img.shields.io/npm/v/@thebuoyant-tsdev/mui-ts-library)](https://www.npmjs.com/package/@thebuoyant-tsdev/mui-ts-library)
7
+ [![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](LICENSE)
8
+
5
9
  A type-safe React component library built on **TypeScript** and **MUI (Material UI v9)**. Components follow MUI's design language, support dark mode and theming out of the box, and ship with complete TypeScript types, Storybook stories, and unit tests.
6
10
 
7
11
  **[→ Live Storybook](https://thebuoyant.github.io/mui-ts-library/)** — explore all components interactively, no installation needed.
@@ -479,6 +483,28 @@ This project follows [Semantic Versioning](https://semver.org/):
479
483
 
480
484
  ## Changelog
481
485
 
486
+ ### [3.24.1] — 2026-07-10
487
+
488
+ **Fixed**
489
+ - `RichTextEditor` toolbar: `H1`/`H2`/`H3` and `MD` buttons now render as `<svg><text>` instead of a plain HTML `<span>` — consistent rendering engine, stroke weight, and color behaviour with all other SVG toolbar icons.
490
+ - `RadialStackedBarChart` stories: removed unused parameter that caused an ESLint error.
491
+
492
+ ---
493
+
494
+ ### [3.24.0] — 2026-07-10
495
+
496
+ **Added**
497
+ - **CSS Classes API** for `TagSelection`, `PasswordStrengthMeter`, and `ColorPicker` — every significant DOM node now carries a stable `.MuiTs<Component>-<slot>` class name. Style individual slots via plain CSS, CSS Modules, or Tailwind without touching MUI internals. Three typed constants objects exported: `tagSelectionClasses`, `passwordStrengthMeterClasses`, `colorPickerClasses` + shared `muiTsStateClasses` (`.MuiTs-disabled`, `.MuiTs-error`, …). See [Full Changelog](https://github.com/thebuoyant/mui-ts-library/blob/main/CHANGELOG.md) for details.
498
+
499
+ ---
500
+
501
+ ### [3.23.0] — 2026-07-10
502
+
503
+ **Added**
504
+ - `ColorPicker`: new `format?: 'hex' | 'rgb' | 'hsl'` prop — controlled display format, lets the parent own the active format (e.g. for programmatic form resets). Combine with `onFormatChange`. Omit to keep existing uncontrolled behaviour. See [Full Changelog](https://github.com/thebuoyant/mui-ts-library/blob/main/CHANGELOG.md) for details.
505
+
506
+ ---
507
+
482
508
  ### [3.22.0] — 2026-07-09
483
509
 
484
510
  **Added**