@wix/app-extensions 1.0.56 → 1.0.57

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.
@@ -20671,6 +20671,12 @@ interface PresetElementDefaults {
20671
20671
  * @maxLength 300
20672
20672
  */
20673
20673
  description?: string | null;
20674
+ /**
20675
+ * Optional per-preset layout overrides for containers in this element's data scope, keyed by the container's data-item key.
20676
+ * Each key must reference a data item of type 'container' in the same scope. Any field left unset on the
20677
+ * ContainerLayout falls back to the container's own declared layout.
20678
+ */
20679
+ containers?: Record<string, ContainerLayout>;
20674
20680
  }
20675
20681
  /** @internal */
20676
20682
  interface CssPropertyItemDefaults {
@@ -20687,6 +20693,12 @@ interface PresetInnerElementDefaults {
20687
20693
  cssCustomProperties?: Record<string, CssPropertyItemDefaults>;
20688
20694
  /** The default preset and styles for inner elements */
20689
20695
  elements?: Record<string, PresetInnerElementDefaults>;
20696
+ /**
20697
+ * Optional per-preset layout overrides for containers in this element's data scope, keyed by the container's data-item key.
20698
+ * Each key must reference a data item of type 'container' in this element's scope. Any field left unset on the
20699
+ * ContainerLayout falls back to the container's own declared layout.
20700
+ */
20701
+ containers?: Record<string, ContainerLayout>;
20690
20702
  }
20691
20703
  /** Top-level message containing all layout capabilities */
20692
20704
  /** @internal */