@namiml/web-sdk 3.4.7-dev.202607230540 → 3.4.7-dev.202607241734
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/dist/components/elements/TextInput.d.ts +4 -1
- package/dist/legacy-support.cjs +3091 -1
- package/dist/legacy-support.mjs +3089 -1
- package/dist/nami-web.cjs +2 -2
- package/dist/nami-web.d.ts +3 -0
- package/dist/nami-web.mjs +2 -2
- package/dist/nami-web.umd.js +3 -3
- package/dist/polyfills.cjs +1967 -1
- package/dist/polyfills.js +1965 -1
- package/package.json +2 -2
- package/dist/legacy-support-_commonjsHelpers-lGe4XDVY.mjs +0 -1
- package/dist/legacy-support-cjs.d.ts +0 -1
- package/dist/legacy-support-custom-elements-es5-adapter-E4qWtv8B.mjs +0 -1
- package/dist/legacy-support-polyfill-tg58WEdk.mjs +0 -1
- package/dist/legacy-support-url-polyfill.min-BgySTWoi.mjs +0 -1
- package/dist/legacy-support-webcomponents-bundle-DJRe-tdq.mjs +0 -1
- package/dist/utils/polyfill-loader.d.ts +0 -36
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { type TTextInputComponent } from "@namiml/sdk-core";
|
|
2
2
|
import { NamiElement } from "../NamiElement";
|
|
3
|
-
import { type CSSResult } from "lit";
|
|
3
|
+
import { type CSSResult, type PropertyValueMap } from "lit";
|
|
4
4
|
export declare class NamiTextInput extends NamiElement<TTextInputComponent> {
|
|
5
5
|
component: TTextInputComponent;
|
|
6
6
|
inFocusedState: boolean;
|
|
@@ -9,8 +9,11 @@ export declare class NamiTextInput extends NamiElement<TTextInputComponent> {
|
|
|
9
9
|
private _value;
|
|
10
10
|
/** Whether the input currently holds DOM focus. */
|
|
11
11
|
private _focused;
|
|
12
|
+
/** Ref to the rendered `<input>`, used to drive autofocus (`component.focused`). */
|
|
13
|
+
private _inputEl?;
|
|
12
14
|
constructor();
|
|
13
15
|
connectedCallback(): void;
|
|
16
|
+
protected updated(changedProperties: PropertyValueMap<this>): void;
|
|
14
17
|
private get isTelevision();
|
|
15
18
|
/** Map the wire `type` to the validator's `TTextInputType`. */
|
|
16
19
|
private validatorType;
|