@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
|
@@ -15000,11 +15000,11 @@ declare enum FilterFunction {
|
|
|
15000
15000
|
brightness = "brightness",
|
|
15001
15001
|
/** The value used for contrast filter */
|
|
15002
15002
|
contrast = "contrast",
|
|
15003
|
-
/**
|
|
15003
|
+
/** DEPRECATED - use dropShadow instead */
|
|
15004
15004
|
drop_shadow = "drop_shadow",
|
|
15005
15005
|
/** The value used for grayscale filter */
|
|
15006
15006
|
grayscale = "grayscale",
|
|
15007
|
-
/**
|
|
15007
|
+
/** DEPRECATED - use hueRotate instead */
|
|
15008
15008
|
hue_rotate = "hue_rotate",
|
|
15009
15009
|
/** The value used for invert filter */
|
|
15010
15010
|
invert = "invert",
|
|
@@ -15013,10 +15013,14 @@ declare enum FilterFunction {
|
|
|
15013
15013
|
/** The value used for sepia filter */
|
|
15014
15014
|
sepia = "sepia",
|
|
15015
15015
|
/** The value used for saturate filter */
|
|
15016
|
-
saturate = "saturate"
|
|
15016
|
+
saturate = "saturate",
|
|
15017
|
+
/** The value used for drop-shadow filter */
|
|
15018
|
+
dropShadow = "dropShadow",
|
|
15019
|
+
/** The value used for hue-rotate filter */
|
|
15020
|
+
hueRotate = "hueRotate"
|
|
15017
15021
|
}
|
|
15018
15022
|
/** @enumType */
|
|
15019
|
-
type FilterFunctionWithLiterals = FilterFunction | 'UNKNOWN_FilterFunctions' | 'blur' | 'brightness' | 'contrast' | 'drop_shadow' | 'grayscale' | 'hue_rotate' | 'invert' | 'opacity' | 'sepia' | 'saturate';
|
|
15023
|
+
type FilterFunctionWithLiterals = FilterFunction | 'UNKNOWN_FilterFunctions' | 'blur' | 'brightness' | 'contrast' | 'drop_shadow' | 'grayscale' | 'hue_rotate' | 'invert' | 'opacity' | 'sepia' | 'saturate' | 'dropShadow' | 'hueRotate';
|
|
15020
15024
|
interface BackdropFilter {
|
|
15021
15025
|
/**
|
|
15022
15026
|
* List of filter functions in case of reducing the abilities exposed to the User
|
|
@@ -15041,15 +15045,25 @@ declare enum DisplayValueEnumDisplayValue {
|
|
|
15041
15045
|
table = "table",
|
|
15042
15046
|
flex = "flex",
|
|
15043
15047
|
grid = "grid",
|
|
15048
|
+
/** DEPRECATED - use listItem instead */
|
|
15044
15049
|
list_item = "list_item",
|
|
15045
15050
|
contents = "contents",
|
|
15051
|
+
/** DEPRECATED - use inlineBlock instead */
|
|
15046
15052
|
inline_block = "inline_block",
|
|
15053
|
+
/** DEPRECATED - use inlineTable instead */
|
|
15047
15054
|
inline_table = "inline_table",
|
|
15055
|
+
/** DEPRECATED - use inlineFlex instead */
|
|
15048
15056
|
inline_flex = "inline_flex",
|
|
15049
|
-
|
|
15057
|
+
/** DEPRECATED - use inlineGrid instead */
|
|
15058
|
+
inline_grid = "inline_grid",
|
|
15059
|
+
inlineBlock = "inlineBlock",
|
|
15060
|
+
inlineTable = "inlineTable",
|
|
15061
|
+
inlineFlex = "inlineFlex",
|
|
15062
|
+
inlineGrid = "inlineGrid",
|
|
15063
|
+
listItem = "listItem"
|
|
15050
15064
|
}
|
|
15051
15065
|
/** @enumType */
|
|
15052
|
-
type DisplayValueEnumDisplayValueWithLiterals = DisplayValueEnumDisplayValue | 'UNKNOWN_DisplayValue' | 'none' | 'block' | 'inline' | 'flow' | 'flowRoot' | 'table' | 'flex' | 'grid' | 'list_item' | 'contents' | 'inline_block' | 'inline_table' | 'inline_flex' | 'inline_grid';
|
|
15066
|
+
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';
|
|
15053
15067
|
interface WritingMode {
|
|
15054
15068
|
/**
|
|
15055
15069
|
* list of writing-mode values in case we want to reduce the abilities exposed to the User
|
|
@@ -16315,6 +16329,8 @@ interface CssPropertyItem extends CssPropertyItemSelectedCssPropertyTypeOneOf {
|
|
|
16315
16329
|
background?: Background;
|
|
16316
16330
|
/** Additional options to refine the background-image variable */
|
|
16317
16331
|
backgroundImage?: BackgroundImage;
|
|
16332
|
+
/** Additional options to refine the background-image variable */
|
|
16333
|
+
maskImage?: BackgroundImage;
|
|
16318
16334
|
/**
|
|
16319
16335
|
* Will be used as displayName of this css-property-item
|
|
16320
16336
|
* @maxLength 100
|
|
@@ -16339,6 +16355,8 @@ interface CssPropertyItemSelectedCssPropertyTypeOneOf {
|
|
|
16339
16355
|
background?: Background;
|
|
16340
16356
|
/** Additional options to refine the background-image variable */
|
|
16341
16357
|
backgroundImage?: BackgroundImage;
|
|
16358
|
+
/** Additional options to refine the background-image variable */
|
|
16359
|
+
maskImage?: BackgroundImage;
|
|
16342
16360
|
}
|
|
16343
16361
|
interface BackgroundImage {
|
|
16344
16362
|
/**
|
|
@@ -16371,6 +16389,8 @@ interface CssCustomPropertyItem extends CssCustomPropertyItemSelectedCssProperty
|
|
|
16371
16389
|
background?: Background;
|
|
16372
16390
|
/** Additional options to refine the background-image variable */
|
|
16373
16391
|
backgroundImage?: BackgroundImage;
|
|
16392
|
+
/** Additional options to refine the mask-image variable */
|
|
16393
|
+
maskImage?: BackgroundImage;
|
|
16374
16394
|
/** Additional options to refine the customEnum item */
|
|
16375
16395
|
customEnum?: CustomPropertyEnum;
|
|
16376
16396
|
/** Additional options to refine the number item */
|
|
@@ -16405,6 +16425,8 @@ interface CssCustomPropertyItemSelectedCssPropertyTypeOneOf {
|
|
|
16405
16425
|
background?: Background;
|
|
16406
16426
|
/** Additional options to refine the background-image variable */
|
|
16407
16427
|
backgroundImage?: BackgroundImage;
|
|
16428
|
+
/** Additional options to refine the mask-image variable */
|
|
16429
|
+
maskImage?: BackgroundImage;
|
|
16408
16430
|
/** Additional options to refine the customEnum item */
|
|
16409
16431
|
customEnum?: CustomPropertyEnum;
|
|
16410
16432
|
/** Additional options to refine the number item */
|
|
@@ -16545,10 +16567,21 @@ declare enum CssPropertyType {
|
|
|
16545
16567
|
strokeOpacity = "strokeOpacity",
|
|
16546
16568
|
/** fill properties */
|
|
16547
16569
|
fill = "fill",
|
|
16548
|
-
fillOpacity = "fillOpacity"
|
|
16570
|
+
fillOpacity = "fillOpacity",
|
|
16571
|
+
fillRule = "fillRule",
|
|
16572
|
+
/** mask properties */
|
|
16573
|
+
mask = "mask",
|
|
16574
|
+
maskImage = "maskImage",
|
|
16575
|
+
maskMode = "maskMode",
|
|
16576
|
+
maskRepeat = "maskRepeat",
|
|
16577
|
+
maskPosition = "maskPosition",
|
|
16578
|
+
maskClip = "maskClip",
|
|
16579
|
+
maskOrigin = "maskOrigin",
|
|
16580
|
+
maskSize = "maskSize",
|
|
16581
|
+
maskComposite = "maskComposite"
|
|
16549
16582
|
}
|
|
16550
16583
|
/** @enumType */
|
|
16551
|
-
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';
|
|
16584
|
+
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';
|
|
16552
16585
|
interface CustomPropertyEnum {
|
|
16553
16586
|
/** The type of the css-custom-property, used to define the type of the values allowed in the enum */
|
|
16554
16587
|
cssPropertyType?: CssPropertyTypeWithLiterals;
|
|
@@ -2310,6 +2310,8 @@ var FilterFunction = /* @__PURE__ */ ((FilterFunction2) => {
|
|
|
2310
2310
|
FilterFunction2["opacity"] = "opacity";
|
|
2311
2311
|
FilterFunction2["sepia"] = "sepia";
|
|
2312
2312
|
FilterFunction2["saturate"] = "saturate";
|
|
2313
|
+
FilterFunction2["dropShadow"] = "dropShadow";
|
|
2314
|
+
FilterFunction2["hueRotate"] = "hueRotate";
|
|
2313
2315
|
return FilterFunction2;
|
|
2314
2316
|
})(FilterFunction || {});
|
|
2315
2317
|
var DisplayValueEnumDisplayValue = /* @__PURE__ */ ((DisplayValueEnumDisplayValue2) => {
|
|
@@ -2328,6 +2330,11 @@ var DisplayValueEnumDisplayValue = /* @__PURE__ */ ((DisplayValueEnumDisplayValu
|
|
|
2328
2330
|
DisplayValueEnumDisplayValue2["inline_table"] = "inline_table";
|
|
2329
2331
|
DisplayValueEnumDisplayValue2["inline_flex"] = "inline_flex";
|
|
2330
2332
|
DisplayValueEnumDisplayValue2["inline_grid"] = "inline_grid";
|
|
2333
|
+
DisplayValueEnumDisplayValue2["inlineBlock"] = "inlineBlock";
|
|
2334
|
+
DisplayValueEnumDisplayValue2["inlineTable"] = "inlineTable";
|
|
2335
|
+
DisplayValueEnumDisplayValue2["inlineFlex"] = "inlineFlex";
|
|
2336
|
+
DisplayValueEnumDisplayValue2["inlineGrid"] = "inlineGrid";
|
|
2337
|
+
DisplayValueEnumDisplayValue2["listItem"] = "listItem";
|
|
2331
2338
|
return DisplayValueEnumDisplayValue2;
|
|
2332
2339
|
})(DisplayValueEnumDisplayValue || {});
|
|
2333
2340
|
var WritingModeValue = /* @__PURE__ */ ((WritingModeValue2) => {
|
|
@@ -2618,6 +2625,16 @@ var CssPropertyType = /* @__PURE__ */ ((CssPropertyType2) => {
|
|
|
2618
2625
|
CssPropertyType2["strokeOpacity"] = "strokeOpacity";
|
|
2619
2626
|
CssPropertyType2["fill"] = "fill";
|
|
2620
2627
|
CssPropertyType2["fillOpacity"] = "fillOpacity";
|
|
2628
|
+
CssPropertyType2["fillRule"] = "fillRule";
|
|
2629
|
+
CssPropertyType2["mask"] = "mask";
|
|
2630
|
+
CssPropertyType2["maskImage"] = "maskImage";
|
|
2631
|
+
CssPropertyType2["maskMode"] = "maskMode";
|
|
2632
|
+
CssPropertyType2["maskRepeat"] = "maskRepeat";
|
|
2633
|
+
CssPropertyType2["maskPosition"] = "maskPosition";
|
|
2634
|
+
CssPropertyType2["maskClip"] = "maskClip";
|
|
2635
|
+
CssPropertyType2["maskOrigin"] = "maskOrigin";
|
|
2636
|
+
CssPropertyType2["maskSize"] = "maskSize";
|
|
2637
|
+
CssPropertyType2["maskComposite"] = "maskComposite";
|
|
2621
2638
|
return CssPropertyType2;
|
|
2622
2639
|
})(CssPropertyType || {});
|
|
2623
2640
|
var Trigger = /* @__PURE__ */ ((Trigger2) => {
|