@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
|
@@ -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
|
|
@@ -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) => {
|