@wix/auto_sdk_events_forms 1.0.84 → 1.0.85
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 +1 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +65 -50
- package/build/cjs/index.typings.js +1 -0
- 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 +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +65 -50
- package/build/es/index.typings.mjs +1 -0
- 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 +1 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +72 -51
- package/build/internal/cjs/index.typings.js +1 -0
- 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 +1 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +72 -51
- package/build/internal/es/index.typings.mjs +1 -0
- 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
|
@@ -951,7 +951,13 @@ declare enum EventStatus {
|
|
|
951
951
|
/** Event has ended */
|
|
952
952
|
ENDED = "ENDED",
|
|
953
953
|
/** Event was canceled */
|
|
954
|
-
CANCELED = "CANCELED"
|
|
954
|
+
CANCELED = "CANCELED",
|
|
955
|
+
/**
|
|
956
|
+
* Event is not public and needs to be published
|
|
957
|
+
* @documentationMaturity preview
|
|
958
|
+
* @internal
|
|
959
|
+
*/
|
|
960
|
+
DRAFT = "DRAFT"
|
|
955
961
|
}
|
|
956
962
|
/** @enumType */
|
|
957
963
|
type EventStatusWithLiterals = EventStatus | 'SCHEDULED' | 'STARTED' | 'ENDED' | 'CANCELED';
|
|
@@ -1745,7 +1751,7 @@ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
|
|
|
1745
1751
|
interface Stop {
|
|
1746
1752
|
/**
|
|
1747
1753
|
* Stop color as hex value.
|
|
1748
|
-
* @
|
|
1754
|
+
* @maxLength 19
|
|
1749
1755
|
*/
|
|
1750
1756
|
color?: string | null;
|
|
1751
1757
|
/** Stop position (0-1). */
|
|
@@ -1786,7 +1792,7 @@ interface Background {
|
|
|
1786
1792
|
type?: BackgroundTypeWithLiterals;
|
|
1787
1793
|
/**
|
|
1788
1794
|
* Background color as a hexadecimal value.
|
|
1789
|
-
* @
|
|
1795
|
+
* @maxLength 19
|
|
1790
1796
|
*/
|
|
1791
1797
|
color?: string | null;
|
|
1792
1798
|
/** Gradient configuration. */
|
|
@@ -1893,33 +1899,33 @@ interface Styles {
|
|
|
1893
1899
|
borderRadius?: number | null;
|
|
1894
1900
|
/**
|
|
1895
1901
|
* Border color as a hexadecimal value.
|
|
1896
|
-
* @
|
|
1902
|
+
* @maxLength 19
|
|
1897
1903
|
*/
|
|
1898
1904
|
borderColor?: string | null;
|
|
1899
1905
|
/**
|
|
1900
1906
|
* Border color as a hexadecimal value (hover state).
|
|
1901
|
-
* @
|
|
1907
|
+
* @maxLength 19
|
|
1902
1908
|
*/
|
|
1903
1909
|
borderColorHover?: string | null;
|
|
1904
1910
|
/**
|
|
1905
1911
|
* Text color as a hexadecimal value.
|
|
1906
|
-
* @
|
|
1912
|
+
* @maxLength 19
|
|
1907
1913
|
*/
|
|
1908
1914
|
textColor?: string | null;
|
|
1909
1915
|
/**
|
|
1910
1916
|
* Text color as a hexadecimal value (hover state).
|
|
1911
|
-
* @
|
|
1917
|
+
* @maxLength 19
|
|
1912
1918
|
*/
|
|
1913
1919
|
textColorHover?: string | null;
|
|
1914
1920
|
/**
|
|
1915
1921
|
* Deprecated: Use `background` instead.
|
|
1916
|
-
* @
|
|
1922
|
+
* @maxLength 19
|
|
1917
1923
|
* @deprecated
|
|
1918
1924
|
*/
|
|
1919
1925
|
backgroundColor?: string | null;
|
|
1920
1926
|
/**
|
|
1921
1927
|
* Deprecated: Use `backgroundHover` instead.
|
|
1922
|
-
* @
|
|
1928
|
+
* @maxLength 19
|
|
1923
1929
|
* @deprecated
|
|
1924
1930
|
*/
|
|
1925
1931
|
backgroundColorHover?: string | null;
|
|
@@ -2371,7 +2377,7 @@ interface StylesBorder {
|
|
|
2371
2377
|
width?: number | null;
|
|
2372
2378
|
/**
|
|
2373
2379
|
* Border color as a hexadecimal value.
|
|
2374
|
-
* @
|
|
2380
|
+
* @maxLength 19
|
|
2375
2381
|
*/
|
|
2376
2382
|
color?: string | null;
|
|
2377
2383
|
/** Border radius in pixels. */
|
|
@@ -2412,22 +2418,22 @@ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HI
|
|
|
2412
2418
|
interface LinkPreviewDataStyles {
|
|
2413
2419
|
/**
|
|
2414
2420
|
* Background color as a hexadecimal value.
|
|
2415
|
-
* @
|
|
2421
|
+
* @maxLength 19
|
|
2416
2422
|
*/
|
|
2417
2423
|
backgroundColor?: string | null;
|
|
2418
2424
|
/**
|
|
2419
2425
|
* Title color as a hexadecimal value.
|
|
2420
|
-
* @
|
|
2426
|
+
* @maxLength 19
|
|
2421
2427
|
*/
|
|
2422
2428
|
titleColor?: string | null;
|
|
2423
2429
|
/**
|
|
2424
2430
|
* Subtitle color as a hexadecimal value.
|
|
2425
|
-
* @
|
|
2431
|
+
* @maxLength 19
|
|
2426
2432
|
*/
|
|
2427
2433
|
subtitleColor?: string | null;
|
|
2428
2434
|
/**
|
|
2429
2435
|
* Link color as a hexadecimal value.
|
|
2430
|
-
* @
|
|
2436
|
+
* @maxLength 19
|
|
2431
2437
|
*/
|
|
2432
2438
|
linkColor?: string | null;
|
|
2433
2439
|
/** Border width in pixels. */
|
|
@@ -2436,7 +2442,7 @@ interface LinkPreviewDataStyles {
|
|
|
2436
2442
|
borderRadius?: number | null;
|
|
2437
2443
|
/**
|
|
2438
2444
|
* Border color as a hexadecimal value.
|
|
2439
|
-
* @
|
|
2445
|
+
* @maxLength 19
|
|
2440
2446
|
*/
|
|
2441
2447
|
borderColor?: string | null;
|
|
2442
2448
|
/** Position of thumbnail. Defaults to `START`. */
|
|
@@ -2587,19 +2593,19 @@ interface BackgroundGradient {
|
|
|
2587
2593
|
angle?: number | null;
|
|
2588
2594
|
/**
|
|
2589
2595
|
* The start color as a hexademical value.
|
|
2590
|
-
* @
|
|
2596
|
+
* @maxLength 19
|
|
2591
2597
|
*/
|
|
2592
2598
|
startColor?: string | null;
|
|
2593
2599
|
/**
|
|
2594
2600
|
* The end color as a hexademical value.
|
|
2595
|
-
* @
|
|
2601
|
+
* @maxLength 19
|
|
2596
2602
|
*/
|
|
2597
2603
|
lastColor?: string | null;
|
|
2598
2604
|
}
|
|
2599
2605
|
interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
2600
2606
|
/**
|
|
2601
2607
|
* The background color as a hexademical value.
|
|
2602
|
-
* @
|
|
2608
|
+
* @maxLength 19
|
|
2603
2609
|
*/
|
|
2604
2610
|
color?: string | null;
|
|
2605
2611
|
/** An image to use for the background. */
|
|
@@ -2613,7 +2619,7 @@ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
|
|
|
2613
2619
|
interface PollDesignBackgroundBackgroundOneOf {
|
|
2614
2620
|
/**
|
|
2615
2621
|
* The background color as a hexademical value.
|
|
2616
|
-
* @
|
|
2622
|
+
* @maxLength 19
|
|
2617
2623
|
*/
|
|
2618
2624
|
color?: string | null;
|
|
2619
2625
|
/** An image to use for the background. */
|
|
@@ -2927,32 +2933,32 @@ interface ButtonStyles {
|
|
|
2927
2933
|
borderRadius?: number | null;
|
|
2928
2934
|
/**
|
|
2929
2935
|
* Border color as a hexadecimal value.
|
|
2930
|
-
* @
|
|
2936
|
+
* @maxLength 19
|
|
2931
2937
|
*/
|
|
2932
2938
|
borderColor?: string | null;
|
|
2933
2939
|
/**
|
|
2934
2940
|
* Text color as a hexadecimal value.
|
|
2935
|
-
* @
|
|
2941
|
+
* @maxLength 19
|
|
2936
2942
|
*/
|
|
2937
2943
|
textColor?: string | null;
|
|
2938
2944
|
/**
|
|
2939
2945
|
* Background color as a hexadecimal value.
|
|
2940
|
-
* @
|
|
2946
|
+
* @maxLength 19
|
|
2941
2947
|
*/
|
|
2942
2948
|
backgroundColor?: string | null;
|
|
2943
2949
|
/**
|
|
2944
2950
|
* Border color as a hexadecimal value (hover state).
|
|
2945
|
-
* @
|
|
2951
|
+
* @maxLength 19
|
|
2946
2952
|
*/
|
|
2947
2953
|
borderColorHover?: string | null;
|
|
2948
2954
|
/**
|
|
2949
2955
|
* Text color as a hexadecimal value (hover state).
|
|
2950
|
-
* @
|
|
2956
|
+
* @maxLength 19
|
|
2951
2957
|
*/
|
|
2952
2958
|
textColorHover?: string | null;
|
|
2953
2959
|
/**
|
|
2954
2960
|
* Background color as a hexadecimal value (hover state).
|
|
2955
|
-
* @
|
|
2961
|
+
* @maxLength 19
|
|
2956
2962
|
*/
|
|
2957
2963
|
backgroundColorHover?: string | null;
|
|
2958
2964
|
/** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
|
|
@@ -2969,7 +2975,7 @@ interface ImageStyles {
|
|
|
2969
2975
|
resizing?: ResizingWithLiterals;
|
|
2970
2976
|
/**
|
|
2971
2977
|
* Image border color as a hexadecimal value.
|
|
2972
|
-
* @
|
|
2978
|
+
* @maxLength 19
|
|
2973
2979
|
*/
|
|
2974
2980
|
borderColor?: string | null;
|
|
2975
2981
|
/** Image border width in pixels. */
|
|
@@ -2982,17 +2988,17 @@ interface RibbonStyles {
|
|
|
2982
2988
|
ribbonText?: string | null;
|
|
2983
2989
|
/**
|
|
2984
2990
|
* Ribbon background color as a hexadecimal value.
|
|
2985
|
-
* @
|
|
2991
|
+
* @maxLength 19
|
|
2986
2992
|
*/
|
|
2987
2993
|
backgroundColor?: string | null;
|
|
2988
2994
|
/**
|
|
2989
2995
|
* Ribbon text color as a hexadecimal value.
|
|
2990
|
-
* @
|
|
2996
|
+
* @maxLength 19
|
|
2991
2997
|
*/
|
|
2992
2998
|
textColor?: string | null;
|
|
2993
2999
|
/**
|
|
2994
3000
|
* Ribbon border color as a hexadecimal value.
|
|
2995
|
-
* @
|
|
3001
|
+
* @maxLength 19
|
|
2996
3002
|
*/
|
|
2997
3003
|
borderColor?: string | null;
|
|
2998
3004
|
/** Ribbon border width in pixels. */
|
|
@@ -3005,12 +3011,12 @@ interface RibbonStyles {
|
|
|
3005
3011
|
interface CardStyles {
|
|
3006
3012
|
/**
|
|
3007
3013
|
* Card background color as a hexadecimal value.
|
|
3008
|
-
* @
|
|
3014
|
+
* @maxLength 19
|
|
3009
3015
|
*/
|
|
3010
3016
|
backgroundColor?: string | null;
|
|
3011
3017
|
/**
|
|
3012
3018
|
* Card border color as a hexadecimal value.
|
|
3013
|
-
* @
|
|
3019
|
+
* @maxLength 19
|
|
3014
3020
|
*/
|
|
3015
3021
|
borderColor?: string | null;
|
|
3016
3022
|
/** Card border width in pixels. */
|
|
@@ -3025,12 +3031,12 @@ interface CardStyles {
|
|
|
3025
3031
|
titlePriceLayout?: LayoutWithLiterals;
|
|
3026
3032
|
/**
|
|
3027
3033
|
* Title text color as a hexadecimal value.
|
|
3028
|
-
* @
|
|
3034
|
+
* @maxLength 19
|
|
3029
3035
|
*/
|
|
3030
3036
|
titleColor?: string | null;
|
|
3031
3037
|
/**
|
|
3032
3038
|
* Text color as a hexadecimal value.
|
|
3033
|
-
* @
|
|
3039
|
+
* @maxLength 19
|
|
3034
3040
|
*/
|
|
3035
3041
|
textColor?: string | null;
|
|
3036
3042
|
}
|
|
@@ -3212,29 +3218,29 @@ interface CellStyle {
|
|
|
3212
3218
|
verticalAlignment?: VerticalAlignmentWithLiterals;
|
|
3213
3219
|
/**
|
|
3214
3220
|
* Cell background color as a hexadecimal value.
|
|
3215
|
-
* @
|
|
3221
|
+
* @maxLength 19
|
|
3216
3222
|
*/
|
|
3217
3223
|
backgroundColor?: string | null;
|
|
3218
3224
|
}
|
|
3219
3225
|
interface BorderColors {
|
|
3220
3226
|
/**
|
|
3221
3227
|
* Left border color as a hexadecimal value.
|
|
3222
|
-
* @
|
|
3228
|
+
* @maxLength 19
|
|
3223
3229
|
*/
|
|
3224
3230
|
left?: string | null;
|
|
3225
3231
|
/**
|
|
3226
3232
|
* Right border color as a hexadecimal value.
|
|
3227
|
-
* @
|
|
3233
|
+
* @maxLength 19
|
|
3228
3234
|
*/
|
|
3229
3235
|
right?: string | null;
|
|
3230
3236
|
/**
|
|
3231
3237
|
* Top border color as a hexadecimal value.
|
|
3232
|
-
* @
|
|
3238
|
+
* @maxLength 19
|
|
3233
3239
|
*/
|
|
3234
3240
|
top?: string | null;
|
|
3235
3241
|
/**
|
|
3236
3242
|
* Bottom border color as a hexadecimal value.
|
|
3237
|
-
* @
|
|
3243
|
+
* @maxLength 19
|
|
3238
3244
|
*/
|
|
3239
3245
|
bottom?: string | null;
|
|
3240
3246
|
}
|
|
@@ -3309,7 +3315,7 @@ interface CaptionData {
|
|
|
3309
3315
|
interface LayoutData {
|
|
3310
3316
|
/**
|
|
3311
3317
|
* Deprecated: Use `background` instead.
|
|
3312
|
-
* @
|
|
3318
|
+
* @maxLength 19
|
|
3313
3319
|
* @deprecated
|
|
3314
3320
|
*/
|
|
3315
3321
|
backgroundColor?: string | null;
|
|
@@ -3317,7 +3323,7 @@ interface LayoutData {
|
|
|
3317
3323
|
backgroundImage?: LayoutDataBackgroundImage;
|
|
3318
3324
|
/**
|
|
3319
3325
|
* Border color as a hexadecimal value.
|
|
3320
|
-
* @
|
|
3326
|
+
* @maxLength 19
|
|
3321
3327
|
*/
|
|
3322
3328
|
borderColor?: string | null;
|
|
3323
3329
|
/** Border width in pixels. */
|
|
@@ -3326,7 +3332,7 @@ interface LayoutData {
|
|
|
3326
3332
|
borderRadius?: number | null;
|
|
3327
3333
|
/**
|
|
3328
3334
|
* Deprecated: Use `backdrop` instead.
|
|
3329
|
-
* @
|
|
3335
|
+
* @maxLength 19
|
|
3330
3336
|
* @deprecated
|
|
3331
3337
|
*/
|
|
3332
3338
|
backdropColor?: string | null;
|
|
@@ -3464,7 +3470,7 @@ interface LayoutDataBackground {
|
|
|
3464
3470
|
type?: LayoutDataBackgroundTypeWithLiterals;
|
|
3465
3471
|
/**
|
|
3466
3472
|
* Background color as a hexadecimal value.
|
|
3467
|
-
* @
|
|
3473
|
+
* @maxLength 19
|
|
3468
3474
|
*/
|
|
3469
3475
|
color?: string | null;
|
|
3470
3476
|
/** Gradient configuration. */
|
|
@@ -3476,7 +3482,7 @@ interface Backdrop {
|
|
|
3476
3482
|
type?: BackdropTypeWithLiterals;
|
|
3477
3483
|
/**
|
|
3478
3484
|
* Backdrop color as a hexadecimal value.
|
|
3479
|
-
* @
|
|
3485
|
+
* @maxLength 19
|
|
3480
3486
|
*/
|
|
3481
3487
|
color?: string | null;
|
|
3482
3488
|
/** Gradient configuration. */
|
|
@@ -3497,7 +3503,7 @@ interface ShapeData {
|
|
|
3497
3503
|
interface ShapeDataStyles {
|
|
3498
3504
|
/**
|
|
3499
3505
|
* Shape fill color as a hexadecimal value.
|
|
3500
|
-
* @
|
|
3506
|
+
* @maxLength 19
|
|
3501
3507
|
*/
|
|
3502
3508
|
color?: string | null;
|
|
3503
3509
|
/** Map of original color keys to their new color values. */
|
|
@@ -3556,7 +3562,7 @@ interface CardDataBackground {
|
|
|
3556
3562
|
type?: CardDataBackgroundTypeWithLiterals;
|
|
3557
3563
|
/**
|
|
3558
3564
|
* Background color as a hexadecimal value.
|
|
3559
|
-
* @
|
|
3565
|
+
* @maxLength 19
|
|
3560
3566
|
*/
|
|
3561
3567
|
color?: string | null;
|
|
3562
3568
|
/** Gradient configuration. */
|
|
@@ -3583,7 +3589,7 @@ interface TocData {
|
|
|
3583
3589
|
itemSpacing?: number | null;
|
|
3584
3590
|
/**
|
|
3585
3591
|
* Optional override for the text color.
|
|
3586
|
-
* @
|
|
3592
|
+
* @maxLength 19
|
|
3587
3593
|
*/
|
|
3588
3594
|
color?: string | null;
|
|
3589
3595
|
/** Indentation style. Default: NESTED. */
|
|
@@ -3625,7 +3631,10 @@ interface SmartBlockData {
|
|
|
3625
3631
|
orientation?: string | null;
|
|
3626
3632
|
/** Column size controlling cells per row. */
|
|
3627
3633
|
columnSize?: ColumnSizeWithLiterals;
|
|
3628
|
-
/**
|
|
3634
|
+
/**
|
|
3635
|
+
* Border color (for SOLID_JOINED_BOXES variant).
|
|
3636
|
+
* @maxLength 19
|
|
3637
|
+
*/
|
|
3629
3638
|
borderColor?: string | null;
|
|
3630
3639
|
/** Border width in pixels (for SOLID_JOINED_BOXES variant). */
|
|
3631
3640
|
borderWidth?: number | null;
|
|
@@ -3684,7 +3693,10 @@ interface SmartBlockCellData {
|
|
|
3684
3693
|
label?: string | null;
|
|
3685
3694
|
/** Shape file details. */
|
|
3686
3695
|
shape?: Media;
|
|
3687
|
-
/**
|
|
3696
|
+
/**
|
|
3697
|
+
* Border color of the cell.
|
|
3698
|
+
* @maxLength 19
|
|
3699
|
+
*/
|
|
3688
3700
|
borderColor?: string | null;
|
|
3689
3701
|
/** Border width in pixels. */
|
|
3690
3702
|
borderWidth?: number | null;
|
|
@@ -3692,11 +3704,20 @@ interface SmartBlockCellData {
|
|
|
3692
3704
|
borderRadius?: number | null;
|
|
3693
3705
|
/** The type of the parent smart block (must match parent). */
|
|
3694
3706
|
type?: SmartBlockDataTypeWithLiterals;
|
|
3695
|
-
/**
|
|
3707
|
+
/**
|
|
3708
|
+
* Accent color for non-background variants (e.g., line, bullet, label color).
|
|
3709
|
+
* @maxLength 19
|
|
3710
|
+
*/
|
|
3696
3711
|
accentColor?: string | null;
|
|
3697
|
-
/**
|
|
3712
|
+
/**
|
|
3713
|
+
* Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES).
|
|
3714
|
+
* @maxLength 19
|
|
3715
|
+
*/
|
|
3698
3716
|
backgroundColor?: string | null;
|
|
3699
|
-
/**
|
|
3717
|
+
/**
|
|
3718
|
+
* Shape fill color as a hexadecimal value.
|
|
3719
|
+
* @maxLength 19
|
|
3720
|
+
*/
|
|
3700
3721
|
shapeColor?: string | null;
|
|
3701
3722
|
}
|
|
3702
3723
|
interface Metadata {
|
|
@@ -770,6 +770,7 @@ var EventStatus = /* @__PURE__ */ ((EventStatus2) => {
|
|
|
770
770
|
EventStatus2["STARTED"] = "STARTED";
|
|
771
771
|
EventStatus2["ENDED"] = "ENDED";
|
|
772
772
|
EventStatus2["CANCELED"] = "CANCELED";
|
|
773
|
+
EventStatus2["DRAFT"] = "DRAFT";
|
|
773
774
|
return EventStatus2;
|
|
774
775
|
})(EventStatus || {});
|
|
775
776
|
var EventType = /* @__PURE__ */ ((EventType2) => {
|