@thebuoyant-tsdev/mui-ts-library 3.29.1 → 3.30.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 +59 -1
- package/README.md +59 -1
- package/dist/components/chord-chart/ChordChart.js +112 -112
- package/dist/components/circle-packing-chart/CirclePackingChart.js +135 -135
- package/dist/components/color-picker/ColorPicker.js +217 -217
- package/dist/components/color-picker/PopoverColorPicker.js +7 -7
- package/dist/components/date-range-picker/DateRangePicker.js +9 -9
- package/dist/components/gantt-chart/GanttChart.js +18 -18
- package/dist/components/gantt-chart/GanttTaskDialog.js +43 -43
- package/dist/components/gantt-chart/GanttTaskPanel.js +128 -128
- package/dist/components/gantt-chart/GanttTimeline.js +16 -16
- package/dist/components/gantt-chart/GanttToolbar.js +24 -24
- package/dist/components/horizontal-tree-chart/HorizontalTreeChart.js +244 -244
- package/dist/components/json-editor/JsonEditor.js +9 -9
- package/dist/components/json-editor/JsonEditorContent.js +54 -54
- package/dist/components/json-editor/JsonEditorToolbar.js +12 -12
- package/dist/components/kanban-board/KanbanBoard.d.ts +2 -0
- package/dist/components/kanban-board/KanbanBoard.js +129 -0
- package/dist/components/kanban-board/KanbanBoard.types.d.ts +84 -0
- package/dist/components/kanban-board/KanbanBoard.types.js +19 -0
- package/dist/components/kanban-board/KanbanBoardCard.d.ts +13 -0
- package/dist/components/kanban-board/KanbanBoardCard.js +104 -0
- package/dist/components/kanban-board/KanbanBoardCardDialog.d.ts +23 -0
- package/dist/components/kanban-board/KanbanBoardCardDialog.js +120 -0
- package/dist/components/kanban-board/KanbanBoardColumn.d.ts +14 -0
- package/dist/components/kanban-board/KanbanBoardColumn.js +129 -0
- package/dist/components/kanban-board/kanbanBoardClasses.d.ts +47 -0
- package/dist/components/kanban-board/kanbanBoardClasses.js +18 -0
- package/dist/components/password-strength-meter/PasswordStrengthMeter.js +27 -27
- package/dist/components/radial-stacked-bar-chart/RadialStackedBarChart.js +48 -48
- package/dist/components/radial-tree-chart/RadialTreeChart.js +173 -173
- package/dist/components/rich-text-editor/RichTextEditor.js +32 -32
- package/dist/components/rich-text-editor/RichTextEditorColorPicker.js +20 -20
- package/dist/components/rich-text-editor/RichTextEditorEmojiPicker.js +12 -12
- package/dist/components/rich-text-editor/RichTextEditorImageDialog.js +11 -11
- package/dist/components/rich-text-editor/RichTextEditorLinkDialog.js +11 -11
- package/dist/components/rich-text-editor/RichTextEditorMarkdownDialog.js +14 -14
- package/dist/components/rich-text-editor/RichTextEditorMentionList.js +14 -14
- package/dist/components/rich-text-editor/RichTextEditorTableMenu.js +28 -28
- package/dist/components/rich-text-editor/RichTextEditorToolbar.js +35 -35
- package/dist/components/sql-editor/SqlEditor.js +24 -24
- package/dist/components/sql-editor/SqlEditorContent.js +16 -16
- package/dist/components/sql-editor/SqlEditorHistoryMenu.js +15 -15
- package/dist/components/sql-editor/SqlEditorToolbar.js +21 -21
- package/dist/components/sunburst-chart/SunburstChart.js +126 -126
- package/dist/components/tag-selection/TagSelection.js +18 -18
- package/dist/components/tag-selection/TagSelectionAutocomplete.js +120 -120
- package/dist/components/tag-selection/TagSelectionSelectedTags.js +10 -10
- package/dist/index.cjs +2 -2
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +38 -35
- package/package.json +9 -2
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
export * from "./utils/muiTsClasses";
|
|
2
|
+
export * from "./components/kanban-board/kanbanBoardClasses";
|
|
3
|
+
export * from "./components/kanban-board/KanbanBoard";
|
|
4
|
+
export * from "./components/kanban-board/KanbanBoard.types";
|
|
2
5
|
export * from "./components/date-range-picker/dateRangePickerClasses";
|
|
3
6
|
export * from "./components/date-range-picker/DateRangePicker";
|
|
4
7
|
export * from "./components/date-range-picker/DateRangePicker.types";
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
export * from "./utils/muiTsClasses";
|
|
2
|
+
export * from "./components/kanban-board/kanbanBoardClasses";
|
|
3
|
+
export * from "./components/kanban-board/KanbanBoard";
|
|
4
|
+
export * from "./components/kanban-board/KanbanBoard.types";
|
|
2
5
|
export * from "./components/date-range-picker/dateRangePickerClasses";
|
|
3
6
|
export * from "./components/date-range-picker/DateRangePicker";
|
|
4
7
|
export * from "./components/date-range-picker/DateRangePicker.types";
|
package/dist/index.js
CHANGED
|
@@ -1,36 +1,39 @@
|
|
|
1
1
|
import { muiTsStateClasses as e } from "./utils/muiTsClasses.js";
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import {
|
|
9
|
-
import {
|
|
10
|
-
import {
|
|
11
|
-
import {
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import {
|
|
15
|
-
import {
|
|
16
|
-
import {
|
|
17
|
-
import {
|
|
18
|
-
import {
|
|
19
|
-
import {
|
|
20
|
-
import {
|
|
21
|
-
import {
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
|
|
2
|
+
import { kanbanBoardClasses as t } from "./components/kanban-board/kanbanBoardClasses.js";
|
|
3
|
+
import { DEFAULT_KANBAN_BOARD_TRANSLATION as n } from "./components/kanban-board/KanbanBoard.types.js";
|
|
4
|
+
import { KanbanBoard as r } from "./components/kanban-board/KanbanBoard.js";
|
|
5
|
+
import { dateRangePickerClasses as i } from "./components/date-range-picker/dateRangePickerClasses.js";
|
|
6
|
+
import { DEFAULT_DATE_RANGE_PICKER_TRANSLATION as a } from "./components/date-range-picker/DateRangePicker.types.js";
|
|
7
|
+
import { DateRangePicker as o } from "./components/date-range-picker/DateRangePicker.js";
|
|
8
|
+
import { tagSelectionClasses as s } from "./components/tag-selection/tagSelectionClasses.js";
|
|
9
|
+
import { passwordStrengthMeterClasses as c } from "./components/password-strength-meter/passwordStrengthMeterClasses.js";
|
|
10
|
+
import { colorPickerClasses as l } from "./components/color-picker/colorPickerClasses.js";
|
|
11
|
+
import { popoverColorPickerClasses as u } from "./components/color-picker/popoverColorPickerClasses.js";
|
|
12
|
+
import { DEFAULT_COLOR_PICKER_TRANSLATION as d, DEFAULT_POPOVER_COLOR_PICKER_TRANSLATION as f } from "./components/color-picker/ColorPicker.types.js";
|
|
13
|
+
import { ColorPicker as p } from "./components/color-picker/ColorPicker.js";
|
|
14
|
+
import { PopoverColorPicker as m } from "./components/color-picker/PopoverColorPicker.js";
|
|
15
|
+
import { DEFAULT_JSON_EDITOR_TOOLBAR_CONFIG as h, DEFAULT_JSON_EDITOR_TRANSLATION as g } from "./components/json-editor/JsonEditor.types.js";
|
|
16
|
+
import { JsonEditor as _ } from "./components/json-editor/JsonEditor.js";
|
|
17
|
+
import { DEFAULT_GANTT_TRANSLATIONS as v } from "./components/gantt-chart/GanttChart.types.js";
|
|
18
|
+
import { GanttChart as y, useGanttChartStore as b, useGanttTheme as x, useGanttTranslations as S, useRawGanttChartStore as C } from "./components/gantt-chart/GanttChart.js";
|
|
19
|
+
import { DEFAULT_CHECK_COLORS as w, DEFAULT_METER_COLORS as T, DEFAULT_PASSWORD_TRANSLATIONS as E } from "./components/password-strength-meter/PasswordStrengthMeter.types.js";
|
|
20
|
+
import { PasswordStrengthMeter as D } from "./components/password-strength-meter/PasswordStrengthMeter.js";
|
|
21
|
+
import { DEFAULT_TAG_SELECTION_TRANSLATION as O } from "./components/tag-selection/TagSelection.types.js";
|
|
22
|
+
import { TagSelection as k } from "./components/tag-selection/TagSelection.js";
|
|
23
|
+
import { DEFAULT_RICH_TEXT_EDITOR_TOOLBAR_CONFIG as A, DEFAULT_RICH_TEXT_EDITOR_TRANSLATION as j } from "./components/rich-text-editor/RichTextEditor.types.js";
|
|
24
|
+
import { RichTextEditor as M } from "./components/rich-text-editor/RichTextEditor.js";
|
|
25
|
+
import { DEFAULT_SQL_EDITOR_TOOLBAR_CONFIG as N, DEFAULT_SQL_EDITOR_TRANSLATION as P } from "./components/sql-editor/SqlEditor.types.js";
|
|
26
|
+
import { SqlEditor as F } from "./components/sql-editor/SqlEditor.js";
|
|
27
|
+
import { DEFAULT_SUNBURST_CHART_TRANSLATION as I } from "./components/sunburst-chart/SunburstChart.types.js";
|
|
28
|
+
import { SunburstChart as L } from "./components/sunburst-chart/SunburstChart.js";
|
|
29
|
+
import { DEFAULT_CHORD_CHART_TRANSLATION as R } from "./components/chord-chart/ChordChart.types.js";
|
|
30
|
+
import { ChordChart as z } from "./components/chord-chart/ChordChart.js";
|
|
31
|
+
import { DEFAULT_RADIAL_TREE_CHART_TRANSLATION as B } from "./components/radial-tree-chart/RadialTreeChart.types.js";
|
|
32
|
+
import { RadialTreeChart as V } from "./components/radial-tree-chart/RadialTreeChart.js";
|
|
33
|
+
import { DEFAULT_CIRCLE_PACKING_TRANSLATION as H } from "./components/circle-packing-chart/CirclePackingChart.types.js";
|
|
34
|
+
import { CirclePackingChart as U } from "./components/circle-packing-chart/CirclePackingChart.js";
|
|
35
|
+
import { DEFAULT_HORIZONTAL_TREE_TRANSLATION as W } from "./components/horizontal-tree-chart/HorizontalTreeChart.types.js";
|
|
36
|
+
import { HorizontalTreeChart as G } from "./components/horizontal-tree-chart/HorizontalTreeChart.js";
|
|
37
|
+
import { DEFAULT_RADIAL_STACKED_BAR_CHART_TRANSLATION as K } from "./components/radial-stacked-bar-chart/RadialStackedBarChart.types.js";
|
|
38
|
+
import { RadialStackedBarChart as q } from "./components/radial-stacked-bar-chart/RadialStackedBarChart.js";
|
|
39
|
+
export { z as ChordChart, U as CirclePackingChart, p as ColorPicker, w as DEFAULT_CHECK_COLORS, R as DEFAULT_CHORD_CHART_TRANSLATION, H as DEFAULT_CIRCLE_PACKING_TRANSLATION, d as DEFAULT_COLOR_PICKER_TRANSLATION, a as DEFAULT_DATE_RANGE_PICKER_TRANSLATION, v as DEFAULT_GANTT_TRANSLATIONS, W as DEFAULT_HORIZONTAL_TREE_TRANSLATION, h as DEFAULT_JSON_EDITOR_TOOLBAR_CONFIG, g as DEFAULT_JSON_EDITOR_TRANSLATION, n as DEFAULT_KANBAN_BOARD_TRANSLATION, T as DEFAULT_METER_COLORS, E as DEFAULT_PASSWORD_TRANSLATIONS, f as DEFAULT_POPOVER_COLOR_PICKER_TRANSLATION, K as DEFAULT_RADIAL_STACKED_BAR_CHART_TRANSLATION, B as DEFAULT_RADIAL_TREE_CHART_TRANSLATION, A as DEFAULT_RICH_TEXT_EDITOR_TOOLBAR_CONFIG, j as DEFAULT_RICH_TEXT_EDITOR_TRANSLATION, N as DEFAULT_SQL_EDITOR_TOOLBAR_CONFIG, P as DEFAULT_SQL_EDITOR_TRANSLATION, I as DEFAULT_SUNBURST_CHART_TRANSLATION, O as DEFAULT_TAG_SELECTION_TRANSLATION, o as DateRangePicker, y as GanttChart, G as HorizontalTreeChart, _ as JsonEditor, r as KanbanBoard, D as PasswordStrengthMeter, m as PopoverColorPicker, q as RadialStackedBarChart, V as RadialTreeChart, M as RichTextEditor, F as SqlEditor, L as SunburstChart, k as TagSelection, l as colorPickerClasses, i as dateRangePickerClasses, t as kanbanBoardClasses, e as muiTsStateClasses, c as passwordStrengthMeterClasses, u as popoverColorPickerClasses, s as tagSelectionClasses, b as useGanttChartStore, x as useGanttTheme, S as useGanttTranslations, C as useRawGanttChartStore };
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thebuoyant-tsdev/mui-ts-library",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.30.0",
|
|
4
4
|
"private": false,
|
|
5
|
-
"description": "Type-safe React component library for MUI v9.
|
|
5
|
+
"description": "Type-safe React component library for MUI v9. Kanban board with drag & drop, Gantt chart, WYSIWYG rich text editor (TipTap), SQL & JSON code editors (CodeMirror 6), D3 data visualizations (Sunburst, Chord, RadialTree, CirclePacking, HorizontalTree, RadialStackedBar), date range picker, tag selector, password strength meter, and a color picker. Full TypeScript, dark mode, i18n.",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Thomas Schlender",
|
|
8
8
|
"email": "thebuoyant@gmail.com"
|
|
@@ -58,6 +58,10 @@
|
|
|
58
58
|
"i18n",
|
|
59
59
|
"a11y",
|
|
60
60
|
"storybook",
|
|
61
|
+
"kanban",
|
|
62
|
+
"kanban-board",
|
|
63
|
+
"sprint-board",
|
|
64
|
+
"task-board",
|
|
61
65
|
"gantt",
|
|
62
66
|
"gantt-chart",
|
|
63
67
|
"react-gantt",
|
|
@@ -167,6 +171,9 @@
|
|
|
167
171
|
"@codemirror/lint": "^6.9.6",
|
|
168
172
|
"@codemirror/state": "^6.6.0",
|
|
169
173
|
"@codemirror/view": "^6.43.0",
|
|
174
|
+
"@dnd-kit/core": "^6.3.1",
|
|
175
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
176
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
170
177
|
"@lezer/common": "^1.5.2",
|
|
171
178
|
"@lezer/highlight": "^1.2.3",
|
|
172
179
|
"@replit/codemirror-minimap": "^0.5.2",
|