@thebuoyant-tsdev/mui-ts-library 1.3.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/LICENSE +21 -0
- package/README.de.md +224 -0
- package/README.md +224 -0
- package/dist/components/confirm-dialog/ConfirmDialog.types.d.ts +21 -0
- package/dist/components/confirm-dialog/ConfirmDialogProvider.d.ts +5 -0
- package/dist/components/gantt-chart/GanttChart.constants.d.ts +11 -0
- package/dist/components/gantt-chart/GanttChart.d.ts +7 -0
- package/dist/components/gantt-chart/GanttChart.store.d.ts +28 -0
- package/dist/components/gantt-chart/GanttChart.types.d.ts +119 -0
- package/dist/components/gantt-chart/GanttDeleteDialog.d.ts +9 -0
- package/dist/components/gantt-chart/GanttTaskDialog.d.ts +11 -0
- package/dist/components/gantt-chart/GanttTaskPanel.d.ts +21 -0
- package/dist/components/gantt-chart/GanttTimeline.d.ts +19 -0
- package/dist/components/gantt-chart/GanttTimelineHeader.d.ts +17 -0
- package/dist/components/gantt-chart/GanttToolbar.d.ts +7 -0
- package/dist/components/gantt-chart/util/gantt-chart.util.d.ts +80 -0
- package/dist/components/json-editor/JsonEditor.d.ts +2 -0
- package/dist/components/json-editor/JsonEditor.types.d.ts +60 -0
- package/dist/components/json-editor/JsonEditorContent.d.ts +17 -0
- package/dist/components/json-editor/JsonEditorFooter.d.ts +13 -0
- package/dist/components/json-editor/JsonEditorToolbar.d.ts +11 -0
- package/dist/components/password-strength-meter/PasswordStrengthMeter.d.ts +2 -0
- package/dist/components/password-strength-meter/PasswordStrengthMeter.types.d.ts +56 -0
- package/dist/components/password-strength-meter/util/password-strength.util.d.ts +2 -0
- package/dist/components/rich-text-editor/RichTextEditor.d.ts +2 -0
- package/dist/components/rich-text-editor/RichTextEditor.types.d.ts +72 -0
- package/dist/components/rich-text-editor/RichTextEditorColorPicker.d.ts +12 -0
- package/dist/components/rich-text-editor/RichTextEditorContent.d.ts +9 -0
- package/dist/components/rich-text-editor/RichTextEditorFooter.d.ts +11 -0
- package/dist/components/rich-text-editor/RichTextEditorLinkDialog.d.ts +10 -0
- package/dist/components/rich-text-editor/RichTextEditorToolbar.d.ts +10 -0
- package/dist/components/rich-text-editor/util/rich-text-editor.util.d.ts +9 -0
- package/dist/components/sql-editor/SqlEditor.d.ts +2 -0
- package/dist/components/sql-editor/SqlEditor.types.d.ts +73 -0
- package/dist/components/sql-editor/SqlEditorContent.d.ts +23 -0
- package/dist/components/sql-editor/SqlEditorFooter.d.ts +13 -0
- package/dist/components/sql-editor/SqlEditorToolbar.d.ts +12 -0
- package/dist/components/tag-selection/TagSelection.d.ts +2 -0
- package/dist/components/tag-selection/TagSelection.store.d.ts +12 -0
- package/dist/components/tag-selection/TagSelection.types.d.ts +41 -0
- package/dist/components/tag-selection/TagSelectionAutocomplete.d.ts +18 -0
- package/dist/components/tag-selection/TagSelectionChip.d.ts +10 -0
- package/dist/components/tag-selection/TagSelectionSelectedTags.d.ts +13 -0
- package/dist/index.cjs +230 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +43753 -0
- package/package.json +175 -0
package/package.json
ADDED
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@thebuoyant-tsdev/mui-ts-library",
|
|
3
|
+
"version": "1.3.0",
|
|
4
|
+
"private": false,
|
|
5
|
+
"description": "Type-safe React component library for MUI v9. Confirm dialog with useConfirm hook, Gantt chart with drag & drop, multi-tag selector, WYSIWYG rich text editor (TipTap v3), SQL code editor (CodeMirror 6), JSON editor with real-time validation (CodeMirror 6), and password strength meter. Full TypeScript, dark mode, i18n.",
|
|
6
|
+
"author": {
|
|
7
|
+
"name": "Thomas Schlender",
|
|
8
|
+
"email": "thebuoyant@gmail.com"
|
|
9
|
+
},
|
|
10
|
+
"license": "MIT",
|
|
11
|
+
"homepage": "https://github.com/thebuoyant/mui-ts-library#readme",
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/thebuoyant/mui-ts-library.git"
|
|
15
|
+
},
|
|
16
|
+
"bugs": {
|
|
17
|
+
"url": "https://github.com/thebuoyant/mui-ts-library/issues"
|
|
18
|
+
},
|
|
19
|
+
"engines": {
|
|
20
|
+
"node": ">=18"
|
|
21
|
+
},
|
|
22
|
+
"type": "module",
|
|
23
|
+
"main": "dist/index.cjs",
|
|
24
|
+
"module": "dist/index.js",
|
|
25
|
+
"types": "dist/index.d.ts",
|
|
26
|
+
"exports": {
|
|
27
|
+
".": {
|
|
28
|
+
"types": "./dist/index.d.ts",
|
|
29
|
+
"import": "./dist/index.js",
|
|
30
|
+
"require": "./dist/index.cjs"
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"files": [
|
|
34
|
+
"dist",
|
|
35
|
+
"README.md"
|
|
36
|
+
],
|
|
37
|
+
"sideEffects": false,
|
|
38
|
+
"keywords": [
|
|
39
|
+
"react",
|
|
40
|
+
"typescript",
|
|
41
|
+
"mui",
|
|
42
|
+
"material-ui",
|
|
43
|
+
"mui-components",
|
|
44
|
+
"material-design",
|
|
45
|
+
"component-library",
|
|
46
|
+
"ui-components",
|
|
47
|
+
"react-components",
|
|
48
|
+
"form-components",
|
|
49
|
+
"dark-mode",
|
|
50
|
+
"i18n",
|
|
51
|
+
"accessibility",
|
|
52
|
+
"a11y",
|
|
53
|
+
"gantt",
|
|
54
|
+
"gantt-chart",
|
|
55
|
+
"react-gantt",
|
|
56
|
+
"react-gantt-chart",
|
|
57
|
+
"project-management",
|
|
58
|
+
"project-timeline",
|
|
59
|
+
"task-management",
|
|
60
|
+
"timeline",
|
|
61
|
+
"milestones",
|
|
62
|
+
"drag-and-drop",
|
|
63
|
+
"drag-drop",
|
|
64
|
+
"resizable",
|
|
65
|
+
"virtualization",
|
|
66
|
+
"rich-text-editor",
|
|
67
|
+
"react-rich-text-editor",
|
|
68
|
+
"rich-text",
|
|
69
|
+
"text-editor",
|
|
70
|
+
"wysiwyg",
|
|
71
|
+
"tiptap",
|
|
72
|
+
"prosemirror",
|
|
73
|
+
"tag-selection",
|
|
74
|
+
"react-tags",
|
|
75
|
+
"react-tag-input",
|
|
76
|
+
"tag-input",
|
|
77
|
+
"autocomplete",
|
|
78
|
+
"multi-select",
|
|
79
|
+
"password-strength",
|
|
80
|
+
"password-strength-meter",
|
|
81
|
+
"sql-editor",
|
|
82
|
+
"sql",
|
|
83
|
+
"codemirror",
|
|
84
|
+
"codemirror-6",
|
|
85
|
+
"code-editor",
|
|
86
|
+
"sql-formatter",
|
|
87
|
+
"syntax-highlighting",
|
|
88
|
+
"sql-autocomplete",
|
|
89
|
+
"confirm-dialog",
|
|
90
|
+
"confirm",
|
|
91
|
+
"dialog",
|
|
92
|
+
"modal",
|
|
93
|
+
"alert-dialog",
|
|
94
|
+
"json-editor",
|
|
95
|
+
"json",
|
|
96
|
+
"json-viewer",
|
|
97
|
+
"json-formatter",
|
|
98
|
+
"json-validator"
|
|
99
|
+
],
|
|
100
|
+
"scripts": {
|
|
101
|
+
"dev": "vite",
|
|
102
|
+
"clean": "rm -rf dist",
|
|
103
|
+
"build": "npm run clean && vite build && tsc -p tsconfig.build.json",
|
|
104
|
+
"prepublishOnly": "npm run test:run && npm run build",
|
|
105
|
+
"pack-release": "npm run build && mkdir -p releases && npm pack --pack-destination releases/",
|
|
106
|
+
"npm-deploy": "bash scripts/npm-deploy.sh",
|
|
107
|
+
"lint": "eslint .",
|
|
108
|
+
"preview": "vite preview",
|
|
109
|
+
"storybook": "storybook dev -p 6006",
|
|
110
|
+
"build-storybook": "storybook build",
|
|
111
|
+
"build-storybook-docker": "bash scripts/build-storybook-docker.sh",
|
|
112
|
+
"test": "vitest",
|
|
113
|
+
"test:run": "vitest run",
|
|
114
|
+
"test:coverage": "vitest run --coverage"
|
|
115
|
+
},
|
|
116
|
+
"peerDependencies": {
|
|
117
|
+
"@emotion/react": "^11.14.0",
|
|
118
|
+
"@emotion/styled": "^11.14.1",
|
|
119
|
+
"@mui/icons-material": "^9.0.1",
|
|
120
|
+
"@mui/material": "^9.0.1",
|
|
121
|
+
"react": "^19.2.4",
|
|
122
|
+
"react-dom": "^19.2.4"
|
|
123
|
+
},
|
|
124
|
+
"dependencies": {
|
|
125
|
+
"@codemirror/autocomplete": "^6.20.2",
|
|
126
|
+
"@codemirror/commands": "^6.10.3",
|
|
127
|
+
"@codemirror/lang-json": "^6.0.2",
|
|
128
|
+
"@codemirror/lang-sql": "^6.10.0",
|
|
129
|
+
"@codemirror/language": "^6.12.3",
|
|
130
|
+
"@codemirror/lint": "^6.9.6",
|
|
131
|
+
"@codemirror/state": "^6.6.0",
|
|
132
|
+
"@codemirror/view": "^6.43.0",
|
|
133
|
+
"@lezer/highlight": "^1.2.3",
|
|
134
|
+
"@tanstack/react-virtual": "^3.13.24",
|
|
135
|
+
"@tiptap/extension-character-count": "^3.23.4",
|
|
136
|
+
"@tiptap/extension-color": "^3.23.4",
|
|
137
|
+
"@tiptap/extension-highlight": "^3.23.4",
|
|
138
|
+
"@tiptap/extension-link": "^3.23.4",
|
|
139
|
+
"@tiptap/extension-placeholder": "^3.23.4",
|
|
140
|
+
"@tiptap/extension-text-style": "^3.23.4",
|
|
141
|
+
"@tiptap/extension-underline": "^3.23.4",
|
|
142
|
+
"@tiptap/react": "^3.23.4",
|
|
143
|
+
"@tiptap/starter-kit": "^3.23.4",
|
|
144
|
+
"sql-formatter": "^15.8.0",
|
|
145
|
+
"tiptap-markdown": "^0.9.0",
|
|
146
|
+
"zustand": "^5.0.12"
|
|
147
|
+
},
|
|
148
|
+
"devDependencies": {
|
|
149
|
+
"@emotion/react": "^11.14.0",
|
|
150
|
+
"@emotion/styled": "^11.14.1",
|
|
151
|
+
"@eslint/js": "^9.39.4",
|
|
152
|
+
"@mui/icons-material": "^9.0.1",
|
|
153
|
+
"@mui/material": "^9.0.1",
|
|
154
|
+
"@storybook/react-vite": "^10.3.4",
|
|
155
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
156
|
+
"@testing-library/react": "^16.3.2",
|
|
157
|
+
"@testing-library/user-event": "^14.6.1",
|
|
158
|
+
"@types/node": "^24.12.0",
|
|
159
|
+
"@types/react": "^19.2.14",
|
|
160
|
+
"@types/react-dom": "^19.2.3",
|
|
161
|
+
"@vitejs/plugin-react": "^6.0.1",
|
|
162
|
+
"@vitest/coverage-v8": "^4.1.2",
|
|
163
|
+
"eslint": "^9.39.4",
|
|
164
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
165
|
+
"eslint-plugin-react-refresh": "^0.5.2",
|
|
166
|
+
"eslint-plugin-storybook": "^10.3.4",
|
|
167
|
+
"globals": "^17.4.0",
|
|
168
|
+
"jsdom": "^29.0.1",
|
|
169
|
+
"storybook": "^10.3.4",
|
|
170
|
+
"typescript": "~5.9.3",
|
|
171
|
+
"typescript-eslint": "^8.58.0",
|
|
172
|
+
"vite": "^8.0.1",
|
|
173
|
+
"vitest": "^4.1.2"
|
|
174
|
+
}
|
|
175
|
+
}
|