@useinsider/guido 3.8.2 → 3.9.0-beta.1549171

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.
Files changed (64) hide show
  1. package/dist/@types/config/schemas.js +70 -66
  2. package/dist/composables/usePreviewMode.js +15 -14
  3. package/dist/composables/useRecommendationPreview.js +111 -0
  4. package/dist/config/compiler/recommendationCompilerRules.js +1 -1
  5. package/dist/config/compiler/utils/recommendationCompilerUtils.js +88 -80
  6. package/dist/config/migrator/itemsBlockMigrator.js +168 -122
  7. package/dist/config/migrator/recommendation/htmlBuilder.js +53 -52
  8. package/dist/config/migrator/recommendation/settingsMapper.js +38 -33
  9. package/dist/enums/html-validator.js +6 -5
  10. package/dist/extensions/Blocks/Items/block.js +48 -29
  11. package/dist/extensions/Blocks/Items/controls/name/trimming.js +17 -18
  12. package/dist/extensions/Blocks/Items/controls/settingsControl.js +47 -47
  13. package/dist/extensions/Blocks/Items/layouts/horizontal.html.js +13 -9
  14. package/dist/extensions/Blocks/Items/layouts/vertical.html.js +26 -14
  15. package/dist/extensions/Blocks/Items/template.js +229 -223
  16. package/dist/extensions/Blocks/Items/utils/nodeConfigUtils.js +62 -45
  17. package/dist/extensions/Blocks/Recommendation/block.js +64 -42
  18. package/dist/extensions/Blocks/Recommendation/canvasPreview.css.js +16 -0
  19. package/dist/extensions/Blocks/Recommendation/constants/defaultConfig.js +41 -32
  20. package/dist/extensions/Blocks/Recommendation/controls/cardComposition/index.js +461 -363
  21. package/dist/extensions/Blocks/Recommendation/controls/main/index.js +99 -87
  22. package/dist/extensions/Blocks/Recommendation/controls/main/pricePlacement.js +133 -0
  23. package/dist/extensions/Blocks/Recommendation/controls/main/utils.js +162 -160
  24. package/dist/extensions/Blocks/Recommendation/extension.js +30 -29
  25. package/dist/extensions/Blocks/Recommendation/iconsRegistry.js +21 -7
  26. package/dist/extensions/Blocks/Recommendation/recommendation.css.js +64 -4
  27. package/dist/extensions/Blocks/Recommendation/store/recommendation.js +3 -1
  28. package/dist/extensions/Blocks/Recommendation/templates/grid/elementRenderer.js +130 -96
  29. package/dist/extensions/Blocks/Recommendation/templates/grid/template.js +43 -54
  30. package/dist/extensions/Blocks/Recommendation/templates/index.js +17 -14
  31. package/dist/extensions/Blocks/Recommendation/templates/list/elementRenderer.js +86 -80
  32. package/dist/extensions/Blocks/Recommendation/templates/list/template.js +31 -40
  33. package/dist/extensions/Blocks/Recommendation/templates/utils.js +155 -102
  34. package/dist/extensions/Blocks/controlFactories.js +76 -57
  35. package/dist/src/@types/config/schemas.d.ts +16 -0
  36. package/dist/src/composables/useConfig.d.ts +4 -0
  37. package/dist/src/composables/useRecommendationPreview.d.ts +10 -0
  38. package/dist/src/config/migrator/recommendation/settingsMapper.d.ts +1 -1
  39. package/dist/src/extensions/Blocks/CouponBlock/controls/index.d.ts +1 -1
  40. package/dist/src/extensions/Blocks/Items/block.d.ts +8 -0
  41. package/dist/src/extensions/Blocks/Items/controls/index.d.ts +3 -3
  42. package/dist/src/extensions/Blocks/Items/template.d.ts +7 -0
  43. package/dist/src/extensions/Blocks/Items/utils/nodeConfigUtils.d.ts +1 -1
  44. package/dist/src/extensions/Blocks/Recommendation/block.d.ts +10 -0
  45. package/dist/src/extensions/Blocks/Recommendation/controls/cardComposition/index.d.ts +29 -3
  46. package/dist/src/extensions/Blocks/Recommendation/controls/index.d.ts +1 -1
  47. package/dist/src/extensions/Blocks/Recommendation/controls/main/index.d.ts +3 -1
  48. package/dist/src/extensions/Blocks/Recommendation/controls/main/pricePlacement.d.ts +59 -0
  49. package/dist/src/extensions/Blocks/Recommendation/controls/name/index.d.ts +1 -1
  50. package/dist/src/extensions/Blocks/Recommendation/controls/oldPrice/index.d.ts +1 -1
  51. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusDiscount/index.d.ts +1 -1
  52. package/dist/src/extensions/Blocks/Recommendation/controls/omnibusPrice/index.d.ts +1 -1
  53. package/dist/src/extensions/Blocks/Recommendation/controls/price/index.d.ts +1 -1
  54. package/dist/src/extensions/Blocks/Recommendation/store/recommendation.d.ts +2 -0
  55. package/dist/src/extensions/Blocks/Recommendation/templates/grid/elementRenderer.d.ts +13 -1
  56. package/dist/src/extensions/Blocks/Recommendation/templates/grid/template.d.ts +4 -4
  57. package/dist/src/extensions/Blocks/Recommendation/templates/index.d.ts +1 -1
  58. package/dist/src/extensions/Blocks/Recommendation/templates/list/elementRenderer.d.ts +10 -1
  59. package/dist/src/extensions/Blocks/Recommendation/templates/list/template.d.ts +3 -3
  60. package/dist/src/extensions/Blocks/Recommendation/templates/utils.d.ts +51 -1
  61. package/dist/src/extensions/Blocks/Recommendation/types/nodeConfig.d.ts +15 -0
  62. package/dist/src/extensions/Blocks/controlFactories.d.ts +10 -1
  63. package/dist/src/stores/config.d.ts +36 -0
  64. package/package.json +1 -1
