@namiml/web-sdk 3.4.3-dev.202606092247 → 3.4.3-dev.202606100221

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.
@@ -21,10 +21,12 @@ export type TRepeatingListSection = {
21
21
  items: TComponent[][];
22
22
  };
23
23
  /**
24
- * Partitions a repeating grid's loop source into sections. With no `groupBy`/`groupHeaderTemplate`
25
- * a single header-less section is returned; with grouping, one section per group key in
26
- * first-appearance order. Consumed by `nami-repeating-grid` so headers can render as full-width
27
- * rows above their group's items.
24
+ * Partitions a repeating grid's loop source into sections. Blocks failing any
25
+ * `loopSourceConditions` assertion are dropped first (evaluated per block, so
26
+ * `${block.*}` and `${launch.*}` smart text both resolve). With no
27
+ * `groupBy`/`groupHeaderTemplate` a single header-less section is returned; with grouping,
28
+ * one section per group key in first-appearance order. Consumed by `nami-repeating-grid`
29
+ * so headers can render as full-width rows above their group's items.
28
30
  */
29
31
  export declare function getRepeatingListSections(contextProvider: PaywallContextProvider, component: TResponsiveGrid | TRepeatingGrid): TRepeatingListSection[];
30
32
  /**