LWC Quick Actions:
We can now use Lightning Web Components as Quick Actions! While you can currently do this with Aura Components, this new implementation brings some great new features! First off, there are TWO different types of LWC Quick Actions
- Screen Actions and
- Headless Actions.
Referece Link : Click Here
Aura Components in the ui Namespace Are Deprecated
- Salesforce is ending support for Aura components in the ui namespace on May 1, 2021
- Migrate to Lightning Web Components (LWC) whenever possibl
- Replace the deprecated components with their counterparts in the lightning namespace.
- These components are faster, more efficient, and they implement Lightning Design System styling out-of-the-box.
Example:
ui:actionMenuItem
Use lightning:menuItem with lightning:buttonMenu instead.
When migrating to Lightning Web Components, use lightning-menu-item with lightning-button-menu.
ui:inputText
Use lightning:input with text type instead.
When migrating to Lightning Web Components, use lightning-input with text type.
Referece Link : Click Here
No comments:
Post a Comment