stefanprobst

Results 47 comments of stefanprobst

this is crashing [here](https://github.com/final-form/final-form/blob/444adcd37ebdd691bc6b20035f47f352ba281fcd/src/FinalForm.js#L507) in `notifyFieldListeners`. @erikras could you comment on if it is enough to just check `if (!field) return` there (it does seem to fix this issue for...

> ``` > // Timestamps for directories > this.compiler.contextTimestamps; > ``` for directories, I am seeing empty objects in `compiler.contextTimestamps` - is that expected? > ``` > // Removed files...

it is not possible to pass `vfile.data` from a unified pipeline with `@mdx-js/esbuild` (see https://github.com/mdx-js/mdx/discussions/2055). however, you could use `estree-util-value-to-estree` to create a named export for the data (see e.g....

Should `addTypeDefs` return the created types (like `parseTypesFromString` does)?

These changes totally make sense for v7.0! I was just asking because the change in `getFieldTC` surfaced a bug on my side, but no problem to work around. That said,...

Sorry for the delay, I will work on it this weekend!

fixed by https://github.com/TanStack/query/pull/4934

thanks for pointing to that section in the docs! however, the wording is a bit ambiguous and it's still not 100% clear to me whether i *must* provide an `#empty`...

interestingly, `theme()`, `"theme()"` and `@apply` will all generate different values: see https://play.tailwindcss.com/fX0CEoXvGu ```ts addUtilities({ '.test': { color: theme('colors.primary.DEFAULT'), background: 'theme("colors.primary.DEFAULT")', '@apply border-primary': '', }, }) ``` will generate: ```css .test...