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
I'm trying to use the web standard declarative shadow dom to render my component. I'd like the slotted content not to be compiled away, but would live with compiler magic if the page would at least print. but instead, slotted content isn't rendering to the page, instead, It's printing to a triple-nested template (see below)
<inline-notificationtype="tip">
This page is a HOW-TO guide. For detailed docs on the `ApolloQuery` interface
see the [API docs](/api/core/interfaces/query/)
</inline-notification>
EXPECTED:
<inline-notificationtype="tip"><templateshadowroot="open" shadowrootmode="open"><style></style><slot></slot></template><p>This page is a HOW-TO guide. For detailed docs on the <code>ApolloQuery</code> interface see the <ahref="/api/core/interfaces/query/">API docs</a></p></inline-notification>
ACTUAL html:
<inline-notificationtype="tip"><templateshadowroot="open" shadowrootmode="open"><style></style><templateshadowroot="open" shadowrootmode="open"><style></style><templateshadowroot="open" shadowrootmode="open"><style></style><p>This page is a HOW-TO guide. For detailed docs on the <code>ApolloQuery</code> interface
see the <ahref="/api/core/interfaces/query/">API docs</a></p></template></template></template></inline-notification>
I've tried many combinations of slot, nokeep, keep, raw, template, etc, nothing seems to work.
The text was updated successfully, but these errors were encountered:
I'm trying to use the web standard declarative shadow dom to render my component. I'd like the slotted content not to be compiled away, but would live with compiler magic if the page would at least print. but instead, slotted content isn't rendering to the page, instead, It's printing to a triple-nested template (see below)
_components/inline-notification.webc
some-page.webc.md
EXPECTED:
ACTUAL html:
I've tried many combinations of slot, nokeep, keep, raw, template, etc, nothing seems to work.
The text was updated successfully, but these errors were encountered: