@simoncomputing/mui-bueno-v3 0.1.14 → 0.1.15
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.md +69 -0
- package/dist/@types/index.d.ts +2 -0
- package/dist/components/Form/MForm/MForm.d.ts +12 -7
- package/dist/components/Form/MForm/MFormContext.d.ts +8 -0
- package/dist/index.cjs.js +37 -37
- package/dist/index.es.js +2537 -2488
- package/dist/index.umd.js +40 -40
- package/package.json +136 -136
package/package.json
CHANGED
|
@@ -1,139 +1,139 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
2
|
+
"name": "@simoncomputing/mui-bueno-v3",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.1.15",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.umd.js",
|
|
7
|
+
"module": "./dist/index.es.js",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"CHANGELOG.md"
|
|
12
|
+
],
|
|
13
|
+
"sideEffects": [
|
|
14
|
+
"**/*.css"
|
|
15
|
+
],
|
|
16
|
+
"exports": {
|
|
17
|
+
".": {
|
|
18
|
+
"types": "./dist/index.d.ts",
|
|
19
|
+
"import": "./dist/index.es.js",
|
|
20
|
+
"require": "./dist/index.umd.js"
|
|
21
|
+
},
|
|
22
|
+
"./dist/index.css": {
|
|
23
|
+
"import": "./dist/index.css",
|
|
24
|
+
"require": "./dist/index.css"
|
|
25
|
+
}
|
|
21
26
|
},
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
"
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
"
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
"
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
"
|
|
134
|
-
"vite-plugin-lib-inject-css": "^2.2.0",
|
|
135
|
-
"vite-plugin-svgr": "^4.3.0",
|
|
136
|
-
"vitest": "^2.1.9"
|
|
137
|
-
},
|
|
138
|
-
"packageManager": "pnpm@9.15.2"
|
|
27
|
+
"scripts": {
|
|
28
|
+
"start": "npm run dev",
|
|
29
|
+
"dev": "storybook dev -p 6006",
|
|
30
|
+
"build": "storybook build -o dist",
|
|
31
|
+
"build:lib": "tsc -b && vite build",
|
|
32
|
+
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
|
33
|
+
"test": "vitest",
|
|
34
|
+
"test:coverage": "vitest --coverage.enabled=true",
|
|
35
|
+
"validate": "npm run build:lib && vitest run",
|
|
36
|
+
"publishLib": "npm run validate && npm publish --access public",
|
|
37
|
+
"publishLib:dryrun": "npm run validate && npm publish --dry-run"
|
|
38
|
+
},
|
|
39
|
+
"peerDependencies": {
|
|
40
|
+
"@emotion/react": "^11.14.0",
|
|
41
|
+
"@emotion/styled": "^11.14.0",
|
|
42
|
+
"@mui/icons-material": "^6.4.9",
|
|
43
|
+
"@mui/material": "^6.4.9",
|
|
44
|
+
"@mui/x-date-pickers": "^7.23.3",
|
|
45
|
+
"dayjs": "^1.11.13",
|
|
46
|
+
"react": "^19.0.0",
|
|
47
|
+
"react-dom": "^19.0.0",
|
|
48
|
+
"react-hook-form": "^7.59.0",
|
|
49
|
+
"react-router-dom": "^7.1.1"
|
|
50
|
+
},
|
|
51
|
+
"dependencies": {
|
|
52
|
+
"@hookform/resolvers": "^5.1.1",
|
|
53
|
+
"@tiptap/core": "^2.11.6",
|
|
54
|
+
"@tiptap/extension-blockquote": "^2.11.6",
|
|
55
|
+
"@tiptap/extension-bold": "^2.11.6",
|
|
56
|
+
"@tiptap/extension-bubble-menu": "^2.11.6",
|
|
57
|
+
"@tiptap/extension-bullet-list": "^2.11.6",
|
|
58
|
+
"@tiptap/extension-code": "^2.11.6",
|
|
59
|
+
"@tiptap/extension-code-block": "^2.11.6",
|
|
60
|
+
"@tiptap/extension-color": "^2.11.6",
|
|
61
|
+
"@tiptap/extension-document": "^2.11.6",
|
|
62
|
+
"@tiptap/extension-dropcursor": "^2.11.6",
|
|
63
|
+
"@tiptap/extension-floating-menu": "^2.11.6",
|
|
64
|
+
"@tiptap/extension-font-family": "^2.11.6",
|
|
65
|
+
"@tiptap/extension-gapcursor": "^2.11.6",
|
|
66
|
+
"@tiptap/extension-hard-break": "^2.11.6",
|
|
67
|
+
"@tiptap/extension-heading": "^2.11.6",
|
|
68
|
+
"@tiptap/extension-highlight": "^2.11.6",
|
|
69
|
+
"@tiptap/extension-history": "^2.11.6",
|
|
70
|
+
"@tiptap/extension-horizontal-rule": "^2.11.6",
|
|
71
|
+
"@tiptap/extension-image": "^2.11.6",
|
|
72
|
+
"@tiptap/extension-italic": "^2.11.6",
|
|
73
|
+
"@tiptap/extension-link": "^2.11.6",
|
|
74
|
+
"@tiptap/extension-list-item": "^2.11.6",
|
|
75
|
+
"@tiptap/extension-mention": "^2.11.6",
|
|
76
|
+
"@tiptap/extension-ordered-list": "^2.11.6",
|
|
77
|
+
"@tiptap/extension-paragraph": "^2.11.6",
|
|
78
|
+
"@tiptap/extension-placeholder": "^2.11.6",
|
|
79
|
+
"@tiptap/extension-strike": "^2.11.6",
|
|
80
|
+
"@tiptap/extension-subscript": "^2.11.6",
|
|
81
|
+
"@tiptap/extension-superscript": "^2.11.6",
|
|
82
|
+
"@tiptap/extension-table": "^2.11.6",
|
|
83
|
+
"@tiptap/extension-table-cell": "^2.11.6",
|
|
84
|
+
"@tiptap/extension-table-header": "^2.11.6",
|
|
85
|
+
"@tiptap/extension-table-row": "^2.11.6",
|
|
86
|
+
"@tiptap/extension-task-item": "^2.11.6",
|
|
87
|
+
"@tiptap/extension-task-list": "^2.11.6",
|
|
88
|
+
"@tiptap/extension-text": "^2.11.6",
|
|
89
|
+
"@tiptap/extension-text-align": "^2.11.6",
|
|
90
|
+
"@tiptap/extension-text-style": "^2.11.6",
|
|
91
|
+
"@tiptap/extension-underline": "^2.11.6",
|
|
92
|
+
"@tiptap/pm": "^2.11.6",
|
|
93
|
+
"@tiptap/react": "^2.11.6",
|
|
94
|
+
"@tiptap/starter-kit": "^2.11.6",
|
|
95
|
+
"@types/autosuggest-highlight": "^3.2.3",
|
|
96
|
+
"@types/google.maps": "^3.58.1",
|
|
97
|
+
"autosuggest-highlight": "^3.3.4",
|
|
98
|
+
"google-maps": "^4.3.3",
|
|
99
|
+
"mui-tiptap": "^1.18.0",
|
|
100
|
+
"yup": "^1.6.1"
|
|
101
|
+
},
|
|
102
|
+
"devDependencies": {
|
|
103
|
+
"@chromatic-com/storybook": "^3.2.3",
|
|
104
|
+
"@storybook/addon-essentials": "^8.6.15",
|
|
105
|
+
"@storybook/addon-interactions": "^8.6.15",
|
|
106
|
+
"@storybook/addon-links": "^8.6.15",
|
|
107
|
+
"@storybook/addon-themes": "^8.6.15",
|
|
108
|
+
"@storybook/react": "^8.6.15",
|
|
109
|
+
"@storybook/react-vite": "^8.6.15",
|
|
110
|
+
"@testing-library/jest-dom": "^6.6.3",
|
|
111
|
+
"@testing-library/react": "^16.1.0",
|
|
112
|
+
"@testing-library/user-event": "^14.5.2",
|
|
113
|
+
"@types/lodash": "^4.17.13",
|
|
114
|
+
"@types/node": "^22.10.5",
|
|
115
|
+
"@types/react": "^19.0.2",
|
|
116
|
+
"@types/react-dom": "^19.0.2",
|
|
117
|
+
"@typescript-eslint/eslint-plugin": "^8.19.0",
|
|
118
|
+
"@typescript-eslint/parser": "^8.19.0",
|
|
119
|
+
"@vitejs/plugin-react": "^4.3.4",
|
|
120
|
+
"@vitest/coverage-v8": "^2.1.9",
|
|
121
|
+
"eslint": "^9.17.0",
|
|
122
|
+
"eslint-config-prettier": "^9.1.0",
|
|
123
|
+
"eslint-plugin-prettier": "^5.2.1",
|
|
124
|
+
"eslint-plugin-react-hooks": "^5.1.0",
|
|
125
|
+
"eslint-plugin-react-refresh": "^0.4.16",
|
|
126
|
+
"eslint-plugin-storybook": "^0.11.2",
|
|
127
|
+
"jsdom": "^25.0.1",
|
|
128
|
+
"prettier": "^3.4.2",
|
|
129
|
+
"sass": "^1.83.0",
|
|
130
|
+
"storybook": "^8.4.7",
|
|
131
|
+
"typescript": "^5.7.2",
|
|
132
|
+
"vite": "^6.0.7",
|
|
133
|
+
"vite-plugin-dts": "^4.4.0",
|
|
134
|
+
"vite-plugin-lib-inject-css": "^2.2.0",
|
|
135
|
+
"vite-plugin-svgr": "^4.3.0",
|
|
136
|
+
"vitest": "^2.1.9"
|
|
137
|
+
},
|
|
138
|
+
"packageManager": "pnpm@9.15.2"
|
|
139
139
|
}
|