react-admin
                                
                                
                                
                                    react-admin copied to clipboard
                            
                            
                            
                        A frontend Framework for building data-driven applications running on top of REST/GraphQL APIs, using TypeScript, React and Material Design
**What you were expecting:** I have a form with the mode and reValidateMode set to onBlur, when I submit the form the input validation should still fire onBlur. **What happened...
**What you were expecting:** Vertical scrolling in right sidebar when there are many list items and the height of the viewport is not enough to place all of them. **What...
Only the filter variable is required by the graphql server, to calculate the total count. Additional variables add no value, however if left out of the schema, an error is...
In the graphql provider, we have to define a query to fetch the total count of entity for a given resource. Previously, the name of this query was hardcoded. This...
With code like this: ``` const PostCreate = () => { return ( { console.log(r); return r; }} > {({ formData }) => { if (formData.hi) return null; return ;...
**Is your feature request related to a problem? Please describe.** I have the following component ``` function PostFinderInput() { const username = useWatch({ name: "username" }); const email = useWatch({...
./layout/Menu.tsx:38:8 Type error: Type '{ to: string; primaryText: string; leftIcon: Element; dense: boolean; }' is missing the following properties from type 'Pick': title, alignItems, color, translate, and 284 more. I...
**What you were expecting:** In https://mui.com/material-ui/react-autocomplete/ AutocompleteInput have both comboBox mode and freeSolo mode For freeSolo mode user should be able to type in the input box without the need...
I noticed that when you use multiple Filters using the same resource (or a sub-property) and one uses a `ReferenceArrayInput`, it might receive its value from another filter. When this...
When using graphql, we rely on `__typename` for identifying the correct types in a `union` type. imagine i have the following interface ``` interface Animal { id: ID! } type...