@applica-software-guru/react-admin 1.3.162 → 1.3.163

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@applica-software-guru/react-admin",
3
- "version": "1.3.162",
3
+ "version": "1.3.163",
4
4
  "private": false,
5
5
  "repository": {
6
6
  "type": "git",
@@ -242,7 +242,7 @@ const AddTableRow = (props: any) => {
242
242
  const iconColor = theme.palette.mode === 'light' ? '#000000' : '#FFFFFF';
243
243
 
244
244
  return (
245
- <Stack justifyContent={'space-between'} alignItems={'center'} flexDirection={'row'}>
245
+ <Stack justifyContent={'space-between'} alignItems={'center'} flexDirection={'row'} sx={{ mt: 0.5 }}>
246
246
  {label !== false && <Typography>{label}</Typography>}
247
247
  {!disableAdd &&
248
248
  (React.isValidElement(props?.addButton) ? (
@@ -68,7 +68,8 @@ const LabeledArrayInput = ({
68
68
  sx={{
69
69
  borderBottom: divider ? `1px solid ${theme.palette.divider}` : 'none',
70
70
  pb: divider ? 1 : 0,
71
- mt: divider ? 1 : 0
71
+ mt: divider ? 1 : 0,
72
+ pt: 1
72
73
  }}
73
74
  >
74
75
  <FieldTitle label={label} source={source} resource={dialogResource || resource} isRequired={isRequired} />
@@ -57,6 +57,7 @@ const LabeledInput = ({ label, children, display, helperText, sx, addLabel, divi
57
57
  sx={{
58
58
  // @ts-ignore
59
59
  borderBottom: divider ? `1px solid ${theme.palette.divider}` : 'none',
60
+ pt: 0.5,
60
61
  pb: divider ? 1 : 0,
61
62
  mt: divider ? 1 : 0
62
63
  }}