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
{{ message }}
This repository was archived by the owner on Mar 8, 2019. It is now read-only.
As mentioned in #99, I'd like to add JSX slot support. Would you be all right with the following syntax:
{/** @slot Use this slot header */}
<slot name="header"></slot>
or alternatively
{/**
@slot Use this slot header
*/}
<slot name="header"></slot>
Also, would you want me to add this in script-handlers/slotHandler.ts, or split that file into a jsSlotHandler.ts and jsxSlotHandler.ts? Cause the jsx checks might get a bit larger since they could occur anywhere in the component. In fact, we might even have to check called functions, dependencies and mixins.