@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/package.json CHANGED
@@ -115,5 +115,5 @@
115
115
  "type": "module",
116
116
  "types": "dist/index.d.ts",
117
117
  "typings": "dist/index.d.ts",
118
- "version": "1.5.240"
118
+ "version": "1.5.242"
119
119
  }
@@ -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',
@@ -49,7 +49,6 @@ function SimpleForm({
49
49
  sx={{
50
50
  ...sx,
51
51
  '& .MuiToolbar-root': {
52
- position: 'initial',
53
52
  paddingLeft: theme.spacing(2.5),
54
53
  paddingRight: theme.spacing(2.5),
55
54
  paddingBottom: theme.spacing(2.5),
@@ -73,7 +73,6 @@ function TabbedForm(props: TabbedFormProps): JSX.Element {
73
73
  mr: 2.5
74
74
  },
75
75
  '& .MuiToolbar-root.RaToolbar-desktopToolbar': {
76
- position: 'initial',
77
76
  paddingTop: modal ? theme.spacing(2.5) : 0
78
77
  },
79
78
  '& .MuiToolbar-root': {