Alexis H. Munsayac

Results 40 issues of Alexis H. Munsayac

This adds JSX serialization capability. The change required the introduction of the `SSRNode` class which intends to replace the old `{ t: string }` so that `seroval` understands the value...

- Allows `` to be declared across components but be rendered in a single declaration, essentially "bubbling" to a single element that is by rendering `` to the `` opening...

As discussed on Discord, this issue is just to keep track of this feature. Instead of `{ t: string }` we can do `{ [SYMBOL]: string }` so that once...

`useAssets` relies on `` to inject its markup, which feels off where in some cases some users would just render from the an specific root instead of the whole document,...

## Summary Finally took the initiative. This one is the missing piece to SSR components, as it has some common use cases (e.g. rendering a component with web-only dependency). `solid-start`...

# THIS IS A BREAKING CHANGE This PR changes the behavior of Solid's error handling, mainly on the concept of "casting errors". Solid has an internal mechanism wrapping thrown values...

## Summary This is a PoC for exploring the new serialization method. This PR adds a new primitive called `createServerValue` which allows users to instanciate server-side values and load those...

Repro: https://lightningcss.dev/playground/index.html#%7B%22minify%22%3Atrue%2C%22customMedia%22%3Atrue%2C%22cssModules%22%3Afalse%2C%22analyzeDependencies%22%3Afalse%2C%22targets%22%3A%7B%22chrome%22%3A6225920%7D%2C%22include%22%3A0%2C%22exclude%22%3A0%2C%22source%22%3A%22*%20%2B%20*%20%7B%5Cn%20%20color%3A%20red%3B%5Cn%7D%22%2C%22visitorEnabled%22%3Atrue%2C%22visitor%22%3A%22%7B%5Cn%20%20Selector(node)%20%7B%5Cn%20%20%20%20return%20%5B%5Cn%20%20%20%20%20%20%7B%20type%3A%20'universal'%20%7D%2C%5Cn%20%20%20%20%20%20%7B%20type%3A%20'combinator'%2C%20value%3A%20'descendant'%20%7D%2C%5Cn%20%20%20%20%20%20%7B%20type%3A%20'combinator'%2C%20value%3A%20'next-sibling'%20%7D%2C%5Cn%20%20%20%20%20%20%7B%20type%3A%20'combinator'%2C%20value%3A%20'descendant'%20%7D%2C%5Cn%20%20%20%20%20%20%7B%20type%3A%20'universal'%20%7D%5Cn%20%20%20%20%5D%3B%5Cn%20%20%7D%5Cn%7D%22%2C%22unusedSymbols%22%3A%5B%5D%2C%22version%22%3A%22local%22%7D I'm trying to convert a sequence of tokens (from a `custom-function`) into a selector list. For example (as seen in the repro), if we have `* + *`...