@namiml/sdk-core 3.4.4-dev.202606300501 → 3.4.4-dev.202606302245

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 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.4",
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.4-dev.202606300501",
101
+ NAMI_SDK_PACKAGE_VERSION: exports.NAMI_SDK_PACKAGE_VERSION = "3.4.4-dev.202606302245",
102
102
  // environments
103
103
  PRODUCTION: exports.PRODUCTION = "production", DEVELOPMENT: exports.DEVELOPMENT = "development",
104
104
  // error messages
package/dist/index.d.ts CHANGED
@@ -1486,6 +1486,10 @@ type TResponsiveGrid = TBaseComponent & {
1486
1486
  groupBy?: string;
1487
1487
  groupHeaderTemplate?: TComponent;
1488
1488
  timeline?: TTimelineRail;
1489
+ /** Flat lists only (no groupBy): render at most the first N eligible items. Ignored when groupBy is present. */
1490
+ max?: number;
1491
+ /** Grouped lists only (groupBy present): render at most the first N eligible items per group. Ignored when groupBy is absent. */
1492
+ groupMax?: number;
1489
1493
  };
1490
1494
  type TRepeatingGrid = TBaseComponent & {
1491
1495
  component: "repeatingGrid";
@@ -1499,6 +1503,10 @@ type TRepeatingGrid = TBaseComponent & {
1499
1503
  itemAlignment?: string;
1500
1504
  groupBy?: string;
1501
1505
  groupHeaderTemplate?: TComponent;
1506
+ /** Flat lists only (no groupBy): render at most the first N eligible items. Ignored when groupBy is present. */
1507
+ max?: number;
1508
+ /** Grouped lists only (groupBy present): render at most the first N eligible items per group. Ignored when groupBy is absent. */
1509
+ groupMax?: number;
1502
1510
  };
1503
1511
  type TToggleSwitch = TBaseComponent & {
1504
1512
  component: 'toggleSwitch';
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.4",
98
98
  // full package version including dev suffix — stamped by scripts/version.sh
99
- NAMI_SDK_PACKAGE_VERSION = "3.4.4-dev.202606300501",
99
+ NAMI_SDK_PACKAGE_VERSION = "3.4.4-dev.202606302245",
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.4-dev.202606300501",
3
+ "version": "3.4.4-dev.202606302245",
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",