Aura Components ui Being Deprecated – Summer ’21

Salesforce has been pushing developers to make the jump from the aura components ui namespace to lightning namespace since Winter ’20 release.

Though one can still continue to work with these components, Salesforce would not support cases created around them beyond May 1, 2021. Also, I do not see the pain in migrating to the lightning namespace.

How to do it? Follow one of the examples for migration.

ui Namespace

ui:button
<ui:button aura:id="button" buttonTitle="Submit" class="button" label="Click me" press="{!c.handleClick}"/>

lightning Namespace

lightning:button
<lightning:button variant="base" label="Base" title="Base action" onclick="{! c.handleClick }"/>

Old, but worth it!

Leave a Reply

%d bloggers like this: