Felix Schorer
Felix Schorer
I think you're confusing nodes with signals. Nodes only have a version. Signals and computed signals have a version and keep a reference to the current / cached value. Signals...
>In the adapter, [the effect that binds a signal to a prop](https://github.com/preactjs/signals/blob/ccb677bdb26ef836d3fac39d30d8f6371693e60f/packages/preact/src/index.ts#L208-L242) has implicit access to its previous value by virtue of the fact that has to assign values to...
> A way to achieve this is creating another linked list of Signals (like batchedEffect) so you can iterate over them at the end of the batch and clean up...
> This is particularly bad for the Table component where the same color "colorFillAlter" is used for five different backgrounds: > > - table header (tableHeaderBg) > - table footer...
@Psvensso No, we haven't encountered that problem yet. Our use case is different. Each consumer only embeds one of our webcomponents as they are highly tailored to their use case.