@wavv/ui 2.3.7-alpha.2 → 2.3.8
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.
|
@@ -156,6 +156,7 @@ const DropZone_DropZone = ({ label = 'Drop here', showFileList = true, disabled,
|
|
|
156
156
|
]
|
|
157
157
|
}),
|
|
158
158
|
showFileInfo && /*#__PURE__*/ jsxs(FileInfo, {
|
|
159
|
+
disabled: disabled,
|
|
159
160
|
children: [
|
|
160
161
|
/*#__PURE__*/ jsx(FileInfoLeft, {
|
|
161
162
|
children: supportedFormats && /*#__PURE__*/ jsxs("div", {
|
|
@@ -177,12 +178,13 @@ const DropZone_DropZone = ({ label = 'Drop here', showFileList = true, disabled,
|
|
|
177
178
|
}),
|
|
178
179
|
showManagedFileList && /*#__PURE__*/ jsx(FileList, {
|
|
179
180
|
children: files.map((file)=>/*#__PURE__*/ jsxs(FileItem, {
|
|
181
|
+
disabled: disabled,
|
|
180
182
|
children: [
|
|
181
183
|
/*#__PURE__*/ jsx(FileName, {
|
|
182
184
|
title: file.name,
|
|
183
185
|
children: file.name
|
|
184
186
|
}),
|
|
185
|
-
|
|
187
|
+
/*#__PURE__*/ jsx(Button, {
|
|
186
188
|
tiny: true,
|
|
187
189
|
subtle: true,
|
|
188
190
|
secondary: true,
|
|
@@ -253,7 +255,7 @@ const FileList = styled.div(({ theme })=>({
|
|
|
253
255
|
flexWrap: 'wrap',
|
|
254
256
|
gap: theme.size.xs
|
|
255
257
|
}));
|
|
256
|
-
const FileItem = styled.div(({ theme })=>({
|
|
258
|
+
const FileItem = styled.div(({ theme, disabled })=>({
|
|
257
259
|
display: 'flex',
|
|
258
260
|
alignItems: 'center',
|
|
259
261
|
justifyContent: 'space-between',
|
|
@@ -261,7 +263,10 @@ const FileItem = styled.div(({ theme })=>({
|
|
|
261
263
|
padding: '4px 8px',
|
|
262
264
|
paddingRight: 4,
|
|
263
265
|
backgroundColor: theme.scale0,
|
|
264
|
-
borderRadius: 4
|
|
266
|
+
borderRadius: 4,
|
|
267
|
+
opacity: disabled ? 0.4 : 1,
|
|
268
|
+
pointerEvents: disabled ? 'none' : 'auto',
|
|
269
|
+
userSelect: disabled ? 'none' : 'auto'
|
|
265
270
|
}));
|
|
266
271
|
const FileName = styled.div(({ theme })=>({
|
|
267
272
|
fontSize: theme.font.size.sm,
|
|
@@ -271,13 +276,14 @@ const FileName = styled.div(({ theme })=>({
|
|
|
271
276
|
textOverflow: 'ellipsis',
|
|
272
277
|
whiteSpace: 'nowrap'
|
|
273
278
|
}));
|
|
274
|
-
const FileInfo = styled.div(({ theme })=>({
|
|
279
|
+
const FileInfo = styled.div(({ theme, disabled })=>({
|
|
275
280
|
display: 'flex',
|
|
276
281
|
alignItems: 'center',
|
|
277
282
|
justifyContent: 'space-between',
|
|
278
283
|
gap: 16,
|
|
279
284
|
fontSize: theme.font.size.sm,
|
|
280
|
-
|
|
285
|
+
userSelect: 'none',
|
|
286
|
+
color: disabled ? theme.scale4 : theme.scale6
|
|
281
287
|
}));
|
|
282
288
|
const FileInfoLeft = styled.div({});
|
|
283
289
|
const FileInfoRight = styled.div({
|
|
@@ -18,7 +18,12 @@ import RichTextToolbar from "./RichTextToolbar.js";
|
|
|
18
18
|
const createEditorContent = (value, fields, displayValue = false)=>{
|
|
19
19
|
if (!value) return {
|
|
20
20
|
type: 'doc',
|
|
21
|
-
content: [
|
|
21
|
+
content: [
|
|
22
|
+
{
|
|
23
|
+
type: 'paragraph',
|
|
24
|
+
content: []
|
|
25
|
+
}
|
|
26
|
+
]
|
|
22
27
|
};
|
|
23
28
|
if ('object' == typeof value && value.type) {
|
|
24
29
|
if (fields && fields.length > 0) return parseJSONToDocument(value, fields, displayValue);
|
|
@@ -43,7 +48,12 @@ const createEditorContent = (value, fields, displayValue = false)=>{
|
|
|
43
48
|
}
|
|
44
49
|
return {
|
|
45
50
|
type: 'doc',
|
|
46
|
-
content: [
|
|
51
|
+
content: [
|
|
52
|
+
{
|
|
53
|
+
type: 'paragraph',
|
|
54
|
+
content: []
|
|
55
|
+
}
|
|
56
|
+
]
|
|
47
57
|
};
|
|
48
58
|
};
|
|
49
59
|
const Editor = ({ value, textValue, onChange, onTextChange, onDirtyChange, onEnterKey, onFocus, onBlur, mergeFields = [], placeholder = 'Text...', description, invalid, width, height, maxHeight, noPadding = false, readOnly = false, interactiveTaskItems = false, displayMergedValues = false, color, overflow, clampLines, label, disabled, borderRadius, backgroundColor, fontSize, textOnly, showToolbarOptions = false, maxLength, margin, marginLeft, marginRight, marginTop, marginBottom, padding, paddingLeft, paddingRight, paddingTop, paddingBottom, ref, className, ...rest })=>{
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wavv/ui",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.8",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -31,22 +31,22 @@
|
|
|
31
31
|
"@emotion/styled": "^11.14.1",
|
|
32
32
|
"@internationalized/date": "3.10.0",
|
|
33
33
|
"@react-hook/resize-observer": "^2.0.2",
|
|
34
|
-
"@tiptap/core": "^3.
|
|
35
|
-
"@tiptap/extension-character-count": "^3.
|
|
36
|
-
"@tiptap/extension-highlight": "^3.
|
|
37
|
-
"@tiptap/extension-placeholder": "^3.
|
|
38
|
-
"@tiptap/extension-task-item": "^3.
|
|
39
|
-
"@tiptap/extension-task-list": "^3.
|
|
40
|
-
"@tiptap/markdown": "^3.
|
|
41
|
-
"@tiptap/pm": "^3.
|
|
42
|
-
"@tiptap/react": "^3.
|
|
43
|
-
"@tiptap/starter-kit": "^3.
|
|
34
|
+
"@tiptap/core": "^3.13.0",
|
|
35
|
+
"@tiptap/extension-character-count": "^3.13.0",
|
|
36
|
+
"@tiptap/extension-highlight": "^3.13.0",
|
|
37
|
+
"@tiptap/extension-placeholder": "^3.13.0",
|
|
38
|
+
"@tiptap/extension-task-item": "^3.13.0",
|
|
39
|
+
"@tiptap/extension-task-list": "^3.13.0",
|
|
40
|
+
"@tiptap/markdown": "^3.13.0",
|
|
41
|
+
"@tiptap/pm": "^3.13.0",
|
|
42
|
+
"@tiptap/react": "^3.13.0",
|
|
43
|
+
"@tiptap/starter-kit": "^3.13.0",
|
|
44
44
|
"cmdk": "^1.1.1",
|
|
45
45
|
"date-fns": "^4.1.0",
|
|
46
46
|
"draft-js": "^0.11.7",
|
|
47
47
|
"es-toolkit": "^1.42.0",
|
|
48
|
-
"libphonenumber-js": "^1.12.
|
|
49
|
-
"lucide-react": "^0.
|
|
48
|
+
"libphonenumber-js": "^1.12.31",
|
|
49
|
+
"lucide-react": "^0.556.0",
|
|
50
50
|
"polished": "^4.1.4",
|
|
51
51
|
"prism-react-renderer": "^2.4.1",
|
|
52
52
|
"react-aria": "3.44.0",
|
|
@@ -65,13 +65,13 @@
|
|
|
65
65
|
"@chromatic-com/storybook": "^4.1.3",
|
|
66
66
|
"@emotion/babel-plugin": "^11.13.5",
|
|
67
67
|
"@emotion/react": "^11.14.0",
|
|
68
|
-
"@rsbuild/core": "1.6.
|
|
68
|
+
"@rsbuild/core": "1.6.12",
|
|
69
69
|
"@rsbuild/plugin-react": "^1.4.2",
|
|
70
70
|
"@rsbuild/plugin-svgr": "^1.2.2",
|
|
71
|
-
"@rslib/core": "^0.18.
|
|
72
|
-
"@storybook/addon-docs": "^10.1.
|
|
73
|
-
"@storybook/addon-links": "^10.1.
|
|
74
|
-
"@storybook/addon-themes": "^10.1.
|
|
71
|
+
"@rslib/core": "^0.18.3",
|
|
72
|
+
"@storybook/addon-docs": "^10.1.4",
|
|
73
|
+
"@storybook/addon-links": "^10.1.4",
|
|
74
|
+
"@storybook/addon-themes": "^10.1.4",
|
|
75
75
|
"@storybook/test-runner": "^0.24.2",
|
|
76
76
|
"@svgr/core": "^8.1.0",
|
|
77
77
|
"@svgr/plugin-jsx": "^8.1.0",
|
|
@@ -91,21 +91,21 @@
|
|
|
91
91
|
"change-case": "^5.4.4",
|
|
92
92
|
"chromatic": "^13.3.4",
|
|
93
93
|
"jest": "^30.2.0",
|
|
94
|
-
"lefthook": "^2.0.
|
|
94
|
+
"lefthook": "^2.0.8",
|
|
95
95
|
"ncp": "^2.0.0",
|
|
96
96
|
"path": "^0.12.7",
|
|
97
97
|
"phone": "^3.1.67",
|
|
98
98
|
"playwright": "^1.57.0",
|
|
99
99
|
"postcss": "^8.5.6",
|
|
100
|
-
"prettier": "^3.7.
|
|
100
|
+
"prettier": "^3.7.4",
|
|
101
101
|
"prompts": "^2.4.2",
|
|
102
102
|
"randomcolor": "^0.6.2",
|
|
103
|
-
"react": "^19.2.
|
|
104
|
-
"react-dom": "^19.2.
|
|
103
|
+
"react": "^19.2.1",
|
|
104
|
+
"react-dom": "^19.2.1",
|
|
105
105
|
"replace": "^1.2.2",
|
|
106
106
|
"signale": "^1.4.0",
|
|
107
|
-
"storybook": "^10.1.
|
|
108
|
-
"storybook-react-rsbuild": "^3.
|
|
107
|
+
"storybook": "^10.1.4",
|
|
108
|
+
"storybook-react-rsbuild": "^3.1.0",
|
|
109
109
|
"tsc-files": "^1.1.4",
|
|
110
110
|
"tslib": "^2.8.1",
|
|
111
111
|
"tsx": "^4.21.0",
|