@applica-software-guru/react-admin 1.5.240 → 1.5.242
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/components/ra-buttons/CreateInDialogButton.d.ts.map +1 -1
- package/dist/components/ra-buttons/EditInDialogButton.d.ts.map +1 -1
- package/dist/components/ra-forms/Create.d.ts.map +1 -1
- package/dist/components/ra-forms/Edit.d.ts.map +1 -1
- package/dist/components/ra-forms/LongForm/BaseForm.d.ts.map +1 -1
- package/dist/components/ra-forms/SimpleForm.d.ts.map +1 -1
- package/dist/components/ra-forms/TabbedForm.d.ts.map +1 -1
- package/dist/react-admin.cjs.js +45 -45
- package/dist/react-admin.cjs.js.map +1 -1
- package/dist/react-admin.es.js +2301 -2319
- package/dist/react-admin.es.js.map +1 -1
- package/dist/react-admin.umd.js +48 -48
- package/dist/react-admin.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/ra-buttons/CreateInDialogButton.tsx +0 -5
- package/src/components/ra-buttons/EditInDialogButton.tsx +0 -5
- package/src/components/ra-forms/Create.tsx +0 -1
- package/src/components/ra-forms/Edit.tsx +0 -1
- package/src/components/ra-forms/LongForm/BaseForm.tsx +0 -5
- package/src/components/ra-forms/SimpleForm.tsx +0 -1
- package/src/components/ra-forms/TabbedForm.tsx +0 -1
package/package.json
CHANGED
|
@@ -156,11 +156,6 @@ function CreateInDialogButton(props: CreateInDialogButtonProps) {
|
|
|
156
156
|
maxWidth={maxWidth}
|
|
157
157
|
fullWidth={fullWidth}
|
|
158
158
|
fullScreen={fullScreen}
|
|
159
|
-
sx={{
|
|
160
|
-
'& .MuiToolbar-root': {
|
|
161
|
-
position: 'relative !important'
|
|
162
|
-
}
|
|
163
|
-
}}
|
|
164
159
|
>
|
|
165
160
|
{React.isValidElement(Child)
|
|
166
161
|
? React.cloneElement(Child, {
|
|
@@ -109,11 +109,6 @@ function EditInDialogButton(props: EditInDialogButtonProps): JSX.Element {
|
|
|
109
109
|
maxWidth={maxWidth}
|
|
110
110
|
fullScreen={fullScreen}
|
|
111
111
|
keepMounted={false}
|
|
112
|
-
sx={{
|
|
113
|
-
'& .MuiToolbar-root': {
|
|
114
|
-
position: 'relative !important'
|
|
115
|
-
}
|
|
116
|
-
}}
|
|
117
112
|
>
|
|
118
113
|
{React.isValidElement(Child)
|
|
119
114
|
? React.cloneElement(Child, {
|
|
@@ -85,7 +85,6 @@ const Create = styled(CreateWithDefaults, { slot: 'root' })(({ theme }: { theme:
|
|
|
85
85
|
backgroundColor: theme.palette.background.default
|
|
86
86
|
},
|
|
87
87
|
'& .RaToolbar-mobileToolbar': {
|
|
88
|
-
position: 'initial !important',
|
|
89
88
|
paddingLeft: `${theme.spacing(2.5)} !important`,
|
|
90
89
|
paddingRight: `${theme.spacing(2.5)} !important`,
|
|
91
90
|
paddingTop: '0 !important'
|
|
@@ -16,7 +16,6 @@ const StyledEdit = styled(RaEdit, { slot: 'root' })(({ theme }) => ({
|
|
|
16
16
|
},
|
|
17
17
|
|
|
18
18
|
'& .RaToolbar-mobileToolbar': {
|
|
19
|
-
position: 'initial !important',
|
|
20
19
|
paddingLeft: `${theme.spacing(2.5)} !important`,
|
|
21
20
|
paddingRight: `${theme.spacing(2.5)} !important`,
|
|
22
21
|
paddingTop: '0 !important'
|
|
@@ -15,22 +15,17 @@ const StyledGrid = styled(Grid, {
|
|
|
15
15
|
// This style must be applied only to root toolbars used to save data in the form.
|
|
16
16
|
// Other toolbars must be handled outside this rule.
|
|
17
17
|
'& .MuiToolbar-root.RaToolbar-desktopToolbar': {
|
|
18
|
-
position: 'initial',
|
|
19
|
-
// marginTop: theme.spacing(2.5),
|
|
20
18
|
marginLeft: `-${theme.spacing(3)}`,
|
|
21
19
|
marginRight: `-${theme.spacing(3)}`,
|
|
22
20
|
marginBottom: `-${theme.spacing(2)}`,
|
|
23
|
-
// borderTop: `1px solid ${theme.palette.divider}`,
|
|
24
21
|
paddingTop: theme.spacing(2.5),
|
|
25
22
|
paddingBottom: theme.spacing(2.5),
|
|
26
23
|
[theme.breakpoints.down('sm')]: {
|
|
27
|
-
position: 'initial !important',
|
|
28
24
|
width: 'auto !important',
|
|
29
25
|
marginRight: 0
|
|
30
26
|
}
|
|
31
27
|
},
|
|
32
28
|
'& .RaToolbar-mobileToolbar': {
|
|
33
|
-
position: 'initial !important',
|
|
34
29
|
paddingTop: `${theme.spacing(2.5)} !important`,
|
|
35
30
|
paddingLeft: '0 !important',
|
|
36
31
|
paddingRight: '0 !important',
|