@telia-ace/widget-conversation-flamingo 1.1.34-rc.0 → 1.1.34-rc.1
Sign up to get free protection for your applications and to get access to all the features.
- package/controllers/toast-controller.d.ts +10 -0
- package/{conversation-d74b7570.mjs → conversation-16392b4c.mjs} +948 -831
- package/conversation-3d26c066.js +768 -0
- package/conversation.d.ts +5 -0
- package/entry.d.ts +4 -1
- package/{index-0b4bc287.mjs → index-127a80a4.mjs} +2 -2
- package/index-fe488435.js +1 -0
- package/index.d.ts +1 -0
- package/index.js +3 -1
- package/index.mjs +1303 -8
- package/models/conversation-entry.d.ts +4 -1
- package/models/conversation-provider.d.ts +5 -0
- package/models/conversation-session-state.d.ts +1 -0
- package/models/system.d.ts +8 -0
- package/package.json +2 -2
- package/types.d.ts +4 -0
- package/conversation-2b47ebf9.js +0 -706
- package/index-1f92dd69.js +0 -3
- package/index-351f4e11.mjs +0 -1245
- package/index-ae71f17a.js +0 -1
@@ -0,0 +1,10 @@
|
|
1
|
+
import { ReactiveController, ReactiveControllerHost } from 'lit';
|
2
|
+
export declare class ToastController implements ReactiveController {
|
3
|
+
private _host;
|
4
|
+
private _message;
|
5
|
+
constructor(host: ReactiveControllerHost);
|
6
|
+
hostConnected(): void;
|
7
|
+
set message(value: string | null);
|
8
|
+
get message(): string | null;
|
9
|
+
hasMessage(): boolean;
|
10
|
+
}
|