@samuel-charpentier/sform 0.0.7 → 0.0.9

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/README.md CHANGED
@@ -125,11 +125,12 @@ Wrapper component that provides form context to all child fields.
125
125
  </Sform>
126
126
  ```
127
127
 
128
- | Prop | Type | Default | Description |
129
- | ------------ | -------------------------------- | ----------- | ------------------------------------ |
130
- | `form` | `RemoteForm` | required | Remote form object from `form()` API |
131
- | `validateOn` | `'blur' \| 'change' \| 'submit'` | `'blur'` | When to validate and show errors |
132
- | `class` | `string` | `undefined` | CSS class for form element |
128
+ | Prop | Type | Default | Description |
129
+ | --------------- | -------------------------------- | ----------- | ------------------------------------------------- |
130
+ | `form` | `RemoteForm` | required | Remote form object from `form()` API |
131
+ | `validateOn` | `'blur' \| 'change' \| 'submit'` | `'blur'` | When to validate and show errors |
132
+ | `class` | `string` | `undefined` | CSS class for form element |
133
+ | `preflightOnly` | `boolean` | `false` | If true, client side validation is preflight only |
133
134
 
134
135
  **Validate Modes:**
135
136
 
@@ -6,7 +6,6 @@
6
6
  TypedSfieldProps
7
7
  } from './types.js';
8
8
  import { getSformContext } from './context.svelte.js';
9
- import { tick } from 'svelte';
10
9
  import TextInput from './inputs/TextInput.svelte';
11
10
  import NumberInput from './inputs/NumberInput.svelte';
12
11
  import TextareaInput from './inputs/TextareaInput.svelte';
@@ -59,14 +58,6 @@
59
58
 
60
59
  async function handleBlur() {
61
60
  context.markTouched(name);
62
- // Wait a tick - if submission started, pending will be > 0 by then
63
- // This prevents stale data validation when blur fires during Enter submission
64
- await tick();
65
- const formState = context.getFormState();
66
- if (formState.pending) {
67
- return;
68
- }
69
- // Trigger validation with includeUntouched so blur mode shows issues
70
61
  context.triggerValidation();
71
62
  }
72
63
 
@@ -106,6 +97,7 @@
106
97
  name,
107
98
  class: hasIssues ? `${classes.input ?? ''} sform-field-error`.trim() : classes.input,
108
99
  labelClass: classes.label,
100
+ wrapperClass: classes.inputWrapper,
109
101
  showIssues,
110
102
  onblur: handleBlur,
111
103
  oninput: handleInput
@@ -17,6 +17,7 @@
17
17
  enhance,
18
18
  validateOn = 'blur',
19
19
  class: className,
20
+ preflightOnly = false,
20
21
  children
21
22
  }: {
22
23
  /** Remote form object from form() API, or the result of form.for(id) */
@@ -27,6 +28,8 @@
27
28
  enhance?: EnhanceCallback<Input>;
28
29
  /** When to validate and show issues: 'blur' (default), 'change', or 'submit' */
29
30
  validateOn?: ValidateOn;
31
+ /** If true, only run preflight validation (no submission) */
32
+ preflightOnly?: boolean;
30
33
  /** Form element class */
31
34
  class?: string;
32
35
  /**
@@ -50,7 +53,7 @@
50
53
 
51
54
  // Trigger validation including untouched fields (for blur mode)
52
55
  const triggerValidation = () => {
53
- form.validate({ includeUntouched: true });
56
+ form.validate({ includeUntouched: true, preflightOnly });
54
57
  };
55
58
 
56
59
  const context = createSformContext(
@@ -86,7 +89,7 @@
86
89
  });
87
90
 
88
91
  function handleInput() {
89
- form.validate({ includeUntouched: true });
92
+ triggerValidation();
90
93
  }
91
94
 
92
95
  function handleSubmit() {
@@ -12,6 +12,8 @@ declare function $$render<Input extends import('@sveltejs/kit').RemoteFormInput,
12
12
  enhance?: EnhanceCallback<Input>;
13
13
  /** When to validate and show issues: 'blur' (default), 'change', or 'submit' */
14
14
  validateOn?: ValidateOn;
15
+ /** If true, only run preflight validation (no submission) */
16
+ preflightOnly?: boolean;
15
17
  /** Form element class */
16
18
  class?: string;
17
19
  /**
@@ -55,6 +55,10 @@
55
55
 
56
56
  event.preventDefault();
57
57
 
58
+ // Focus the button to trigger blur on any focused input before submission
59
+ // This ensures blur validation runs with valid form data, not stale data
60
+ buttonElement.focus();
61
+
58
62
  if (onsubmit) {
59
63
  await onsubmit();
60
64
  }
@@ -66,9 +70,16 @@
66
70
  // Submit the form via context
67
71
  sformContext.submitForm();
68
72
  }
73
+ let buttonElement: HTMLButtonElement;
69
74
  </script>
70
75
 
71
- <button type={buttonType} class={className} disabled={isDisabled} onclick={handleClick}>
76
+ <button
77
+ bind:this={buttonElement}
78
+ type={buttonType}
79
+ class={className}
80
+ disabled={isDisabled}
81
+ onclick={handleClick}
82
+ >
72
83
  {#if children}
73
84
  {@render children(formState)}
74
85
  {:else}
@@ -35,6 +35,8 @@ export interface SfieldClasses {
35
35
  wrapper?: string;
36
36
  /** Label element class */
37
37
  label?: string;
38
+ /** Input wrapper class (contains prefix, input, suffix for affix-enabled inputs) */
39
+ inputWrapper?: string;
38
40
  /** Input element class */
39
41
  input?: string;
40
42
  /** Hint element class */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@samuel-charpentier/sform",
3
- "version": "0.0.7",
3
+ "version": "0.0.9",
4
4
  "description": "A Svelte 5 form library for SvelteKit remote forms",
5
5
  "keywords": [
6
6
  "svelte",