@sveltejs/kit 2.59.1 → 2.60.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 +1 -1
- package/src/exports/public.d.ts +11 -7
- package/src/runtime/app/server/remote/query.js +6 -0
- package/src/runtime/client/client.js +12 -9
- package/src/runtime/client/remote-functions/form.svelte.js +53 -1
- package/src/runtime/form-utils.js +21 -9
- package/src/version.js +1 -1
- package/types/index.d.ts +11 -7
- package/types/index.d.ts.map +1 -1
package/package.json
CHANGED
package/src/exports/public.d.ts
CHANGED
|
@@ -1905,8 +1905,8 @@ type InputTypeMap = {
|
|
|
1905
1905
|
checkbox: boolean | string[];
|
|
1906
1906
|
radio: string;
|
|
1907
1907
|
file: File;
|
|
1908
|
-
hidden: string;
|
|
1909
|
-
submit: string;
|
|
1908
|
+
hidden: string | number | boolean;
|
|
1909
|
+
submit: string | number | boolean;
|
|
1910
1910
|
button: string;
|
|
1911
1911
|
reset: string;
|
|
1912
1912
|
image: string;
|
|
@@ -1997,11 +1997,15 @@ type AsArgs<Type extends keyof InputTypeMap, Value> = Type extends 'checkbox'
|
|
|
1997
1997
|
: Value extends boolean
|
|
1998
1998
|
? [type: Type] | [type: Type, value: boolean]
|
|
1999
1999
|
: [type: Type] | [type: Type, value: Value | (string & {})]
|
|
2000
|
-
: Type extends '
|
|
2001
|
-
?
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2000
|
+
: Type extends 'submit' | 'hidden'
|
|
2001
|
+
? Value extends string
|
|
2002
|
+
? [type: Type, value: Value | (string & {})]
|
|
2003
|
+
: [type: Type, value: Value]
|
|
2004
|
+
: Type extends 'radio'
|
|
2005
|
+
? [type: Type, value: Value | (string & {})]
|
|
2006
|
+
: Type extends 'file' | 'file multiple'
|
|
2007
|
+
? [type: Type]
|
|
2008
|
+
: [type: Type] | [type: Type, value: Value | (string & {})];
|
|
2005
2009
|
|
|
2006
2010
|
/**
|
|
2007
2011
|
* Form field accessor type that provides name(), value(), and issues() methods
|
|
@@ -434,6 +434,12 @@ function create_query_resource(__, payload, state, fn) {
|
|
|
434
434
|
return false;
|
|
435
435
|
},
|
|
436
436
|
refresh() {
|
|
437
|
+
const { event } = get_request_store();
|
|
438
|
+
if (!event.isRemoteRequest) {
|
|
439
|
+
// If the form submission is not a remote request, refreshing the data is
|
|
440
|
+
// useless, because it can't be returned to the client.
|
|
441
|
+
return Promise.resolve();
|
|
442
|
+
}
|
|
437
443
|
const refresh_context = get_refresh_context(__, 'refresh', payload);
|
|
438
444
|
const is_immediate_refresh = !refresh_context.cache[refresh_context.payload];
|
|
439
445
|
const value = is_immediate_refresh ? get_promise() : fn();
|
|
@@ -675,7 +675,7 @@ async function initialize(result, target, hydrate) {
|
|
|
675
675
|
const style = document.querySelector('style[data-sveltekit]');
|
|
676
676
|
if (style) style.remove();
|
|
677
677
|
|
|
678
|
-
|
|
678
|
+
update(/** @type {import('@sveltejs/kit').Page} */ (result.props.page));
|
|
679
679
|
|
|
680
680
|
root = new app.root({
|
|
681
681
|
target,
|
|
@@ -1917,6 +1917,17 @@ async function navigate({
|
|
|
1917
1917
|
await svelte.tick();
|
|
1918
1918
|
await svelte.tick();
|
|
1919
1919
|
|
|
1920
|
+
if (token !== nav_token) {
|
|
1921
|
+
// a new navigation happened while we were waiting for the DOM to update, so abort
|
|
1922
|
+
nav.reject(new Error('navigation aborted'));
|
|
1923
|
+
return false;
|
|
1924
|
+
}
|
|
1925
|
+
|
|
1926
|
+
// Check for async rendering error
|
|
1927
|
+
if (navigation_result.props.page && rendering_error) {
|
|
1928
|
+
Object.assign(navigation_result.props.page, rendering_error);
|
|
1929
|
+
}
|
|
1930
|
+
|
|
1920
1931
|
// we reset scroll before dealing with focus, to avoid a flash of unscrolled content
|
|
1921
1932
|
/** @type {Element | null | ''} */
|
|
1922
1933
|
let deep_linked = null;
|
|
@@ -1951,14 +1962,6 @@ async function navigate({
|
|
|
1951
1962
|
|
|
1952
1963
|
autoscroll = true;
|
|
1953
1964
|
|
|
1954
|
-
if (navigation_result.props.page) {
|
|
1955
|
-
// Check for async rendering error
|
|
1956
|
-
if (rendering_error) {
|
|
1957
|
-
Object.assign(navigation_result.props.page, rendering_error);
|
|
1958
|
-
}
|
|
1959
|
-
Object.assign(page, navigation_result.props.page);
|
|
1960
|
-
}
|
|
1961
|
-
|
|
1962
1965
|
is_navigating = false;
|
|
1963
1966
|
|
|
1964
1967
|
if (type === 'popstate') {
|
|
@@ -87,6 +87,38 @@ export function form(id) {
|
|
|
87
87
|
|
|
88
88
|
let submitted = false;
|
|
89
89
|
|
|
90
|
+
/** @type {InternalRemoteFormIssue[] | null} */
|
|
91
|
+
let unread_issues = null;
|
|
92
|
+
|
|
93
|
+
/**
|
|
94
|
+
* In dev, warn if there are validation issues going unread
|
|
95
|
+
*/
|
|
96
|
+
function warn_on_missing_issue_reads() {
|
|
97
|
+
unread_issues = raw_issues;
|
|
98
|
+
|
|
99
|
+
setTimeout(() => {
|
|
100
|
+
if (unread_issues === null) {
|
|
101
|
+
return;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
if (unread_issues.length > 0) {
|
|
105
|
+
const message = `Form submission had invalid data, but the validation issues were ignored:`;
|
|
106
|
+
const summary = unread_issues
|
|
107
|
+
.map((issue) =>
|
|
108
|
+
issue.path.length === 0
|
|
109
|
+
? ` - ${issue.message}`
|
|
110
|
+
: ` - ${issue.path.join('.')} (${issue.message})`
|
|
111
|
+
)
|
|
112
|
+
.join('\n');
|
|
113
|
+
const suggestion = `Make sure you provide actionable feedback to users, using e.g. \`myForm.fields.myField.issues()\` or \`myForm.fields.allIssues()\``;
|
|
114
|
+
|
|
115
|
+
console.warn(`${message}\n\n${summary}\n\n${suggestion}`);
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
unread_issues = null;
|
|
119
|
+
});
|
|
120
|
+
}
|
|
121
|
+
|
|
90
122
|
/**
|
|
91
123
|
* @param {FormData} form_data
|
|
92
124
|
* @returns {Record<string, any>}
|
|
@@ -121,6 +153,11 @@ export function form(id) {
|
|
|
121
153
|
raw_issues,
|
|
122
154
|
validated.issues.map((issue) => normalize_issue(issue, false))
|
|
123
155
|
);
|
|
156
|
+
|
|
157
|
+
if (DEV) {
|
|
158
|
+
warn_on_missing_issue_reads();
|
|
159
|
+
}
|
|
160
|
+
|
|
124
161
|
pending_count--;
|
|
125
162
|
return;
|
|
126
163
|
}
|
|
@@ -244,6 +281,10 @@ export function form(id) {
|
|
|
244
281
|
apply_reconnections(form_result.reconnects);
|
|
245
282
|
}
|
|
246
283
|
}
|
|
284
|
+
} else {
|
|
285
|
+
if (DEV) {
|
|
286
|
+
warn_on_missing_issue_reads();
|
|
287
|
+
}
|
|
247
288
|
}
|
|
248
289
|
|
|
249
290
|
return succeeded;
|
|
@@ -523,7 +564,18 @@ export function form(id) {
|
|
|
523
564
|
touched[key] = true;
|
|
524
565
|
}
|
|
525
566
|
},
|
|
526
|
-
() =>
|
|
567
|
+
(path, all) => {
|
|
568
|
+
if (DEV && unread_issues !== null && path !== undefined) {
|
|
569
|
+
unread_issues = unread_issues.filter((issue) => {
|
|
570
|
+
return (
|
|
571
|
+
(all ? issue.path.slice(0, path.length) : issue.path).join('.') !==
|
|
572
|
+
path.join('.')
|
|
573
|
+
);
|
|
574
|
+
});
|
|
575
|
+
}
|
|
576
|
+
|
|
577
|
+
return issues;
|
|
578
|
+
}
|
|
527
579
|
)
|
|
528
580
|
},
|
|
529
581
|
result: {
|
|
@@ -601,12 +601,29 @@ export function deep_get(object, path) {
|
|
|
601
601
|
return current;
|
|
602
602
|
}
|
|
603
603
|
|
|
604
|
+
/**
|
|
605
|
+
*
|
|
606
|
+
* @param {string} field_type
|
|
607
|
+
* @param {boolean} is_array
|
|
608
|
+
* @param {unknown} input_value
|
|
609
|
+
*/
|
|
610
|
+
function get_type_prefix(field_type, is_array, input_value) {
|
|
611
|
+
if (field_type === 'number' || field_type === 'range') return 'n:';
|
|
612
|
+
if (field_type === 'checkbox' && !is_array) return 'b:';
|
|
613
|
+
if (field_type === 'hidden' || field_type === 'submit') {
|
|
614
|
+
const input_type = typeof input_value;
|
|
615
|
+
if (input_type === 'number') return 'n:';
|
|
616
|
+
if (input_type === 'boolean') return 'b:';
|
|
617
|
+
}
|
|
618
|
+
return '';
|
|
619
|
+
}
|
|
620
|
+
|
|
604
621
|
/**
|
|
605
622
|
* Creates a proxy-based field accessor for form data
|
|
606
623
|
* @param {any} target - Function or empty POJO
|
|
607
624
|
* @param {() => Record<string, any>} get_input - Function to get current input data
|
|
608
625
|
* @param {(path: (string | number)[], value: any) => void} set_input - Function to set input data
|
|
609
|
-
* @param {() => Record<string, InternalRemoteFormIssue[]>} get_issues - Function to get current issues
|
|
626
|
+
* @param {(path?: (string | number)[], all?: boolean) => Record<string, InternalRemoteFormIssue[]>} get_issues - Function to get current issues
|
|
610
627
|
* @param {(string | number)[]} path - Current access path
|
|
611
628
|
* @returns {any} Proxy object with name(), value(), and issues() methods
|
|
612
629
|
*/
|
|
@@ -643,7 +660,7 @@ export function create_field_proxy(target, get_input, set_input, get_issues, pat
|
|
|
643
660
|
|
|
644
661
|
if (prop === 'issues' || prop === 'allIssues') {
|
|
645
662
|
const issues_func = () => {
|
|
646
|
-
const all_issues = get_issues()[key === '' ? '$' : key];
|
|
663
|
+
const all_issues = get_issues(path, prop === 'allIssues')[key === '' ? '$' : key];
|
|
647
664
|
|
|
648
665
|
if (prop === 'allIssues') {
|
|
649
666
|
return all_issues?.map((issue) => ({
|
|
@@ -674,12 +691,7 @@ export function create_field_proxy(target, get_input, set_input, get_issues, pat
|
|
|
674
691
|
type === 'select multiple' ||
|
|
675
692
|
(type === 'checkbox' && typeof input_value === 'string');
|
|
676
693
|
|
|
677
|
-
const prefix =
|
|
678
|
-
type === 'number' || type === 'range'
|
|
679
|
-
? 'n:'
|
|
680
|
-
: type === 'checkbox' && !is_array
|
|
681
|
-
? 'b:'
|
|
682
|
-
: '';
|
|
694
|
+
const prefix = get_type_prefix(type, is_array, input_value);
|
|
683
695
|
|
|
684
696
|
// Base properties for all input types
|
|
685
697
|
/** @type {Record<string, any>} */
|
|
@@ -699,7 +711,7 @@ export function create_field_proxy(target, get_input, set_input, get_issues, pat
|
|
|
699
711
|
// Handle submit and hidden inputs
|
|
700
712
|
if (type === 'submit' || type === 'hidden') {
|
|
701
713
|
if (DEV) {
|
|
702
|
-
if (
|
|
714
|
+
if (input_value === null || input_value === undefined) {
|
|
703
715
|
throw new Error(`\`${type}\` inputs must have a value`);
|
|
704
716
|
}
|
|
705
717
|
}
|
package/src/version.js
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -1879,8 +1879,8 @@ declare module '@sveltejs/kit' {
|
|
|
1879
1879
|
checkbox: boolean | string[];
|
|
1880
1880
|
radio: string;
|
|
1881
1881
|
file: File;
|
|
1882
|
-
hidden: string;
|
|
1883
|
-
submit: string;
|
|
1882
|
+
hidden: string | number | boolean;
|
|
1883
|
+
submit: string | number | boolean;
|
|
1884
1884
|
button: string;
|
|
1885
1885
|
reset: string;
|
|
1886
1886
|
image: string;
|
|
@@ -1971,11 +1971,15 @@ declare module '@sveltejs/kit' {
|
|
|
1971
1971
|
: Value extends boolean
|
|
1972
1972
|
? [type: Type] | [type: Type, value: boolean]
|
|
1973
1973
|
: [type: Type] | [type: Type, value: Value | (string & {})]
|
|
1974
|
-
: Type extends '
|
|
1975
|
-
?
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1974
|
+
: Type extends 'submit' | 'hidden'
|
|
1975
|
+
? Value extends string
|
|
1976
|
+
? [type: Type, value: Value | (string & {})]
|
|
1977
|
+
: [type: Type, value: Value]
|
|
1978
|
+
: Type extends 'radio'
|
|
1979
|
+
? [type: Type, value: Value | (string & {})]
|
|
1980
|
+
: Type extends 'file' | 'file multiple'
|
|
1981
|
+
? [type: Type]
|
|
1982
|
+
: [type: Type] | [type: Type, value: Value | (string & {})];
|
|
1979
1983
|
|
|
1980
1984
|
/**
|
|
1981
1985
|
* Form field accessor type that provides name(), value(), and issues() methods
|
package/types/index.d.ts.map
CHANGED
|
@@ -238,6 +238,6 @@
|
|
|
238
238
|
null,
|
|
239
239
|
null
|
|
240
240
|
],
|
|
241
|
-
"mappings": "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
|
|
241
|
+
"mappings": "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",
|
|
242
242
|
"ignoreList": []
|
|
243
243
|
}
|