@thebuoyant-tsdev/mui-ts-library 3.11.0 → 3.11.2
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 +14 -0
- package/README.md +14 -0
- package/dist/components/chord-chart/ChordChart.d.ts +1 -1
- package/dist/components/chord-chart/ChordChart.js +155 -137
- package/dist/components/chord-chart/ChordChart.types.d.ts +1 -1
- package/dist/components/circle-packing-chart/CirclePackingChart.d.ts +1 -1
- package/dist/components/circle-packing-chart/CirclePackingChart.js +134 -121
- package/dist/components/gantt-chart/hooks/useGanttDrag.js +44 -38
- package/dist/components/horizontal-tree-chart/HorizontalTreeChart.js +222 -206
- package/dist/components/horizontal-tree-chart/HorizontalTreeChart.types.d.ts +1 -1
- package/dist/components/json-editor/JsonEditorContent.js +134 -119
- package/dist/components/json-editor/JsonEditorToolbar.js +3 -3
- package/dist/components/password-strength-meter/PasswordStrengthMeter.js +131 -130
- package/dist/components/radial-tree-chart/RadialTreeChart.js +197 -186
- package/dist/components/rich-text-editor/RichTextEditor.js +1 -1
- package/dist/components/rich-text-editor/RichTextEditorMarkdownDialog.js +40 -39
- package/dist/components/shared/useTimedFlag.d.ts +6 -0
- package/dist/components/shared/useTimedFlag.js +14 -0
- package/dist/components/sql-editor/SqlEditorHistoryMenu.js +1 -1
- package/dist/components/sql-editor/useSqlQueryHistory.js +14 -12
- package/dist/components/sql-editor/util/sqlQueryHistory.util.d.ts +1 -0
- package/dist/components/sql-editor/util/sqlQueryHistory.util.js +21 -13
- package/dist/components/sunburst-chart/SunburstChart.d.ts +1 -1
- package/dist/components/sunburst-chart/SunburstChart.js +126 -115
- package/dist/components/tag-selection/TagSelectionAutocomplete.js +7 -5
- package/dist/index.cjs +2 -2
- package/dist/index.js +7 -7
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10,14 +10,14 @@ import { DEFAULT_RICH_TEXT_EDITOR_TOOLBAR_CONFIG as h, DEFAULT_RICH_TEXT_EDITOR_
|
|
|
10
10
|
import { RichTextEditor as _ } from "./components/rich-text-editor/RichTextEditor.js";
|
|
11
11
|
import { DEFAULT_SQL_EDITOR_TOOLBAR_CONFIG as v, DEFAULT_SQL_EDITOR_TRANSLATION as y } from "./components/sql-editor/SqlEditor.types.js";
|
|
12
12
|
import { SqlEditor as b } from "./components/sql-editor/SqlEditor.js";
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
13
|
+
import { DEFAULT_SUNBURST_CHART_TRANSLATION as x } from "./components/sunburst-chart/SunburstChart.types.js";
|
|
14
|
+
import { SunburstChart as S } from "./components/sunburst-chart/SunburstChart.js";
|
|
15
|
+
import { DEFAULT_CHORD_CHART_TRANSLATION as C } from "./components/chord-chart/ChordChart.types.js";
|
|
16
|
+
import { ChordChart as w } from "./components/chord-chart/ChordChart.js";
|
|
17
17
|
import { DEFAULT_RADIAL_TREE_CHART_TRANSLATION as T } from "./components/radial-tree-chart/RadialTreeChart.types.js";
|
|
18
18
|
import { RadialTreeChart as E } from "./components/radial-tree-chart/RadialTreeChart.js";
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
19
|
+
import { DEFAULT_CIRCLE_PACKING_TRANSLATION as D } from "./components/circle-packing-chart/CirclePackingChart.types.js";
|
|
20
|
+
import { CirclePackingChart as O } from "./components/circle-packing-chart/CirclePackingChart.js";
|
|
21
21
|
import { DEFAULT_HORIZONTAL_TREE_TRANSLATION as k } from "./components/horizontal-tree-chart/HorizontalTreeChart.types.js";
|
|
22
22
|
import { HorizontalTreeChart as A } from "./components/horizontal-tree-chart/HorizontalTreeChart.js";
|
|
23
|
-
export {
|
|
23
|
+
export { w as ChordChart, O as CirclePackingChart, l as DEFAULT_CHECK_COLORS, C as DEFAULT_CHORD_CHART_TRANSLATION, D as DEFAULT_CIRCLE_PACKING_TRANSLATION, r as DEFAULT_GANTT_TRANSLATIONS, k as DEFAULT_HORIZONTAL_TREE_TRANSLATION, e as DEFAULT_JSON_EDITOR_TOOLBAR_CONFIG, t as DEFAULT_JSON_EDITOR_TRANSLATION, u as DEFAULT_METER_COLORS, d as DEFAULT_PASSWORD_TRANSLATIONS, T as DEFAULT_RADIAL_TREE_CHART_TRANSLATION, h as DEFAULT_RICH_TEXT_EDITOR_TOOLBAR_CONFIG, g as DEFAULT_RICH_TEXT_EDITOR_TRANSLATION, v as DEFAULT_SQL_EDITOR_TOOLBAR_CONFIG, y as DEFAULT_SQL_EDITOR_TRANSLATION, x as DEFAULT_SUNBURST_CHART_TRANSLATION, p as DEFAULT_TAG_SELECTION_TRANSLATION, i as GanttChart, A as HorizontalTreeChart, n as JsonEditor, f as PasswordStrengthMeter, E as RadialTreeChart, _ as RichTextEditor, b as SqlEditor, S as SunburstChart, m as TagSelection, a as useGanttChartStore, o as useGanttTheme, s as useGanttTranslations, c as useRawGanttChartStore };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thebuoyant-tsdev/mui-ts-library",
|
|
3
|
-
"version": "3.11.
|
|
3
|
+
"version": "3.11.2",
|
|
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": {
|