2021-07-13 07:27:40 -05:00
|
|
|
async function polyfill() {
|
2022-04-02 15:15:41 -05:00
|
|
|
const { hydrateShadowRoots } = await import(
|
|
|
|
'@webcomponents/template-shadowroot/template-shadowroot.js'
|
|
|
|
);
|
2021-12-22 16:11:05 -05:00
|
|
|
hydrateShadowRoots(document.body);
|
2021-07-13 07:27:40 -05:00
|
|
|
}
|
|
|
|
|
2022-04-02 15:15:41 -05:00
|
|
|
const polyfillCheckEl = new DOMParser()
|
|
|
|
.parseFromString(`<p><template shadowroot="open"></template></p>`, 'text/html', {
|
|
|
|
includeShadowRoots: true,
|
|
|
|
})
|
|
|
|
.querySelector('p');
|
2021-07-19 20:23:39 -05:00
|
|
|
|
|
|
|
if (!polyfillCheckEl || !polyfillCheckEl.shadowRoot) {
|
2021-12-22 16:11:05 -05:00
|
|
|
polyfill();
|
2021-07-19 20:23:39 -05:00
|
|
|
}
|