@sveltejs/kit 3.0.0-next.12 → 3.0.0-next.13
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 +10 -10
- package/src/core/postbuild/prerender.js +3 -3
- package/src/core/sync/write_app_types.js +1 -2
- package/src/core/sync/write_tsconfig/index.js +13 -1
- package/src/exports/index.js +23 -12
- package/src/exports/internal/shared.js +4 -12
- package/src/exports/public.d.ts +59 -11
- package/src/exports/vite/build/remote.js +10 -12
- package/src/exports/vite/dev/index.js +32 -19
- package/src/exports/vite/index.js +118 -123
- package/src/runtime/app/server/remote/form.js +9 -1
- package/src/runtime/app/server/remote/prerender.js +13 -9
- package/src/runtime/app/server/remote/requested.js +4 -4
- package/src/runtime/app/state/client.js +3 -0
- package/src/runtime/app/state/index.js +2 -2
- package/src/runtime/app/state/server.js +3 -0
- package/src/runtime/client/client.js +584 -305
- package/src/runtime/client/constants.js +2 -6
- package/src/runtime/client/fetcher.js +27 -17
- package/src/runtime/client/remote-functions/form.svelte.js +39 -7
- package/src/runtime/client/remote-functions/prerender.svelte.js +1 -1
- package/src/runtime/client/remote-functions/query/instance.svelte.js +2 -2
- package/src/runtime/client/remote-functions/query-batch.svelte.js +1 -1
- package/src/runtime/client/remote-functions/query-live/instance.svelte.js +2 -2
- package/src/runtime/client/remote-functions/query-live/iterator.js +10 -8
- package/src/runtime/client/remote-functions/shared.svelte.js +11 -10
- package/src/runtime/client/state.svelte.js +10 -22
- package/src/runtime/client/types.d.ts +1 -2
- package/src/runtime/client/utils.js +21 -14
- package/src/runtime/components/root.svelte +4 -14
- package/src/runtime/props.svelte.js +71 -0
- package/src/runtime/server/fetch.js +4 -6
- package/src/runtime/server/page/csp.js +86 -103
- package/src/runtime/server/page/index.js +1 -2
- package/src/runtime/server/page/load_data.js +15 -5
- package/src/runtime/server/page/render.js +27 -24
- package/src/runtime/server/page/respond_with_error.js +1 -3
- package/src/runtime/server/respond.js +0 -2
- package/src/types/ambient-private.d.ts +1 -1
- package/src/types/ambient.d.ts +1 -1
- package/src/types/internal.d.ts +2 -7
- package/src/types/private.d.ts +3 -12
- package/src/version.js +1 -1
- package/types/index.d.ts +92 -57
- package/types/index.d.ts.map +2 -1
- package/src/runtime/types.d.ts +0 -8
package/types/index.d.ts
CHANGED
|
@@ -834,7 +834,7 @@ declare module '@sveltejs/kit' {
|
|
|
834
834
|
* A function that allows you to edit the generated `tsconfig.json`. You can mutate the config (recommended) or return a new one.
|
|
835
835
|
* This is useful for extending a shared `tsconfig.json` in a monorepo root, for example.
|
|
836
836
|
*
|
|
837
|
-
* Note that any paths configured here should be relative to the generated config file, which is written to
|
|
837
|
+
* Note that any paths configured here should be relative to the generated config file, which is written to `node_modules/$app/tsconfig/tsconfig.json`.
|
|
838
838
|
*
|
|
839
839
|
* @default (config) => config
|
|
840
840
|
* @since 1.3.0
|
|
@@ -1209,6 +1209,46 @@ declare module '@sveltejs/kit' {
|
|
|
1209
1209
|
scroll: { x: number; y: number } | null;
|
|
1210
1210
|
}
|
|
1211
1211
|
|
|
1212
|
+
export interface GotoOptions {
|
|
1213
|
+
/**
|
|
1214
|
+
* If `true`, replaces the current history entry rather than creating a new one.
|
|
1215
|
+
* @default false
|
|
1216
|
+
*/
|
|
1217
|
+
replace?: boolean;
|
|
1218
|
+
/** @deprecated Use `replace` instead. */
|
|
1219
|
+
replaceState?: boolean;
|
|
1220
|
+
/**
|
|
1221
|
+
* If `true`, updates the URL and `page.state` without navigating.
|
|
1222
|
+
* @default false
|
|
1223
|
+
*/
|
|
1224
|
+
shallow?: boolean;
|
|
1225
|
+
/**
|
|
1226
|
+
* If `true`, resets the scroll position (to the top of the page, or to the element
|
|
1227
|
+
* matching the URL's `#hash` if there is one) and resets focus (to the `<body>`, or the
|
|
1228
|
+
* `autofocus` element if there is one) once the navigation completes.
|
|
1229
|
+
*
|
|
1230
|
+
* If `false`, the current scroll position and focused element are left alone.
|
|
1231
|
+
* @default true, or false when `shallow` is true
|
|
1232
|
+
*/
|
|
1233
|
+
reset?: boolean;
|
|
1234
|
+
/**
|
|
1235
|
+
* If `true`, reruns all `load` functions and queries of the page.
|
|
1236
|
+
* @default false
|
|
1237
|
+
*/
|
|
1238
|
+
refreshAll?: boolean;
|
|
1239
|
+
/** Causes any `load` functions to rerun if they depend on one of the URLs. */
|
|
1240
|
+
invalidate?: Array<string | URL | ((url: URL) => boolean)>;
|
|
1241
|
+
/** @deprecated Use `refreshAll` instead. */
|
|
1242
|
+
invalidateAll?: boolean;
|
|
1243
|
+
/** An optional object that will be available as `page.state`. */
|
|
1244
|
+
state?: App.PageState;
|
|
1245
|
+
/**
|
|
1246
|
+
* If `true`, `page.state` will be restored after a full page reload.
|
|
1247
|
+
* @default false
|
|
1248
|
+
*/
|
|
1249
|
+
persistState?: boolean;
|
|
1250
|
+
}
|
|
1251
|
+
|
|
1212
1252
|
/**
|
|
1213
1253
|
* - `enter`: The app has hydrated/started
|
|
1214
1254
|
* - `form`: The user submitted a `<form method="GET">`
|
|
@@ -1230,6 +1270,8 @@ declare module '@sveltejs/kit' {
|
|
|
1230
1270
|
* - `popstate`: Navigation was triggered by back/forward navigation
|
|
1231
1271
|
*/
|
|
1232
1272
|
type: NavigationType;
|
|
1273
|
+
/** Whether this is a shallow navigation. */
|
|
1274
|
+
shallow: boolean;
|
|
1233
1275
|
/**
|
|
1234
1276
|
* Where navigation was triggered from
|
|
1235
1277
|
*/
|
|
@@ -1324,10 +1366,7 @@ declare module '@sveltejs/kit' {
|
|
|
1324
1366
|
}
|
|
1325
1367
|
|
|
1326
1368
|
export type Navigation =
|
|
1327
|
-
|
|
|
1328
|
-
| NavigationFormSubmit
|
|
1329
|
-
| NavigationPopState
|
|
1330
|
-
| NavigationLink;
|
|
1369
|
+
NavigationExternal | NavigationFormSubmit | NavigationPopState | NavigationLink;
|
|
1331
1370
|
|
|
1332
1371
|
/**
|
|
1333
1372
|
* The argument passed to [`beforeNavigate`](https://svelte.dev/docs/kit/$app-navigation#beforeNavigate) callbacks.
|
|
@@ -1398,9 +1437,20 @@ declare module '@sveltejs/kit' {
|
|
|
1398
1437
|
*/
|
|
1399
1438
|
data: App.PageData & Record<string, any>;
|
|
1400
1439
|
/**
|
|
1401
|
-
* The page state, which can be manipulated using
|
|
1440
|
+
* The page state, which can be manipulated using [`goto`](https://svelte.dev/docs/kit/$app-navigation#goto) from `$app/navigation`.
|
|
1402
1441
|
*/
|
|
1403
1442
|
state: App.PageState;
|
|
1443
|
+
/**
|
|
1444
|
+
* Information about the target of the current shallow navigation, or `null` if no shallow navigation has occurred.
|
|
1445
|
+
*/
|
|
1446
|
+
shallow: {
|
|
1447
|
+
/** Parameters of the target route, or `null` if the URL does not resolve to a route. */
|
|
1448
|
+
params: AppLayoutParams<'/'> | null;
|
|
1449
|
+
/** Info about the target route, or `null` if the URL does not resolve to a route. */
|
|
1450
|
+
route: { id: AppRouteId } | null;
|
|
1451
|
+
/** The normalized URL passed to `goto(..., { shallow: true })`. */
|
|
1452
|
+
url: ReadonlyURL;
|
|
1453
|
+
} | null;
|
|
1404
1454
|
/**
|
|
1405
1455
|
* Filled only after a form submission. See [form actions](https://svelte.dev/docs/kit/form-actions) for more info.
|
|
1406
1456
|
*/
|
|
@@ -1421,8 +1471,7 @@ declare module '@sveltejs/kit' {
|
|
|
1421
1471
|
* A param matcher definition passed to [`defineParams`](https://svelte.dev/docs/kit/@sveltejs-kit#defineParams).
|
|
1422
1472
|
*/
|
|
1423
1473
|
export type ParamDefinition =
|
|
1424
|
-
|
|
1425
|
-
| StandardSchemaV1<string, ParamValue>;
|
|
1474
|
+
((param: string) => ParamValue | undefined) | StandardSchemaV1<string, ParamValue>;
|
|
1426
1475
|
|
|
1427
1476
|
/**
|
|
1428
1477
|
* The return type of [`defineParams`](https://svelte.dev/docs/kit/@sveltejs-kit#defineParams).
|
|
@@ -1525,8 +1574,7 @@ declare module '@sveltejs/kit' {
|
|
|
1525
1574
|
};
|
|
1526
1575
|
|
|
1527
1576
|
export type RequestedResult<Validated, Output> =
|
|
1528
|
-
|
|
|
1529
|
-
| LiveQueryRequestedResult<Validated, Output>;
|
|
1577
|
+
QueryRequestedResult<Validated, Output> | LiveQueryRequestedResult<Validated, Output>;
|
|
1530
1578
|
|
|
1531
1579
|
export interface RequestEvent<
|
|
1532
1580
|
Params extends AppLayoutParams<'/'> = AppLayoutParams<'/'>,
|
|
@@ -1707,7 +1755,7 @@ declare module '@sveltejs/kit' {
|
|
|
1707
1755
|
|
|
1708
1756
|
export interface ServerInitOptions {
|
|
1709
1757
|
/** A map of environment variables. */
|
|
1710
|
-
env: Record<string, string>;
|
|
1758
|
+
env: Record<string, string | undefined>;
|
|
1711
1759
|
/** A function that turns an asset filename into a `ReadableStream`. Required for the `read` export from `$app/server` to work. */
|
|
1712
1760
|
read?: (file: string) => MaybePromise<ReadableStream | null>;
|
|
1713
1761
|
}
|
|
@@ -2655,20 +2703,11 @@ declare module '@sveltejs/kit' {
|
|
|
2655
2703
|
type PrerenderHttpErrorHandlerValue = 'fail' | 'warn' | 'ignore' | PrerenderHttpErrorHandler;
|
|
2656
2704
|
type PrerenderMissingIdHandlerValue = 'fail' | 'warn' | 'ignore' | PrerenderMissingIdHandler;
|
|
2657
2705
|
type PrerenderUnseenRoutesHandlerValue =
|
|
2658
|
-
| '
|
|
2659
|
-
| 'warn'
|
|
2660
|
-
| 'ignore'
|
|
2661
|
-
| PrerenderUnseenRoutesHandler;
|
|
2706
|
+
'fail' | 'warn' | 'ignore' | PrerenderUnseenRoutesHandler;
|
|
2662
2707
|
type PrerenderEntryGeneratorMismatchHandlerValue =
|
|
2663
|
-
| '
|
|
2664
|
-
| 'warn'
|
|
2665
|
-
| 'ignore'
|
|
2666
|
-
| PrerenderEntryGeneratorMismatchHandler;
|
|
2708
|
+
'fail' | 'warn' | 'ignore' | PrerenderEntryGeneratorMismatchHandler;
|
|
2667
2709
|
type PrerenderInvalidUrlHandlerValue =
|
|
2668
|
-
| '
|
|
2669
|
-
| 'warn'
|
|
2670
|
-
| 'ignore'
|
|
2671
|
-
| PrerenderInvalidUrlHandler;
|
|
2710
|
+
'fail' | 'warn' | 'ignore' | PrerenderInvalidUrlHandler;
|
|
2672
2711
|
|
|
2673
2712
|
export type PrerenderOption = boolean | 'auto';
|
|
2674
2713
|
|
|
@@ -2713,42 +2752,43 @@ declare module '@sveltejs/kit' {
|
|
|
2713
2752
|
* return an error response without invoking `handleError`.
|
|
2714
2753
|
* Make sure you're not catching the thrown error, which would prevent SvelteKit from handling it.
|
|
2715
2754
|
* @param status The [HTTP status code](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client_error_responses). Must be in the range 400-599.
|
|
2716
|
-
* @param
|
|
2755
|
+
* @param message The error message.
|
|
2717
2756
|
* @throws {import('./public.js').HttpError} This error instructs SvelteKit to initiate HTTP error handling.
|
|
2718
2757
|
* @throws {Error} If the provided status is invalid (not between 400 and 599).
|
|
2719
2758
|
*/
|
|
2720
|
-
export function error(status:
|
|
2721
|
-
status
|
|
2722
|
-
|
|
2759
|
+
export function error(status: {
|
|
2760
|
+
status: number;
|
|
2761
|
+
message: string;
|
|
2762
|
+
} extends App.Error ? number : never, message?: string | undefined): never;
|
|
2723
2763
|
/**
|
|
2724
2764
|
* Throws an error with a HTTP status code and an optional message.
|
|
2725
2765
|
* When called during request handling, this will cause SvelteKit to
|
|
2726
2766
|
* return an error response without invoking `handleError`.
|
|
2727
2767
|
* Make sure you're not catching the thrown error, which would prevent SvelteKit from handling it.
|
|
2728
2768
|
* @param status The [HTTP status code](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client_error_responses). Must be in the range 400-599.
|
|
2729
|
-
* @param
|
|
2769
|
+
* @param message The error message.
|
|
2770
|
+
* @param properties Additional properties of the App.Error type.
|
|
2730
2771
|
* @throws {import('./public.js').HttpError} This error instructs SvelteKit to initiate HTTP error handling.
|
|
2731
2772
|
* @throws {Error} If the provided status is invalid (not between 400 and 599).
|
|
2732
2773
|
*/
|
|
2733
|
-
export function error(status: number,
|
|
2774
|
+
export function error(status: number, message: string, properties: {
|
|
2734
2775
|
status: number;
|
|
2735
2776
|
message: string;
|
|
2736
|
-
} extends App.Error ?
|
|
2777
|
+
} extends App.Error ? never : Omit<App.Error, "status" | "message">): never;
|
|
2737
2778
|
/**
|
|
2738
2779
|
* Throws an error with a HTTP status code and an optional message.
|
|
2739
2780
|
* When called during request handling, this will cause SvelteKit to
|
|
2740
2781
|
* return an error response without invoking `handleError`.
|
|
2741
2782
|
* Make sure you're not catching the thrown error, which would prevent SvelteKit from handling it.
|
|
2783
|
+
* @deprecated Passing an `App.Error` body as the second argument is deprecated — pass the `message` as the second argument, and any additional properties as the third
|
|
2742
2784
|
* @param status The [HTTP status code](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status#client_error_responses). Must be in the range 400-599.
|
|
2743
|
-
* @param body
|
|
2744
|
-
* @param properties Additional properties of the App.Error type.
|
|
2785
|
+
* @param body An object that conforms to the App.Error type. If a string is passed, it will be used as the message property.
|
|
2745
2786
|
* @throws {import('./public.js').HttpError} This error instructs SvelteKit to initiate HTTP error handling.
|
|
2746
2787
|
* @throws {Error} If the provided status is invalid (not between 400 and 599).
|
|
2747
2788
|
*/
|
|
2748
|
-
export function error(status: number,
|
|
2749
|
-
status
|
|
2750
|
-
|
|
2751
|
-
} extends App.Error ? never : Omit<App.Error, "status" | "message">): never;
|
|
2789
|
+
export function error(status: number, properties: Omit<App.Error, "status"> & {
|
|
2790
|
+
status?: App.Error["status"];
|
|
2791
|
+
}): never;
|
|
2752
2792
|
/**
|
|
2753
2793
|
* Checks whether this is an error thrown by {@link error}.
|
|
2754
2794
|
* @param status The status to filter for.
|
|
@@ -3126,25 +3166,18 @@ declare module '$app/navigation' {
|
|
|
3126
3166
|
* */
|
|
3127
3167
|
export function disableScrollHandling(): void;
|
|
3128
3168
|
/**
|
|
3129
|
-
* Allows you to navigate programmatically to a given route, with
|
|
3130
|
-
*
|
|
3169
|
+
* Allows you to navigate programmatically to a given route, with control over details such as whether scroll and focus are reset
|
|
3170
|
+
* (as they would be with a regular navigation) or preserved.
|
|
3171
|
+
*
|
|
3172
|
+
* Returns a Promise that resolves when SvelteKit navigates (or fails to navigate, in which case the promise rejects) or the state change has been applied.
|
|
3131
3173
|
*
|
|
3132
|
-
* `goto` is intended for navigations to routes that belong to the app.
|
|
3133
|
-
* If the URL does not resolve to a route within the app, the returned promise will reject.
|
|
3174
|
+
* `goto` is intended for navigations to routes that belong to the app, and will reject if a route cannot be resolved.
|
|
3134
3175
|
* For external URLs, use `window.location = url` to perform a full-page navigation instead of calling `goto(url)`.
|
|
3135
3176
|
*
|
|
3136
3177
|
* @param url Where to navigate to. Note that if you've set [`config.paths.base`](https://svelte.dev/docs/kit/configuration#paths) and the URL is root-relative, you need to prepend the base path if you want to navigate within the app.
|
|
3137
|
-
* @param
|
|
3178
|
+
* @param opts Options related to the navigation
|
|
3138
3179
|
* */
|
|
3139
|
-
export function goto(url: string | URL, opts?:
|
|
3140
|
-
replaceState?: boolean | undefined;
|
|
3141
|
-
noScroll?: boolean | undefined;
|
|
3142
|
-
keepFocus?: boolean | undefined;
|
|
3143
|
-
refreshAll?: boolean | undefined;
|
|
3144
|
-
invalidate?: (string | URL | ((url: URL) => boolean))[] | undefined;
|
|
3145
|
-
invalidateAll?: boolean | undefined;
|
|
3146
|
-
state?: App.PageState | undefined;
|
|
3147
|
-
}): Promise<void>;
|
|
3180
|
+
export function goto(url: string | URL, opts?: import("@sveltejs/kit").GotoOptions): Promise<void>;
|
|
3148
3181
|
/**
|
|
3149
3182
|
* Causes any `load` functions belonging to the currently active page to re-run if they depend on the `url` in question, via `fetch` or `depends`. Returns a `Promise` that resolves when the page is subsequently updated.
|
|
3150
3183
|
*
|
|
@@ -3212,15 +3245,17 @@ declare module '$app/navigation' {
|
|
|
3212
3245
|
* */
|
|
3213
3246
|
export function preloadCode(pathname: string): Promise<void>;
|
|
3214
3247
|
/**
|
|
3215
|
-
* Programmatically create a new history entry with the given `page.state`.
|
|
3248
|
+
* Programmatically create a new history entry with the given `page.state`. Used for [shallow routing](https://svelte.dev/docs/kit/shallow-routing).
|
|
3216
3249
|
*
|
|
3250
|
+
* @deprecated Use `goto(url, { state, shallow: true })` instead.
|
|
3217
3251
|
* */
|
|
3218
|
-
export function pushState(url: string | URL, state: App.PageState): void
|
|
3252
|
+
export function pushState(url: string | URL, state: App.PageState): Promise<void>;
|
|
3219
3253
|
/**
|
|
3220
|
-
* Programmatically replace the current history entry with the given `page.state`.
|
|
3254
|
+
* Programmatically replace the current history entry with the given `page.state`. Used for [shallow routing](https://svelte.dev/docs/kit/shallow-routing).
|
|
3221
3255
|
*
|
|
3256
|
+
* @deprecated Use `goto(url, { state, shallow: true, replace: true })` instead.
|
|
3222
3257
|
* */
|
|
3223
|
-
export function replaceState(url: string | URL, state: App.PageState): void
|
|
3258
|
+
export function replaceState(url: string | URL, state: App.PageState): Promise<void>;
|
|
3224
3259
|
type MaybePromise<T> = T | Promise<T>;
|
|
3225
3260
|
|
|
3226
3261
|
export {};
|
|
@@ -3582,8 +3617,8 @@ declare module '$app/state' {
|
|
|
3582
3617
|
* A read-only reactive object with information about the current page, serving several use cases:
|
|
3583
3618
|
* - retrieving the combined `data` of all pages/layouts anywhere in your component tree (also see [loading data](https://svelte.dev/docs/kit/load))
|
|
3584
3619
|
* - retrieving the current value of the `form` prop anywhere in your component tree (also see [form actions](https://svelte.dev/docs/kit/form-actions))
|
|
3585
|
-
* - retrieving the page state that was set through `goto
|
|
3586
|
-
* - retrieving metadata such as the URL you're on, the current route and its parameters, and whether or not there was an error
|
|
3620
|
+
* - retrieving the page state that was set through `goto` (also see [goto](https://svelte.dev/docs/kit/$app-navigation#goto) and [shallow routing](https://svelte.dev/docs/kit/shallow-routing))
|
|
3621
|
+
* - retrieving metadata such as the URL you're on, the current route and its parameters, the target of a shallow navigation, and whether or not there was an error
|
|
3587
3622
|
*
|
|
3588
3623
|
* ```svelte
|
|
3589
3624
|
* <!--- file: +layout.svelte --->
|
|
@@ -3684,7 +3719,7 @@ declare namespace App {
|
|
|
3684
3719
|
export interface PageData {}
|
|
3685
3720
|
|
|
3686
3721
|
/**
|
|
3687
|
-
* The shape of the `page.state` object, which can be manipulated using
|
|
3722
|
+
* The shape of the `page.state` object, which can be manipulated using [`goto`](https://svelte.dev/docs/kit/$app-navigation#goto).
|
|
3688
3723
|
*/
|
|
3689
3724
|
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
|
|
3690
3725
|
export interface PageState {}
|
package/types/index.d.ts.map
CHANGED
|
@@ -30,6 +30,7 @@
|
|
|
30
30
|
"LoadEvent",
|
|
31
31
|
"NavigationEvent",
|
|
32
32
|
"NavigationTarget",
|
|
33
|
+
"GotoOptions",
|
|
33
34
|
"NavigationType",
|
|
34
35
|
"NavigationBase",
|
|
35
36
|
"NavigationEnter",
|
|
@@ -225,6 +226,6 @@
|
|
|
225
226
|
null,
|
|
226
227
|
null
|
|
227
228
|
],
|
|
228
|
-
"mappings": ";;;;;;;;;MAmCKA,IAAIA;;MAEJC,0BAA0BA;;;;;kBAKdC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAwCZC,cAAcA;;;;;;aAMdC,cAAcA;;;;;;;;MAQrBC,aAAaA;;;;;OAKJC,YAAYA;;kBAETC,aAAaA;;;;;;MAMzBC,qBAAqBA;;;;;;;;;;;kBAWTC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA8IPC,MAAMA;;;;;;;;;;;kBAWNC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA6EPC,QAAQA;;;;;;;;kBAQRC,SAASA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aA4jBdC,MAAMA;;;;;;;;;;;;;;aAcNC,iBAAiBA;;;;;;;;;;;;aAYjBC,qBAAqBA;;;;;;;;;;;;aAYrBC,iBAAiBA;;;;;;;;;;aAUjBC,WAAWA;;;;;;;;;;aAUXC,UAAUA;;;;;;aAMVC,UAAUA;;;;;;aAMVC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;aA0BPC,SAASA;;;;;kBAKJC,WAAWA;;;;;;;;;;;;aAYhBC,IAAIA;;;;;;;;;;;;kBAYCC,SAASA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAyHTC,eAAeA;;;;;;;;;;;;;;;;;;;;;;;;;;kBA0BfC,gBAAgBA
|
|
229
|
+
"mappings": "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",
|
|
229
230
|
"ignoreList": []
|
|
230
231
|
}
|