Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!

---

Expand Down
2 changes: 1 addition & 1 deletion docs/app/components/Feedback/Feedback.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
Expand Down
14 changes: 7 additions & 7 deletions packages/parallax/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions packages/react-spring/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!

---

Expand Down
Loading