@namiml/sdk-core 3.4.6-dev.202607171631 → 3.4.6-dev.202607171903
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 +7 -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.6",
|
|
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.6-dev.
|
|
101
|
+
NAMI_SDK_PACKAGE_VERSION: exports.NAMI_SDK_PACKAGE_VERSION = "3.4.6-dev.202607171903",
|
|
102
102
|
// environments
|
|
103
103
|
PRODUCTION: exports.PRODUCTION = "production", DEVELOPMENT: exports.DEVELOPMENT = "development",
|
|
104
104
|
// error messages
|
package/dist/index.d.ts
CHANGED
|
@@ -1508,6 +1508,13 @@ type TSlot = {
|
|
|
1508
1508
|
group?: TSlotGroupSelector;
|
|
1509
1509
|
/** Visibility gate evaluated once with non-block context. Empty ⇒ always visible. */
|
|
1510
1510
|
conditions?: TTestObject[];
|
|
1511
|
+
/**
|
|
1512
|
+
* Grid cells the slot occupies in a feed with a fixed column count (`repeatingGrid`).
|
|
1513
|
+
* `"all"` spans the full row. Clamped to `[1, columns]` at render time; absent or
|
|
1514
|
+
* invalid values (non-integer, < 1) fall back to 1. Ignored by feeds without a fixed
|
|
1515
|
+
* column count (`responsiveGrid`).
|
|
1516
|
+
*/
|
|
1517
|
+
columnSpan?: number | "all";
|
|
1511
1518
|
template: TComponent;
|
|
1512
1519
|
};
|
|
1513
1520
|
type TResponsiveGrid = TBaseComponent & {
|
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.6",
|
|
98
98
|
// full package version including dev suffix — stamped by scripts/version.sh
|
|
99
|
-
NAMI_SDK_PACKAGE_VERSION = "3.4.6-dev.
|
|
99
|
+
NAMI_SDK_PACKAGE_VERSION = "3.4.6-dev.202607171903",
|
|
100
100
|
// environments
|
|
101
101
|
PRODUCTION = "production", DEVELOPMENT = "development",
|
|
102
102
|
// error messages
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@namiml/sdk-core",
|
|
3
|
-
"version": "3.4.6-dev.
|
|
3
|
+
"version": "3.4.6-dev.202607171903",
|
|
4
4
|
"description": "Platform-agnostic core for the Nami SDK — business logic, API, types, and state management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|