refine
                                
                                 refine copied to clipboard
                                
                                    refine copied to clipboard
                            
                            
                            
                        A React Framework for building internal tools, admin panels, dashboards & B2B apps with unmatched flexibility.
Updated Refine context and `` component props to make `dataProvider` prop optional. By default if there are no data providers are set and a data hook is invoked, it will...
Refine essentials / unit 0 for the new tutorial. includes a brief intro to Refine's data hooks, form handling and tables. ### Self Check before Merge Please check all items...
Updated the `` component from `@refinedev/core` to warn if it's used outside of the `` component. This gives `` a bit more purpose and lets it check if the Refine...
### Test plan (required) ### Closing issues closes #5551 ### Self Check before Merge Please check all items below before review. - [x] Corresponding issues are created/updated or not needed...
Currently, Refine's [supabase data provider](https://github.com/refinedev/refine/tree/master/packages/supabase) can only use the schema given globally by the supabase client. Therefore data hooks cannot pull data from different schema. To solve this problem, data...
feat: add queryOptions configuration to useCan and CanAccess Add ability to configure useCan's queryOptions globally and through CanAccess component props. **Test plan:** Added the specs. **Closing issues:** Closes #5472 **Self...
Updated index exports to provide appropriate types for the exported elements. ### Test plan (required) Current tests will also test for these changes. ### Closing issues Resolves #5548 ### Self...
Updated type exports in `package.json` and included them in the `exports` field. ### Test plan (required) Current tests will test this PR accordingly. ### Closing issues Resolves #5528 ### Self...
feat: `"nnull"` operator added for filters. #4805 From now on, data hooks can use `"nnull"` operator to filter null values. ```ts import { useTable } from "@refinedev/core"; useTable({ filters: {...
### Describe the bug When importing elements from `@refinedev/nextjs-router` without any subpaths, it fallbacks to the `/pages` but the appropriate types are not available and all the imports are throwing...