pierre pracht

Results 8 comments of pierre pracht

My bad fixed by : https://github.com/less/less-plugin-autoprefix/pull/41 Why this pull request ins't apply ?

As a workaround I have change the `package.json` of the project from : ```json "dependencies": { "gridsome": "^0.7.23" } ``` To : ```json "dependencies": { "gridsome": "https://gitpkg.now.sh/gridsome/gridsome/gridsome?master" } ```

I haven't a Mac M1 to test it. I have done this on a student's Mac. It worked : make new project template... Fail at dependency install... Change "gridsome" dependency...

Well, I have "solved" it with some shameless duck typing: ```ts /** * process form data to append files * @param data form data to process * @returns FormData object...

For `Record` vs. `Response`, I intend to a strategy successfully used with SupaBase: a unique form component connected to an upsert method. And will use it for a new page...

`string | File[]` and `string[] | File[]` should be good. I managed to convert "FormKit field input" to what React people do: ```ts type FormKitS = FormKitSchemaFormKit & ( |...

@patmood thanks for the tip. But sadly, the native form element gives a [FileList](https://developer.mozilla.org/en-US/docs/Web/API/FileList) (sort of array of `File[]`. And [FormKit uses a bastardized version](https://formkit.com/inputs/file#array-value) : `{ file:File; name:string }[]`...

After reflection, You should change the type of (single) image field to `string | File` . But I don't know for multiple images ? (`string[] | File[] | (string|File)[] |...