Skip to content

Commit 528841a

Browse files
Sync kit docs (#1466)
sync kit docs Co-authored-by: svelte-docs-bot[bot] <196124396+svelte-docs-bot[bot]@users.noreply.github.com>
1 parent 5a3b8f6 commit 528841a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

apps/svelte.dev/content/docs/kit/98-reference/[email protected]

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -489,7 +489,7 @@ type: Exclude<NavigationType, 'leave'>;
489489

490490
The type of navigation:
491491
- `enter`: The app has hydrated/started
492-
- `form`: The user submitted a `<form>`
492+
- `form`: The user submitted a `<form method="GET">`
493493
- `link`: Navigation was triggered by a link click
494494
- `goto`: Navigation was triggered by a `goto(...)` call or a redirect
495495
- `popstate`: Navigation was triggered by back/forward navigation
@@ -1480,7 +1480,7 @@ type: Exclude<NavigationType, 'enter'>;
14801480
<div class="ts-block-property-details">
14811481

14821482
The type of navigation:
1483-
- `form`: The user submitted a `<form>`
1483+
- `form`: The user submitted a `<form method="GET">`
14841484
- `leave`: The app is being left either because the tab is being closed or a navigation to a different document is occurring
14851485
- `link`: Navigation was triggered by a link click
14861486
- `goto`: Navigation was triggered by a `goto(...)` call or a redirect
@@ -1663,8 +1663,8 @@ The URL that is navigated to
16631663
## NavigationType
16641664

16651665
- `enter`: The app has hydrated/started
1666-
- `form`: The user submitted a `<form>` with a GET method
1667-
- `leave`: The user is leaving the app by closing the tab or using the back/forward buttons to go to a different document
1666+
- `form`: The user submitted a `<form method="GET">`
1667+
- `leave`: The app is being left either because the tab is being closed or a navigation to a different document is occurring
16681668
- `link`: Navigation was triggered by a link click
16691669
- `goto`: Navigation was triggered by a `goto(...)` call or a redirect
16701670
- `popstate`: Navigation was triggered by back/forward navigation
@@ -1715,7 +1715,7 @@ type: Exclude<NavigationType, 'enter' | 'leave'>;
17151715
<div class="ts-block-property-details">
17161716

17171717
The type of navigation:
1718-
- `form`: The user submitted a `<form>`
1718+
- `form`: The user submitted a `<form method="GET">`
17191719
- `link`: Navigation was triggered by a link click
17201720
- `goto`: Navigation was triggered by a `goto(...)` call or a redirect
17211721
- `popstate`: Navigation was triggered by back/forward navigation

0 commit comments

Comments
 (0)