UI Embedding was first released as a Developer Preview. The generally available version changes the host element, how you pass the app URL, and how the host communicates with the embedded app. If you built an embedding against the Developer Preview, use this guide to move to the generally available component.
The Developer Preview and generally available APIs aren’t compatible. An app built for one doesn’t run under the other without the changes described here.
Important
What Changed
Area
Developer Preview
Generally Available
Host element
<lwc-shell>
<lightning-ui-embedding>
App URL
Set through the shell’s configuration
src attribute (required, read once at mount)
Host-to-app communication
Imperative bridge object
DOM events on the host element and the sf-embedding protocol channel
Lifecycle signals
bridge callbacks
sf-embedding.component.ready and sf-embedding.component.error DOM events
Update the Host Element
Replace the Developer Preview host element with lightning-ui-embedding, and move the app URL to the src attribute.
The src attribute is required and binds the session to a specific app. Salesforce reads it once when the component mounts. Don’t change src, sandbox, or removeSandboxTokens after the component renders. The host rejects a mid-session change with a SESSION_BINDING_MUTATED error.
Replace the Imperative Bridge with DOM Events
The Developer Preview exposed an imperative bridge object for communication. The generally available version uses DOM events on the host element for lifecycle signals.
Listen for these events on lightning-ui-embedding:
sf-embedding.component.ready fires when the embedded app finishes the handshake and is ready.
sf-embedding.component.error fires when embedding fails. The event detail includes the phase (configuration or bootstrap), a code, a message, and a retryable flag. See UI Embedding Error Codes.
These event names contain dots, so you can’t bind them declaratively with on* attributes in the template. Add lwc:ref to the embedding element and attach the listeners imperatively in renderedCallback.
1// myEmbeddedApp.js2import{LightningElement}from "lwc";34export default class MyEmbeddedApp extends LightningElement{5 appUrl = "https://app.example.com";6 hasWiredEvents = false;78 renderedCallback(){9 if(this.hasWiredEvents){10 return;11}12 this.hasWiredEvents = true;1314 const el = this.refs.embedding;15 el.addEventListener("sf-embedding.component.ready", this.handleReady);16 el.addEventListener("sf-embedding.component.error", this.handleError);17}1819 handleReady = ()=>{20 // The embedded app is ready.21};2223 handleError = (event)=>{24 const{code, message} = event.detail;25 // Handle the failure.26};27}
Update Data Exchange, Styling, and Resizing
In the generally available version, the page and the embedded app exchange state through the embedding’s typed channel rather than the Developer Preview bridge. Review these tasks for the current approach: