Evert van Brussel

Results 67 issues of Evert van Brussel

I tried this: ``` Worker.run(async (batchPatch) => { const { useBatchesApi } = await import("@/hooks/useBatches") const { update } = useBatchesApi() return update(batchPatch) }, [batchPatch]) .then(console.log) .catch(console.error) ``` But then...

The title really says it all. When you put ORM-mapping information AND validation rules in the entity using annotations the entity file can become rather big and more difficult to...

enhancement

Right now if I have this `schema.yml` ```yaml types: Thing: properties: name: ~ Person: properties: familyName: ~ Country: parent: false embeddable: true properties: address: { range: "Text" } PostalAddress: parent:...

If my `schema.yml` says this: ```yaml Product: parent: false properties: name: { nullable: false } ``` Then I would love it if my generated `Product.php` then contains a constructor function...

enhancement

I guess it should be possible to map every Schema.org property to a reasonable faker-data-point. This would just be so nice to have. To be able to just write a...

Here's the docs for it: https://windicss.netlify.app/guide/svelte.html#sveltekit

make a new adder

I mean, I can do it myself, but I thought vue-query was made to do it for me. It works with the normal `useQuery()`. So I'm talking about the `enabled`...

### Clear and concise description of the problem I tried to turn my object hasher function into a web worker function, like so: ```ts import { useWebWorkerFn } from '@vueuse/core'...

enhancement

### Clear and concise description of the problem `useWebWorkerFn` provides an option called `dependencies` in which you can give an array of strings that are paths to javascript files that...

enhancement

### Describe the bug Currently I'm on @vueuse/core version 8.9.4. I've been so frustrated that I didn't see my UI update when it was supposed to. So I've been debugging...