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