ESM
import "@arcgis/ai-components/components/arcgis-assistant-message-footer";- Inheritance
- ArcgisAssistantMessageFooter→
HTMLElement
Renders the action row under an assistant message. Use it when you want feedback, log, copy, or read-aloud controls. Offers one footer surface that composes common assistant response actions.
Properties
| Property | Attribute | Type |
|---|---|---|
| copy-enabled | ||
| feedback-enabled | ||
| log-enabled | ||
| | ||
| read-aloud-enabled |
message
Property
- Type
- AssistantMessage | undefined
Methods
| Method | Signature |
|---|---|
| inherited | componentOnReady(): Promise<this> |
componentOnReady
inherited Method
- Signature
-
componentOnReady (): Promise<this>
Inherited from: this
Creates a promise that resolves once the component is fully loaded.
- Returns
- Promise<this>
- Example
- const arcgisAssistantMessageFooter = document.createElement("arcgis-assistant-message-footer");document.body.append(arcgisAssistantMessageFooter);await arcgisAssistantMessageFooter.componentOnReady();console.log("arcgis-assistant-message-footer is ready to go!");