Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #21

Merged
merged 2 commits into from
Dec 30, 2024
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
14 changes: 0 additions & 14 deletions .changeset/tough-rats-refuse.md

This file was deleted.

14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# @vtbag/turn-signal

## 1.3.0 - 2024-12-30

### Minor Changes

- 1594efb: This release adds the `link-types` script that let's you annotate view transition types at `<a>` elements by adding the `data-vtbag-link-types` attributes.

```html
<a href="..." data-vtbag-link-types="backward types/forward types"></a>
```

For details on how to use the scripts see the [documentation](https://vtbag.dev/tools/turn-signal/).

This release also adds support for browsers that have native cross-document view transitions support but don't support the Navigation API. Looking at you, Safari!

## 1.2.2 - 2024-12-12

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@vtbag/turn-signal",
"type": "module",
"version": "1.2.3",
"version": "1.3.0",
"main": "lib/index.js",
"description": "Turn-Signal is a lightweight script that enhances cross-document navigation by detecting the direction of browser navigation. It enables developers to create smooth, responsive transitions that adjust based on forward or backward navigation, delivering a more intuitive user experience.",
"files": [
Expand Down
Loading