@wix/auto_sdk_multilingual_machine-translation 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.js.map +1 -1
- package/build/cjs/index.typings.d.ts +65 -50
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +65 -50
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +65 -50
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +65 -50
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +65 -50
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +65 -50
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +65 -50
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +65 -50
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -315,7 +315,7 @@ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
|
|
|
315
315
|
interface Stop {
|
|
316
316
|
/**
|
|
317
317
|
* Stop color as hex value.
|
|
318
|
-
* @
|
|
318
|
+
* @maxLength 19
|
|
319
319
|
*/
|
|
320
320
|
color?: string | null;
|
|
321
321
|
/** Stop position (0-1). */
|
|
@@ -356,7 +356,7 @@ interface Background {
|
|
|
356
356
|
type?: BackgroundTypeWithLiterals;
|
|
357
357
|
/**
|
|
358
358
|
* Background color as a hexadecimal value.
|
|
359
|
-
* @
|
|
359
|
+
* @maxLength 19
|
|
360
360
|
*/
|
|
361
361
|
color?: string | null;
|
|
362
362
|
/** Gradient configuration. */
|
|
@@ -463,33 +463,33 @@ interface Styles {
|
|
|
463
463
|
borderRadius?: number | null;
|
|
464
464
|
/**
|
|
465
465
|
* Border color as a hexadecimal value.
|
|
466
|
-
* @
|
|
466
|
+
* @maxLength 19
|
|
467
467
|
*/
|
|
468
468
|
borderColor?: string | null;
|
|
469
469
|
/**
|
|
470
470
|
* Border color as a hexadecimal value (hover state).
|
|
471
|
-
* @
|
|
471
|
+
* @maxLength 19
|
|
472
472
|
*/
|
|
473
473
|
borderColorHover?: string | null;
|
|
474
474
|
/**
|
|
475
475
|
* Text color as a hexadecimal value.
|
|
476
|
-
* @
|
|
476
|
+
* @maxLength 19
|
|
477
477
|
*/
|
|
478
478
|
textColor?: string | null;
|
|
479
479
|
/**
|
|
480
480
|
* Text color as a hexadecimal value (hover state).
|
|
481
|
-
* @
|
|
481
|
+
* @maxLength 19
|
|
482
482
|
*/
|
|
483
483
|
textColorHover?: string | null;
|
|
484
484
|
/**
|
|
485
485
|
* Deprecated: Use `background` instead.
|
|
486
|
-
* @
|
|
486
|
+
* @maxLength 19
|
|
487
487
|
* @deprecated
|
|
488
488
|
*/
|
|
489
489
|
backgroundColor?: string | null;
|
|
490
490
|
/**
|
|
491
491
|
* Deprecated: Use `backgroundHover` instead.
|
|
492
|
-
* @
|
|
492
|
+
* @maxLength 19
|
|
493
493
|
* @deprecated
|
|
494
494
|
*/
|
|
495
495
|
backgroundColorHover?: string | null;
|
|
@@ -941,7 +941,7 @@ interface StylesBorder {
|
|
|
941
941
|
width?: number | null;
|
|
942
942
|
/**
|
|
943
943
|
* Border color as a hexadecimal value.
|
|
944
|
-
* @
|
|
944
|
+
* @maxLength 19
|
|
945
945
|
*/
|
|
946
946
|
color?: string | null;
|
|
947
947
|
/** Border radius in pixels. */
|
|
@@ -982,22 +982,22 @@ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HI
|
|
|
982
982
|
interface LinkPreviewDataStyles {
|
|
983
983
|
/**
|
|
984
984
|
* Background color as a hexadecimal value.
|
|
985
|
-
* @
|
|
985
|
+
* @maxLength 19
|
|
986
986
|
*/
|
|
987
987
|
backgroundColor?: string | null;
|
|
988
988
|
/**
|
|
989
989
|
* Title color as a hexadecimal value.
|
|
990
|
-
* @
|
|
990
|
+
* @maxLength 19
|
|
991
991
|
*/
|
|
992
992
|
titleColor?: string | null;
|
|
993
993
|
/**
|
|
994
994
|
* Subtitle color as a hexadecimal value.
|
|
995
|
-
* @
|
|
995
|
+
* @maxLength 19
|
|
996
996
|
*/
|
|
997
997
|
subtitleColor?: string | null;
|
|
998
998
|
/**
|
|
999
999
|
* Link color as a hexadecimal value.
|
|
1000
|
-
* @
|
|
1000
|
+
* @maxLength 19
|
|
1001
1001
|
*/
|
|
1002
1002
|
linkColor?: string | null;
|
|
1003
1003
|
/** Border width in pixels. */
|
|
@@ -1006,7 +1006,7 @@ interface LinkPreviewDataStyles {
|
|
|
1006
1006
|
borderRadius?: number | null;
|
|
1007
1007
|
/**
|
|
1008
1008
|
* Border color as a hexadecimal value.
|
|
1009
|
-
* @
|
|
1009
|
+
* @maxLength 19
|
|
1010
1010
|
*/
|
|
1011
1011
|
borderColor?: string | null;
|
|
1012
1012
|
/** Position of thumbnail. Defaults to `START`. */
|
|
@@ -1157,19 +1157,19 @@ interface BackgroundGradient {
|
|
|
1157
1157
|
angle?: number | null;
|
|
1158
1158
|
/**
|
|
1159
1159
|
* The start color as a hexademical value.
|
|
1160
|
-
* @
|
|
1160
|
+
* @maxLength 19
|
|
1161
1161
|
*/
|
|
1162
1162
|
startColor?: string | null;
|
|
1163
1163
|
/**
|
|
1164
1164
|
* The end color as a hexademical value.
|
|
1165
|
-
* @
|
|
1165
|
+
* @maxLength 19
|
|
1166
1166
|
*/
|
|
1167
1167
|
lastColor?: string | null;
|
|
1168
1168
|
}
|
|
1169
1169
|
interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
1170
1170
|
/**
|
|
1171
1171
|
* The background color as a hexademical value.
|
|
1172
|
-
* @
|
|
1172
|
+
* @maxLength 19
|
|
1173
1173
|
*/
|
|
1174
1174
|
color?: string | null;
|
|
1175
1175
|
/** An image to use for the background. */
|
|
@@ -1183,7 +1183,7 @@ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
|
1183
1183
|
interface PollDesignBackgroundBackgroundOneOf {
|
|
1184
1184
|
/**
|
|
1185
1185
|
* The background color as a hexademical value.
|
|
1186
|
-
* @
|
|
1186
|
+
* @maxLength 19
|
|
1187
1187
|
*/
|
|
1188
1188
|
color?: string | null;
|
|
1189
1189
|
/** An image to use for the background. */
|
|
@@ -1497,32 +1497,32 @@ interface ButtonStyles {
|
|
|
1497
1497
|
borderRadius?: number | null;
|
|
1498
1498
|
/**
|
|
1499
1499
|
* Border color as a hexadecimal value.
|
|
1500
|
-
* @
|
|
1500
|
+
* @maxLength 19
|
|
1501
1501
|
*/
|
|
1502
1502
|
borderColor?: string | null;
|
|
1503
1503
|
/**
|
|
1504
1504
|
* Text color as a hexadecimal value.
|
|
1505
|
-
* @
|
|
1505
|
+
* @maxLength 19
|
|
1506
1506
|
*/
|
|
1507
1507
|
textColor?: string | null;
|
|
1508
1508
|
/**
|
|
1509
1509
|
* Background color as a hexadecimal value.
|
|
1510
|
-
* @
|
|
1510
|
+
* @maxLength 19
|
|
1511
1511
|
*/
|
|
1512
1512
|
backgroundColor?: string | null;
|
|
1513
1513
|
/**
|
|
1514
1514
|
* Border color as a hexadecimal value (hover state).
|
|
1515
|
-
* @
|
|
1515
|
+
* @maxLength 19
|
|
1516
1516
|
*/
|
|
1517
1517
|
borderColorHover?: string | null;
|
|
1518
1518
|
/**
|
|
1519
1519
|
* Text color as a hexadecimal value (hover state).
|
|
1520
|
-
* @
|
|
1520
|
+
* @maxLength 19
|
|
1521
1521
|
*/
|
|
1522
1522
|
textColorHover?: string | null;
|
|
1523
1523
|
/**
|
|
1524
1524
|
* Background color as a hexadecimal value (hover state).
|
|
1525
|
-
* @
|
|
1525
|
+
* @maxLength 19
|
|
1526
1526
|
*/
|
|
1527
1527
|
backgroundColorHover?: string | null;
|
|
1528
1528
|
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
@@ -1539,7 +1539,7 @@ interface ImageStyles {
|
|
|
1539
1539
|
resizing?: ResizingWithLiterals;
|
|
1540
1540
|
/**
|
|
1541
1541
|
* Image border color as a hexadecimal value.
|
|
1542
|
-
* @
|
|
1542
|
+
* @maxLength 19
|
|
1543
1543
|
*/
|
|
1544
1544
|
borderColor?: string | null;
|
|
1545
1545
|
/** Image border width in pixels. */
|
|
@@ -1552,17 +1552,17 @@ interface RibbonStyles {
|
|
|
1552
1552
|
ribbonText?: string | null;
|
|
1553
1553
|
/**
|
|
1554
1554
|
* Ribbon background color as a hexadecimal value.
|
|
1555
|
-
* @
|
|
1555
|
+
* @maxLength 19
|
|
1556
1556
|
*/
|
|
1557
1557
|
backgroundColor?: string | null;
|
|
1558
1558
|
/**
|
|
1559
1559
|
* Ribbon text color as a hexadecimal value.
|
|
1560
|
-
* @
|
|
1560
|
+
* @maxLength 19
|
|
1561
1561
|
*/
|
|
1562
1562
|
textColor?: string | null;
|
|
1563
1563
|
/**
|
|
1564
1564
|
* Ribbon border color as a hexadecimal value.
|
|
1565
|
-
* @
|
|
1565
|
+
* @maxLength 19
|
|
1566
1566
|
*/
|
|
1567
1567
|
borderColor?: string | null;
|
|
1568
1568
|
/** Ribbon border width in pixels. */
|
|
@@ -1575,12 +1575,12 @@ interface RibbonStyles {
|
|
|
1575
1575
|
interface CardStyles {
|
|
1576
1576
|
/**
|
|
1577
1577
|
* Card background color as a hexadecimal value.
|
|
1578
|
-
* @
|
|
1578
|
+
* @maxLength 19
|
|
1579
1579
|
*/
|
|
1580
1580
|
backgroundColor?: string | null;
|
|
1581
1581
|
/**
|
|
1582
1582
|
* Card border color as a hexadecimal value.
|
|
1583
|
-
* @
|
|
1583
|
+
* @maxLength 19
|
|
1584
1584
|
*/
|
|
1585
1585
|
borderColor?: string | null;
|
|
1586
1586
|
/** Card border width in pixels. */
|
|
@@ -1595,12 +1595,12 @@ interface CardStyles {
|
|
|
1595
1595
|
titlePriceLayout?: LayoutWithLiterals;
|
|
1596
1596
|
/**
|
|
1597
1597
|
* Title text color as a hexadecimal value.
|
|
1598
|
-
* @
|
|
1598
|
+
* @maxLength 19
|
|
1599
1599
|
*/
|
|
1600
1600
|
titleColor?: string | null;
|
|
1601
1601
|
/**
|
|
1602
1602
|
* Text color as a hexadecimal value.
|
|
1603
|
-
* @
|
|
1603
|
+
* @maxLength 19
|
|
1604
1604
|
*/
|
|
1605
1605
|
textColor?: string | null;
|
|
1606
1606
|
}
|
|
@@ -1782,29 +1782,29 @@ interface CellStyle {
|
|
|
1782
1782
|
verticalAlignment?: VerticalAlignmentWithLiterals;
|
|
1783
1783
|
/**
|
|
1784
1784
|
* Cell background color as a hexadecimal value.
|
|
1785
|
-
* @
|
|
1785
|
+
* @maxLength 19
|
|
1786
1786
|
*/
|
|
1787
1787
|
backgroundColor?: string | null;
|
|
1788
1788
|
}
|
|
1789
1789
|
interface BorderColors {
|
|
1790
1790
|
/**
|
|
1791
1791
|
* Left border color as a hexadecimal value.
|
|
1792
|
-
* @
|
|
1792
|
+
* @maxLength 19
|
|
1793
1793
|
*/
|
|
1794
1794
|
left?: string | null;
|
|
1795
1795
|
/**
|
|
1796
1796
|
* Right border color as a hexadecimal value.
|
|
1797
|
-
* @
|
|
1797
|
+
* @maxLength 19
|
|
1798
1798
|
*/
|
|
1799
1799
|
right?: string | null;
|
|
1800
1800
|
/**
|
|
1801
1801
|
* Top border color as a hexadecimal value.
|
|
1802
|
-
* @
|
|
1802
|
+
* @maxLength 19
|
|
1803
1803
|
*/
|
|
1804
1804
|
top?: string | null;
|
|
1805
1805
|
/**
|
|
1806
1806
|
* Bottom border color as a hexadecimal value.
|
|
1807
|
-
* @
|
|
1807
|
+
* @maxLength 19
|
|
1808
1808
|
*/
|
|
1809
1809
|
bottom?: string | null;
|
|
1810
1810
|
}
|
|
@@ -1879,7 +1879,7 @@ interface CaptionData {
|
|
|
1879
1879
|
interface LayoutData {
|
|
1880
1880
|
/**
|
|
1881
1881
|
* Deprecated: Use `background` instead.
|
|
1882
|
-
* @
|
|
1882
|
+
* @maxLength 19
|
|
1883
1883
|
* @deprecated
|
|
1884
1884
|
*/
|
|
1885
1885
|
backgroundColor?: string | null;
|
|
@@ -1887,7 +1887,7 @@ interface LayoutData {
|
|
|
1887
1887
|
backgroundImage?: LayoutDataBackgroundImage;
|
|
1888
1888
|
/**
|
|
1889
1889
|
* Border color as a hexadecimal value.
|
|
1890
|
-
* @
|
|
1890
|
+
* @maxLength 19
|
|
1891
1891
|
*/
|
|
1892
1892
|
borderColor?: string | null;
|
|
1893
1893
|
/** Border width in pixels. */
|
|
@@ -1896,7 +1896,7 @@ interface LayoutData {
|
|
|
1896
1896
|
borderRadius?: number | null;
|
|
1897
1897
|
/**
|
|
1898
1898
|
* Deprecated: Use `backdrop` instead.
|
|
1899
|
-
* @
|
|
1899
|
+
* @maxLength 19
|
|
1900
1900
|
* @deprecated
|
|
1901
1901
|
*/
|
|
1902
1902
|
backdropColor?: string | null;
|
|
@@ -2034,7 +2034,7 @@ interface LayoutDataBackground {
|
|
|
2034
2034
|
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
2035
2035
|
/**
|
|
2036
2036
|
* Background color as a hexadecimal value.
|
|
2037
|
-
* @
|
|
2037
|
+
* @maxLength 19
|
|
2038
2038
|
*/
|
|
2039
2039
|
color?: string | null;
|
|
2040
2040
|
/** Gradient configuration. */
|
|
@@ -2046,7 +2046,7 @@ interface Backdrop {
|
|
|
2046
2046
|
type?: BackdropTypeWithLiterals;
|
|
2047
2047
|
/**
|
|
2048
2048
|
* Backdrop color as a hexadecimal value.
|
|
2049
|
-
* @
|
|
2049
|
+
* @maxLength 19
|
|
2050
2050
|
*/
|
|
2051
2051
|
color?: string | null;
|
|
2052
2052
|
/** Gradient configuration. */
|
|
@@ -2067,7 +2067,7 @@ interface ShapeData {
|
|
|
2067
2067
|
interface ShapeDataStyles {
|
|
2068
2068
|
/**
|
|
2069
2069
|
* Shape fill color as a hexadecimal value.
|
|
2070
|
-
* @
|
|
2070
|
+
* @maxLength 19
|
|
2071
2071
|
*/
|
|
2072
2072
|
color?: string | null;
|
|
2073
2073
|
/** Map of original color keys to their new color values. */
|
|
@@ -2126,7 +2126,7 @@ interface CardDataBackground {
|
|
|
2126
2126
|
type?: CardDataBackgroundTypeWithLiterals;
|
|
2127
2127
|
/**
|
|
2128
2128
|
* Background color as a hexadecimal value.
|
|
2129
|
-
* @
|
|
2129
|
+
* @maxLength 19
|
|
2130
2130
|
*/
|
|
2131
2131
|
color?: string | null;
|
|
2132
2132
|
/** Gradient configuration. */
|
|
@@ -2153,7 +2153,7 @@ interface TocData {
|
|
|
2153
2153
|
itemSpacing?: number | null;
|
|
2154
2154
|
/**
|
|
2155
2155
|
* Optional override for the text color.
|
|
2156
|
-
* @
|
|
2156
|
+
* @maxLength 19
|
|
2157
2157
|
*/
|
|
2158
2158
|
color?: string | null;
|
|
2159
2159
|
/** Indentation style. Default: NESTED. */
|
|
@@ -2195,7 +2195,10 @@ interface SmartBlockData {
|
|
|
2195
2195
|
orientation?: string | null;
|
|
2196
2196
|
/** Column size controlling cells per row. */
|
|
2197
2197
|
columnSize?: ColumnSizeWithLiterals;
|
|
2198
|
-
/**
|
|
2198
|
+
/**
|
|
2199
|
+
* Border color (for SOLID_JOINED_BOXES variant).
|
|
2200
|
+
* @maxLength 19
|
|
2201
|
+
*/
|
|
2199
2202
|
borderColor?: string | null;
|
|
2200
2203
|
/** Border width in pixels (for SOLID_JOINED_BOXES variant). */
|
|
2201
2204
|
borderWidth?: number | null;
|
|
@@ -2254,7 +2257,10 @@ interface SmartBlockCellData {
|
|
|
2254
2257
|
label?: string | null;
|
|
2255
2258
|
/** Shape file details. */
|
|
2256
2259
|
shape?: Media;
|
|
2257
|
-
/**
|
|
2260
|
+
/**
|
|
2261
|
+
* Border color of the cell.
|
|
2262
|
+
* @maxLength 19
|
|
2263
|
+
*/
|
|
2258
2264
|
borderColor?: string | null;
|
|
2259
2265
|
/** Border width in pixels. */
|
|
2260
2266
|
borderWidth?: number | null;
|
|
@@ -2262,11 +2268,20 @@ interface SmartBlockCellData {
|
|
|
2262
2268
|
borderRadius?: number | null;
|
|
2263
2269
|
/** The type of the parent smart block (must match parent). */
|
|
2264
2270
|
type?: SmartBlockDataTypeWithLiterals;
|
|
2265
|
-
/**
|
|
2271
|
+
/**
|
|
2272
|
+
* Accent color for non-background variants (e.g., line, bullet, label color).
|
|
2273
|
+
* @maxLength 19
|
|
2274
|
+
*/
|
|
2266
2275
|
accentColor?: string | null;
|
|
2267
|
-
/**
|
|
2276
|
+
/**
|
|
2277
|
+
* Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES).
|
|
2278
|
+
* @maxLength 19
|
|
2279
|
+
*/
|
|
2268
2280
|
backgroundColor?: string | null;
|
|
2269
|
-
/**
|
|
2281
|
+
/**
|
|
2282
|
+
* Shape fill color as a hexadecimal value.
|
|
2283
|
+
* @maxLength 19
|
|
2284
|
+
*/
|
|
2270
2285
|
shapeColor?: string | null;
|
|
2271
2286
|
}
|
|
2272
2287
|
interface Metadata {
|