@namiml/web-sdk 3.4.7-dev.202607230324 → 3.4.7-dev.202607230540

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.
@@ -19,6 +19,13 @@ export declare class NamiTextInput extends NamiElement<TTextInputComponent> {
19
19
  private _handleInput;
20
20
  private _handleFocus;
21
21
  private _handleBlur;
22
+ /**
23
+ * Dismiss the keyboard when a pointer-down lands outside this field. Blurring
24
+ * the inner `<input>` fires the `@blur` handler, which commits the value.
25
+ * Registered in the capture phase only while focused (see `_handleFocus`).
26
+ */
27
+ private _onOutsidePointerDown;
28
+ disconnectedCallback(): void;
22
29
  protected styles(): CSSResult;
23
30
  private resolvedSpacing;
24
31
  private resolvedBorderWidth;