@sveltejs/kit 2.49.5 → 2.50.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
CHANGED
package/src/exports/public.d.ts
CHANGED
|
@@ -2078,30 +2078,6 @@ export type RemoteForm<Input extends RemoteFormInput | void, Output> = {
|
|
|
2078
2078
|
get pending(): number;
|
|
2079
2079
|
/** Access form fields using object notation */
|
|
2080
2080
|
fields: RemoteFormFields<Input>;
|
|
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
|
-
};
|
|
2105
2081
|
};
|
|
2106
2082
|
|
|
2107
2083
|
/**
|
|
@@ -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
|
|
@@ -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/version.js
CHANGED
package/types/index.d.ts
CHANGED
|
@@ -2054,30 +2054,6 @@ declare module '@sveltejs/kit' {
|
|
|
2054
2054
|
get pending(): number;
|
|
2055
2055
|
/** Access form fields using object notation */
|
|
2056
2056
|
fields: RemoteFormFields<Input>;
|
|
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
|
-
};
|
|
2081
2057
|
};
|
|
2082
2058
|
|
|
2083
2059
|
/**
|
package/types/index.d.ts.map
CHANGED
|
@@ -215,6 +215,6 @@
|
|
|
215
215
|
null,
|
|
216
216
|
null
|
|
217
217
|
],
|
|
218
|
-
"mappings": "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
|
|
218
|
+
"mappings": "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",
|
|
219
219
|
"ignoreList": []
|
|
220
220
|
}
|