@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
package/build/cjs/meta.d.ts
CHANGED
|
@@ -14343,8 +14343,27 @@ interface SimpleContainer {
|
|
|
14343
14343
|
displayName?: string | null;
|
|
14344
14344
|
}
|
|
14345
14345
|
interface ContainerLayout {
|
|
14346
|
-
/**
|
|
14346
|
+
/**
|
|
14347
|
+
* Which direction the container can resize to. will be used to determine the resize handle in the editor, and the container layout.
|
|
14348
|
+
* @deprecated Which direction the container can resize to. will be used to determine the resize handle in the editor, and the container layout.
|
|
14349
|
+
* @replacedBy container_resize_direction
|
|
14350
|
+
* @targetRemovalDate 2026-06-30
|
|
14351
|
+
*/
|
|
14347
14352
|
resizeDirection?: ResizeDirectionWithLiterals;
|
|
14353
|
+
/** Which direction the container can resize to. will be used to determine the resize handle in the editor, and the container layout. */
|
|
14354
|
+
containerResizeDirection?: ContentResizeDirectionWithLiterals;
|
|
14355
|
+
/**
|
|
14356
|
+
* In case the containerResizeDirection is horizontal or horizontalAndVertical this can be defined to provide the initial size of the container in the component
|
|
14357
|
+
* @min 1
|
|
14358
|
+
* @max 1280
|
|
14359
|
+
*/
|
|
14360
|
+
width?: number | null;
|
|
14361
|
+
/**
|
|
14362
|
+
* In case the containerResizeDirection is vertical or horizontalAndVertical this can be defined to provide the initial size of the container in the component
|
|
14363
|
+
* @min 1
|
|
14364
|
+
* @max 1000
|
|
14365
|
+
*/
|
|
14366
|
+
height?: number | null;
|
|
14348
14367
|
}
|
|
14349
14368
|
declare enum ResizeDirection {
|
|
14350
14369
|
/** Default value when direction is not specified */
|
|
@@ -14362,6 +14381,20 @@ declare enum ResizeDirection {
|
|
|
14362
14381
|
}
|
|
14363
14382
|
/** @enumType */
|
|
14364
14383
|
type ResizeDirectionWithLiterals = ResizeDirection | 'UNKNOWN_ResizeDirection' | 'horizontal' | 'vertical' | 'horizontalAndVertical' | 'aspectRatio' | 'none';
|
|
14384
|
+
declare enum ContentResizeDirection {
|
|
14385
|
+
/** Default value when content resize behavior is not specified */
|
|
14386
|
+
UNKNOWN_ContentResizeDirection = "UNKNOWN_ContentResizeDirection",
|
|
14387
|
+
/** Component's width will automatically adjust based on its content */
|
|
14388
|
+
horizontal = "horizontal",
|
|
14389
|
+
/** Component's height will automatically adjust based on its content */
|
|
14390
|
+
vertical = "vertical",
|
|
14391
|
+
/** Component's width and height will automatically adjust based on its content */
|
|
14392
|
+
horizontalAndVertical = "horizontalAndVertical",
|
|
14393
|
+
/** Component's size will not be affected by its content */
|
|
14394
|
+
none = "none"
|
|
14395
|
+
}
|
|
14396
|
+
/** @enumType */
|
|
14397
|
+
type ContentResizeDirectionWithLiterals = ContentResizeDirection | 'UNKNOWN_ContentResizeDirection' | 'horizontal' | 'vertical' | 'horizontalAndVertical' | 'none';
|
|
14365
14398
|
interface ContainerStyleOverrides {
|
|
14366
14399
|
/** The border style of the container, can be used to disable editing of the border, or change the display name. */
|
|
14367
14400
|
border?: StyleItemOverrides;
|
|
@@ -15728,20 +15761,6 @@ interface EditorElementLayout {
|
|
|
15728
15761
|
/** Will control the availability of the duplicate capability for this component */
|
|
15729
15762
|
disableDuplication?: boolean | null;
|
|
15730
15763
|
}
|
|
15731
|
-
declare enum ContentResizeDirection {
|
|
15732
|
-
/** Default value when content resize behavior is not specified */
|
|
15733
|
-
UNKNOWN_ContentResizeDirection = "UNKNOWN_ContentResizeDirection",
|
|
15734
|
-
/** Component's width will automatically adjust based on its content */
|
|
15735
|
-
horizontal = "horizontal",
|
|
15736
|
-
/** Component's height will automatically adjust based on its content */
|
|
15737
|
-
vertical = "vertical",
|
|
15738
|
-
/** Component's width and height will automatically adjust based on its content */
|
|
15739
|
-
horizontalAndVertical = "horizontalAndVertical",
|
|
15740
|
-
/** Component's size will not be affected by its content */
|
|
15741
|
-
none = "none"
|
|
15742
|
-
}
|
|
15743
|
-
/** @enumType */
|
|
15744
|
-
type ContentResizeDirectionWithLiterals = ContentResizeDirection | 'UNKNOWN_ContentResizeDirection' | 'horizontal' | 'vertical' | 'horizontalAndVertical' | 'none';
|
|
15745
15764
|
interface ContentFill {
|
|
15746
15765
|
/**
|
|
15747
15766
|
* 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
|
package/build/cjs/meta.js
CHANGED
|
@@ -2308,6 +2308,14 @@ var ResizeDirection = /* @__PURE__ */ ((ResizeDirection2) => {
|
|
|
2308
2308
|
ResizeDirection2["none"] = "none";
|
|
2309
2309
|
return ResizeDirection2;
|
|
2310
2310
|
})(ResizeDirection || {});
|
|
2311
|
+
var ContentResizeDirection = /* @__PURE__ */ ((ContentResizeDirection2) => {
|
|
2312
|
+
ContentResizeDirection2["UNKNOWN_ContentResizeDirection"] = "UNKNOWN_ContentResizeDirection";
|
|
2313
|
+
ContentResizeDirection2["horizontal"] = "horizontal";
|
|
2314
|
+
ContentResizeDirection2["vertical"] = "vertical";
|
|
2315
|
+
ContentResizeDirection2["horizontalAndVertical"] = "horizontalAndVertical";
|
|
2316
|
+
ContentResizeDirection2["none"] = "none";
|
|
2317
|
+
return ContentResizeDirection2;
|
|
2318
|
+
})(ContentResizeDirection || {});
|
|
2311
2319
|
var RichTextAbilities = /* @__PURE__ */ ((RichTextAbilities2) => {
|
|
2312
2320
|
RichTextAbilities2["UNKNOWN_RichTextAbilities"] = "UNKNOWN_RichTextAbilities";
|
|
2313
2321
|
RichTextAbilities2["font"] = "font";
|
|
@@ -2708,14 +2716,6 @@ var BreakpointEnumBreakpoint = /* @__PURE__ */ ((BreakpointEnumBreakpoint2) => {
|
|
|
2708
2716
|
BreakpointEnumBreakpoint2["large"] = "large";
|
|
2709
2717
|
return BreakpointEnumBreakpoint2;
|
|
2710
2718
|
})(BreakpointEnumBreakpoint || {});
|
|
2711
|
-
var ContentResizeDirection = /* @__PURE__ */ ((ContentResizeDirection2) => {
|
|
2712
|
-
ContentResizeDirection2["UNKNOWN_ContentResizeDirection"] = "UNKNOWN_ContentResizeDirection";
|
|
2713
|
-
ContentResizeDirection2["horizontal"] = "horizontal";
|
|
2714
|
-
ContentResizeDirection2["vertical"] = "vertical";
|
|
2715
|
-
ContentResizeDirection2["horizontalAndVertical"] = "horizontalAndVertical";
|
|
2716
|
-
ContentResizeDirection2["none"] = "none";
|
|
2717
|
-
return ContentResizeDirection2;
|
|
2718
|
-
})(ContentResizeDirection || {});
|
|
2719
2719
|
var Archetype = /* @__PURE__ */ ((Archetype2) => {
|
|
2720
2720
|
Archetype2["UNKNOWN_Archetype"] = "UNKNOWN_Archetype";
|
|
2721
2721
|
Archetype2["Button"] = "Button";
|