@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
package/build/es/meta.d.mts
CHANGED
|
@@ -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
|
package/build/es/meta.mjs
CHANGED
|
@@ -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) => {
|