@sveltejs/kit 2.49.5 → 2.50.1
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 +1 -1
- package/src/core/generate_manifest/find_server_assets.js +4 -1
- package/src/exports/public.d.ts +15 -26
- package/src/exports/vite/index.js +8 -0
- package/src/runtime/app/server/remote/form.js +9 -25
- package/src/runtime/client/client.js +6 -5
- package/src/runtime/client/remote-functions/form.svelte.js +9 -60
- package/src/types/private.d.ts +2 -0
- package/src/version.js +1 -1
- package/types/index.d.ts +15 -25
- package/types/index.d.ts.map +3 -1
package/package.json
CHANGED
|
@@ -13,7 +13,6 @@ export function find_server_assets(build_data, routes) {
|
|
|
13
13
|
*/
|
|
14
14
|
const used_nodes = new Set([0, 1]);
|
|
15
15
|
|
|
16
|
-
// TODO add hooks.server.js asset imports
|
|
17
16
|
/** @type {Set<string>} */
|
|
18
17
|
const server_assets = new Set();
|
|
19
18
|
|
|
@@ -49,5 +48,9 @@ export function find_server_assets(build_data, routes) {
|
|
|
49
48
|
add_assets(build_data.manifest_data.hooks.server);
|
|
50
49
|
}
|
|
51
50
|
|
|
51
|
+
if (build_data.manifest_data.hooks.universal) {
|
|
52
|
+
add_assets(build_data.manifest_data.hooks.universal);
|
|
53
|
+
}
|
|
54
|
+
|
|
52
55
|
return Array.from(server_assets);
|
|
53
56
|
}
|
package/src/exports/public.d.ts
CHANGED
|
@@ -15,7 +15,8 @@ import {
|
|
|
15
15
|
PrerenderUnseenRoutesHandlerValue,
|
|
16
16
|
PrerenderOption,
|
|
17
17
|
RequestOptions,
|
|
18
|
-
RouteSegment
|
|
18
|
+
RouteSegment,
|
|
19
|
+
IsAny
|
|
19
20
|
} from '../types/private.js';
|
|
20
21
|
import { BuildData, SSRNodeLoader, SSRRoute, ValidatedConfig } from 'types';
|
|
21
22
|
import { SvelteConfig } from '@sveltejs/vite-plugin-svelte';
|
|
@@ -1953,6 +1954,18 @@ type UnknownField<Value> = RemoteFormFieldMethods<Value> & {
|
|
|
1953
1954
|
[key: string | number]: UnknownField<any>;
|
|
1954
1955
|
};
|
|
1955
1956
|
|
|
1957
|
+
type RemoteFormFieldsRoot<Input extends RemoteFormInput | void> =
|
|
1958
|
+
IsAny<Input> extends true
|
|
1959
|
+
? RecursiveFormFields
|
|
1960
|
+
: Input extends void
|
|
1961
|
+
? {
|
|
1962
|
+
/** Validation issues, if any */
|
|
1963
|
+
issues(): RemoteFormIssue[] | undefined;
|
|
1964
|
+
/** Validation issues belonging to this or any of the fields that belong to it, if any */
|
|
1965
|
+
allIssues(): RemoteFormIssue[] | undefined;
|
|
1966
|
+
}
|
|
1967
|
+
: RemoteFormFields<Input>;
|
|
1968
|
+
|
|
1956
1969
|
/**
|
|
1957
1970
|
* Recursive type to build form fields structure with proxy access
|
|
1958
1971
|
*/
|
|
@@ -2077,31 +2090,7 @@ export type RemoteForm<Input extends RemoteFormInput | void, Output> = {
|
|
|
2077
2090
|
/** The number of pending submissions */
|
|
2078
2091
|
get pending(): number;
|
|
2079
2092
|
/** Access form fields using object notation */
|
|
2080
|
-
fields:
|
|
2081
|
-
/** Spread this onto a `<button>` or `<input type="submit">` */
|
|
2082
|
-
buttonProps: {
|
|
2083
|
-
type: 'submit';
|
|
2084
|
-
formmethod: 'POST';
|
|
2085
|
-
formaction: string;
|
|
2086
|
-
onclick: (event: Event) => void;
|
|
2087
|
-
/** Use the `enhance` method to influence what happens when the form is submitted. */
|
|
2088
|
-
enhance(
|
|
2089
|
-
callback: (opts: {
|
|
2090
|
-
form: HTMLFormElement;
|
|
2091
|
-
data: Input;
|
|
2092
|
-
submit: () => Promise<void> & {
|
|
2093
|
-
updates: (...queries: Array<RemoteQuery<any> | RemoteQueryOverride>) => Promise<void>;
|
|
2094
|
-
};
|
|
2095
|
-
}) => void | Promise<void>
|
|
2096
|
-
): {
|
|
2097
|
-
type: 'submit';
|
|
2098
|
-
formmethod: 'POST';
|
|
2099
|
-
formaction: string;
|
|
2100
|
-
onclick: (event: Event) => void;
|
|
2101
|
-
};
|
|
2102
|
-
/** The number of pending submissions */
|
|
2103
|
-
get pending(): number;
|
|
2104
|
-
};
|
|
2093
|
+
fields: RemoteFormFieldsRoot<Input>;
|
|
2105
2094
|
};
|
|
2106
2095
|
|
|
2107
2096
|
/**
|
|
@@ -848,6 +848,14 @@ async function kit({ svelte_config }) {
|
|
|
848
848
|
input[name] = path.resolve(file);
|
|
849
849
|
});
|
|
850
850
|
|
|
851
|
+
// ...and the hooks files
|
|
852
|
+
if (manifest_data.hooks.server) {
|
|
853
|
+
input['entries/hooks.server'] = path.resolve(manifest_data.hooks.server);
|
|
854
|
+
}
|
|
855
|
+
if (manifest_data.hooks.universal) {
|
|
856
|
+
input['entries/hooks.universal'] = path.resolve(manifest_data.hooks.universal);
|
|
857
|
+
}
|
|
858
|
+
|
|
851
859
|
// ...and the server instrumentation file
|
|
852
860
|
const server_instrumentation = resolve_entry(
|
|
853
861
|
path.join(kit.files.src, 'instrumentation.server')
|
|
@@ -84,21 +84,6 @@ export function form(validate_or_fn, maybe_fn) {
|
|
|
84
84
|
}
|
|
85
85
|
});
|
|
86
86
|
|
|
87
|
-
const button_props = {
|
|
88
|
-
type: 'submit',
|
|
89
|
-
onclick: () => {}
|
|
90
|
-
};
|
|
91
|
-
|
|
92
|
-
Object.defineProperty(button_props, 'enhance', {
|
|
93
|
-
value: () => {
|
|
94
|
-
return { type: 'submit', formaction: instance.buttonProps.formaction, onclick: () => {} };
|
|
95
|
-
}
|
|
96
|
-
});
|
|
97
|
-
|
|
98
|
-
Object.defineProperty(instance, 'buttonProps', {
|
|
99
|
-
value: button_props
|
|
100
|
-
});
|
|
101
|
-
|
|
102
87
|
/** @type {RemoteInfo} */
|
|
103
88
|
const __ = {
|
|
104
89
|
type: 'form',
|
|
@@ -190,11 +175,6 @@ export function form(validate_or_fn, maybe_fn) {
|
|
|
190
175
|
enumerable: true
|
|
191
176
|
});
|
|
192
177
|
|
|
193
|
-
Object.defineProperty(button_props, 'formaction', {
|
|
194
|
-
get: () => `?/remote=${__.id}`,
|
|
195
|
-
enumerable: true
|
|
196
|
-
});
|
|
197
|
-
|
|
198
178
|
Object.defineProperty(instance, 'fields', {
|
|
199
179
|
get() {
|
|
200
180
|
const data = get_cache(__)?.[''];
|
|
@@ -222,6 +202,15 @@ export function form(validate_or_fn, maybe_fn) {
|
|
|
222
202
|
// TODO 3.0 remove
|
|
223
203
|
if (DEV) {
|
|
224
204
|
throw_on_old_property_access(instance);
|
|
205
|
+
|
|
206
|
+
Object.defineProperty(instance, 'buttonProps', {
|
|
207
|
+
get() {
|
|
208
|
+
throw new Error(
|
|
209
|
+
'`form.buttonProps` has been removed: Instead of `<button {...form.buttonProps}>, use `<button {...form.fields.action.as("submit", "value")}>`.' +
|
|
210
|
+
' See the PR for more info: https://github.com/sveltejs/kit/pull/14622'
|
|
211
|
+
);
|
|
212
|
+
}
|
|
213
|
+
});
|
|
225
214
|
}
|
|
226
215
|
|
|
227
216
|
Object.defineProperty(instance, 'result', {
|
|
@@ -239,11 +228,6 @@ export function form(validate_or_fn, maybe_fn) {
|
|
|
239
228
|
get: () => 0
|
|
240
229
|
});
|
|
241
230
|
|
|
242
|
-
// On the server, buttonProps.pending is always 0
|
|
243
|
-
Object.defineProperty(button_props, 'pending', {
|
|
244
|
-
get: () => 0
|
|
245
|
-
});
|
|
246
|
-
|
|
247
231
|
Object.defineProperty(instance, 'preflight', {
|
|
248
232
|
// preflight is a noop on the server
|
|
249
233
|
value: () => instance
|
|
@@ -1860,8 +1860,8 @@ if (import.meta.hot) {
|
|
|
1860
1860
|
function setup_preload() {
|
|
1861
1861
|
/** @type {NodeJS.Timeout} */
|
|
1862
1862
|
let mousemove_timeout;
|
|
1863
|
-
/** @type {Element} */
|
|
1864
|
-
let current_a;
|
|
1863
|
+
/** @type {{ element: Element | SVGAElement | undefined; href: string | SVGAnimatedString | undefined }} */
|
|
1864
|
+
let current_a = { element: undefined, href: undefined };
|
|
1865
1865
|
/** @type {PreloadDataPriority} */
|
|
1866
1866
|
let current_priority;
|
|
1867
1867
|
|
|
@@ -1903,7 +1903,8 @@ function setup_preload() {
|
|
|
1903
1903
|
const a = find_anchor(element, container);
|
|
1904
1904
|
|
|
1905
1905
|
// we don't want to preload data again if the user has already hovered/tapped
|
|
1906
|
-
const interacted =
|
|
1906
|
+
const interacted =
|
|
1907
|
+
a === current_a.element && a?.href === current_a.href && priority >= current_priority;
|
|
1907
1908
|
if (!a || interacted) return;
|
|
1908
1909
|
|
|
1909
1910
|
const { url, external, download } = get_link_info(a, base, app.hash);
|
|
@@ -1916,7 +1917,7 @@ function setup_preload() {
|
|
|
1916
1917
|
if (options.reload || same_url) return;
|
|
1917
1918
|
|
|
1918
1919
|
if (priority <= options.preload_data) {
|
|
1919
|
-
current_a = a;
|
|
1920
|
+
current_a = { element: a, href: a.href };
|
|
1920
1921
|
// we don't want to preload data again on tap if we've already preloaded it on hover
|
|
1921
1922
|
current_priority = PRELOAD_PRIORITIES.tap;
|
|
1922
1923
|
|
|
@@ -1938,7 +1939,7 @@ function setup_preload() {
|
|
|
1938
1939
|
void _preload_data(intent);
|
|
1939
1940
|
}
|
|
1940
1941
|
} else if (priority <= options.preload_code) {
|
|
1941
|
-
current_a = a;
|
|
1942
|
+
current_a = { element: a, href: a.href };
|
|
1942
1943
|
current_priority = priority;
|
|
1943
1944
|
void _preload_code(/** @type {URL} */ (url));
|
|
1944
1945
|
}
|
|
@@ -425,74 +425,23 @@ export function form(id) {
|
|
|
425
425
|
)
|
|
426
426
|
);
|
|
427
427
|
|
|
428
|
-
/** @param {Parameters<RemoteForm<any, any>['buttonProps']['enhance']>[0]} callback */
|
|
429
|
-
const form_action_onclick = (callback) => {
|
|
430
|
-
/** @param {Event} event */
|
|
431
|
-
return async (event) => {
|
|
432
|
-
const target = /** @type {HTMLButtonElement} */ (event.currentTarget);
|
|
433
|
-
const form = target.form;
|
|
434
|
-
if (!form) return;
|
|
435
|
-
|
|
436
|
-
// Prevent this from firing the form's submit event
|
|
437
|
-
event.stopPropagation();
|
|
438
|
-
event.preventDefault();
|
|
439
|
-
|
|
440
|
-
const form_data = new FormData(form, target);
|
|
441
|
-
|
|
442
|
-
if (DEV) {
|
|
443
|
-
const enctype = target.hasAttribute('formenctype')
|
|
444
|
-
? target.formEnctype
|
|
445
|
-
: clone(form).enctype;
|
|
446
|
-
|
|
447
|
-
validate_form_data(form_data, enctype);
|
|
448
|
-
}
|
|
449
|
-
|
|
450
|
-
await handle_submit(form, form_data, callback);
|
|
451
|
-
};
|
|
452
|
-
};
|
|
453
|
-
|
|
454
|
-
/** @type {RemoteForm<any, any>['buttonProps']} */
|
|
455
|
-
// @ts-expect-error we gotta set enhance as a non-enumerable property
|
|
456
|
-
const button_props = {
|
|
457
|
-
type: 'submit',
|
|
458
|
-
formmethod: 'POST',
|
|
459
|
-
formaction: action,
|
|
460
|
-
onclick: form_action_onclick(({ submit, form }) =>
|
|
461
|
-
submit().then(() => {
|
|
462
|
-
if (!issues.$) {
|
|
463
|
-
form.reset();
|
|
464
|
-
}
|
|
465
|
-
})
|
|
466
|
-
)
|
|
467
|
-
};
|
|
468
|
-
|
|
469
|
-
Object.defineProperty(button_props, 'enhance', {
|
|
470
|
-
/** @type {RemoteForm<any, any>['buttonProps']['enhance']} */
|
|
471
|
-
value: (callback) => {
|
|
472
|
-
return {
|
|
473
|
-
type: 'submit',
|
|
474
|
-
formmethod: 'POST',
|
|
475
|
-
formaction: action,
|
|
476
|
-
onclick: form_action_onclick(callback)
|
|
477
|
-
};
|
|
478
|
-
}
|
|
479
|
-
});
|
|
480
|
-
|
|
481
|
-
Object.defineProperty(button_props, 'pending', {
|
|
482
|
-
get: () => pending_count
|
|
483
|
-
});
|
|
484
|
-
|
|
485
428
|
let validate_id = 0;
|
|
486
429
|
|
|
487
430
|
// TODO 3.0 remove
|
|
488
431
|
if (DEV) {
|
|
489
432
|
throw_on_old_property_access(instance);
|
|
433
|
+
|
|
434
|
+
Object.defineProperty(instance, 'buttonProps', {
|
|
435
|
+
get() {
|
|
436
|
+
throw new Error(
|
|
437
|
+
'`form.buttonProps` has been removed: Instead of `<button {...form.buttonProps}>, use `<button {...form.fields.action.as("submit", "value")}>`.' +
|
|
438
|
+
' See the PR for more info: https://github.com/sveltejs/kit/pull/14622'
|
|
439
|
+
);
|
|
440
|
+
}
|
|
441
|
+
});
|
|
490
442
|
}
|
|
491
443
|
|
|
492
444
|
Object.defineProperties(instance, {
|
|
493
|
-
buttonProps: {
|
|
494
|
-
value: button_props
|
|
495
|
-
},
|
|
496
445
|
fields: {
|
|
497
446
|
get: () =>
|
|
498
447
|
create_field_proxy(
|
package/src/types/private.d.ts
CHANGED
package/src/version.js
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -1929,6 +1929,18 @@ declare module '@sveltejs/kit' {
|
|
|
1929
1929
|
[key: string | number]: UnknownField<any>;
|
|
1930
1930
|
};
|
|
1931
1931
|
|
|
1932
|
+
type RemoteFormFieldsRoot<Input extends RemoteFormInput | void> =
|
|
1933
|
+
IsAny<Input> extends true
|
|
1934
|
+
? RecursiveFormFields
|
|
1935
|
+
: Input extends void
|
|
1936
|
+
? {
|
|
1937
|
+
/** Validation issues, if any */
|
|
1938
|
+
issues(): RemoteFormIssue[] | undefined;
|
|
1939
|
+
/** Validation issues belonging to this or any of the fields that belong to it, if any */
|
|
1940
|
+
allIssues(): RemoteFormIssue[] | undefined;
|
|
1941
|
+
}
|
|
1942
|
+
: RemoteFormFields<Input>;
|
|
1943
|
+
|
|
1932
1944
|
/**
|
|
1933
1945
|
* Recursive type to build form fields structure with proxy access
|
|
1934
1946
|
*/
|
|
@@ -2053,31 +2065,7 @@ declare module '@sveltejs/kit' {
|
|
|
2053
2065
|
/** The number of pending submissions */
|
|
2054
2066
|
get pending(): number;
|
|
2055
2067
|
/** Access form fields using object notation */
|
|
2056
|
-
fields:
|
|
2057
|
-
/** Spread this onto a `<button>` or `<input type="submit">` */
|
|
2058
|
-
buttonProps: {
|
|
2059
|
-
type: 'submit';
|
|
2060
|
-
formmethod: 'POST';
|
|
2061
|
-
formaction: string;
|
|
2062
|
-
onclick: (event: Event) => void;
|
|
2063
|
-
/** Use the `enhance` method to influence what happens when the form is submitted. */
|
|
2064
|
-
enhance(
|
|
2065
|
-
callback: (opts: {
|
|
2066
|
-
form: HTMLFormElement;
|
|
2067
|
-
data: Input;
|
|
2068
|
-
submit: () => Promise<void> & {
|
|
2069
|
-
updates: (...queries: Array<RemoteQuery<any> | RemoteQueryOverride>) => Promise<void>;
|
|
2070
|
-
};
|
|
2071
|
-
}) => void | Promise<void>
|
|
2072
|
-
): {
|
|
2073
|
-
type: 'submit';
|
|
2074
|
-
formmethod: 'POST';
|
|
2075
|
-
formaction: string;
|
|
2076
|
-
onclick: (event: Event) => void;
|
|
2077
|
-
};
|
|
2078
|
-
/** The number of pending submissions */
|
|
2079
|
-
get pending(): number;
|
|
2080
|
-
};
|
|
2068
|
+
fields: RemoteFormFieldsRoot<Input>;
|
|
2081
2069
|
};
|
|
2082
2070
|
|
|
2083
2071
|
/**
|
|
@@ -2395,6 +2383,8 @@ declare module '@sveltejs/kit' {
|
|
|
2395
2383
|
}
|
|
2396
2384
|
|
|
2397
2385
|
type TrailingSlash = 'never' | 'always' | 'ignore';
|
|
2386
|
+
|
|
2387
|
+
type IsAny<T> = 0 extends 1 & T ? true : false;
|
|
2398
2388
|
interface Asset {
|
|
2399
2389
|
file: string;
|
|
2400
2390
|
size: number;
|
package/types/index.d.ts.map
CHANGED
|
@@ -68,6 +68,7 @@
|
|
|
68
68
|
"RemoteFormField",
|
|
69
69
|
"RemoteFormFieldContainer",
|
|
70
70
|
"UnknownField",
|
|
71
|
+
"RemoteFormFieldsRoot",
|
|
71
72
|
"RemoteFormFields",
|
|
72
73
|
"RecursiveFormFields",
|
|
73
74
|
"MaybeArray",
|
|
@@ -102,6 +103,7 @@
|
|
|
102
103
|
"RequestOptions",
|
|
103
104
|
"RouteSegment",
|
|
104
105
|
"TrailingSlash",
|
|
106
|
+
"IsAny",
|
|
105
107
|
"Asset",
|
|
106
108
|
"BuildData",
|
|
107
109
|
"ManifestData",
|
|
@@ -215,6 +217,6 @@
|
|
|
215
217
|
null,
|
|
216
218
|
null
|
|
217
219
|
],
|
|
218
|
-
"mappings": ";;;;;;;;
|
|
220
|
+
"mappings": "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",
|
|
219
221
|
"ignoreList": []
|
|
220
222
|
}
|