@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.
@@ -14334,8 +14334,27 @@ interface SimpleContainer {
14334
14334
  displayName?: string | null;
14335
14335
  }
14336
14336
  interface ContainerLayout {
14337
- /** Which direction the container can resize to. will be used to determine the resize handle in the editor, and the container layout. */
14337
+ /**
14338
+ * Which direction the container can resize to. will be used to determine the resize handle in the editor, and the container layout.
14339
+ * @deprecated Which direction the container can resize to. will be used to determine the resize handle in the editor, and the container layout.
14340
+ * @replacedBy container_resize_direction
14341
+ * @targetRemovalDate 2026-06-30
14342
+ */
14338
14343
  resizeDirection?: ResizeDirectionWithLiterals;
14344
+ /** Which direction the container can resize to. will be used to determine the resize handle in the editor, and the container layout. */
14345
+ containerResizeDirection?: ContentResizeDirectionWithLiterals;
14346
+ /**
14347
+ * In case the containerResizeDirection is horizontal or horizontalAndVertical this can be defined to provide the initial size of the container in the component
14348
+ * @min 1
14349
+ * @max 1280
14350
+ */
14351
+ width?: number | null;
14352
+ /**
14353
+ * In case the containerResizeDirection is vertical or horizontalAndVertical this can be defined to provide the initial size of the container in the component
14354
+ * @min 1
14355
+ * @max 1000
14356
+ */
14357
+ height?: number | null;
14339
14358
  }
14340
14359
  declare enum ResizeDirection {
14341
14360
  /** Default value when direction is not specified */
@@ -14353,6 +14372,20 @@ declare enum ResizeDirection {
14353
14372
  }
14354
14373
  /** @enumType */
14355
14374
  type ResizeDirectionWithLiterals = ResizeDirection | 'UNKNOWN_ResizeDirection' | 'horizontal' | 'vertical' | 'horizontalAndVertical' | 'aspectRatio' | 'none';
14375
+ declare enum ContentResizeDirection {
14376
+ /** Default value when content resize behavior is not specified */
14377
+ UNKNOWN_ContentResizeDirection = "UNKNOWN_ContentResizeDirection",
14378
+ /** Component's width will automatically adjust based on its content */
14379
+ horizontal = "horizontal",
14380
+ /** Component's height will automatically adjust based on its content */
14381
+ vertical = "vertical",
14382
+ /** Component's width and height will automatically adjust based on its content */
14383
+ horizontalAndVertical = "horizontalAndVertical",
14384
+ /** Component's size will not be affected by its content */
14385
+ none = "none"
14386
+ }
14387
+ /** @enumType */
14388
+ type ContentResizeDirectionWithLiterals = ContentResizeDirection | 'UNKNOWN_ContentResizeDirection' | 'horizontal' | 'vertical' | 'horizontalAndVertical' | 'none';
14356
14389
  interface ContainerStyleOverrides {
14357
14390
  /** The border style of the container, can be used to disable editing of the border, or change the display name. */
14358
14391
  border?: StyleItemOverrides;
@@ -15719,20 +15752,6 @@ interface EditorElementLayout {
15719
15752
  /** Will control the availability of the duplicate capability for this component */
15720
15753
  disableDuplication?: boolean | null;
15721
15754
  }
15722
- declare enum ContentResizeDirection {
15723
- /** Default value when content resize behavior is not specified */
15724
- UNKNOWN_ContentResizeDirection = "UNKNOWN_ContentResizeDirection",
15725
- /** Component's width will automatically adjust based on its content */
15726
- horizontal = "horizontal",
15727
- /** Component's height will automatically adjust based on its content */
15728
- vertical = "vertical",
15729
- /** Component's width and height will automatically adjust based on its content */
15730
- horizontalAndVertical = "horizontalAndVertical",
15731
- /** Component's size will not be affected by its content */
15732
- none = "none"
15733
- }
15734
- /** @enumType */
15735
- type ContentResizeDirectionWithLiterals = ContentResizeDirection | 'UNKNOWN_ContentResizeDirection' | 'horizontal' | 'vertical' | 'horizontalAndVertical' | 'none';
15736
15755
  interface ContentFill {
15737
15756
  /**
15738
15757
  * 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
@@ -2028,6 +2028,14 @@ var ResizeDirection = /* @__PURE__ */ ((ResizeDirection2) => {
2028
2028
  ResizeDirection2["none"] = "none";
2029
2029
  return ResizeDirection2;
2030
2030
  })(ResizeDirection || {});
2031
+ var ContentResizeDirection = /* @__PURE__ */ ((ContentResizeDirection2) => {
2032
+ ContentResizeDirection2["UNKNOWN_ContentResizeDirection"] = "UNKNOWN_ContentResizeDirection";
2033
+ ContentResizeDirection2["horizontal"] = "horizontal";
2034
+ ContentResizeDirection2["vertical"] = "vertical";
2035
+ ContentResizeDirection2["horizontalAndVertical"] = "horizontalAndVertical";
2036
+ ContentResizeDirection2["none"] = "none";
2037
+ return ContentResizeDirection2;
2038
+ })(ContentResizeDirection || {});
2031
2039
  var RichTextAbilities = /* @__PURE__ */ ((RichTextAbilities2) => {
2032
2040
  RichTextAbilities2["UNKNOWN_RichTextAbilities"] = "UNKNOWN_RichTextAbilities";
2033
2041
  RichTextAbilities2["font"] = "font";
@@ -2428,14 +2436,6 @@ var BreakpointEnumBreakpoint = /* @__PURE__ */ ((BreakpointEnumBreakpoint2) => {
2428
2436
  BreakpointEnumBreakpoint2["large"] = "large";
2429
2437
  return BreakpointEnumBreakpoint2;
2430
2438
  })(BreakpointEnumBreakpoint || {});
2431
- var ContentResizeDirection = /* @__PURE__ */ ((ContentResizeDirection2) => {
2432
- ContentResizeDirection2["UNKNOWN_ContentResizeDirection"] = "UNKNOWN_ContentResizeDirection";
2433
- ContentResizeDirection2["horizontal"] = "horizontal";
2434
- ContentResizeDirection2["vertical"] = "vertical";
2435
- ContentResizeDirection2["horizontalAndVertical"] = "horizontalAndVertical";
2436
- ContentResizeDirection2["none"] = "none";
2437
- return ContentResizeDirection2;
2438
- })(ContentResizeDirection || {});
2439
2439
  var Archetype = /* @__PURE__ */ ((Archetype2) => {
2440
2440
  Archetype2["UNKNOWN_Archetype"] = "UNKNOWN_Archetype";
2441
2441
  Archetype2["Button"] = "Button";