@wix/auto_sdk_quick-pages_contents 1.0.19 → 1.0.21
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 +12 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +91 -56
- package/build/cjs/index.typings.js +12 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +89 -54
- package/build/cjs/meta.js +12 -0
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs +11 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +91 -56
- package/build/es/index.typings.mjs +11 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +89 -54
- package/build/es/meta.mjs +11 -0
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js +12 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +91 -56
- package/build/internal/cjs/index.typings.js +12 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +89 -54
- package/build/internal/cjs/meta.js +12 -0
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs +11 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +91 -56
- package/build/internal/es/index.typings.mjs +11 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +89 -54
- package/build/internal/es/meta.mjs +11 -0
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -769,7 +769,7 @@ type V1GradientTypeWithLiterals = V1GradientType | 'LINEAR' | 'RADIAL';
|
|
|
769
769
|
interface Stop {
|
|
770
770
|
/**
|
|
771
771
|
* Stop color as hex value.
|
|
772
|
-
* @
|
|
772
|
+
* @maxLength 19
|
|
773
773
|
*/
|
|
774
774
|
color?: string | null;
|
|
775
775
|
/** Stop position (0-1). */
|
|
@@ -810,7 +810,7 @@ interface StylesBackground {
|
|
|
810
810
|
type?: StylesBackgroundTypeWithLiterals;
|
|
811
811
|
/**
|
|
812
812
|
* Background color as a hexadecimal value.
|
|
813
|
-
* @
|
|
813
|
+
* @maxLength 19
|
|
814
814
|
*/
|
|
815
815
|
color?: string | null;
|
|
816
816
|
/** Gradient configuration. */
|
|
@@ -917,33 +917,33 @@ interface Styles {
|
|
|
917
917
|
borderRadius?: number | null;
|
|
918
918
|
/**
|
|
919
919
|
* Border color as a hexadecimal value.
|
|
920
|
-
* @
|
|
920
|
+
* @maxLength 19
|
|
921
921
|
*/
|
|
922
922
|
borderColor?: string | null;
|
|
923
923
|
/**
|
|
924
924
|
* Border color as a hexadecimal value (hover state).
|
|
925
|
-
* @
|
|
925
|
+
* @maxLength 19
|
|
926
926
|
*/
|
|
927
927
|
borderColorHover?: string | null;
|
|
928
928
|
/**
|
|
929
929
|
* Text color as a hexadecimal value.
|
|
930
|
-
* @
|
|
930
|
+
* @maxLength 19
|
|
931
931
|
*/
|
|
932
932
|
textColor?: string | null;
|
|
933
933
|
/**
|
|
934
934
|
* Text color as a hexadecimal value (hover state).
|
|
935
|
-
* @
|
|
935
|
+
* @maxLength 19
|
|
936
936
|
*/
|
|
937
937
|
textColorHover?: string | null;
|
|
938
938
|
/**
|
|
939
939
|
* Deprecated: Use `background` instead.
|
|
940
|
-
* @
|
|
940
|
+
* @maxLength 19
|
|
941
941
|
* @deprecated
|
|
942
942
|
*/
|
|
943
943
|
backgroundColor?: string | null;
|
|
944
944
|
/**
|
|
945
945
|
* Deprecated: Use `backgroundHover` instead.
|
|
946
|
-
* @
|
|
946
|
+
* @maxLength 19
|
|
947
947
|
* @deprecated
|
|
948
948
|
*/
|
|
949
949
|
backgroundColorHover?: string | null;
|
|
@@ -1395,7 +1395,7 @@ interface ImageDataStylesBorder {
|
|
|
1395
1395
|
width?: number | null;
|
|
1396
1396
|
/**
|
|
1397
1397
|
* Border color as a hexadecimal value.
|
|
1398
|
-
* @
|
|
1398
|
+
* @maxLength 19
|
|
1399
1399
|
*/
|
|
1400
1400
|
color?: string | null;
|
|
1401
1401
|
/** Border radius in pixels. */
|
|
@@ -1436,22 +1436,22 @@ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HI
|
|
|
1436
1436
|
interface LinkPreviewDataStyles {
|
|
1437
1437
|
/**
|
|
1438
1438
|
* Background color as a hexadecimal value.
|
|
1439
|
-
* @
|
|
1439
|
+
* @maxLength 19
|
|
1440
1440
|
*/
|
|
1441
1441
|
backgroundColor?: string | null;
|
|
1442
1442
|
/**
|
|
1443
1443
|
* Title color as a hexadecimal value.
|
|
1444
|
-
* @
|
|
1444
|
+
* @maxLength 19
|
|
1445
1445
|
*/
|
|
1446
1446
|
titleColor?: string | null;
|
|
1447
1447
|
/**
|
|
1448
1448
|
* Subtitle color as a hexadecimal value.
|
|
1449
|
-
* @
|
|
1449
|
+
* @maxLength 19
|
|
1450
1450
|
*/
|
|
1451
1451
|
subtitleColor?: string | null;
|
|
1452
1452
|
/**
|
|
1453
1453
|
* Link color as a hexadecimal value.
|
|
1454
|
-
* @
|
|
1454
|
+
* @maxLength 19
|
|
1455
1455
|
*/
|
|
1456
1456
|
linkColor?: string | null;
|
|
1457
1457
|
/** Border width in pixels. */
|
|
@@ -1460,7 +1460,7 @@ interface LinkPreviewDataStyles {
|
|
|
1460
1460
|
borderRadius?: number | null;
|
|
1461
1461
|
/**
|
|
1462
1462
|
* Border color as a hexadecimal value.
|
|
1463
|
-
* @
|
|
1463
|
+
* @maxLength 19
|
|
1464
1464
|
*/
|
|
1465
1465
|
borderColor?: string | null;
|
|
1466
1466
|
/** Position of thumbnail. Defaults to `START`. */
|
|
@@ -1611,19 +1611,19 @@ interface BackgroundGradient {
|
|
|
1611
1611
|
angle?: number | null;
|
|
1612
1612
|
/**
|
|
1613
1613
|
* The start color as a hexademical value.
|
|
1614
|
-
* @
|
|
1614
|
+
* @maxLength 19
|
|
1615
1615
|
*/
|
|
1616
1616
|
startColor?: string | null;
|
|
1617
1617
|
/**
|
|
1618
1618
|
* The end color as a hexademical value.
|
|
1619
|
-
* @
|
|
1619
|
+
* @maxLength 19
|
|
1620
1620
|
*/
|
|
1621
1621
|
lastColor?: string | null;
|
|
1622
1622
|
}
|
|
1623
1623
|
interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
1624
1624
|
/**
|
|
1625
1625
|
* The background color as a hexademical value.
|
|
1626
|
-
* @
|
|
1626
|
+
* @maxLength 19
|
|
1627
1627
|
*/
|
|
1628
1628
|
color?: string | null;
|
|
1629
1629
|
/** An image to use for the background. */
|
|
@@ -1637,7 +1637,7 @@ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
|
1637
1637
|
interface PollDesignBackgroundBackgroundOneOf {
|
|
1638
1638
|
/**
|
|
1639
1639
|
* The background color as a hexademical value.
|
|
1640
|
-
* @
|
|
1640
|
+
* @maxLength 19
|
|
1641
1641
|
*/
|
|
1642
1642
|
color?: string | null;
|
|
1643
1643
|
/** An image to use for the background. */
|
|
@@ -1951,32 +1951,32 @@ interface ButtonStyles {
|
|
|
1951
1951
|
borderRadius?: number | null;
|
|
1952
1952
|
/**
|
|
1953
1953
|
* Border color as a hexadecimal value.
|
|
1954
|
-
* @
|
|
1954
|
+
* @maxLength 19
|
|
1955
1955
|
*/
|
|
1956
1956
|
borderColor?: string | null;
|
|
1957
1957
|
/**
|
|
1958
1958
|
* Text color as a hexadecimal value.
|
|
1959
|
-
* @
|
|
1959
|
+
* @maxLength 19
|
|
1960
1960
|
*/
|
|
1961
1961
|
textColor?: string | null;
|
|
1962
1962
|
/**
|
|
1963
1963
|
* Background color as a hexadecimal value.
|
|
1964
|
-
* @
|
|
1964
|
+
* @maxLength 19
|
|
1965
1965
|
*/
|
|
1966
1966
|
backgroundColor?: string | null;
|
|
1967
1967
|
/**
|
|
1968
1968
|
* Border color as a hexadecimal value (hover state).
|
|
1969
|
-
* @
|
|
1969
|
+
* @maxLength 19
|
|
1970
1970
|
*/
|
|
1971
1971
|
borderColorHover?: string | null;
|
|
1972
1972
|
/**
|
|
1973
1973
|
* Text color as a hexadecimal value (hover state).
|
|
1974
|
-
* @
|
|
1974
|
+
* @maxLength 19
|
|
1975
1975
|
*/
|
|
1976
1976
|
textColorHover?: string | null;
|
|
1977
1977
|
/**
|
|
1978
1978
|
* Background color as a hexadecimal value (hover state).
|
|
1979
|
-
* @
|
|
1979
|
+
* @maxLength 19
|
|
1980
1980
|
*/
|
|
1981
1981
|
backgroundColorHover?: string | null;
|
|
1982
1982
|
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
@@ -1993,7 +1993,7 @@ interface ImageStyles {
|
|
|
1993
1993
|
resizing?: ResizingWithLiterals;
|
|
1994
1994
|
/**
|
|
1995
1995
|
* Image border color as a hexadecimal value.
|
|
1996
|
-
* @
|
|
1996
|
+
* @maxLength 19
|
|
1997
1997
|
*/
|
|
1998
1998
|
borderColor?: string | null;
|
|
1999
1999
|
/** Image border width in pixels. */
|
|
@@ -2006,17 +2006,17 @@ interface RibbonStyles {
|
|
|
2006
2006
|
ribbonText?: string | null;
|
|
2007
2007
|
/**
|
|
2008
2008
|
* Ribbon background color as a hexadecimal value.
|
|
2009
|
-
* @
|
|
2009
|
+
* @maxLength 19
|
|
2010
2010
|
*/
|
|
2011
2011
|
backgroundColor?: string | null;
|
|
2012
2012
|
/**
|
|
2013
2013
|
* Ribbon text color as a hexadecimal value.
|
|
2014
|
-
* @
|
|
2014
|
+
* @maxLength 19
|
|
2015
2015
|
*/
|
|
2016
2016
|
textColor?: string | null;
|
|
2017
2017
|
/**
|
|
2018
2018
|
* Ribbon border color as a hexadecimal value.
|
|
2019
|
-
* @
|
|
2019
|
+
* @maxLength 19
|
|
2020
2020
|
*/
|
|
2021
2021
|
borderColor?: string | null;
|
|
2022
2022
|
/** Ribbon border width in pixels. */
|
|
@@ -2029,12 +2029,12 @@ interface RibbonStyles {
|
|
|
2029
2029
|
interface CardStyles {
|
|
2030
2030
|
/**
|
|
2031
2031
|
* Card background color as a hexadecimal value.
|
|
2032
|
-
* @
|
|
2032
|
+
* @maxLength 19
|
|
2033
2033
|
*/
|
|
2034
2034
|
backgroundColor?: string | null;
|
|
2035
2035
|
/**
|
|
2036
2036
|
* Card border color as a hexadecimal value.
|
|
2037
|
-
* @
|
|
2037
|
+
* @maxLength 19
|
|
2038
2038
|
*/
|
|
2039
2039
|
borderColor?: string | null;
|
|
2040
2040
|
/** Card border width in pixels. */
|
|
@@ -2049,12 +2049,12 @@ interface CardStyles {
|
|
|
2049
2049
|
titlePriceLayout?: LayoutWithLiterals;
|
|
2050
2050
|
/**
|
|
2051
2051
|
* Title text color as a hexadecimal value.
|
|
2052
|
-
* @
|
|
2052
|
+
* @maxLength 19
|
|
2053
2053
|
*/
|
|
2054
2054
|
titleColor?: string | null;
|
|
2055
2055
|
/**
|
|
2056
2056
|
* Text color as a hexadecimal value.
|
|
2057
|
-
* @
|
|
2057
|
+
* @maxLength 19
|
|
2058
2058
|
*/
|
|
2059
2059
|
textColor?: string | null;
|
|
2060
2060
|
}
|
|
@@ -2236,29 +2236,29 @@ interface CellStyle {
|
|
|
2236
2236
|
verticalAlignment?: VerticalAlignmentWithLiterals;
|
|
2237
2237
|
/**
|
|
2238
2238
|
* Cell background color as a hexadecimal value.
|
|
2239
|
-
* @
|
|
2239
|
+
* @maxLength 19
|
|
2240
2240
|
*/
|
|
2241
2241
|
backgroundColor?: string | null;
|
|
2242
2242
|
}
|
|
2243
2243
|
interface BorderColors {
|
|
2244
2244
|
/**
|
|
2245
2245
|
* Left border color as a hexadecimal value.
|
|
2246
|
-
* @
|
|
2246
|
+
* @maxLength 19
|
|
2247
2247
|
*/
|
|
2248
2248
|
left?: string | null;
|
|
2249
2249
|
/**
|
|
2250
2250
|
* Right border color as a hexadecimal value.
|
|
2251
|
-
* @
|
|
2251
|
+
* @maxLength 19
|
|
2252
2252
|
*/
|
|
2253
2253
|
right?: string | null;
|
|
2254
2254
|
/**
|
|
2255
2255
|
* Top border color as a hexadecimal value.
|
|
2256
|
-
* @
|
|
2256
|
+
* @maxLength 19
|
|
2257
2257
|
*/
|
|
2258
2258
|
top?: string | null;
|
|
2259
2259
|
/**
|
|
2260
2260
|
* Bottom border color as a hexadecimal value.
|
|
2261
|
-
* @
|
|
2261
|
+
* @maxLength 19
|
|
2262
2262
|
*/
|
|
2263
2263
|
bottom?: string | null;
|
|
2264
2264
|
}
|
|
@@ -2333,7 +2333,7 @@ interface CaptionData {
|
|
|
2333
2333
|
interface LayoutData {
|
|
2334
2334
|
/**
|
|
2335
2335
|
* Deprecated: Use `background` instead.
|
|
2336
|
-
* @
|
|
2336
|
+
* @maxLength 19
|
|
2337
2337
|
* @deprecated
|
|
2338
2338
|
*/
|
|
2339
2339
|
backgroundColor?: string | null;
|
|
@@ -2341,7 +2341,7 @@ interface LayoutData {
|
|
|
2341
2341
|
backgroundImage?: LayoutDataBackgroundImage;
|
|
2342
2342
|
/**
|
|
2343
2343
|
* Border color as a hexadecimal value.
|
|
2344
|
-
* @
|
|
2344
|
+
* @maxLength 19
|
|
2345
2345
|
*/
|
|
2346
2346
|
borderColor?: string | null;
|
|
2347
2347
|
/** Border width in pixels. */
|
|
@@ -2350,7 +2350,7 @@ interface LayoutData {
|
|
|
2350
2350
|
borderRadius?: number | null;
|
|
2351
2351
|
/**
|
|
2352
2352
|
* Deprecated: Use `backdrop` instead.
|
|
2353
|
-
* @
|
|
2353
|
+
* @maxLength 19
|
|
2354
2354
|
* @deprecated
|
|
2355
2355
|
*/
|
|
2356
2356
|
backdropColor?: string | null;
|
|
@@ -2377,7 +2377,7 @@ interface LayoutData {
|
|
|
2377
2377
|
containerData?: PluginContainerData;
|
|
2378
2378
|
/** Defines where selected design propertied applies to */
|
|
2379
2379
|
designTarget?: DesignTargetWithLiterals;
|
|
2380
|
-
/** Banner configuration. When present, this layout is
|
|
2380
|
+
/** Banner configuration. When present, this layout is attached to a document edge (top or bottom). */
|
|
2381
2381
|
banner?: Banner;
|
|
2382
2382
|
/** Background styling (color or gradient). */
|
|
2383
2383
|
background?: LayoutDataBackground;
|
|
@@ -2424,6 +2424,14 @@ declare enum Origin {
|
|
|
2424
2424
|
}
|
|
2425
2425
|
/** @enumType */
|
|
2426
2426
|
type OriginWithLiterals = Origin | 'IMAGE' | 'LAYOUT';
|
|
2427
|
+
declare enum BannerPosition {
|
|
2428
|
+
/** Attached to the top edge (banner) */
|
|
2429
|
+
TOP = "TOP",
|
|
2430
|
+
/** Attached to the bottom edge (footer) */
|
|
2431
|
+
BOTTOM = "BOTTOM"
|
|
2432
|
+
}
|
|
2433
|
+
/** @enumType */
|
|
2434
|
+
type BannerPositionWithLiterals = BannerPosition | 'TOP' | 'BOTTOM';
|
|
2427
2435
|
/** Background type */
|
|
2428
2436
|
declare enum LayoutDataBackgroundType {
|
|
2429
2437
|
/** Solid color background */
|
|
@@ -2481,6 +2489,8 @@ type DesignTargetWithLiterals = DesignTarget | 'LAYOUT' | 'CELL';
|
|
|
2481
2489
|
interface Banner {
|
|
2482
2490
|
/** Origin of the banner */
|
|
2483
2491
|
origin?: OriginWithLiterals;
|
|
2492
|
+
/** Position of the banner */
|
|
2493
|
+
position?: BannerPositionWithLiterals;
|
|
2484
2494
|
}
|
|
2485
2495
|
/** Background styling (color or gradient) */
|
|
2486
2496
|
interface LayoutDataBackground {
|
|
@@ -2488,7 +2498,7 @@ interface LayoutDataBackground {
|
|
|
2488
2498
|
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
2489
2499
|
/**
|
|
2490
2500
|
* Background color as a hexadecimal value.
|
|
2491
|
-
* @
|
|
2501
|
+
* @maxLength 19
|
|
2492
2502
|
*/
|
|
2493
2503
|
color?: string | null;
|
|
2494
2504
|
/** Gradient configuration. */
|
|
@@ -2500,7 +2510,7 @@ interface Backdrop {
|
|
|
2500
2510
|
type?: BackdropTypeWithLiterals;
|
|
2501
2511
|
/**
|
|
2502
2512
|
* Backdrop color as a hexadecimal value.
|
|
2503
|
-
* @
|
|
2513
|
+
* @maxLength 19
|
|
2504
2514
|
*/
|
|
2505
2515
|
color?: string | null;
|
|
2506
2516
|
/** Gradient configuration. */
|
|
@@ -2521,7 +2531,7 @@ interface ShapeData {
|
|
|
2521
2531
|
interface ShapeDataStyles {
|
|
2522
2532
|
/**
|
|
2523
2533
|
* Shape fill color as a hexadecimal value.
|
|
2524
|
-
* @
|
|
2534
|
+
* @maxLength 19
|
|
2525
2535
|
*/
|
|
2526
2536
|
color?: string | null;
|
|
2527
2537
|
/** Map of original color keys to their new color values. */
|
|
@@ -2580,7 +2590,7 @@ interface CardDataBackground {
|
|
|
2580
2590
|
type?: CardDataBackgroundTypeWithLiterals;
|
|
2581
2591
|
/**
|
|
2582
2592
|
* Background color as a hexadecimal value.
|
|
2583
|
-
* @
|
|
2593
|
+
* @maxLength 19
|
|
2584
2594
|
*/
|
|
2585
2595
|
color?: string | null;
|
|
2586
2596
|
/** Gradient configuration. */
|
|
@@ -2607,7 +2617,7 @@ interface TocData {
|
|
|
2607
2617
|
itemSpacing?: number | null;
|
|
2608
2618
|
/**
|
|
2609
2619
|
* Optional override for the text color.
|
|
2610
|
-
* @
|
|
2620
|
+
* @maxLength 19
|
|
2611
2621
|
*/
|
|
2612
2622
|
color?: string | null;
|
|
2613
2623
|
/** Indentation style. Default: NESTED. */
|
|
@@ -2649,7 +2659,10 @@ interface SmartBlockData {
|
|
|
2649
2659
|
orientation?: string | null;
|
|
2650
2660
|
/** Column size controlling cells per row. */
|
|
2651
2661
|
columnSize?: ColumnSizeWithLiterals;
|
|
2652
|
-
/**
|
|
2662
|
+
/**
|
|
2663
|
+
* Border color (for SOLID_JOINED_BOXES variant).
|
|
2664
|
+
* @maxLength 19
|
|
2665
|
+
*/
|
|
2653
2666
|
borderColor?: string | null;
|
|
2654
2667
|
/** Border width in pixels (for SOLID_JOINED_BOXES variant). */
|
|
2655
2668
|
borderWidth?: number | null;
|
|
@@ -2685,10 +2698,20 @@ declare enum SmartBlockDataType {
|
|
|
2685
2698
|
/** Process steps with numbered/icon labels above a horizontal line. */
|
|
2686
2699
|
PROCESS_STEPS = "PROCESS_STEPS",
|
|
2687
2700
|
/** Statistics with bar visual elements. */
|
|
2688
|
-
BAR_STATS = "BAR_STATS"
|
|
2701
|
+
BAR_STATS = "BAR_STATS",
|
|
2702
|
+
/** Timeline layout with numbered chips on a connecting line; cells alternate around the line. */
|
|
2703
|
+
TIMELINE = "TIMELINE",
|
|
2704
|
+
/** Timeline layout with plain dot indicators; no numbers or shapes; cells alternate around the line. */
|
|
2705
|
+
MINIMAL_TIMELINE = "MINIMAL_TIMELINE",
|
|
2706
|
+
/** Numbered pill-shaped labels (stadium chips) with text content; supports HORIZONTAL (pill on top) and VERTICAL (pill on left) orientations. */
|
|
2707
|
+
PILLS = "PILLS",
|
|
2708
|
+
/** Star rating display with stars and a numeric value per cell. */
|
|
2709
|
+
STAR_RATING = "STAR_RATING",
|
|
2710
|
+
/** Outlined boxes with decorative quote glyphs at the top-left and bottom-right corners. */
|
|
2711
|
+
QUOTE_BOXES = "QUOTE_BOXES"
|
|
2689
2712
|
}
|
|
2690
2713
|
/** @enumType */
|
|
2691
|
-
type SmartBlockDataTypeWithLiterals = SmartBlockDataType | 'SOLID_BOXES' | 'NUMBERED_BOXES' | 'STATS' | 'CIRCLE_STATS' | 'SOLID_BOXES_ALTERNATING' | 'SOLID_JOINED_BOXES' | 'SIDE_LINE_TEXT' | 'TOP_LINE_TEXT' | 'OUTLINE_BOXES_WITH_TOP_CIRCLE' | 'BIG_BULLETS' | 'SMALL_BULLETS' | 'ARROW_BULLETS' | 'PROCESS_STEPS' | 'BAR_STATS';
|
|
2714
|
+
type SmartBlockDataTypeWithLiterals = SmartBlockDataType | 'SOLID_BOXES' | 'NUMBERED_BOXES' | 'STATS' | 'CIRCLE_STATS' | 'SOLID_BOXES_ALTERNATING' | 'SOLID_JOINED_BOXES' | 'SIDE_LINE_TEXT' | 'TOP_LINE_TEXT' | 'OUTLINE_BOXES_WITH_TOP_CIRCLE' | 'BIG_BULLETS' | 'SMALL_BULLETS' | 'ARROW_BULLETS' | 'PROCESS_STEPS' | 'BAR_STATS' | 'TIMELINE' | 'MINIMAL_TIMELINE' | 'PILLS' | 'STAR_RATING' | 'QUOTE_BOXES';
|
|
2692
2715
|
/** Column size controlling how many cells appear per row. */
|
|
2693
2716
|
declare enum ColumnSize {
|
|
2694
2717
|
/** Up to 4 cells in a row. */
|
|
@@ -2708,7 +2731,10 @@ interface SmartBlockCellData {
|
|
|
2708
2731
|
label?: string | null;
|
|
2709
2732
|
/** Shape file details. */
|
|
2710
2733
|
shape?: Media;
|
|
2711
|
-
/**
|
|
2734
|
+
/**
|
|
2735
|
+
* Border color of the cell.
|
|
2736
|
+
* @maxLength 19
|
|
2737
|
+
*/
|
|
2712
2738
|
borderColor?: string | null;
|
|
2713
2739
|
/** Border width in pixels. */
|
|
2714
2740
|
borderWidth?: number | null;
|
|
@@ -2716,11 +2742,20 @@ interface SmartBlockCellData {
|
|
|
2716
2742
|
borderRadius?: number | null;
|
|
2717
2743
|
/** The type of the parent smart block (must match parent). */
|
|
2718
2744
|
type?: SmartBlockDataTypeWithLiterals;
|
|
2719
|
-
/**
|
|
2745
|
+
/**
|
|
2746
|
+
* Accent color for non-background variants (e.g., line, bullet, label color).
|
|
2747
|
+
* @maxLength 19
|
|
2748
|
+
*/
|
|
2720
2749
|
accentColor?: string | null;
|
|
2721
|
-
/**
|
|
2750
|
+
/**
|
|
2751
|
+
* Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES).
|
|
2752
|
+
* @maxLength 19
|
|
2753
|
+
*/
|
|
2722
2754
|
backgroundColor?: string | null;
|
|
2723
|
-
/**
|
|
2755
|
+
/**
|
|
2756
|
+
* Shape fill color as a hexadecimal value.
|
|
2757
|
+
* @maxLength 19
|
|
2758
|
+
*/
|
|
2724
2759
|
shapeColor?: string | null;
|
|
2725
2760
|
}
|
|
2726
2761
|
interface Metadata {
|
|
@@ -3284,10 +3319,10 @@ type ContentQuery = {
|
|
|
3284
3319
|
};
|
|
3285
3320
|
declare const utils: {
|
|
3286
3321
|
query: {
|
|
3287
|
-
QueryBuilder: () => _wix_sdk_types.QueryBuilder<Content, ContentQuerySpec, ContentQuery>;
|
|
3288
|
-
Filter: _wix_sdk_types.FilterFactory<Content, ContentQuerySpec>;
|
|
3322
|
+
QueryBuilder: () => _wix_sdk_types.QueryBuilder<Content, ContentQuerySpec, ContentQuery>;
|
|
3323
|
+
Filter: _wix_sdk_types.FilterFactory<Content, ContentQuerySpec>;
|
|
3289
3324
|
Sort: _wix_sdk_types.SortFactory<ContentQuerySpec>;
|
|
3290
3325
|
};
|
|
3291
3326
|
};
|
|
3292
3327
|
|
|
3293
|
-
export { type AccountInfo, type ActionEvent, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundBackgroundTypeOptionsOneOf, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulletedListData, type Button, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, ButtonSize, type ButtonSizeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, type CellStyle, type Center, type CodeBlockData, type CollapsibleListData, type ColorData, type ColorOptions, type ColorSwatch, type ColorSwatchColorTypeOptionsOneOf, ColorSwatchType, type ColorSwatchTypeWithLiterals, type Colors, ColumnSize, type ColumnSizeWithLiterals, type CommonQueryWithEntityContext, type Content, type ContentQuery, type ContentQuerySpec, type ContentsQueryBuilder, type ContentsQueryResult, type CreateContentRequest, type CreateContentResponse, Crop, type CropWithLiterals, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type FileData, type FileSource, type FileSourceDataOneOf, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetContentRequest, type GetContentResponse, type GetLatestContentByPageIdRequest, type GetLatestContentByPageIdResponse, type Gradient, type GradientGradientTypeOptionsOneOf, type GradientStop, GradientType, type GradientTypeWithLiterals, Group, type GroupWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type Hover, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageBorder, type ImageData, type ImageDataStyles, type ImageDataStylesBorder, type ImageOptions, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScaling, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Item, type ItemDataOneOf, type ItemImage, type ItemStyle, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutDataImagePosition, type LayoutDataImagePositionWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, ListStyle, type ListStyleWithLiterals, type ListValue, type LockLatestContentByPageIdRequest, type LockLatestContentByPageIdResponse, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type Metadata, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataDesign, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, Position, type PositionWithLiterals, type PricingData, type QueryContentsRequest, type QueryContentsResponse, type Rel, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type Settings, type ShapeData, type ShapeDataStyles, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type Stop, type Styles, type StylesBackground, StylesBackgroundType, type StylesBackgroundTypeWithLiterals, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type SubmitContentOptions, type SubmitContentRequest, type SubmitContentResponse, type TableCellData, type TableData, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TocData, Type, type TypeWithLiterals, type Typography, type V1Gradient, V1GradientType, type V1GradientTypeWithLiterals, type V1TextStyle, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, getContent, getLatestContentByPageId, lockLatestContentByPageId, queryContents, submitContent, typedQueryContents, utils };
|
|
3328
|
+
export { type AccountInfo, type ActionEvent, Alignment, type AlignmentWithLiterals, type AnchorData, type AppEmbedData, type AppEmbedDataAppDataOneOf, AppType, type AppTypeWithLiterals, AspectRatio, type AspectRatioWithLiterals, type AudioData, type Backdrop, BackdropType, type BackdropTypeWithLiterals, type Background, type BackgroundBackgroundTypeOptionsOneOf, type BackgroundGradient, type BackgroundImage, BackgroundType, type BackgroundTypeWithLiterals, type Banner, BannerPosition, type BannerPositionWithLiterals, type BlockquoteData, type BookingData, type Border, type BorderColors, type BorderWidths, type BulletedListData, type Button, type ButtonData, ButtonDataType, type ButtonDataTypeWithLiterals, ButtonSize, type ButtonSizeWithLiterals, type ButtonStyles, type CaptionData, type CardData, type CardDataBackground, CardDataBackgroundType, type CardDataBackgroundTypeWithLiterals, type CardStyles, type CellStyle, type Center, type CodeBlockData, type CollapsibleListData, type ColorData, type ColorOptions, type ColorSwatch, type ColorSwatchColorTypeOptionsOneOf, ColorSwatchType, type ColorSwatchTypeWithLiterals, type Colors, ColumnSize, type ColumnSizeWithLiterals, type CommonQueryWithEntityContext, type Content, type ContentQuery, type ContentQuerySpec, type ContentsQueryBuilder, type ContentsQueryResult, type CreateContentRequest, type CreateContentResponse, Crop, type CropWithLiterals, type CursorPaging, type CursorPagingMetadata, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type Decoration, type DecorationDataOneOf, DecorationType, type DecorationTypeWithLiterals, type Design, DesignTarget, type DesignTargetWithLiterals, type Dimensions, Direction, type DirectionWithLiterals, type DividerData, DividerDataAlignment, type DividerDataAlignmentWithLiterals, type DocumentStyle, type DomainEvent, type DomainEventBodyOneOf, type EmbedData, type Empty, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventData, type FileData, type FileSource, type FileSourceDataOneOf, type FontFamilyData, type FontSizeData, FontType, type FontTypeWithLiterals, type GIF, type GIFData, GIFType, type GIFTypeWithLiterals, type GalleryData, type GalleryOptions, type GalleryOptionsLayout, type GetContentRequest, type GetContentResponse, type GetLatestContentByPageIdRequest, type GetLatestContentByPageIdResponse, type Gradient, type GradientGradientTypeOptionsOneOf, type GradientStop, GradientType, type GradientTypeWithLiterals, Group, type GroupWithLiterals, type HTMLData, type HTMLDataDataOneOf, type HeadingData, type Height, type Hover, type IdentificationData, type IdentificationDataIdOneOf, type Image, type ImageBorder, type ImageData, type ImageDataStyles, type ImageDataStylesBorder, type ImageOptions, ImagePosition, ImagePositionPosition, type ImagePositionPositionWithLiterals, type ImagePositionWithLiterals, ImageScaling, ImageScalingScaling, type ImageScalingScalingWithLiterals, type ImageScalingWithLiterals, type ImageStyles, Indentation, type IndentationWithLiterals, InitialExpandedItems, type InitialExpandedItemsWithLiterals, type Item, type ItemDataOneOf, type ItemImage, type ItemStyle, Layout, type LayoutCellData, type LayoutData, type LayoutDataBackground, type LayoutDataBackgroundImage, LayoutDataBackgroundType, type LayoutDataBackgroundTypeWithLiterals, LayoutDataImagePosition, type LayoutDataImagePositionWithLiterals, LayoutType, type LayoutTypeWithLiterals, type LayoutWithLiterals, LineStyle, type LineStyleWithLiterals, type Link, type LinkData, type LinkDataOneOf, type LinkPreviewData, type LinkPreviewDataStyles, ListStyle, type ListStyleWithLiterals, type ListValue, type LockLatestContentByPageIdRequest, type LockLatestContentByPageIdResponse, type MapData, type MapSettings, MapType, type MapTypeWithLiterals, type Media, type MentionData, type MessageEnvelope, type Metadata, type Node, type NodeDataOneOf, type NodeStyle, NodeType, type NodeTypeWithLiterals, NullValue, type NullValueWithLiterals, type Oembed, type Option, type OptionDesign, type OptionLayout, type OrderedListData, Orientation, type OrientationWithLiterals, Origin, type OriginWithLiterals, type PDFSettings, type ParagraphData, type Permissions, Placement, type PlacementWithLiterals, type PlaybackOptions, type PluginContainerData, PluginContainerDataAlignment, type PluginContainerDataAlignmentWithLiterals, type PluginContainerDataWidth, type PluginContainerDataWidthDataOneOf, type Poll, type PollData, type PollDataDesign, type PollDataLayout, type PollDesign, type PollDesignBackground, type PollDesignBackgroundBackgroundOneOf, PollDesignBackgroundType, type PollDesignBackgroundTypeWithLiterals, type PollLayout, PollLayoutDirection, type PollLayoutDirectionWithLiterals, PollLayoutType, type PollLayoutTypeWithLiterals, Position, type PositionWithLiterals, type PricingData, type QueryContentsRequest, type QueryContentsResponse, type Rel, Resizing, type ResizingWithLiterals, ResponsivenessBehaviour, type ResponsivenessBehaviourWithLiterals, type RestoreInfo, type RibbonStyles, type RichContent, Scaling, type ScalingWithLiterals, type Settings, type ShapeData, type ShapeDataStyles, type SmartBlockCellData, type SmartBlockData, SmartBlockDataType, type SmartBlockDataTypeWithLiterals, SortOrder, type SortOrderWithLiterals, type Sorting, Source, type SourceWithLiterals, type Spoiler, type SpoilerData, type Stop, type Styles, type StylesBackground, StylesBackgroundType, type StylesBackgroundTypeWithLiterals, type StylesBorder, StylesPosition, type StylesPositionWithLiterals, type SubmitContentOptions, type SubmitContentRequest, type SubmitContentResponse, type TableCellData, type TableData, Target, type TargetWithLiterals, TextAlignment, type TextAlignmentWithLiterals, type TextData, type TextNodeStyle, type TextStyle, type Thumbnails, ThumbnailsAlignment, type ThumbnailsAlignmentWithLiterals, type TocData, Type, type TypeWithLiterals, type Typography, type V1Gradient, V1GradientType, type V1GradientTypeWithLiterals, type V1TextStyle, VerticalAlignment, VerticalAlignmentAlignment, type VerticalAlignmentAlignmentWithLiterals, type VerticalAlignmentWithLiterals, type Video, type VideoData, ViewMode, type ViewModeWithLiterals, ViewRole, type ViewRoleWithLiterals, VoteRole, type VoteRoleWithLiterals, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, Width, WidthType, type WidthTypeWithLiterals, type WidthWithLiterals, getContent, getLatestContentByPageId, lockLatestContentByPageId, queryContents, submitContent, typedQueryContents, utils };
|
|
@@ -1430,6 +1430,11 @@ var Origin = /* @__PURE__ */ ((Origin2) => {
|
|
|
1430
1430
|
Origin2["LAYOUT"] = "LAYOUT";
|
|
1431
1431
|
return Origin2;
|
|
1432
1432
|
})(Origin || {});
|
|
1433
|
+
var BannerPosition = /* @__PURE__ */ ((BannerPosition2) => {
|
|
1434
|
+
BannerPosition2["TOP"] = "TOP";
|
|
1435
|
+
BannerPosition2["BOTTOM"] = "BOTTOM";
|
|
1436
|
+
return BannerPosition2;
|
|
1437
|
+
})(BannerPosition || {});
|
|
1433
1438
|
var LayoutDataBackgroundType = /* @__PURE__ */ ((LayoutDataBackgroundType2) => {
|
|
1434
1439
|
LayoutDataBackgroundType2["COLOR"] = "COLOR";
|
|
1435
1440
|
LayoutDataBackgroundType2["GRADIENT"] = "GRADIENT";
|
|
@@ -1509,6 +1514,11 @@ var SmartBlockDataType = /* @__PURE__ */ ((SmartBlockDataType2) => {
|
|
|
1509
1514
|
SmartBlockDataType2["ARROW_BULLETS"] = "ARROW_BULLETS";
|
|
1510
1515
|
SmartBlockDataType2["PROCESS_STEPS"] = "PROCESS_STEPS";
|
|
1511
1516
|
SmartBlockDataType2["BAR_STATS"] = "BAR_STATS";
|
|
1517
|
+
SmartBlockDataType2["TIMELINE"] = "TIMELINE";
|
|
1518
|
+
SmartBlockDataType2["MINIMAL_TIMELINE"] = "MINIMAL_TIMELINE";
|
|
1519
|
+
SmartBlockDataType2["PILLS"] = "PILLS";
|
|
1520
|
+
SmartBlockDataType2["STAR_RATING"] = "STAR_RATING";
|
|
1521
|
+
SmartBlockDataType2["QUOTE_BOXES"] = "QUOTE_BOXES";
|
|
1512
1522
|
return SmartBlockDataType2;
|
|
1513
1523
|
})(SmartBlockDataType || {});
|
|
1514
1524
|
var ColumnSize = /* @__PURE__ */ ((ColumnSize2) => {
|
|
@@ -1729,6 +1739,7 @@ export {
|
|
|
1729
1739
|
AspectRatio,
|
|
1730
1740
|
BackdropType,
|
|
1731
1741
|
BackgroundType,
|
|
1742
|
+
BannerPosition,
|
|
1732
1743
|
ButtonDataType,
|
|
1733
1744
|
ButtonSize,
|
|
1734
1745
|
CardDataBackgroundType,
|