@namiml/sdk-core 3.4.7-rc.202607230359 → 3.4.7
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/index.cjs +1 -1
- package/dist/index.d.ts +9 -0
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -98,7 +98,7 @@ const {
|
|
|
98
98
|
// version — stamped by scripts/version.sh
|
|
99
99
|
NAMI_SDK_VERSION: exports.NAMI_SDK_VERSION = "3.4.7",
|
|
100
100
|
// full package version including dev suffix — stamped by scripts/version.sh
|
|
101
|
-
NAMI_SDK_PACKAGE_VERSION: exports.NAMI_SDK_PACKAGE_VERSION = "3.4.7
|
|
101
|
+
NAMI_SDK_PACKAGE_VERSION: exports.NAMI_SDK_PACKAGE_VERSION = "3.4.7",
|
|
102
102
|
// environments
|
|
103
103
|
PRODUCTION: exports.PRODUCTION = "production", DEVELOPMENT: exports.DEVELOPMENT = "development",
|
|
104
104
|
// error messages
|
package/dist/index.d.ts
CHANGED
|
@@ -1193,6 +1193,8 @@ type TTextComponent = TBaseComponent & {
|
|
|
1193
1193
|
dateTimeFormat?: string;
|
|
1194
1194
|
blur?: number | null;
|
|
1195
1195
|
capitalize?: boolean;
|
|
1196
|
+
lineHeight?: number;
|
|
1197
|
+
letterSpacing?: number;
|
|
1196
1198
|
};
|
|
1197
1199
|
type TTextLikeComponent = TTextComponent | TTextListComponent | TSymbolComponent;
|
|
1198
1200
|
type TTextListComponent = Omit<TTextComponent, "component" | "text"> & {
|
|
@@ -1308,6 +1310,13 @@ type TTextInputComponent = TBaseComponent & {
|
|
|
1308
1310
|
innerLeftPadding?: number | string;
|
|
1309
1311
|
innerRightPadding?: number | string;
|
|
1310
1312
|
showPrefixIcon?: boolean;
|
|
1313
|
+
/**
|
|
1314
|
+
* Whether this input receives focus on page load (autofocus). Mirrors the
|
|
1315
|
+
* button `focused` flag (see TButtonContainer). On mobile/web the keyboard
|
|
1316
|
+
* raises; on TV it only sets d-pad focus (the keyboard opens on select).
|
|
1317
|
+
* At most one component per screen should set this — first-in-tree-order wins.
|
|
1318
|
+
*/
|
|
1319
|
+
focused?: boolean;
|
|
1311
1320
|
};
|
|
1312
1321
|
type TCountdownTimerTextComponent = TBaseComponent & {
|
|
1313
1322
|
component: "countdownTimerText";
|
package/dist/index.mjs
CHANGED
|
@@ -96,7 +96,7 @@ const {
|
|
|
96
96
|
// version — stamped by scripts/version.sh
|
|
97
97
|
NAMI_SDK_VERSION = "3.4.7",
|
|
98
98
|
// full package version including dev suffix — stamped by scripts/version.sh
|
|
99
|
-
NAMI_SDK_PACKAGE_VERSION = "3.4.7
|
|
99
|
+
NAMI_SDK_PACKAGE_VERSION = "3.4.7",
|
|
100
100
|
// environments
|
|
101
101
|
PRODUCTION = "production", DEVELOPMENT = "development",
|
|
102
102
|
// error messages
|
package/package.json
CHANGED