@telia-ace/widget-conversation-flamingo 1.1.14 → 1.1.15-rc.1
Sign up to get free protection for your applications and to get access to all the features.
- package/{conversation-863ede7a.mjs → conversation-3926f29b.mjs} +462 -440
- package/{conversation-c7b20faa.js → conversation-9bbc787d.js} +91 -93
- package/conversation-session.d.ts +2 -1
- package/conversation.d.ts +2 -2
- package/{index-94b25fbe.mjs → index-306e28c8.mjs} +2 -2
- package/index-41339d4e.mjs +1218 -0
- package/index-70996338.js +3 -0
- package/{index-b8394e84.js → index-d5d01cbe.js} +1 -1
- package/index.js +1 -1
- package/index.mjs +1 -1
- package/models/conversation-provider.d.ts +3 -0
- package/models/conversation-session-state.d.ts +3 -2
- package/package.json +2 -2
- package/typing.d.ts +5 -0
- package/index-7ce12d5a.mjs +0 -773
- package/index-cec07deb.js +0 -3
package/conversation.d.ts
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
import { LitElement
|
1
|
+
import { LitElement } from 'lit';
|
2
2
|
import { Ref } from 'lit-html/directives/ref.js';
|
3
3
|
import { ConversationPlatform } from './conversation-platform';
|
4
4
|
import { ConversationSessionState } from './models/conversation-session-state';
|
@@ -17,7 +17,7 @@ export declare class Conversation extends WidgetElement {
|
|
17
17
|
session: ConversationSessionState | null;
|
18
18
|
conversationContentRef: Ref<HTMLDivElement>;
|
19
19
|
chatScrollHeight: number;
|
20
|
-
|
20
|
+
private onSessionUpdated;
|
21
21
|
render(): import("lit-html").TemplateResult<1>;
|
22
22
|
}
|
23
23
|
export default Conversation;
|