@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.
@@ -16744,6 +16744,12 @@ interface PresetElementDefaults {
16744
16744
  * @maxLength 300
16745
16745
  */
16746
16746
  description?: string | null;
16747
+ /**
16748
+ * Optional per-preset layout overrides for containers in this element's data scope, keyed by the container's data-item key.
16749
+ * Each key must reference a data item of type 'container' in the same scope. Any field left unset on the
16750
+ * ContainerLayout falls back to the container's own declared layout.
16751
+ */
16752
+ containers?: Record<string, ContainerLayout>;
16747
16753
  }
16748
16754
  interface CssPropertyItemDefaults {
16749
16755
  /** The default value of this css-property-item */
@@ -16758,6 +16764,12 @@ interface PresetInnerElementDefaults {
16758
16764
  cssCustomProperties?: Record<string, CssPropertyItemDefaults>;
16759
16765
  /** The default preset and styles for inner elements */
16760
16766
  elements?: Record<string, PresetInnerElementDefaults>;
16767
+ /**
16768
+ * Optional per-preset layout overrides for containers in this element's data scope, keyed by the container's data-item key.
16769
+ * Each key must reference a data item of type 'container' in this element's scope. Any field left unset on the
16770
+ * ContainerLayout falls back to the container's own declared layout.
16771
+ */
16772
+ containers?: Record<string, ContainerLayout>;
16761
16773
  }
16762
16774
  /** Top-level message containing all layout capabilities */
16763
16775
  interface EditorElementLayout {