@wix/auto_sdk_data-extension-schema_schemas 1.0.228 → 1.0.229

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.
@@ -16725,6 +16725,12 @@ interface PresetElementDefaults {
16725
16725
  * @maxLength 300
16726
16726
  */
16727
16727
  description?: string | null;
16728
+ /**
16729
+ * Optional per-preset layout overrides for containers in this element's data scope, keyed by the container's data-item key.
16730
+ * Each key must reference a data item of type 'container' in the same scope. Any field left unset on the
16731
+ * ContainerLayout falls back to the container's own declared layout.
16732
+ */
16733
+ containers?: Record<string, ContainerLayout>;
16728
16734
  }
16729
16735
  interface CssPropertyItemDefaults {
16730
16736
  /** The default value of this css-property-item */
@@ -16739,6 +16745,12 @@ interface PresetInnerElementDefaults {
16739
16745
  cssCustomProperties?: Record<string, CssPropertyItemDefaults>;
16740
16746
  /** The default preset and styles for inner elements */
16741
16747
  elements?: Record<string, PresetInnerElementDefaults>;
16748
+ /**
16749
+ * Optional per-preset layout overrides for containers in this element's data scope, keyed by the container's data-item key.
16750
+ * Each key must reference a data item of type 'container' in this element's scope. Any field left unset on the
16751
+ * ContainerLayout falls back to the container's own declared layout.
16752
+ */
16753
+ containers?: Record<string, ContainerLayout>;
16742
16754
  }
16743
16755
  /** Top-level message containing all layout capabilities */
16744
16756
  interface EditorElementLayout {