@wix/auto_sdk_data-extension-schema_schemas 1.0.158 → 1.0.159
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 +10 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +21 -2
- package/build/cjs/index.typings.js +10 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +21 -2
- package/build/cjs/meta.js +10 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs +10 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +21 -2
- package/build/es/index.typings.mjs +10 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +21 -2
- package/build/es/meta.mjs +10 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js +10 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +21 -2
- package/build/internal/cjs/index.typings.js +10 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +21 -2
- package/build/internal/cjs/meta.js +10 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs +10 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +21 -2
- package/build/internal/es/index.typings.mjs +10 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +21 -2
- package/build/internal/es/meta.mjs +10 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -16306,6 +16306,8 @@ interface CssPropertyItem extends CssPropertyItemSelectedCssPropertyTypeOneOf {
|
|
|
16306
16306
|
background?: Background;
|
|
16307
16307
|
/** Additional options to refine the background-image variable */
|
|
16308
16308
|
backgroundImage?: BackgroundImage;
|
|
16309
|
+
/** Additional options to refine the background-image variable */
|
|
16310
|
+
maskImage?: BackgroundImage;
|
|
16309
16311
|
/**
|
|
16310
16312
|
* Will be used as displayName of this css-property-item
|
|
16311
16313
|
* @maxLength 100
|
|
@@ -16330,6 +16332,8 @@ interface CssPropertyItemSelectedCssPropertyTypeOneOf {
|
|
|
16330
16332
|
background?: Background;
|
|
16331
16333
|
/** Additional options to refine the background-image variable */
|
|
16332
16334
|
backgroundImage?: BackgroundImage;
|
|
16335
|
+
/** Additional options to refine the background-image variable */
|
|
16336
|
+
maskImage?: BackgroundImage;
|
|
16333
16337
|
}
|
|
16334
16338
|
interface BackgroundImage {
|
|
16335
16339
|
/**
|
|
@@ -16362,6 +16366,8 @@ interface CssCustomPropertyItem extends CssCustomPropertyItemSelectedCssProperty
|
|
|
16362
16366
|
background?: Background;
|
|
16363
16367
|
/** Additional options to refine the background-image variable */
|
|
16364
16368
|
backgroundImage?: BackgroundImage;
|
|
16369
|
+
/** Additional options to refine the mask-image variable */
|
|
16370
|
+
maskImage?: BackgroundImage;
|
|
16365
16371
|
/** Additional options to refine the customEnum item */
|
|
16366
16372
|
customEnum?: CustomPropertyEnum;
|
|
16367
16373
|
/** Additional options to refine the number item */
|
|
@@ -16396,6 +16402,8 @@ interface CssCustomPropertyItemSelectedCssPropertyTypeOneOf {
|
|
|
16396
16402
|
background?: Background;
|
|
16397
16403
|
/** Additional options to refine the background-image variable */
|
|
16398
16404
|
backgroundImage?: BackgroundImage;
|
|
16405
|
+
/** Additional options to refine the mask-image variable */
|
|
16406
|
+
maskImage?: BackgroundImage;
|
|
16399
16407
|
/** Additional options to refine the customEnum item */
|
|
16400
16408
|
customEnum?: CustomPropertyEnum;
|
|
16401
16409
|
/** Additional options to refine the number item */
|
|
@@ -16536,10 +16544,21 @@ declare enum CssPropertyType {
|
|
|
16536
16544
|
strokeOpacity = "strokeOpacity",
|
|
16537
16545
|
/** fill properties */
|
|
16538
16546
|
fill = "fill",
|
|
16539
|
-
fillOpacity = "fillOpacity"
|
|
16547
|
+
fillOpacity = "fillOpacity",
|
|
16548
|
+
fillRule = "fillRule",
|
|
16549
|
+
/** mask properties */
|
|
16550
|
+
mask = "mask",
|
|
16551
|
+
maskImage = "maskImage",
|
|
16552
|
+
maskMode = "maskMode",
|
|
16553
|
+
maskRepeat = "maskRepeat",
|
|
16554
|
+
maskPosition = "maskPosition",
|
|
16555
|
+
maskClip = "maskClip",
|
|
16556
|
+
maskOrigin = "maskOrigin",
|
|
16557
|
+
maskSize = "maskSize",
|
|
16558
|
+
maskComposite = "maskComposite"
|
|
16540
16559
|
}
|
|
16541
16560
|
/** @enumType */
|
|
16542
|
-
type CssPropertyTypeWithLiterals = CssPropertyType | 'UNKNOWN_CssPropertyType' | 'number' | 'string' | 'angle' | 'length' | 'percentage' | 'lengthPercentage' | 'blendMode' | 'customEnum' | 'time' | 'background' | 'backgroundSize' | 'backgroundColor' | 'backgroundImage' | 'backgroundClip' | 'backgroundOrigin' | 'backgroundPosition' | 'backgroundRepeat' | 'backgroundAttachment' | 'margin' | 'marginTop' | 'marginRight' | 'marginBottom' | 'marginLeft' | 'marginInlineStart' | 'marginInlineEnd' | 'padding' | 'paddingTop' | 'paddingRight' | 'paddingBottom' | 'paddingLeft' | 'paddingInlineStart' | 'paddingInlineEnd' | 'border' | 'borderWidth' | 'borderStyle' | 'borderColor' | 'borderTop' | 'borderTopColor' | 'borderTopWidth' | 'borderTopStyle' | 'borderRight' | 'borderRightColor' | 'borderRightWidth' | 'borderRightStyle' | 'borderBottom' | 'borderBottomColor' | 'borderBottomWidth' | 'borderBottomStyle' | 'borderLeft' | 'borderLeftColor' | 'borderLeftWidth' | 'borderLeftStyle' | 'borderInlineStart' | 'borderInlineStartColor' | 'borderInlineStartWidth' | 'borderInlineStartStyle' | 'borderInlineEnd' | 'borderInlineEndColor' | 'borderInlineEndWidth' | 'borderInlineEndStyle' | 'borderRadius' | 'borderTopLeftRadius' | 'borderTopRightRadius' | 'borderBottomRightRadius' | 'borderBottomLeftRadius' | 'borderStartStartRadius' | 'borderStartEndRadius' | 'borderEndStartRadius' | 'borderEndEndRadius' | 'font' | 'fontFamily' | 'fontSize' | 'fontStretch' | 'fontStyle' | 'fontVariant' | 'fontWeight' | 'lineHeight' | 'color' | 'letterSpacing' | 'writingMode' | 'textAlign' | 'textTransform' | 'textShadow' | 'textOverflow' | 'textIndent' | 'textDecoration' | 'textDecorationColor' | 'textDecorationLine' | 'textDecorationStyle' | 'textDecorationThickness' | 'boxShadow' | 'opacity' | 'overflow' | 'display' | 'alignSelf' | 'justifyContent' | 'alignItems' | 'flexDirection' | 'height' | 'width' | 'gap' | 'columnGap' | 'rowGap' | 'filter' | 'backdropFilter' | 'objectFit' | 'objectPosition' | 'mixBlendMode' | 'isolation' | 'stroke' | 'strokeWidth' | 'strokeOpacity' | 'fill' | 'fillOpacity';
|
|
16561
|
+
type CssPropertyTypeWithLiterals = CssPropertyType | 'UNKNOWN_CssPropertyType' | 'number' | 'string' | 'angle' | 'length' | 'percentage' | 'lengthPercentage' | 'blendMode' | 'customEnum' | 'time' | 'background' | 'backgroundSize' | 'backgroundColor' | 'backgroundImage' | 'backgroundClip' | 'backgroundOrigin' | 'backgroundPosition' | 'backgroundRepeat' | 'backgroundAttachment' | 'margin' | 'marginTop' | 'marginRight' | 'marginBottom' | 'marginLeft' | 'marginInlineStart' | 'marginInlineEnd' | 'padding' | 'paddingTop' | 'paddingRight' | 'paddingBottom' | 'paddingLeft' | 'paddingInlineStart' | 'paddingInlineEnd' | 'border' | 'borderWidth' | 'borderStyle' | 'borderColor' | 'borderTop' | 'borderTopColor' | 'borderTopWidth' | 'borderTopStyle' | 'borderRight' | 'borderRightColor' | 'borderRightWidth' | 'borderRightStyle' | 'borderBottom' | 'borderBottomColor' | 'borderBottomWidth' | 'borderBottomStyle' | 'borderLeft' | 'borderLeftColor' | 'borderLeftWidth' | 'borderLeftStyle' | 'borderInlineStart' | 'borderInlineStartColor' | 'borderInlineStartWidth' | 'borderInlineStartStyle' | 'borderInlineEnd' | 'borderInlineEndColor' | 'borderInlineEndWidth' | 'borderInlineEndStyle' | 'borderRadius' | 'borderTopLeftRadius' | 'borderTopRightRadius' | 'borderBottomRightRadius' | 'borderBottomLeftRadius' | 'borderStartStartRadius' | 'borderStartEndRadius' | 'borderEndStartRadius' | 'borderEndEndRadius' | 'font' | 'fontFamily' | 'fontSize' | 'fontStretch' | 'fontStyle' | 'fontVariant' | 'fontWeight' | 'lineHeight' | 'color' | 'letterSpacing' | 'writingMode' | 'textAlign' | 'textTransform' | 'textShadow' | 'textOverflow' | 'textIndent' | 'textDecoration' | 'textDecorationColor' | 'textDecorationLine' | 'textDecorationStyle' | 'textDecorationThickness' | 'boxShadow' | 'opacity' | 'overflow' | 'display' | 'alignSelf' | 'justifyContent' | 'alignItems' | 'flexDirection' | 'height' | 'width' | 'gap' | 'columnGap' | 'rowGap' | 'filter' | 'backdropFilter' | 'objectFit' | 'objectPosition' | 'mixBlendMode' | 'isolation' | 'stroke' | 'strokeWidth' | 'strokeOpacity' | 'fill' | 'fillOpacity' | 'fillRule' | 'mask' | 'maskImage' | 'maskMode' | 'maskRepeat' | 'maskPosition' | 'maskClip' | 'maskOrigin' | 'maskSize' | 'maskComposite';
|
|
16543
16562
|
interface CustomPropertyEnum {
|
|
16544
16563
|
/** The type of the css-custom-property, used to define the type of the values allowed in the enum */
|
|
16545
16564
|
cssPropertyType?: CssPropertyTypeWithLiterals;
|
|
@@ -2903,6 +2903,16 @@ var CssPropertyType = /* @__PURE__ */ ((CssPropertyType2) => {
|
|
|
2903
2903
|
CssPropertyType2["strokeOpacity"] = "strokeOpacity";
|
|
2904
2904
|
CssPropertyType2["fill"] = "fill";
|
|
2905
2905
|
CssPropertyType2["fillOpacity"] = "fillOpacity";
|
|
2906
|
+
CssPropertyType2["fillRule"] = "fillRule";
|
|
2907
|
+
CssPropertyType2["mask"] = "mask";
|
|
2908
|
+
CssPropertyType2["maskImage"] = "maskImage";
|
|
2909
|
+
CssPropertyType2["maskMode"] = "maskMode";
|
|
2910
|
+
CssPropertyType2["maskRepeat"] = "maskRepeat";
|
|
2911
|
+
CssPropertyType2["maskPosition"] = "maskPosition";
|
|
2912
|
+
CssPropertyType2["maskClip"] = "maskClip";
|
|
2913
|
+
CssPropertyType2["maskOrigin"] = "maskOrigin";
|
|
2914
|
+
CssPropertyType2["maskSize"] = "maskSize";
|
|
2915
|
+
CssPropertyType2["maskComposite"] = "maskComposite";
|
|
2906
2916
|
return CssPropertyType2;
|
|
2907
2917
|
})(CssPropertyType || {});
|
|
2908
2918
|
var Trigger = /* @__PURE__ */ ((Trigger2) => {
|