@duxweb/dvha-pro 1.2.6 → 1.2.7
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/data/dynamicSelect.cjs +1 -1
- package/dist/cjs/components/data/selectModal.lazy.cjs +1 -0
- package/dist/cjs/components/editor/aiEditor.cjs +1 -1
- package/dist/cjs/components/textImageEditor/textImageEditor.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.lazy.cjs +1 -0
- package/dist/cjs/components/upload/video.cjs +1 -1
- package/dist/cjs/index.cjs +1 -1
- package/dist/cjs/main.cjs +1 -1
- package/dist/cjs/theme/uno.cjs +1 -1
- package/dist/esm/components/data/dynamicSelect.js +1 -1
- package/dist/esm/components/data/selectModal.lazy.js +15 -0
- package/dist/esm/components/editor/aiEditor.js +1 -1
- package/dist/esm/components/textImageEditor/textImageEditor.js +1 -1
- package/dist/esm/components/upload/file.js +1 -1
- package/dist/esm/components/upload/image.js +1 -1
- package/dist/esm/components/upload/manager.lazy.js +15 -0
- package/dist/esm/components/upload/video.js +1 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/main.js +6 -4
- package/dist/esm/theme/uno.js +1 -1
- package/dist/types/components/data/selectModal.lazy.d.ts +2 -0
- package/dist/types/components/upload/manager.lazy.d.ts +2 -0
- package/dist/types/components/widget/avatar.d.ts +3 -1
- package/dist/types/components/widget/image.d.ts +3 -1
- package/dist/types/main.d.ts +4 -0
- package/package.json +4 -4
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
export declare const DuxAvatar: import("vue").DefineComponent<{}, () => import("vue
|
|
1
|
+
export declare const DuxAvatar: import("vue").DefineComponent<{}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2
|
+
[key: string]: any;
|
|
3
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
4
|
readonly size: import("vue").PropType<import("naive-ui/es/avatar/src/interface").Size>;
|
|
3
5
|
readonly src: StringConstructor;
|
|
4
6
|
readonly circle: {
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
export declare const DuxImage: import("vue").DefineComponent<{}, () => import("vue
|
|
1
|
+
export declare const DuxImage: import("vue").DefineComponent<{}, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
2
|
+
[key: string]: any;
|
|
3
|
+
}>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
2
4
|
onPreviewPrev: import("vue").PropType<() => void>;
|
|
3
5
|
onPreviewNext: import("vue").PropType<() => void>;
|
|
4
6
|
showToolbar: {
|
package/dist/types/main.d.ts
CHANGED
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import type { IDataProviderResponse, IS3SignData } from '@duxweb/dvha-core';
|
|
2
2
|
import type { App } from 'vue';
|
|
3
|
+
import * as vueDraggablePlus from 'vue-draggable-plus';
|
|
3
4
|
import 'echarts';
|
|
4
5
|
import 'vue-cropper/dist/index.css';
|
|
5
6
|
import 'aieditor/dist/style.css';
|
|
6
7
|
import '@vue-flow/core/dist/style.css';
|
|
7
8
|
import '@vue-flow/core/dist/theme-default.css';
|
|
8
9
|
import './theme/style.scss';
|
|
10
|
+
export declare const duxProRemotePackages: {
|
|
11
|
+
'vue-draggable-plus': typeof vueDraggablePlus;
|
|
12
|
+
};
|
|
9
13
|
export declare function createDuxPro(): {
|
|
10
14
|
install(app: App): void;
|
|
11
15
|
};
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@duxweb/dvha-pro",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.7",
|
|
5
5
|
"author": "DuxWeb",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"repository": {
|
|
@@ -36,8 +36,8 @@
|
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@ant-design/colors": "^8.0.1",
|
|
39
|
-
"@duxweb/dvha-core": "^1.2.
|
|
40
|
-
"@duxweb/dvha-naiveui": "^1.2.
|
|
39
|
+
"@duxweb/dvha-core": "^1.2.7",
|
|
40
|
+
"@duxweb/dvha-naiveui": "^1.2.7",
|
|
41
41
|
"@iconify-json/tabler": "^1.2.32",
|
|
42
42
|
"@microsoft/fetch-event-source": "^2.0.1",
|
|
43
43
|
"@overlastic/vue": "^0.8.7",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"vue-cropper": "^1.1.4",
|
|
80
80
|
"vue-draggable-plus": "^0.6.1",
|
|
81
81
|
"vue-echarts": "^8.0.1",
|
|
82
|
-
"vue-router": "^
|
|
82
|
+
"vue-router": "^4.6.4",
|
|
83
83
|
"vue3-ace-editor": "^2.2.4"
|
|
84
84
|
},
|
|
85
85
|
"devDependencies": {
|