@wix/auto_sdk_data-extension-schema_schemas 1.0.158 → 1.0.160
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 +17 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +41 -8
- package/build/cjs/index.typings.js +17 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +41 -8
- package/build/cjs/meta.js +17 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +17 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +41 -8
- package/build/es/index.typings.mjs +17 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +41 -8
- package/build/es/meta.mjs +17 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +17 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +41 -8
- package/build/internal/cjs/index.typings.js +17 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +41 -8
- package/build/internal/cjs/meta.js +17 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +17 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +41 -8
- package/build/internal/es/index.typings.mjs +17 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +41 -8
- package/build/internal/es/meta.mjs +17 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -14974,11 +14974,11 @@ declare enum FilterFunction {
|
|
|
14974
14974
|
brightness = "brightness",
|
|
14975
14975
|
/** The value used for contrast filter */
|
|
14976
14976
|
contrast = "contrast",
|
|
14977
|
-
/**
|
|
14977
|
+
/** DEPRECATED - use dropShadow instead */
|
|
14978
14978
|
drop_shadow = "drop_shadow",
|
|
14979
14979
|
/** The value used for grayscale filter */
|
|
14980
14980
|
grayscale = "grayscale",
|
|
14981
|
-
/**
|
|
14981
|
+
/** DEPRECATED - use hueRotate instead */
|
|
14982
14982
|
hue_rotate = "hue_rotate",
|
|
14983
14983
|
/** The value used for invert filter */
|
|
14984
14984
|
invert = "invert",
|
|
@@ -14987,10 +14987,14 @@ declare enum FilterFunction {
|
|
|
14987
14987
|
/** The value used for sepia filter */
|
|
14988
14988
|
sepia = "sepia",
|
|
14989
14989
|
/** The value used for saturate filter */
|
|
14990
|
-
saturate = "saturate"
|
|
14990
|
+
saturate = "saturate",
|
|
14991
|
+
/** The value used for drop-shadow filter */
|
|
14992
|
+
dropShadow = "dropShadow",
|
|
14993
|
+
/** The value used for hue-rotate filter */
|
|
14994
|
+
hueRotate = "hueRotate"
|
|
14991
14995
|
}
|
|
14992
14996
|
/** @enumType */
|
|
14993
|
-
type FilterFunctionWithLiterals = FilterFunction | 'UNKNOWN_FilterFunctions' | 'blur' | 'brightness' | 'contrast' | 'drop_shadow' | 'grayscale' | 'hue_rotate' | 'invert' | 'opacity' | 'sepia' | 'saturate';
|
|
14997
|
+
type FilterFunctionWithLiterals = FilterFunction | 'UNKNOWN_FilterFunctions' | 'blur' | 'brightness' | 'contrast' | 'drop_shadow' | 'grayscale' | 'hue_rotate' | 'invert' | 'opacity' | 'sepia' | 'saturate' | 'dropShadow' | 'hueRotate';
|
|
14994
14998
|
interface BackdropFilter {
|
|
14995
14999
|
/**
|
|
14996
15000
|
* List of filter functions in case of reducing the abilities exposed to the User
|
|
@@ -15015,15 +15019,25 @@ declare enum DisplayValueEnumDisplayValue {
|
|
|
15015
15019
|
table = "table",
|
|
15016
15020
|
flex = "flex",
|
|
15017
15021
|
grid = "grid",
|
|
15022
|
+
/** DEPRECATED - use listItem instead */
|
|
15018
15023
|
list_item = "list_item",
|
|
15019
15024
|
contents = "contents",
|
|
15025
|
+
/** DEPRECATED - use inlineBlock instead */
|
|
15020
15026
|
inline_block = "inline_block",
|
|
15027
|
+
/** DEPRECATED - use inlineTable instead */
|
|
15021
15028
|
inline_table = "inline_table",
|
|
15029
|
+
/** DEPRECATED - use inlineFlex instead */
|
|
15022
15030
|
inline_flex = "inline_flex",
|
|
15023
|
-
|
|
15031
|
+
/** DEPRECATED - use inlineGrid instead */
|
|
15032
|
+
inline_grid = "inline_grid",
|
|
15033
|
+
inlineBlock = "inlineBlock",
|
|
15034
|
+
inlineTable = "inlineTable",
|
|
15035
|
+
inlineFlex = "inlineFlex",
|
|
15036
|
+
inlineGrid = "inlineGrid",
|
|
15037
|
+
listItem = "listItem"
|
|
15024
15038
|
}
|
|
15025
15039
|
/** @enumType */
|
|
15026
|
-
type DisplayValueEnumDisplayValueWithLiterals = DisplayValueEnumDisplayValue | 'UNKNOWN_DisplayValue' | 'none' | 'block' | 'inline' | 'flow' | 'flowRoot' | 'table' | 'flex' | 'grid' | 'list_item' | 'contents' | 'inline_block' | 'inline_table' | 'inline_flex' | 'inline_grid';
|
|
15040
|
+
type DisplayValueEnumDisplayValueWithLiterals = DisplayValueEnumDisplayValue | 'UNKNOWN_DisplayValue' | 'none' | 'block' | 'inline' | 'flow' | 'flowRoot' | 'table' | 'flex' | 'grid' | 'list_item' | 'contents' | 'inline_block' | 'inline_table' | 'inline_flex' | 'inline_grid' | 'inlineBlock' | 'inlineTable' | 'inlineFlex' | 'inlineGrid' | 'listItem';
|
|
15027
15041
|
interface WritingMode {
|
|
15028
15042
|
/**
|
|
15029
15043
|
* list of writing-mode values in case we want to reduce the abilities exposed to the User
|
|
@@ -16289,6 +16303,8 @@ interface CssPropertyItem extends CssPropertyItemSelectedCssPropertyTypeOneOf {
|
|
|
16289
16303
|
background?: Background;
|
|
16290
16304
|
/** Additional options to refine the background-image variable */
|
|
16291
16305
|
backgroundImage?: BackgroundImage;
|
|
16306
|
+
/** Additional options to refine the background-image variable */
|
|
16307
|
+
maskImage?: BackgroundImage;
|
|
16292
16308
|
/**
|
|
16293
16309
|
* Will be used as displayName of this css-property-item
|
|
16294
16310
|
* @maxLength 100
|
|
@@ -16313,6 +16329,8 @@ interface CssPropertyItemSelectedCssPropertyTypeOneOf {
|
|
|
16313
16329
|
background?: Background;
|
|
16314
16330
|
/** Additional options to refine the background-image variable */
|
|
16315
16331
|
backgroundImage?: BackgroundImage;
|
|
16332
|
+
/** Additional options to refine the background-image variable */
|
|
16333
|
+
maskImage?: BackgroundImage;
|
|
16316
16334
|
}
|
|
16317
16335
|
interface BackgroundImage {
|
|
16318
16336
|
/**
|
|
@@ -16345,6 +16363,8 @@ interface CssCustomPropertyItem extends CssCustomPropertyItemSelectedCssProperty
|
|
|
16345
16363
|
background?: Background;
|
|
16346
16364
|
/** Additional options to refine the background-image variable */
|
|
16347
16365
|
backgroundImage?: BackgroundImage;
|
|
16366
|
+
/** Additional options to refine the mask-image variable */
|
|
16367
|
+
maskImage?: BackgroundImage;
|
|
16348
16368
|
/** Additional options to refine the customEnum item */
|
|
16349
16369
|
customEnum?: CustomPropertyEnum;
|
|
16350
16370
|
/** Additional options to refine the number item */
|
|
@@ -16379,6 +16399,8 @@ interface CssCustomPropertyItemSelectedCssPropertyTypeOneOf {
|
|
|
16379
16399
|
background?: Background;
|
|
16380
16400
|
/** Additional options to refine the background-image variable */
|
|
16381
16401
|
backgroundImage?: BackgroundImage;
|
|
16402
|
+
/** Additional options to refine the mask-image variable */
|
|
16403
|
+
maskImage?: BackgroundImage;
|
|
16382
16404
|
/** Additional options to refine the customEnum item */
|
|
16383
16405
|
customEnum?: CustomPropertyEnum;
|
|
16384
16406
|
/** Additional options to refine the number item */
|
|
@@ -16519,10 +16541,21 @@ declare enum CssPropertyType {
|
|
|
16519
16541
|
strokeOpacity = "strokeOpacity",
|
|
16520
16542
|
/** fill properties */
|
|
16521
16543
|
fill = "fill",
|
|
16522
|
-
fillOpacity = "fillOpacity"
|
|
16544
|
+
fillOpacity = "fillOpacity",
|
|
16545
|
+
fillRule = "fillRule",
|
|
16546
|
+
/** mask properties */
|
|
16547
|
+
mask = "mask",
|
|
16548
|
+
maskImage = "maskImage",
|
|
16549
|
+
maskMode = "maskMode",
|
|
16550
|
+
maskRepeat = "maskRepeat",
|
|
16551
|
+
maskPosition = "maskPosition",
|
|
16552
|
+
maskClip = "maskClip",
|
|
16553
|
+
maskOrigin = "maskOrigin",
|
|
16554
|
+
maskSize = "maskSize",
|
|
16555
|
+
maskComposite = "maskComposite"
|
|
16523
16556
|
}
|
|
16524
16557
|
/** @enumType */
|
|
16525
|
-
type CssPropertyTypeWithLiterals = CssPropertyType | 'UNKNOWN_CssPropertyType' | 'number' | 'string' | 'angle' | 'length' | 'percentage' | 'lengthPercentage' | 'blendMode' | 'customEnum' | 'time' | 'background' | 'backgroundSize' | 'backgroundColor' | 'backgroundImage' | 'backgroundClip' | 'backgroundOrigin' | 'backgroundPosition' | 'backgroundRepeat' | 'backgroundAttachment' | 'margin' | 'marginTop' | 'marginRight' | 'marginBottom' | 'marginLeft' | 'marginInlineStart' | 'marginInlineEnd' | 'padding' | 'paddingTop' | 'paddingRight' | 'paddingBottom' | 'paddingLeft' | 'paddingInlineStart' | 'paddingInlineEnd' | 'border' | 'borderWidth' | 'borderStyle' | 'borderColor' | 'borderTop' | 'borderTopColor' | 'borderTopWidth' | 'borderTopStyle' | 'borderRight' | 'borderRightColor' | 'borderRightWidth' | 'borderRightStyle' | 'borderBottom' | 'borderBottomColor' | 'borderBottomWidth' | 'borderBottomStyle' | 'borderLeft' | 'borderLeftColor' | 'borderLeftWidth' | 'borderLeftStyle' | 'borderInlineStart' | 'borderInlineStartColor' | 'borderInlineStartWidth' | 'borderInlineStartStyle' | 'borderInlineEnd' | 'borderInlineEndColor' | 'borderInlineEndWidth' | 'borderInlineEndStyle' | 'borderRadius' | 'borderTopLeftRadius' | 'borderTopRightRadius' | 'borderBottomRightRadius' | 'borderBottomLeftRadius' | 'borderStartStartRadius' | 'borderStartEndRadius' | 'borderEndStartRadius' | 'borderEndEndRadius' | 'font' | 'fontFamily' | 'fontSize' | 'fontStretch' | 'fontStyle' | 'fontVariant' | 'fontWeight' | 'lineHeight' | 'color' | 'letterSpacing' | 'writingMode' | 'textAlign' | 'textTransform' | 'textShadow' | 'textOverflow' | 'textIndent' | 'textDecoration' | 'textDecorationColor' | 'textDecorationLine' | 'textDecorationStyle' | 'textDecorationThickness' | 'boxShadow' | 'opacity' | 'overflow' | 'display' | 'alignSelf' | 'justifyContent' | 'alignItems' | 'flexDirection' | 'height' | 'width' | 'gap' | 'columnGap' | 'rowGap' | 'filter' | 'backdropFilter' | 'objectFit' | 'objectPosition' | 'mixBlendMode' | 'isolation' | 'stroke' | 'strokeWidth' | 'strokeOpacity' | 'fill' | 'fillOpacity';
|
|
16558
|
+
type CssPropertyTypeWithLiterals = CssPropertyType | 'UNKNOWN_CssPropertyType' | 'number' | 'string' | 'angle' | 'length' | 'percentage' | 'lengthPercentage' | 'blendMode' | 'customEnum' | 'time' | 'background' | 'backgroundSize' | 'backgroundColor' | 'backgroundImage' | 'backgroundClip' | 'backgroundOrigin' | 'backgroundPosition' | 'backgroundRepeat' | 'backgroundAttachment' | 'margin' | 'marginTop' | 'marginRight' | 'marginBottom' | 'marginLeft' | 'marginInlineStart' | 'marginInlineEnd' | 'padding' | 'paddingTop' | 'paddingRight' | 'paddingBottom' | 'paddingLeft' | 'paddingInlineStart' | 'paddingInlineEnd' | 'border' | 'borderWidth' | 'borderStyle' | 'borderColor' | 'borderTop' | 'borderTopColor' | 'borderTopWidth' | 'borderTopStyle' | 'borderRight' | 'borderRightColor' | 'borderRightWidth' | 'borderRightStyle' | 'borderBottom' | 'borderBottomColor' | 'borderBottomWidth' | 'borderBottomStyle' | 'borderLeft' | 'borderLeftColor' | 'borderLeftWidth' | 'borderLeftStyle' | 'borderInlineStart' | 'borderInlineStartColor' | 'borderInlineStartWidth' | 'borderInlineStartStyle' | 'borderInlineEnd' | 'borderInlineEndColor' | 'borderInlineEndWidth' | 'borderInlineEndStyle' | 'borderRadius' | 'borderTopLeftRadius' | 'borderTopRightRadius' | 'borderBottomRightRadius' | 'borderBottomLeftRadius' | 'borderStartStartRadius' | 'borderStartEndRadius' | 'borderEndStartRadius' | 'borderEndEndRadius' | 'font' | 'fontFamily' | 'fontSize' | 'fontStretch' | 'fontStyle' | 'fontVariant' | 'fontWeight' | 'lineHeight' | 'color' | 'letterSpacing' | 'writingMode' | 'textAlign' | 'textTransform' | 'textShadow' | 'textOverflow' | 'textIndent' | 'textDecoration' | 'textDecorationColor' | 'textDecorationLine' | 'textDecorationStyle' | 'textDecorationThickness' | 'boxShadow' | 'opacity' | 'overflow' | 'display' | 'alignSelf' | 'justifyContent' | 'alignItems' | 'flexDirection' | 'height' | 'width' | 'gap' | 'columnGap' | 'rowGap' | 'filter' | 'backdropFilter' | 'objectFit' | 'objectPosition' | 'mixBlendMode' | 'isolation' | 'stroke' | 'strokeWidth' | 'strokeOpacity' | 'fill' | 'fillOpacity' | 'fillRule' | 'mask' | 'maskImage' | 'maskMode' | 'maskRepeat' | 'maskPosition' | 'maskClip' | 'maskOrigin' | 'maskSize' | 'maskComposite';
|
|
16526
16559
|
interface CustomPropertyEnum {
|
|
16527
16560
|
/** The type of the css-custom-property, used to define the type of the values allowed in the enum */
|
|
16528
16561
|
cssPropertyType?: CssPropertyTypeWithLiterals;
|
|
@@ -2595,6 +2595,8 @@ var FilterFunction = /* @__PURE__ */ ((FilterFunction2) => {
|
|
|
2595
2595
|
FilterFunction2["opacity"] = "opacity";
|
|
2596
2596
|
FilterFunction2["sepia"] = "sepia";
|
|
2597
2597
|
FilterFunction2["saturate"] = "saturate";
|
|
2598
|
+
FilterFunction2["dropShadow"] = "dropShadow";
|
|
2599
|
+
FilterFunction2["hueRotate"] = "hueRotate";
|
|
2598
2600
|
return FilterFunction2;
|
|
2599
2601
|
})(FilterFunction || {});
|
|
2600
2602
|
var DisplayValueEnumDisplayValue = /* @__PURE__ */ ((DisplayValueEnumDisplayValue2) => {
|
|
@@ -2613,6 +2615,11 @@ var DisplayValueEnumDisplayValue = /* @__PURE__ */ ((DisplayValueEnumDisplayValu
|
|
|
2613
2615
|
DisplayValueEnumDisplayValue2["inline_table"] = "inline_table";
|
|
2614
2616
|
DisplayValueEnumDisplayValue2["inline_flex"] = "inline_flex";
|
|
2615
2617
|
DisplayValueEnumDisplayValue2["inline_grid"] = "inline_grid";
|
|
2618
|
+
DisplayValueEnumDisplayValue2["inlineBlock"] = "inlineBlock";
|
|
2619
|
+
DisplayValueEnumDisplayValue2["inlineTable"] = "inlineTable";
|
|
2620
|
+
DisplayValueEnumDisplayValue2["inlineFlex"] = "inlineFlex";
|
|
2621
|
+
DisplayValueEnumDisplayValue2["inlineGrid"] = "inlineGrid";
|
|
2622
|
+
DisplayValueEnumDisplayValue2["listItem"] = "listItem";
|
|
2616
2623
|
return DisplayValueEnumDisplayValue2;
|
|
2617
2624
|
})(DisplayValueEnumDisplayValue || {});
|
|
2618
2625
|
var WritingModeValue = /* @__PURE__ */ ((WritingModeValue2) => {
|
|
@@ -2903,6 +2910,16 @@ var CssPropertyType = /* @__PURE__ */ ((CssPropertyType2) => {
|
|
|
2903
2910
|
CssPropertyType2["strokeOpacity"] = "strokeOpacity";
|
|
2904
2911
|
CssPropertyType2["fill"] = "fill";
|
|
2905
2912
|
CssPropertyType2["fillOpacity"] = "fillOpacity";
|
|
2913
|
+
CssPropertyType2["fillRule"] = "fillRule";
|
|
2914
|
+
CssPropertyType2["mask"] = "mask";
|
|
2915
|
+
CssPropertyType2["maskImage"] = "maskImage";
|
|
2916
|
+
CssPropertyType2["maskMode"] = "maskMode";
|
|
2917
|
+
CssPropertyType2["maskRepeat"] = "maskRepeat";
|
|
2918
|
+
CssPropertyType2["maskPosition"] = "maskPosition";
|
|
2919
|
+
CssPropertyType2["maskClip"] = "maskClip";
|
|
2920
|
+
CssPropertyType2["maskOrigin"] = "maskOrigin";
|
|
2921
|
+
CssPropertyType2["maskSize"] = "maskSize";
|
|
2922
|
+
CssPropertyType2["maskComposite"] = "maskComposite";
|
|
2906
2923
|
return CssPropertyType2;
|
|
2907
2924
|
})(CssPropertyType || {});
|
|
2908
2925
|
var Trigger = /* @__PURE__ */ ((Trigger2) => {
|