Checklist(Check off all the items before submitting)
[x] Build process is done without errors. All tests pass in the /lib directory.
[x] Self-reviewed the code before submitting.
[x] Meets accessibility standards.
[x] Added/updated documentation to /website as needed.
[x] Added/updated tests as needed.
Purpose
Update website to match our peerDependencies.
Description
Updating next to 14.0.3 an react to 18.2.0.
The components affected with the version change are the Next Image and Next Link components:
The link was changed to avoid the need of an anchor inside, but that breaks with implementations that were already using an anchor so the prop legacyBehaviour was added to fix it.
The image component changed the type of its width and height props to numbers. The image styling was also changed so some styles were added to fix that.
next export is no longer available instead, it is added to the config file.
Also next 14 minimun node version required is 18.
Checklist (Check off all the items before submitting)
/lib
directory./website
as needed.Purpose Update website to match our peerDependencies.
Description Updating next to
14.0.3
an react to18.2.0
. The components affected with the version change are the NextImage
and NextLink
components:anchor
inside, but that breaks with implementations that were already using ananchor
so the proplegacyBehaviour
was added to fix it.width
andheight
props to numbers. The image styling was also changed so some styles were added to fix that.next export
is no longer available instead, it is added to the config file. Alsonext 14
minimun node version required is 18.Closes #1542