File tree Expand file tree Collapse file tree 3 files changed +6
-6
lines changed
packages/ra-ui-materialui/src Expand file tree Collapse file tree 3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -39,15 +39,15 @@ export const EditGuesser = <RecordType extends RaRecord = any>(
3939 transform = { transform }
4040 disableAuthentication = { disableAuthentication }
4141 >
42- < EditViewGuesser { ...rest } />
42+ < EditGuesserView { ...rest } />
4343 </ EditBase >
4444 ) ;
4545} ;
4646
4747export interface EditGuesserProps < RecordType extends RaRecord = any >
4848 extends Omit < EditProps < RecordType > , 'children' > { }
4949
50- const EditViewGuesser = < RecordType extends RaRecord = any > (
50+ export const EditGuesserView = < RecordType extends RaRecord = any > (
5151 props : EditGuesserProps < RecordType >
5252) => {
5353 const resource = useResourceContext ( props ) ;
Original file line number Diff line number Diff line change @@ -20,11 +20,11 @@ export const ShowGuesser = ({
2020 ...rest
2121} : Omit < ShowProps , 'children' > & { enableLog ?: boolean } ) => (
2222 < ShowBase id = { id } resource = { resource } queryOptions = { queryOptions } >
23- < ShowViewGuesser { ...rest } />
23+ < ShowGuesserView { ...rest } />
2424 </ ShowBase >
2525) ;
2626
27- const ShowViewGuesser = (
27+ export const ShowGuesserView = (
2828 props : Omit < ShowProps , 'children' > & { enableLog ?: boolean }
2929) => {
3030 const resource = useResourceContext ( props ) ;
Original file line number Diff line number Diff line change @@ -77,12 +77,12 @@ export const ListGuesser = <RecordType extends RaRecord = any>(
7777 resource = { resource }
7878 sort = { sort }
7979 >
80- < ListViewGuesser { ...rest } />
80+ < ListGuesserView { ...rest } />
8181 </ ListBase >
8282 ) ;
8383} ;
8484
85- const ListViewGuesser = (
85+ export const ListGuesserView = (
8686 props : Omit < ListViewProps , 'children' > & { enableLog ?: boolean }
8787) => {
8888 const { data } = useListContext ( ) ;
You can’t perform that action at this time.
0 commit comments