@@ -0,0 +1,10 @@
1
+ /**
2
+ * Substitutes recommendation product variables in compiled preview HTML with the
3
+ * blocks' fetched sample products, then simulates the email-service hide rule by
4
+ * emptying the original-price cell (DOM kept) for slots with no real discount.
5
+ * Returns the input unchanged when there are no reco blocks or no products.
6
+ */
7
+ export declare function substituteRecommendationPreview(html: string): string;
8
+ export declare const useRecommendationPreview: () => {
9
+ substituteRecommendationPreview: typeof substituteRecommendationPreview;
10
+ };
@@ -3,5 +3,5 @@ import type { CurrencyConfig, RecommendationNodeConfig } from '@@/Extensions/Blo
3
3
  import type { LegacyRecommendationConfig } from '@@/Types/config';
4
4
  /** Defensive against missing/malformed legacy `currencySettings` — defaults are per-field, not whole-object. */
5
5
  export declare function mapCurrency(legacy: unknown): CurrencyConfig;
6
- export type SettingsPartial = Pick<RecommendationNodeConfig, 'recommendationId' | 'strategy' | 'productIds' | 'size' | 'shuffleProducts' | 'language' | 'currency' | 'filters' | 'layout' | 'cardsInRow' | 'mobileCardsInRow' | 'mobileLayoutEnabled' | 'previousMobileCardsInRow' | 'columnSpacing' | 'rowSpacing' | 'mobileColumnSpacing' | 'mobileRowSpacing' | 'omnibusPrice' | 'omnibusDiscount' | 'configVersion'>;
6
+ export type SettingsPartial = Pick<RecommendationNodeConfig, 'recommendationId' | 'strategy' | 'productIds' | 'size' | 'shuffleProducts' | 'language' | 'currency' | 'filters' | 'layout' | 'cardsInRow' | 'mobileCardsInRow' | 'mobileLayoutEnabled' | 'previousMobileCardsInRow' | 'columnSpacing' | 'rowSpacing' | 'mobileColumnSpacing' | 'mobileRowSpacing' | 'omnibusPrice' | 'omnibusDiscount' | 'priceMovedToNextLine' | 'priceHideIfSameAsDiscounted' | 'configVersion'>;
7
7
  export declare function mapSettings(recCfg: LegacyRecommendationConfig, parsed: LegacyProductConfig, id: number): SettingsPartial;
