For now `elementOpen` supports custom element tag names, but what if it's required to create custom element, extended from built-in? Like in this example from [MDN](https://developer.mozilla.org/en-US/docs/Web/API/Document/createElement#Web_component_example): ```js let el = document.createElement('ul', { is: 'expanding-list' }) ``` That seems to be not implemented: https://github.com/google/incremental-dom/blob/9a78593b62a6000a2942c36f92025d7af81bb8aa/src/nodes.ts#L70 Is there any possible workaround or solution to that? Tricks in `notifications.nodesAdded`? Any hope that will ever get added?
For now
elementOpensupports custom element tag names, but what if it's required to create custom element, extended from built-in?Like in this example from MDN:
That seems to be not implemented:
incremental-dom/src/nodes.ts
Line 70 in 9a78593
Is there any possible workaround or solution to that? Tricks in
notifications.nodesAdded?Any hope that will ever get added?