@duxweb/dvha-pro 1.0.30 → 1.0.32
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/component.cjs +1 -1
- package/dist/cjs/components/data/dynamicSelect.cjs +1 -1
- package/dist/cjs/components/data/selectModal.cjs +1 -1
- package/dist/cjs/components/form/pageForm.cjs +1 -1
- package/dist/cjs/components/form/pageTabForm.cjs +1 -0
- package/dist/cjs/components/layout/table.cjs +1 -1
- package/dist/cjs/components/upload/file.cjs +1 -1
- package/dist/cjs/components/upload/selectFile.cjs +1 -0
- package/dist/cjs/dvha-pro.css +1 -1
- package/dist/cjs/index.cjs +1 -1
- package/dist/cjs/langs/en-US.json.cjs +1 -1
- package/dist/cjs/langs/zh-CN.json.cjs +1 -1
- package/dist/cjs/pages/layout.cjs +1 -1
- package/dist/cjs/theme/uno.css.cjs +4 -1
- package/dist/esm/component.js +31 -31
- package/dist/esm/components/data/dynamicSelect.js +1 -1
- package/dist/esm/components/data/selectModal.js +1 -1
- package/dist/esm/components/form/pageForm.js +0 -4
- package/dist/esm/components/form/pageTabForm.js +145 -0
- package/dist/esm/components/layout/table.js +73 -71
- package/dist/esm/components/upload/file.js +4 -2
- package/dist/esm/components/upload/selectFile.js +72 -0
- package/dist/esm/dvha-pro.css +1 -1
- package/dist/esm/index.js +130 -126
- package/dist/esm/langs/en-US.json.js +2 -2
- package/dist/esm/langs/zh-CN.json.js +1 -1
- package/dist/esm/pages/layout.js +6 -7
- package/dist/esm/theme/uno.css.js +4 -1
- package/dist/types/components/data/selectModal.d.ts +1 -1
- package/dist/types/components/form/index.d.ts +1 -0
- package/dist/types/components/form/pageForm.d.ts +0 -9
- package/dist/types/components/form/pageTabForm.d.ts +63 -0
- package/dist/types/components/layout/table.d.ts +2 -2
- package/dist/types/components/table/tablePage.d.ts +2 -2
- package/dist/types/components/upload/index.d.ts +1 -0
- package/dist/types/components/upload/selectFile.d.ts +23 -0
- package/package.json +3 -3
|
@@ -49,7 +49,7 @@ export declare const DuxTablePage: import("vue").DefineComponent<import("vue").E
|
|
|
49
49
|
default: string;
|
|
50
50
|
};
|
|
51
51
|
hookTableProps: {
|
|
52
|
-
type: PropType<import("@duxweb/dvha-naiveui").UseTableProps
|
|
52
|
+
type: PropType<Partial<import("@duxweb/dvha-naiveui").UseTableProps>>;
|
|
53
53
|
};
|
|
54
54
|
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
55
55
|
path: {
|
|
@@ -95,7 +95,7 @@ export declare const DuxTablePage: import("vue").DefineComponent<import("vue").E
|
|
|
95
95
|
default: string;
|
|
96
96
|
};
|
|
97
97
|
hookTableProps: {
|
|
98
|
-
type: PropType<import("@duxweb/dvha-naiveui").UseTableProps
|
|
98
|
+
type: PropType<Partial<import("@duxweb/dvha-naiveui").UseTableProps>>;
|
|
99
99
|
};
|
|
100
100
|
}>> & Readonly<{}>, {
|
|
101
101
|
pagination: boolean | import("@duxweb/dvha-naiveui").TablePagination;
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { PropType } from 'vue';
|
|
2
|
+
export declare const DuxSelectUpload: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
maxNum: NumberConstructor;
|
|
4
|
+
multiple: BooleanConstructor;
|
|
5
|
+
value: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
|
|
6
|
+
onUpdateValue: PropType<(value?: string | File | File[]) => void>;
|
|
7
|
+
accept: {
|
|
8
|
+
type: StringConstructor;
|
|
9
|
+
default: string;
|
|
10
|
+
};
|
|
11
|
+
}>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
12
|
+
maxNum: NumberConstructor;
|
|
13
|
+
multiple: BooleanConstructor;
|
|
14
|
+
value: (StringConstructor | ObjectConstructor | ArrayConstructor)[];
|
|
15
|
+
onUpdateValue: PropType<(value?: string | File | File[]) => void>;
|
|
16
|
+
accept: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: string;
|
|
19
|
+
};
|
|
20
|
+
}>> & Readonly<{}>, {
|
|
21
|
+
multiple: boolean;
|
|
22
|
+
accept: string;
|
|
23
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@duxweb/dvha-pro",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.32",
|
|
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.0.
|
|
37
|
-
"@duxweb/dvha-naiveui": "^1.0.
|
|
36
|
+
"@duxweb/dvha-core": "^1.0.32",
|
|
37
|
+
"@duxweb/dvha-naiveui": "^1.0.32",
|
|
38
38
|
"@iconify-json/tabler": "^1.2.18",
|
|
39
39
|
"@overlastic/vue": "^0.8.1",
|
|
40
40
|
"@tanstack/vue-query": "^5.80.7",
|