github remix-run/react-router react-router-native@6.4.0-pre.13

latest releases: v0.0.0-nightly-bc1c1c8ef-20241005, v0.0.0-nightly-4263ec297-20241004, react-router@7.0.0-pre.0...
pre-release2 years ago

Patch Changes

  • feat: add relative=path option for url-relative routing (#9160)

    Adds a relative=path option to navigation aspects to allow users to opt-into paths behaving relative to the current URL instead of the current route hierarchy. This is useful if you're sharing route patterns in a non-nested structure for UI reasons:

    // Contact and EditContact do not share UI layout
    <Route path="contacts/:id" element={<Contact />} />
    <Route path="contacts:id/edit" element={<EditContact />} />
    
    function EditContact() {
      return <Link to=".." relative="path">Cancel</Link>
    }

    Without this, the user would need to reconstruct the contacts/:id url using useParams and either hardcoding the /contacts prefix or parsing it from useLocation.

    This applies to all path-related hooks and components:

    • react-router: useHref, useResolvedPath, useNavigate, Navigate
    • react-router-dom: useLinkClickHandler, useFormAction, useSubmit, Link, Form
    • react-router-native: useLinkPressHandler, Link
  • Updated dependencies

    • react-router@6.4.0-pre.13

Don't miss a new react-router release

NewReleases is sending notifications on new releases.