kwangure

Results 26 comments of kwangure

We use comments to generate CSS Docs for custom properties. It helps keep implementation and documentation in sync.

This might also be a good opportunity to include an API for preprocessors to contribute to the warnings and errors similar to those output by [svelte.compile](https://svelte.dev/docs#compile-time-svelte-compile). This allows tooling (e.g....

I propose one `` tag, but you can get multiple references. Preprocessors by definition run before the compiler and can modify markup as needed. ```svelte ```

Binding to DOM elements needs attributes to be unique because `setAttribute`/`getAttribute` would overwrite each other. So far `$feature` APIs in Svelte have largely been readonly which means they're not bound...

The comma is already an operator in JavaScript. Comma separated values returns the last value in a list. ```js let foo = ("bar", "baz"); console.log(foo); // baz ``` Tangentially, a...

There should also be a way to retry ALL failed tests without needing special syntax like `test.flaky(....)`, similar to [@playwright/test retries](https://playwright.dev/docs/test-retries). This is especially convenient when you have several flaky...

Another features of Playwright I've missed in Vitest is the ability to distinguish initial runs from retries. Like in the [@playwright/test retries](https://playwright.dev/docs/test-retries#retries) docs demo, it allows clearing cache on the...

I don't recall where I previously saw this issue and a potential solution discussed. What if we had a `:local` selector? This selector tells Svelte, "I know you don't see...

When I [checked csstree](https://astexplorer.net/#/gist/3eaefd02f9aaa8a62e4c92fa0841cedb/fc3a2cd399bfe212338f0fe4c016370fe3796ae9) it seemed to already be supported. I think Svelte just needs to updated now.

Quasar is built on top of VueJS. Similarly there exists libraries built on top of Svelte. Styled components are outside the scope of Svelte itself. To get started, search the...