Alex Liu
Alex Liu
Currently, the methods `nonNullish`, `nonNullishAsync`, `nullish`, and `nullishAsync` determine if `input` is `null` or `undefined` using the following approach: ```ts input === null || input === undefined ``` According to...
Resolve #7694 Originally, when we called `queryClient.invalidateQueries` from `@tanstack/vue-query`, it would trigger `invalidateQueries` from `@tanstack/query-core` in the next macro task. This was initially intended to fix issue #6414, but it...
### UnoCSS version 0.61.9, 0.62.2 ### Describe the bug I have been using UnoCSS in Nuxt, and I really appreciate the convenience it brings. However, I have recently encountered some...
### 🔗 Linked issue ### 📚 Description This PR introduces a few macros to provide an explicit import solution for lazy hydration. resolves https://github.com/nuxt/nuxt/issues/31663 #### TODO - [x] Macro plugin...
Resolve #7905 This PR updates the type definition of the `enabled` option in `useQuery`. The motivation can be found here: https://github.com/TanStack/query/issues/7905#issuecomment-2971140693 If there is anything I might have overlooked, please...
This PR introduces a shared `ShallowOption` type to unify the `shallow?: boolean` option and its JSDoc across various composables in `@tanstack/vue-query`. If there is anything I might have missed, please...
Enables SVG file icon display when using `[file.svg]` syntax in code blocks. ````md ```html [vue.svg] ``` ```` **Before** **After**
… element change ### Before submitting the PR, please make sure you do the following - [x] Read the [Contributing Guidelines](https://github.com/vueuse/vueuse/blob/main/CONTRIBUTING.md). - [x] Read the [Pull Request Guidelines](https://github.com/vueuse/vueuse/blob/main/packages/guidelines.md). - [x]...
## Description This PR extends the `enforces-shorthand` rule to support shorthand detection for Tailwind CSS `scroll-padding` and `scroll-margin` utilities. **Examples** ```html ``` Fixes #432 ## Type of change Please delete...
**Is your feature request related to a problem? Please describe.** The `enforces-shorthand` rule doesn’t detect shorthand opportunities for `scroll-padding` and `scroll-margin`. For example, `scroll-pl-3 scroll-pr-3` could be `scroll-px-3`, but no...