@n8n/chat 0.36.0 → 0.37.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/dist/chat.bundle.es.js +3745 -3713
- package/dist/chat.bundle.umd.js +13 -13
- package/dist/chat.css +1 -1
- package/dist/chat.es.js +3630 -3602
- package/dist/chat.umd.js +15 -15
- package/dist/components/MessagesList.vue.d.ts +3 -2
- package/package.json +1 -1
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { ChatMessage } from '../types';
|
|
2
2
|
type __VLS_Props = {
|
|
3
3
|
messages: ChatMessage[];
|
|
4
|
+
emptyText?: string;
|
|
4
5
|
};
|
|
5
6
|
declare function __VLS_template(): {
|
|
6
7
|
attrs: Partial<{}>;
|
|
@@ -82,7 +83,7 @@ declare function __VLS_template(): {
|
|
|
82
83
|
};
|
|
83
84
|
}) | null)[];
|
|
84
85
|
};
|
|
85
|
-
rootEl:
|
|
86
|
+
rootEl: any;
|
|
86
87
|
};
|
|
87
88
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
88
89
|
declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
@@ -153,7 +154,7 @@ declare const __VLS_component: import('vue').DefineComponent<__VLS_Props, {}, {}
|
|
|
153
154
|
};
|
|
154
155
|
};
|
|
155
156
|
}) | null)[];
|
|
156
|
-
},
|
|
157
|
+
}, any>;
|
|
157
158
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
158
159
|
export default _default;
|
|
159
160
|
type __VLS_WithTemplateSlots<T, S> = T & {
|