@thebuoyant-tsdev/mui-ts-library 3.14.1 → 3.16.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 +62 -0
- package/README.md +62 -0
- package/dist/components/gantt-chart/GanttChart.types.d.ts +2 -0
- package/dist/components/gantt-chart/GanttChart.types.js +1 -0
- package/dist/components/gantt-chart/GanttTaskDialog.js +170 -124
- package/dist/components/radial-stacked-bar-chart/RadialStackedBarChart.d.ts +5 -0
- package/dist/components/radial-stacked-bar-chart/RadialStackedBarChart.js +285 -0
- package/dist/components/radial-stacked-bar-chart/RadialStackedBarChart.types.d.ts +91 -0
- package/dist/components/radial-stacked-bar-chart/RadialStackedBarChart.types.js +4 -0
- package/dist/index.cjs +2 -2
- package/dist/index.d.cts +2 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +3 -1
- package/package.json +2 -2
package/README.de.md
CHANGED
|
@@ -40,6 +40,7 @@ Eine typsichere React-Komponentenbibliothek auf Basis von **TypeScript** und **M
|
|
|
40
40
|
| [`RadialTreeChart`](#radialtreechart) | Org-Charts und Taxonomien als radialer Baum, mit Drill-Down | [Live-Demo](https://thebuoyant.github.io/mui-ts-library/?path=/story/components-radialtreechart--default) · [Docs](user-manuals/RadialTreeChart.de.md) |
|
|
41
41
|
| [`CirclePackingChart`](#circlepackingchart) | Verschachtelte Kreise mit animiertem Zoom — Speicher und Hierarchie auf einen Blick | [Live-Demo](https://thebuoyant.github.io/mui-ts-library/?path=/story/components-circlepackingchart--default) · [Docs](user-manuals/CirclePackingChart.de.md) |
|
|
42
42
|
| [`HorizontalTreeChart`](#horizontaltreechart) | Entscheidungsbäume und Hierarchien in 4 Orientierungen (LR/RL/TB/BT) | [Live-Demo](https://thebuoyant.github.io/mui-ts-library/?path=/story/components-horizontaltreechart--default) · [Docs](user-manuals/HorizontalTreeChart.de.md) |
|
|
43
|
+
| [`RadialStackedBarChart`](#radialstackedbarchart) | Mehrreihige gestapelte Balken in polarem Layout — Kategorien über Segmente vergleichen | [Live-Demo](https://thebuoyant.github.io/mui-ts-library/?path=/story/components-radialstackedbarchart--default) · [Docs](user-manuals/RadialStackedBarChart.de.md) |
|
|
43
44
|
|
|
44
45
|
Alle Charts teilen sich Ctrl / Cmd ⌘+Scroll-Zoom und vollständige MUI-Theme-Integration (Dark Mode inklusive).
|
|
45
46
|
|
|
@@ -375,6 +376,43 @@ const data: HorizontalTreeData = {
|
|
|
375
376
|
|
|
376
377
|
---
|
|
377
378
|
|
|
379
|
+
### RadialStackedBarChart
|
|
380
|
+
|
|
381
|
+
Mehrreihiges gestapeltes Balkendiagramm in polarem Layout. Jedes Balkensegment repräsentiert einen Datenpunkt, jede Bogen-Ebene eine Datenreihe — ideal für Quartalsvergleiche, Budgetaufschlüsselungen oder mehrere Kategorien über eine Menge von Einträgen. Konzentrische Gitterringe geben visuelle Skala; eine automatisch zentrierte Legende ist integriert. `Ctrl / Cmd ⌘+Scroll` zoomt den Chart.
|
|
382
|
+
|
|
383
|
+
```tsx
|
|
384
|
+
import { RadialStackedBarChart } from '@thebuoyant-tsdev/mui-ts-library';
|
|
385
|
+
import type {
|
|
386
|
+
RadialStackedBarData,
|
|
387
|
+
RadialStackedBarSeries,
|
|
388
|
+
} from '@thebuoyant-tsdev/mui-ts-library';
|
|
389
|
+
|
|
390
|
+
const keys: RadialStackedBarSeries[] = [
|
|
391
|
+
{ key: 'q1', label: 'Q1' },
|
|
392
|
+
{ key: 'q2', label: 'Q2' },
|
|
393
|
+
{ key: 'q3', label: 'Q3' },
|
|
394
|
+
{ key: 'q4', label: 'Q4' },
|
|
395
|
+
];
|
|
396
|
+
|
|
397
|
+
const data: RadialStackedBarData[] = [
|
|
398
|
+
{ id: 'berlin', label: 'Berlin', values: { q1: 120, q2: 145, q3: 98, q4: 175 } },
|
|
399
|
+
{ id: 'hamburg', label: 'Hamburg', values: { q1: 95, q2: 110, q3: 130, q4: 88 } },
|
|
400
|
+
{ id: 'munich', label: 'Munich', values: { q1: 200, q2: 185, q3: 210, q4: 230 } },
|
|
401
|
+
];
|
|
402
|
+
|
|
403
|
+
<RadialStackedBarChart
|
|
404
|
+
data={data}
|
|
405
|
+
keys={keys}
|
|
406
|
+
size={480}
|
|
407
|
+
sortBy="value"
|
|
408
|
+
onBarClick={(info) => console.log(info.label, info.seriesKey, info.value)}
|
|
409
|
+
/>
|
|
410
|
+
```
|
|
411
|
+
|
|
412
|
+
→ [Vollständige Dokumentation](user-manuals/RadialStackedBarChart.de.md)
|
|
413
|
+
|
|
414
|
+
---
|
|
415
|
+
|
|
378
416
|
## TypeScript
|
|
379
417
|
|
|
380
418
|
Alle Typen und Defaults werden direkt exportiert — kein separates `@types/...`-Paket nötig.
|
|
@@ -413,6 +451,9 @@ import type {
|
|
|
413
451
|
|
|
414
452
|
// HorizontalTreeChart
|
|
415
453
|
HorizontalTreeData, HorizontalTreeNodeInfo, HorizontalTreeOrientation,
|
|
454
|
+
|
|
455
|
+
// RadialStackedBarChart
|
|
456
|
+
RadialStackedBarData, RadialStackedBarSeries, RadialStackedBarClickInfo,
|
|
416
457
|
} from '@thebuoyant-tsdev/mui-ts-library';
|
|
417
458
|
```
|
|
418
459
|
|
|
@@ -434,6 +475,27 @@ Dieses Projekt folgt [Semantic Versioning](https://semver.org/). In der Praxis b
|
|
|
434
475
|
|
|
435
476
|
## Changelog
|
|
436
477
|
|
|
478
|
+
### [3.16.0] — 2026-07-03
|
|
479
|
+
|
|
480
|
+
**Hinzugefügt**
|
|
481
|
+
- `GanttChart`: Fortschritts-Slider im eingebauten Hinzufügen-/Bearbeiten-Dialog — `GanttTask.progress` (0–100 %) ist jetzt ohne Maus bearbeitbar, schließt eine Accessibility-Lücke für Tastatur-Nutzer. Slider wird im Bearbeiten-Modus aus bestehenden Task-Daten vorbelegt; setzt auf 0 zurück wenn Meilenstein aktiviert wird. Neuer optionaler Übersetzungsschlüssel `dialogFieldProgress`. Siehe [Vollständiger Changelog](https://github.com/thebuoyant/mui-ts-library/blob/main/CHANGELOG.md) für Details.
|
|
482
|
+
|
|
483
|
+
---
|
|
484
|
+
|
|
485
|
+
### [3.15.0] — 2026-07-03
|
|
486
|
+
|
|
487
|
+
**Hinzugefügt**
|
|
488
|
+
- Neue Komponente: `RadialStackedBarChart` — Mehrreihige Stapelbalken im radialen Layout (6. D3-Chart). Features: 20+ Props, konzentrische Gitterringe mit eigenem Formatter, automatisch zentrierte Legende mit Overflow-Schutz, `sortBy`, `colorConfig`, `onBarClick`, `zoomable` und volle Dark-Mode-Unterstützung. Siehe [Vollständiger Changelog](https://github.com/thebuoyant/mui-ts-library/blob/main/CHANGELOG.md) für Details.
|
|
489
|
+
|
|
490
|
+
---
|
|
491
|
+
|
|
492
|
+
### [3.14.1] — 2026-07-02
|
|
493
|
+
|
|
494
|
+
**Behoben**
|
|
495
|
+
- README: fehlender Changelog-Eintrag für 3.14.0 — keine Code-Änderungen.
|
|
496
|
+
|
|
497
|
+
---
|
|
498
|
+
|
|
437
499
|
### [3.14.0] — 2026-07-02
|
|
438
500
|
|
|
439
501
|
**Hinzugefügt**
|
package/README.md
CHANGED
|
@@ -40,6 +40,7 @@ A type-safe React component library built on **TypeScript** and **MUI (Material
|
|
|
40
40
|
| [`RadialTreeChart`](#radialtreechart) | Org charts and taxonomies as a radial tree, with drill-down | [Live demo](https://thebuoyant.github.io/mui-ts-library/?path=/story/components-radialtreechart--default) · [Docs](user-manuals/RadialTreeChart.md) |
|
|
41
41
|
| [`CirclePackingChart`](#circlepackingchart) | Nested circles with animated zoom — storage and hierarchy at a glance | [Live demo](https://thebuoyant.github.io/mui-ts-library/?path=/story/components-circlepackingchart--default) · [Docs](user-manuals/CirclePackingChart.md) |
|
|
42
42
|
| [`HorizontalTreeChart`](#horizontaltreechart) | Decision trees and hierarchies in 4 orientations (LR/RL/TB/BT) | [Live demo](https://thebuoyant.github.io/mui-ts-library/?path=/story/components-horizontaltreechart--default) · [Docs](user-manuals/HorizontalTreeChart.md) |
|
|
43
|
+
| [`RadialStackedBarChart`](#radialstackedbarchart) | Multi-series stacked bars in a radial layout — compare categories across segments | [Live demo](https://thebuoyant.github.io/mui-ts-library/?path=/story/components-radialstackedbarchart--default) · [Docs](user-manuals/RadialStackedBarChart.md) |
|
|
43
44
|
|
|
44
45
|
All charts share Ctrl / Cmd ⌘+Scroll zoom and full MUI theme integration (dark mode included).
|
|
45
46
|
|
|
@@ -375,6 +376,43 @@ const data: HorizontalTreeData = {
|
|
|
375
376
|
|
|
376
377
|
---
|
|
377
378
|
|
|
379
|
+
### RadialStackedBarChart
|
|
380
|
+
|
|
381
|
+
Multi-series stacked bar chart in a polar (radial) layout. Each bar segment represents one data point, each arc layer represents one series — ideal for comparing quarterly figures, budget breakdowns, or any multi-category totals across a set of items. Concentric grid rings give a visual scale; an auto-centered legend is built in. `Ctrl / Cmd ⌘+Scroll` zooms the chart.
|
|
382
|
+
|
|
383
|
+
```tsx
|
|
384
|
+
import { RadialStackedBarChart } from '@thebuoyant-tsdev/mui-ts-library';
|
|
385
|
+
import type {
|
|
386
|
+
RadialStackedBarData,
|
|
387
|
+
RadialStackedBarSeries,
|
|
388
|
+
} from '@thebuoyant-tsdev/mui-ts-library';
|
|
389
|
+
|
|
390
|
+
const keys: RadialStackedBarSeries[] = [
|
|
391
|
+
{ key: 'q1', label: 'Q1' },
|
|
392
|
+
{ key: 'q2', label: 'Q2' },
|
|
393
|
+
{ key: 'q3', label: 'Q3' },
|
|
394
|
+
{ key: 'q4', label: 'Q4' },
|
|
395
|
+
];
|
|
396
|
+
|
|
397
|
+
const data: RadialStackedBarData[] = [
|
|
398
|
+
{ id: 'berlin', label: 'Berlin', values: { q1: 120, q2: 145, q3: 98, q4: 175 } },
|
|
399
|
+
{ id: 'hamburg', label: 'Hamburg', values: { q1: 95, q2: 110, q3: 130, q4: 88 } },
|
|
400
|
+
{ id: 'munich', label: 'Munich', values: { q1: 200, q2: 185, q3: 210, q4: 230 } },
|
|
401
|
+
];
|
|
402
|
+
|
|
403
|
+
<RadialStackedBarChart
|
|
404
|
+
data={data}
|
|
405
|
+
keys={keys}
|
|
406
|
+
size={480}
|
|
407
|
+
sortBy="value"
|
|
408
|
+
onBarClick={(info) => console.log(info.label, info.seriesKey, info.value)}
|
|
409
|
+
/>
|
|
410
|
+
```
|
|
411
|
+
|
|
412
|
+
→ [Full documentation](user-manuals/RadialStackedBarChart.md)
|
|
413
|
+
|
|
414
|
+
---
|
|
415
|
+
|
|
378
416
|
## TypeScript
|
|
379
417
|
|
|
380
418
|
All types and defaults are exported directly — no separate `@types/...` package needed.
|
|
@@ -413,6 +451,9 @@ import type {
|
|
|
413
451
|
|
|
414
452
|
// HorizontalTreeChart
|
|
415
453
|
HorizontalTreeData, HorizontalTreeNodeInfo, HorizontalTreeOrientation,
|
|
454
|
+
|
|
455
|
+
// RadialStackedBarChart
|
|
456
|
+
RadialStackedBarData, RadialStackedBarSeries, RadialStackedBarClickInfo,
|
|
416
457
|
} from '@thebuoyant-tsdev/mui-ts-library';
|
|
417
458
|
```
|
|
418
459
|
|
|
@@ -434,6 +475,27 @@ This project follows [Semantic Versioning](https://semver.org/). In practice:
|
|
|
434
475
|
|
|
435
476
|
## Changelog
|
|
436
477
|
|
|
478
|
+
### [3.16.0] — 2026-07-03
|
|
479
|
+
|
|
480
|
+
**Added**
|
|
481
|
+
- `GanttChart`: progress slider in the built-in Add/Edit task dialog — `GanttTask.progress` (0–100 %) is now editable without a mouse, closing an accessibility gap for keyboard users. Slider pre-fills from existing task data in edit mode; resets to 0 when milestone is toggled on. New optional translation key `dialogFieldProgress`. See [Full Changelog](https://github.com/thebuoyant/mui-ts-library/blob/main/CHANGELOG.md) for details.
|
|
482
|
+
|
|
483
|
+
---
|
|
484
|
+
|
|
485
|
+
### [3.15.0] — 2026-07-03
|
|
486
|
+
|
|
487
|
+
**Added**
|
|
488
|
+
- New component: `RadialStackedBarChart` — multi-series stacked bars in a radial layout (6th D3 chart). Features: 20+ props, concentric grid rings with custom formatter, auto-centered legend with overflow protection, `sortBy`, `colorConfig`, `onBarClick`, `zoomable`, and full dark-mode support. See [Full Changelog](https://github.com/thebuoyant/mui-ts-library/blob/main/CHANGELOG.md) for details.
|
|
489
|
+
|
|
490
|
+
---
|
|
491
|
+
|
|
492
|
+
### [3.14.1] — 2026-07-02
|
|
493
|
+
|
|
494
|
+
**Fixed**
|
|
495
|
+
- README: missing changelog entry for 3.14.0 — no code changes.
|
|
496
|
+
|
|
497
|
+
---
|
|
498
|
+
|
|
437
499
|
### [3.14.0] — 2026-07-02
|
|
438
500
|
|
|
439
501
|
**Added**
|
|
@@ -52,6 +52,8 @@ export type GanttTranslations = {
|
|
|
52
52
|
dialogDeleteConfirm: string;
|
|
53
53
|
dialogFieldDependencies: string;
|
|
54
54
|
dialogFieldDependenciesNone: string;
|
|
55
|
+
/** Label for the progress slider in the task dialog (0–100 %) @since 3.16.0 */
|
|
56
|
+
dialogFieldProgress?: string;
|
|
55
57
|
columnActions: string;
|
|
56
58
|
/** Header label for the Assignee column — shown when showAssigneeColumn=true @since 2.7.0 */
|
|
57
59
|
columnAssignee?: string;
|
|
@@ -32,6 +32,7 @@ var e = {
|
|
|
32
32
|
dialogDeleteConfirm: "Soll die Aufgabe \"{name}\" wirklich gelöscht werden?",
|
|
33
33
|
dialogFieldDependencies: "Vorgänger",
|
|
34
34
|
dialogFieldDependenciesNone: "— Keine —",
|
|
35
|
+
dialogFieldProgress: "Fortschritt (%)",
|
|
35
36
|
scrollToTodayTooltip: "Zum heutigen Tag",
|
|
36
37
|
expandAllTooltip: "Alle aufklappen",
|
|
37
38
|
collapseAllTooltip: "Alle zuklappen",
|