@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
|
@@ -14991,11 +14991,11 @@ declare enum FilterFunction {
|
|
|
14991
14991
|
brightness = "brightness",
|
|
14992
14992
|
/** The value used for contrast filter */
|
|
14993
14993
|
contrast = "contrast",
|
|
14994
|
-
/**
|
|
14994
|
+
/** DEPRECATED - use dropShadow instead */
|
|
14995
14995
|
drop_shadow = "drop_shadow",
|
|
14996
14996
|
/** The value used for grayscale filter */
|
|
14997
14997
|
grayscale = "grayscale",
|
|
14998
|
-
/**
|
|
14998
|
+
/** DEPRECATED - use hueRotate instead */
|
|
14999
14999
|
hue_rotate = "hue_rotate",
|
|
15000
15000
|
/** The value used for invert filter */
|
|
15001
15001
|
invert = "invert",
|
|
@@ -15004,10 +15004,14 @@ declare enum FilterFunction {
|
|
|
15004
15004
|
/** The value used for sepia filter */
|
|
15005
15005
|
sepia = "sepia",
|
|
15006
15006
|
/** The value used for saturate filter */
|
|
15007
|
-
saturate = "saturate"
|
|
15007
|
+
saturate = "saturate",
|
|
15008
|
+
/** The value used for drop-shadow filter */
|
|
15009
|
+
dropShadow = "dropShadow",
|
|
15010
|
+
/** The value used for hue-rotate filter */
|
|
15011
|
+
hueRotate = "hueRotate"
|
|
15008
15012
|
}
|
|
15009
15013
|
/** @enumType */
|
|
15010
|
-
type FilterFunctionWithLiterals = FilterFunction | 'UNKNOWN_FilterFunctions' | 'blur' | 'brightness' | 'contrast' | 'drop_shadow' | 'grayscale' | 'hue_rotate' | 'invert' | 'opacity' | 'sepia' | 'saturate';
|
|
15014
|
+
type FilterFunctionWithLiterals = FilterFunction | 'UNKNOWN_FilterFunctions' | 'blur' | 'brightness' | 'contrast' | 'drop_shadow' | 'grayscale' | 'hue_rotate' | 'invert' | 'opacity' | 'sepia' | 'saturate' | 'dropShadow' | 'hueRotate';
|
|
15011
15015
|
interface BackdropFilter {
|
|
15012
15016
|
/**
|
|
15013
15017
|
* List of filter functions in case of reducing the abilities exposed to the User
|
|
@@ -15032,15 +15036,25 @@ declare enum DisplayValueEnumDisplayValue {
|
|
|
15032
15036
|
table = "table",
|
|
15033
15037
|
flex = "flex",
|
|
15034
15038
|
grid = "grid",
|
|
15039
|
+
/** DEPRECATED - use listItem instead */
|
|
15035
15040
|
list_item = "list_item",
|
|
15036
15041
|
contents = "contents",
|
|
15042
|
+
/** DEPRECATED - use inlineBlock instead */
|
|
15037
15043
|
inline_block = "inline_block",
|
|
15044
|
+
/** DEPRECATED - use inlineTable instead */
|
|
15038
15045
|
inline_table = "inline_table",
|
|
15046
|
+
/** DEPRECATED - use inlineFlex instead */
|
|
15039
15047
|
inline_flex = "inline_flex",
|
|
15040
|
-
|
|
15048
|
+
/** DEPRECATED - use inlineGrid instead */
|
|
15049
|
+
inline_grid = "inline_grid",
|
|
15050
|
+
inlineBlock = "inlineBlock",
|
|
15051
|
+
inlineTable = "inlineTable",
|
|
15052
|
+
inlineFlex = "inlineFlex",
|
|
15053
|
+
inlineGrid = "inlineGrid",
|
|
15054
|
+
listItem = "listItem"
|
|
15041
15055
|
}
|
|
15042
15056
|
/** @enumType */
|
|
15043
|
-
type DisplayValueEnumDisplayValueWithLiterals = DisplayValueEnumDisplayValue | 'UNKNOWN_DisplayValue' | 'none' | 'block' | 'inline' | 'flow' | 'flowRoot' | 'table' | 'flex' | 'grid' | 'list_item' | 'contents' | 'inline_block' | 'inline_table' | 'inline_flex' | 'inline_grid';
|
|
15057
|
+
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';
|
|
15044
15058
|
interface WritingMode {
|
|
15045
15059
|
/**
|
|
15046
15060
|
* list of writing-mode values in case we want to reduce the abilities exposed to the User
|
|
@@ -16306,6 +16320,8 @@ interface CssPropertyItem extends CssPropertyItemSelectedCssPropertyTypeOneOf {
|
|
|
16306
16320
|
background?: Background;
|
|
16307
16321
|
/** Additional options to refine the background-image variable */
|
|
16308
16322
|
backgroundImage?: BackgroundImage;
|
|
16323
|
+
/** Additional options to refine the background-image variable */
|
|
16324
|
+
maskImage?: BackgroundImage;
|
|
16309
16325
|
/**
|
|
16310
16326
|
* Will be used as displayName of this css-property-item
|
|
16311
16327
|
* @maxLength 100
|
|
@@ -16330,6 +16346,8 @@ interface CssPropertyItemSelectedCssPropertyTypeOneOf {
|
|
|
16330
16346
|
background?: Background;
|
|
16331
16347
|
/** Additional options to refine the background-image variable */
|
|
16332
16348
|
backgroundImage?: BackgroundImage;
|
|
16349
|
+
/** Additional options to refine the background-image variable */
|
|
16350
|
+
maskImage?: BackgroundImage;
|
|
16333
16351
|
}
|
|
16334
16352
|
interface BackgroundImage {
|
|
16335
16353
|
/**
|
|
@@ -16362,6 +16380,8 @@ interface CssCustomPropertyItem extends CssCustomPropertyItemSelectedCssProperty
|
|
|
16362
16380
|
background?: Background;
|
|
16363
16381
|
/** Additional options to refine the background-image variable */
|
|
16364
16382
|
backgroundImage?: BackgroundImage;
|
|
16383
|
+
/** Additional options to refine the mask-image variable */
|
|
16384
|
+
maskImage?: BackgroundImage;
|
|
16365
16385
|
/** Additional options to refine the customEnum item */
|
|
16366
16386
|
customEnum?: CustomPropertyEnum;
|
|
16367
16387
|
/** Additional options to refine the number item */
|
|
@@ -16396,6 +16416,8 @@ interface CssCustomPropertyItemSelectedCssPropertyTypeOneOf {
|
|
|
16396
16416
|
background?: Background;
|
|
16397
16417
|
/** Additional options to refine the background-image variable */
|
|
16398
16418
|
backgroundImage?: BackgroundImage;
|
|
16419
|
+
/** Additional options to refine the mask-image variable */
|
|
16420
|
+
maskImage?: BackgroundImage;
|
|
16399
16421
|
/** Additional options to refine the customEnum item */
|
|
16400
16422
|
customEnum?: CustomPropertyEnum;
|
|
16401
16423
|
/** Additional options to refine the number item */
|
|
@@ -16536,10 +16558,21 @@ declare enum CssPropertyType {
|
|
|
16536
16558
|
strokeOpacity = "strokeOpacity",
|
|
16537
16559
|
/** fill properties */
|
|
16538
16560
|
fill = "fill",
|
|
16539
|
-
fillOpacity = "fillOpacity"
|
|
16561
|
+
fillOpacity = "fillOpacity",
|
|
16562
|
+
fillRule = "fillRule",
|
|
16563
|
+
/** mask properties */
|
|
16564
|
+
mask = "mask",
|
|
16565
|
+
maskImage = "maskImage",
|
|
16566
|
+
maskMode = "maskMode",
|
|
16567
|
+
maskRepeat = "maskRepeat",
|
|
16568
|
+
maskPosition = "maskPosition",
|
|
16569
|
+
maskClip = "maskClip",
|
|
16570
|
+
maskOrigin = "maskOrigin",
|
|
16571
|
+
maskSize = "maskSize",
|
|
16572
|
+
maskComposite = "maskComposite"
|
|
16540
16573
|
}
|
|
16541
16574
|
/** @enumType */
|
|
16542
|
-
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';
|
|
16575
|
+
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';
|
|
16543
16576
|
interface CustomPropertyEnum {
|
|
16544
16577
|
/** The type of the css-custom-property, used to define the type of the values allowed in the enum */
|
|
16545
16578
|
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) => {
|