@uzum-tech/ui 2.3.0 → 2.3.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/index.js +564 -499
- package/dist/index.mjs +564 -499
- package/dist/index.prod.js +2 -2
- package/dist/index.prod.mjs +2 -2
- package/es/chat/src/Chat.d.ts +1074 -0
- package/es/chat/src/ChatListItems.d.ts +360 -0
- package/es/chat/src/ChatMainArea.d.ts +360 -0
- package/es/chat/src/ChatMainArea.mjs +1 -0
- package/es/chat/src/ChatMessages.d.ts +360 -0
- package/es/chat/src/ChatMessages.mjs +30 -3
- package/es/chat/src/ChatParts/Sidebar.d.ts +78 -0
- package/es/chat/src/interface.d.ts +1 -0
- package/es/chat/styles/dark.d.ts +27 -0
- package/es/chat/styles/dark.mjs +2 -0
- package/es/chat/styles/light.d.ts +27 -0
- package/es/chat/styles/light.mjs +2 -0
- package/es/components.d.ts +1840 -7
- package/es/image/src/ImagePreview.d.ts +1 -0
- package/es/image/src/ImagePreview.mjs +7 -35
- package/es/image/src/public-types.d.ts +4 -4
- package/es/message-bubble/src/MessageBubble.mjs +16 -5
- package/es/message-bubble/src/interface.d.ts +2 -0
- package/es/message-bubble/src/styles/index.cssr.mjs +5 -7
- package/es/upload/index.d.ts +2 -1
- package/es/upload/index.mjs +2 -1
- package/es/upload/src/Upload.d.ts +73 -1007
- package/es/upload/src/Upload.mjs +43 -124
- package/es/upload/src/UploadFile.d.ts +1 -1
- package/es/upload/src/UploadFile.mjs +8 -2
- package/es/upload/src/UploadFileList.mjs +17 -2
- package/es/upload/src/UploadProgress.d.ts +3 -2
- package/es/upload/src/interface.d.ts +1086 -92
- package/es/upload/src/interface.mjs +117 -1
- package/es/upload/src/public-types.d.ts +17 -2
- package/es/upload/src/useUploadActionsRender.d.ts +2 -27
- package/es/upload/src/useUploadActionsRender.mjs +2 -2
- package/es/upload/src/useUploadInternals.d.ts +2 -25
- package/es/upload/src/utils.d.ts +2 -0
- package/es/upload/src/utils.mjs +7 -0
- package/es/version.d.ts +1 -1
- package/es/version.mjs +1 -1
- package/lib/chat/src/Chat.d.ts +1074 -0
- package/lib/chat/src/ChatListItems.d.ts +360 -0
- package/lib/chat/src/ChatMainArea.d.ts +360 -0
- package/lib/chat/src/ChatMainArea.js +1 -0
- package/lib/chat/src/ChatMessages.d.ts +360 -0
- package/lib/chat/src/ChatMessages.js +10 -3
- package/lib/chat/src/ChatParts/Sidebar.d.ts +78 -0
- package/lib/chat/src/interface.d.ts +1 -0
- package/lib/chat/styles/dark.d.ts +27 -0
- package/lib/chat/styles/dark.js +6 -4
- package/lib/chat/styles/light.d.ts +27 -0
- package/lib/chat/styles/light.js +6 -4
- package/lib/components.d.ts +1840 -7
- package/lib/image/src/ImagePreview.d.ts +1 -0
- package/lib/image/src/ImagePreview.js +3 -19
- package/lib/image/src/public-types.d.ts +4 -4
- package/lib/message-bubble/src/MessageBubble.js +15 -5
- package/lib/message-bubble/src/interface.d.ts +2 -0
- package/lib/message-bubble/src/styles/index.cssr.js +5 -7
- package/lib/upload/index.d.ts +2 -1
- package/lib/upload/index.js +2 -1
- package/lib/upload/src/Upload.d.ts +73 -1007
- package/lib/upload/src/Upload.js +40 -68
- package/lib/upload/src/UploadFile.d.ts +1 -1
- package/lib/upload/src/UploadFile.js +12 -4
- package/lib/upload/src/UploadFileList.js +8 -1
- package/lib/upload/src/UploadProgress.d.ts +3 -2
- package/lib/upload/src/interface.d.ts +1086 -92
- package/lib/upload/src/interface.js +59 -1
- package/lib/upload/src/public-types.d.ts +17 -2
- package/lib/upload/src/useUploadActionsRender.d.ts +2 -27
- package/lib/upload/src/useUploadActionsRender.js +2 -2
- package/lib/upload/src/useUploadInternals.d.ts +2 -25
- package/lib/upload/src/utils.d.ts +2 -0
- package/lib/upload/src/utils.js +10 -0
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +1 -1
- package/web-types.json +113 -36
|
@@ -1,2 +1,118 @@
|
|
|
1
|
+
import { useTheme } from "../../_mixins/index.mjs";
|
|
1
2
|
import { createInjectionKey } from "../../_utils/index.mjs";
|
|
2
|
-
|
|
3
|
+
import { environmentSupportFile, isImageFile } from "./utils.mjs";
|
|
4
|
+
export const uploadInjectionKey = createInjectionKey('u-upload');
|
|
5
|
+
export const uploadProps = Object.assign(Object.assign({}, useTheme.props), {
|
|
6
|
+
name: {
|
|
7
|
+
type: String,
|
|
8
|
+
default: 'file'
|
|
9
|
+
},
|
|
10
|
+
accept: String,
|
|
11
|
+
action: String,
|
|
12
|
+
customRequest: Function,
|
|
13
|
+
directory: Boolean,
|
|
14
|
+
directoryDnd: {
|
|
15
|
+
type: Boolean,
|
|
16
|
+
default: undefined
|
|
17
|
+
},
|
|
18
|
+
method: {
|
|
19
|
+
type: String,
|
|
20
|
+
default: 'POST'
|
|
21
|
+
},
|
|
22
|
+
multiple: Boolean,
|
|
23
|
+
showFileList: {
|
|
24
|
+
type: Boolean,
|
|
25
|
+
default: true
|
|
26
|
+
},
|
|
27
|
+
data: [Object, Function],
|
|
28
|
+
headers: [Object, Function],
|
|
29
|
+
withCredentials: Boolean,
|
|
30
|
+
responseType: {
|
|
31
|
+
type: String,
|
|
32
|
+
default: ''
|
|
33
|
+
},
|
|
34
|
+
disabled: {
|
|
35
|
+
type: Boolean,
|
|
36
|
+
default: undefined
|
|
37
|
+
},
|
|
38
|
+
vertical: {
|
|
39
|
+
type: Boolean,
|
|
40
|
+
default: false
|
|
41
|
+
},
|
|
42
|
+
icon: Object,
|
|
43
|
+
onChange: Function,
|
|
44
|
+
onRemove: Function,
|
|
45
|
+
onFinish: Function,
|
|
46
|
+
onError: Function,
|
|
47
|
+
onRetry: Function,
|
|
48
|
+
onBeforeUpload: Function,
|
|
49
|
+
isErrorState: Function,
|
|
50
|
+
onDownload: Function,
|
|
51
|
+
defaultUpload: {
|
|
52
|
+
type: Boolean,
|
|
53
|
+
default: true
|
|
54
|
+
},
|
|
55
|
+
fileList: Array,
|
|
56
|
+
'onUpdate:fileList': [Function, Array],
|
|
57
|
+
onUpdateFileList: [Function, Array],
|
|
58
|
+
fileListClass: String,
|
|
59
|
+
fileListStyle: [String, Object],
|
|
60
|
+
defaultFileList: {
|
|
61
|
+
type: Array,
|
|
62
|
+
default: () => []
|
|
63
|
+
},
|
|
64
|
+
showCancelButton: {
|
|
65
|
+
type: Boolean,
|
|
66
|
+
default: true
|
|
67
|
+
},
|
|
68
|
+
showRemoveButton: {
|
|
69
|
+
type: Boolean,
|
|
70
|
+
default: true
|
|
71
|
+
},
|
|
72
|
+
showDownloadButton: Boolean,
|
|
73
|
+
showRetryButton: {
|
|
74
|
+
type: Boolean,
|
|
75
|
+
default: true
|
|
76
|
+
},
|
|
77
|
+
customDownload: Function,
|
|
78
|
+
showPreviewButton: {
|
|
79
|
+
type: Boolean,
|
|
80
|
+
default: true
|
|
81
|
+
},
|
|
82
|
+
listType: {
|
|
83
|
+
type: String,
|
|
84
|
+
default: 'text'
|
|
85
|
+
},
|
|
86
|
+
onPreview: Function,
|
|
87
|
+
shouldUseThumbnailUrl: {
|
|
88
|
+
type: Function,
|
|
89
|
+
default: file => {
|
|
90
|
+
if (!environmentSupportFile) return false;
|
|
91
|
+
return isImageFile(file);
|
|
92
|
+
}
|
|
93
|
+
},
|
|
94
|
+
createThumbnailUrl: Function,
|
|
95
|
+
abstract: Boolean,
|
|
96
|
+
max: Number,
|
|
97
|
+
maxSize: Number,
|
|
98
|
+
showTrigger: {
|
|
99
|
+
type: Boolean,
|
|
100
|
+
default: true
|
|
101
|
+
},
|
|
102
|
+
imageGroupProps: Object,
|
|
103
|
+
inputProps: Object,
|
|
104
|
+
triggerClass: String,
|
|
105
|
+
triggerStyle: [String, Object],
|
|
106
|
+
renderIcon: Function,
|
|
107
|
+
label: String,
|
|
108
|
+
size: {
|
|
109
|
+
type: String,
|
|
110
|
+
default: 'medium'
|
|
111
|
+
},
|
|
112
|
+
title: String,
|
|
113
|
+
subtitle: String,
|
|
114
|
+
noIcon: {
|
|
115
|
+
type: Boolean,
|
|
116
|
+
default: false
|
|
117
|
+
}
|
|
118
|
+
});
|
|
@@ -1,13 +1,28 @@
|
|
|
1
|
-
import type { CustomRequestOptions, FileInfo, FuncOrRecordOrUndef, OnChange, OnDownload, OnFinish, OnRemove, OnRetry, SettledFileInfo, UploadInst as UploadInstInner } from './interface';
|
|
2
|
-
export type { UploadProps } from './
|
|
1
|
+
import type { CustomRequestOptions, FileInfo, FuncOrRecordOrUndef, IsErrorState, ListType, OnBeforeUpload, OnBeforeUploadPayload, OnChange, OnChangePayload, OnDownload, OnError, OnErrorPayload, OnFinish, OnFinishPayload, OnPreview, OnRemove, OnRemovePayload, OnRetry, OnRetryPayload, OnUpdateFileList, RenderIcon, SettledFileInfo, ShouldUseThumbnailUrl, SubmitOptions, UploadInst as UploadInstInner } from './interface';
|
|
2
|
+
export type { UploadLocale, UploadProps, UploadSize } from './interface';
|
|
3
3
|
export interface UploadInst extends UploadInstInner {
|
|
4
4
|
}
|
|
5
5
|
export type UploadFileInfo = FileInfo;
|
|
6
6
|
export type UploadCustomRequestOptions = CustomRequestOptions;
|
|
7
7
|
export type UploadSettledFileInfo = SettledFileInfo;
|
|
8
|
+
export type UploadListType = ListType;
|
|
9
|
+
export type UploadIsErrorState = IsErrorState;
|
|
10
|
+
export type UploadRenderIcon = RenderIcon;
|
|
11
|
+
export type UploadShouldUseThumbnailUrl = ShouldUseThumbnailUrl;
|
|
12
|
+
export type UploadSubmitOptions = SubmitOptions;
|
|
8
13
|
export type UploadOnChange = OnChange;
|
|
14
|
+
export type UploadOnChangePayload = OnChangePayload;
|
|
9
15
|
export type UploadOnFinish = OnFinish;
|
|
16
|
+
export type UploadOnFinishPayload = OnFinishPayload;
|
|
17
|
+
export type UploadOnError = OnError;
|
|
18
|
+
export type UploadOnErrorPayload = OnErrorPayload;
|
|
10
19
|
export type UploadOnRemove = OnRemove;
|
|
20
|
+
export type UploadOnRemovePayload = OnRemovePayload;
|
|
11
21
|
export type UploadOnDownload = OnDownload;
|
|
12
22
|
export type UploadOnRetry = OnRetry;
|
|
23
|
+
export type UploadOnRetryPayload = OnRetryPayload;
|
|
24
|
+
export type UploadOnPreview = OnPreview;
|
|
25
|
+
export type UploadOnBeforeUpload = OnBeforeUpload;
|
|
26
|
+
export type UploadOnBeforeUploadPayload = OnBeforeUploadPayload;
|
|
27
|
+
export type UploadOnUpdateFileList = OnUpdateFileList;
|
|
13
28
|
export type { FuncOrRecordOrUndef };
|
|
@@ -1,27 +1,2 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
|
|
3
|
-
interface Options {
|
|
4
|
-
clsPrefix: string;
|
|
5
|
-
listType: ListType;
|
|
6
|
-
file: SettledFileInfo;
|
|
7
|
-
renderIcon?: RenderIcon;
|
|
8
|
-
showPreviewButton: string | boolean | null;
|
|
9
|
-
showRemoveButton: boolean;
|
|
10
|
-
showCancelButton: boolean;
|
|
11
|
-
showRetryButton: boolean;
|
|
12
|
-
showDownloadButton: boolean;
|
|
13
|
-
disabled: boolean;
|
|
14
|
-
buttonType: string | undefined;
|
|
15
|
-
mergedTheme: any;
|
|
16
|
-
buttonThemeOverrides: any;
|
|
17
|
-
handlePreviewClick: () => void;
|
|
18
|
-
handleRemoveOrCancelClick: (e: MouseEvent) => void;
|
|
19
|
-
handleRetryClick: () => void;
|
|
20
|
-
handleDownloadClick: (e: MouseEvent) => void;
|
|
21
|
-
capitalizeFirstLetter: (text: string) => string;
|
|
22
|
-
}
|
|
23
|
-
export declare function useUploadActionsRender(opts: Options): {
|
|
24
|
-
actionsNode: VNode;
|
|
25
|
-
icon: VNode;
|
|
26
|
-
};
|
|
27
|
-
export {};
|
|
1
|
+
import type { UploadActionsRenderOptions, UploadActionsRenderReturn } from './interface';
|
|
2
|
+
export declare function useUploadActionsRender(options: UploadActionsRenderOptions): UploadActionsRenderReturn;
|
|
@@ -2,7 +2,7 @@ import { h } from 'vue';
|
|
|
2
2
|
import { UBaseIcon, UIconSwitchTransition } from "../../_internal/index.mjs";
|
|
3
3
|
import { CancelIcon, DownloadIcon, EyeIcon, RetryIcon, TrashIcon } from "../../_internal/icons/index.mjs";
|
|
4
4
|
import { UButton } from "../../button/index.mjs";
|
|
5
|
-
export function useUploadActionsRender(
|
|
5
|
+
export function useUploadActionsRender(options) {
|
|
6
6
|
const {
|
|
7
7
|
clsPrefix,
|
|
8
8
|
listType,
|
|
@@ -22,7 +22,7 @@ export function useUploadActionsRender(opts) {
|
|
|
22
22
|
handleRetryClick,
|
|
23
23
|
handleDownloadClick,
|
|
24
24
|
capitalizeFirstLetter
|
|
25
|
-
} =
|
|
25
|
+
} = options;
|
|
26
26
|
const getExt = name => {
|
|
27
27
|
const i = name.lastIndexOf('.');
|
|
28
28
|
return i === -1 || i === name.length - 1 ? '' : name.slice(i + 1);
|
|
@@ -1,25 +1,2 @@
|
|
|
1
|
-
import type {
|
|
2
|
-
|
|
3
|
-
mergedClsPrefix: string;
|
|
4
|
-
accept?: string;
|
|
5
|
-
multiple?: boolean;
|
|
6
|
-
inputProps?: Record<string, any>;
|
|
7
|
-
directory?: boolean;
|
|
8
|
-
onChange?: (e: Event) => void;
|
|
9
|
-
label?: string;
|
|
10
|
-
title?: string;
|
|
11
|
-
subtitle?: string;
|
|
12
|
-
vertical?: boolean;
|
|
13
|
-
noIcon?: boolean;
|
|
14
|
-
icon?: any;
|
|
15
|
-
localeRef: {
|
|
16
|
-
title: string;
|
|
17
|
-
subtitle: string;
|
|
18
|
-
};
|
|
19
|
-
slots: Slots;
|
|
20
|
-
}
|
|
21
|
-
export declare function useUploadInternals(options: UseUploadInternalsOptions): {
|
|
22
|
-
inputNode: VNode;
|
|
23
|
-
renderDefaultTrigger: () => VNode[];
|
|
24
|
-
};
|
|
25
|
-
export {};
|
|
1
|
+
import type { UseUploadInternalsOptions, UseUploadInternalsReturn } from './interface';
|
|
2
|
+
export declare function useUploadInternals(options: UseUploadInternalsOptions): UseUploadInternalsReturn;
|
package/es/upload/src/utils.d.ts
CHANGED
|
@@ -10,6 +10,8 @@ export declare const environmentSupportFile: false | {
|
|
|
10
10
|
export declare function isFileSystemDirectoryEntry(item: FileSystemEntry | FileSystemFileEntry | FileSystemDirectoryEntry): item is FileSystemDirectoryEntry;
|
|
11
11
|
export declare function isFileSystemFileEntry(item: FileSystemEntry | FileSystemFileEntry | FileSystemDirectoryEntry): item is FileSystemFileEntry;
|
|
12
12
|
export declare function getFilesFromEntries(entries: readonly FileSystemEntry[] | Array<FileSystemEntry | null>, directory: boolean): Promise<FileAndEntry[]>;
|
|
13
|
+
export declare function getFilePreviewSrc(file: SettledFileInfo): string | null;
|
|
14
|
+
export declare function isFileSizeExceeded(file: File | null | undefined, maxSize: number | undefined): boolean;
|
|
13
15
|
export declare function createSettledFileInfo(fileInfo: FileInfo): SettledFileInfo;
|
|
14
16
|
/**
|
|
15
17
|
* This is a rather simple version. I may fix it later to make it more accurate.
|
package/es/upload/src/utils.mjs
CHANGED
|
@@ -124,6 +124,13 @@ export function getFilesFromEntries(entries, directory) {
|
|
|
124
124
|
return fileAndEntries;
|
|
125
125
|
});
|
|
126
126
|
}
|
|
127
|
+
export function getFilePreviewSrc(file) {
|
|
128
|
+
return file.url || file.thumbnailUrl || null;
|
|
129
|
+
}
|
|
130
|
+
export function isFileSizeExceeded(file, maxSize) {
|
|
131
|
+
if (maxSize === undefined || !file) return false;
|
|
132
|
+
return file.size > maxSize;
|
|
133
|
+
}
|
|
127
134
|
export function createSettledFileInfo(fileInfo) {
|
|
128
135
|
const {
|
|
129
136
|
id,
|
package/es/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
declare const _default: "2.3.
|
|
1
|
+
declare const _default: "2.3.2";
|
|
2
2
|
export default _default;
|
package/es/version.mjs
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export default '2.3.
|
|
1
|
+
export default '2.3.2';
|