@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
|
|
@@ -2317,6 +2317,8 @@ var FilterFunction = /* @__PURE__ */ ((FilterFunction2) => {
|
|
|
2317
2317
|
FilterFunction2["opacity"] = "opacity";
|
|
2318
2318
|
FilterFunction2["sepia"] = "sepia";
|
|
2319
2319
|
FilterFunction2["saturate"] = "saturate";
|
|
2320
|
+
FilterFunction2["dropShadow"] = "dropShadow";
|
|
2321
|
+
FilterFunction2["hueRotate"] = "hueRotate";
|
|
2320
2322
|
return FilterFunction2;
|
|
2321
2323
|
})(FilterFunction || {});
|
|
2322
2324
|
var DisplayValueEnumDisplayValue = /* @__PURE__ */ ((DisplayValueEnumDisplayValue2) => {
|
|
@@ -2335,6 +2337,11 @@ var DisplayValueEnumDisplayValue = /* @__PURE__ */ ((DisplayValueEnumDisplayValu
|
|
|
2335
2337
|
DisplayValueEnumDisplayValue2["inline_table"] = "inline_table";
|
|
2336
2338
|
DisplayValueEnumDisplayValue2["inline_flex"] = "inline_flex";
|
|
2337
2339
|
DisplayValueEnumDisplayValue2["inline_grid"] = "inline_grid";
|
|
2340
|
+
DisplayValueEnumDisplayValue2["inlineBlock"] = "inlineBlock";
|
|
2341
|
+
DisplayValueEnumDisplayValue2["inlineTable"] = "inlineTable";
|
|
2342
|
+
DisplayValueEnumDisplayValue2["inlineFlex"] = "inlineFlex";
|
|
2343
|
+
DisplayValueEnumDisplayValue2["inlineGrid"] = "inlineGrid";
|
|
2344
|
+
DisplayValueEnumDisplayValue2["listItem"] = "listItem";
|
|
2338
2345
|
return DisplayValueEnumDisplayValue2;
|
|
2339
2346
|
})(DisplayValueEnumDisplayValue || {});
|
|
2340
2347
|
var WritingModeValue = /* @__PURE__ */ ((WritingModeValue2) => {
|