Lauri
Lauri
I think it's the most obvious and easiest way for you to increase the market size and appeal for the data-grid package. And I think there's some easy wins to...
Wasn't quite as easy, still getting @mui/material inherited from various angles. E.g. calling createColumns (see below link) somehow inherits a bunch of @mui/material: https://github.com/mui/mui-x/blob/ced19b256c4c3322fe00954c17869634a1eca11a/packages/grid/x-data-grid/src/hooks/features/columns/gridColumnsUtils.ts#L288C19-L288C19 Either I'm not following how it...
Does this prevent `processRowUpdate` from being called as well? If so, it'll break a lot of things in our custom validator implementation that shows validation errors also in viewing mode,...
You are correct. We are using `preProcessEditCellProps`, but have sidestepped using the `error` prop and replaced it with custom props like `errorMessage` to make sure `processRowUpdate` gets called regardless of...
I have found an alternative solution to this that addresses both trpc and vanilla react query use cases: https://github.com/TanStack/query/discussions/3743#discussioncomment-8421707 I disagree that this approach is "relying on unpredictable globals that...
Amazing, thanks a lot @romgrk. Definitely visibly better. There's still somewhat of a performance gap with Safari (vs. Chrome) though, but at least it doesn't look like our client-rendered pages...
Also works fine with the `experimental_createPersister`.
Here's a reproduction: https://codesandbox.io/p/devbox/musing-williamson-vgj34y?file=%2Fsrc%2FApp.jsx%3A90%2C29 Works on the first load, but not on the second. Doesn't display any queries. In my actual case after a few reloads the devtools crash. Moving...
Seems like getStatusColor is called with an undefined query. Fwiw, just adding a check for whether query is defined is a quick fix for the problem. The root of problem...
Seems like DevTools causes the `defaultOptions.queries.queryKeyHashFn` to be called against a cached query (which is the *wrong* `queryKeyHashFn` for this particular query, as it's overriden in the useQuery options). This...