From b6ef11ae9dc9b227703064fee428f8fd6f6d5ac6 Mon Sep 17 00:00:00 2001 From: Josh Date: Thu, 21 May 2026 16:41:30 +0100 Subject: [PATCH] fix: replace react-spring.io with react-spring.dev --- .github/ISSUE_TEMPLATE/bug_report.yml | 2 +- .github/ISSUE_TEMPLATE/feature_request.yml | 2 +- CONTRIBUTING.md | 2 +- README.md | 4 ++-- docs/app/components/Feedback/Feedback.tsx | 2 +- packages/parallax/README.md | 14 +++++++------- packages/react-spring/README.md | 4 ++-- 7 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml index e8010bf315..5f82150675 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yml +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -14,7 +14,7 @@ body: support or usage questions. Questions here don't have as much visibility as they do elsewhere. Before you ask a question, here are some resources to get help first: - - [Read the docs](https://react-spring.io) + - [Read the docs](https://react-spring.dev) - [Explore examples](https://github.com/pmndrs/reat-spring/tree/main/demo/src/sandbox) - Look for/ask questions on [Stack Overflow](https://stackoverflow.com/questions/ask?tags=react-spring) - Ask in [GitHub Discussions](https://github.com/pmndrs/react-spring/discussions) diff --git a/.github/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml index f6ed2bef13..c137cf2dc6 100644 --- a/.github/ISSUE_TEMPLATE/feature_request.yml +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -14,7 +14,7 @@ body: support or usage questions. Questions here don't have as much visibility as they do elsewhere. Before you ask a question, here are some resources to get help first: - - [Read the docs](https://react-spring.io) + - [Read the docs](https://react-spring.dev) - [Explore examples](https://github.com/pmndrs/reat-spring/tree/main/demo/src/sandbox) - Look for/ask questions on [Stack Overflow](https://stackoverflow.com/questions/ask?tags=react-spring) - Ask in [GitHub Discussions](https://github.com/pmndrs/react-spring/discussions) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 4d075c6f58..24de58ac6a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -76,7 +76,7 @@ Finally: pnpm release ``` -This will build the packages, publish them & push the tags to github to signify a new release. Please then update the `releases` on github & the changelog on `react-spring.io` +This will build the packages, publish them & push the tags to github to signify a new release. Please then update the `releases` on github & the changelog on `react-spring.dev` ## Prerelease diff --git a/README.md b/README.md index dafa848219..2ee1c33c08 100644 --- a/README.md +++ b/README.md @@ -76,9 +76,9 @@ It's as simple as that to create scroll-in animations when value of `isVisible` ### 📖 Documentation and Examples -More documentation on the project can be found [here](https://www.react-spring.io). +More documentation on the project can be found [here](https://www.react-spring.dev). -Pages contain their own [examples](https://react-spring.io/hooks/use-spring#demos) which you can check out there, or [open in codesandbox](https://codesandbox.io/s/github/pmndrs/react-spring/tree/main/demo/src/sandboxes/card) for a more in-depth view! +Pages contain their own [examples](https://react-spring.dev/hooks/use-spring#demos) which you can check out there, or [open in codesandbox](https://codesandbox.io/s/github/pmndrs/react-spring/tree/main/demo/src/sandboxes/card) for a more in-depth view! --- diff --git a/docs/app/components/Feedback/Feedback.tsx b/docs/app/components/Feedback/Feedback.tsx index 4bd730207d..dfbab55f1c 100644 --- a/docs/app/components/Feedback/Feedback.tsx +++ b/docs/app/components/Feedback/Feedback.tsx @@ -197,7 +197,7 @@ const FeedbackButton = ({ href={ variant === 'upvote' ? `https://twitter.com/intent/tweet?text=${encodeURIComponent( - `I've found this #reactspring doc page helpful! https://react-spring.io/${location.pathname}` + `I've found this #reactspring doc page helpful! https://react-spring.dev/${location.pathname}` )}` : 'https://github.com/pmndrs/react-spring/issues/new/choose' } diff --git a/packages/parallax/README.md b/packages/parallax/README.md index d291ef7b3c..05c6863389 100644 --- a/packages/parallax/README.md +++ b/packages/parallax/README.md @@ -33,13 +33,13 @@ const Example = () => { ## Parallax -| Property | Type | Description | -| ----------- | ------------- | ------------------------------------------------------------------------------------------------------- | -| pages | number | Total space of the container. Each page takes up 100% of the viewport. | -| config? | SpringConfig | The spring behavior. Defaults to `config.slow` (see [configs](https://react-spring.io/common/configs)). | -| enabled? | boolean | Whether or not the content can be scrolled. Defaults to `true`. | -| horizontal? | boolean | Whether or not the container scrolls horizontally. Defaults to `false`. | -| innerStyle? | CSSProperties | CSS object to style the inner `Parallax` wrapper (not the scrollable container) | +| Property | Type | Description | +| ----------- | ------------- | -------------------------------------------------------------------------------------------------------- | +| pages | number | Total space of the container. Each page takes up 100% of the viewport. | +| config? | SpringConfig | The spring behavior. Defaults to `config.slow` (see [configs](https://react-spring.dev/common/configs)). | +| enabled? | boolean | Whether or not the content can be scrolled. Defaults to `true`. | +| horizontal? | boolean | Whether or not the container scrolls horizontally. Defaults to `false`. | +| innerStyle? | CSSProperties | CSS object to style the inner `Parallax` wrapper (not the scrollable container) | ### `ref` Properties diff --git a/packages/react-spring/README.md b/packages/react-spring/README.md index cbd80b8bea..e3614ea095 100644 --- a/packages/react-spring/README.md +++ b/packages/react-spring/README.md @@ -76,9 +76,9 @@ It's as simple as that to create scroll-in animations when value of `isVisible` ### 📖 Documentation and Examples -More documentation on the project can be found [here](https://www.react-spring.io). +More documentation on the project can be found [here](https://www.react-spring.dev). -Pages contain their own [examples](https://react-spring.io/hooks/use-spring#demos) which you can check out there, or [open in codesandbox](https://codesandbox.io/s/github/pmndrs/react-spring/tree/main/demo/src/sandboxes/card) for a more in-depth view! +Pages contain their own [examples](https://react-spring.dev/hooks/use-spring#demos) which you can check out there, or [open in codesandbox](https://codesandbox.io/s/github/pmndrs/react-spring/tree/main/demo/src/sandboxes/card) for a more in-depth view! ---