0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-01-27 22:19:04 -05:00
astro/packages/integrations/lit/client-shim.js

17 lines
428 B
JavaScript
Raw Normal View History

async function polyfill() {
2022-04-02 14:15:41 -06:00
const { hydrateShadowRoots } = await import(
'@webcomponents/template-shadowroot/template-shadowroot.js'
);
2022-05-31 15:41:24 +00:00
window.addEventListener('DOMContentLoaded', () => hydrateShadowRoots(document.body), {
once: true,
});
}
2024-05-29 20:01:22 +00:00
const polyfillCheckEl = Document.parseHTMLUnsafe(
`<p><template shadowrootmode="open"></template></p>`
).querySelector('p');
if (!polyfillCheckEl?.shadowRoot) {
polyfill();
}