@jari-ace/element-plus-component 0.5.0 → 0.5.2
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/components/autoComplete/JaAutoComplete.vue.d.ts +24 -24
- package/dist/components/flowShell/FlowFormShell.vue.d.ts +0 -3
- package/dist/components/flowShell/FlowFormShell.vue.d.ts.map +1 -1
- package/dist/components/flowShell/FlowFormShell.vue.js +4 -4
- package/dist/components/flowShell/FlowFormShell.vue.js.map +1 -1
- package/dist/components/formItem/JaFormItem.vue.d.ts +2 -2
- package/dist/components/input/JaInput.vue.d.ts +14 -14
- package/dist/components/inputI18n/InputI18n.vue.d.ts.map +1 -1
- package/dist/components/inputI18n/InputI18n.vue.js +2 -0
- package/dist/components/inputI18n/InputI18n.vue.js.map +1 -1
- package/dist/components/inputI18n/JaInputI18n.vue.d.ts +70 -70
- package/dist/components/inputNumber/JaInputNumber.vue.d.ts +18 -18
- package/dist/components/scrollbar/Scrollbar.vue.d.ts +10 -10
- package/dist/components/select/JaSelect.vue.d.ts +70 -70
- package/dist/components/switch/JaSwitch.vue.d.ts +2 -2
- package/dist/components/upload/JaUploader.vue.d.ts +16 -4
- package/dist/components/upload/JaUploader.vue.d.ts.map +1 -1
- package/dist/components/upload/index.d.ts +21 -5
- package/dist/components/upload/index.d.ts.map +1 -1
- package/dist/components/upload/uploader.vue.d.ts +7 -1
- package/dist/components/upload/uploader.vue.d.ts.map +1 -1
- package/dist/components/upload/uploader.vue.js +428 -201
- package/dist/components/upload/uploader.vue.js.map +1 -1
- package/dist/components/userGroupTree/src/userGroupTree.vue.d.ts +4 -4
- package/dist/components/userTag/UserInfoTag.vue.d.ts +6 -0
- package/dist/components/userTag/UserInfoTag.vue.d.ts.map +1 -1
- package/dist/components/userTag/UserInfoTag.vue.js +67 -50
- package/dist/components/userTag/UserInfoTag.vue.js.map +1 -1
- package/lib/index.css +1 -1
- package/lib/index.js +8065 -7929
- package/lib/index.umd.cjs +33 -33
- package/package.json +2 -2
- package/packages/components/inputI18n/InputI18n.vue +3 -5
- package/packages/components/upload/uploader.vue +257 -37
- package/packages/components/userTag/UserInfoTag.vue +26 -4
- package/packages/index.ts +1 -1
|
@@ -10,6 +10,7 @@ export declare const JaUploader: import("../../utils/install").SFCWithInstall<im
|
|
|
10
10
|
allowDownload?: boolean;
|
|
11
11
|
allowDelete?: boolean;
|
|
12
12
|
allowPreview?: boolean;
|
|
13
|
+
layout?: "list" | "inline";
|
|
13
14
|
} & {
|
|
14
15
|
modelValue?: string;
|
|
15
16
|
}> & Readonly<{
|
|
@@ -44,7 +45,9 @@ export declare const JaUploader: import("../../utils/install").SFCWithInstall<im
|
|
|
44
45
|
uploadError: (file: import("./types").AceFile, error: Error) => any;
|
|
45
46
|
downloaded: (file: import("@jari-ace/app-bolts").FileInfo) => any;
|
|
46
47
|
zipDownloaded: (file: import("@jari-ace/app-bolts").FileInfo[]) => any;
|
|
47
|
-
}, import("vue").PublicProps, {
|
|
48
|
+
}, import("vue").PublicProps, {
|
|
49
|
+
layout: "list" | "inline";
|
|
50
|
+
}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
48
51
|
P: {};
|
|
49
52
|
B: {};
|
|
50
53
|
D: {};
|
|
@@ -62,6 +65,7 @@ export declare const JaUploader: import("../../utils/install").SFCWithInstall<im
|
|
|
62
65
|
allowDownload?: boolean;
|
|
63
66
|
allowDelete?: boolean;
|
|
64
67
|
allowPreview?: boolean;
|
|
68
|
+
layout?: "list" | "inline";
|
|
65
69
|
} & {
|
|
66
70
|
modelValue?: string;
|
|
67
71
|
}> & Readonly<{
|
|
@@ -80,7 +84,9 @@ export declare const JaUploader: import("../../utils/install").SFCWithInstall<im
|
|
|
80
84
|
onUploadError?: (file: import("./types").AceFile, error: Error) => any;
|
|
81
85
|
onDownloaded?: (file: import("@jari-ace/app-bolts").FileInfo) => any;
|
|
82
86
|
onZipDownloaded?: (file: import("@jari-ace/app-bolts").FileInfo[]) => any;
|
|
83
|
-
}>, {}, {}, {}, {}, {
|
|
87
|
+
}>, {}, {}, {}, {}, {
|
|
88
|
+
layout: "list" | "inline";
|
|
89
|
+
}>, import("vue").CreateComponentPublicInstanceWithMixins<Readonly<{
|
|
84
90
|
serviceName: string;
|
|
85
91
|
configKey: string;
|
|
86
92
|
attachToken?: string;
|
|
@@ -91,6 +97,7 @@ export declare const JaUploader: import("../../utils/install").SFCWithInstall<im
|
|
|
91
97
|
allowDownload?: boolean;
|
|
92
98
|
allowDelete?: boolean;
|
|
93
99
|
allowPreview?: boolean;
|
|
100
|
+
layout?: "list" | "inline";
|
|
94
101
|
} & {
|
|
95
102
|
modelValue?: string;
|
|
96
103
|
}> & Readonly<{
|
|
@@ -125,7 +132,9 @@ export declare const JaUploader: import("../../utils/install").SFCWithInstall<im
|
|
|
125
132
|
uploadError: (file: import("./types").AceFile, error: Error) => any;
|
|
126
133
|
downloaded: (file: import("@jari-ace/app-bolts").FileInfo) => any;
|
|
127
134
|
zipDownloaded: (file: import("@jari-ace/app-bolts").FileInfo[]) => any;
|
|
128
|
-
}, import("vue").PublicProps, {
|
|
135
|
+
}, import("vue").PublicProps, {
|
|
136
|
+
layout: "list" | "inline";
|
|
137
|
+
}, false, {}, {}, import("vue").GlobalComponents, import("vue").GlobalDirectives, string, {}, any, import("vue").ComponentProvideOptions, {
|
|
129
138
|
P: {};
|
|
130
139
|
B: {};
|
|
131
140
|
D: {};
|
|
@@ -143,6 +152,7 @@ export declare const JaUploader: import("../../utils/install").SFCWithInstall<im
|
|
|
143
152
|
allowDownload?: boolean;
|
|
144
153
|
allowDelete?: boolean;
|
|
145
154
|
allowPreview?: boolean;
|
|
155
|
+
layout?: "list" | "inline";
|
|
146
156
|
} & {
|
|
147
157
|
modelValue?: string;
|
|
148
158
|
}> & Readonly<{
|
|
@@ -161,7 +171,9 @@ export declare const JaUploader: import("../../utils/install").SFCWithInstall<im
|
|
|
161
171
|
onUploadError?: (file: import("./types").AceFile, error: Error) => any;
|
|
162
172
|
onDownloaded?: (file: import("@jari-ace/app-bolts").FileInfo) => any;
|
|
163
173
|
onZipDownloaded?: (file: import("@jari-ace/app-bolts").FileInfo[]) => any;
|
|
164
|
-
}>, {}, {}, {}, {}, {
|
|
174
|
+
}>, {}, {}, {}, {}, {
|
|
175
|
+
layout: "list" | "inline";
|
|
176
|
+
}>>;
|
|
165
177
|
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
166
178
|
change: (value: string) => any;
|
|
167
179
|
}, string, import("vue").PublicProps, Readonly<import("./JaUploader.vue").JaUploaderProps> & Readonly<{
|
|
@@ -178,6 +190,7 @@ export declare const JaUploaderRaw: import("../../utils/install").SFCWithInstall
|
|
|
178
190
|
allowDownload?: boolean;
|
|
179
191
|
allowDelete?: boolean;
|
|
180
192
|
allowPreview?: boolean;
|
|
193
|
+
layout?: "list" | "inline";
|
|
181
194
|
} & {
|
|
182
195
|
modelValue?: string;
|
|
183
196
|
}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -207,6 +220,7 @@ export declare const JaUploaderRaw: import("../../utils/install").SFCWithInstall
|
|
|
207
220
|
allowDownload?: boolean;
|
|
208
221
|
allowDelete?: boolean;
|
|
209
222
|
allowPreview?: boolean;
|
|
223
|
+
layout?: "list" | "inline";
|
|
210
224
|
} & {
|
|
211
225
|
modelValue?: string;
|
|
212
226
|
}> & Readonly<{
|
|
@@ -225,7 +239,9 @@ export declare const JaUploaderRaw: import("../../utils/install").SFCWithInstall
|
|
|
225
239
|
onUploadError?: (file: import("./types").AceFile, error: Error) => any;
|
|
226
240
|
onDownloaded?: (file: import("@jari-ace/app-bolts").FileInfo) => any;
|
|
227
241
|
onZipDownloaded?: (file: import("@jari-ace/app-bolts").FileInfo[]) => any;
|
|
228
|
-
}>, {
|
|
242
|
+
}>, {
|
|
243
|
+
layout: "list" | "inline";
|
|
244
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>> & Record<string, any>;
|
|
229
245
|
export declare const JaFilePreviewer: import("../../utils/install").SFCWithInstall<import("vue").DefineComponent<{
|
|
230
246
|
attachToken: string;
|
|
231
247
|
buttonType?: "default" | "info" | "warning" | "success" | "text" | "primary" | "danger";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../packages/components/upload/index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,UAAU
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../packages/components/upload/index.ts"],"names":[],"mappings":"AAIA,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;yGAA2B,CAAC;AACnD,eAAO,MAAM,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oGAAsB,CAAC;AACjD,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;wHAA8B,CAAC;AAC3D,cAAc,SAAS,CAAA"}
|
|
@@ -47,6 +47,10 @@ type __VLS_Props = {
|
|
|
47
47
|
* 是否允许预览,为空表示采用应用里的附件设置
|
|
48
48
|
*/
|
|
49
49
|
allowPreview?: boolean;
|
|
50
|
+
/**
|
|
51
|
+
* 布局方式: list-列表布局(默认), inline-行内布局
|
|
52
|
+
*/
|
|
53
|
+
layout?: 'list' | 'inline';
|
|
50
54
|
};
|
|
51
55
|
type __VLS_PublicProps = __VLS_Props & {
|
|
52
56
|
modelValue?: string;
|
|
@@ -83,6 +87,8 @@ declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {},
|
|
|
83
87
|
onUploadError?: (file: AceFile, error: Error) => any;
|
|
84
88
|
onDownloaded?: (file: FileInfo) => any;
|
|
85
89
|
onZipDownloaded?: (file: FileInfo[]) => any;
|
|
86
|
-
}>, {
|
|
90
|
+
}>, {
|
|
91
|
+
layout: "list" | "inline";
|
|
92
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
87
93
|
export default _default;
|
|
88
94
|
//# sourceMappingURL=uploader.vue.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"uploader.vue.d.ts","sourceRoot":"","sources":["../../../packages/components/upload/uploader.vue"],"names":[],"mappings":"AAAA,
|
|
1
|
+
{"version":3,"file":"uploader.vue.d.ts","sourceRoot":"","sources":["../../../packages/components/upload/uploader.vue"],"names":[],"mappings":"AAAA,OA82BO,EAGH,KAAK,QAAQ,EAMhB,MAAM,qBAAqB,CAAC;AAQ7B,OAAO,8BAA8B,CAAC;AACtC,OAAO,mCAAmC,CAAC;AAC3C,OAAO,+BAA+B,CAAC;AACvC,OAAO,wCAAwC,CAAC;AAChD,OAAO,gCAAgC,CAAC;AACxC,OAAO,sCAAsC,CAAC;AAwB9C,OAAO,KAAK,EAAE,OAAO,EAAE,MAAM,SAAS,CAAC;AAGvC,KAAK,WAAW,GAAG;IACf;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IACpB;;OAEG;IACH,SAAS,EAAE,MAAM,CAAC;IAClB;;OAEG;IACH,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;OAEG;IACH,mBAAmB,CAAC,EAAE,MAAM,CAAC;IAC7B;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IACzB;;OAEG;IACH,SAAS,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC;IAC5B;;OAEG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;OAEG;IACH,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB;;OAEG;IACH,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB;;OAEG;IACH,YAAY,CAAC,EAAE,OAAO,CAAC;IACvB;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,GAAG,QAAQ,CAAA;CAC7B,CAAC;AAidF,KAAK,iBAAiB,GAAG,WAAW,GAAG;IACvC,UAAU,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAyoBF,wBAQG"}
|