@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.
- package/README.de.md +21 -32
- package/README.md +21 -32
- package/dist/components/chord-chart/ChordChart.d.ts +1 -1
- package/dist/components/chord-chart/ChordChart.types.d.ts +15 -0
- package/dist/components/circle-packing-chart/CirclePackingChart.d.ts +5 -0
- package/dist/components/circle-packing-chart/CirclePackingChart.types.d.ts +104 -0
- package/dist/components/gantt-chart/GanttChart.constants.d.ts +1 -0
- package/dist/components/gantt-chart/GanttChart.d.ts +1 -1
- package/dist/components/gantt-chart/GanttChart.types.d.ts +16 -0
- package/dist/components/gantt-chart/GanttTaskPanel.d.ts +2 -1
- package/dist/components/gantt-chart/GanttToolbar.d.ts +2 -1
- package/dist/components/horizontal-tree-chart/HorizontalTreeChart.d.ts +5 -0
- package/dist/components/horizontal-tree-chart/HorizontalTreeChart.types.d.ts +95 -0
- package/dist/components/password-strength-meter/PasswordStrengthMeter.d.ts +1 -1
- package/dist/components/password-strength-meter/PasswordStrengthMeter.types.d.ts +36 -0
- package/dist/components/radial-tree-chart/RadialTreeChart.types.d.ts +6 -0
- package/dist/components/sunburst-chart/SunburstChart.types.d.ts +6 -0
- package/dist/components/tag-selection/TagSelection.types.d.ts +5 -1
- package/dist/components/tag-selection/TagSelectionAutocomplete.d.ts +2 -2
- package/dist/index.cjs +2 -1
- package/dist/index.d.cts +4 -2
- package/dist/index.d.ts +4 -2
- package/dist/index.js +2610 -1419
- package/package.json +61 -29
- package/dist/components/confirm-dialog/ConfirmDialog.types.d.ts +0 -23
- 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";
|