@telia-ace/widget-conversation-flamingo 1.1.70-rc.0 → 1.1.70-rc.10
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/conversation.d.ts +5 -1
- package/index.js +143 -93
- package/index.mjs +3859 -2348
- package/message-types/message-type-markdown.d.ts +12 -0
- package/package.json +4 -3
@@ -7,6 +7,18 @@ export declare class MessageTypeMarkdown extends LitElement {
|
|
7
7
|
showLightbox: boolean;
|
8
8
|
imageUrl: string;
|
9
9
|
altText: string;
|
10
|
+
private scrollRef;
|
11
|
+
private contentRef;
|
12
|
+
private autoScroll;
|
13
|
+
private buffer;
|
14
|
+
private pointer;
|
15
|
+
private imageRegexp;
|
16
|
+
private handleAutoscroll;
|
17
|
+
private handleLightboxClose;
|
18
|
+
private handleLightboxOpen;
|
19
|
+
private includesImage;
|
20
|
+
private getLastChunk;
|
10
21
|
firstUpdated(): Promise<void>;
|
22
|
+
updated(): void;
|
11
23
|
render(): import("lit-html").TemplateResult<1>;
|
12
24
|
}
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@telia-ace/widget-conversation-flamingo",
|
3
|
-
"version": "1.1.70-rc.
|
3
|
+
"version": "1.1.70-rc.10",
|
4
4
|
"publishConfig": {
|
5
5
|
"registry": "https://registry.npmjs.org"
|
6
6
|
},
|
@@ -9,9 +9,10 @@
|
|
9
9
|
"@lit-labs/motion": "^1.0.4",
|
10
10
|
"@teliads/icons": "^8.4.0",
|
11
11
|
"@teliads/components": "^22.1.1",
|
12
|
-
"@telia-ace/widget-core-flamingo": "1.1.70-rc.
|
12
|
+
"@telia-ace/widget-core-flamingo": "1.1.70-rc.10",
|
13
13
|
"lit-html": "^3.0.2",
|
14
|
-
"rxjs": "^7.8.1"
|
14
|
+
"rxjs": "^7.8.1",
|
15
|
+
"marked": "^12.0.2"
|
15
16
|
},
|
16
17
|
"main": "./index.js",
|
17
18
|
"module": "./index.mjs",
|