@thebuoyant-tsdev/mui-ts-library 2.4.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.
Files changed (26) hide show
  1. package/README.de.md +21 -32
  2. package/README.md +21 -32
  3. package/dist/components/chord-chart/ChordChart.d.ts +1 -1
  4. package/dist/components/chord-chart/ChordChart.types.d.ts +15 -0
  5. package/dist/components/circle-packing-chart/CirclePackingChart.d.ts +5 -0
  6. package/dist/components/circle-packing-chart/CirclePackingChart.types.d.ts +104 -0
  7. package/dist/components/gantt-chart/GanttChart.constants.d.ts +1 -0
  8. package/dist/components/gantt-chart/GanttChart.d.ts +1 -1
  9. package/dist/components/gantt-chart/GanttChart.types.d.ts +16 -0
  10. package/dist/components/gantt-chart/GanttTaskPanel.d.ts +2 -1
  11. package/dist/components/gantt-chart/GanttToolbar.d.ts +2 -1
  12. package/dist/components/horizontal-tree-chart/HorizontalTreeChart.d.ts +5 -0
  13. package/dist/components/horizontal-tree-chart/HorizontalTreeChart.types.d.ts +95 -0
  14. package/dist/components/password-strength-meter/PasswordStrengthMeter.d.ts +1 -1
  15. package/dist/components/password-strength-meter/PasswordStrengthMeter.types.d.ts +36 -0
  16. package/dist/components/radial-tree-chart/RadialTreeChart.types.d.ts +6 -0
  17. package/dist/components/sunburst-chart/SunburstChart.types.d.ts +6 -0
  18. package/dist/components/tag-selection/TagSelection.types.d.ts +5 -1
  19. package/dist/components/tag-selection/TagSelectionAutocomplete.d.ts +2 -2
  20. package/dist/index.cjs +2 -1
  21. package/dist/index.d.cts +4 -2
  22. package/dist/index.d.ts +4 -2
  23. package/dist/index.js +2610 -1419
  24. package/package.json +61 -29
  25. package/dist/components/confirm-dialog/ConfirmDialog.types.d.ts +0 -23
  26. package/dist/components/confirm-dialog/ConfirmDialogProvider.d.ts +0 -5
package/dist/index.d.cts CHANGED
@@ -1,5 +1,3 @@
1
- export * from "./components/confirm-dialog/ConfirmDialogProvider";
2
- export * from "./components/confirm-dialog/ConfirmDialog.types";
3
1
  export * from "./components/json-editor/JsonEditor";
4
2
  export * from "./components/json-editor/JsonEditor.types";
5
3
  export * from "./components/gantt-chart/GanttChart";
@@ -18,3 +16,7 @@ export * from "./components/chord-chart/ChordChart";
18
16
  export * from "./components/chord-chart/ChordChart.types";
19
17
  export * from "./components/radial-tree-chart/RadialTreeChart";
20
18
  export * from "./components/radial-tree-chart/RadialTreeChart.types";
19
+ export * from "./components/circle-packing-chart/CirclePackingChart";
20
+ export * from "./components/circle-packing-chart/CirclePackingChart.types";
21
+ export * from "./components/horizontal-tree-chart/HorizontalTreeChart";
22
+ export * from "./components/horizontal-tree-chart/HorizontalTreeChart.types";
package/dist/index.d.ts CHANGED
@@ -1,5 +1,3 @@
1
- export * from "./components/confirm-dialog/ConfirmDialogProvider";
2
- export * from "./components/confirm-dialog/ConfirmDialog.types";
3
1
  export * from "./components/json-editor/JsonEditor";
4
2
  export * from "./components/json-editor/JsonEditor.types";
5
3
  export * from "./components/gantt-chart/GanttChart";
@@ -18,3 +16,7 @@ export * from "./components/chord-chart/ChordChart";
18
16
  export * from "./components/chord-chart/ChordChart.types";
19
17
  export * from "./components/radial-tree-chart/RadialTreeChart";
20
18
  export * from "./components/radial-tree-chart/RadialTreeChart.types";
19
+ export * from "./components/circle-packing-chart/CirclePackingChart";
20
+ export * from "./components/circle-packing-chart/CirclePackingChart.types";
21
+ export * from "./components/horizontal-tree-chart/HorizontalTreeChart";
22
+ export * from "./components/horizontal-tree-chart/HorizontalTreeChart.types";