@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
package/dist/webpack/index.d.ts
CHANGED
|
@@ -2000,6 +2000,8 @@ declare class WebWeaverEmbed extends BaseComponent {
|
|
|
2000
2000
|
processInput(inputText: string, hideInputMessage?: boolean): Promise<void>;
|
|
2001
2001
|
/** Called when the AI responds with some text */
|
|
2002
2002
|
onAIMessage(messages: TokenWindowGroupItemParams<unknown>[], isPartial: boolean): Promise<void>;
|
|
2003
|
+
/** Convert markdown to HTML (remark-gfm enables GFM tables, strikethrough, etc.) */
|
|
2004
|
+
private renderMarkdown;
|
|
2003
2005
|
/** Updates a text element */
|
|
2004
2006
|
updateTextElement(elementID: string, text: string): boolean;
|
|
2005
2007
|
/** Execute supported hidden embedded actions from assistant text. */
|