Jacob
Jacob
> lineHeight isn't updated in the inspector until it's read. Wait, why would it be updated? The value is only applied to CSS when the lineHeight is NOT default. In...
I don't really understand how moving `null` out of `Length` prevents things like #257 The issue is caused by a lacking implementation of tweening for `CanvasStyle` and is not inherently...
We can consider changing the type of `gap` to something else (in a different issue of course) because in this case there's no difference between the `normal` and `0` CSS...
I'm taking a fresh look at this and something that I don't understand is how to make these signals inherit their values again. Say I do something like this: ```tsx...
I really like the idea of a `DEFAULT` constant, but I think we need to simplify some things. Right now we have two duplicated concepts. There's `null` for sizes and...
> The problem with this is that calling signal.reset() won't reset the signal... I'd say it's arguable, `reset` resets the value to the one provided when the signal was created...
Storing your own constant: ```ts const text = createRef(); const fontSize = 64; view.add( ) yield* text().fontSize(fontSize, 1); ``` has the same complexity as deferring putting the value: ```ts const...
I think it should stay. But if you're using the `initial` property on the `SignalContext`, it should probably be called `isInitial` and not `isDefault`
docs use `start` because [in docusaurus `serve` means something different](https://docusaurus.io/docs/cli#docusaurus-serve-sitedir) - serving a preview build of the website. Compiled packages, such as `core`, `2d`, and `vite-plugin` use `watch` because they...
Closed by #748