Matias Trujillo
Matias Trujillo
Hi @efoken the fragment tag (``) is already available in [[email protected]](https://github.com/atomicojs/atomico/releases/tag/1.63.0) at the jsx-runtime level, example: ```tsx {data.map(() => ( header content ))} ```
Thanks for noticing, as you mentioned, it is necessary to export as a type for typescript, I have fixed it in [email protected]
you are correct @ChrisBrownie55 , but the use of setTimeout is just an example that shows how updates are executed on the webcomponent even after having deleted it, haunted could...
@ChrisBrownie55 Encapsulate rerender in the constructor BaseScheduler and add a state eg, `this.unmount`, and execute rerender only when that state is unblocked... `teardown` you must change the state to generate...
Hi @motss , it depends on the benefits. Currently, a syntax similar to signals can be achieved based on `useHost`. ```tsx import { html, useHost } from 'atomico'; function myComponent()...
Hi @efoken , I have added support for this type of configuration in the new version of [email protected], along with new enhancements such as: - Custom types. - Support for...
I was reviewing the PR and in the tests I reviewed the update on the @atomico/astro (SSR) package, this breaks the use of astro build 🤔Now I'm looking into how...
Hi @efoken , I would appreciate it if you could revert the code blocks that reference the use of `Object.prototype.hasOwnProperty.call`.
Hi @efoken , sorry for not responding earlier. Atomico has improved the types by allowing transformations by instance if it is not covered by Atomico, but this only covers inputs...
Hi @DanavsSite, I find the functionality you mentioned interesting. I believe we should include it in the @atomico/vite package. I have an idea for a syntax like this: ```tsx import...