You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Polymer 1.x users could add a disable-upgrade attribute to elements to defer upgrade work until the attribute was removed. This feature is not possible in Polymer 2 due to removal of bespoke API (e.g. users implement connectedCallback rather than attached); however, we should be able to add a mixin that users can opt-in to using.
The text was updated successfully, but these errors were encountered:
Fixes#4909. Elements using this mixin will not "enable" themselves when they have a `disable-upgrade` attribute. This mirrors a feature of Polymer 1.x but is now opt-in.
Current status: PR #4994 is up which adds an optional mixin for deferring all connectedCallback work. Per IRL review, last step is to add Legacy support for deferring user created callback work (not possible with non-Legacy constructor work).
In Polymer 1.x users could add a
disable-upgrade
attribute to elements to defer upgrade work until the attribute was removed. This feature is not possible in Polymer 2 due to removal of bespoke API (e.g. users implementconnectedCallback
rather thanattached
); however, we should be able to add a mixin that users can opt-in to using.The text was updated successfully, but these errors were encountered: