@wix/auto_sdk_data-extension-schema_schemas 1.0.159 → 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 +7 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +20 -6
- package/build/cjs/index.typings.js +7 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +20 -6
- package/build/cjs/meta.js +7 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +7 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +20 -6
- package/build/es/index.typings.mjs +7 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +20 -6
- package/build/es/meta.mjs +7 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +7 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +20 -6
- package/build/internal/cjs/index.typings.js +7 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +20 -6
- package/build/internal/cjs/meta.js +7 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +7 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +20 -6
- package/build/internal/es/index.typings.mjs +7 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +20 -6
- package/build/internal/es/meta.mjs +7 -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
|
|
@@ -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) => {
|