@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
|
@@ -16289,6 +16289,8 @@ interface CssPropertyItem extends CssPropertyItemSelectedCssPropertyTypeOneOf {
|
|
|
16289
16289
|
background?: Background;
|
|
16290
16290
|
/** Additional options to refine the background-image variable */
|
|
16291
16291
|
backgroundImage?: BackgroundImage;
|
|
16292
|
+
/** Additional options to refine the background-image variable */
|
|
16293
|
+
maskImage?: BackgroundImage;
|
|
16292
16294
|
/**
|
|
16293
16295
|
* Will be used as displayName of this css-property-item
|
|
16294
16296
|
* @maxLength 100
|
|
@@ -16313,6 +16315,8 @@ interface CssPropertyItemSelectedCssPropertyTypeOneOf {
|
|
|
16313
16315
|
background?: Background;
|
|
16314
16316
|
/** Additional options to refine the background-image variable */
|
|
16315
16317
|
backgroundImage?: BackgroundImage;
|
|
16318
|
+
/** Additional options to refine the background-image variable */
|
|
16319
|
+
maskImage?: BackgroundImage;
|
|
16316
16320
|
}
|
|
16317
16321
|
interface BackgroundImage {
|
|
16318
16322
|
/**
|
|
@@ -16345,6 +16349,8 @@ interface CssCustomPropertyItem extends CssCustomPropertyItemSelectedCssProperty
|
|
|
16345
16349
|
background?: Background;
|
|
16346
16350
|
/** Additional options to refine the background-image variable */
|
|
16347
16351
|
backgroundImage?: BackgroundImage;
|
|
16352
|
+
/** Additional options to refine the mask-image variable */
|
|
16353
|
+
maskImage?: BackgroundImage;
|
|
16348
16354
|
/** Additional options to refine the customEnum item */
|
|
16349
16355
|
customEnum?: CustomPropertyEnum;
|
|
16350
16356
|
/** Additional options to refine the number item */
|
|
@@ -16379,6 +16385,8 @@ interface CssCustomPropertyItemSelectedCssPropertyTypeOneOf {
|
|
|
16379
16385
|
background?: Background;
|
|
16380
16386
|
/** Additional options to refine the background-image variable */
|
|
16381
16387
|
backgroundImage?: BackgroundImage;
|
|
16388
|
+
/** Additional options to refine the mask-image variable */
|
|
16389
|
+
maskImage?: BackgroundImage;
|
|
16382
16390
|
/** Additional options to refine the customEnum item */
|
|
16383
16391
|
customEnum?: CustomPropertyEnum;
|
|
16384
16392
|
/** Additional options to refine the number item */
|
|
@@ -16519,10 +16527,21 @@ declare enum CssPropertyType {
|
|
|
16519
16527
|
strokeOpacity = "strokeOpacity",
|
|
16520
16528
|
/** fill properties */
|
|
16521
16529
|
fill = "fill",
|
|
16522
|
-
fillOpacity = "fillOpacity"
|
|
16530
|
+
fillOpacity = "fillOpacity",
|
|
16531
|
+
fillRule = "fillRule",
|
|
16532
|
+
/** mask properties */
|
|
16533
|
+
mask = "mask",
|
|
16534
|
+
maskImage = "maskImage",
|
|
16535
|
+
maskMode = "maskMode",
|
|
16536
|
+
maskRepeat = "maskRepeat",
|
|
16537
|
+
maskPosition = "maskPosition",
|
|
16538
|
+
maskClip = "maskClip",
|
|
16539
|
+
maskOrigin = "maskOrigin",
|
|
16540
|
+
maskSize = "maskSize",
|
|
16541
|
+
maskComposite = "maskComposite"
|
|
16523
16542
|
}
|
|
16524
16543
|
/** @enumType */
|
|
16525
|
-
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';
|
|
16544
|
+
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';
|
|
16526
16545
|
interface CustomPropertyEnum {
|
|
16527
16546
|
/** The type of the css-custom-property, used to define the type of the values allowed in the enum */
|
|
16528
16547
|
cssPropertyType?: CssPropertyTypeWithLiterals;
|
|
@@ -2625,6 +2625,16 @@ var CssPropertyType = /* @__PURE__ */ ((CssPropertyType2) => {
|
|
|
2625
2625
|
CssPropertyType2["strokeOpacity"] = "strokeOpacity";
|
|
2626
2626
|
CssPropertyType2["fill"] = "fill";
|
|
2627
2627
|
CssPropertyType2["fillOpacity"] = "fillOpacity";
|
|
2628
|
+
CssPropertyType2["fillRule"] = "fillRule";
|
|
2629
|
+
CssPropertyType2["mask"] = "mask";
|
|
2630
|
+
CssPropertyType2["maskImage"] = "maskImage";
|
|
2631
|
+
CssPropertyType2["maskMode"] = "maskMode";
|
|
2632
|
+
CssPropertyType2["maskRepeat"] = "maskRepeat";
|
|
2633
|
+
CssPropertyType2["maskPosition"] = "maskPosition";
|
|
2634
|
+
CssPropertyType2["maskClip"] = "maskClip";
|
|
2635
|
+
CssPropertyType2["maskOrigin"] = "maskOrigin";
|
|
2636
|
+
CssPropertyType2["maskSize"] = "maskSize";
|
|
2637
|
+
CssPropertyType2["maskComposite"] = "maskComposite";
|
|
2628
2638
|
return CssPropertyType2;
|
|
2629
2639
|
})(CssPropertyType || {});
|
|
2630
2640
|
var Trigger = /* @__PURE__ */ ((Trigger2) => {
|