@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
package/build/cjs/meta.d.ts
CHANGED
|
@@ -16315,6 +16315,8 @@ interface CssPropertyItem extends CssPropertyItemSelectedCssPropertyTypeOneOf {
|
|
|
16315
16315
|
background?: Background;
|
|
16316
16316
|
/** Additional options to refine the background-image variable */
|
|
16317
16317
|
backgroundImage?: BackgroundImage;
|
|
16318
|
+
/** Additional options to refine the background-image variable */
|
|
16319
|
+
maskImage?: BackgroundImage;
|
|
16318
16320
|
/**
|
|
16319
16321
|
* Will be used as displayName of this css-property-item
|
|
16320
16322
|
* @maxLength 100
|
|
@@ -16339,6 +16341,8 @@ interface CssPropertyItemSelectedCssPropertyTypeOneOf {
|
|
|
16339
16341
|
background?: Background;
|
|
16340
16342
|
/** Additional options to refine the background-image variable */
|
|
16341
16343
|
backgroundImage?: BackgroundImage;
|
|
16344
|
+
/** Additional options to refine the background-image variable */
|
|
16345
|
+
maskImage?: BackgroundImage;
|
|
16342
16346
|
}
|
|
16343
16347
|
interface BackgroundImage {
|
|
16344
16348
|
/**
|
|
@@ -16371,6 +16375,8 @@ interface CssCustomPropertyItem extends CssCustomPropertyItemSelectedCssProperty
|
|
|
16371
16375
|
background?: Background;
|
|
16372
16376
|
/** Additional options to refine the background-image variable */
|
|
16373
16377
|
backgroundImage?: BackgroundImage;
|
|
16378
|
+
/** Additional options to refine the mask-image variable */
|
|
16379
|
+
maskImage?: BackgroundImage;
|
|
16374
16380
|
/** Additional options to refine the customEnum item */
|
|
16375
16381
|
customEnum?: CustomPropertyEnum;
|
|
16376
16382
|
/** Additional options to refine the number item */
|
|
@@ -16405,6 +16411,8 @@ interface CssCustomPropertyItemSelectedCssPropertyTypeOneOf {
|
|
|
16405
16411
|
background?: Background;
|
|
16406
16412
|
/** Additional options to refine the background-image variable */
|
|
16407
16413
|
backgroundImage?: BackgroundImage;
|
|
16414
|
+
/** Additional options to refine the mask-image variable */
|
|
16415
|
+
maskImage?: BackgroundImage;
|
|
16408
16416
|
/** Additional options to refine the customEnum item */
|
|
16409
16417
|
customEnum?: CustomPropertyEnum;
|
|
16410
16418
|
/** Additional options to refine the number item */
|
|
@@ -16545,10 +16553,21 @@ declare enum CssPropertyType {
|
|
|
16545
16553
|
strokeOpacity = "strokeOpacity",
|
|
16546
16554
|
/** fill properties */
|
|
16547
16555
|
fill = "fill",
|
|
16548
|
-
fillOpacity = "fillOpacity"
|
|
16556
|
+
fillOpacity = "fillOpacity",
|
|
16557
|
+
fillRule = "fillRule",
|
|
16558
|
+
/** mask properties */
|
|
16559
|
+
mask = "mask",
|
|
16560
|
+
maskImage = "maskImage",
|
|
16561
|
+
maskMode = "maskMode",
|
|
16562
|
+
maskRepeat = "maskRepeat",
|
|
16563
|
+
maskPosition = "maskPosition",
|
|
16564
|
+
maskClip = "maskClip",
|
|
16565
|
+
maskOrigin = "maskOrigin",
|
|
16566
|
+
maskSize = "maskSize",
|
|
16567
|
+
maskComposite = "maskComposite"
|
|
16549
16568
|
}
|
|
16550
16569
|
/** @enumType */
|
|
16551
|
-
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';
|
|
16570
|
+
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';
|
|
16552
16571
|
interface CustomPropertyEnum {
|
|
16553
16572
|
/** The type of the css-custom-property, used to define the type of the values allowed in the enum */
|
|
16554
16573
|
cssPropertyType?: CssPropertyTypeWithLiterals;
|
package/build/cjs/meta.js
CHANGED
|
@@ -2899,6 +2899,16 @@ var CssPropertyType = /* @__PURE__ */ ((CssPropertyType2) => {
|
|
|
2899
2899
|
CssPropertyType2["strokeOpacity"] = "strokeOpacity";
|
|
2900
2900
|
CssPropertyType2["fill"] = "fill";
|
|
2901
2901
|
CssPropertyType2["fillOpacity"] = "fillOpacity";
|
|
2902
|
+
CssPropertyType2["fillRule"] = "fillRule";
|
|
2903
|
+
CssPropertyType2["mask"] = "mask";
|
|
2904
|
+
CssPropertyType2["maskImage"] = "maskImage";
|
|
2905
|
+
CssPropertyType2["maskMode"] = "maskMode";
|
|
2906
|
+
CssPropertyType2["maskRepeat"] = "maskRepeat";
|
|
2907
|
+
CssPropertyType2["maskPosition"] = "maskPosition";
|
|
2908
|
+
CssPropertyType2["maskClip"] = "maskClip";
|
|
2909
|
+
CssPropertyType2["maskOrigin"] = "maskOrigin";
|
|
2910
|
+
CssPropertyType2["maskSize"] = "maskSize";
|
|
2911
|
+
CssPropertyType2["maskComposite"] = "maskComposite";
|
|
2902
2912
|
return CssPropertyType2;
|
|
2903
2913
|
})(CssPropertyType || {});
|
|
2904
2914
|
var Trigger = /* @__PURE__ */ ((Trigger2) => {
|