@mobilon-dev/chotto 0.3.12 → 0.3.13
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/{CreateChat-DYGyItgE.js → CreateChat-BLSa6Pvz.js} +1 -1
- package/dist/{CreateChat2-BssQxlzC.js → CreateChat2-DkcpMfu0.js} +1 -1
- package/dist/{CreateDialog-nG1d1JLQ.js → CreateDialog-CRtDbLYn.js} +1 -1
- package/dist/{ModalVideoRecorder-Di7x1f3E.js → ModalVideoRecorder-DRMD5W4Z.js} +1 -1
- package/dist/{SelectUser2-CMkdxD6H.js → SelectUser2-DxExoHs-.js} +1 -1
- package/dist/chotto.css +1 -1
- package/dist/{index-CBuP7XAZ.js → index-CbPyuani.js} +4403 -3973
- package/dist/types/components/3_compounds/ChatList/ChatList.vue.d.ts +2 -2
- package/dist/types/components/5_containers/BaseContainer/BaseContainer.vue.d.ts +0 -2
- package/dist/types/components/5_containers/FloatContainer/FloatContainer.vue.d.ts +0 -2
- package/dist/types/hooks/index.d.ts +1 -2
- package/dist/types/hooks/modals/index.d.ts +1 -0
- package/dist/types/{apps → hooks}/validators/chats/types.d.ts +1 -1
- package/dist/types/hooks/validators/index.d.ts +3 -0
- package/dist/vuessages.es.js +66 -58
- package/dist/vuessages.umd.js +45 -6
- package/package.json +1 -1
- package/dist/types/apps/validators/examples.d.ts +0 -1358
- package/dist/types/apps/validators/index.d.ts +0 -29
- package/dist/types/apps/validators/test.d.ts +0 -23
- /package/dist/types/hooks/{useModal.d.ts → modals/useModal.d.ts} +0 -0
- /package/dist/types/hooks/{useVideoRecorder.d.ts → modals/useVideoRecorder.d.ts} +0 -0
- /package/dist/types/{apps → hooks}/validators/chats/chatValidator.d.ts +0 -0
- /package/dist/types/{apps → hooks}/validators/chats/index.d.ts +0 -0
- /package/dist/types/{apps → hooks}/validators/chats/useChatValidator.d.ts +0 -0
- /package/dist/types/{apps → hooks}/validators/messages/index.d.ts +0 -0
- /package/dist/types/{apps → hooks}/validators/messages/messageValidator.d.ts +0 -0
- /package/dist/types/{apps → hooks}/validators/messages/types.d.ts +0 -0
- /package/dist/types/{apps → hooks}/validators/messages/useMessageValidator.d.ts +0 -0
- /package/dist/types/{apps → hooks}/validators/sidebar/index.d.ts +0 -0
- /package/dist/types/{apps → hooks}/validators/sidebar/sidebarValidator.d.ts +0 -0
- /package/dist/types/{apps → hooks}/validators/sidebar/types.d.ts +0 -0
- /package/dist/types/{apps → hooks}/validators/sidebar/useSidebarValidator.d.ts +0 -0
@@ -5,14 +5,14 @@ type __VLS_WithSlots<T, S> = T & (new () => {
|
|
5
5
|
});
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
7
7
|
$emit: (event: "select" | "action" | "expand" | "tab-click" | "loadMoreChats", ...args: any[]) => void;
|
8
|
-
titleEnabled: boolean;
|
9
8
|
chats: unknown[];
|
9
|
+
titleEnabled: boolean;
|
10
10
|
filterEnabled: boolean;
|
11
11
|
filterQuery: string;
|
12
12
|
dialogTabs: unknown[];
|
13
13
|
$props: {
|
14
|
-
readonly titleEnabled?: boolean | undefined;
|
15
14
|
readonly chats?: unknown[] | undefined;
|
15
|
+
readonly titleEnabled?: boolean | undefined;
|
16
16
|
readonly filterEnabled?: boolean | undefined;
|
17
17
|
readonly filterQuery?: string | undefined;
|
18
18
|
readonly dialogTabs?: unknown[] | undefined;
|
@@ -4,11 +4,9 @@ type __VLS_WithSlots<T, S> = T & (new () => {
|
|
4
4
|
$slots: S;
|
5
5
|
});
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
7
|
-
extChatAppId: string;
|
8
7
|
width: string;
|
9
8
|
height: string;
|
10
9
|
$props: {
|
11
|
-
readonly extChatAppId?: string | undefined;
|
12
10
|
readonly width?: string | undefined;
|
13
11
|
readonly height?: string | undefined;
|
14
12
|
};
|
@@ -6,13 +6,11 @@ type __VLS_WithSlots<T, S> = T & (new () => {
|
|
6
6
|
declare const __VLS_component: import("vue").DefineComponent<{}, {
|
7
7
|
$emit: (event: "close-window" | "get-size", ...args: any[]) => void;
|
8
8
|
title: string;
|
9
|
-
extChatAppId: string;
|
10
9
|
width: string;
|
11
10
|
height: string;
|
12
11
|
avatar: string;
|
13
12
|
$props: {
|
14
13
|
readonly title?: string | undefined;
|
15
|
-
readonly extChatAppId?: string | undefined;
|
16
14
|
readonly width?: string | undefined;
|
17
15
|
readonly height?: string | undefined;
|
18
16
|
readonly avatar?: string | undefined;
|
@@ -2,8 +2,7 @@ export * from './uploadFile';
|
|
2
2
|
export * from './useDelayDebouncedRef';
|
3
3
|
export * from './useImmediateDebouncedRef';
|
4
4
|
export * from './useMessage';
|
5
|
-
export * from './useModal';
|
6
5
|
export * from './useSearchModel';
|
7
6
|
export * from './useTheme';
|
8
|
-
export * from './useVideoRecorder';
|
9
7
|
export * from './modals';
|
8
|
+
export * from './validators';
|
package/dist/vuessages.es.js
CHANGED
@@ -1,50 +1,50 @@
|
|
1
|
-
import { ai as s, I as t, x as o, A as l, al as
|
1
|
+
import { ai as s, I as t, x as o, A as l, al as i, ag as r, J as n, j as d, B as u, k as c, l as M, m as g, K as p, y as m, u as C, z as h, ac as y, v as S, ad as B, D as F, w as I, ak as A, a as R, b as T, f as b, c as v, G as V, C as f, N as P, O as x, E as D, ah as k, ae as L, F as W, g as w, Q as E, aj as U, h as j, R as K, n as N, o as O, am as Q, X as q, L as z, M as G, Y as H, a9 as J, aa as X, ab as Y, P as Z, Z as $, $ as _, a0 as aa, a1 as ea, a2 as sa, a3 as ta, S as oa, i as la, d as ia, af as ra, a4 as na, a5 as da, e as ua, p as ca, a6 as Ma, H as ga, T as pa, a7 as ma, U as Ca, a8 as ha, V as ya, q as Sa, r as Ba, s as Fa, t as Ia, W as Aa, aL as Ra, an as Ta, aE as ba, aH as va, aK as Va, ao as fa, aB as Pa, aN as xa, aM as Da, aO as ka, aJ as La, ap as Wa, aC as wa, aq as Ea, ar as Ua, as as ja, aF as Ka, av as Na, aw as Oa, ax as Qa, ay as qa, az as za, at as Ga, aI as Ha, au as Ja, aA as Xa, aD as Ya, aG as Za } from "./index-CbPyuani.js";
|
2
2
|
export {
|
3
3
|
s as AdaptiveExtendedLayout,
|
4
4
|
t as AudioMessage,
|
5
5
|
o as AudioRecorder,
|
6
6
|
l as AvatarIcon,
|
7
|
-
|
7
|
+
i as BaseContainer,
|
8
8
|
r as BaseLayout,
|
9
|
-
|
10
|
-
|
9
|
+
n as BaseReplyMessage,
|
10
|
+
d as ButtonCommandsSelector,
|
11
11
|
u as ButtonContextMenu,
|
12
12
|
c as ButtonEmojiPicker,
|
13
13
|
M as ButtonTemplateSelector,
|
14
|
-
|
15
|
-
|
16
|
-
|
14
|
+
g as ButtonWabaTemplateSelector,
|
15
|
+
p as CallMessage,
|
16
|
+
m as ChannelSelector,
|
17
17
|
C as ChatFilter,
|
18
|
-
|
19
|
-
|
18
|
+
h as ChatInfo,
|
19
|
+
y as ChatInput,
|
20
20
|
S as ChatItem,
|
21
21
|
B as ChatList,
|
22
22
|
F as ChatPanel,
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
23
|
+
I as ChatTabs,
|
24
|
+
A as ChatWrapper,
|
25
|
+
R as CheckIcon,
|
26
|
+
T as CloseButtonIcon,
|
27
27
|
b as CommunicationPanel,
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
|
28
|
+
v as ContactCRMIcon,
|
29
|
+
V as ContactInfo,
|
30
|
+
f as ContextMenu,
|
31
|
+
P as DateMessage,
|
32
|
+
x as DateMessageSticky,
|
33
|
+
D as EmbedPreview,
|
34
|
+
k as ExtendedLayout,
|
35
35
|
L as Feed,
|
36
|
-
|
37
|
-
|
38
|
-
|
39
|
-
|
36
|
+
W as FeedFoundItem,
|
37
|
+
w as FeedFoundObjects,
|
38
|
+
E as FeedKeyboard,
|
39
|
+
U as FeedLayout,
|
40
40
|
j as FeedSearch,
|
41
41
|
K as FileMessage,
|
42
42
|
N as FilePreview,
|
43
|
-
|
44
|
-
|
45
|
-
|
46
|
-
|
47
|
-
|
43
|
+
O as FileUploader,
|
44
|
+
Q as FloatContainer,
|
45
|
+
q as ImageMessage,
|
46
|
+
z as LinkPreview,
|
47
|
+
G as MenuIcon,
|
48
48
|
H as MessageKeyboard,
|
49
49
|
J as Modal,
|
50
50
|
X as ModalFullscreen,
|
@@ -58,42 +58,50 @@ export {
|
|
58
58
|
ta as ReplyVideoMessage,
|
59
59
|
oa as SearchIcon,
|
60
60
|
la as SelectUser,
|
61
|
-
|
61
|
+
ia as SettingsIcon,
|
62
62
|
ra as SideBar,
|
63
|
-
|
64
|
-
|
63
|
+
na as SplashScreen,
|
64
|
+
da as SystemMessage,
|
65
65
|
ua as TelegramIcon,
|
66
66
|
ca as TemplateSelector,
|
67
67
|
Ma as TextMessage,
|
68
|
-
|
69
|
-
|
70
|
-
|
68
|
+
ga as ThemeMode,
|
69
|
+
pa as Tooltip,
|
70
|
+
ma as TypingMessage,
|
71
71
|
Ca as UserProfile,
|
72
|
-
|
73
|
-
|
72
|
+
ha as VideoMessage,
|
73
|
+
ya as VideoRecorder,
|
74
74
|
Sa as WABAAttachmentSection,
|
75
75
|
Ba as WABAQuickReplyButtons,
|
76
76
|
Fa as WABASeparatedQuickButtons,
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
ba as
|
77
|
+
Ia as WABATemplateSelector,
|
78
|
+
Aa as WhatsAppIcon,
|
79
|
+
Ra as formatTimestamp,
|
80
|
+
Ta as generatePreview,
|
81
|
+
ba as getMessageValidationReport,
|
82
|
+
va as getSidebarValidationReport,
|
83
|
+
Va as getStatus,
|
82
84
|
fa as getTypeFileByMime,
|
83
|
-
Pa as
|
84
|
-
xa as
|
85
|
-
Da as
|
86
|
-
ka as
|
87
|
-
|
88
|
-
Wa as
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
96
|
-
|
97
|
-
|
98
|
-
|
85
|
+
Pa as getValidationReport,
|
86
|
+
xa as insertDaySeparators,
|
87
|
+
Da as playNotificationAudio,
|
88
|
+
ka as sortByTimestamp,
|
89
|
+
La as statuses,
|
90
|
+
Wa as uploadFile,
|
91
|
+
wa as useChatValidator,
|
92
|
+
Ea as useDelayDebouncedRef,
|
93
|
+
Ua as useImmediateDebouncedRef,
|
94
|
+
ja as useMessage,
|
95
|
+
Ka as useMessageValidator,
|
96
|
+
Na as useModalCreateChat,
|
97
|
+
Oa as useModalCreateChat2,
|
98
|
+
Qa as useModalCreateDialog,
|
99
|
+
qa as useModalSelectUser2,
|
100
|
+
za as useModalVideoRecorder,
|
101
|
+
Ga as useSearchModel,
|
102
|
+
Ha as useSidebarValidator,
|
103
|
+
Ja as useTheme,
|
104
|
+
Xa as validateChats,
|
105
|
+
Ya as validateMessages,
|
106
|
+
Za as validateSidebarItems
|
99
107
|
};
|