@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.
@@ -1762,7 +1762,7 @@ type GradientTypeWithLiterals = GradientType | 'LINEAR' | 'RADIAL';
1762
1762
  interface Stop {
1763
1763
  /**
1764
1764
  * Stop color as hex value.
1765
- * @format COLOR_HEX
1765
+ * @maxLength 19
1766
1766
  */
1767
1767
  color?: string | null;
1768
1768
  /** Stop position (0-1). */
@@ -1803,7 +1803,7 @@ interface Background {
1803
1803
  type?: BackgroundTypeWithLiterals;
1804
1804
  /**
1805
1805
  * Background color as a hexadecimal value.
1806
- * @format COLOR_HEX
1806
+ * @maxLength 19
1807
1807
  */
1808
1808
  color?: string | null;
1809
1809
  /** Gradient configuration. */
@@ -1910,33 +1910,33 @@ interface Styles {
1910
1910
  borderRadius?: number | null;
1911
1911
  /**
1912
1912
  * Border color as a hexadecimal value.
1913
- * @format COLOR_HEX
1913
+ * @maxLength 19
1914
1914
  */
1915
1915
  borderColor?: string | null;
1916
1916
  /**
1917
1917
  * Border color as a hexadecimal value (hover state).
1918
- * @format COLOR_HEX
1918
+ * @maxLength 19
1919
1919
  */
1920
1920
  borderColorHover?: string | null;
1921
1921
  /**
1922
1922
  * Text color as a hexadecimal value.
1923
- * @format COLOR_HEX
1923
+ * @maxLength 19
1924
1924
  */
1925
1925
  textColor?: string | null;
1926
1926
  /**
1927
1927
  * Text color as a hexadecimal value (hover state).
1928
- * @format COLOR_HEX
1928
+ * @maxLength 19
1929
1929
  */
1930
1930
  textColorHover?: string | null;
1931
1931
  /**
1932
1932
  * Deprecated: Use `background` instead.
1933
- * @format COLOR_HEX
1933
+ * @maxLength 19
1934
1934
  * @deprecated
1935
1935
  */
1936
1936
  backgroundColor?: string | null;
1937
1937
  /**
1938
1938
  * Deprecated: Use `backgroundHover` instead.
1939
- * @format COLOR_HEX
1939
+ * @maxLength 19
1940
1940
  * @deprecated
1941
1941
  */
1942
1942
  backgroundColorHover?: string | null;
@@ -2388,7 +2388,7 @@ interface StylesBorder {
2388
2388
  width?: number | null;
2389
2389
  /**
2390
2390
  * Border color as a hexadecimal value.
2391
- * @format COLOR_HEX
2391
+ * @maxLength 19
2392
2392
  */
2393
2393
  color?: string | null;
2394
2394
  /** Border radius in pixels. */
@@ -2429,22 +2429,22 @@ type StylesPositionWithLiterals = StylesPosition | 'START' | 'END' | 'TOP' | 'HI
2429
2429
  interface LinkPreviewDataStyles {
2430
2430
  /**
2431
2431
  * Background color as a hexadecimal value.
2432
- * @format COLOR_HEX
2432
+ * @maxLength 19
2433
2433
  */
2434
2434
  backgroundColor?: string | null;
2435
2435
  /**
2436
2436
  * Title color as a hexadecimal value.
2437
- * @format COLOR_HEX
2437
+ * @maxLength 19
2438
2438
  */
2439
2439
  titleColor?: string | null;
2440
2440
  /**
2441
2441
  * Subtitle color as a hexadecimal value.
2442
- * @format COLOR_HEX
2442
+ * @maxLength 19
2443
2443
  */
2444
2444
  subtitleColor?: string | null;
2445
2445
  /**
2446
2446
  * Link color as a hexadecimal value.
2447
- * @format COLOR_HEX
2447
+ * @maxLength 19
2448
2448
  */
2449
2449
  linkColor?: string | null;
2450
2450
  /** Border width in pixels. */
@@ -2453,7 +2453,7 @@ interface LinkPreviewDataStyles {
2453
2453
  borderRadius?: number | null;
2454
2454
  /**
2455
2455
  * Border color as a hexadecimal value.
2456
- * @format COLOR_HEX
2456
+ * @maxLength 19
2457
2457
  */
2458
2458
  borderColor?: string | null;
2459
2459
  /** Position of thumbnail. Defaults to `START`. */
@@ -2604,19 +2604,19 @@ interface BackgroundGradient {
2604
2604
  angle?: number | null;
2605
2605
  /**
2606
2606
  * The start color as a hexademical value.
2607
- * @format COLOR_HEX
2607
+ * @maxLength 19
2608
2608
  */
2609
2609
  startColor?: string | null;
2610
2610
  /**
2611
2611
  * The end color as a hexademical value.
2612
- * @format COLOR_HEX
2612
+ * @maxLength 19
2613
2613
  */
2614
2614
  lastColor?: string | null;
2615
2615
  }
2616
2616
  interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
2617
2617
  /**
2618
2618
  * The background color as a hexademical value.
2619
- * @format COLOR_HEX
2619
+ * @maxLength 19
2620
2620
  */
2621
2621
  color?: string | null;
2622
2622
  /** An image to use for the background. */
@@ -2630,7 +2630,7 @@ interface PollDesignBackground extends PollDesignBackgroundBackgroundOneOf {
2630
2630
  interface PollDesignBackgroundBackgroundOneOf {
2631
2631
  /**
2632
2632
  * The background color as a hexademical value.
2633
- * @format COLOR_HEX
2633
+ * @maxLength 19
2634
2634
  */
2635
2635
  color?: string | null;
2636
2636
  /** An image to use for the background. */
@@ -2944,32 +2944,32 @@ interface ButtonStyles {
2944
2944
  borderRadius?: number | null;
2945
2945
  /**
2946
2946
  * Border color as a hexadecimal value.
2947
- * @format COLOR_HEX
2947
+ * @maxLength 19
2948
2948
  */
2949
2949
  borderColor?: string | null;
2950
2950
  /**
2951
2951
  * Text color as a hexadecimal value.
2952
- * @format COLOR_HEX
2952
+ * @maxLength 19
2953
2953
  */
2954
2954
  textColor?: string | null;
2955
2955
  /**
2956
2956
  * Background color as a hexadecimal value.
2957
- * @format COLOR_HEX
2957
+ * @maxLength 19
2958
2958
  */
2959
2959
  backgroundColor?: string | null;
2960
2960
  /**
2961
2961
  * Border color as a hexadecimal value (hover state).
2962
- * @format COLOR_HEX
2962
+ * @maxLength 19
2963
2963
  */
2964
2964
  borderColorHover?: string | null;
2965
2965
  /**
2966
2966
  * Text color as a hexadecimal value (hover state).
2967
- * @format COLOR_HEX
2967
+ * @maxLength 19
2968
2968
  */
2969
2969
  textColorHover?: string | null;
2970
2970
  /**
2971
2971
  * Background color as a hexadecimal value (hover state).
2972
- * @format COLOR_HEX
2972
+ * @maxLength 19
2973
2973
  */
2974
2974
  backgroundColorHover?: string | null;
2975
2975
  /** Button size option, one of `SMALL`, `MEDIUM` or `LARGE`. Defaults to `MEDIUM`. */
@@ -2986,7 +2986,7 @@ interface ImageStyles {
2986
2986
  resizing?: ResizingWithLiterals;
2987
2987
  /**
2988
2988
  * Image border color as a hexadecimal value.
2989
- * @format COLOR_HEX
2989
+ * @maxLength 19
2990
2990
  */
2991
2991
  borderColor?: string | null;
2992
2992
  /** Image border width in pixels. */
@@ -2999,17 +2999,17 @@ interface RibbonStyles {
2999
2999
  ribbonText?: string | null;
3000
3000
  /**
3001
3001
  * Ribbon background color as a hexadecimal value.
3002
- * @format COLOR_HEX
3002
+ * @maxLength 19
3003
3003
  */
3004
3004
  backgroundColor?: string | null;
3005
3005
  /**
3006
3006
  * Ribbon text color as a hexadecimal value.
3007
- * @format COLOR_HEX
3007
+ * @maxLength 19
3008
3008
  */
3009
3009
  textColor?: string | null;
3010
3010
  /**
3011
3011
  * Ribbon border color as a hexadecimal value.
3012
- * @format COLOR_HEX
3012
+ * @maxLength 19
3013
3013
  */
3014
3014
  borderColor?: string | null;
3015
3015
  /** Ribbon border width in pixels. */
@@ -3022,12 +3022,12 @@ interface RibbonStyles {
3022
3022
  interface CardStyles {
3023
3023
  /**
3024
3024
  * Card background color as a hexadecimal value.
3025
- * @format COLOR_HEX
3025
+ * @maxLength 19
3026
3026
  */
3027
3027
  backgroundColor?: string | null;
3028
3028
  /**
3029
3029
  * Card border color as a hexadecimal value.
3030
- * @format COLOR_HEX
3030
+ * @maxLength 19
3031
3031
  */
3032
3032
  borderColor?: string | null;
3033
3033
  /** Card border width in pixels. */
@@ -3042,12 +3042,12 @@ interface CardStyles {
3042
3042
  titlePriceLayout?: LayoutWithLiterals;
3043
3043
  /**
3044
3044
  * Title text color as a hexadecimal value.
3045
- * @format COLOR_HEX
3045
+ * @maxLength 19
3046
3046
  */
3047
3047
  titleColor?: string | null;
3048
3048
  /**
3049
3049
  * Text color as a hexadecimal value.
3050
- * @format COLOR_HEX
3050
+ * @maxLength 19
3051
3051
  */
3052
3052
  textColor?: string | null;
3053
3053
  }
@@ -3229,29 +3229,29 @@ interface CellStyle {
3229
3229
  verticalAlignment?: VerticalAlignmentWithLiterals;
3230
3230
  /**
3231
3231
  * Cell background color as a hexadecimal value.
3232
- * @format COLOR_HEX
3232
+ * @maxLength 19
3233
3233
  */
3234
3234
  backgroundColor?: string | null;
3235
3235
  }
3236
3236
  interface BorderColors {
3237
3237
  /**
3238
3238
  * Left border color as a hexadecimal value.
3239
- * @format COLOR_HEX
3239
+ * @maxLength 19
3240
3240
  */
3241
3241
  left?: string | null;
3242
3242
  /**
3243
3243
  * Right border color as a hexadecimal value.
3244
- * @format COLOR_HEX
3244
+ * @maxLength 19
3245
3245
  */
3246
3246
  right?: string | null;
3247
3247
  /**
3248
3248
  * Top border color as a hexadecimal value.
3249
- * @format COLOR_HEX
3249
+ * @maxLength 19
3250
3250
  */
3251
3251
  top?: string | null;
3252
3252
  /**
3253
3253
  * Bottom border color as a hexadecimal value.
3254
- * @format COLOR_HEX
3254
+ * @maxLength 19
3255
3255
  */
3256
3256
  bottom?: string | null;
3257
3257
  }
@@ -3326,7 +3326,7 @@ interface CaptionData {
3326
3326
  interface LayoutData {
3327
3327
  /**
3328
3328
  * Deprecated: Use `background` instead.
3329
- * @format COLOR_HEX
3329
+ * @maxLength 19
3330
3330
  * @deprecated
3331
3331
  */
3332
3332
  backgroundColor?: string | null;
@@ -3334,7 +3334,7 @@ interface LayoutData {
3334
3334
  backgroundImage?: LayoutDataBackgroundImage;
3335
3335
  /**
3336
3336
  * Border color as a hexadecimal value.
3337
- * @format COLOR_HEX
3337
+ * @maxLength 19
3338
3338
  */
3339
3339
  borderColor?: string | null;
3340
3340
  /** Border width in pixels. */
@@ -3343,7 +3343,7 @@ interface LayoutData {
3343
3343
  borderRadius?: number | null;
3344
3344
  /**
3345
3345
  * Deprecated: Use `backdrop` instead.
3346
- * @format COLOR_HEX
3346
+ * @maxLength 19
3347
3347
  * @deprecated
3348
3348
  */
3349
3349
  backdropColor?: string | null;
@@ -3481,7 +3481,7 @@ interface LayoutDataBackground {
3481
3481
  type?: LayoutDataBackgroundTypeWithLiterals;
3482
3482
  /**
3483
3483
  * Background color as a hexadecimal value.
3484
- * @format COLOR_HEX
3484
+ * @maxLength 19
3485
3485
  */
3486
3486
  color?: string | null;
3487
3487
  /** Gradient configuration. */
@@ -3493,7 +3493,7 @@ interface Backdrop {
3493
3493
  type?: BackdropTypeWithLiterals;
3494
3494
  /**
3495
3495
  * Backdrop color as a hexadecimal value.
3496
- * @format COLOR_HEX
3496
+ * @maxLength 19
3497
3497
  */
3498
3498
  color?: string | null;
3499
3499
  /** Gradient configuration. */
@@ -3514,7 +3514,7 @@ interface ShapeData {
3514
3514
  interface ShapeDataStyles {
3515
3515
  /**
3516
3516
  * Shape fill color as a hexadecimal value.
3517
- * @format COLOR_HEX
3517
+ * @maxLength 19
3518
3518
  */
3519
3519
  color?: string | null;
3520
3520
  /** Map of original color keys to their new color values. */
@@ -3573,7 +3573,7 @@ interface CardDataBackground {
3573
3573
  type?: CardDataBackgroundTypeWithLiterals;
3574
3574
  /**
3575
3575
  * Background color as a hexadecimal value.
3576
- * @format COLOR_HEX
3576
+ * @maxLength 19
3577
3577
  */
3578
3578
  color?: string | null;
3579
3579
  /** Gradient configuration. */
@@ -3600,7 +3600,7 @@ interface TocData {
3600
3600
  itemSpacing?: number | null;
3601
3601
  /**
3602
3602
  * Optional override for the text color.
3603
- * @format COLOR_HEX
3603
+ * @maxLength 19
3604
3604
  */
3605
3605
  color?: string | null;
3606
3606
  /** Indentation style. Default: NESTED. */
@@ -3642,7 +3642,10 @@ interface SmartBlockData {
3642
3642
  orientation?: string | null;
3643
3643
  /** Column size controlling cells per row. */
3644
3644
  columnSize?: ColumnSizeWithLiterals;
3645
- /** Border color (for SOLID_JOINED_BOXES variant). */
3645
+ /**
3646
+ * Border color (for SOLID_JOINED_BOXES variant).
3647
+ * @maxLength 19
3648
+ */
3646
3649
  borderColor?: string | null;
3647
3650
  /** Border width in pixels (for SOLID_JOINED_BOXES variant). */
3648
3651
  borderWidth?: number | null;
@@ -3701,7 +3704,10 @@ interface SmartBlockCellData {
3701
3704
  label?: string | null;
3702
3705
  /** Shape file details. */
3703
3706
  shape?: Media;
3704
- /** Border color of the cell. */
3707
+ /**
3708
+ * Border color of the cell.
3709
+ * @maxLength 19
3710
+ */
3705
3711
  borderColor?: string | null;
3706
3712
  /** Border width in pixels. */
3707
3713
  borderWidth?: number | null;
@@ -3709,11 +3715,20 @@ interface SmartBlockCellData {
3709
3715
  borderRadius?: number | null;
3710
3716
  /** The type of the parent smart block (must match parent). */
3711
3717
  type?: SmartBlockDataTypeWithLiterals;
3712
- /** Accent color for non-background variants (e.g., line, bullet, label color). */
3718
+ /**
3719
+ * Accent color for non-background variants (e.g., line, bullet, label color).
3720
+ * @maxLength 19
3721
+ */
3713
3722
  accentColor?: string | null;
3714
- /** Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES). */
3723
+ /**
3724
+ * Background color for background-based variants (SOLID_BOXES, SOLID_BOXES_ALTERNATING, SOLID_JOINED_BOXES).
3725
+ * @maxLength 19
3726
+ */
3715
3727
  backgroundColor?: string | null;
3716
- /** Shape fill color as a hexadecimal value. */
3728
+ /**
3729
+ * Shape fill color as a hexadecimal value.
3730
+ * @maxLength 19
3731
+ */
3717
3732
  shapeColor?: string | null;
3718
3733
  }
3719
3734
  interface Metadata {