@wix/auto_sdk_faq_question-entry 1.0.43 → 1.0.44
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
package/build/es/meta.d.mts
CHANGED
|
@@ -356,7 +356,7 @@ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
|
|
|
356
356
|
interface Stop {
|
|
357
357
|
/**
|
|
358
358
|
* Stop color as hex value.
|
|
359
|
-
* @
|
|
359
|
+
* @maxLength 19
|
|
360
360
|
*/
|
|
361
361
|
color?: string | null;
|
|
362
362
|
/** Stop position (0-1). */
|
|
@@ -397,7 +397,7 @@ interface Background {
|
|
|
397
397
|
type?: BackgroundTypeWithLiterals;
|
|
398
398
|
/**
|
|
399
399
|
* Background color as a hexadecimal value.
|
|
400
|
-
* @
|
|
400
|
+
* @maxLength 19
|
|
401
401
|
*/
|
|
402
402
|
color?: string | null;
|
|
403
403
|
/** Gradient configuration. */
|
|
@@ -504,33 +504,33 @@ interface Styles {
|
|
|
504
504
|
borderRadius?: number | null;
|
|
505
505
|
/**
|
|
506
506
|
* Border color as a hexadecimal value.
|
|
507
|
-
* @
|
|
507
|
+
* @maxLength 19
|
|
508
508
|
*/
|
|
509
509
|
borderColor?: string | null;
|
|
510
510
|
/**
|
|
511
511
|
* Border color as a hexadecimal value (hover state).
|
|
512
|
-
* @
|
|
512
|
+
* @maxLength 19
|
|
513
513
|
*/
|
|
514
514
|
borderColorHover?: string | null;
|
|
515
515
|
/**
|
|
516
516
|
* Text color as a hexadecimal value.
|
|
517
|
-
* @
|
|
517
|
+
* @maxLength 19
|
|
518
518
|
*/
|
|
519
519
|
textColor?: string | null;
|
|
520
520
|
/**
|
|
521
521
|
* Text color as a hexadecimal value (hover state).
|
|
522
|
-
* @
|
|
522
|
+
* @maxLength 19
|
|
523
523
|
*/
|
|
524
524
|
textColorHover?: string | null;
|
|
525
525
|
/**
|
|
526
526
|
* Deprecated: Use `background` instead.
|
|
527
|
-
* @
|
|
527
|
+
* @maxLength 19
|
|
528
528
|
* @deprecated
|
|
529
529
|
*/
|
|
530
530
|
backgroundColor?: string | null;
|
|
531
531
|
/**
|
|
532
532
|
* Deprecated: Use `backgroundHover` instead.
|
|
533
|
-
* @
|
|
533
|
+
* @maxLength 19
|
|
534
534
|
* @deprecated
|
|
535
535
|
*/
|
|
536
536
|
backgroundColorHover?: string | null;
|
|
@@ -982,7 +982,7 @@ interface StylesBorder {
|
|
|
982
982
|
width?: number | null;
|
|
983
983
|
/**
|
|
984
984
|
* Border color as a hexadecimal value.
|
|
985
|
-
* @
|
|
985
|
+
* @maxLength 19
|
|
986
986
|
*/
|
|
987
987
|
color?: string | null;
|
|
988
988
|
/** Border radius in pixels. */
|
|
@@ -1023,22 +1023,22 @@ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HI
|
|
|
1023
1023
|
interface LinkPreviewDataStyles {
|
|
1024
1024
|
/**
|
|
1025
1025
|
* Background color as a hexadecimal value.
|
|
1026
|
-
* @
|
|
1026
|
+
* @maxLength 19
|
|
1027
1027
|
*/
|
|
1028
1028
|
backgroundColor?: string | null;
|
|
1029
1029
|
/**
|
|
1030
1030
|
* Title color as a hexadecimal value.
|
|
1031
|
-
* @
|
|
1031
|
+
* @maxLength 19
|
|
1032
1032
|
*/
|
|
1033
1033
|
titleColor?: string | null;
|
|
1034
1034
|
/**
|
|
1035
1035
|
* Subtitle color as a hexadecimal value.
|
|
1036
|
-
* @
|
|
1036
|
+
* @maxLength 19
|
|
1037
1037
|
*/
|
|
1038
1038
|
subtitleColor?: string | null;
|
|
1039
1039
|
/**
|
|
1040
1040
|
* Link color as a hexadecimal value.
|
|
1041
|
-
* @
|
|
1041
|
+
* @maxLength 19
|
|
1042
1042
|
*/
|
|
1043
1043
|
linkColor?: string | null;
|
|
1044
1044
|
/** Border width in pixels. */
|
|
@@ -1047,7 +1047,7 @@ interface LinkPreviewDataStyles {
|
|
|
1047
1047
|
borderRadius?: number | null;
|
|
1048
1048
|
/**
|
|
1049
1049
|
* Border color as a hexadecimal value.
|
|
1050
|
-
* @
|
|
1050
|
+
* @maxLength 19
|
|
1051
1051
|
*/
|
|
1052
1052
|
borderColor?: string | null;
|
|
1053
1053
|
/** Position of thumbnail. Defaults to `START`. */
|
|
@@ -1198,19 +1198,19 @@ interface BackgroundGradient {
|
|
|
1198
1198
|
angle?: number | null;
|
|
1199
1199
|
/**
|
|
1200
1200
|
* The start color as a hexademical value.
|
|
1201
|
-
* @
|
|
1201
|
+
* @maxLength 19
|
|
1202
1202
|
*/
|
|
1203
1203
|
startColor?: string | null;
|
|
1204
1204
|
/**
|
|
1205
1205
|
* The end color as a hexademical value.
|
|
1206
|
-
* @
|
|
1206
|
+
* @maxLength 19
|
|
1207
1207
|
*/
|
|
1208
1208
|
lastColor?: string | null;
|
|
1209
1209
|
}
|
|
1210
1210
|
interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
1211
1211
|
/**
|
|
1212
1212
|
* The background color as a hexademical value.
|
|
1213
|
-
* @
|
|
1213
|
+
* @maxLength 19
|
|
1214
1214
|
*/
|
|
1215
1215
|
color?: string | null;
|
|
1216
1216
|
/** An image to use for the background. */
|
|
@@ -1224,7 +1224,7 @@ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
|
1224
1224
|
interface PollDesignBackgroundBackgroundOneOf {
|
|
1225
1225
|
/**
|
|
1226
1226
|
* The background color as a hexademical value.
|
|
1227
|
-
* @
|
|
1227
|
+
* @maxLength 19
|
|
1228
1228
|
*/
|
|
1229
1229
|
color?: string | null;
|
|
1230
1230
|
/** An image to use for the background. */
|
|
@@ -1538,32 +1538,32 @@ interface ButtonStyles {
|
|
|
1538
1538
|
borderRadius?: number | null;
|
|
1539
1539
|
/**
|
|
1540
1540
|
* Border color as a hexadecimal value.
|
|
1541
|
-
* @
|
|
1541
|
+
* @maxLength 19
|
|
1542
1542
|
*/
|
|
1543
1543
|
borderColor?: string | null;
|
|
1544
1544
|
/**
|
|
1545
1545
|
* Text color as a hexadecimal value.
|
|
1546
|
-
* @
|
|
1546
|
+
* @maxLength 19
|
|
1547
1547
|
*/
|
|
1548
1548
|
textColor?: string | null;
|
|
1549
1549
|
/**
|
|
1550
1550
|
* Background color as a hexadecimal value.
|
|
1551
|
-
* @
|
|
1551
|
+
* @maxLength 19
|
|
1552
1552
|
*/
|
|
1553
1553
|
backgroundColor?: string | null;
|
|
1554
1554
|
/**
|
|
1555
1555
|
* Border color as a hexadecimal value (hover state).
|
|
1556
|
-
* @
|
|
1556
|
+
* @maxLength 19
|
|
1557
1557
|
*/
|
|
1558
1558
|
borderColorHover?: string | null;
|
|
1559
1559
|
/**
|
|
1560
1560
|
* Text color as a hexadecimal value (hover state).
|
|
1561
|
-
* @
|
|
1561
|
+
* @maxLength 19
|
|
1562
1562
|
*/
|
|
1563
1563
|
textColorHover?: string | null;
|
|
1564
1564
|
/**
|
|
1565
1565
|
* Background color as a hexadecimal value (hover state).
|
|
1566
|
-
* @
|
|
1566
|
+
* @maxLength 19
|
|
1567
1567
|
*/
|
|
1568
1568
|
backgroundColorHover?: string | null;
|
|
1569
1569
|
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
@@ -1580,7 +1580,7 @@ interface ImageStyles {
|
|
|
1580
1580
|
resizing?: ResizingWithLiterals;
|
|
1581
1581
|
/**
|
|
1582
1582
|
* Image border color as a hexadecimal value.
|
|
1583
|
-
* @
|
|
1583
|
+
* @maxLength 19
|
|
1584
1584
|
*/
|
|
1585
1585
|
borderColor?: string | null;
|
|
1586
1586
|
/** Image border width in pixels. */
|
|
@@ -1593,17 +1593,17 @@ interface RibbonStyles {
|
|
|
1593
1593
|
ribbonText?: string | null;
|
|
1594
1594
|
/**
|
|
1595
1595
|
* Ribbon background color as a hexadecimal value.
|
|
1596
|
-
* @
|
|
1596
|
+
* @maxLength 19
|
|
1597
1597
|
*/
|
|
1598
1598
|
backgroundColor?: string | null;
|
|
1599
1599
|
/**
|
|
1600
1600
|
* Ribbon text color as a hexadecimal value.
|
|
1601
|
-
* @
|
|
1601
|
+
* @maxLength 19
|
|
1602
1602
|
*/
|
|
1603
1603
|
textColor?: string | null;
|
|
1604
1604
|
/**
|
|
1605
1605
|
* Ribbon border color as a hexadecimal value.
|
|
1606
|
-
* @
|
|
1606
|
+
* @maxLength 19
|
|
1607
1607
|
*/
|
|
1608
1608
|
borderColor?: string | null;
|
|
1609
1609
|
/** Ribbon border width in pixels. */
|
|
@@ -1616,12 +1616,12 @@ interface RibbonStyles {
|
|
|
1616
1616
|
interface CardStyles {
|
|
1617
1617
|
/**
|
|
1618
1618
|
* Card background color as a hexadecimal value.
|
|
1619
|
-
* @
|
|
1619
|
+
* @maxLength 19
|
|
1620
1620
|
*/
|
|
1621
1621
|
backgroundColor?: string | null;
|
|
1622
1622
|
/**
|
|
1623
1623
|
* Card border color as a hexadecimal value.
|
|
1624
|
-
* @
|
|
1624
|
+
* @maxLength 19
|
|
1625
1625
|
*/
|
|
1626
1626
|
borderColor?: string | null;
|
|
1627
1627
|
/** Card border width in pixels. */
|
|
@@ -1636,12 +1636,12 @@ interface CardStyles {
|
|
|
1636
1636
|
titlePriceLayout?: LayoutWithLiterals;
|
|
1637
1637
|
/**
|
|
1638
1638
|
* Title text color as a hexadecimal value.
|
|
1639
|
-
* @
|
|
1639
|
+
* @maxLength 19
|
|
1640
1640
|
*/
|
|
1641
1641
|
titleColor?: string | null;
|
|
1642
1642
|
/**
|
|
1643
1643
|
* Text color as a hexadecimal value.
|
|
1644
|
-
* @
|
|
1644
|
+
* @maxLength 19
|
|
1645
1645
|
*/
|
|
1646
1646
|
textColor?: string | null;
|
|
1647
1647
|
}
|
|
@@ -1823,29 +1823,29 @@ interface CellStyle {
|
|
|
1823
1823
|
verticalAlignment?: VerticalAlignmentWithLiterals;
|
|
1824
1824
|
/**
|
|
1825
1825
|
* Cell background color as a hexadecimal value.
|
|
1826
|
-
* @
|
|
1826
|
+
* @maxLength 19
|
|
1827
1827
|
*/
|
|
1828
1828
|
backgroundColor?: string | null;
|
|
1829
1829
|
}
|
|
1830
1830
|
interface BorderColors {
|
|
1831
1831
|
/**
|
|
1832
1832
|
* Left border color as a hexadecimal value.
|
|
1833
|
-
* @
|
|
1833
|
+
* @maxLength 19
|
|
1834
1834
|
*/
|
|
1835
1835
|
left?: string | null;
|
|
1836
1836
|
/**
|
|
1837
1837
|
* Right border color as a hexadecimal value.
|
|
1838
|
-
* @
|
|
1838
|
+
* @maxLength 19
|
|
1839
1839
|
*/
|
|
1840
1840
|
right?: string | null;
|
|
1841
1841
|
/**
|
|
1842
1842
|
* Top border color as a hexadecimal value.
|
|
1843
|
-
* @
|
|
1843
|
+
* @maxLength 19
|
|
1844
1844
|
*/
|
|
1845
1845
|
top?: string | null;
|
|
1846
1846
|
/**
|
|
1847
1847
|
* Bottom border color as a hexadecimal value.
|
|
1848
|
-
* @
|
|
1848
|
+
* @maxLength 19
|
|
1849
1849
|
*/
|
|
1850
1850
|
bottom?: string | null;
|
|
1851
1851
|
}
|
|
@@ -1920,7 +1920,7 @@ interface CaptionData {
|
|
|
1920
1920
|
interface LayoutData {
|
|
1921
1921
|
/**
|
|
1922
1922
|
* Deprecated: Use `background` instead.
|
|
1923
|
-
* @
|
|
1923
|
+
* @maxLength 19
|
|
1924
1924
|
* @deprecated
|
|
1925
1925
|
*/
|
|
1926
1926
|
backgroundColor?: string | null;
|
|
@@ -1928,7 +1928,7 @@ interface LayoutData {
|
|
|
1928
1928
|
backgroundImage?: LayoutDataBackgroundImage;
|
|
1929
1929
|
/**
|
|
1930
1930
|
* Border color as a hexadecimal value.
|
|
1931
|
-
* @
|
|
1931
|
+
* @maxLength 19
|
|
1932
1932
|
*/
|
|
1933
1933
|
borderColor?: string | null;
|
|
1934
1934
|
/** Border width in pixels. */
|
|
@@ -1937,7 +1937,7 @@ interface LayoutData {
|
|
|
1937
1937
|
borderRadius?: number | null;
|
|
1938
1938
|
/**
|
|
1939
1939
|
* Deprecated: Use `backdrop` instead.
|
|
1940
|
-
* @
|
|
1940
|
+
* @maxLength 19
|
|
1941
1941
|
* @deprecated
|
|
1942
1942
|
*/
|
|
1943
1943
|
backdropColor?: string | null;
|
|
@@ -2075,7 +2075,7 @@ interface LayoutDataBackground {
|
|
|
2075
2075
|
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
2076
2076
|
/**
|
|
2077
2077
|
* Background color as a hexadecimal value.
|
|
2078
|
-
* @
|
|
2078
|
+
* @maxLength 19
|
|
2079
2079
|
*/
|
|
2080
2080
|
color?: string | null;
|
|
2081
2081
|
/** Gradient configuration. */
|
|
@@ -2087,7 +2087,7 @@ interface Backdrop {
|
|
|
2087
2087
|
type?: BackdropTypeWithLiterals;
|
|
2088
2088
|
/**
|
|
2089
2089
|
* Backdrop color as a hexadecimal value.
|
|
2090
|
-
* @
|
|
2090
|
+
* @maxLength 19
|
|
2091
2091
|
*/
|
|
2092
2092
|
color?: string | null;
|
|
2093
2093
|
/** Gradient configuration. */
|
|
@@ -2108,7 +2108,7 @@ interface ShapeData {
|
|
|
2108
2108
|
interface ShapeDataStyles {
|
|
2109
2109
|
/**
|
|
2110
2110
|
* Shape fill color as a hexadecimal value.
|
|
2111
|
-
* @
|
|
2111
|
+
* @maxLength 19
|
|
2112
2112
|
*/
|
|
2113
2113
|
color?: string | null;
|
|
2114
2114
|
/** Map of original color keys to their new color values. */
|
|
@@ -2167,7 +2167,7 @@ interface CardDataBackground {
|
|
|
2167
2167
|
type?: CardDataBackgroundTypeWithLiterals;
|
|
2168
2168
|
/**
|
|
2169
2169
|
* Background color as a hexadecimal value.
|
|
2170
|
-
* @
|
|
2170
|
+
* @maxLength 19
|
|
2171
2171
|
*/
|
|
2172
2172
|
color?: string | null;
|
|
2173
2173
|
/** Gradient configuration. */
|
|
@@ -2194,7 +2194,7 @@ interface TocData {
|
|
|
2194
2194
|
itemSpacing?: number | null;
|
|
2195
2195
|
/**
|
|
2196
2196
|
* Optional override for the text color.
|
|
2197
|
-
* @
|
|
2197
|
+
* @maxLength 19
|
|
2198
2198
|
*/
|
|
2199
2199
|
color?: string | null;
|
|
2200
2200
|
/** Indentation style. Default: NESTED. */
|
|
@@ -2236,7 +2236,10 @@ interface SmartBlockData {
|
|
|
2236
2236
|
orientation?: string | null;
|
|
2237
2237
|
/** Column size controlling cells per row. */
|
|
2238
2238
|
columnSize?: ColumnSizeWithLiterals;
|
|
2239
|
-
/**
|
|
2239
|
+
/**
|
|
2240
|
+
* Border color (for SOLID_JOINED_BOXES variant).
|
|
2241
|
+
* @maxLength 19
|
|
2242
|
+
*/
|
|
2240
2243
|
borderColor?: string | null;
|
|
2241
2244
|
/** Border width in pixels (for SOLID_JOINED_BOXES variant). */
|
|
2242
2245
|
borderWidth?: number | null;
|
|
@@ -2295,7 +2298,10 @@ interface SmartBlockCellData {
|
|
|
2295
2298
|
label?: string | null;
|
|
2296
2299
|
/** Shape file details. */
|
|
2297
2300
|
shape?: Media;
|
|
2298
|
-
/**
|
|
2301
|
+
/**
|
|
2302
|
+
* Border color of the cell.
|
|
2303
|
+
* @maxLength 19
|
|
2304
|
+
*/
|
|
2299
2305
|
borderColor?: string | null;
|
|
2300
2306
|
/** Border width in pixels. */
|
|
2301
2307
|
borderWidth?: number | null;
|
|
@@ -2303,11 +2309,20 @@ interface SmartBlockCellData {
|
|
|
2303
2309
|
borderRadius?: number | null;
|
|
2304
2310
|
/** The type of the parent smart block (must match parent). */
|
|
2305
2311
|
type?: SmartBlockDataTypeWithLiterals;
|
|
2306
|
-
/**
|
|
2312
|
+
/**
|
|
2313
|
+
* Accent color for non-background variants (e.g., line, bullet, label color).
|
|
2314
|
+
* @maxLength 19
|
|
2315
|
+
*/
|
|
2307
2316
|
accentColor?: string | null;
|
|
2308
|
-
/**
|
|
2317
|
+
/**
|
|
2318
|
+
* Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES).
|
|
2319
|
+
* @maxLength 19
|
|
2320
|
+
*/
|
|
2309
2321
|
backgroundColor?: string | null;
|
|
2310
|
-
/**
|
|
2322
|
+
/**
|
|
2323
|
+
* Shape fill color as a hexadecimal value.
|
|
2324
|
+
* @maxLength 19
|
|
2325
|
+
*/
|
|
2311
2326
|
shapeColor?: string | null;
|
|
2312
2327
|
}
|
|
2313
2328
|
interface Metadata {
|