@like-a-startup/matildex-chat 1.0.16 → 1.0.17
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/api/message.d.ts +1 -0
- package/dist/chat.bundle.es.js +8027 -7952
- package/dist/chat.bundle.umd.js +30 -30
- package/dist/chat.es.js +9467 -9392
- package/dist/chat.umd.js +31 -31
- package/dist/components/Message.vue.d.ts +1 -0
- package/dist/components/MessageTyping.vue.d.ts +3 -0
- package/dist/components/MessagesList.vue.d.ts +6 -0
- package/dist/style.css +2 -2
- package/dist/types/chat.d.ts +2 -0
- package/dist/types/messages.d.ts +2 -0
- package/dist/types/webhook.d.ts +1 -0
- package/package.json +30 -30
- package/LICENSE.md +0 -88
|
@@ -10,6 +10,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
10
10
|
$data: {};
|
|
11
11
|
$props: {
|
|
12
12
|
readonly message: ChatMessage;
|
|
13
|
+
readonly isLast?: boolean | undefined;
|
|
13
14
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
14
15
|
$attrs: {
|
|
15
16
|
[x: string]: unknown;
|
|
@@ -29,6 +30,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
29
30
|
$el: HTMLDivElement;
|
|
30
31
|
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
31
32
|
message: ChatMessage;
|
|
33
|
+
isLast?: boolean;
|
|
32
34
|
}> & Readonly<{}>, {
|
|
33
35
|
scrollToView: () => void;
|
|
34
36
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
@@ -53,6 +55,7 @@ declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {
|
|
|
53
55
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
54
56
|
} & Readonly<{}> & Omit<Readonly<{
|
|
55
57
|
message: ChatMessage;
|
|
58
|
+
isLast?: boolean;
|
|
56
59
|
}> & Readonly<{}>, "scrollToView"> & import('vue').ShallowUnwrapRef<{
|
|
57
60
|
scrollToView: () => void;
|
|
58
61
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
@@ -20,6 +20,7 @@ declare function __VLS_template(): {
|
|
|
20
20
|
$data: {};
|
|
21
21
|
$props: {
|
|
22
22
|
readonly message: ChatMessage;
|
|
23
|
+
readonly isLast?: boolean | undefined;
|
|
23
24
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
24
25
|
$attrs: {
|
|
25
26
|
[x: string]: unknown;
|
|
@@ -39,6 +40,7 @@ declare function __VLS_template(): {
|
|
|
39
40
|
$el: HTMLDivElement;
|
|
40
41
|
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
41
42
|
message: ChatMessage;
|
|
43
|
+
isLast?: boolean;
|
|
42
44
|
}> & Readonly<{}>, {
|
|
43
45
|
scrollToView: () => void;
|
|
44
46
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
@@ -63,6 +65,7 @@ declare function __VLS_template(): {
|
|
|
63
65
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
64
66
|
} & Readonly<{}> & Omit<Readonly<{
|
|
65
67
|
message: ChatMessage;
|
|
68
|
+
isLast?: boolean;
|
|
66
69
|
}> & Readonly<{}>, "scrollToView"> & import('vue').ShallowUnwrapRef<{
|
|
67
70
|
scrollToView: () => void;
|
|
68
71
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
@@ -92,6 +95,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
92
95
|
$data: {};
|
|
93
96
|
$props: {
|
|
94
97
|
readonly message: ChatMessage;
|
|
98
|
+
readonly isLast?: boolean | undefined;
|
|
95
99
|
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps;
|
|
96
100
|
$attrs: {
|
|
97
101
|
[x: string]: unknown;
|
|
@@ -111,6 +115,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
111
115
|
$el: HTMLDivElement;
|
|
112
116
|
$options: import('vue').ComponentOptionsBase<Readonly<{
|
|
113
117
|
message: ChatMessage;
|
|
118
|
+
isLast?: boolean;
|
|
114
119
|
}> & Readonly<{}>, {
|
|
115
120
|
scrollToView: () => void;
|
|
116
121
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
@@ -135,6 +140,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
135
140
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
136
141
|
} & Readonly<{}> & Omit<Readonly<{
|
|
137
142
|
message: ChatMessage;
|
|
143
|
+
isLast?: boolean;
|
|
138
144
|
}> & Readonly<{}>, "scrollToView"> & import('vue').ShallowUnwrapRef<{
|
|
139
145
|
scrollToView: () => void;
|
|
140
146
|
}> & {} & import('vue').ComponentCustomProperties & {} & {
|