@sveltejs/kit 2.53.4 → 2.55.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/src/core/config/options.js +13 -12
- package/src/core/sync/sync.js +1 -1
- package/src/core/sync/write_non_ambient.js +143 -37
- package/src/core/sync/write_root.js +41 -6
- package/src/core/sync/write_server.js +1 -0
- package/src/core/sync/write_types/index.js +1 -5
- package/src/exports/index.js +1 -1
- package/src/exports/public.d.ts +50 -59
- package/src/exports/vite/build/build_server.js +2 -2
- package/src/exports/vite/build/build_service_worker.js +1 -0
- package/src/exports/vite/index.js +3 -2
- package/src/runtime/app/paths/client.js +2 -2
- package/src/runtime/app/paths/public.d.ts +2 -2
- package/src/runtime/app/paths/server.js +1 -1
- package/src/runtime/app/paths/types.d.ts +22 -6
- package/src/runtime/app/state/server.js +1 -1
- package/src/runtime/client/client.js +100 -13
- package/src/runtime/client/remote-functions/form.svelte.js +8 -0
- package/src/runtime/client/state.svelte.js +4 -2
- package/src/runtime/client/types.d.ts +2 -0
- package/src/runtime/server/page/index.js +57 -8
- package/src/runtime/server/page/render.js +46 -5
- package/src/runtime/server/page/respond_with_error.js +1 -0
- package/src/runtime/server/page/serialize_data.js +1 -1
- package/src/types/ambient.d.ts +13 -0
- package/src/types/global-private.d.ts +1 -0
- package/src/types/internal.d.ts +1 -0
- package/src/version.js +1 -1
- package/types/index.d.ts +83 -68
- package/types/index.d.ts.map +4 -1
package/src/version.js
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -487,79 +487,88 @@ declare module '@sveltejs/kit' {
|
|
|
487
487
|
* @default false
|
|
488
488
|
*/
|
|
489
489
|
forkPreloads?: boolean;
|
|
490
|
+
|
|
491
|
+
/**
|
|
492
|
+
* Whether to enable the experimental handling of rendering errors.
|
|
493
|
+
* When enabled, `<svelte:boundary>` is used to wrap components at each level
|
|
494
|
+
* where there's an `+error.svelte`, rendering the error page if the component fails.
|
|
495
|
+
* In addition, error boundaries also work on the server and the error object goes through `handleError`.
|
|
496
|
+
* @default false
|
|
497
|
+
*/
|
|
498
|
+
handleRenderingErrors?: boolean;
|
|
490
499
|
};
|
|
491
500
|
/**
|
|
492
501
|
* Where to find various files within your project.
|
|
493
|
-
* @deprecated
|
|
502
|
+
* @deprecated this feature is still supported, but it's generally recommended to use [monorepos](https://levelup.video/tutorials/monorepos-with-pnpm) instead
|
|
494
503
|
*/
|
|
495
504
|
files?: {
|
|
496
505
|
/**
|
|
497
|
-
*
|
|
498
|
-
* @deprecated
|
|
506
|
+
* The location of your source code.
|
|
507
|
+
* @deprecated this feature is still supported, but it's generally recommended to use [monorepos](https://levelup.video/tutorials/monorepos-with-pnpm) instead
|
|
499
508
|
* @default "src"
|
|
500
509
|
* @since 2.28
|
|
501
510
|
*/
|
|
502
511
|
src?: string;
|
|
503
512
|
/**
|
|
504
|
-
*
|
|
505
|
-
* @deprecated
|
|
513
|
+
* A place to put static files that should have stable URLs and undergo no processing, such as `favicon.ico` or `manifest.json`.
|
|
514
|
+
* @deprecated this feature is still supported, but it's generally recommended to use [monorepos](https://levelup.video/tutorials/monorepos-with-pnpm) instead
|
|
506
515
|
* @default "static"
|
|
507
516
|
*/
|
|
508
517
|
assets?: string;
|
|
509
518
|
hooks?: {
|
|
510
519
|
/**
|
|
511
520
|
* The location of your client [hooks](https://svelte.dev/docs/kit/hooks).
|
|
512
|
-
* @deprecated
|
|
521
|
+
* @deprecated this feature is still supported, but it's generally recommended to use [monorepos](https://levelup.video/tutorials/monorepos-with-pnpm) instead
|
|
513
522
|
* @default "src/hooks.client"
|
|
514
523
|
*/
|
|
515
524
|
client?: string;
|
|
516
525
|
/**
|
|
517
526
|
* The location of your server [hooks](https://svelte.dev/docs/kit/hooks).
|
|
518
|
-
* @deprecated
|
|
527
|
+
* @deprecated this feature is still supported, but it's generally recommended to use [monorepos](https://levelup.video/tutorials/monorepos-with-pnpm) instead
|
|
519
528
|
* @default "src/hooks.server"
|
|
520
529
|
*/
|
|
521
530
|
server?: string;
|
|
522
531
|
/**
|
|
523
532
|
* The location of your universal [hooks](https://svelte.dev/docs/kit/hooks).
|
|
524
|
-
* @deprecated
|
|
533
|
+
* @deprecated this feature is still supported, but it's generally recommended to use [monorepos](https://levelup.video/tutorials/monorepos-with-pnpm) instead
|
|
525
534
|
* @default "src/hooks"
|
|
526
535
|
* @since 2.3.0
|
|
527
536
|
*/
|
|
528
537
|
universal?: string;
|
|
529
538
|
};
|
|
530
539
|
/**
|
|
531
|
-
*
|
|
532
|
-
* @deprecated
|
|
540
|
+
* Your app's internal library, accessible throughout the codebase as `$lib`.
|
|
541
|
+
* @deprecated this feature is still supported, but it's generally recommended to use [monorepos](https://levelup.video/tutorials/monorepos-with-pnpm) instead
|
|
533
542
|
* @default "src/lib"
|
|
534
543
|
*/
|
|
535
544
|
lib?: string;
|
|
536
545
|
/**
|
|
537
|
-
*
|
|
538
|
-
* @deprecated
|
|
546
|
+
* A directory containing [parameter matchers](https://svelte.dev/docs/kit/advanced-routing#Matching).
|
|
547
|
+
* @deprecated this feature is still supported, but it's generally recommended to use [monorepos](https://levelup.video/tutorials/monorepos-with-pnpm) instead
|
|
539
548
|
* @default "src/params"
|
|
540
549
|
*/
|
|
541
550
|
params?: string;
|
|
542
551
|
/**
|
|
543
|
-
*
|
|
544
|
-
* @deprecated
|
|
552
|
+
* The files that define the structure of your app (see [Routing](https://svelte.dev/docs/kit/routing)).
|
|
553
|
+
* @deprecated this feature is still supported, but it's generally recommended to use [monorepos](https://levelup.video/tutorials/monorepos-with-pnpm) instead
|
|
545
554
|
* @default "src/routes"
|
|
546
555
|
*/
|
|
547
556
|
routes?: string;
|
|
548
557
|
/**
|
|
549
|
-
*
|
|
550
|
-
* @deprecated
|
|
558
|
+
* The location of your service worker's entry point (see [Service workers](https://svelte.dev/docs/kit/service-workers)).
|
|
559
|
+
* @deprecated this feature is still supported, but it's generally recommended to use [monorepos](https://levelup.video/tutorials/monorepos-with-pnpm) instead
|
|
551
560
|
* @default "src/service-worker"
|
|
552
561
|
*/
|
|
553
562
|
serviceWorker?: string;
|
|
554
563
|
/**
|
|
555
|
-
*
|
|
556
|
-
* @deprecated
|
|
564
|
+
* The location of the template for HTML responses.
|
|
565
|
+
* @deprecated this feature is still supported, but it's generally recommended to use [monorepos](https://levelup.video/tutorials/monorepos-with-pnpm) instead
|
|
557
566
|
* @default "src/app.html"
|
|
558
567
|
*/
|
|
559
568
|
appTemplate?: string;
|
|
560
569
|
/**
|
|
561
|
-
*
|
|
562
|
-
* @deprecated
|
|
570
|
+
* The location of the template for fallback error responses.
|
|
571
|
+
* @deprecated this feature is still supported, but it's generally recommended to use [monorepos](https://levelup.video/tutorials/monorepos-with-pnpm) instead
|
|
563
572
|
* @default "src/error.html"
|
|
564
573
|
*/
|
|
565
574
|
errorTemplate?: string;
|
|
@@ -1210,7 +1219,7 @@ declare module '@sveltejs/kit' {
|
|
|
1210
1219
|
*/
|
|
1211
1220
|
to: NavigationTarget | null;
|
|
1212
1221
|
/**
|
|
1213
|
-
* Whether or not the navigation will result in the page being unloaded (i.e. not a client-side navigation)
|
|
1222
|
+
* Whether or not the navigation will result in the page being unloaded (i.e. not a client-side navigation).
|
|
1214
1223
|
*/
|
|
1215
1224
|
willUnload: boolean;
|
|
1216
1225
|
/**
|
|
@@ -1223,11 +1232,7 @@ declare module '@sveltejs/kit' {
|
|
|
1223
1232
|
export interface NavigationEnter extends NavigationBase {
|
|
1224
1233
|
/**
|
|
1225
1234
|
* The type of navigation:
|
|
1226
|
-
* - `
|
|
1227
|
-
* - `leave`: The app is being left either because the tab is being closed or a navigation to a different document is occurring
|
|
1228
|
-
* - `link`: Navigation was triggered by a link click
|
|
1229
|
-
* - `goto`: Navigation was triggered by a `goto(...)` call or a redirect
|
|
1230
|
-
* - `popstate`: Navigation was triggered by back/forward navigation
|
|
1235
|
+
* - `enter`: The app has hydrated/started
|
|
1231
1236
|
*/
|
|
1232
1237
|
type: 'enter';
|
|
1233
1238
|
|
|
@@ -1242,16 +1247,29 @@ declare module '@sveltejs/kit' {
|
|
|
1242
1247
|
event?: undefined;
|
|
1243
1248
|
}
|
|
1244
1249
|
|
|
1245
|
-
export
|
|
1250
|
+
export type NavigationExternal = NavigationGoto | NavigationLeave;
|
|
1251
|
+
|
|
1252
|
+
export interface NavigationGoto extends NavigationBase {
|
|
1246
1253
|
/**
|
|
1247
1254
|
* The type of navigation:
|
|
1248
|
-
* - `form`: The user submitted a `<form method="GET">`
|
|
1249
|
-
* - `leave`: The app is being left either because the tab is being closed or a navigation to a different document is occurring
|
|
1250
|
-
* - `link`: Navigation was triggered by a link click
|
|
1251
1255
|
* - `goto`: Navigation was triggered by a `goto(...)` call or a redirect
|
|
1252
|
-
* - `popstate`: Navigation was triggered by back/forward navigation
|
|
1253
1256
|
*/
|
|
1254
|
-
type:
|
|
1257
|
+
type: 'goto';
|
|
1258
|
+
|
|
1259
|
+
// TODO 3.0 remove this property, so that it only exists when type is 'popstate'
|
|
1260
|
+
// (would possibly be a breaking change to do it prior to that)
|
|
1261
|
+
/**
|
|
1262
|
+
* In case of a history back/forward navigation, the number of steps to go back/forward
|
|
1263
|
+
*/
|
|
1264
|
+
delta?: undefined;
|
|
1265
|
+
}
|
|
1266
|
+
|
|
1267
|
+
export interface NavigationLeave extends NavigationBase {
|
|
1268
|
+
/**
|
|
1269
|
+
* The type of navigation:
|
|
1270
|
+
* - `leave`: The app is being left either because the tab is being closed or a navigation to a different document is occurring
|
|
1271
|
+
*/
|
|
1272
|
+
type: 'leave';
|
|
1255
1273
|
|
|
1256
1274
|
// TODO 3.0 remove this property, so that it only exists when type is 'popstate'
|
|
1257
1275
|
// (would possibly be a breaking change to do it prior to that)
|
|
@@ -1265,10 +1283,6 @@ declare module '@sveltejs/kit' {
|
|
|
1265
1283
|
/**
|
|
1266
1284
|
* The type of navigation:
|
|
1267
1285
|
* - `form`: The user submitted a `<form method="GET">`
|
|
1268
|
-
* - `leave`: The app is being left either because the tab is being closed or a navigation to a different document is occurring
|
|
1269
|
-
* - `link`: Navigation was triggered by a link click
|
|
1270
|
-
* - `goto`: Navigation was triggered by a `goto(...)` call or a redirect
|
|
1271
|
-
* - `popstate`: Navigation was triggered by back/forward navigation
|
|
1272
1286
|
*/
|
|
1273
1287
|
type: 'form';
|
|
1274
1288
|
|
|
@@ -1288,10 +1302,6 @@ declare module '@sveltejs/kit' {
|
|
|
1288
1302
|
export interface NavigationPopState extends NavigationBase {
|
|
1289
1303
|
/**
|
|
1290
1304
|
* The type of navigation:
|
|
1291
|
-
* - `form`: The user submitted a `<form method="GET">`
|
|
1292
|
-
* - `leave`: The app is being left either because the tab is being closed or a navigation to a different document is occurring
|
|
1293
|
-
* - `link`: Navigation was triggered by a link click
|
|
1294
|
-
* - `goto`: Navigation was triggered by a `goto(...)` call or a redirect
|
|
1295
1305
|
* - `popstate`: Navigation was triggered by back/forward navigation
|
|
1296
1306
|
*/
|
|
1297
1307
|
type: 'popstate';
|
|
@@ -1310,11 +1320,7 @@ declare module '@sveltejs/kit' {
|
|
|
1310
1320
|
export interface NavigationLink extends NavigationBase {
|
|
1311
1321
|
/**
|
|
1312
1322
|
* The type of navigation:
|
|
1313
|
-
* - `form`: The user submitted a `<form method="GET">`
|
|
1314
|
-
* - `leave`: The app is being left either because the tab is being closed or a navigation to a different document is occurring
|
|
1315
1323
|
* - `link`: Navigation was triggered by a link click
|
|
1316
|
-
* - `goto`: Navigation was triggered by a `goto(...)` call or a redirect
|
|
1317
|
-
* - `popstate`: Navigation was triggered by back/forward navigation
|
|
1318
1324
|
*/
|
|
1319
1325
|
type: 'link';
|
|
1320
1326
|
|
|
@@ -1351,13 +1357,6 @@ declare module '@sveltejs/kit' {
|
|
|
1351
1357
|
* The argument passed to [`onNavigate`](https://svelte.dev/docs/kit/$app-navigation#onNavigate) callbacks.
|
|
1352
1358
|
*/
|
|
1353
1359
|
export type OnNavigate = Navigation & {
|
|
1354
|
-
/**
|
|
1355
|
-
* The type of navigation:
|
|
1356
|
-
* - `form`: The user submitted a `<form method="GET">`
|
|
1357
|
-
* - `link`: Navigation was triggered by a link click
|
|
1358
|
-
* - `goto`: Navigation was triggered by a `goto(...)` call or a redirect
|
|
1359
|
-
* - `popstate`: Navigation was triggered by back/forward navigation
|
|
1360
|
-
*/
|
|
1361
1360
|
type: Exclude<NavigationType, 'enter' | 'leave'>;
|
|
1362
1361
|
/**
|
|
1363
1362
|
* Since `onNavigate` callbacks are called immediately before a client-side navigation, they will never be called with a navigation that unloads the page.
|
|
@@ -1369,14 +1368,6 @@ declare module '@sveltejs/kit' {
|
|
|
1369
1368
|
* The argument passed to [`afterNavigate`](https://svelte.dev/docs/kit/$app-navigation#afterNavigate) callbacks.
|
|
1370
1369
|
*/
|
|
1371
1370
|
export type AfterNavigate = (Navigation | NavigationEnter) & {
|
|
1372
|
-
/**
|
|
1373
|
-
* The type of navigation:
|
|
1374
|
-
* - `enter`: The app has hydrated/started
|
|
1375
|
-
* - `form`: The user submitted a `<form method="GET">`
|
|
1376
|
-
* - `link`: Navigation was triggered by a link click
|
|
1377
|
-
* - `goto`: Navigation was triggered by a `goto(...)` call or a redirect
|
|
1378
|
-
* - `popstate`: Navigation was triggered by back/forward navigation
|
|
1379
|
-
*/
|
|
1380
1371
|
type: Exclude<NavigationType, 'leave'>;
|
|
1381
1372
|
/**
|
|
1382
1373
|
* Since `afterNavigate` callbacks are called after a navigation completes, they will never be called with a navigation that unloads the page.
|
|
@@ -3124,7 +3115,7 @@ declare module '$app/navigation' {
|
|
|
3124
3115
|
}
|
|
3125
3116
|
|
|
3126
3117
|
declare module '$app/paths' {
|
|
3127
|
-
import type {
|
|
3118
|
+
import type { RouteIdWithSearchOrHash, PathnameWithSearchOrHash, ResolvedPathname, RouteId, RouteParams, Asset, Pathname as Pathname_1 } from '$app/types';
|
|
3128
3119
|
/**
|
|
3129
3120
|
* A string that matches [`config.kit.paths.base`](https://svelte.dev/docs/kit/configuration#paths).
|
|
3130
3121
|
*
|
|
@@ -3146,14 +3137,25 @@ declare module '$app/paths' {
|
|
|
3146
3137
|
/**
|
|
3147
3138
|
* @deprecated Use [`resolve(...)`](https://svelte.dev/docs/kit/$app-paths#resolve) instead
|
|
3148
3139
|
*/
|
|
3149
|
-
export function resolveRoute<T extends
|
|
3140
|
+
export function resolveRoute<T extends RouteIdWithSearchOrHash | PathnameWithSearchOrHash>(
|
|
3150
3141
|
...args: ResolveArgs<T>
|
|
3151
3142
|
): ResolvedPathname;
|
|
3152
|
-
type
|
|
3153
|
-
?
|
|
3154
|
-
|
|
3155
|
-
|
|
3156
|
-
|
|
3143
|
+
type StripSearchOrHash<T extends string> = T extends `${infer Pathname}?${string}`
|
|
3144
|
+
? Pathname
|
|
3145
|
+
: T extends `${infer Pathname}#${string}`
|
|
3146
|
+
? Pathname
|
|
3147
|
+
: T;
|
|
3148
|
+
|
|
3149
|
+
type ResolveArgs<T extends RouteIdWithSearchOrHash | PathnameWithSearchOrHash> =
|
|
3150
|
+
T extends RouteId
|
|
3151
|
+
? RouteParams<T> extends Record<string, never>
|
|
3152
|
+
? [route: T]
|
|
3153
|
+
: [route: T, params: RouteParams<T>]
|
|
3154
|
+
: StripSearchOrHash<T> extends infer U extends RouteId
|
|
3155
|
+
? RouteParams<U> extends Record<string, never>
|
|
3156
|
+
? [route: T]
|
|
3157
|
+
: [route: T, params: RouteParams<U>]
|
|
3158
|
+
: [route: T];
|
|
3157
3159
|
/**
|
|
3158
3160
|
* Resolve the URL of an asset in your `static` directory, by prefixing it with [`config.kit.paths.assets`](https://svelte.dev/docs/kit/configuration#paths) if configured, or otherwise by prefixing it with the base path.
|
|
3159
3161
|
*
|
|
@@ -3191,7 +3193,7 @@ declare module '$app/paths' {
|
|
|
3191
3193
|
* @since 2.26
|
|
3192
3194
|
*
|
|
3193
3195
|
* */
|
|
3194
|
-
export function resolve<T extends
|
|
3196
|
+
export function resolve<T extends RouteIdWithSearchOrHash | PathnameWithSearchOrHash>(...args: ResolveArgs<T>): ResolvedPathname;
|
|
3195
3197
|
/**
|
|
3196
3198
|
* Match a path or URL to a route ID and extracts any parameters.
|
|
3197
3199
|
*
|
|
@@ -3210,7 +3212,7 @@ declare module '$app/paths' {
|
|
|
3210
3212
|
* @since 2.52.0
|
|
3211
3213
|
*
|
|
3212
3214
|
* */
|
|
3213
|
-
export function match(url:
|
|
3215
|
+
export function match(url: Pathname_1 | URL | (string & {})): Promise<{
|
|
3214
3216
|
id: RouteId;
|
|
3215
3217
|
params: Record<string, string>;
|
|
3216
3218
|
} | null>;
|
|
@@ -3577,6 +3579,11 @@ declare module '$app/types' {
|
|
|
3577
3579
|
*/
|
|
3578
3580
|
export type RouteId = ReturnType<AppTypes['RouteId']>;
|
|
3579
3581
|
|
|
3582
|
+
/**
|
|
3583
|
+
* `RouteId`, but possibly suffixed with a search string and/or hash.
|
|
3584
|
+
*/
|
|
3585
|
+
export type RouteIdWithSearchOrHash = RouteId | `${RouteId}?${string}` | `${RouteId}#${string}`;
|
|
3586
|
+
|
|
3580
3587
|
/**
|
|
3581
3588
|
* A utility for getting the parameters associated with a given route.
|
|
3582
3589
|
*/
|
|
@@ -3596,6 +3603,14 @@ declare module '$app/types' {
|
|
|
3596
3603
|
*/
|
|
3597
3604
|
export type Pathname = ReturnType<AppTypes['Pathname']>;
|
|
3598
3605
|
|
|
3606
|
+
/**
|
|
3607
|
+
* `Pathname`, but possibly suffixed with a search string and/or hash.
|
|
3608
|
+
*/
|
|
3609
|
+
export type PathnameWithSearchOrHash =
|
|
3610
|
+
| Pathname
|
|
3611
|
+
| `${Pathname}?${string}`
|
|
3612
|
+
| `${Pathname}#${string}`;
|
|
3613
|
+
|
|
3599
3614
|
/**
|
|
3600
3615
|
* `Pathname`, but possibly prefixed with a base path. Used for `page.url.pathname`.
|
|
3601
3616
|
*/
|
package/types/index.d.ts.map
CHANGED
|
@@ -33,6 +33,8 @@
|
|
|
33
33
|
"NavigationBase",
|
|
34
34
|
"NavigationEnter",
|
|
35
35
|
"NavigationExternal",
|
|
36
|
+
"NavigationGoto",
|
|
37
|
+
"NavigationLeave",
|
|
36
38
|
"NavigationFormSubmit",
|
|
37
39
|
"NavigationPopState",
|
|
38
40
|
"NavigationLink",
|
|
@@ -166,6 +168,7 @@
|
|
|
166
168
|
"base",
|
|
167
169
|
"assets",
|
|
168
170
|
"resolveRoute",
|
|
171
|
+
"StripSearchOrHash",
|
|
169
172
|
"ResolveArgs",
|
|
170
173
|
"asset",
|
|
171
174
|
"resolve",
|
|
@@ -224,6 +227,6 @@
|
|
|
224
227
|
null,
|
|
225
228
|
null
|
|
226
229
|
],
|
|
227
|
-
"mappings": ";;;;;;;;MAiCKA,IAAIA;;;;;kBAKQC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAiCZC,cAAcA;;;;;;aAMdC,cAAcA;;;;;;;;MAQrBC,aAAaA;;;;;OAKJC,YAAYA;;kBAETC,aAAaA;;;;;;MAMzBC,qBAAqBA;;;;;;;;;;;kBAWTC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA8IPC,MAAMA;;;;;;;;;;;kBAWNC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA4DPC,QAAQA;;;;;;;;kBAQRC,SAASA
|
|
230
|
+
"mappings": "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",
|
|
228
231
|
"ignoreList": []
|
|
229
232
|
}
|