@wix/auto_sdk_data-extension-schema_schemas 1.0.46 → 1.0.47
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.d.ts +1 -1
- package/build/cjs/index.js +150 -14
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +192 -26
- package/build/cjs/index.typings.js +150 -14
- package/build/cjs/index.typings.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +148 -14
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +192 -26
- package/build/es/index.typings.mjs +148 -14
- package/build/es/index.typings.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +150 -14
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +192 -26
- package/build/internal/cjs/index.typings.js +150 -14
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +148 -14
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +192 -26
- package/build/internal/es/index.typings.mjs +148 -14
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1796,20 +1796,138 @@ var CssPropertyType = /* @__PURE__ */ ((CssPropertyType2) => {
|
|
|
1796
1796
|
CssPropertyType2["strokeOpacity"] = "strokeOpacity";
|
|
1797
1797
|
return CssPropertyType2;
|
|
1798
1798
|
})(CssPropertyType || {});
|
|
1799
|
-
var
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
return
|
|
1812
|
-
})(
|
|
1799
|
+
var CssVariableTypeEnumCssDataType = /* @__PURE__ */ ((CssVariableTypeEnumCssDataType2) => {
|
|
1800
|
+
CssVariableTypeEnumCssDataType2["UNKNOWN_CssDataType"] = "UNKNOWN_CssDataType";
|
|
1801
|
+
CssVariableTypeEnumCssDataType2["number"] = "number";
|
|
1802
|
+
CssVariableTypeEnumCssDataType2["length"] = "length";
|
|
1803
|
+
CssVariableTypeEnumCssDataType2["color"] = "color";
|
|
1804
|
+
CssVariableTypeEnumCssDataType2["angle"] = "angle";
|
|
1805
|
+
CssVariableTypeEnumCssDataType2["percentage"] = "percentage";
|
|
1806
|
+
CssVariableTypeEnumCssDataType2["lengthPercentage"] = "lengthPercentage";
|
|
1807
|
+
CssVariableTypeEnumCssDataType2["blendMode"] = "blendMode";
|
|
1808
|
+
CssVariableTypeEnumCssDataType2["customEnum"] = "customEnum";
|
|
1809
|
+
CssVariableTypeEnumCssDataType2["string"] = "string";
|
|
1810
|
+
CssVariableTypeEnumCssDataType2["time"] = "time";
|
|
1811
|
+
return CssVariableTypeEnumCssDataType2;
|
|
1812
|
+
})(CssVariableTypeEnumCssDataType || {});
|
|
1813
|
+
var StyleType = /* @__PURE__ */ ((StyleType2) => {
|
|
1814
|
+
StyleType2["UNKNOWN_StyleType"] = "UNKNOWN_StyleType";
|
|
1815
|
+
StyleType2["number"] = "number";
|
|
1816
|
+
StyleType2["string"] = "string";
|
|
1817
|
+
StyleType2["angle"] = "angle";
|
|
1818
|
+
StyleType2["length"] = "length";
|
|
1819
|
+
StyleType2["percentage"] = "percentage";
|
|
1820
|
+
StyleType2["lengthPercentage"] = "lengthPercentage";
|
|
1821
|
+
StyleType2["blendMode"] = "blendMode";
|
|
1822
|
+
StyleType2["customEnum"] = "customEnum";
|
|
1823
|
+
StyleType2["time"] = "time";
|
|
1824
|
+
StyleType2["background"] = "background";
|
|
1825
|
+
StyleType2["backgroundSize"] = "backgroundSize";
|
|
1826
|
+
StyleType2["backgroundColor"] = "backgroundColor";
|
|
1827
|
+
StyleType2["backgroundImage"] = "backgroundImage";
|
|
1828
|
+
StyleType2["backgroundClip"] = "backgroundClip";
|
|
1829
|
+
StyleType2["backgroundOrigin"] = "backgroundOrigin";
|
|
1830
|
+
StyleType2["backgroundPosition"] = "backgroundPosition";
|
|
1831
|
+
StyleType2["backgroundRepeat"] = "backgroundRepeat";
|
|
1832
|
+
StyleType2["backgroundAttachment"] = "backgroundAttachment";
|
|
1833
|
+
StyleType2["margin"] = "margin";
|
|
1834
|
+
StyleType2["marginTop"] = "marginTop";
|
|
1835
|
+
StyleType2["marginRight"] = "marginRight";
|
|
1836
|
+
StyleType2["marginBottom"] = "marginBottom";
|
|
1837
|
+
StyleType2["marginLeft"] = "marginLeft";
|
|
1838
|
+
StyleType2["marginInlineStart"] = "marginInlineStart";
|
|
1839
|
+
StyleType2["marginInlineEnd"] = "marginInlineEnd";
|
|
1840
|
+
StyleType2["padding"] = "padding";
|
|
1841
|
+
StyleType2["paddingTop"] = "paddingTop";
|
|
1842
|
+
StyleType2["paddingRight"] = "paddingRight";
|
|
1843
|
+
StyleType2["paddingBottom"] = "paddingBottom";
|
|
1844
|
+
StyleType2["paddingLeft"] = "paddingLeft";
|
|
1845
|
+
StyleType2["paddingInlineStart"] = "paddingInlineStart";
|
|
1846
|
+
StyleType2["paddingInlineEnd"] = "paddingInlineEnd";
|
|
1847
|
+
StyleType2["border"] = "border";
|
|
1848
|
+
StyleType2["borderWidth"] = "borderWidth";
|
|
1849
|
+
StyleType2["borderStyle"] = "borderStyle";
|
|
1850
|
+
StyleType2["borderColor"] = "borderColor";
|
|
1851
|
+
StyleType2["borderTop"] = "borderTop";
|
|
1852
|
+
StyleType2["borderTopColor"] = "borderTopColor";
|
|
1853
|
+
StyleType2["borderTopWidth"] = "borderTopWidth";
|
|
1854
|
+
StyleType2["borderTopStyle"] = "borderTopStyle";
|
|
1855
|
+
StyleType2["borderRight"] = "borderRight";
|
|
1856
|
+
StyleType2["borderRightColor"] = "borderRightColor";
|
|
1857
|
+
StyleType2["borderRightWidth"] = "borderRightWidth";
|
|
1858
|
+
StyleType2["borderRightStyle"] = "borderRightStyle";
|
|
1859
|
+
StyleType2["borderBottom"] = "borderBottom";
|
|
1860
|
+
StyleType2["borderBottomColor"] = "borderBottomColor";
|
|
1861
|
+
StyleType2["borderBottomWidth"] = "borderBottomWidth";
|
|
1862
|
+
StyleType2["borderBottomStyle"] = "borderBottomStyle";
|
|
1863
|
+
StyleType2["borderLeft"] = "borderLeft";
|
|
1864
|
+
StyleType2["borderLeftColor"] = "borderLeftColor";
|
|
1865
|
+
StyleType2["borderLeftWidth"] = "borderLeftWidth";
|
|
1866
|
+
StyleType2["borderLeftStyle"] = "borderLeftStyle";
|
|
1867
|
+
StyleType2["borderInlineStart"] = "borderInlineStart";
|
|
1868
|
+
StyleType2["borderInlineStartColor"] = "borderInlineStartColor";
|
|
1869
|
+
StyleType2["borderInlineStartWidth"] = "borderInlineStartWidth";
|
|
1870
|
+
StyleType2["borderInlineStartStyle"] = "borderInlineStartStyle";
|
|
1871
|
+
StyleType2["borderInlineEnd"] = "borderInlineEnd";
|
|
1872
|
+
StyleType2["borderInlineEndColor"] = "borderInlineEndColor";
|
|
1873
|
+
StyleType2["borderInlineEndWidth"] = "borderInlineEndWidth";
|
|
1874
|
+
StyleType2["borderInlineEndStyle"] = "borderInlineEndStyle";
|
|
1875
|
+
StyleType2["borderRadius"] = "borderRadius";
|
|
1876
|
+
StyleType2["borderTopLeftRadius"] = "borderTopLeftRadius";
|
|
1877
|
+
StyleType2["borderTopRightRadius"] = "borderTopRightRadius";
|
|
1878
|
+
StyleType2["borderBottomRightRadius"] = "borderBottomRightRadius";
|
|
1879
|
+
StyleType2["borderBottomLeftRadius"] = "borderBottomLeftRadius";
|
|
1880
|
+
StyleType2["borderStartStartRadius"] = "borderStartStartRadius";
|
|
1881
|
+
StyleType2["borderStartEndRadius"] = "borderStartEndRadius";
|
|
1882
|
+
StyleType2["borderEndStartRadius"] = "borderEndStartRadius";
|
|
1883
|
+
StyleType2["borderEndEndRadius"] = "borderEndEndRadius";
|
|
1884
|
+
StyleType2["font"] = "font";
|
|
1885
|
+
StyleType2["fontFamily"] = "fontFamily";
|
|
1886
|
+
StyleType2["fontSize"] = "fontSize";
|
|
1887
|
+
StyleType2["fontStretch"] = "fontStretch";
|
|
1888
|
+
StyleType2["fontStyle"] = "fontStyle";
|
|
1889
|
+
StyleType2["fontVariant"] = "fontVariant";
|
|
1890
|
+
StyleType2["fontWeight"] = "fontWeight";
|
|
1891
|
+
StyleType2["lineHeight"] = "lineHeight";
|
|
1892
|
+
StyleType2["color"] = "color";
|
|
1893
|
+
StyleType2["letterSpacing"] = "letterSpacing";
|
|
1894
|
+
StyleType2["writingMode"] = "writingMode";
|
|
1895
|
+
StyleType2["textAlign"] = "textAlign";
|
|
1896
|
+
StyleType2["textTransform"] = "textTransform";
|
|
1897
|
+
StyleType2["textShadow"] = "textShadow";
|
|
1898
|
+
StyleType2["textOverflow"] = "textOverflow";
|
|
1899
|
+
StyleType2["textIndent"] = "textIndent";
|
|
1900
|
+
StyleType2["textDecoration"] = "textDecoration";
|
|
1901
|
+
StyleType2["textDecorationColor"] = "textDecorationColor";
|
|
1902
|
+
StyleType2["textDecorationLine"] = "textDecorationLine";
|
|
1903
|
+
StyleType2["textDecorationStyle"] = "textDecorationStyle";
|
|
1904
|
+
StyleType2["textDecorationThickness"] = "textDecorationThickness";
|
|
1905
|
+
StyleType2["boxShadow"] = "boxShadow";
|
|
1906
|
+
StyleType2["opacity"] = "opacity";
|
|
1907
|
+
StyleType2["overflow"] = "overflow";
|
|
1908
|
+
StyleType2["display"] = "display";
|
|
1909
|
+
StyleType2["alignSelf"] = "alignSelf";
|
|
1910
|
+
StyleType2["justifyContent"] = "justifyContent";
|
|
1911
|
+
StyleType2["alignItems"] = "alignItems";
|
|
1912
|
+
StyleType2["flexDirection"] = "flexDirection";
|
|
1913
|
+
StyleType2["height"] = "height";
|
|
1914
|
+
StyleType2["width"] = "width";
|
|
1915
|
+
StyleType2["gap"] = "gap";
|
|
1916
|
+
StyleType2["columnGap"] = "columnGap";
|
|
1917
|
+
StyleType2["rowGap"] = "rowGap";
|
|
1918
|
+
StyleType2["filter"] = "filter";
|
|
1919
|
+
StyleType2["backdropFilter"] = "backdropFilter";
|
|
1920
|
+
StyleType2["objectFit"] = "objectFit";
|
|
1921
|
+
StyleType2["objectPosition"] = "objectPosition";
|
|
1922
|
+
StyleType2["mixBlendMode"] = "mixBlendMode";
|
|
1923
|
+
StyleType2["isolation"] = "isolation";
|
|
1924
|
+
StyleType2["stroke"] = "stroke";
|
|
1925
|
+
StyleType2["strokeWidth"] = "strokeWidth";
|
|
1926
|
+
StyleType2["strokeOpacity"] = "strokeOpacity";
|
|
1927
|
+
StyleType2["fill"] = "fill";
|
|
1928
|
+
StyleType2["fillOpacity"] = "fillOpacity";
|
|
1929
|
+
return StyleType2;
|
|
1930
|
+
})(StyleType || {});
|
|
1813
1931
|
var FilterFunction = /* @__PURE__ */ ((FilterFunction2) => {
|
|
1814
1932
|
FilterFunction2["UNKNOWN_FilterFunctions"] = "UNKNOWN_FilterFunctions";
|
|
1815
1933
|
FilterFunction2["blur"] = "blur";
|
|
@@ -1855,6 +1973,20 @@ var BackgroundModeEnum = /* @__PURE__ */ ((BackgroundModeEnum2) => {
|
|
|
1855
1973
|
BackgroundModeEnum2["UNKNOWN_BackgroundModeEnum"] = "UNKNOWN_BackgroundModeEnum";
|
|
1856
1974
|
return BackgroundModeEnum2;
|
|
1857
1975
|
})(BackgroundModeEnum || {});
|
|
1976
|
+
var CssDataType = /* @__PURE__ */ ((CssDataType2) => {
|
|
1977
|
+
CssDataType2["UNKNOWN_CssDataType"] = "UNKNOWN_CssDataType";
|
|
1978
|
+
CssDataType2["number"] = "number";
|
|
1979
|
+
CssDataType2["string"] = "string";
|
|
1980
|
+
CssDataType2["angle"] = "angle";
|
|
1981
|
+
CssDataType2["color"] = "color";
|
|
1982
|
+
CssDataType2["length"] = "length";
|
|
1983
|
+
CssDataType2["percentage"] = "percentage";
|
|
1984
|
+
CssDataType2["lengthPercentage"] = "lengthPercentage";
|
|
1985
|
+
CssDataType2["blendMode"] = "blendMode";
|
|
1986
|
+
CssDataType2["customEnum"] = "customEnum";
|
|
1987
|
+
CssDataType2["time"] = "time";
|
|
1988
|
+
return CssDataType2;
|
|
1989
|
+
})(CssDataType || {});
|
|
1858
1990
|
var DataType = /* @__PURE__ */ ((DataType2) => {
|
|
1859
1991
|
DataType2["UNKNOWN_DataType"] = "UNKNOWN_DataType";
|
|
1860
1992
|
DataType2["text"] = "text";
|
|
@@ -2302,6 +2434,7 @@ export {
|
|
|
2302
2434
|
Crop,
|
|
2303
2435
|
CssDataType,
|
|
2304
2436
|
CssPropertyType,
|
|
2437
|
+
CssVariableTypeEnumCssDataType,
|
|
2305
2438
|
CustomElementScriptType,
|
|
2306
2439
|
CustomFieldsType,
|
|
2307
2440
|
DataExtensionSchemaState,
|
|
@@ -2442,6 +2575,7 @@ export {
|
|
|
2442
2575
|
StorageDomain,
|
|
2443
2576
|
StorageType,
|
|
2444
2577
|
StringComponentType,
|
|
2578
|
+
StyleType,
|
|
2445
2579
|
StylesPosition,
|
|
2446
2580
|
SubmitSuccessAction,
|
|
2447
2581
|
SyncToCalendar,
|