@wix/auto_sdk_data-extension-schema_schemas 1.0.178 → 1.0.179

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.
@@ -14317,8 +14317,27 @@ interface SimpleContainer {
14317
14317
  displayName?: string | null;
14318
14318
  }
14319
14319
  interface ContainerLayout {
14320
- /** Which direction the container can resize to. will be used to determine the resize handle in the editor, and the container layout. */
14320
+ /**
14321
+ * Which direction the container can resize to. will be used to determine the resize handle in the editor, and the container layout.
14322
+ * @deprecated Which direction the container can resize to. will be used to determine the resize handle in the editor, and the container layout.
14323
+ * @replacedBy container_resize_direction
14324
+ * @targetRemovalDate 2026-06-30
14325
+ */
14321
14326
  resizeDirection?: ResizeDirectionWithLiterals;
14327
+ /** Which direction the container can resize to. will be used to determine the resize handle in the editor, and the container layout. */
14328
+ containerResizeDirection?: ContentResizeDirectionWithLiterals;
14329
+ /**
14330
+ * In case the containerResizeDirection is horizontal or horizontalAndVertical this can be defined to provide the initial size of the container in the component
14331
+ * @min 1
14332
+ * @max 1280
14333
+ */
14334
+ width?: number | null;
14335
+ /**
14336
+ * In case the containerResizeDirection is vertical or horizontalAndVertical this can be defined to provide the initial size of the container in the component
14337
+ * @min 1
14338
+ * @max 1000
14339
+ */
14340
+ height?: number | null;
14322
14341
  }
14323
14342
  declare enum ResizeDirection {
14324
14343
  /** Default value when direction is not specified */
@@ -14336,6 +14355,20 @@ declare enum ResizeDirection {
14336
14355
  }
14337
14356
  /** @enumType */
14338
14357
  type ResizeDirectionWithLiterals = ResizeDirection | 'UNKNOWN_ResizeDirection' | 'horizontal' | 'vertical' | 'horizontalAndVertical' | 'aspectRatio' | 'none';
14358
+ declare enum ContentResizeDirection {
14359
+ /** Default value when content resize behavior is not specified */
14360
+ UNKNOWN_ContentResizeDirection = "UNKNOWN_ContentResizeDirection",
14361
+ /** Component's width will automatically adjust based on its content */
14362
+ horizontal = "horizontal",
14363
+ /** Component's height will automatically adjust based on its content */
14364
+ vertical = "vertical",
14365
+ /** Component's width and height will automatically adjust based on its content */
14366
+ horizontalAndVertical = "horizontalAndVertical",
14367
+ /** Component's size will not be affected by its content */
14368
+ none = "none"
14369
+ }
14370
+ /** @enumType */
14371
+ type ContentResizeDirectionWithLiterals = ContentResizeDirection | 'UNKNOWN_ContentResizeDirection' | 'horizontal' | 'vertical' | 'horizontalAndVertical' | 'none';
14339
14372
  interface ContainerStyleOverrides {
14340
14373
  /** The border style of the container, can be used to disable editing of the border, or change the display name. */
14341
14374
  border?: StyleItemOverrides;
@@ -15702,20 +15735,6 @@ interface EditorElementLayout {
15702
15735
  /** Will control the availability of the duplicate capability for this component */
15703
15736
  disableDuplication?: boolean | null;
15704
15737
  }
15705
- declare enum ContentResizeDirection {
15706
- /** Default value when content resize behavior is not specified */
15707
- UNKNOWN_ContentResizeDirection = "UNKNOWN_ContentResizeDirection",
15708
- /** Component's width will automatically adjust based on its content */
15709
- horizontal = "horizontal",
15710
- /** Component's height will automatically adjust based on its content */
15711
- vertical = "vertical",
15712
- /** Component's width and height will automatically adjust based on its content */
15713
- horizontalAndVertical = "horizontalAndVertical",
15714
- /** Component's size will not be affected by its content */
15715
- none = "none"
15716
- }
15717
- /** @enumType */
15718
- type ContentResizeDirectionWithLiterals = ContentResizeDirection | 'UNKNOWN_ContentResizeDirection' | 'horizontal' | 'vertical' | 'horizontalAndVertical' | 'none';
15719
15738
  interface ContentFill {
15720
15739
  /**
15721
15740
  * The key of the data-item that holds the content that fills the whole component visible space, using this will provide a better layout experiences for such components
@@ -2312,6 +2312,14 @@ var ResizeDirection = /* @__PURE__ */ ((ResizeDirection2) => {
2312
2312
  ResizeDirection2["none"] = "none";
2313
2313
  return ResizeDirection2;
2314
2314
  })(ResizeDirection || {});
2315
+ var ContentResizeDirection = /* @__PURE__ */ ((ContentResizeDirection2) => {
2316
+ ContentResizeDirection2["UNKNOWN_ContentResizeDirection"] = "UNKNOWN_ContentResizeDirection";
2317
+ ContentResizeDirection2["horizontal"] = "horizontal";
2318
+ ContentResizeDirection2["vertical"] = "vertical";
2319
+ ContentResizeDirection2["horizontalAndVertical"] = "horizontalAndVertical";
2320
+ ContentResizeDirection2["none"] = "none";
2321
+ return ContentResizeDirection2;
2322
+ })(ContentResizeDirection || {});
2315
2323
  var RichTextAbilities = /* @__PURE__ */ ((RichTextAbilities2) => {
2316
2324
  RichTextAbilities2["UNKNOWN_RichTextAbilities"] = "UNKNOWN_RichTextAbilities";
2317
2325
  RichTextAbilities2["font"] = "font";
@@ -2712,14 +2720,6 @@ var BreakpointEnumBreakpoint = /* @__PURE__ */ ((BreakpointEnumBreakpoint2) => {
2712
2720
  BreakpointEnumBreakpoint2["large"] = "large";
2713
2721
  return BreakpointEnumBreakpoint2;
2714
2722
  })(BreakpointEnumBreakpoint || {});
2715
- var ContentResizeDirection = /* @__PURE__ */ ((ContentResizeDirection2) => {
2716
- ContentResizeDirection2["UNKNOWN_ContentResizeDirection"] = "UNKNOWN_ContentResizeDirection";
2717
- ContentResizeDirection2["horizontal"] = "horizontal";
2718
- ContentResizeDirection2["vertical"] = "vertical";
2719
- ContentResizeDirection2["horizontalAndVertical"] = "horizontalAndVertical";
2720
- ContentResizeDirection2["none"] = "none";
2721
- return ContentResizeDirection2;
2722
- })(ContentResizeDirection || {});
2723
2723
  var Archetype = /* @__PURE__ */ ((Archetype2) => {
2724
2724
  Archetype2["UNKNOWN_Archetype"] = "UNKNOWN_Archetype";
2725
2725
  Archetype2["Button"] = "Button";