@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
|
@@ -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
|
|
@@ -2591,6 +2591,8 @@ var FilterFunction = /* @__PURE__ */ ((FilterFunction2) => {
|
|
|
2591
2591
|
FilterFunction2["opacity"] = "opacity";
|
|
2592
2592
|
FilterFunction2["sepia"] = "sepia";
|
|
2593
2593
|
FilterFunction2["saturate"] = "saturate";
|
|
2594
|
+
FilterFunction2["dropShadow"] = "dropShadow";
|
|
2595
|
+
FilterFunction2["hueRotate"] = "hueRotate";
|
|
2594
2596
|
return FilterFunction2;
|
|
2595
2597
|
})(FilterFunction || {});
|
|
2596
2598
|
var DisplayValueEnumDisplayValue = /* @__PURE__ */ ((DisplayValueEnumDisplayValue2) => {
|
|
@@ -2609,6 +2611,11 @@ var DisplayValueEnumDisplayValue = /* @__PURE__ */ ((DisplayValueEnumDisplayValu
|
|
|
2609
2611
|
DisplayValueEnumDisplayValue2["inline_table"] = "inline_table";
|
|
2610
2612
|
DisplayValueEnumDisplayValue2["inline_flex"] = "inline_flex";
|
|
2611
2613
|
DisplayValueEnumDisplayValue2["inline_grid"] = "inline_grid";
|
|
2614
|
+
DisplayValueEnumDisplayValue2["inlineBlock"] = "inlineBlock";
|
|
2615
|
+
DisplayValueEnumDisplayValue2["inlineTable"] = "inlineTable";
|
|
2616
|
+
DisplayValueEnumDisplayValue2["inlineFlex"] = "inlineFlex";
|
|
2617
|
+
DisplayValueEnumDisplayValue2["inlineGrid"] = "inlineGrid";
|
|
2618
|
+
DisplayValueEnumDisplayValue2["listItem"] = "listItem";
|
|
2612
2619
|
return DisplayValueEnumDisplayValue2;
|
|
2613
2620
|
})(DisplayValueEnumDisplayValue || {});
|
|
2614
2621
|
var WritingModeValue = /* @__PURE__ */ ((WritingModeValue2) => {
|