salesforce / lwc

⚡️ LWC - A Blazing Fast, Enterprise-Grade Web Components Foundation
https://lwc.dev
Other
1.6k stars 386 forks source link

feat: add `data-lwc-host-mutated` during SSR #4358

Open nolanlawson opened 5 days ago

nolanlawson commented 5 days ago

Details

Detects when an SSR'd component mutates its own host element (e.g. adding/removing classes/attributes) during its connectedCallback, adding a data-lwc-host-mutated attribute. This attribute is read during hydration time, and validation for the element's classes/attrs is skipped entirely, the same as if the component had explicitly set static validationOptOut = true.

The goal is to make it easier for component authors to ignore small hydration errors caused by mutating their hosts during connectedCallback.

Does this pull request introduce a breaking change?

Does this pull request introduce an observable change?

Kinda? But this is for SSR, which is not officially supported yet, and this removes restrictions rather than adding them.

GUS work item