Thomas Cazade

Results 51 comments of Thomas Cazade

JSHint returned a point that did not exist in the document being edited. Rule: `W032` Requested start point: 174:13 Debug information: ``` Atom version: 1.18.0 linter-jshint version: v3.1.4 JSHint version:...

Same thing for me, but instead I'm running the latest version with `node headless`.

Sorry to resurrect this old issue but, @tobiaslins could you please explain a bit more about this? I was wondering if it was now possible to rewrite/redirect Vercel Analytics endpoints,...

Any update on this? Others seems to have fixed this issue such as [supabase](https://github.com/supabase/supabase-js/issues/612).

The target element of the Teleport must exist at the time the Teleport is mounted. However, with Vue 3.5 the defer option has been added to mount the Teleport after...

Removed the `` with `teleport` prop until I can find a better API/implementation: https://github.com/TotomInc/vue3-select-component/commit/65e07b9ecbd89f59f45cc2bacb77e46be01d15da The issue with SSR is fixed on v0.9.1

Re-opened since I've reverted the commit as it caused too much pain. The Teleport option is back on v0.10.0 Need to find a better fix for SSR instead of removing...

Documentation updated in v0.11.0, added `` component from VitePress to handle SSR issues.

We had success by editing our `.npmrc` inside our projects like this: ```shell # With pnpm v7: @my-custom-scope:registry=https://gitlab.my-enterprise.com/api/v4/packages/npm/ # With pnpm v8+: @my-custom-scope:registry=https://gitlab.my-enterprise.com/api/v4/ ``` You can notice the segment `packages/npm/`...

That's a nice catch @rudokemper, you're right [the `#value` slot isn't used when `:is-multi="true"`](https://github.com/TotomInc/vue3-select-component/blob/master/src/Select.vue#L395-L403). I believe we can introduce a new slot called `#tag`. This new slot [should replace these...