@@ -74,11 +74,11 @@ export declare const TextBackgroundControl: {
74
74
  new (): {
75
75
  getId(): string;
76
76
  getTargetNodes(root: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode[];
77
+ getAdditionalModifications(root: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").TemplateModifier<import("@stripoinc/ui-editor-extensions").HtmlNodeModifier, import("@stripoinc/ui-editor-extensions").CssNodeModifier> | undefined;
77
78
  getParentControlId(): string;
78
79
  api: import("@stripoinc/ui-editor-extensions").ControlApi;
79
80
  getLabels(): import("@stripoinc/ui-editor-extensions").ControlLabels | undefined;
80
81
  getModificationDescription(): import("@stripoinc/ui-editor-extensions").ModificationDescription | undefined;
81
- getAdditionalModifications(_root: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").TemplateModifier<import("@stripoinc/ui-editor-extensions").HtmlNodeModifier, import("@stripoinc/ui-editor-extensions").CssNodeModifier> | undefined;
82
82
  isVisible(_node: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): boolean;
83
83
  };
84
84
  };
@@ -24,5 +24,13 @@ export declare class ItemsBlock extends Block {
24
24
  getSettingsPanelTitleHtml(): string;
25
25
  getTemplate(): string;
26
26
  allowInnerBlocksDND(): boolean;
27
+ canBeSavedAsModule(): boolean;
27
28
  onCreated(node: ImmutableHtmlNode): void;
29
+ /**
30
+ * Re-seeds nodeConfig from the persisted esd-ext-config when a saved module
31
+ * surfaces via document load. Stripo strips esd-ext-config and never restores it
32
+ * into nodeConfig, so without this a reused module would reset to defaults.
33
+ * Guarded to the nodeConfig-empty case so it runs once and never loops.
34
+ */
35
+ onDocumentChanged(node: ImmutableHtmlNode): void;
28
36
  }
@@ -232,11 +232,11 @@ export declare const OriginalPriceControls: {
232
232
  new (): {
233
233
  getId(): string;
234
234
  getTargetNodes(root: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode[];
235
+ getAdditionalModifications(root: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").TemplateModifier<import("@stripoinc/ui-editor-extensions").HtmlNodeModifier, import("@stripoinc/ui-editor-extensions").CssNodeModifier> | undefined;
235
236
  getParentControlId(): string;
236
237
  api: import("@stripoinc/ui-editor-extensions").ControlApi;
237
238
  getLabels(): import("@stripoinc/ui-editor-extensions").ControlLabels | undefined;
238
239
  getModificationDescription(): import("@stripoinc/ui-editor-extensions").ModificationDescription | undefined;
239
- getAdditionalModifications(_root: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").TemplateModifier<import("@stripoinc/ui-editor-extensions").HtmlNodeModifier, import("@stripoinc/ui-editor-extensions").CssNodeModifier> | undefined;
240
240
  isVisible(_node: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): boolean;
241
241
  };
242
242
  };
@@ -318,11 +318,11 @@ export declare const PriceControls: {
318
318
  new (): {
319
319
  getId(): string;
320
320
  getTargetNodes(root: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode[];
321
+ getAdditionalModifications(root: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").TemplateModifier<import("@stripoinc/ui-editor-extensions").HtmlNodeModifier, import("@stripoinc/ui-editor-extensions").CssNodeModifier> | undefined;
321
322
  getParentControlId(): string;
322
323
  api: import("@stripoinc/ui-editor-extensions").ControlApi;
323
324
  getLabels(): import("@stripoinc/ui-editor-extensions").ControlLabels | undefined;
324
325
  getModificationDescription(): import("@stripoinc/ui-editor-extensions").ModificationDescription | undefined;
325
- getAdditionalModifications(_root: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").TemplateModifier<import("@stripoinc/ui-editor-extensions").HtmlNodeModifier, import("@stripoinc/ui-editor-extensions").CssNodeModifier> | undefined;
326
326
  isVisible(_node: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): boolean;
327
327
  };
328
328
  };
@@ -404,11 +404,11 @@ export declare const NameControls: {
404
404
  new (): {
405
405
  getId(): string;
406
406
  getTargetNodes(root: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode[];
407
+ getAdditionalModifications(root: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").TemplateModifier<import("@stripoinc/ui-editor-extensions").HtmlNodeModifier, import("@stripoinc/ui-editor-extensions").CssNodeModifier> | undefined;
407
408
  getParentControlId(): string;
408
409
  api: import("@stripoinc/ui-editor-extensions").ControlApi;
409
410
  getLabels(): import("@stripoinc/ui-editor-extensions").ControlLabels | undefined;
410
411
  getModificationDescription(): import("@stripoinc/ui-editor-extensions").ModificationDescription | undefined;
411
- getAdditionalModifications(_root: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").TemplateModifier<import("@stripoinc/ui-editor-extensions").HtmlNodeModifier, import("@stripoinc/ui-editor-extensions").CssNodeModifier> | undefined;
412
412
  isVisible(_node: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): boolean;
413
413
  };
414
414
  };
@@ -3,6 +3,13 @@ declare const migrationTemplate = "ADD YOUR MIGRATION HERE";
3
3
  type ProductType = 'CART_ITEMS' | 'BROWSED_ITEMS' | 'PURCHASED_ITEMS';
4
4
  type OrientationType = 'vertical' | 'horizontal';
5
5
  type PriceOrientationType = 'vertical' | 'horizontal';
6
+ /**
7
+ * Wraps a bare migrate-block `<td>` in a `<tr>` so it forms a valid table row.
8
+ * Stripo renders its `BlockType.*` tags as full rows, so both the migrate template
9
+ * (here) and the orientation-change rebuild (settingsControl._reOrderTemplate) must
10
+ * emit `<tr><td>` — otherwise the code editor flags the bare cell as invalid.
11
+ */
12
+ export declare const wrapInTableRow: (html: string) => string;
6
13
  type TemplateParameters = {
7
14
  orientation: OrientationType;
8
15
  itemsType: ProductType;
@@ -55,7 +55,7 @@ export declare function getItemsBlockContainer(currentNode: ImmutableHtmlNode |
55
55
  /**
56
56
  * Gets the node configuration from the Items block.
57
57
  * Uses Stripo V2's getNodeConfig() API.
58
- * Falls back to migrating from legacy config block if nodeConfig is empty.
58
+ * Falls back to the persisted esd-ext-config (saved modules), then legacy config block.
59
59
  * @param currentNode - The current node from the control
60
60
  * @returns The ItemsBlockConfig object or null if not found
61
61
  */
@@ -117,6 +117,16 @@ export declare class RecommendationBlock extends Block {
117
117
  * added classes via setAttribute.
118
118
  */
119
119
  private _assignRecommendationId;
120
+ /**
121
+ * Stamps the `hide-price` attribute (read by email-service at send time) on
122
+ * the block element from the config flag.
123
+ */
124
+ private _stampHidePrice;
125
+ /**
126
+ * Stamps `hide-price` from config only when the block lacks the attribute —
127
+ * heals templates saved before this feature without dirtying current ones.
128
+ */
129
+ private _healHidePriceAttr;
120
130
  /**
121
131
  * Gets the recommendation-id from a block node
122
132
  */
@@ -50,6 +50,15 @@ export declare class RecommendationCardCompositionControl extends CommonControl
50
50
  */
51
51
  private _tryReorderInPlace;
52
52
  private _createBuiltInItemHtml;
53
+ /**
54
+ * Inline mode: the merged "Product Prices" group item. It moves as a unit in
55
+ * the main list (both keys stay adjacent) and contains a nested 2-item drag
56
+ * to reorder Product Price ↔ Product Original Price — which flips the inline
57
+ * render order via `resolveInlinePriceOrder`. The group keeps a single
58
+ * visibility toggle (`data-action-for="productPrice"`). Nested sub-items use a
59
+ * plain drag handle (no UE button → untouched by the reorder-icon rescue).
60
+ */
61
+ private _createPriceGroupItemHtml;
53
62
  private _createCustomItemHtml;
54
63
  /**
55
64
  * Builds select options from the store's filterList.
@@ -105,7 +114,23 @@ export declare class RecommendationCardCompositionControl extends CommonControl
105
114
  */
106
115
  private _rescueReorderIconsToStore;
107
116
  private _setupEventListeners;
117
+ /**
118
+ * Builds the composition key order from the orderable list, expanding the
119
+ * inline "Product Prices" group into its two sub-keys (in nested DOM order)
120
+ * so both price keys stay adjacent and in the user-chosen order.
121
+ */
122
+ private _extractCompositionOrder;
108
123
  private _setupDragAndDrop;
124
+ /**
125
+ * Wires drag/drop reordering for one item level on the shared list. Both the
126
+ * top-level items and the nested price sub-items use this; they never fight
127
+ * because each only sets its `dragged` ref when its own `itemSelector` matches
128
+ * at dragstart (and the top-level one additionally ignores drags originating
129
+ * inside `ignoreSelector`). Every drop re-reads the full composition via
130
+ * `_extractCompositionOrder`, so both levels commit through `_onReorder`
131
+ * identically.
132
+ */
133
+ private _registerDragHandlers;
109
134
  private _setupDeleteHandler;
110
135
  private _onAddAttribute;
111
136
  /**
@@ -162,9 +187,10 @@ export declare class RecommendationCardCompositionControl extends CommonControl
162
187
  private _extractSegmentBgFromCard;
163
188
  private _getControlContainer;
164
189
  /**
165
- * Adds/removes orderable-disabled class based on layout orientation.
166
- * List layout hides drag handles via CSS and disables draggable attribute
167
- * to prevent native browser drag-and-drop from working without the handle.
190
+ * Ensures composition reorder is enabled. Both grid and list layouts now
191
+ * support reordering top-level items and the nested price sub-items are all
192
+ * draggable. (Items render with `draggable="true"`; this just clears any stale
193
+ * disabled state.)
168
194
  */
169
195
  private _updateOrderableState;
170
196
  /**
@@ -9,7 +9,7 @@
9
9
  * // Or individual imports
10
10
  * import { NameAlignControl, ButtonColorControl } from './controls';
11
11
  */
12
- export { RecommendationBlockControl, CONTROL_BLOCK_ID, AlgorithmControl, ALGORITHM_CONTROL_ID, LocaleControl, LOCALE_CONTROL_ID, CurrencyControl, CURRENCY_CONTROL_ID, ProductCountControl, PRODUCT_COUNT_CONTROL_ID, ProductLayoutControl, PRODUCT_LAYOUT_CONTROL_ID, FiltersControl, FILTERS_CONTROL_ID, ShuffleControl, SHUFFLE_CONTROL_ID, LayoutOrientationControl, LAYOUT_ORIENTATION_CONTROL_ID, } from './main';
12
+ export { RecommendationBlockControl, CONTROL_BLOCK_ID, AlgorithmControl, ALGORITHM_CONTROL_ID, LocaleControl, LOCALE_CONTROL_ID, CurrencyControl, CURRENCY_CONTROL_ID, ProductCountControl, PRODUCT_COUNT_CONTROL_ID, ProductLayoutControl, PRODUCT_LAYOUT_CONTROL_ID, FiltersControl, FILTERS_CONTROL_ID, ShuffleControl, SHUFFLE_CONTROL_ID, LayoutOrientationControl, LAYOUT_ORIENTATION_CONTROL_ID, PricePlacementControl, PRICE_PLACEMENT_CONTROL_ID, } from './main';
13
13
  export * from './main/utils';
14
14
  export { NameControls } from './name';
15
15
  export { PriceControls } from './price';
@@ -5,11 +5,12 @@ import { CurrencyControl, CURRENCY_CONTROL_ID } from './currency';
5
5
  import { FiltersControl, FILTERS_CONTROL_ID } from './filters';
6
6
  import { LayoutOrientationControl, LAYOUT_ORIENTATION_CONTROL_ID } from './layoutOrientation';
7
7
  import { LocaleControl, LOCALE_CONTROL_ID } from './locale';
8
+ import { PricePlacementControl, PRICE_PLACEMENT_CONTROL_ID } from './pricePlacement';
8
9
  import { ProductCountControl, PRODUCT_COUNT_CONTROL_ID } from './productCount';
9
10
  import { ProductLayoutControl, PRODUCT_LAYOUT_CONTROL_ID } from './productLayout';
10
11
  import { ShuffleControl, SHUFFLE_CONTROL_ID } from './shuffle';
11
12
  export declare const CONTROL_BLOCK_ID = "ui-elements-recommendation-block";
12
- export { AlgorithmControl, ALGORITHM_CONTROL_ID, LocaleControl, LOCALE_CONTROL_ID, CurrencyControl, CURRENCY_CONTROL_ID, ProductCountControl, PRODUCT_COUNT_CONTROL_ID, ProductLayoutControl, PRODUCT_LAYOUT_CONTROL_ID, FiltersControl, FILTERS_CONTROL_ID, ShuffleControl, SHUFFLE_CONTROL_ID, LayoutOrientationControl, LAYOUT_ORIENTATION_CONTROL_ID, };
13
+ export { AlgorithmControl, ALGORITHM_CONTROL_ID, LocaleControl, LOCALE_CONTROL_ID, CurrencyControl, CURRENCY_CONTROL_ID, ProductCountControl, PRODUCT_COUNT_CONTROL_ID, ProductLayoutControl, PRODUCT_LAYOUT_CONTROL_ID, FiltersControl, FILTERS_CONTROL_ID, ShuffleControl, SHUFFLE_CONTROL_ID, LayoutOrientationControl, LAYOUT_ORIENTATION_CONTROL_ID, PricePlacementControl, PRICE_PLACEMENT_CONTROL_ID, };
13
14
  export * from './utils';
14
15
  /**
15
16
  * Main recommendation block control that composes all sub-controls
@@ -26,6 +27,7 @@ export declare class RecommendationBlockControl extends CommonControl {
26
27
  private productLayoutControl;
27
28
  private filtersControl;
28
29
  private shuffleControl;
30
+ private pricePlacementControl;
29
31
  private layoutOrientationControl;
30
32
  getId(): string;
31
33
  getTemplate(): string;
@@ -0,0 +1,59 @@
1
+ /**
2
+ * Price Placement Control
3
+ *
4
+ * Two block-level price settings ported from the legacy product block, shown
5
+ * above the Currency control in the main Settings tab:
6
+ *
7
+ * - "Product Price Orientation" (`priceMovedToNextLine`): a vertical/horizontal
8
+ * icon radio (mirrors the Items block control). `vertical` (default) keeps the
9
+ * price and original price on separate stacked rows (current Guido look);
10
+ * `horizontal` renders them inline on the same line and Card Composition
11
+ * collapses them into a single "Product Prices" entry.
12
+ * - "Hide if same as discounted" (`priceHideIfSameAsDiscounted`): a toggle.
13
+ * When ON, email-service blanks the redundant original price at send time when
14
+ * it equals the sale price (see the `hide-price` block attribute below).
15
+ *
16
+ * Orientation re-renders the rows (it changes the saved template layout).
17
+ * Hide-if-same NEVER touches the template — it only persists config + stamps the
18
+ * `hide-price` attribute; the visual hide is simulated in the preview and applied
19
+ * for real server-side by email-service.
20
+ */
21
+ import type { RecommendationNodeConfig } from '../../types/nodeConfig';
22
+ import type { ImmutableHtmlNode } from '@stripoinc/ui-editor-extensions';
23
+ import { CommonControl } from '../../../common-control';
24
+ export declare const PRICE_PLACEMENT_CONTROL_ID = "recommendation-price-placement-control";
25
+ type Orientation = 'vertical' | 'horizontal';
26
+ /**
27
+ * Control for the block-level price orientation radio + hide-if-same toggle.
28
+ */
29
+ export declare class PricePlacementControl extends CommonControl {
30
+ private store;
31
+ getId(): string;
32
+ getTemplate(): string;
33
+ onRender(): void;
34
+ onTemplateNodeUpdated(node: ImmutableHtmlNode): void;
35
+ _setFormValues(config: RecommendationNodeConfig): void;
36
+ _initializeHideToggle(config: RecommendationNodeConfig): void;
37
+ /**
38
+ * Disables the orientation radio when a price element is hidden via Card
39
+ * Composition — orientation is meaningless without both prices visible.
40
+ * Visibility lives on the attribute rows' `data-visibility` (set by the Card
41
+ * Composition control). Inline mode has no standalone original-price row, so
42
+ * the merged "Product Prices" entry (the price row) governs.
43
+ */
44
+ _updateOrientationDisabled(): void;
45
+ _onOrientationChange(orientation: Orientation): void;
46
+ _onHideIfSameChange(value: boolean): void;
47
+ /**
48
+ * Mirrors the hide-if-same flag onto the durable `hide-price` block attribute
49
+ * read by email-service at send time.
50
+ */
51
+ _stampHideIfSameAttr(value: boolean): void;
52
+ /**
53
+ * Rebuilds the product rows so the renderer re-reads the inline/stacked
54
+ * layout flag from the store. Used by the orientation change only.
55
+ */
56
+ _regenerate(): void;
57
+ _listenToFormUpdates(): void;
58
+ }
59
+ export {};
@@ -73,11 +73,11 @@ export declare const NameControls: {
73
73
  new (): {
74
74
  getId(): string;
75
75
  getTargetNodes(root: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode[];
76
+ getAdditionalModifications(root: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").TemplateModifier<import("@stripoinc/ui-editor-extensions").HtmlNodeModifier, import("@stripoinc/ui-editor-extensions").CssNodeModifier> | undefined;
76
77
  getParentControlId(): string;
77
78
  api: import("@stripoinc/ui-editor-extensions").ControlApi;
78
79
  getLabels(): import("@stripoinc/ui-editor-extensions").ControlLabels | undefined;
79
80
  getModificationDescription(): import("@stripoinc/ui-editor-extensions").ModificationDescription | undefined;
80
- getAdditionalModifications(_root: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").TemplateModifier<import("@stripoinc/ui-editor-extensions").HtmlNodeModifier, import("@stripoinc/ui-editor-extensions").CssNodeModifier> | undefined;
81
81
  isVisible(_node: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): boolean;
82
82
  };
83
83
  };
@@ -72,11 +72,11 @@ export declare const OldPriceControls: {
72
72
  new (): {
73
73
  getId(): string;
74
74
  getTargetNodes(root: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode[];
75
+ getAdditionalModifications(root: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").TemplateModifier<import("@stripoinc/ui-editor-extensions").HtmlNodeModifier, import("@stripoinc/ui-editor-extensions").CssNodeModifier> | undefined;
75
76
  getParentControlId(): string;
76
77
  api: import("@stripoinc/ui-editor-extensions").ControlApi;
77
78
  getLabels(): import("@stripoinc/ui-editor-extensions").ControlLabels | undefined;
78
79
  getModificationDescription(): import("@stripoinc/ui-editor-extensions").ModificationDescription | undefined;
79
- getAdditionalModifications(_root: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").TemplateModifier<import("@stripoinc/ui-editor-extensions").HtmlNodeModifier, import("@stripoinc/ui-editor-extensions").CssNodeModifier> | undefined;
80
80
  isVisible(_node: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): boolean;
81
81
  };
82
82
  };
@@ -75,11 +75,11 @@ export declare const OmnibusDiscountControls: {
75
75
  new (): {
76
76
  getId(): string;
77
77
  getTargetNodes(root: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode[];
78
+ getAdditionalModifications(root: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").TemplateModifier<import("@stripoinc/ui-editor-extensions").HtmlNodeModifier, import("@stripoinc/ui-editor-extensions").CssNodeModifier> | undefined;
78
79
  getParentControlId(): string;
79
80
  api: import("@stripoinc/ui-editor-extensions").ControlApi;
80
81
  getLabels(): import("@stripoinc/ui-editor-extensions").ControlLabels | undefined;
81
82
  getModificationDescription(): import("@stripoinc/ui-editor-extensions").ModificationDescription | undefined;
82
- getAdditionalModifications(_root: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").TemplateModifier<import("@stripoinc/ui-editor-extensions").HtmlNodeModifier, import("@stripoinc/ui-editor-extensions").CssNodeModifier> | undefined;
83
83
  isVisible(_node: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): boolean;
84
84
  };
85
85
  };
@@ -75,11 +75,11 @@ export declare const OmnibusPriceControls: {
75
75
  new (): {
76
76
  getId(): string;
77
77
  getTargetNodes(root: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode[];
78
+ getAdditionalModifications(root: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").TemplateModifier<import("@stripoinc/ui-editor-extensions").HtmlNodeModifier, import("@stripoinc/ui-editor-extensions").CssNodeModifier> | undefined;
78
79
  getParentControlId(): string;
79
80
  api: import("@stripoinc/ui-editor-extensions").ControlApi;
80
81
  getLabels(): import("@stripoinc/ui-editor-extensions").ControlLabels | undefined;
81
82
  getModificationDescription(): import("@stripoinc/ui-editor-extensions").ModificationDescription | undefined;
82
- getAdditionalModifications(_root: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").TemplateModifier<import("@stripoinc/ui-editor-extensions").HtmlNodeModifier, import("@stripoinc/ui-editor-extensions").CssNodeModifier> | undefined;
83
83
  isVisible(_node: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): boolean;
84
84
  };
85
85
  };
@@ -72,11 +72,11 @@ export declare const PriceControls: {
72
72
  new (): {
73
73
  getId(): string;
74
74
  getTargetNodes(root: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode[];
75
+ getAdditionalModifications(root: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").TemplateModifier<import("@stripoinc/ui-editor-extensions").HtmlNodeModifier, import("@stripoinc/ui-editor-extensions").CssNodeModifier> | undefined;
75
76
  getParentControlId(): string;
76
77
  api: import("@stripoinc/ui-editor-extensions").ControlApi;
77
78
  getLabels(): import("@stripoinc/ui-editor-extensions").ControlLabels | undefined;
78
79
  getModificationDescription(): import("@stripoinc/ui-editor-extensions").ModificationDescription | undefined;
79
- getAdditionalModifications(_root: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").TemplateModifier<import("@stripoinc/ui-editor-extensions").HtmlNodeModifier, import("@stripoinc/ui-editor-extensions").CssNodeModifier> | undefined;
80
80
  isVisible(_node: import("@stripoinc/ui-editor-extensions").ImmutableHtmlNode): boolean;
81
81
  };
82
82
  };
@@ -25,6 +25,8 @@ export interface PerBlockConfigs {
25
25
  unresponsive: boolean;
26
26
  size: string;
27
27
  customAttributes: string[];
28
+ priceMovedToNextLine: boolean;
29
+ priceHideIfSameAsDiscounted: boolean;
28
30
  }
29
31
  interface PerBlockState {
30
32
  recommendationConfigs: PerBlockConfigs;
@@ -1,4 +1,5 @@
1
- import { type ElementRenderer } from '../utils';
1
+ import type { RecommendationProduct } from '@@/Types/recommendation';
2
+ import { type ElementRenderer, type CellRenderOptions } from '../utils';
2
3
  /**
3
4
  * Grid element renderer
4
5
  * Each element returns a `<td>` containing a nested table structure:
@@ -24,4 +25,15 @@ export declare const ATTRIBUTE_CELL_CLASS = "attribute-cell";
24
25
  * card-composition control so both render identical filler markup.
25
26
  */
26
27
  export declare function buildFillerCell(columnWidth: string, padding?: string): string;
28
+ /**
29
+ * Renders the inline price cell used when "Move to next line" is OFF: the sale
30
+ * price and original price sit side by side in a single attribute cell, each
31
+ * keeping its own `esd-extension-block-id` + `product-*` class so the per-element
32
+ * style controls and the compiler keep working.
33
+ *
34
+ * `originalFirst` preserves the card-composition order (original before sale when
35
+ * `productOldPrice` precedes `productPrice` in the composition) so the side-by-side
36
+ * order matches the stacked order.
37
+ */
38
+ export declare function renderInlineGridPriceCell(product: RecommendationProduct, originalFirst?: boolean, priceOptions?: CellRenderOptions, oldPriceOptions?: CellRenderOptions, cardBackgroundColor?: string): string;
27
39
  export declare const gridElementRenderer: ElementRenderer;
@@ -1,5 +1,5 @@
1
1
  import type { FiltersResponse, RecommendationProduct } from '@@/Types/recommendation';
2
- import { type ElementRenderer, type RenderOptions } from '../utils';
2
+ import { type ElementRenderer, type PricePlacementFlags, type RenderOptions } from '../utils';
3
3
  /**
4
4
  * Generates attribute-aligned product rows for grid layout.
5
5
  * Creates rows where each row contains one attribute type from all products.
@@ -9,7 +9,7 @@ import { type ElementRenderer, type RenderOptions } from '../utils';
9
9
  * @param composition - Array defining order of card elements
10
10
  * @returns HTML string for attribute-aligned rows
11
11
  */
12
- export declare function prepareGridAttributeRows(products: RecommendationProduct[], productsPerRow: number, elementRenderer: ElementRenderer, composition?: string[], filterList?: FiltersResponse, renderOptions?: RenderOptions): string;
12
+ export declare function prepareGridAttributeRows(products: RecommendationProduct[], productsPerRow: number, elementRenderer: ElementRenderer, composition?: string[], filterList?: FiltersResponse, renderOptions?: RenderOptions & PricePlacementFlags): string;
13
13
  /**
14
14
  * Prepares grid product rows with attribute-aligned structure
15
15
  * Groups products into rows, then generates attribute-aligned HTML for each group
@@ -19,7 +19,7 @@ export declare function prepareGridAttributeRows(products: RecommendationProduct
19
19
  * @param composition - Array defining order of card elements
20
20
  * @returns HTML string for all product rows
21
21
  */
22
- export declare function prepareGridProductRows(products: RecommendationProduct[], productsPerRow: number, elementRenderer: ElementRenderer, composition?: string[], filterList?: FiltersResponse, renderOptions?: RenderOptions): string;
22
+ export declare function prepareGridProductRows(products: RecommendationProduct[], productsPerRow: number, elementRenderer: ElementRenderer, composition?: string[], filterList?: FiltersResponse, renderOptions?: RenderOptions & PricePlacementFlags): string;
23
23
  /**
24
24
  * Prepares grid product rows with attribute-aligned structure.
25
25
  * Uses row-based rendering where each attribute type forms a single row across all products.
@@ -28,6 +28,6 @@ export declare function prepareGridProductRows(products: RecommendationProduct[]
28
28
  * @param composition - Array defining element order
29
29
  * @returns HTML string for product rows
30
30
  */
31
- export declare function prepareProductRows(products: RecommendationProduct[], productsPerRow: number, composition?: string[], filterList?: FiltersResponse, renderOptions?: RenderOptions): string;
31
+ export declare function prepareProductRows(products: RecommendationProduct[], productsPerRow: number, composition?: string[], filterList?: FiltersResponse, renderOptions?: RenderOptions & PricePlacementFlags): string;
32
32
  export declare function getDefaultTemplate(recommendationId?: number): string;
33
33
  export declare function generateBlockTemplate(products: RecommendationProduct[], productsPerRow: number, title?: string, composition?: string[], mobileProductsPerRow?: number): string;
@@ -6,7 +6,7 @@
6
6
  */
7
7
  import type { RecommendationProduct } from '@@/Types/recommendation';
8
8
  import { type Orientation, type PrepareProductRowsOptions } from './utils';
9
- export { DEFAULTS, DEFAULT_CARD_COMPOSITION, DEFAULT_CARD_VISIBILITY, getDefaultProducts, spacer, sanitizeImageUrl, createBlockTemplate, toDisplayableAttributeValue, type Orientation, type PrepareProductRowsOptions, type ElementRenderer, type ProductCardGetter, type AttributeStyleTemplate, type AttributeStyleTemplates, type CellBackgroundColors, type CellAlignments, type CellClasses, type OmnibusTexts, } from './utils';
9
+ export { DEFAULTS, DEFAULT_CARD_COMPOSITION, DEFAULT_CARD_VISIBILITY, getDefaultProducts, isSamePrice, spacer, sanitizeImageUrl, createBlockTemplate, toDisplayableAttributeValue, type Orientation, type PrepareProductRowsOptions, type ElementRenderer, type ProductCardGetter, type AttributeStyleTemplate, type AttributeStyleTemplates, type CellBackgroundColors, type CellAlignments, type CellClasses, type OmnibusTexts, } from './utils';
10
10
  /**
11
11
  * Unified function to prepare product rows for any layout.
12
12
  * Delegates to the appropriate layout-specific implementation.
@@ -1,8 +1,17 @@
1
- import { type ElementRenderer } from '../utils';
1
+ import type { RecommendationProduct } from '@@/Types/recommendation';
2
+ import { type ElementRenderer, type CellRenderOptions } from '../utils';
2
3
  /**
3
4
  * List element renderer
4
5
  * - Image and Button return `<td>` cells for the 3-column layout
5
6
  * - Name and Prices return `<tr><td>` rows for the info cell table
6
7
  * All elements have esd-block-* classes for Stripo selection
7
8
  */
9
+ /**
10
+ * Inline price info row used when "Move to next line" is OFF: the sale price and
11
+ * original price sit in two cells of one row. Each keeps its block id + class so
12
+ * style controls and the compiler keep working. `originalFirst` preserves the
13
+ * card-composition order (original before sale by default) so it matches the
14
+ * stacked order.
15
+ */
16
+ export declare function renderInlineListPriceRow(product: RecommendationProduct, originalFirst?: boolean, priceOptions?: CellRenderOptions, oldPriceOptions?: CellRenderOptions): string;
8
17
  export declare const listElementRenderer: ElementRenderer;
@@ -1,5 +1,5 @@
1
1
  import type { FiltersResponse, RecommendationProduct } from '@@/Types/recommendation';
2
- import { type RenderOptions } from '../utils';
2
+ import { type PricePlacementFlags, type RenderOptions } from '../utils';
3
3
  /**
4
4
  * Generates a list product card with 3-column layout
5
5
  * Uses buildElementRenderer to render Image, Info content, and Button
@@ -12,7 +12,7 @@ import { type RenderOptions } from '../utils';
12
12
  * @param composition - Array defining order of card elements
13
13
  * @returns HTML string for a single product card row
14
14
  */
15
- export declare function getListProductCard(product: RecommendationProduct, composition?: string[], filterList?: FiltersResponse, renderOptions?: RenderOptions): string;
15
+ export declare function getListProductCard(product: RecommendationProduct, composition?: string[], filterList?: FiltersResponse, renderOptions?: RenderOptions & PricePlacementFlags): string;
16
16
  /**
17
17
  * Prepares list product rows
18
18
  * Each product is a full-width row with 3-column layout
@@ -20,6 +20,6 @@ export declare function getListProductCard(product: RecommendationProduct, compo
20
20
  * @param composition - Array defining order of card elements
21
21
  * @returns HTML string for product rows
22
22
  */
23
- export declare function prepareProductRows(products: RecommendationProduct[], composition?: string[], filterList?: FiltersResponse, renderOptions?: RenderOptions): string;
23
+ export declare function prepareProductRows(products: RecommendationProduct[], composition?: string[], filterList?: FiltersResponse, renderOptions?: RenderOptions & PricePlacementFlags): string;
24
24
  export declare function getDefaultTemplate(): string;
25
25
  export declare function generateBlockTemplate(products: RecommendationProduct[], title?: string, composition?: string[]): string;
@@ -1,10 +1,39 @@
1
+ import type { CurrencyConfig } from '../types/nodeConfig';
1
2
  import type { FiltersResponse, RecommendationProduct } from '@@/Types/recommendation';
2
3
  import { ATTR_PRODUCT_IMAGE, ATTR_PRODUCT_NAME, ATTR_PRODUCT_PRICE, ATTR_PRODUCT_OLD_PRICE, ATTR_PRODUCT_OMNIBUS_PRICE, ATTR_PRODUCT_OMNIBUS_DISCOUNT, ATTR_PRODUCT_BUTTON } from '../constants';
4
+ type PriceKey = 'price' | 'original_price' | 'discount';
5
+ /**
6
+ * Current currency configuration from the store, in CurrencyConfig shape.
7
+ */
8
+ export declare function getCurrentCurrencyConfig(): CurrencyConfig;
9
+ /**
10
+ * Formats a product price using current currency settings. Falls back to the
11
+ * first available currency, then 0, when the active currency has no value.
12
+ */
13
+ export declare function formatProductPrice(product: RecommendationProduct, priceKey?: PriceKey): string;
14
+ /**
15
+ * True when the formatted sale price equals the formatted original price.
16
+ * Mirrors the email-service / preview hide-if-same comparison semantics
17
+ * (formatted-string equality, same currency fallback chain).
18
+ */
19
+ export declare function isSamePrice(product: RecommendationProduct): boolean;
3
20
  /**
4
21
  * Converts a snake_case attribute name to Title Case display name.
5
22
  * e.g., "rating_star" → "Rating Star"
6
23
  */
7
24
  export declare function toDisplayName(attrName: string): string;
25
+ /**
26
+ * Resolves the inline (side-by-side) price layout from the composition order so
27
+ * it matches the stacked order. `anchor` is whichever of price / original price
28
+ * comes first in the composition (the merged cell renders there); `skip` is the
29
+ * other (dropped, since it's merged in); `originalFirst` puts the original price
30
+ * on the left when it precedes the sale price (the default composition order).
31
+ */
32
+ export declare function resolveInlinePriceOrder(composition: string[]): {
33
+ originalFirst: boolean;
34
+ anchor: string;
35
+ skip: string;
36
+ };
8
37
  /**
9
38
  * Reduces a raw product-attribute value to a displayable scalar string.
10
39
  * Array-type attributes (filter types `Strings`/`Numbers`) are substituted with
@@ -150,10 +179,24 @@ export interface RenderOptions {
150
179
  /** Per-attribute visibility (show/hide) re-applied across regeneration; falls back to defaults. */
151
180
  visibility?: AttributeVisibility;
152
181
  }
182
+ /**
183
+ * Builds the per-attribute `CellRenderOptions` for one composition key from the block-level
184
+ * `RenderOptions`. Single source for both the stacked per-cell options and the two inline
185
+ * (price + old-price) option sets, so style capture → re-bake stays consistent across layouts.
186
+ */
187
+ export declare function buildCellOptions(attrType: string, renderOptions: RenderOptions): CellRenderOptions;
153
188
  /**
154
189
  * Options for prepareProductRows unified function
155
190
  */
156
- export interface PrepareProductRowsOptions extends RenderOptions {
191
+ /**
192
+ * Block-level price placement flags threaded into the row builders.
193
+ * - `priceInline`: render sale + original price on one line (skip the standalone
194
+ * original-price row).
195
+ */
196
+ export interface PricePlacementFlags {
197
+ priceInline?: boolean;
198
+ }
199
+ export interface PrepareProductRowsOptions extends PricePlacementFlags, RenderOptions {
157
200
  /** Number of products per row (only for grid layout, defaults to 3) */
158
201
  productsPerRow?: number;
159
202
  /** Number of products per row on mobile (only for grid layout, defaults to 1) */
@@ -223,6 +266,12 @@ export declare function renderStyledParagraph(text: string, defaults: {
223
266
  * base style. Returns '' when there is nothing to set.
224
267
  */
225
268
  export declare function resolveSegmentBgStyle(baseStyle: string, cardBackgroundColor?: string): string;
269
+ /**
270
+ * The ` background-color: …;` CSS fragment for a captured "Block Background Color", or ''.
271
+ * Use this when merging into an existing `style="…"` attribute; use `cellBgStyleAttr` when the
272
+ * cell has no other inline style and needs the whole attribute.
273
+ */
274
+ export declare function bgColorFragment(color?: string): string;
226
275
  /**
227
276
  * Builds the ` style="background-color: …"` attribute for a text attribute's
228
277
  * `[esd-extension-block-id]` cell, baking in the captured "Block Background Color".
@@ -278,3 +327,4 @@ export declare function getDefaultProducts(count?: number): RecommendationProduc
278
327
  * @returns HTML template string with {-{-TITLE-}-}, {-{-PRODUCT_ROWS-}-}, and {-{-MOBILE_PRODUCT_ROWS-}-} (grid only) placeholders
279
328
  */
280
329
  export declare function createBlockTemplate(layout?: Orientation, instanceClass?: string): string;
330
+ export {};
@@ -152,6 +152,21 @@ export interface RecommendationNodeConfig {
152
152
  * Whether to trim long product names with ellipsis
153
153
  */
154
154
  textTrimming: boolean;
155
+ /**
156
+ * Whether the price and original price render on separate stacked lines.
157
+ * - true (default): each on its own attribute row (current Guido look)
158
+ * - false: both rendered inline on the same line, and Card Composition
159
+ * collapses them into a single "Product Prices" entry
160
+ * Ported from the legacy product block's `isPriceMovedToNextLine`.
161
+ */
162
+ priceMovedToNextLine: boolean;
163
+ /**
164
+ * Whether to hide the redundant original price when it equals the sale
165
+ * price (no real discount). Enforced in the real email via a liquid
166
+ * condition and mirrored in the editor on mock data.
167
+ * Ported from the legacy product block's `isPriceDeletedForZeroSale`.
168
+ */
169
+ priceHideIfSameAsDiscounted: boolean;
155
170
  /**
156
171
  * Configuration version for future migrations
157
172
  * Increment when making breaking changes to schema
@@ -98,11 +98,20 @@ export declare function createTextBackgroundColorControl(controlId: string, targ
98
98
  new (): {
99
99
  getId(): string;
100
100
  getTargetNodes(root: ImmutableHtmlNode): ImmutableHtmlNode[];
101
+ /**
102
+ * Mirrors the picked background onto each target cell as an INLINE style.
103
+ *
104
+ * Stripo's built-in applies the background as a stylesheet rule, not inline. On
105
+ * regeneration we re-bake the captured color inline (cellBgStyleAttr); inline then
106
+ * outranks Stripo's rule in the cascade, so a later re-edit silently has no effect
107
+ * (SD-143023). Writing the inline here keeps it the single source of truth and in
108
+ * sync on every edit. Merged into the parent control's single patch (no extra apply).
109
+ */
110
+ getAdditionalModifications(root: ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").TemplateModifier<import("@stripoinc/ui-editor-extensions").HtmlNodeModifier, import("@stripoinc/ui-editor-extensions").CssNodeModifier> | undefined;
101
111
  getParentControlId(): string;
102
112
  api: import("@stripoinc/ui-editor-extensions").ControlApi;
103
113
  getLabels(): import("@stripoinc/ui-editor-extensions").ControlLabels | undefined;
104
114
  getModificationDescription(): import("@stripoinc/ui-editor-extensions").ModificationDescription | undefined;
105
- getAdditionalModifications(_root: ImmutableHtmlNode): import("@stripoinc/ui-editor-extensions").TemplateModifier<import("@stripoinc/ui-editor-extensions").HtmlNodeModifier, import("@stripoinc/ui-editor-extensions").CssNodeModifier> | undefined;
106
115
  isVisible(_node: ImmutableHtmlNode): boolean;
107
116
  };
108
117
  };