@luzmo/embed
Version:
A modern [Web Component](https://developer.mozilla.org/en-US/docs/Web/Web_Components) for [Luzmo](https://luzmo.com) dashboards in your web application.
27 lines (26 loc) • 964 B
TypeScript
import { IQChatOptions } from '@luzmo/dashboard-contents-types';
import { LitElement, PropertyValues } from 'lit';
export declare class LuzmoIQEmbedChatComponent extends LitElement {
appServer?: string;
apiHost?: string;
options?: IQChatOptions;
initialSuggestionsDatasetId?: string;
aiEndpoint?: string;
authKey?: string;
authToken?: string;
version?: string;
libVersion?: string;
remoteEntryServer: string;
aydHost: string;
availableDatasets: string[];
chartElement: HTMLElement;
static styles: import("lit").CSSResult;
protected createRenderRoot(): HTMLElement | DocumentFragment;
protected firstUpdated(_changedProperties: PropertyValues): Promise<void>;
private get calculatedAppServer();
private createAndAppendElement;
private updateVizItemProperties;
updated(changedProperties: PropertyValues): Promise<void>;
protected render(): unknown;
connectedCallback(): void;
}