@movalib/movalib-commons 1.1.27 → 1.1.28
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/src/MovaSignUp.js +1 -1
- package/package.json +1 -1
- package/src/MovaSignUp.tsx +1 -2
package/dist/src/MovaSignUp.js
CHANGED
|
@@ -205,7 +205,7 @@ var MovaLogin = function (_a) {
|
|
|
205
205
|
display: 'flex',
|
|
206
206
|
flexDirection: 'column',
|
|
207
207
|
alignItems: 'center',
|
|
208
|
-
} }, { children: [(0, jsx_runtime_1.jsx)("img", { src: getMovaLogo(), style: { width: '
|
|
208
|
+
} }, { children: [(0, jsx_runtime_1.jsx)("img", { src: getMovaLogo(), style: { width: '60%' } }), (0, jsx_runtime_1.jsx)(material_1.Typography, __assign({ variant: "button", sx: { pt: 2 } }, { children: "Nouveau compte utilisateur" }))] })), (0, jsx_runtime_1.jsxs)(material_1.Box, __assign({ component: "form", onSubmit: handleSubmit, noValidate: true, sx: { mt: 1 } }, { children: [(0, jsx_runtime_1.jsx)(material_1.TextField, { margin: "normal", required: true, autoFocus: true, fullWidth: true, id: "firstname", label: "Pr\u00E9nom", name: "firstname", autoComplete: "given-name", onChange: function (e) { return handleInputChange(e); }, value: userForm.firstname.value, error: Boolean(userForm.firstname.error), helperText: userForm.firstname.error, sx: {
|
|
209
209
|
'& .MuiOutlinedInput-notchedOutline': {
|
|
210
210
|
borderColor: darkMode ? 'white' : 'default', // Couleur de la bordure
|
|
211
211
|
}
|
package/package.json
CHANGED
package/src/MovaSignUp.tsx
CHANGED
|
@@ -202,8 +202,7 @@ const MovaLogin: FunctionComponent<MovaSignUpProps> = ({ loading, movaAppType, o
|
|
|
202
202
|
alignItems: 'center',
|
|
203
203
|
}}
|
|
204
204
|
>
|
|
205
|
-
<img src={getMovaLogo()} style={{width:'
|
|
206
|
-
<br />
|
|
205
|
+
<img src={getMovaLogo()} style={{width:'60%'}}/>
|
|
207
206
|
<Typography variant="button" sx={{ pt: 2 }}>Nouveau compte utilisateur</Typography>
|
|
208
207
|
</Box>
|
|
209
208
|
|