@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.
- package/build/cjs/index.js +8 -8
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +34 -15
- package/build/cjs/index.typings.js +8 -8
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +34 -15
- package/build/cjs/meta.js +8 -8
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +8 -8
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +34 -15
- package/build/es/index.typings.mjs +8 -8
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +34 -15
- package/build/es/meta.mjs +8 -8
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +8 -8
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +34 -15
- package/build/internal/cjs/index.typings.js +8 -8
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +34 -15
- package/build/internal/cjs/meta.js +8 -8
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +8 -8
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +34 -15
- package/build/internal/es/index.typings.mjs +8 -8
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +34 -15
- package/build/internal/es/meta.mjs +8 -8
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -14317,8 +14317,27 @@ interface SimpleContainer {
|
|
|
14317
14317
|
displayName?: string | null;
|
|
14318
14318
|
}
|
|
14319
14319
|
interface ContainerLayout {
|
|
14320
|
-
/**
|
|
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
|
|
@@ -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";
|