Ryohei Ikegami
Ryohei Ikegami
## Description Expose attributes and events of inner elements (For forms etc) ### Example (React) ```jsx ``` https://codesandbox.io/s/sweet-sound-8goyrf?file=/src/App.tsx ([React 19 will support decrative syntax for subscribing custom element events](https://github.com/facebook/react/issues/11347#issuecomment-1122275286))
## Description Make use of `custom-elements.json`, which is defined in [custom-elements-manifest](https://github.com/webcomponents/custom-elements-manifest) * Emit custom-elements.json * Generate metadata from custom-elements.json of external component libraries
## Description Import .macaron files directly without setting up Vite Simliar to [@babel/standalone](https://babeljs.io/docs/en/babel-standalone) ### How to use * Add `index.html` * Add the following: ```html ``` * Launch a server...
## Description [Tailwind Preflight](https://tailwindcss.com/docs/preflight#border-styles-are-reset-globally) overrides border values of Macaron components
## Description Import other files' components and CSS variables ```html ``` ## Motivation * Split a large file to smaller ones * Reuse common CSS variables (color palettes etc) across...
## Description Add ability to import Web Components from Vite devserver ## Motivation * Import Web Components created in the same project * This would be convenient especially if you...