@duxweb/dvha-pro 1.1.6 → 1.1.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.
- package/dist/cjs/components/editor/aiEditor.cjs +1 -1
- package/dist/cjs/components/upload/file.cjs +1 -1
- package/dist/cjs/components/upload/image.cjs +1 -1
- package/dist/cjs/components/upload/manager.cjs +1 -1
- package/dist/cjs/components/widget/image.cjs +1 -1
- package/dist/cjs/theme/uno.css.cjs +33 -13
- package/dist/esm/components/editor/aiEditor.js +187 -59
- package/dist/esm/components/upload/file.js +19 -20
- package/dist/esm/components/upload/image.js +4 -4
- package/dist/esm/components/upload/manager.js +3 -3
- package/dist/esm/components/widget/image.js +9 -13
- package/dist/esm/theme/uno.css.js +33 -13
- package/dist/types/components/editor/aiEditor.d.ts +27 -0
- package/dist/types/components/table/table.d.ts +674 -52
- package/dist/types/components/widget/image.d.ts +90 -12
- package/package.json +5 -5
|
@@ -35,7 +35,20 @@ export declare const DuxImage: import("vue").DefineComponent<{}, () => import("v
|
|
|
35
35
|
arrowOffsetVertical: string;
|
|
36
36
|
arrowHeight: string;
|
|
37
37
|
padding: string;
|
|
38
|
-
},
|
|
38
|
+
}, {
|
|
39
|
+
Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
|
|
40
|
+
height: string;
|
|
41
|
+
width: string;
|
|
42
|
+
borderRadius: string;
|
|
43
|
+
color: string;
|
|
44
|
+
colorHover: string;
|
|
45
|
+
railInsetHorizontalBottom: string;
|
|
46
|
+
railInsetHorizontalTop: string;
|
|
47
|
+
railInsetVerticalRight: string;
|
|
48
|
+
railInsetVerticalLeft: string;
|
|
49
|
+
railColor: string;
|
|
50
|
+
}, any>;
|
|
51
|
+
}>;
|
|
39
52
|
}>;
|
|
40
53
|
}>>;
|
|
41
54
|
themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Image", {
|
|
@@ -64,7 +77,20 @@ export declare const DuxImage: import("vue").DefineComponent<{}, () => import("v
|
|
|
64
77
|
arrowOffsetVertical: string;
|
|
65
78
|
arrowHeight: string;
|
|
66
79
|
padding: string;
|
|
67
|
-
},
|
|
80
|
+
}, {
|
|
81
|
+
Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
|
|
82
|
+
height: string;
|
|
83
|
+
width: string;
|
|
84
|
+
borderRadius: string;
|
|
85
|
+
color: string;
|
|
86
|
+
colorHover: string;
|
|
87
|
+
railInsetHorizontalBottom: string;
|
|
88
|
+
railInsetHorizontalTop: string;
|
|
89
|
+
railInsetVerticalRight: string;
|
|
90
|
+
railInsetVerticalLeft: string;
|
|
91
|
+
railColor: string;
|
|
92
|
+
}, any>;
|
|
93
|
+
}>;
|
|
68
94
|
}>;
|
|
69
95
|
}>>>;
|
|
70
96
|
builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Image", {
|
|
@@ -93,7 +119,20 @@ export declare const DuxImage: import("vue").DefineComponent<{}, () => import("v
|
|
|
93
119
|
arrowOffsetVertical: string;
|
|
94
120
|
arrowHeight: string;
|
|
95
121
|
padding: string;
|
|
96
|
-
},
|
|
122
|
+
}, {
|
|
123
|
+
Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
|
|
124
|
+
height: string;
|
|
125
|
+
width: string;
|
|
126
|
+
borderRadius: string;
|
|
127
|
+
color: string;
|
|
128
|
+
colorHover: string;
|
|
129
|
+
railInsetHorizontalBottom: string;
|
|
130
|
+
railInsetHorizontalTop: string;
|
|
131
|
+
railInsetVerticalRight: string;
|
|
132
|
+
railInsetVerticalLeft: string;
|
|
133
|
+
railColor: string;
|
|
134
|
+
}, any>;
|
|
135
|
+
}>;
|
|
97
136
|
}>;
|
|
98
137
|
}>>>;
|
|
99
138
|
alt: StringConstructor;
|
|
@@ -116,24 +155,24 @@ export declare const DuxImage: import("vue").DefineComponent<{}, () => import("v
|
|
|
116
155
|
onLoad: import("vue").PropType<(e: Event) => void>;
|
|
117
156
|
}>, {
|
|
118
157
|
click: () => void;
|
|
158
|
+
showPreview: () => void;
|
|
119
159
|
mergedClsPrefix: import("vue").Ref<string, string>;
|
|
120
160
|
groupId: string | undefined;
|
|
121
161
|
previewInstRef: import("vue").Ref<{
|
|
122
162
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
123
|
-
|
|
124
|
-
toggleShow: () => void;
|
|
125
|
-
} | null, import("naive-ui/es/image/src/ImagePreview").ImagePreviewInst | {
|
|
163
|
+
} | null, import("naive-ui").ImagePreviewInst | {
|
|
126
164
|
setThumbnailEl: (e: HTMLImageElement | null) => void;
|
|
127
|
-
setPreviewSrc: (src?: string) => void;
|
|
128
|
-
toggleShow: () => void;
|
|
129
165
|
} | null>;
|
|
130
166
|
imageRef: import("vue").Ref<HTMLImageElement | null, HTMLImageElement | null>;
|
|
167
|
+
mergedPreviewSrc: import("vue").ComputedRef<string | undefined>;
|
|
131
168
|
showError: import("vue").Ref<boolean, boolean>;
|
|
132
169
|
shouldStartLoading: import("vue").Ref<boolean, boolean>;
|
|
133
170
|
loaded: import("vue").Ref<boolean, boolean>;
|
|
134
|
-
mergedOnClick: (e:
|
|
171
|
+
mergedOnClick: (e: PointerEvent) => void;
|
|
172
|
+
onPreviewClose: () => void;
|
|
135
173
|
mergedOnError: (e: Event) => void;
|
|
136
174
|
mergedOnLoad: (e: Event) => void;
|
|
175
|
+
previewShow: import("vue").Ref<boolean, boolean>;
|
|
137
176
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
138
177
|
onPreviewPrev: import("vue").PropType<() => void>;
|
|
139
178
|
onPreviewNext: import("vue").PropType<() => void>;
|
|
@@ -169,7 +208,20 @@ export declare const DuxImage: import("vue").DefineComponent<{}, () => import("v
|
|
|
169
208
|
arrowOffsetVertical: string;
|
|
170
209
|
arrowHeight: string;
|
|
171
210
|
padding: string;
|
|
172
|
-
},
|
|
211
|
+
}, {
|
|
212
|
+
Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
|
|
213
|
+
height: string;
|
|
214
|
+
width: string;
|
|
215
|
+
borderRadius: string;
|
|
216
|
+
color: string;
|
|
217
|
+
colorHover: string;
|
|
218
|
+
railInsetHorizontalBottom: string;
|
|
219
|
+
railInsetHorizontalTop: string;
|
|
220
|
+
railInsetVerticalRight: string;
|
|
221
|
+
railInsetVerticalLeft: string;
|
|
222
|
+
railColor: string;
|
|
223
|
+
}, any>;
|
|
224
|
+
}>;
|
|
173
225
|
}>;
|
|
174
226
|
}>>;
|
|
175
227
|
themeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Image", {
|
|
@@ -198,7 +250,20 @@ export declare const DuxImage: import("vue").DefineComponent<{}, () => import("v
|
|
|
198
250
|
arrowOffsetVertical: string;
|
|
199
251
|
arrowHeight: string;
|
|
200
252
|
padding: string;
|
|
201
|
-
},
|
|
253
|
+
}, {
|
|
254
|
+
Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
|
|
255
|
+
height: string;
|
|
256
|
+
width: string;
|
|
257
|
+
borderRadius: string;
|
|
258
|
+
color: string;
|
|
259
|
+
colorHover: string;
|
|
260
|
+
railInsetHorizontalBottom: string;
|
|
261
|
+
railInsetHorizontalTop: string;
|
|
262
|
+
railInsetVerticalRight: string;
|
|
263
|
+
railInsetVerticalLeft: string;
|
|
264
|
+
railColor: string;
|
|
265
|
+
}, any>;
|
|
266
|
+
}>;
|
|
202
267
|
}>;
|
|
203
268
|
}>>>;
|
|
204
269
|
builtinThemeOverrides: import("vue").PropType<import("naive-ui/es/_mixins/use-theme").ExtractThemeOverrides<import("naive-ui/es/_mixins").Theme<"Image", {
|
|
@@ -227,7 +292,20 @@ export declare const DuxImage: import("vue").DefineComponent<{}, () => import("v
|
|
|
227
292
|
arrowOffsetVertical: string;
|
|
228
293
|
arrowHeight: string;
|
|
229
294
|
padding: string;
|
|
230
|
-
},
|
|
295
|
+
}, {
|
|
296
|
+
Scrollbar: import("naive-ui/es/_mixins").Theme<"Scrollbar", {
|
|
297
|
+
height: string;
|
|
298
|
+
width: string;
|
|
299
|
+
borderRadius: string;
|
|
300
|
+
color: string;
|
|
301
|
+
colorHover: string;
|
|
302
|
+
railInsetHorizontalBottom: string;
|
|
303
|
+
railInsetHorizontalTop: string;
|
|
304
|
+
railInsetVerticalRight: string;
|
|
305
|
+
railInsetVerticalLeft: string;
|
|
306
|
+
railColor: string;
|
|
307
|
+
}, any>;
|
|
308
|
+
}>;
|
|
231
309
|
}>;
|
|
232
310
|
}>>>;
|
|
233
311
|
alt: StringConstructor;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@duxweb/dvha-pro",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.1.
|
|
4
|
+
"version": "1.1.8",
|
|
5
5
|
"author": "DuxWeb",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@ant-design/colors": "^7.2.1",
|
|
36
|
-
"@duxweb/dvha-core": "^1.1.
|
|
37
|
-
"@duxweb/dvha-naiveui": "^1.1.
|
|
36
|
+
"@duxweb/dvha-core": "^1.1.8",
|
|
37
|
+
"@duxweb/dvha-naiveui": "^1.1.8",
|
|
38
38
|
"@iconify-json/tabler": "^1.2.18",
|
|
39
39
|
"@overlastic/vue": "^0.8.1",
|
|
40
40
|
"@tanstack/vue-query": "^5.80.7",
|
|
@@ -52,8 +52,8 @@
|
|
|
52
52
|
"@vue-flow/node-toolbar": "^1.1.1",
|
|
53
53
|
"@vueuse/core": "^13.3.0",
|
|
54
54
|
"@vueuse/integrations": "^13.3.0",
|
|
55
|
-
"ace-builds": "^1.43.
|
|
56
|
-
"aieditor": "^1.
|
|
55
|
+
"ace-builds": "^1.43.4",
|
|
56
|
+
"aieditor": "^1.4.1",
|
|
57
57
|
"clsx": "^2.1.1",
|
|
58
58
|
"colorizr": "^3.0.8",
|
|
59
59
|
"dayjs": "^1.11.13",
|