@skyfox2000/webui 0.1.0
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/.eslintrc.js +23 -0
- package/.prettierrc +11 -0
- package/.vscode/settings.json +25 -0
- package/README.md +104 -0
- package/env.d.ts +11 -0
- package/index.html +19 -0
- package/lib/AceEditor.d.ts +4 -0
- package/lib/BasicLayout.d.ts +4 -0
- package/lib/Error403.d.ts +4 -0
- package/lib/Error404.d.ts +4 -0
- package/lib/ExcelForm.d.ts +4 -0
- package/lib/UploadForm.d.ts +4 -0
- package/lib/assets/modules/basicLayout-YP_-EySb.js +726 -0
- package/lib/assets/modules/error403-Bi0E2twj.js +33 -0
- package/lib/assets/modules/error404-BF7vasR_.js +33 -0
- package/lib/assets/modules/excelForm-Dzndz-SG.js +109 -0
- package/lib/assets/modules/excelForm-WJVQmaDT.js +317 -0
- package/lib/assets/modules/index-FzWSvscZ.js +107 -0
- package/lib/assets/modules/index-ekkaExvB.js +49 -0
- package/lib/assets/modules/uploadForm-BahGnrAq.js +415 -0
- package/lib/assets/modules/uploadForm-DEnOjhwc.js +308 -0
- package/lib/components/common/button/index.vue.d.ts +42 -0
- package/lib/components/common/button/index.vue.d.ts.map +1 -0
- package/lib/components/common/icon/appicon.vue.d.ts +12 -0
- package/lib/components/common/icon/appicon.vue.d.ts.map +1 -0
- package/lib/components/common/icon/fullscreen.vue.d.ts +4 -0
- package/lib/components/common/icon/fullscreen.vue.d.ts.map +1 -0
- package/lib/components/common/icon/helper.vue.d.ts +23 -0
- package/lib/components/common/icon/helper.vue.d.ts.map +1 -0
- package/lib/components/common/icon/index.vue.d.ts +244 -0
- package/lib/components/common/icon/index.vue.d.ts.map +1 -0
- package/lib/components/common/icon/layoutIcon.vue.d.ts +44 -0
- package/lib/components/common/icon/layoutIcon.vue.d.ts.map +1 -0
- package/lib/components/common/icon/projectIcon.vue.d.ts +60 -0
- package/lib/components/common/icon/projectIcon.vue.d.ts.map +1 -0
- package/lib/components/common/icon/toolIcon.vue.d.ts +44 -0
- package/lib/components/common/icon/toolIcon.vue.d.ts.map +1 -0
- package/lib/components/common/index.d.ts +19 -0
- package/lib/components/common/index.d.ts.map +1 -0
- package/lib/components/common/tooltip/index.vue.d.ts +22 -0
- package/lib/components/common/tooltip/index.vue.d.ts.map +1 -0
- package/lib/components/content/dialog/excelForm.vue.d.ts +31 -0
- package/lib/components/content/dialog/excelForm.vue.d.ts.map +1 -0
- package/lib/components/content/dialog/index.vue.d.ts +35 -0
- package/lib/components/content/dialog/index.vue.d.ts.map +1 -0
- package/lib/components/content/dialog/uploadForm.vue.d.ts +25 -0
- package/lib/components/content/dialog/uploadForm.vue.d.ts.map +1 -0
- package/lib/components/content/drawer/index.vue.d.ts +27 -0
- package/lib/components/content/drawer/index.vue.d.ts.map +1 -0
- package/lib/components/content/form/formItem.vue.d.ts +26 -0
- package/lib/components/content/form/formItem.vue.d.ts.map +1 -0
- package/lib/components/content/form/index.vue.d.ts +26 -0
- package/lib/components/content/form/index.vue.d.ts.map +1 -0
- package/lib/components/content/index.d.ts +27 -0
- package/lib/components/content/index.d.ts.map +1 -0
- package/lib/components/content/search/index.vue.d.ts +30 -0
- package/lib/components/content/search/index.vue.d.ts.map +1 -0
- package/lib/components/content/search/searchItem.vue.d.ts +24 -0
- package/lib/components/content/search/searchItem.vue.d.ts.map +1 -0
- package/lib/components/content/table/index.vue.d.ts +37 -0
- package/lib/components/content/table/index.vue.d.ts.map +1 -0
- package/lib/components/content/table/tableOperate.vue.d.ts +19 -0
- package/lib/components/content/table/tableOperate.vue.d.ts.map +1 -0
- package/lib/components/content/toolbar/icontool.vue.d.ts +8 -0
- package/lib/components/content/toolbar/icontool.vue.d.ts.map +1 -0
- package/lib/components/content/toolbar/index.vue.d.ts +19 -0
- package/lib/components/content/toolbar/index.vue.d.ts.map +1 -0
- package/lib/components/content/tree/index.vue.d.ts +47 -0
- package/lib/components/content/tree/index.vue.d.ts.map +1 -0
- package/lib/components/error/error403.vue.d.ts +4 -0
- package/lib/components/error/error403.vue.d.ts.map +1 -0
- package/lib/components/error/error404.vue.d.ts +4 -0
- package/lib/components/error/error404.vue.d.ts.map +1 -0
- package/lib/components/form/aceEditor/aceConfig.d.ts +9 -0
- package/lib/components/form/aceEditor/aceConfig.d.ts.map +1 -0
- package/lib/components/form/aceEditor/index.vue.d.ts +13 -0
- package/lib/components/form/aceEditor/index.vue.d.ts.map +1 -0
- package/lib/components/form/autoComplete/index.vue.d.ts +140 -0
- package/lib/components/form/autoComplete/index.vue.d.ts.map +1 -0
- package/lib/components/form/cascader/index.vue.d.ts +110 -0
- package/lib/components/form/cascader/index.vue.d.ts.map +1 -0
- package/lib/components/form/checkbox/index.vue.d.ts +129 -0
- package/lib/components/form/checkbox/index.vue.d.ts.map +1 -0
- package/lib/components/form/datePicker/index.vue.d.ts +7 -0
- package/lib/components/form/datePicker/index.vue.d.ts.map +1 -0
- package/lib/components/form/index.d.ts +41 -0
- package/lib/components/form/index.d.ts.map +1 -0
- package/lib/components/form/input/index.vue.d.ts +27 -0
- package/lib/components/form/input/index.vue.d.ts.map +1 -0
- package/lib/components/form/input/inputIcon.vue.d.ts +11 -0
- package/lib/components/form/input/inputIcon.vue.d.ts.map +1 -0
- package/lib/components/form/input/inputNumber.vue.d.ts +4 -0
- package/lib/components/form/input/inputNumber.vue.d.ts.map +1 -0
- package/lib/components/form/input/inputPassword.vue.d.ts +4 -0
- package/lib/components/form/input/inputPassword.vue.d.ts.map +1 -0
- package/lib/components/form/propEditor/index.vue.d.ts +13 -0
- package/lib/components/form/propEditor/index.vue.d.ts.map +1 -0
- package/lib/components/form/radio/index.vue.d.ts +134 -0
- package/lib/components/form/radio/index.vue.d.ts.map +1 -0
- package/lib/components/form/radio/radioStatus.vue.d.ts +32 -0
- package/lib/components/form/radio/radioStatus.vue.d.ts.map +1 -0
- package/lib/components/form/rangePicker/index.vue.d.ts +17 -0
- package/lib/components/form/rangePicker/index.vue.d.ts.map +1 -0
- package/lib/components/form/select/index.vue.d.ts +143 -0
- package/lib/components/form/select/index.vue.d.ts.map +1 -0
- package/lib/components/form/switch/index.vue.d.ts +44 -0
- package/lib/components/form/switch/index.vue.d.ts.map +1 -0
- package/lib/components/form/textarea/index.vue.d.ts +4 -0
- package/lib/components/form/textarea/index.vue.d.ts.map +1 -0
- package/lib/components/form/transfer/index.vue.d.ts +39 -0
- package/lib/components/form/transfer/index.vue.d.ts.map +1 -0
- package/lib/components/form/transfer/transferTable.vue.d.ts +39 -0
- package/lib/components/form/transfer/transferTable.vue.d.ts.map +1 -0
- package/lib/components/form/treeSelect/index.vue.d.ts +39 -0
- package/lib/components/form/treeSelect/index.vue.d.ts.map +1 -0
- package/lib/components/form/upload/uploadList.vue.d.ts +477 -0
- package/lib/components/form/upload/uploadList.vue.d.ts.map +1 -0
- package/lib/components/index.d.ts +9 -0
- package/lib/components/index.d.ts.map +1 -0
- package/lib/components/layout/breadcrumb/index.vue.d.ts +4 -0
- package/lib/components/layout/breadcrumb/index.vue.d.ts.map +1 -0
- package/lib/components/layout/content/index.vue.d.ts +23 -0
- package/lib/components/layout/content/index.vue.d.ts.map +1 -0
- package/lib/components/layout/datetime/index.vue.d.ts +4 -0
- package/lib/components/layout/datetime/index.vue.d.ts.map +1 -0
- package/lib/components/layout/header/headerExits.vue.d.ts +4 -0
- package/lib/components/layout/header/headerExits.vue.d.ts.map +1 -0
- package/lib/components/layout/header/index.vue.d.ts +4 -0
- package/lib/components/layout/header/index.vue.d.ts.map +1 -0
- package/lib/components/layout/index.d.ts +17 -0
- package/lib/components/layout/index.d.ts.map +1 -0
- package/lib/components/layout/menu/index.vue.d.ts +7 -0
- package/lib/components/layout/menu/index.vue.d.ts.map +1 -0
- package/lib/components/layout/menu/menuTabs.vue.d.ts +4 -0
- package/lib/components/layout/menu/menuTabs.vue.d.ts.map +1 -0
- package/lib/components/layout/page/basicLayout.vue.d.ts +7 -0
- package/lib/components/layout/page/basicLayout.vue.d.ts.map +1 -0
- package/lib/es/AceEditor/index.js +168 -0
- package/lib/es/BasicLayout/index.js +4 -0
- package/lib/es/Error403/index.js +4 -0
- package/lib/es/Error404/index.js +4 -0
- package/lib/es/ExcelForm/index.js +5 -0
- package/lib/es/UploadForm/index.js +5 -0
- package/lib/index.d.ts +2 -0
- package/lib/webui.css +1 -0
- package/lib/webui.es.js +3349 -0
- package/package.json +66 -0
- package/plugins/vite-plugin-auto-generate-vue.ts +105 -0
- package/postcss.config.ts +6 -0
- package/src/assets/global.css +9 -0
- package/src/components/common/button/index.vue +126 -0
- package/src/components/common/icon/appicon.vue +28 -0
- package/src/components/common/icon/fullscreen.vue +13 -0
- package/src/components/common/icon/helper.vue +30 -0
- package/src/components/common/icon/index.vue +426 -0
- package/src/components/common/icon/layoutIcon.vue +33 -0
- package/src/components/common/icon/projectIcon.vue +41 -0
- package/src/components/common/icon/toolIcon.vue +33 -0
- package/src/components/common/index.ts +19 -0
- package/src/components/common/tooltip/index.vue +25 -0
- package/src/components/content/dialog/excelForm.vue +479 -0
- package/src/components/content/dialog/index.vue +149 -0
- package/src/components/content/dialog/uploadForm.vue +228 -0
- package/src/components/content/drawer/index.vue +93 -0
- package/src/components/content/form/formItem.vue +76 -0
- package/src/components/content/form/index.vue +48 -0
- package/src/components/content/index.ts +32 -0
- package/src/components/content/search/index.vue +135 -0
- package/src/components/content/search/searchItem.vue +52 -0
- package/src/components/content/table/index.vue +215 -0
- package/src/components/content/table/tableOperate.vue +131 -0
- package/src/components/content/toolbar/icontool.vue +151 -0
- package/src/components/content/toolbar/index.vue +107 -0
- package/src/components/content/tree/index.vue +140 -0
- package/src/components/error/error403.vue +14 -0
- package/src/components/error/error404.vue +14 -0
- package/src/components/form/aceEditor/aceConfig.ts +90 -0
- package/src/components/form/aceEditor/index.vue +175 -0
- package/src/components/form/autoComplete/index.vue +171 -0
- package/src/components/form/cascader/index.vue +110 -0
- package/src/components/form/checkbox/index.vue +108 -0
- package/src/components/form/datePicker/index.vue +29 -0
- package/src/components/form/index.ts +54 -0
- package/src/components/form/input/index.vue +70 -0
- package/src/components/form/input/inputIcon.vue +39 -0
- package/src/components/form/input/inputNumber.vue +23 -0
- package/src/components/form/input/inputPassword.vue +22 -0
- package/src/components/form/propEditor/index.vue +81 -0
- package/src/components/form/radio/index.vue +132 -0
- package/src/components/form/radio/radioStatus.vue +42 -0
- package/src/components/form/rangePicker/index.vue +64 -0
- package/src/components/form/select/index.vue +186 -0
- package/src/components/form/switch/index.vue +58 -0
- package/src/components/form/textarea/index.vue +23 -0
- package/src/components/form/transfer/index.vue +95 -0
- package/src/components/form/transfer/transferTable.vue +124 -0
- package/src/components/form/treeSelect/index.vue +108 -0
- package/src/components/form/upload/uploadList.vue +235 -0
- package/src/components/index.ts +97 -0
- package/src/components/layout/breadcrumb/index.vue +38 -0
- package/src/components/layout/content/index.vue +28 -0
- package/src/components/layout/datetime/index.vue +16 -0
- package/src/components/layout/header/headerExits.vue +28 -0
- package/src/components/layout/header/index.vue +43 -0
- package/src/components/layout/index.ts +16 -0
- package/src/components/layout/menu/index.vue +64 -0
- package/src/components/layout/menu/menuTabs.vue +56 -0
- package/src/components/layout/page/basicLayout.vue +67 -0
- package/src/vite-env.d.ts +8 -0
- package/tailwind.config.ts +11 -0
- package/tsconfig.json +53 -0
- package/vite.config.ts +117 -0
- package//344/273/243/347/240/201/350/247/204/350/214/203/345/217/212/351/243/216/346/240/274/346/214/207/345/215/227.md +116 -0
|
@@ -0,0 +1,477 @@
|
|
|
1
|
+
import { UploadFile } from '@skyfox2000/webbase';
|
|
2
|
+
import { IUrlInfo } from '../../../../../502417_fapi';
|
|
3
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, ExtractPropTypes, PropType, GlobalComponents, GlobalDirectives } from 'vue';
|
|
4
|
+
import { UploadType, FileType, HttpRequestHeader, ShowUploadListInterface, UploadListType, UploadLocale, UploadListProgressProps, ItemRender } from 'ant-design-vue/es/upload/interface';
|
|
5
|
+
import { UploadFile, UploadChangeParam } from 'ant-design-vue';
|
|
6
|
+
import { UploadRequestOption } from 'ant-design-vue/es/vc-upload/interface';
|
|
7
|
+
import { VueNode } from 'ant-design-vue/es/_util/type';
|
|
8
|
+
export interface UploadListProps {
|
|
9
|
+
autoUpload?: boolean;
|
|
10
|
+
downloadUrl: IUrlInfo;
|
|
11
|
+
fileList: UploadFile<any>[];
|
|
12
|
+
placeholder?: string;
|
|
13
|
+
fileExt?: string[];
|
|
14
|
+
maxFileSize?: number;
|
|
15
|
+
maxCount?: number;
|
|
16
|
+
parentPath?: string;
|
|
17
|
+
}
|
|
18
|
+
declare const _default: DefineComponent<UploadListProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
19
|
+
"update:file-list": (...args: any[]) => void;
|
|
20
|
+
}, string, PublicProps, Readonly<UploadListProps> & Readonly<{
|
|
21
|
+
"onUpdate:file-list"?: ((...args: any[]) => any) | undefined;
|
|
22
|
+
}>, {
|
|
23
|
+
placeholder: string;
|
|
24
|
+
autoUpload: boolean;
|
|
25
|
+
fileList: UploadFile<any>[];
|
|
26
|
+
maxFileSize: number;
|
|
27
|
+
maxCount: number;
|
|
28
|
+
}, {}, {}, {}, string, ComponentProvideOptions, false, {
|
|
29
|
+
fileUploader: CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
|
|
30
|
+
capture: {
|
|
31
|
+
type: PropType<boolean | "user" | "environment">;
|
|
32
|
+
default: boolean | "user" | "environment";
|
|
33
|
+
};
|
|
34
|
+
type: {
|
|
35
|
+
type: PropType<UploadType>;
|
|
36
|
+
default: UploadType;
|
|
37
|
+
};
|
|
38
|
+
name: StringConstructor;
|
|
39
|
+
defaultFileList: {
|
|
40
|
+
type: PropType< UploadFile<any>[]>;
|
|
41
|
+
default: UploadFile<any>[];
|
|
42
|
+
};
|
|
43
|
+
fileList: {
|
|
44
|
+
type: PropType< UploadFile<any>[]>;
|
|
45
|
+
default: UploadFile<any>[];
|
|
46
|
+
};
|
|
47
|
+
action: {
|
|
48
|
+
type: PropType<string | ((file: FileType) => string) | ((file: FileType) => PromiseLike<string>)>;
|
|
49
|
+
default: string | ((file: FileType) => string) | ((file: FileType) => PromiseLike<string>);
|
|
50
|
+
};
|
|
51
|
+
directory: {
|
|
52
|
+
type: BooleanConstructor;
|
|
53
|
+
default: boolean;
|
|
54
|
+
};
|
|
55
|
+
data: {
|
|
56
|
+
type: PropType<Record<string, unknown> | ((file: UploadFile<any>) => Record<string, unknown> | Promise<Record<string, unknown>>)>;
|
|
57
|
+
default: Record<string, unknown> | ((file: UploadFile<any>) => Record<string, unknown> | Promise<Record<string, unknown>>);
|
|
58
|
+
};
|
|
59
|
+
method: {
|
|
60
|
+
type: PropType<"post" | "POST" | "PUT" | "PATCH" | "put" | "patch">;
|
|
61
|
+
default: "post" | "POST" | "PUT" | "PATCH" | "put" | "patch";
|
|
62
|
+
};
|
|
63
|
+
headers: {
|
|
64
|
+
type: PropType<HttpRequestHeader>;
|
|
65
|
+
default: HttpRequestHeader;
|
|
66
|
+
};
|
|
67
|
+
showUploadList: {
|
|
68
|
+
type: PropType<boolean | ShowUploadListInterface>;
|
|
69
|
+
default: boolean | ShowUploadListInterface;
|
|
70
|
+
};
|
|
71
|
+
multiple: {
|
|
72
|
+
type: BooleanConstructor;
|
|
73
|
+
default: boolean;
|
|
74
|
+
};
|
|
75
|
+
accept: StringConstructor;
|
|
76
|
+
beforeUpload: {
|
|
77
|
+
type: PropType<(file: FileType, FileList: FileType[]) => (string | boolean | void | Blob | FileType) | Promise<string | boolean | void | Blob | FileType>>;
|
|
78
|
+
default: (file: FileType, FileList: FileType[]) => (string | boolean | void | Blob | FileType) | Promise<string | boolean | void | Blob | FileType>;
|
|
79
|
+
};
|
|
80
|
+
onChange: {
|
|
81
|
+
type: PropType<(info: UploadChangeParam<UploadFile<any>>) => void>;
|
|
82
|
+
default: (info: UploadChangeParam<UploadFile<any>>) => void;
|
|
83
|
+
};
|
|
84
|
+
'onUpdate:fileList': {
|
|
85
|
+
type: PropType<(fileList: UploadFile<any>[]) => void>;
|
|
86
|
+
default: (fileList: UploadFile<any>[]) => void;
|
|
87
|
+
};
|
|
88
|
+
onDrop: {
|
|
89
|
+
type: PropType<(event: DragEvent) => void>;
|
|
90
|
+
default: (event: DragEvent) => void;
|
|
91
|
+
};
|
|
92
|
+
listType: {
|
|
93
|
+
type: PropType<UploadListType>;
|
|
94
|
+
default: UploadListType;
|
|
95
|
+
};
|
|
96
|
+
onPreview: {
|
|
97
|
+
type: PropType<(file: UploadFile<any>) => void>;
|
|
98
|
+
default: (file: UploadFile<any>) => void;
|
|
99
|
+
};
|
|
100
|
+
onDownload: {
|
|
101
|
+
type: PropType<(file: UploadFile<any>) => void>;
|
|
102
|
+
default: (file: UploadFile<any>) => void;
|
|
103
|
+
};
|
|
104
|
+
onReject: {
|
|
105
|
+
type: PropType<(fileList: FileType[]) => void>;
|
|
106
|
+
default: (fileList: FileType[]) => void;
|
|
107
|
+
};
|
|
108
|
+
onRemove: {
|
|
109
|
+
type: PropType<(file: UploadFile<any>) => boolean | void | Promise<boolean | void>>;
|
|
110
|
+
default: (file: UploadFile<any>) => boolean | void | Promise<boolean | void>;
|
|
111
|
+
};
|
|
112
|
+
remove: {
|
|
113
|
+
type: PropType<(file: UploadFile<any>) => boolean | void | Promise<boolean | void>>;
|
|
114
|
+
default: (file: UploadFile<any>) => boolean | void | Promise<boolean | void>;
|
|
115
|
+
};
|
|
116
|
+
supportServerRender: {
|
|
117
|
+
type: BooleanConstructor;
|
|
118
|
+
default: boolean;
|
|
119
|
+
};
|
|
120
|
+
disabled: {
|
|
121
|
+
type: BooleanConstructor;
|
|
122
|
+
default: boolean;
|
|
123
|
+
};
|
|
124
|
+
prefixCls: StringConstructor;
|
|
125
|
+
customRequest: {
|
|
126
|
+
type: PropType<(options: UploadRequestOption<any>) => void>;
|
|
127
|
+
default: (options: UploadRequestOption<any>) => void;
|
|
128
|
+
};
|
|
129
|
+
withCredentials: {
|
|
130
|
+
type: BooleanConstructor;
|
|
131
|
+
default: boolean;
|
|
132
|
+
};
|
|
133
|
+
openFileDialogOnClick: {
|
|
134
|
+
type: BooleanConstructor;
|
|
135
|
+
default: boolean;
|
|
136
|
+
};
|
|
137
|
+
locale: {
|
|
138
|
+
type: PropType<UploadLocale>;
|
|
139
|
+
default: UploadLocale;
|
|
140
|
+
};
|
|
141
|
+
id: StringConstructor;
|
|
142
|
+
previewFile: {
|
|
143
|
+
type: PropType<(file: Blob | FileType) => PromiseLike<string>>;
|
|
144
|
+
default: (file: Blob | FileType) => PromiseLike<string>;
|
|
145
|
+
};
|
|
146
|
+
transformFile: {
|
|
147
|
+
type: PropType<(file: FileType) => string | Blob | FileType | PromiseLike<string | Blob | FileType>>;
|
|
148
|
+
default: (file: FileType) => string | Blob | FileType | PromiseLike<string | Blob | FileType>;
|
|
149
|
+
};
|
|
150
|
+
iconRender: {
|
|
151
|
+
type: PropType<(opt: {
|
|
152
|
+
file: UploadFile<any>;
|
|
153
|
+
listType?: UploadListType;
|
|
154
|
+
}) => VueNode>;
|
|
155
|
+
default: (opt: {
|
|
156
|
+
file: UploadFile<any>;
|
|
157
|
+
listType?: UploadListType;
|
|
158
|
+
}) => VueNode;
|
|
159
|
+
};
|
|
160
|
+
isImageUrl: {
|
|
161
|
+
type: PropType<(file: UploadFile<any>) => boolean>;
|
|
162
|
+
default: (file: UploadFile<any>) => boolean;
|
|
163
|
+
};
|
|
164
|
+
progress: {
|
|
165
|
+
type: PropType<UploadListProgressProps>;
|
|
166
|
+
default: UploadListProgressProps;
|
|
167
|
+
};
|
|
168
|
+
itemRender: {
|
|
169
|
+
type: PropType<ItemRender<any>>;
|
|
170
|
+
default: ItemRender<any>;
|
|
171
|
+
};
|
|
172
|
+
maxCount: NumberConstructor;
|
|
173
|
+
height: {
|
|
174
|
+
type: PropType<unknown>;
|
|
175
|
+
default: unknown;
|
|
176
|
+
};
|
|
177
|
+
removeIcon: {
|
|
178
|
+
type: PropType<(opt: {
|
|
179
|
+
file: UploadFile<any>;
|
|
180
|
+
}) => VueNode>;
|
|
181
|
+
default: (opt: {
|
|
182
|
+
file: UploadFile<any>;
|
|
183
|
+
}) => VueNode;
|
|
184
|
+
};
|
|
185
|
+
downloadIcon: {
|
|
186
|
+
type: PropType<(opt: {
|
|
187
|
+
file: UploadFile<any>;
|
|
188
|
+
}) => VueNode>;
|
|
189
|
+
default: (opt: {
|
|
190
|
+
file: UploadFile<any>;
|
|
191
|
+
}) => VueNode;
|
|
192
|
+
};
|
|
193
|
+
previewIcon: {
|
|
194
|
+
type: PropType<(opt: {
|
|
195
|
+
file: UploadFile<any>;
|
|
196
|
+
}) => VueNode>;
|
|
197
|
+
default: (opt: {
|
|
198
|
+
file: UploadFile<any>;
|
|
199
|
+
}) => VueNode;
|
|
200
|
+
};
|
|
201
|
+
}>> & Readonly<{}>, () => VueNode, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
202
|
+
progress: UploadListProgressProps;
|
|
203
|
+
type: UploadType;
|
|
204
|
+
height: unknown;
|
|
205
|
+
data: Record<string, unknown> | ((file: UploadFile<any>) => Record<string, unknown> | Promise<Record<string, unknown>>);
|
|
206
|
+
onDrop: (event: DragEvent) => void;
|
|
207
|
+
onChange: (info: UploadChangeParam<UploadFile<any>>) => void;
|
|
208
|
+
multiple: boolean;
|
|
209
|
+
disabled: boolean;
|
|
210
|
+
method: "post" | "POST" | "PUT" | "PATCH" | "put" | "patch";
|
|
211
|
+
remove: (file: UploadFile<any>) => boolean | void | Promise<boolean | void>;
|
|
212
|
+
locale: UploadLocale;
|
|
213
|
+
action: string | ((file: FileType) => string) | ((file: FileType) => PromiseLike<string>);
|
|
214
|
+
capture: boolean | "user" | "environment";
|
|
215
|
+
iconRender: (opt: {
|
|
216
|
+
file: UploadFile<any>;
|
|
217
|
+
listType?: UploadListType;
|
|
218
|
+
}) => VueNode;
|
|
219
|
+
onRemove: (file: UploadFile<any>) => boolean | void | Promise<boolean | void>;
|
|
220
|
+
removeIcon: (opt: {
|
|
221
|
+
file: UploadFile<any>;
|
|
222
|
+
}) => VueNode;
|
|
223
|
+
itemRender: ItemRender<any>;
|
|
224
|
+
directory: boolean;
|
|
225
|
+
headers: HttpRequestHeader;
|
|
226
|
+
onReject: (fileList: FileType[]) => void;
|
|
227
|
+
beforeUpload: (file: FileType, FileList: FileType[]) => (string | boolean | void | Blob | FileType) | Promise<string | boolean | void | Blob | FileType>;
|
|
228
|
+
customRequest: (options: UploadRequestOption<any>) => void;
|
|
229
|
+
withCredentials: boolean;
|
|
230
|
+
openFileDialogOnClick: boolean;
|
|
231
|
+
fileList: UploadFile<any>[];
|
|
232
|
+
defaultFileList: UploadFile<any>[];
|
|
233
|
+
showUploadList: boolean | ShowUploadListInterface;
|
|
234
|
+
'onUpdate:fileList': (fileList: UploadFile<any>[]) => void;
|
|
235
|
+
listType: UploadListType;
|
|
236
|
+
onPreview: (file: UploadFile<any>) => void;
|
|
237
|
+
onDownload: (file: UploadFile<any>) => void;
|
|
238
|
+
supportServerRender: boolean;
|
|
239
|
+
previewFile: (file: Blob | FileType) => PromiseLike<string>;
|
|
240
|
+
transformFile: (file: FileType) => string | Blob | FileType | PromiseLike<string | Blob | FileType>;
|
|
241
|
+
isImageUrl: (file: UploadFile<any>) => boolean;
|
|
242
|
+
downloadIcon: (opt: {
|
|
243
|
+
file: UploadFile<any>;
|
|
244
|
+
}) => VueNode;
|
|
245
|
+
previewIcon: (opt: {
|
|
246
|
+
file: UploadFile<any>;
|
|
247
|
+
}) => VueNode;
|
|
248
|
+
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
249
|
+
P: {};
|
|
250
|
+
B: {};
|
|
251
|
+
D: {};
|
|
252
|
+
C: {};
|
|
253
|
+
M: {};
|
|
254
|
+
Defaults: {};
|
|
255
|
+
}, Readonly< ExtractPropTypes<{
|
|
256
|
+
capture: {
|
|
257
|
+
type: PropType<boolean | "user" | "environment">;
|
|
258
|
+
default: boolean | "user" | "environment";
|
|
259
|
+
};
|
|
260
|
+
type: {
|
|
261
|
+
type: PropType<UploadType>;
|
|
262
|
+
default: UploadType;
|
|
263
|
+
};
|
|
264
|
+
name: StringConstructor;
|
|
265
|
+
defaultFileList: {
|
|
266
|
+
type: PropType< UploadFile<any>[]>;
|
|
267
|
+
default: UploadFile<any>[];
|
|
268
|
+
};
|
|
269
|
+
fileList: {
|
|
270
|
+
type: PropType< UploadFile<any>[]>;
|
|
271
|
+
default: UploadFile<any>[];
|
|
272
|
+
};
|
|
273
|
+
action: {
|
|
274
|
+
type: PropType<string | ((file: FileType) => string) | ((file: FileType) => PromiseLike<string>)>;
|
|
275
|
+
default: string | ((file: FileType) => string) | ((file: FileType) => PromiseLike<string>);
|
|
276
|
+
};
|
|
277
|
+
directory: {
|
|
278
|
+
type: BooleanConstructor;
|
|
279
|
+
default: boolean;
|
|
280
|
+
};
|
|
281
|
+
data: {
|
|
282
|
+
type: PropType<Record<string, unknown> | ((file: UploadFile<any>) => Record<string, unknown> | Promise<Record<string, unknown>>)>;
|
|
283
|
+
default: Record<string, unknown> | ((file: UploadFile<any>) => Record<string, unknown> | Promise<Record<string, unknown>>);
|
|
284
|
+
};
|
|
285
|
+
method: {
|
|
286
|
+
type: PropType<"post" | "POST" | "PUT" | "PATCH" | "put" | "patch">;
|
|
287
|
+
default: "post" | "POST" | "PUT" | "PATCH" | "put" | "patch";
|
|
288
|
+
};
|
|
289
|
+
headers: {
|
|
290
|
+
type: PropType<HttpRequestHeader>;
|
|
291
|
+
default: HttpRequestHeader;
|
|
292
|
+
};
|
|
293
|
+
showUploadList: {
|
|
294
|
+
type: PropType<boolean | ShowUploadListInterface>;
|
|
295
|
+
default: boolean | ShowUploadListInterface;
|
|
296
|
+
};
|
|
297
|
+
multiple: {
|
|
298
|
+
type: BooleanConstructor;
|
|
299
|
+
default: boolean;
|
|
300
|
+
};
|
|
301
|
+
accept: StringConstructor;
|
|
302
|
+
beforeUpload: {
|
|
303
|
+
type: PropType<(file: FileType, FileList: FileType[]) => (string | boolean | void | Blob | FileType) | Promise<string | boolean | void | Blob | FileType>>;
|
|
304
|
+
default: (file: FileType, FileList: FileType[]) => (string | boolean | void | Blob | FileType) | Promise<string | boolean | void | Blob | FileType>;
|
|
305
|
+
};
|
|
306
|
+
onChange: {
|
|
307
|
+
type: PropType<(info: UploadChangeParam<UploadFile<any>>) => void>;
|
|
308
|
+
default: (info: UploadChangeParam<UploadFile<any>>) => void;
|
|
309
|
+
};
|
|
310
|
+
'onUpdate:fileList': {
|
|
311
|
+
type: PropType<(fileList: UploadFile<any>[]) => void>;
|
|
312
|
+
default: (fileList: UploadFile<any>[]) => void;
|
|
313
|
+
};
|
|
314
|
+
onDrop: {
|
|
315
|
+
type: PropType<(event: DragEvent) => void>;
|
|
316
|
+
default: (event: DragEvent) => void;
|
|
317
|
+
};
|
|
318
|
+
listType: {
|
|
319
|
+
type: PropType<UploadListType>;
|
|
320
|
+
default: UploadListType;
|
|
321
|
+
};
|
|
322
|
+
onPreview: {
|
|
323
|
+
type: PropType<(file: UploadFile<any>) => void>;
|
|
324
|
+
default: (file: UploadFile<any>) => void;
|
|
325
|
+
};
|
|
326
|
+
onDownload: {
|
|
327
|
+
type: PropType<(file: UploadFile<any>) => void>;
|
|
328
|
+
default: (file: UploadFile<any>) => void;
|
|
329
|
+
};
|
|
330
|
+
onReject: {
|
|
331
|
+
type: PropType<(fileList: FileType[]) => void>;
|
|
332
|
+
default: (fileList: FileType[]) => void;
|
|
333
|
+
};
|
|
334
|
+
onRemove: {
|
|
335
|
+
type: PropType<(file: UploadFile<any>) => boolean | void | Promise<boolean | void>>;
|
|
336
|
+
default: (file: UploadFile<any>) => boolean | void | Promise<boolean | void>;
|
|
337
|
+
};
|
|
338
|
+
remove: {
|
|
339
|
+
type: PropType<(file: UploadFile<any>) => boolean | void | Promise<boolean | void>>;
|
|
340
|
+
default: (file: UploadFile<any>) => boolean | void | Promise<boolean | void>;
|
|
341
|
+
};
|
|
342
|
+
supportServerRender: {
|
|
343
|
+
type: BooleanConstructor;
|
|
344
|
+
default: boolean;
|
|
345
|
+
};
|
|
346
|
+
disabled: {
|
|
347
|
+
type: BooleanConstructor;
|
|
348
|
+
default: boolean;
|
|
349
|
+
};
|
|
350
|
+
prefixCls: StringConstructor;
|
|
351
|
+
customRequest: {
|
|
352
|
+
type: PropType<(options: UploadRequestOption<any>) => void>;
|
|
353
|
+
default: (options: UploadRequestOption<any>) => void;
|
|
354
|
+
};
|
|
355
|
+
withCredentials: {
|
|
356
|
+
type: BooleanConstructor;
|
|
357
|
+
default: boolean;
|
|
358
|
+
};
|
|
359
|
+
openFileDialogOnClick: {
|
|
360
|
+
type: BooleanConstructor;
|
|
361
|
+
default: boolean;
|
|
362
|
+
};
|
|
363
|
+
locale: {
|
|
364
|
+
type: PropType<UploadLocale>;
|
|
365
|
+
default: UploadLocale;
|
|
366
|
+
};
|
|
367
|
+
id: StringConstructor;
|
|
368
|
+
previewFile: {
|
|
369
|
+
type: PropType<(file: Blob | FileType) => PromiseLike<string>>;
|
|
370
|
+
default: (file: Blob | FileType) => PromiseLike<string>;
|
|
371
|
+
};
|
|
372
|
+
transformFile: {
|
|
373
|
+
type: PropType<(file: FileType) => string | Blob | FileType | PromiseLike<string | Blob | FileType>>;
|
|
374
|
+
default: (file: FileType) => string | Blob | FileType | PromiseLike<string | Blob | FileType>;
|
|
375
|
+
};
|
|
376
|
+
iconRender: {
|
|
377
|
+
type: PropType<(opt: {
|
|
378
|
+
file: UploadFile<any>;
|
|
379
|
+
listType?: UploadListType;
|
|
380
|
+
}) => VueNode>;
|
|
381
|
+
default: (opt: {
|
|
382
|
+
file: UploadFile<any>;
|
|
383
|
+
listType?: UploadListType;
|
|
384
|
+
}) => VueNode;
|
|
385
|
+
};
|
|
386
|
+
isImageUrl: {
|
|
387
|
+
type: PropType<(file: UploadFile<any>) => boolean>;
|
|
388
|
+
default: (file: UploadFile<any>) => boolean;
|
|
389
|
+
};
|
|
390
|
+
progress: {
|
|
391
|
+
type: PropType<UploadListProgressProps>;
|
|
392
|
+
default: UploadListProgressProps;
|
|
393
|
+
};
|
|
394
|
+
itemRender: {
|
|
395
|
+
type: PropType<ItemRender<any>>;
|
|
396
|
+
default: ItemRender<any>;
|
|
397
|
+
};
|
|
398
|
+
maxCount: NumberConstructor;
|
|
399
|
+
height: {
|
|
400
|
+
type: PropType<unknown>;
|
|
401
|
+
default: unknown;
|
|
402
|
+
};
|
|
403
|
+
removeIcon: {
|
|
404
|
+
type: PropType<(opt: {
|
|
405
|
+
file: UploadFile<any>;
|
|
406
|
+
}) => VueNode>;
|
|
407
|
+
default: (opt: {
|
|
408
|
+
file: UploadFile<any>;
|
|
409
|
+
}) => VueNode;
|
|
410
|
+
};
|
|
411
|
+
downloadIcon: {
|
|
412
|
+
type: PropType<(opt: {
|
|
413
|
+
file: UploadFile<any>;
|
|
414
|
+
}) => VueNode>;
|
|
415
|
+
default: (opt: {
|
|
416
|
+
file: UploadFile<any>;
|
|
417
|
+
}) => VueNode;
|
|
418
|
+
};
|
|
419
|
+
previewIcon: {
|
|
420
|
+
type: PropType<(opt: {
|
|
421
|
+
file: UploadFile<any>;
|
|
422
|
+
}) => VueNode>;
|
|
423
|
+
default: (opt: {
|
|
424
|
+
file: UploadFile<any>;
|
|
425
|
+
}) => VueNode;
|
|
426
|
+
};
|
|
427
|
+
}>> & Readonly<{}>, () => VueNode, {}, {}, {}, {
|
|
428
|
+
progress: UploadListProgressProps;
|
|
429
|
+
type: UploadType;
|
|
430
|
+
height: unknown;
|
|
431
|
+
data: Record<string, unknown> | ((file: UploadFile<any>) => Record<string, unknown> | Promise<Record<string, unknown>>);
|
|
432
|
+
onDrop: (event: DragEvent) => void;
|
|
433
|
+
onChange: (info: UploadChangeParam<UploadFile<any>>) => void;
|
|
434
|
+
multiple: boolean;
|
|
435
|
+
disabled: boolean;
|
|
436
|
+
method: "post" | "POST" | "PUT" | "PATCH" | "put" | "patch";
|
|
437
|
+
remove: (file: UploadFile<any>) => boolean | void | Promise<boolean | void>;
|
|
438
|
+
locale: UploadLocale;
|
|
439
|
+
action: string | ((file: FileType) => string) | ((file: FileType) => PromiseLike<string>);
|
|
440
|
+
capture: boolean | "user" | "environment";
|
|
441
|
+
iconRender: (opt: {
|
|
442
|
+
file: UploadFile<any>;
|
|
443
|
+
listType?: UploadListType;
|
|
444
|
+
}) => VueNode;
|
|
445
|
+
onRemove: (file: UploadFile<any>) => boolean | void | Promise<boolean | void>;
|
|
446
|
+
removeIcon: (opt: {
|
|
447
|
+
file: UploadFile<any>;
|
|
448
|
+
}) => VueNode;
|
|
449
|
+
itemRender: ItemRender<any>;
|
|
450
|
+
directory: boolean;
|
|
451
|
+
headers: HttpRequestHeader;
|
|
452
|
+
onReject: (fileList: FileType[]) => void;
|
|
453
|
+
beforeUpload: (file: FileType, FileList: FileType[]) => (string | boolean | void | Blob | FileType) | Promise<string | boolean | void | Blob | FileType>;
|
|
454
|
+
customRequest: (options: UploadRequestOption<any>) => void;
|
|
455
|
+
withCredentials: boolean;
|
|
456
|
+
openFileDialogOnClick: boolean;
|
|
457
|
+
fileList: UploadFile<any>[];
|
|
458
|
+
defaultFileList: UploadFile<any>[];
|
|
459
|
+
showUploadList: boolean | ShowUploadListInterface;
|
|
460
|
+
'onUpdate:fileList': (fileList: UploadFile<any>[]) => void;
|
|
461
|
+
listType: UploadListType;
|
|
462
|
+
onPreview: (file: UploadFile<any>) => void;
|
|
463
|
+
onDownload: (file: UploadFile<any>) => void;
|
|
464
|
+
supportServerRender: boolean;
|
|
465
|
+
previewFile: (file: Blob | FileType) => PromiseLike<string>;
|
|
466
|
+
transformFile: (file: FileType) => string | Blob | FileType | PromiseLike<string | Blob | FileType>;
|
|
467
|
+
isImageUrl: (file: UploadFile<any>) => boolean;
|
|
468
|
+
downloadIcon: (opt: {
|
|
469
|
+
file: UploadFile<any>;
|
|
470
|
+
}) => VueNode;
|
|
471
|
+
previewIcon: (opt: {
|
|
472
|
+
file: UploadFile<any>;
|
|
473
|
+
}) => VueNode;
|
|
474
|
+
}> | null;
|
|
475
|
+
}, HTMLDivElement>;
|
|
476
|
+
export default _default;
|
|
477
|
+
//# sourceMappingURL=uploadList.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"uploadList.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/form/upload/uploadList.vue"],"names":[],"mappings":";;;;;AAkPA,OAAO,EAAE,UAAU,EAAyC,MAAM,qBAAqB,CAAC;AACxF,OAAO,EAAE,QAAQ,EAAE,MAAM,kBAAkB,CAAC;AAE5C,MAAM,WAAW,eAAe;IAI7B,UAAU,CAAC,EAAE,OAAO,CAAC;IAIrB,WAAW,EAAE,QAAQ,CAAC;IAItB,QAAQ,EAAE,UAAU,CAAC,GAAG,CAAC,EAAE,CAAC;IAI5B,WAAW,CAAC,EAAE,MAAM,CAAC;IAIrB,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IAInB,WAAW,CAAC,EAAE,MAAM,CAAC;IAIrB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAIlB,UAAU,CAAC,EAAE,MAAM,CAAC;CACtB;;;;;;iBAjBgB,MAAM;gBAZP,OAAO;cAQV,UAAU,CAAC,GAAG,CAAC,EAAE;iBAYb,MAAM;cAIT,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBA0Vs3J,CAAC;;;;wBAA8M,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBAAo+F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;wBAA8sR,CAAC;;;;wBAA8M,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oBAA23F,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAxBz1nB,wBAUG"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { Button, Tooltip, AppIcon, Fullscreen, Helper, Icon, LayoutIcon, ProjectIcon, ToolIcon } from './common';
|
|
2
|
+
import { Dialog, UploadForm, ExcelForm, Drawer, Form, FormItem, Search, SearchItem, Table, TableOperate, Toolbar, Icontool, Tree } from './content';
|
|
3
|
+
import { AutoComplete, Cascader, Checkbox, DatePicker, Input, InputIcon, InputPassword, InputNumber, PropEditor, Radio, RadioStatus, RangePicker, Select, Switch, Textarea, Transfer, TransferTable, TreeSelect, UploadList } from './form';
|
|
4
|
+
import { Breadcrumb, Content, Datetime, Header, HeaderExits, Menu, MenuTabs, BasicLayout } from './layout';
|
|
5
|
+
import { default as Error403 } from './error/error403.vue';
|
|
6
|
+
import { default as Error404 } from './error/error404.vue';
|
|
7
|
+
export { Button, Tooltip, AppIcon, Fullscreen, Helper, Icon, LayoutIcon, ProjectIcon, ToolIcon, Dialog, UploadForm, ExcelForm, Drawer, Form, FormItem, Search, SearchItem, Table, TableOperate, Toolbar, Icontool, Tree, AutoComplete, Cascader, Checkbox, DatePicker, Input, InputIcon, InputPassword, InputNumber, PropEditor, Radio, RadioStatus, RangePicker, Select, Switch, Textarea, Transfer, TransferTable, TreeSelect, UploadList, Breadcrumb, Content, Datetime, Header, HeaderExits, Menu, MenuTabs, BasicLayout, };
|
|
8
|
+
export { Error403, Error404 };
|
|
9
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"AAAA,OAAO,sBAAsB,CAAC;AAE9B,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,OAAO,EAAE,UAAU,EAAE,MAAM,EAAE,IAAI,EAAE,UAAU,EAAE,WAAW,EAAE,QAAQ,EAAE,MAAM,UAAU,CAAC;AACjH,OAAO,EACJ,MAAM,EACN,UAAU,EACV,SAAS,EACT,MAAM,EACN,IAAI,EACJ,QAAQ,EACR,MAAM,EACN,UAAU,EACV,KAAK,EACL,YAAY,EACZ,OAAO,EACP,QAAQ,EACR,IAAI,EACN,MAAM,WAAW,CAAC;AACnB,OAAO,EACJ,YAAY,EACZ,QAAQ,EACR,QAAQ,EACR,UAAU,EACV,KAAK,EACL,SAAS,EACT,aAAa,EACb,WAAW,EACX,UAAU,EACV,KAAK,EACL,WAAW,EACX,WAAW,EACX,MAAM,EACN,MAAM,EACN,QAAQ,EACR,QAAQ,EACR,aAAa,EACb,UAAU,EACV,UAAU,EACZ,MAAM,QAAQ,CAAC;AAEhB,OAAO,EAAE,UAAU,EAAE,OAAO,EAAE,QAAQ,EAAE,MAAM,EAAE,WAAW,EAAE,IAAI,EAAE,QAAQ,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAE3G,OAAO,EACJ,MAAM,EACN,OAAO,EACP,OAAO,EACP,UAAU,EACV,MAAM,EACN,IAAI,EACJ,UAAU,EACV,WAAW,EACX,QAAQ,EACR,MAAM,EACN,UAAU,EACV,SAAS,EACT,MAAM,EACN,IAAI,EACJ,QAAQ,EACR,MAAM,EACN,UAAU,EACV,KAAK,EACL,YAAY,EACZ,OAAO,EACP,QAAQ,EACR,IAAI,EACJ,YAAY,EACZ,QAAQ,EACR,QAAQ,EACR,UAAU,EACV,KAAK,EACL,SAAS,EACT,aAAa,EACb,WAAW,EACX,UAAU,EACV,KAAK,EACL,WAAW,EACX,WAAW,EACX,MAAM,EACN,MAAM,EACN,QAAQ,EACR,QAAQ,EACR,aAAa,EACb,UAAU,EACV,UAAU,EACV,UAAU,EACV,OAAO,EACP,QAAQ,EACR,MAAM,EACN,WAAW,EACX,IAAI,EACJ,QAAQ,EACR,WAAW,GACb,CAAC;AAEF,OAAO,QAAQ,MAAM,sBAAsB,CAAC;AAC5C,OAAO,QAAQ,MAAM,sBAAsB,CAAC;AAC5C,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
3
|
+
export default _default;
|
|
4
|
+
//# sourceMappingURL=index.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/breadcrumb/index.vue"],"names":[],"mappings":";;AAwJA,wBAMG"}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
left?: boolean;
|
|
4
|
+
};
|
|
5
|
+
declare function __VLS_template(): {
|
|
6
|
+
attrs: Partial<{}>;
|
|
7
|
+
slots: {
|
|
8
|
+
left?(_: {}): any;
|
|
9
|
+
default?(_: {}): any;
|
|
10
|
+
};
|
|
11
|
+
refs: {};
|
|
12
|
+
rootEl: HTMLDivElement;
|
|
13
|
+
};
|
|
14
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
15
|
+
declare const __VLS_component: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
16
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
17
|
+
export default _default;
|
|
18
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
19
|
+
new (): {
|
|
20
|
+
$slots: S;
|
|
21
|
+
};
|
|
22
|
+
};
|
|
23
|
+
//# sourceMappingURL=index.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/content/index.vue"],"names":[],"mappings":";AAiCA,KAAK,WAAW,GAAG;IAChB,IAAI,CAAC,EAAE,OAAO,CAAC;CACjB,CAAC;AAKF,iBAAS,cAAc;WAuDT,OAAO,IAA6B;;sBAXxB,GAAG;yBACA,GAAG;;;;EAe/B;AAUD,KAAK,oBAAoB,GAAG,UAAU,CAAC,OAAO,cAAc,CAAC,CAAC;AAC9D,QAAA,MAAM,eAAe,6SAOnB,CAAC;wBACkB,uBAAuB,CAAC,OAAO,eAAe,EAAE,oBAAoB,CAAC,OAAO,CAAC,CAAC;AAAnG,wBAAoG;AAQpG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IACxC,QAAO;QACN,MAAM,EAAE,CAAC,CAAC;KAEV,CAAA;CACD,CAAC"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
3
|
+
export default _default;
|
|
4
|
+
//# sourceMappingURL=index.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/datetime/index.vue"],"names":[],"mappings":";;AAkEA,wBAMG"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3
|
+
export default _default;
|
|
4
|
+
//# sourceMappingURL=headerExits.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"headerExits.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/header/headerExits.vue"],"names":[],"mappings":";;AAwKA,wBAKG"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3
|
+
export default _default;
|
|
4
|
+
//# sourceMappingURL=index.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/header/index.vue"],"names":[],"mappings":";;AAmMA,wBAMG"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import { default as Breadcrumb } from './breadcrumb/index.vue';
|
|
2
|
+
import { default as Content } from './content/index.vue';
|
|
3
|
+
import { default as Datetime } from './datetime/index.vue';
|
|
4
|
+
import { default as Header } from './header/index.vue';
|
|
5
|
+
import { default as HeaderExits } from './header/headerExits.vue';
|
|
6
|
+
import { default as Menu } from './menu/index.vue';
|
|
7
|
+
import { default as MenuTabs } from './menu/menuTabs.vue';
|
|
8
|
+
import { default as BasicLayout } from './page/basicLayout.vue';
|
|
9
|
+
export { Breadcrumb };
|
|
10
|
+
export { Content };
|
|
11
|
+
export { Datetime };
|
|
12
|
+
export { Header };
|
|
13
|
+
export { HeaderExits };
|
|
14
|
+
export { Menu };
|
|
15
|
+
export { MenuTabs };
|
|
16
|
+
export { BasicLayout };
|
|
17
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/layout/index.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,MAAM,wBAAwB,CAAC;AAChD,OAAO,EAAE,UAAU,EAAE,CAAC;AACtB,OAAO,OAAO,MAAM,qBAAqB,CAAC;AAC1C,OAAO,EAAE,OAAO,EAAE,CAAC;AACnB,OAAO,QAAQ,MAAM,sBAAsB,CAAC;AAC5C,OAAO,EAAE,QAAQ,EAAE,CAAC;AACpB,OAAO,MAAM,MAAM,oBAAoB,CAAC;AACxC,OAAO,EAAE,MAAM,EAAE,CAAC;AAClB,OAAO,WAAW,MAAM,0BAA0B,CAAC;AACnD,OAAO,EAAE,WAAW,EAAE,CAAC;AACvB,OAAO,IAAI,MAAM,kBAAkB,CAAC;AACpC,OAAO,EAAE,IAAI,EAAE,CAAC;AAChB,OAAO,QAAQ,MAAM,qBAAqB,CAAC;AAC3C,OAAO,EAAE,QAAQ,EAAE,CAAC;AACpB,OAAO,WAAW,MAAM,wBAAwB,CAAC;AACjD,OAAO,EAAE,WAAW,EAAE,CAAC"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
routes: any;
|
|
4
|
+
};
|
|
5
|
+
declare const _default: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
6
|
+
export default _default;
|
|
7
|
+
//# sourceMappingURL=index.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/menu/index.vue"],"names":[],"mappings":";AAyEA,KAAK,WAAW,GAAG;IAAE,MAAM,EAAE,GAAG,CAAA;CAAE,CAAC;;AAoHnC,wBAOG"}
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
declare const _default: DefineComponent<{}, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
3
|
+
export default _default;
|
|
4
|
+
//# sourceMappingURL=menuTabs.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"menuTabs.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/menu/menuTabs.vue"],"names":[],"mappings":";;AAkNA,wBAMG"}
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
routes: any;
|
|
4
|
+
};
|
|
5
|
+
declare const _default: DefineComponent<__VLS_Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
6
|
+
export default _default;
|
|
7
|
+
//# sourceMappingURL=basicLayout.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"basicLayout.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/layout/page/basicLayout.vue"],"names":[],"mappings":";AAgFA,KAAK,WAAW,GAAG;IAAE,MAAM,EAAE,GAAG,CAAA;CAAE,CAAC;;AA0NnC,wBAOG"}
|