You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- This is useful for discriminating between events in a listener function.
66
110
@@ -84,6 +128,18 @@ Once an event is emitted, the following properties will be present on the event
84
128
- Type: `boolean`
85
129
- `true` if the href has changed between the `fromLocation` and `toLocation`.
86
130
131
+
### `hashChanged` property
132
+
133
+
- Type: `boolean`
134
+
- `true` if the hash has changed between the `fromLocation` and `toLocation`.
135
+
136
+
### `transition` property
137
+
138
+
- Type: `ViewTransition`
139
+
- Available on: `onViewTransitionStart`, `onViewTransitionReady`, `onViewTransitionUpdateCallbackDone`, `onViewTransitionFinish`
140
+
- The [ViewTransition](https://developer.mozilla.org/en-US/docs/Web/API/ViewTransition) object representing the view transition in progress.
141
+
- This property allows you to interact with the view transition lifecycle, including access to promises like `ready`, `updateCallbackDone`, and `finished`.
0 commit comments