@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/dist/components/ra-inputs/LabeledArrayInput.d.ts.map +1 -1
- package/dist/components/ra-inputs/LabeledInput.d.ts.map +1 -1
- package/dist/react-admin.cjs.js +1 -1
- package/dist/react-admin.cjs.js.map +1 -1
- package/dist/react-admin.es.js +4 -2
- package/dist/react-admin.es.js.map +1 -1
- package/dist/react-admin.umd.js +1 -1
- package/dist/react-admin.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/components/ra-forms/TableForm/TableFormIterator.tsx +1 -1
- package/src/components/ra-inputs/LabeledArrayInput.tsx +2 -1
- package/src/components/ra-inputs/LabeledInput.tsx +1 -0
package/package.json
CHANGED
|
@@ -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} />
|