@intelliweave/embedded 2.2.85 → 2.2.86
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/component/component.d.ts +2 -0
- package/dist/component/component.js +82 -71
- package/dist/intelliweave-wordpress.zip +0 -0
- package/dist/node/node.d.ts +2 -0
- package/dist/node/node.js +1 -1
- package/dist/react/react.js +30 -19
- package/dist/script-tag/script-tag.js +82 -71
- package/dist/webpack/index.d.ts +2 -0
- package/dist/webpack/index.js +29 -18
- package/package.json +1 -1
|
@@ -1500,6 +1500,8 @@ declare class WebWeaverEmbed extends BaseComponent {
|
|
|
1500
1500
|
processInput(inputText: string, hideInputMessage?: boolean): Promise<void>;
|
|
1501
1501
|
/** Called when the AI responds with some text */
|
|
1502
1502
|
onAIMessage(messages: TokenWindowGroupItemParams<unknown>[], isPartial: boolean): Promise<void>;
|
|
1503
|
+
/** Convert markdown to HTML (remark-gfm enables GFM tables, strikethrough, etc.) */
|
|
1504
|
+
private renderMarkdown;
|
|
1503
1505
|
/** Updates a text element */
|
|
1504
1506
|
updateTextElement(elementID: string, text: string): boolean;
|
|
1505
1507
|
/** Execute supported hidden embedded actions from assistant text. */
|