feat(admin, admin-ui, medusa-js, medusa-react, medusa): Support Admin Extensions (#4761)

Co-authored-by: Rares Stefan <948623+StephixOne@users.noreply.github.com>
Co-authored-by: Oli Juhl <59018053+olivermrbl@users.noreply.github.com>
This commit is contained in:
Kasper Fabricius Kristensen
2023-08-17 14:14:45 +02:00
committed by GitHub
parent 26c78bbc03
commit f1a05f4725
189 changed files with 14570 additions and 12773 deletions

View File

@@ -51,7 +51,7 @@ const SigninInput = React.forwardRef(
return (
<div
className={clsx(
"rounded-rounded h-[40px] w-[280px] overflow-hidden border",
"rounded-rounded h-[40px] w-[300px] overflow-hidden border",
"bg-grey-5 inter-base-regular placeholder:text-grey-40",
"focus-within:shadow-input focus-within:border-violet-60",
"flex items-center",
@@ -83,6 +83,7 @@ const SigninInput = React.forwardRef(
type="button"
onClick={() => setShowPassword(!showPassword)}
className="text-grey-40 focus:text-violet-60 px-4 focus:outline-none"
tabIndex={-1}
>
{showPassword ? <EyeIcon size={16} /> : <EyeOffIcon size={16} />}
</button>