@sveltejs/kit 2.43.8 → 2.45.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.
@@ -21,7 +21,8 @@ import {
21
21
  ServerInit,
22
22
  ClientInit,
23
23
  Transport,
24
- HandleValidationError
24
+ HandleValidationError,
25
+ RemoteFormIssue
25
26
  } from '@sveltejs/kit';
26
27
  import {
27
28
  HttpMethod,
@@ -580,6 +581,12 @@ export type RemoteInfo =
580
581
  inputs?: RemotePrerenderInputsGenerator;
581
582
  };
582
583
 
584
+ export interface InternalRemoteFormIssue extends RemoteFormIssue {
585
+ name: string;
586
+ path: Array<string | number>;
587
+ server?: boolean;
588
+ }
589
+
583
590
  export type RecordSpan = <T>(options: {
584
591
  name: string;
585
592
  attributes: Record<string, any>;
@@ -597,6 +604,7 @@ export interface RequestState {
597
604
  tracing: {
598
605
  record_span: RecordSpan;
599
606
  };
607
+ is_in_remote_function: boolean;
600
608
  form_instances?: Map<any, any>;
601
609
  remote_data?: Map<RemoteInfo, Record<string, MaybePromise<any>>>;
602
610
  refreshes?: Record<string, Promise<any>>;
package/src/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  // generated during release, do not modify
2
2
 
3
3
  /** @type {string} */
4
- export const VERSION = '2.43.8';
4
+ export const VERSION = '2.45.0';
package/types/index.d.ts CHANGED
@@ -1789,81 +1789,138 @@ declare module '@sveltejs/kit' {
1789
1789
  // If T is unknown or has an index signature, the types below will recurse indefinitely and create giant unions that TS can't handle
1790
1790
  type WillRecurseIndefinitely<T> = unknown extends T ? true : string extends keyof T ? true : false;
1791
1791
 
1792
- // Helper type to convert union to intersection
1793
- type UnionToIntersection<U> = (U extends any ? (k: U) => void : never) extends (k: infer I) => void
1794
- ? I
1795
- : never;
1796
-
1797
- type FlattenInput<T, Prefix extends string> = T extends string | number | boolean | null | undefined
1798
- ? { [P in Prefix]: string }
1799
- : WillRecurseIndefinitely<T> extends true
1800
- ? { [key: string]: string }
1801
- : T extends Array<infer U>
1802
- ? U extends string | File
1803
- ? { [P in Prefix]: string[] }
1804
- : FlattenInput<U, `${Prefix}[${number}]`>
1805
- : T extends File
1806
- ? { [P in Prefix]: string }
1807
- : {
1808
- // Required<T> is crucial here to avoid an undefined type to sneak into the union, which would turn the intersection into never
1809
- [K in keyof Required<T>]: FlattenInput<
1810
- T[K],
1811
- Prefix extends '' ? K & string : `${Prefix}.${K & string}`
1812
- >;
1813
- }[keyof T];
1814
-
1815
- type FlattenIssues<T, Prefix extends string> = T extends
1816
- | string
1817
- | number
1818
- | boolean
1819
- | null
1820
- | undefined
1821
- ? { [P in Prefix]: RemoteFormIssue[] }
1822
- : WillRecurseIndefinitely<T> extends true
1823
- ? { [key: string]: RemoteFormIssue[] }
1824
- : T extends Array<infer U>
1825
- ? { [P in Prefix | `${Prefix}[${number}]`]: RemoteFormIssue[] } & FlattenIssues<
1826
- U,
1827
- `${Prefix}[${number}]`
1828
- >
1829
- : T extends File
1830
- ? { [P in Prefix]: RemoteFormIssue[] }
1831
- : {
1832
- // Required<T> is crucial here to avoid an undefined type to sneak into the union, which would turn the intersection into never
1833
- [K in keyof Required<T>]: FlattenIssues<
1834
- T[K],
1835
- Prefix extends '' ? K & string : `${Prefix}.${K & string}`
1836
- >;
1837
- }[keyof T];
1838
-
1839
- type FlattenKeys<T, Prefix extends string> = T extends string | number | boolean | null | undefined
1840
- ? { [P in Prefix]: string }
1841
- : WillRecurseIndefinitely<T> extends true
1842
- ? { [key: string]: string }
1843
- : T extends Array<infer U>
1844
- ? U extends string | File
1845
- ? { [P in `${Prefix}[]`]: string[] }
1846
- : FlattenKeys<U, `${Prefix}[${number}]`>
1847
- : T extends File
1848
- ? { [P in Prefix]: string }
1849
- : {
1850
- // Required<T> is crucial here to avoid an undefined type to sneak into the union, which would turn the intersection into never
1851
- [K in keyof Required<T>]: FlattenKeys<
1852
- T[K],
1853
- Prefix extends '' ? K & string : `${Prefix}.${K & string}`
1854
- >;
1855
- }[keyof T];
1792
+ // Input type mappings for form fields
1793
+ type InputTypeMap = {
1794
+ text: string;
1795
+ email: string;
1796
+ password: string;
1797
+ url: string;
1798
+ tel: string;
1799
+ search: string;
1800
+ number: number;
1801
+ range: number;
1802
+ date: string;
1803
+ 'datetime-local': string;
1804
+ time: string;
1805
+ month: string;
1806
+ week: string;
1807
+ color: string;
1808
+ checkbox: boolean | string[];
1809
+ radio: string;
1810
+ file: File;
1811
+ hidden: string;
1812
+ submit: string;
1813
+ button: string;
1814
+ reset: string;
1815
+ image: string;
1816
+ select: string;
1817
+ 'select multiple': string[];
1818
+ 'file multiple': File[];
1819
+ };
1820
+
1821
+ // Valid input types for a given value type
1822
+ export type RemoteFormFieldType<T> = {
1823
+ [K in keyof InputTypeMap]: T extends InputTypeMap[K] ? K : never;
1824
+ }[keyof InputTypeMap];
1825
+
1826
+ // Input element properties based on type
1827
+ type InputElementProps<T extends keyof InputTypeMap> = T extends 'checkbox' | 'radio'
1828
+ ? {
1829
+ type: T;
1830
+ 'aria-invalid': boolean | 'false' | 'true' | undefined;
1831
+ get checked(): boolean;
1832
+ set checked(value: boolean);
1833
+ }
1834
+ : T extends 'file'
1835
+ ? {
1836
+ type: 'file';
1837
+ 'aria-invalid': boolean | 'false' | 'true' | undefined;
1838
+ get files(): FileList | null;
1839
+ set files(v: FileList | null);
1840
+ }
1841
+ : {
1842
+ type: T;
1843
+ 'aria-invalid': boolean | 'false' | 'true' | undefined;
1844
+ get value(): string | number;
1845
+ set value(v: string | number);
1846
+ };
1847
+
1848
+ type RemoteFormFieldMethods<T> = {
1849
+ /** The values that will be submitted */
1850
+ value(): T;
1851
+ /** Set the values that will be submitted */
1852
+ set(input: T): T;
1853
+ /** Validation issues, if any */
1854
+ issues(): RemoteFormIssue[] | undefined;
1855
+ };
1856
+
1857
+ export type RemoteFormFieldValue = string | string[] | number | boolean | File | File[];
1858
+
1859
+ type AsArgs<Type extends keyof InputTypeMap, Value> = Type extends 'checkbox'
1860
+ ? Value extends string[]
1861
+ ? [type: 'checkbox', value: Value[number] | (string & {})]
1862
+ : [type: Type]
1863
+ : Type extends 'radio'
1864
+ ? [type: 'radio', value: Value | (string & {})]
1865
+ : [type: Type];
1866
+
1867
+ /**
1868
+ * Form field accessor type that provides name(), value(), and issues() methods
1869
+ */
1870
+ export type RemoteFormField<Value extends RemoteFormFieldValue> = RemoteFormFieldMethods<Value> & {
1871
+ /**
1872
+ * Returns an object that can be spread onto an input element with the correct type attribute,
1873
+ * aria-invalid attribute if the field is invalid, and appropriate value/checked property getters/setters.
1874
+ * @example
1875
+ * ```svelte
1876
+ * <input {...myForm.fields.myString.as('text')} />
1877
+ * <input {...myForm.fields.myNumber.as('number')} />
1878
+ * <input {...myForm.fields.myBoolean.as('checkbox')} />
1879
+ * ```
1880
+ */
1881
+ as<T extends RemoteFormFieldType<Value>>(...args: AsArgs<T, Value>): InputElementProps<T>;
1882
+ };
1883
+
1884
+ type RemoteFormFieldContainer<Value> = RemoteFormFieldMethods<Value> & {
1885
+ /** Validation issues belonging to this or any of the fields that belong to it, if any */
1886
+ allIssues(): RemoteFormIssue[] | undefined;
1887
+ };
1888
+
1889
+ /**
1890
+ * Recursive type to build form fields structure with proxy access
1891
+ */
1892
+ type RemoteFormFields<T> =
1893
+ WillRecurseIndefinitely<T> extends true
1894
+ ? RecursiveFormFields
1895
+ : NonNullable<T> extends string | number | boolean | File
1896
+ ? RemoteFormField<NonNullable<T>>
1897
+ : T extends string[] | File[]
1898
+ ? RemoteFormField<T> & { [K in number]: RemoteFormField<T[number]> }
1899
+ : T extends Array<infer U>
1900
+ ? RemoteFormFieldContainer<T> & { [K in number]: RemoteFormFields<U> }
1901
+ : RemoteFormFieldContainer<T> & { [K in keyof T]-?: RemoteFormFields<T[K]> };
1902
+
1903
+ // By breaking this out into its own type, we avoid the TS recursion depth limit
1904
+ type RecursiveFormFields = RemoteFormField<any> & { [key: string]: RecursiveFormFields };
1905
+
1906
+ type MaybeArray<T> = T | T[];
1856
1907
 
1857
1908
  export interface RemoteFormInput {
1858
- [key: string]: FormDataEntryValue | FormDataEntryValue[] | RemoteFormInput | RemoteFormInput[];
1909
+ [key: string]: MaybeArray<string | number | boolean | File | RemoteFormInput>;
1859
1910
  }
1860
1911
 
1861
1912
  export interface RemoteFormIssue {
1862
- name: string;
1863
- path: Array<string | number>;
1864
1913
  message: string;
1865
1914
  }
1866
1915
 
1916
+ // If the schema specifies `id` as a string or number, ensure that `for(...)`
1917
+ // only accepts that type. Otherwise, accept `string | number`
1918
+ type ExtractId<Input> = Input extends { id: infer Id }
1919
+ ? Id extends string | number
1920
+ ? Id
1921
+ : string | number
1922
+ : string | number;
1923
+
1867
1924
  /**
1868
1925
  * The return value of a remote `form` function. See [Remote functions](https://svelte.dev/docs/kit/remote-functions#form) for full documentation.
1869
1926
  */
@@ -1888,8 +1945,8 @@ declare module '@sveltejs/kit' {
1888
1945
  [attachment: symbol]: (node: HTMLFormElement) => void;
1889
1946
  };
1890
1947
  /**
1891
- * Create an instance of the form for the given key.
1892
- * The key is stringified and used for deduplication to potentially reuse existing instances.
1948
+ * Create an instance of the form for the given `id`.
1949
+ * The `id` is stringified and used for deduplication to potentially reuse existing instances.
1893
1950
  * Useful when you have multiple forms that use the same remote form action, for example in a loop.
1894
1951
  * ```svelte
1895
1952
  * {#each todos as todo}
@@ -1901,15 +1958,7 @@ declare module '@sveltejs/kit' {
1901
1958
  * {/each}
1902
1959
  * ```
1903
1960
  */
1904
- for(key: string | number | boolean): Omit<RemoteForm<Input, Output>, 'for'>;
1905
- /**
1906
- * This method exists to allow you to typecheck `name` attributes. It returns its argument
1907
- * @example
1908
- * ```svelte
1909
- * <input name={login.field('username')} />
1910
- * ```
1911
- **/
1912
- field<Name extends keyof UnionToIntersection<FlattenKeys<Input, ''>>>(string: Name): Name;
1961
+ for(id: ExtractId<Input>): Omit<RemoteForm<Input, Output>, 'for'>;
1913
1962
  /** Preflight checks */
1914
1963
  preflight(schema: StandardSchemaV1<Input, any>): RemoteForm<Input, Output>;
1915
1964
  /** Validate the form contents programmatically */
@@ -1922,10 +1971,8 @@ declare module '@sveltejs/kit' {
1922
1971
  get result(): Output | undefined;
1923
1972
  /** The number of pending submissions */
1924
1973
  get pending(): number;
1925
- /** The submitted values */
1926
- input: null | UnionToIntersection<FlattenInput<Input, ''>>;
1927
- /** Validation issues */
1928
- issues: null | UnionToIntersection<FlattenIssues<Input, ''>>;
1974
+ /** Access form fields using object notation */
1975
+ fields: Input extends void ? never : RemoteFormFields<Input>;
1929
1976
  /** Spread this onto a `<button>` or `<input type="submit">` */
1930
1977
  buttonProps: {
1931
1978
  type: 'submit';
@@ -58,12 +58,20 @@
58
58
  "SubmitFunction",
59
59
  "Snapshot",
60
60
  "WillRecurseIndefinitely",
61
- "UnionToIntersection",
62
- "FlattenInput",
63
- "FlattenIssues",
64
- "FlattenKeys",
61
+ "InputTypeMap",
62
+ "RemoteFormFieldType",
63
+ "InputElementProps",
64
+ "RemoteFormFieldMethods",
65
+ "RemoteFormFieldValue",
66
+ "AsArgs",
67
+ "RemoteFormField",
68
+ "RemoteFormFieldContainer",
69
+ "RemoteFormFields",
70
+ "RecursiveFormFields",
71
+ "MaybeArray",
65
72
  "RemoteFormInput",
66
73
  "RemoteFormIssue",
74
+ "ExtractId",
67
75
  "RemoteForm",
68
76
  "RemoteCommand",
69
77
  "RemoteResource",
@@ -201,6 +209,6 @@
201
209
  null,
202
210
  null
203
211
  ],
204
- "mappings": "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",
212
+ "mappings": "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",
205
213
  "ignoreList": []
206
214
  }