Raman Paulau
Raman Paulau
Looks like changes in this PR https://github.com/TanStack/query/pull/7390 have affected this. Also possibly related `useQuery` now fails to type check `MaybeRef` options. Repro: https://www.typescriptlang.org/play/?#code/JYWwDg9gTgLgBAbzgYwuArjApgEwDRwwCeYWcAsgIZEBGWASlgGYDyUA4ljNlATBADVKAG3RkAvnCZQ0cAOQA3MXIBQoSLERwAjmKhEWYGMAgA7AM4F05rAEU9ROJOmy5AARiULn5AGsA9EpYALS6WPqqKqjecJTIqOimMOYAXHDmMFDApgDmANoAunAAvHCFANwqWAAeGvBMicjGZrHxEInJ9uFEABTQOQCSOGkZWbkAlIgqcHBQXOhQpjoOhs0WPQjTM8vdANJYRGl5-UMEAERxCUnmZwV4WzNh+gBipmk9k8UAfHAACjIgYA2AB0c3MEGECiwPUu7Wu43uM3E40q4hUVVq0HqjTWcGsWDYOS8wAAXpQ1gBBNodcx9KCDYYUah0RisDhcHgAHlG2RyX0mmxm0QycAgRhMFhKKDQYEwuB6HxKP1hNK6+h6-CEomhJxw431lSFZhFT0cpXxat6YrW5hRWzmMAWS1NqKAA
As well hitting this behavior with `v-bind`, `componentField` and custom v-model components. I think the reason is that `vee-validate` additionally listens for native `input` event interfering with `@update:model-value` so model...
@khamaileon yes, you're correct. I think it's because `v-bind="componentField` by default attaches blur and focus events handlers. These also get in a way of model updates. So instead of `componentField`...
Just stumbled upon another problem with `v-bind="componentField"` with `reka-ui` upgrade. In v2 Reka upgraded their Listbox component to also render invisible `` element when inside ``. When modelValue of Listbox...
May be related to https://github.com/ueberdosis/tiptap/issues/677.
I'm currently looking at the possibility to migrate from `axios` to `ky` and this issue is potentially a blocker as I'm seeing issue when uploading files with progress reporting in...
Noticed something similar as well. Though it's for single click occurrences highlight. This feature is controlled via `editor.occurrencesHighlight` VS Code setting. After additional investigation: * `"editor.occurrencesHighlight": "single"` - works in...
> Noticed something similar as well. Though it's for single click occurrences highlight. > > This feature is controlled via `editor.occurrencesHighlight` VS Code setting. After additional investigation: > > *...
Sorry! Yes @cabal95 is correct and issue is still reproducible. I had "multiFile" enabled.
Template ref type inference is incompatible for components with `defineEmits` and VueUse composables
Okay, thank you @KazariEX. I'll open an issue in VueUse repo then. Up to you if you wanna keep this one open until it's fixed or close right away.