Hi esteemed idom authors,
We are using a UI framework which, when upgrading components to a decorated state, adds an attribute to the element being upgraded.
Sometimes, when we render over these upgraded components with idom, the upgraded components get trampled, presumably because the attribute signaling its upgrade is removed, having been added after idom’s initial render.
So, my question: is there a mechanism to skip certain named attributes in the DOM, if they are found during idom render, but aren’t present in the template?
We are driving idom from Soy, so, for us, some JSAPI change or addition might solve this (I.e. a config object passed to ‘IncrementalDOM.patch’).
We can’t use the skip calls, for instance, because those would have to be generated by Soy.
Thank you in advance for your time and help