@divkitframework/jsonbuilder 30.26.0 → 30.28.0

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.
@@ -488,14 +488,14 @@ declare class DivActionAnimatorStop<T extends DivActionAnimatorStopProps = DivAc
488
488
  readonly _props?: Exact<DivActionAnimatorStopProps, T>;
489
489
  readonly type = "animator_stop";
490
490
  /**
491
- * The identifier of the animator being stopped.
491
+ * ID of the animator to be stopped.
492
492
  */
493
493
  animator_id: Type<string>;
494
494
  constructor(props: Exact<DivActionAnimatorStopProps, T>);
495
495
  }
496
496
  interface DivActionAnimatorStopProps {
497
497
  /**
498
- * The identifier of the animator being stopped.
498
+ * ID of the animator to be stopped.
499
499
  */
500
500
  animator_id: Type<string>;
501
501
  }
@@ -661,59 +661,57 @@ interface DivActionHideTooltipProps {
661
661
  }
662
662
 
663
663
  /**
664
- * Scrolls scrollable container from current position by `item_count` or by `offset`, if both
665
- * provided scroll action will be combined, negative numbers associated with backward scroll.
664
+ * Scrolls the container by `item_count` or `offset` starting from the current position. If both
665
+ * values are specified, the action will be combined. For scrolling back, use negative values.
666
666
  */
667
667
  declare class DivActionScrollBy<T extends DivActionScrollByProps = DivActionScrollByProps> {
668
668
  readonly _props?: Exact<DivActionScrollByProps, T>;
669
669
  readonly type = "scroll_by";
670
670
  /**
671
- * If `true` (default value) scroll will be animated, else not.
671
+ * Enables scrolling animation.
672
672
  */
673
673
  animated?: Type<boolean | DivExpression>;
674
674
  /**
675
- * Identifier of the view that is going to be manipulated.
675
+ * ID of the element where the action should be performed.
676
676
  */
677
677
  id: Type<string | DivExpression>;
678
678
  /**
679
- * Count of container items to scroll, negative value is associated with backward scroll.
679
+ * Number of container elements to scroll through. For scrolling back, use negative values.
680
680
  */
681
681
  item_count?: Type<number | DivExpression>;
682
682
  /**
683
- * Distance to scroll measured in `dp` from current position, negative value is associated with
684
- * backward scroll. Applicable only in `gallery`.
683
+ * Scrolling distance measured in `dp` from the current position. For scrolling back, use
684
+ * negative values. Only applies in `gallery`.
685
685
  */
686
686
  offset?: Type<number | DivExpression>;
687
687
  /**
688
- * Specifies how navigation will occur when the boundary elements are reached:`clamp`
689
- * Transition will stop at the boundary element (default value);`ring` Transition will be to
690
- * the beginning or the end depending on the current element.
688
+ * Defines navigation behavior at boundary elements:`clamp`: Stop navigation at the boundary
689
+ * element (default)`ring`: Navigate to the start or end, depending on the current element.
691
690
  */
692
691
  overflow?: Type<DivActionScrollByOverflow | DivExpression>;
693
692
  constructor(props: Exact<DivActionScrollByProps, T>);
694
693
  }
695
694
  interface DivActionScrollByProps {
696
695
  /**
697
- * If `true` (default value) scroll will be animated, else not.
696
+ * Enables scrolling animation.
698
697
  */
699
698
  animated?: Type<boolean | DivExpression>;
700
699
  /**
701
- * Identifier of the view that is going to be manipulated.
700
+ * ID of the element where the action should be performed.
702
701
  */
703
702
  id: Type<string | DivExpression>;
704
703
  /**
705
- * Count of container items to scroll, negative value is associated with backward scroll.
704
+ * Number of container elements to scroll through. For scrolling back, use negative values.
706
705
  */
707
706
  item_count?: Type<number | DivExpression>;
708
707
  /**
709
- * Distance to scroll measured in `dp` from current position, negative value is associated with
710
- * backward scroll. Applicable only in `gallery`.
708
+ * Scrolling distance measured in `dp` from the current position. For scrolling back, use
709
+ * negative values. Only applies in `gallery`.
711
710
  */
712
711
  offset?: Type<number | DivExpression>;
713
712
  /**
714
- * Specifies how navigation will occur when the boundary elements are reached:`clamp`
715
- * Transition will stop at the boundary element (default value);`ring` Transition will be to
716
- * the beginning or the end depending on the current element.
713
+ * Defines navigation behavior at boundary elements:`clamp`: Stop navigation at the boundary
714
+ * element (default)`ring`: Navigate to the start or end, depending on the current element.
717
715
  */
718
716
  overflow?: Type<DivActionScrollByOverflow | DivExpression>;
719
717
  }
@@ -722,42 +720,43 @@ declare type DivActionScrollByOverflow = 'clamp' | 'ring';
722
720
  declare type DivActionScrollDestination = OffsetDestination | IndexDestination | StartDestination | EndDestination;
723
721
 
724
722
  /**
725
- * Scrolls or switches container to given destination provided by `destination`.
723
+ * Scrolls to a position or switches to the container element specified by the `destination`
724
+ * parameter.
726
725
  */
727
726
  declare class DivActionScrollTo<T extends DivActionScrollToProps = DivActionScrollToProps> {
728
727
  readonly _props?: Exact<DivActionScrollToProps, T>;
729
728
  readonly type = "scroll_to";
730
729
  /**
731
- * If `true` (default value) scroll will be animated, else not.
730
+ * Enables scrolling animation.
732
731
  */
733
732
  animated?: Type<boolean | DivExpression>;
734
733
  /**
735
- * Specifies destination of scroll:`index` - scroll or switch to item with index provided by
736
- * `value`;`offset` - scroll to position measured in `dp` from container's start and provided by
737
- * `value`. Applicable only in `gallery`;`start` - scrolls to start of container;`end` - scrolls
738
- * to end of container..
734
+ * Defines the scrolling end position:`index`: Scroll to the element with the index provided in
735
+ * `value``offset`: Scroll to the position specified in `value` and measured in `dp` from the
736
+ * start of the container. Applies only in `gallery`;`start`: Scroll to the container
737
+ * start;`end`: Scroll to the container end.
739
738
  */
740
739
  destination: Type<DivActionScrollDestination>;
741
740
  /**
742
- * Identifier of the view that is going to be manipulated.
741
+ * ID of the element where the action should be performed.
743
742
  */
744
743
  id: Type<string | DivExpression>;
745
744
  constructor(props: Exact<DivActionScrollToProps, T>);
746
745
  }
747
746
  interface DivActionScrollToProps {
748
747
  /**
749
- * If `true` (default value) scroll will be animated, else not.
748
+ * Enables scrolling animation.
750
749
  */
751
750
  animated?: Type<boolean | DivExpression>;
752
751
  /**
753
- * Specifies destination of scroll:`index` - scroll or switch to item with index provided by
754
- * `value`;`offset` - scroll to position measured in `dp` from container's start and provided by
755
- * `value`. Applicable only in `gallery`;`start` - scrolls to start of container;`end` - scrolls
756
- * to end of container..
752
+ * Defines the scrolling end position:`index`: Scroll to the element with the index provided in
753
+ * `value``offset`: Scroll to the position specified in `value` and measured in `dp` from the
754
+ * start of the container. Applies only in `gallery`;`start`: Scroll to the container
755
+ * start;`end`: Scroll to the container end.
757
756
  */
758
757
  destination: Type<DivActionScrollDestination>;
759
758
  /**
760
- * Identifier of the view that is going to be manipulated.
759
+ * ID of the element where the action should be performed.
761
760
  */
762
761
  id: Type<string | DivExpression>;
763
762
  }
@@ -800,36 +799,36 @@ interface DivActionSetStateProps {
800
799
  }
801
800
 
802
801
  /**
803
- * Temporarily saves variable to the persistent storage.
802
+ * Temporarily saves the variable in storage.
804
803
  */
805
804
  declare class DivActionSetStoredValue<T extends DivActionSetStoredValueProps = DivActionSetStoredValueProps> {
806
805
  readonly _props?: Exact<DivActionSetStoredValueProps, T>;
807
806
  readonly type = "set_stored_value";
808
807
  /**
809
- * Storing time in seconds.
808
+ * Duration of storage in seconds.
810
809
  */
811
810
  lifetime: Type<number | DivExpression>;
812
811
  /**
813
- * Nave of stored variable.
812
+ * Name of the saved variable.
814
813
  */
815
814
  name: Type<string | DivExpression>;
816
815
  /**
817
- * Value to be stored.
816
+ * Saved value.
818
817
  */
819
818
  value: Type<DivTypedValue>;
820
819
  constructor(props: Exact<DivActionSetStoredValueProps, T>);
821
820
  }
822
821
  interface DivActionSetStoredValueProps {
823
822
  /**
824
- * Storing time in seconds.
823
+ * Duration of storage in seconds.
825
824
  */
826
825
  lifetime: Type<number | DivExpression>;
827
826
  /**
828
- * Nave of stored variable.
827
+ * Name of the saved variable.
829
828
  */
830
829
  name: Type<string | DivExpression>;
831
830
  /**
832
- * Value to be stored.
831
+ * Saved value.
833
832
  */
834
833
  value: Type<DivTypedValue>;
835
834
  }
@@ -877,63 +876,62 @@ interface DivActionShowTooltipProps {
877
876
  }
878
877
 
879
878
  /**
880
- * Sends variables from the container via a url. The data sending configuration can be determined
881
- * by the host application. By default, variables are passed in body in json format, the request
882
- * method is POST.
879
+ * Sends variables from the container by link. Data sending configuration can be defined by the
880
+ * host app. By default, variables are sent as JSON in the request body using the POST method.
883
881
  */
884
882
  declare class DivActionSubmit<T extends DivActionSubmitProps = DivActionSubmitProps> {
885
883
  readonly _props?: Exact<DivActionSubmitProps, T>;
886
884
  readonly type = "submit";
887
885
  /**
888
- * The identifier of the container that contains variables to submit.
886
+ * ID of the container with the variables to be sent.
889
887
  */
890
888
  container_id: Type<string | DivExpression>;
891
889
  /**
892
- * Actions in case of unsuccessful submit.
890
+ * Actions when sending data is unsuccessful.
893
891
  */
894
892
  on_fail_actions?: Type<NonEmptyArray<IDivAction>>;
895
893
  /**
896
- * Actions in case of successful submit.
894
+ * Actions when sending data is successful.
897
895
  */
898
896
  on_success_actions?: Type<NonEmptyArray<IDivAction>>;
899
897
  /**
900
- * The HTTP request parameters that are used to configure how data is sent.
898
+ * HTTP request parameters for configuring the sending of data.
901
899
  */
902
900
  request: Type<IDivActionSubmitRequest>;
903
901
  constructor(props: Exact<DivActionSubmitProps, T>);
904
902
  }
905
903
  interface DivActionSubmitProps {
906
904
  /**
907
- * The identifier of the container that contains variables to submit.
905
+ * ID of the container with the variables to be sent.
908
906
  */
909
907
  container_id: Type<string | DivExpression>;
910
908
  /**
911
- * Actions in case of unsuccessful submit.
909
+ * Actions when sending data is unsuccessful.
912
910
  */
913
911
  on_fail_actions?: Type<NonEmptyArray<IDivAction>>;
914
912
  /**
915
- * Actions in case of successful submit.
913
+ * Actions when sending data is successful.
916
914
  */
917
915
  on_success_actions?: Type<NonEmptyArray<IDivAction>>;
918
916
  /**
919
- * The HTTP request parameters that are used to configure how data is sent.
917
+ * HTTP request parameters for configuring the sending of data.
920
918
  */
921
919
  request: Type<IDivActionSubmitRequest>;
922
920
  }
923
921
  /**
924
- * The HTTP request parameters that are used to configure how data is sent.
922
+ * HTTP request parameters for configuring the sending of data.
925
923
  */
926
924
  interface IDivActionSubmitRequest {
927
925
  /**
928
- * The HTTP request headers.
926
+ * HTTP request headers.
929
927
  */
930
928
  headers?: Type<NonEmptyArray<IRequestHeader>>;
931
929
  /**
932
- * The HTTP request method.
930
+ * HTTP request method.
933
931
  */
934
932
  method?: Type<RequestMethod | DivExpression>;
935
933
  /**
936
- * The url to which data from the container is sent.
934
+ * Link for sending data from the container.
937
935
  */
938
936
  url: Type<string | DivExpression>;
939
937
  }
@@ -1064,8 +1062,8 @@ declare type DivAnimator = DivColorAnimator | DivNumberAnimator;
1064
1062
 
1065
1063
  interface IDivAnimatorBase {
1066
1064
  /**
1067
- * Actions to be performed if the animator is canceled. For example, when a command with the type
1068
- * `animator_stop` is received.
1065
+ * Actions performed when the animation is canceled. For example, when a command with the
1066
+ * 'animator_stop' type is received.
1069
1067
  */
1070
1068
  cancel_actions?: Type<NonEmptyArray<IDivAction>>;
1071
1069
  /**
@@ -1078,7 +1076,7 @@ interface IDivAnimatorBase {
1078
1076
  */
1079
1077
  duration: Type<number | DivExpression>;
1080
1078
  /**
1081
- * Actions to be performed after the animator finishes.
1079
+ * Actions when the animation is completed.
1082
1080
  */
1083
1081
  end_actions?: Type<NonEmptyArray<IDivAction>>;
1084
1082
  /**
@@ -1160,7 +1158,7 @@ interface IDivBase {
1160
1158
  /**
1161
1159
  * Declaration of animators that change variable values over time.
1162
1160
  *
1163
- * Platforms: android, ios
1161
+ * Platforms: android, ios, web
1164
1162
  */
1165
1163
  animators?: Type<NonEmptyArray<DivAnimator>>;
1166
1164
  /**
@@ -1461,7 +1459,7 @@ interface DivCircleShapeProps {
1461
1459
  }
1462
1460
 
1463
1461
  /**
1464
- * Cloud text background. Lines draws a rectangular background with the specified color and
1462
+ * Cloud-style text background. Rows have a rectangular background in the specified color with
1465
1463
  * rounded corners.
1466
1464
  */
1467
1465
  declare class DivCloudBackground<T extends DivCloudBackgroundProps = DivCloudBackgroundProps> {
@@ -1476,7 +1474,7 @@ declare class DivCloudBackground<T extends DivCloudBackgroundProps = DivCloudBac
1476
1474
  */
1477
1475
  corner_radius: Type<number | DivExpression>;
1478
1476
  /**
1479
- * Margins between line bounds and background.
1477
+ * Margins between the row border and background border.
1480
1478
  */
1481
1479
  paddings?: Type<IDivEdgeInsets>;
1482
1480
  constructor(props: Exact<DivCloudBackgroundProps, T>);
@@ -1491,7 +1489,7 @@ interface DivCloudBackgroundProps {
1491
1489
  */
1492
1490
  corner_radius: Type<number | DivExpression>;
1493
1491
  /**
1494
- * Margins between line bounds and background.
1492
+ * Margins between the row border and background border.
1495
1493
  */
1496
1494
  paddings?: Type<IDivEdgeInsets>;
1497
1495
  }
@@ -1538,8 +1536,8 @@ declare class DivColorAnimator<T extends DivColorAnimatorProps = DivColorAnimato
1538
1536
  readonly _props?: Exact<DivColorAnimatorProps, T>;
1539
1537
  readonly type = "color_animator";
1540
1538
  /**
1541
- * Actions to be performed if the animator is canceled. For example, when a command with the type
1542
- * `animator_stop` is received.
1539
+ * Actions performed when the animation is canceled. For example, when a command with the
1540
+ * 'animator_stop' type is received.
1543
1541
  */
1544
1542
  cancel_actions?: Type<NonEmptyArray<IDivAction>>;
1545
1543
  /**
@@ -1552,7 +1550,7 @@ declare class DivColorAnimator<T extends DivColorAnimatorProps = DivColorAnimato
1552
1550
  */
1553
1551
  duration: Type<number | DivExpression>;
1554
1552
  /**
1555
- * Actions to be performed after the animator finishes.
1553
+ * Actions when the animation is completed.
1556
1554
  */
1557
1555
  end_actions?: Type<NonEmptyArray<IDivAction>>;
1558
1556
  /**
@@ -1589,8 +1587,8 @@ declare class DivColorAnimator<T extends DivColorAnimatorProps = DivColorAnimato
1589
1587
  }
1590
1588
  interface DivColorAnimatorProps {
1591
1589
  /**
1592
- * Actions to be performed if the animator is canceled. For example, when a command with the type
1593
- * `animator_stop` is received.
1590
+ * Actions performed when the animation is canceled. For example, when a command with the
1591
+ * 'animator_stop' type is received.
1594
1592
  */
1595
1593
  cancel_actions?: Type<NonEmptyArray<IDivAction>>;
1596
1594
  /**
@@ -1603,7 +1601,7 @@ interface DivColorAnimatorProps {
1603
1601
  */
1604
1602
  duration: Type<number | DivExpression>;
1605
1603
  /**
1606
- * Actions to be performed after the animator finishes.
1604
+ * Actions when the animation is completed.
1607
1605
  */
1608
1606
  end_actions?: Type<NonEmptyArray<IDivAction>>;
1609
1607
  /**
@@ -1682,7 +1680,7 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
1682
1680
  /**
1683
1681
  * Declaration of animators that change variable values over time.
1684
1682
  *
1685
- * Platforms: android, ios
1683
+ * Platforms: android, ios, web
1686
1684
  */
1687
1685
  animators?: Type<NonEmptyArray<DivAnimator>>;
1688
1686
  /**
@@ -1759,6 +1757,20 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
1759
1757
  * measurement, see [Layout inside the card](../../layout).
1760
1758
  */
1761
1759
  height?: Type<DivSize>;
1760
+ /**
1761
+ * Actions performed when hovering over an element ends. Available on platforms with pointing
1762
+ * device support (mouse, stylus, etc).
1763
+ *
1764
+ * Platforms: not supported
1765
+ */
1766
+ hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
1767
+ /**
1768
+ * Actions performed when hovering over an element. Available on platforms with pointing device
1769
+ * support (mouse, stylus, etc).
1770
+ *
1771
+ * Platforms: not supported
1772
+ */
1773
+ hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
1762
1774
  /**
1763
1775
  * Element ID. It must be unique within the root element. It is used as `accessibilityIdentifier`
1764
1776
  * on iOS.
@@ -1815,6 +1827,18 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
1815
1827
  * Internal margins from the element stroke.
1816
1828
  */
1817
1829
  paddings?: Type<IDivEdgeInsets>;
1830
+ /**
1831
+ * Actions performed when an element is released.
1832
+ *
1833
+ * Platforms: not supported
1834
+ */
1835
+ press_end_actions?: Type<NonEmptyArray<IDivAction>>;
1836
+ /**
1837
+ * Actions performed when an element is pressed.
1838
+ *
1839
+ * Platforms: not supported
1840
+ */
1841
+ press_start_actions?: Type<NonEmptyArray<IDivAction>>;
1818
1842
  /**
1819
1843
  * ID for the div object structure. Used to optimize block reuse. See [block
1820
1844
  * reuse](../../reuse/reuse.md).
@@ -1957,7 +1981,7 @@ interface DivContainerPropsBase {
1957
1981
  /**
1958
1982
  * Declaration of animators that change variable values over time.
1959
1983
  *
1960
- * Platforms: android, ios
1984
+ * Platforms: android, ios, web
1961
1985
  */
1962
1986
  animators?: Type<NonEmptyArray<DivAnimator>>;
1963
1987
  /**
@@ -2034,6 +2058,20 @@ interface DivContainerPropsBase {
2034
2058
  * measurement, see [Layout inside the card](../../layout).
2035
2059
  */
2036
2060
  height?: Type<DivSize>;
2061
+ /**
2062
+ * Actions performed when hovering over an element ends. Available on platforms with pointing
2063
+ * device support (mouse, stylus, etc).
2064
+ *
2065
+ * Platforms: not supported
2066
+ */
2067
+ hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
2068
+ /**
2069
+ * Actions performed when hovering over an element. Available on platforms with pointing device
2070
+ * support (mouse, stylus, etc).
2071
+ *
2072
+ * Platforms: not supported
2073
+ */
2074
+ hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
2037
2075
  /**
2038
2076
  * Element ID. It must be unique within the root element. It is used as `accessibilityIdentifier`
2039
2077
  * on iOS.
@@ -2090,6 +2128,18 @@ interface DivContainerPropsBase {
2090
2128
  * Internal margins from the element stroke.
2091
2129
  */
2092
2130
  paddings?: Type<IDivEdgeInsets>;
2131
+ /**
2132
+ * Actions performed when an element is released.
2133
+ *
2134
+ * Platforms: not supported
2135
+ */
2136
+ press_end_actions?: Type<NonEmptyArray<IDivAction>>;
2137
+ /**
2138
+ * Actions performed when an element is pressed.
2139
+ *
2140
+ * Platforms: not supported
2141
+ */
2142
+ press_start_actions?: Type<NonEmptyArray<IDivAction>>;
2093
2143
  /**
2094
2144
  * ID for the div object structure. Used to optimize block reuse. See [block
2095
2145
  * reuse](../../reuse/reuse.md).
@@ -2321,7 +2371,7 @@ declare class DivCustom<T extends DivCustomProps = DivCustomProps> {
2321
2371
  /**
2322
2372
  * Declaration of animators that change variable values over time.
2323
2373
  *
2324
- * Platforms: android, ios
2374
+ * Platforms: android, ios, web
2325
2375
  */
2326
2376
  animators?: Type<NonEmptyArray<DivAnimator>>;
2327
2377
  /**
@@ -2517,7 +2567,7 @@ interface DivCustomProps {
2517
2567
  /**
2518
2568
  * Declaration of animators that change variable values over time.
2519
2569
  *
2520
- * Platforms: android, ios
2570
+ * Platforms: android, ios, web
2521
2571
  */
2522
2572
  animators?: Type<NonEmptyArray<DivAnimator>>;
2523
2573
  /**
@@ -3131,7 +3181,7 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
3131
3181
  /**
3132
3182
  * Declaration of animators that change variable values over time.
3133
3183
  *
3134
- * Platforms: android, ios
3184
+ * Platforms: android, ios, web
3135
3185
  */
3136
3186
  animators?: Type<NonEmptyArray<DivAnimator>>;
3137
3187
  /**
@@ -3392,7 +3442,7 @@ interface DivGalleryProps {
3392
3442
  /**
3393
3443
  * Declaration of animators that change variable values over time.
3394
3444
  *
3395
- * Platforms: android, ios
3445
+ * Platforms: android, ios, web
3396
3446
  */
3397
3447
  animators?: Type<NonEmptyArray<DivAnimator>>;
3398
3448
  /**
@@ -3677,7 +3727,7 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
3677
3727
  /**
3678
3728
  * Declaration of animators that change variable values over time.
3679
3729
  *
3680
- * Platforms: android, ios
3730
+ * Platforms: android, ios, web
3681
3731
  */
3682
3732
  animators?: Type<NonEmptyArray<DivAnimator>>;
3683
3733
  /**
@@ -3746,6 +3796,20 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
3746
3796
  * measurement, see [Layout inside the card](../../layout).
3747
3797
  */
3748
3798
  height?: Type<DivSize>;
3799
+ /**
3800
+ * Actions performed when hovering over an element ends. Available on platforms with pointing
3801
+ * device support (mouse, stylus, etc).
3802
+ *
3803
+ * Platforms: not supported
3804
+ */
3805
+ hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
3806
+ /**
3807
+ * Actions performed when hovering over an element. Available on platforms with pointing device
3808
+ * support (mouse, stylus, etc).
3809
+ *
3810
+ * Platforms: not supported
3811
+ */
3812
+ hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
3749
3813
  /**
3750
3814
  * Element ID. It must be unique within the root element. It is used as `accessibilityIdentifier`
3751
3815
  * on iOS.
@@ -3784,6 +3848,18 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
3784
3848
  * Platforms: android, web
3785
3849
  */
3786
3850
  preload_required?: Type<IntBoolean | DivExpression>;
3851
+ /**
3852
+ * Actions performed when an element is released.
3853
+ *
3854
+ * Platforms: not supported
3855
+ */
3856
+ press_end_actions?: Type<NonEmptyArray<IDivAction>>;
3857
+ /**
3858
+ * Actions performed when an element is pressed.
3859
+ *
3860
+ * Platforms: not supported
3861
+ */
3862
+ press_start_actions?: Type<NonEmptyArray<IDivAction>>;
3787
3863
  /**
3788
3864
  * Image preview encoded in `base64`. It will be shown instead of `placeholder_color` before the
3789
3865
  * image is loaded. Format `data url`: `data:[;base64],<data>`
@@ -3930,7 +4006,7 @@ interface DivGifImageProps {
3930
4006
  /**
3931
4007
  * Declaration of animators that change variable values over time.
3932
4008
  *
3933
- * Platforms: android, ios
4009
+ * Platforms: android, ios, web
3934
4010
  */
3935
4011
  animators?: Type<NonEmptyArray<DivAnimator>>;
3936
4012
  /**
@@ -3999,6 +4075,20 @@ interface DivGifImageProps {
3999
4075
  * measurement, see [Layout inside the card](../../layout).
4000
4076
  */
4001
4077
  height?: Type<DivSize>;
4078
+ /**
4079
+ * Actions performed when hovering over an element ends. Available on platforms with pointing
4080
+ * device support (mouse, stylus, etc).
4081
+ *
4082
+ * Platforms: not supported
4083
+ */
4084
+ hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
4085
+ /**
4086
+ * Actions performed when hovering over an element. Available on platforms with pointing device
4087
+ * support (mouse, stylus, etc).
4088
+ *
4089
+ * Platforms: not supported
4090
+ */
4091
+ hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
4002
4092
  /**
4003
4093
  * Element ID. It must be unique within the root element. It is used as `accessibilityIdentifier`
4004
4094
  * on iOS.
@@ -4037,6 +4127,18 @@ interface DivGifImageProps {
4037
4127
  * Platforms: android, web
4038
4128
  */
4039
4129
  preload_required?: Type<IntBoolean | DivExpression>;
4130
+ /**
4131
+ * Actions performed when an element is released.
4132
+ *
4133
+ * Platforms: not supported
4134
+ */
4135
+ press_end_actions?: Type<NonEmptyArray<IDivAction>>;
4136
+ /**
4137
+ * Actions performed when an element is pressed.
4138
+ *
4139
+ * Platforms: not supported
4140
+ */
4141
+ press_start_actions?: Type<NonEmptyArray<IDivAction>>;
4040
4142
  /**
4041
4143
  * Image preview encoded in `base64`. It will be shown instead of `placeholder_color` before the
4042
4144
  * image is loaded. Format `data url`: `data:[;base64],<data>`
@@ -4188,7 +4290,7 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
4188
4290
  /**
4189
4291
  * Declaration of animators that change variable values over time.
4190
4292
  *
4191
- * Platforms: android, ios
4293
+ * Platforms: android, ios, web
4192
4294
  */
4193
4295
  animators?: Type<NonEmptyArray<DivAnimator>>;
4194
4296
  /**
@@ -4252,6 +4354,20 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
4252
4354
  * measurement, see [Layout inside the card](../../layout).
4253
4355
  */
4254
4356
  height?: Type<DivSize>;
4357
+ /**
4358
+ * Actions performed when hovering over an element ends. Available on platforms with pointing
4359
+ * device support (mouse, stylus, etc).
4360
+ *
4361
+ * Platforms: not supported
4362
+ */
4363
+ hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
4364
+ /**
4365
+ * Actions performed when hovering over an element. Available on platforms with pointing device
4366
+ * support (mouse, stylus, etc).
4367
+ *
4368
+ * Platforms: not supported
4369
+ */
4370
+ hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
4255
4371
  /**
4256
4372
  * Element ID. It must be unique within the root element. It is used as `accessibilityIdentifier`
4257
4373
  * on iOS.
@@ -4282,6 +4398,18 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
4282
4398
  * Internal margins from the element stroke.
4283
4399
  */
4284
4400
  paddings?: Type<IDivEdgeInsets>;
4401
+ /**
4402
+ * Actions performed when an element is released.
4403
+ *
4404
+ * Platforms: not supported
4405
+ */
4406
+ press_end_actions?: Type<NonEmptyArray<IDivAction>>;
4407
+ /**
4408
+ * Actions performed when an element is pressed.
4409
+ *
4410
+ * Platforms: not supported
4411
+ */
4412
+ press_start_actions?: Type<NonEmptyArray<IDivAction>>;
4285
4413
  /**
4286
4414
  * ID for the div object structure. Used to optimize block reuse. See [block
4287
4415
  * reuse](../../reuse/reuse.md).
@@ -4416,7 +4544,7 @@ interface DivGridProps {
4416
4544
  /**
4417
4545
  * Declaration of animators that change variable values over time.
4418
4546
  *
4419
- * Platforms: android, ios
4547
+ * Platforms: android, ios, web
4420
4548
  */
4421
4549
  animators?: Type<NonEmptyArray<DivAnimator>>;
4422
4550
  /**
@@ -4480,6 +4608,20 @@ interface DivGridProps {
4480
4608
  * measurement, see [Layout inside the card](../../layout).
4481
4609
  */
4482
4610
  height?: Type<DivSize>;
4611
+ /**
4612
+ * Actions performed when hovering over an element ends. Available on platforms with pointing
4613
+ * device support (mouse, stylus, etc).
4614
+ *
4615
+ * Platforms: not supported
4616
+ */
4617
+ hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
4618
+ /**
4619
+ * Actions performed when hovering over an element. Available on platforms with pointing device
4620
+ * support (mouse, stylus, etc).
4621
+ *
4622
+ * Platforms: not supported
4623
+ */
4624
+ hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
4483
4625
  /**
4484
4626
  * Element ID. It must be unique within the root element. It is used as `accessibilityIdentifier`
4485
4627
  * on iOS.
@@ -4510,6 +4652,18 @@ interface DivGridProps {
4510
4652
  * Internal margins from the element stroke.
4511
4653
  */
4512
4654
  paddings?: Type<IDivEdgeInsets>;
4655
+ /**
4656
+ * Actions performed when an element is released.
4657
+ *
4658
+ * Platforms: not supported
4659
+ */
4660
+ press_end_actions?: Type<NonEmptyArray<IDivAction>>;
4661
+ /**
4662
+ * Actions performed when an element is pressed.
4663
+ *
4664
+ * Platforms: not supported
4665
+ */
4666
+ press_start_actions?: Type<NonEmptyArray<IDivAction>>;
4513
4667
  /**
4514
4668
  * ID for the div object structure. Used to optimize block reuse. See [block
4515
4669
  * reuse](../../reuse/reuse.md).
@@ -4649,7 +4803,7 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
4649
4803
  /**
4650
4804
  * Declaration of animators that change variable values over time.
4651
4805
  *
4652
- * Platforms: android, ios
4806
+ * Platforms: android, ios, web
4653
4807
  */
4654
4808
  animators?: Type<NonEmptyArray<DivAnimator>>;
4655
4809
  /**
@@ -4732,6 +4886,20 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
4732
4886
  * Platforms: android, ios
4733
4887
  */
4734
4888
  high_priority_preview_show?: Type<IntBoolean | DivExpression>;
4889
+ /**
4890
+ * Actions performed when hovering over an element ends. Available on platforms with pointing
4891
+ * device support (mouse, stylus, etc).
4892
+ *
4893
+ * Platforms: not supported
4894
+ */
4895
+ hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
4896
+ /**
4897
+ * Actions performed when hovering over an element. Available on platforms with pointing device
4898
+ * support (mouse, stylus, etc).
4899
+ *
4900
+ * Platforms: not supported
4901
+ */
4902
+ hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
4735
4903
  /**
4736
4904
  * Element ID. It must be unique within the root element. It is used as `accessibilityIdentifier`
4737
4905
  * on iOS.
@@ -4774,6 +4942,18 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
4774
4942
  * Platforms: android, web
4775
4943
  */
4776
4944
  preload_required?: Type<IntBoolean | DivExpression>;
4945
+ /**
4946
+ * Actions performed when an element is released.
4947
+ *
4948
+ * Platforms: not supported
4949
+ */
4950
+ press_end_actions?: Type<NonEmptyArray<IDivAction>>;
4951
+ /**
4952
+ * Actions performed when an element is pressed.
4953
+ *
4954
+ * Platforms: not supported
4955
+ */
4956
+ press_start_actions?: Type<NonEmptyArray<IDivAction>>;
4777
4957
  /**
4778
4958
  * Image preview encoded in `base64`. It will be shown instead of `placeholder_color` before the
4779
4959
  * image is loaded. Format `data url`: `data:[;base64],<data>`
@@ -4928,7 +5108,7 @@ interface DivImageProps {
4928
5108
  /**
4929
5109
  * Declaration of animators that change variable values over time.
4930
5110
  *
4931
- * Platforms: android, ios
5111
+ * Platforms: android, ios, web
4932
5112
  */
4933
5113
  animators?: Type<NonEmptyArray<DivAnimator>>;
4934
5114
  /**
@@ -5011,6 +5191,20 @@ interface DivImageProps {
5011
5191
  * Platforms: android, ios
5012
5192
  */
5013
5193
  high_priority_preview_show?: Type<IntBoolean | DivExpression>;
5194
+ /**
5195
+ * Actions performed when hovering over an element ends. Available on platforms with pointing
5196
+ * device support (mouse, stylus, etc).
5197
+ *
5198
+ * Platforms: not supported
5199
+ */
5200
+ hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
5201
+ /**
5202
+ * Actions performed when hovering over an element. Available on platforms with pointing device
5203
+ * support (mouse, stylus, etc).
5204
+ *
5205
+ * Platforms: not supported
5206
+ */
5207
+ hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
5014
5208
  /**
5015
5209
  * Element ID. It must be unique within the root element. It is used as `accessibilityIdentifier`
5016
5210
  * on iOS.
@@ -5053,6 +5247,18 @@ interface DivImageProps {
5053
5247
  * Platforms: android, web
5054
5248
  */
5055
5249
  preload_required?: Type<IntBoolean | DivExpression>;
5250
+ /**
5251
+ * Actions performed when an element is released.
5252
+ *
5253
+ * Platforms: not supported
5254
+ */
5255
+ press_end_actions?: Type<NonEmptyArray<IDivAction>>;
5256
+ /**
5257
+ * Actions performed when an element is pressed.
5258
+ *
5259
+ * Platforms: not supported
5260
+ */
5261
+ press_start_actions?: Type<NonEmptyArray<IDivAction>>;
5056
5262
  /**
5057
5263
  * Image preview encoded in `base64`. It will be shown instead of `placeholder_color` before the
5058
5264
  * image is loaded. Format `data url`: `data:[;base64],<data>`
@@ -5292,7 +5498,7 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
5292
5498
  /**
5293
5499
  * Declaration of animators that change variable values over time.
5294
5500
  *
5295
- * Platforms: android, ios
5501
+ * Platforms: android, ios, web
5296
5502
  */
5297
5503
  animators?: Type<NonEmptyArray<DivAnimator>>;
5298
5504
  /**
@@ -5544,7 +5750,7 @@ interface DivIndicatorProps {
5544
5750
  /**
5545
5751
  * Declaration of animators that change variable values over time.
5546
5752
  *
5547
- * Platforms: android, ios
5753
+ * Platforms: android, ios, web
5548
5754
  */
5549
5755
  animators?: Type<NonEmptyArray<DivAnimator>>;
5550
5756
  /**
@@ -5793,7 +5999,7 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
5793
5999
  /**
5794
6000
  * Declaration of animators that change variable values over time.
5795
6001
  *
5796
- * Platforms: android, ios
6002
+ * Platforms: android, ios, web
5797
6003
  */
5798
6004
  animators?: Type<NonEmptyArray<DivAnimator>>;
5799
6005
  /**
@@ -5823,16 +6029,15 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
5823
6029
  */
5824
6030
  disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
5825
6031
  /**
5826
- * Actions when clicking on a `Enter` keyboard button. If there are actions, the default behavior
5827
- * will be overridden.
6032
+ * Actions when pressing the 'Enter' key. Actions (if any) override the default behavior.
5828
6033
  *
5829
- * Platforms: ios
6034
+ * Platforms: ios, android, web
5830
6035
  */
5831
6036
  enter_key_actions?: Type<NonEmptyArray<IDivAction>>;
5832
6037
  /**
5833
- * The type of the `Enter` keyboard button.
6038
+ * 'Enter' key type.
5834
6039
  *
5835
- * Platforms: ios
6040
+ * Platforms: ios, android, web
5836
6041
  */
5837
6042
  enter_key_type?: Type<DivInputEnterKeyType | DivExpression>;
5838
6043
  /**
@@ -6051,7 +6256,7 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
6051
6256
  /**
6052
6257
  * Validator that checks that the field value meets the specified conditions.
6053
6258
  *
6054
- * Platforms: android, ios
6259
+ * Platforms: android, ios, web
6055
6260
  */
6056
6261
  validators?: Type<NonEmptyArray<DivInputValidator>>;
6057
6262
  /**
@@ -6112,7 +6317,7 @@ interface DivInputProps {
6112
6317
  /**
6113
6318
  * Declaration of animators that change variable values over time.
6114
6319
  *
6115
- * Platforms: android, ios
6320
+ * Platforms: android, ios, web
6116
6321
  */
6117
6322
  animators?: Type<NonEmptyArray<DivAnimator>>;
6118
6323
  /**
@@ -6142,16 +6347,15 @@ interface DivInputProps {
6142
6347
  */
6143
6348
  disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
6144
6349
  /**
6145
- * Actions when clicking on a `Enter` keyboard button. If there are actions, the default behavior
6146
- * will be overridden.
6350
+ * Actions when pressing the 'Enter' key. Actions (if any) override the default behavior.
6147
6351
  *
6148
- * Platforms: ios
6352
+ * Platforms: ios, android, web
6149
6353
  */
6150
6354
  enter_key_actions?: Type<NonEmptyArray<IDivAction>>;
6151
6355
  /**
6152
- * The type of the `Enter` keyboard button.
6356
+ * 'Enter' key type.
6153
6357
  *
6154
- * Platforms: ios
6358
+ * Platforms: ios, android, web
6155
6359
  */
6156
6360
  enter_key_type?: Type<DivInputEnterKeyType | DivExpression>;
6157
6361
  /**
@@ -6370,7 +6574,7 @@ interface DivInputProps {
6370
6574
  /**
6371
6575
  * Validator that checks that the field value meets the specified conditions.
6372
6576
  *
6373
- * Platforms: android, ios
6577
+ * Platforms: android, ios, web
6374
6578
  */
6375
6579
  validators?: Type<NonEmptyArray<DivInputValidator>>;
6376
6580
  /**
@@ -6694,8 +6898,8 @@ declare class DivNumberAnimator<T extends DivNumberAnimatorProps = DivNumberAnim
6694
6898
  readonly _props?: Exact<DivNumberAnimatorProps, T>;
6695
6899
  readonly type = "number_animator";
6696
6900
  /**
6697
- * Actions to be performed if the animator is canceled. For example, when a command with the type
6698
- * `animator_stop` is received.
6901
+ * Actions performed when the animation is canceled. For example, when a command with the
6902
+ * 'animator_stop' type is received.
6699
6903
  */
6700
6904
  cancel_actions?: Type<NonEmptyArray<IDivAction>>;
6701
6905
  /**
@@ -6708,7 +6912,7 @@ declare class DivNumberAnimator<T extends DivNumberAnimatorProps = DivNumberAnim
6708
6912
  */
6709
6913
  duration: Type<number | DivExpression>;
6710
6914
  /**
6711
- * Actions to be performed after the animator finishes.
6915
+ * Actions when the animation is completed.
6712
6916
  */
6713
6917
  end_actions?: Type<NonEmptyArray<IDivAction>>;
6714
6918
  /**
@@ -6745,8 +6949,8 @@ declare class DivNumberAnimator<T extends DivNumberAnimatorProps = DivNumberAnim
6745
6949
  }
6746
6950
  interface DivNumberAnimatorProps {
6747
6951
  /**
6748
- * Actions to be performed if the animator is canceled. For example, when a command with the type
6749
- * `animator_stop` is received.
6952
+ * Actions performed when the animation is canceled. For example, when a command with the
6953
+ * 'animator_stop' type is received.
6750
6954
  */
6751
6955
  cancel_actions?: Type<NonEmptyArray<IDivAction>>;
6752
6956
  /**
@@ -6759,7 +6963,7 @@ interface DivNumberAnimatorProps {
6759
6963
  */
6760
6964
  duration: Type<number | DivExpression>;
6761
6965
  /**
6762
- * Actions to be performed after the animator finishes.
6966
+ * Actions when the animation is completed.
6763
6967
  */
6764
6968
  end_actions?: Type<NonEmptyArray<IDivAction>>;
6765
6969
  /**
@@ -6794,6 +6998,28 @@ interface DivNumberAnimatorProps {
6794
6998
  variable_name: Type<string>;
6795
6999
  }
6796
7000
 
7001
+ /**
7002
+ * Page size equals to its content size.
7003
+ */
7004
+ declare class DivPageContentSize<T extends DivPageContentSizeProps = DivPageContentSizeProps> {
7005
+ readonly _props?: Exact<DivPageContentSizeProps, T>;
7006
+ readonly type = "wrap_content";
7007
+ /**
7008
+ * Pager pages' alignment along the scroll axis. For edge alignment, offset from parent edge is
7009
+ * equal to the corresponding padding.
7010
+ */
7011
+ alignment?: Type<DivPageContentSizeAlignment | DivExpression>;
7012
+ constructor(props?: Exact<DivPageContentSizeProps, T>);
7013
+ }
7014
+ interface DivPageContentSizeProps {
7015
+ /**
7016
+ * Pager pages' alignment along the scroll axis. For edge alignment, offset from parent edge is
7017
+ * equal to the corresponding padding.
7018
+ */
7019
+ alignment?: Type<DivPageContentSizeAlignment | DivExpression>;
7020
+ }
7021
+ declare type DivPageContentSizeAlignment = 'start' | 'center' | 'end';
7022
+
6797
7023
  /**
6798
7024
  * Page width (%).
6799
7025
  */
@@ -6997,7 +7223,7 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
6997
7223
  /**
6998
7224
  * Declaration of animators that change variable values over time.
6999
7225
  *
7000
- * Platforms: android, ios
7226
+ * Platforms: android, ios, web
7001
7227
  */
7002
7228
  animators?: Type<NonEmptyArray<DivAnimator>>;
7003
7229
  /**
@@ -7017,7 +7243,7 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
7017
7243
  /**
7018
7244
  * Ordinal number of the pager element that will be opened by default.
7019
7245
  *
7020
- * Platforms: android, ios
7246
+ * Platforms: android, ios, web
7021
7247
  */
7022
7248
  default_item?: Type<number | DivExpression>;
7023
7249
  /**
@@ -7238,7 +7464,7 @@ interface DivPagerProps {
7238
7464
  /**
7239
7465
  * Declaration of animators that change variable values over time.
7240
7466
  *
7241
- * Platforms: android, ios
7467
+ * Platforms: android, ios, web
7242
7468
  */
7243
7469
  animators?: Type<NonEmptyArray<DivAnimator>>;
7244
7470
  /**
@@ -7258,7 +7484,7 @@ interface DivPagerProps {
7258
7484
  /**
7259
7485
  * Ordinal number of the pager element that will be opened by default.
7260
7486
  *
7261
- * Platforms: android, ios
7487
+ * Platforms: android, ios, web
7262
7488
  */
7263
7489
  default_item?: Type<number | DivExpression>;
7264
7490
  /**
@@ -7458,7 +7684,7 @@ interface DivPagerProps {
7458
7684
  }
7459
7685
  declare type DivPagerOrientation = 'horizontal' | 'vertical';
7460
7686
 
7461
- declare type DivPagerLayoutMode = DivPageSize | DivNeighbourPageSize;
7687
+ declare type DivPagerLayoutMode = DivPageSize | DivNeighbourPageSize | DivPageContentSize;
7462
7688
 
7463
7689
  /**
7464
7690
  * Edits the element.
@@ -7857,7 +8083,7 @@ declare class DivSelect<T extends DivSelectProps = DivSelectProps> {
7857
8083
  /**
7858
8084
  * Declaration of animators that change variable values over time.
7859
8085
  *
7860
- * Platforms: android, ios
8086
+ * Platforms: android, ios, web
7861
8087
  */
7862
8088
  animators?: Type<NonEmptyArray<DivAnimator>>;
7863
8089
  /**
@@ -8093,7 +8319,7 @@ interface DivSelectProps {
8093
8319
  /**
8094
8320
  * Declaration of animators that change variable values over time.
8095
8321
  *
8096
- * Platforms: android, ios
8322
+ * Platforms: android, ios, web
8097
8323
  */
8098
8324
  animators?: Type<NonEmptyArray<DivAnimator>>;
8099
8325
  /**
@@ -8362,7 +8588,7 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
8362
8588
  /**
8363
8589
  * Declaration of animators that change variable values over time.
8364
8590
  *
8365
- * Platforms: android, ios
8591
+ * Platforms: android, ios, web
8366
8592
  */
8367
8593
  animators?: Type<NonEmptyArray<DivAnimator>>;
8368
8594
  /**
@@ -8418,6 +8644,20 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
8418
8644
  * measurement, see [Layout inside the card](../../layout).
8419
8645
  */
8420
8646
  height?: Type<DivSize>;
8647
+ /**
8648
+ * Actions performed when hovering over an element ends. Available on platforms with pointing
8649
+ * device support (mouse, stylus, etc).
8650
+ *
8651
+ * Platforms: not supported
8652
+ */
8653
+ hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
8654
+ /**
8655
+ * Actions performed when hovering over an element. Available on platforms with pointing device
8656
+ * support (mouse, stylus, etc).
8657
+ *
8658
+ * Platforms: not supported
8659
+ */
8660
+ hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
8421
8661
  /**
8422
8662
  * Element ID. It must be unique within the root element. It is used as `accessibilityIdentifier`
8423
8663
  * on iOS.
@@ -8444,6 +8684,18 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
8444
8684
  * Internal margins from the element stroke.
8445
8685
  */
8446
8686
  paddings?: Type<IDivEdgeInsets>;
8687
+ /**
8688
+ * Actions performed when an element is released.
8689
+ *
8690
+ * Platforms: not supported
8691
+ */
8692
+ press_end_actions?: Type<NonEmptyArray<IDivAction>>;
8693
+ /**
8694
+ * Actions performed when an element is pressed.
8695
+ *
8696
+ * Platforms: not supported
8697
+ */
8698
+ press_start_actions?: Type<NonEmptyArray<IDivAction>>;
8447
8699
  /**
8448
8700
  * ID for the div object structure. Used to optimize block reuse. See [block
8449
8701
  * reuse](../../reuse/reuse.md).
@@ -8578,7 +8830,7 @@ interface DivSeparatorProps {
8578
8830
  /**
8579
8831
  * Declaration of animators that change variable values over time.
8580
8832
  *
8581
- * Platforms: android, ios
8833
+ * Platforms: android, ios, web
8582
8834
  */
8583
8835
  animators?: Type<NonEmptyArray<DivAnimator>>;
8584
8836
  /**
@@ -8634,6 +8886,20 @@ interface DivSeparatorProps {
8634
8886
  * measurement, see [Layout inside the card](../../layout).
8635
8887
  */
8636
8888
  height?: Type<DivSize>;
8889
+ /**
8890
+ * Actions performed when hovering over an element ends. Available on platforms with pointing
8891
+ * device support (mouse, stylus, etc).
8892
+ *
8893
+ * Platforms: not supported
8894
+ */
8895
+ hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
8896
+ /**
8897
+ * Actions performed when hovering over an element. Available on platforms with pointing device
8898
+ * support (mouse, stylus, etc).
8899
+ *
8900
+ * Platforms: not supported
8901
+ */
8902
+ hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
8637
8903
  /**
8638
8904
  * Element ID. It must be unique within the root element. It is used as `accessibilityIdentifier`
8639
8905
  * on iOS.
@@ -8660,6 +8926,18 @@ interface DivSeparatorProps {
8660
8926
  * Internal margins from the element stroke.
8661
8927
  */
8662
8928
  paddings?: Type<IDivEdgeInsets>;
8929
+ /**
8930
+ * Actions performed when an element is released.
8931
+ *
8932
+ * Platforms: not supported
8933
+ */
8934
+ press_end_actions?: Type<NonEmptyArray<IDivAction>>;
8935
+ /**
8936
+ * Actions performed when an element is pressed.
8937
+ *
8938
+ * Platforms: not supported
8939
+ */
8940
+ press_start_actions?: Type<NonEmptyArray<IDivAction>>;
8663
8941
  /**
8664
8942
  * ID for the div object structure. Used to optimize block reuse. See [block
8665
8943
  * reuse](../../reuse/reuse.md).
@@ -8972,7 +9250,7 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
8972
9250
  /**
8973
9251
  * Declaration of animators that change variable values over time.
8974
9252
  *
8975
- * Platforms: android, ios
9253
+ * Platforms: android, ios, web
8976
9254
  */
8977
9255
  animators?: Type<NonEmptyArray<DivAnimator>>;
8978
9256
  /**
@@ -9216,7 +9494,7 @@ interface DivSliderProps {
9216
9494
  /**
9217
9495
  * Declaration of animators that change variable values over time.
9218
9496
  *
9219
- * Platforms: android, ios
9497
+ * Platforms: android, ios, web
9220
9498
  */
9221
9499
  animators?: Type<NonEmptyArray<DivAnimator>>;
9222
9500
  /**
@@ -9534,7 +9812,7 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
9534
9812
  /**
9535
9813
  * Declaration of animators that change variable values over time.
9536
9814
  *
9537
- * Platforms: android, ios
9815
+ * Platforms: android, ios, web
9538
9816
  */
9539
9817
  animators?: Type<NonEmptyArray<DivAnimator>>;
9540
9818
  /**
@@ -9545,6 +9823,12 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
9545
9823
  * Element stroke.
9546
9824
  */
9547
9825
  border?: Type<IDivBorder>;
9826
+ /**
9827
+ * Enables the bounding of child elements by the parent's borders.
9828
+ *
9829
+ * Platforms: android
9830
+ */
9831
+ clip_to_bounds?: Type<IntBoolean | DivExpression>;
9548
9832
  /**
9549
9833
  * Merges cells in a column of the [grid](div-grid.md) element.
9550
9834
  *
@@ -9746,7 +10030,7 @@ interface DivStateProps {
9746
10030
  /**
9747
10031
  * Declaration of animators that change variable values over time.
9748
10032
  *
9749
- * Platforms: android, ios
10033
+ * Platforms: android, ios, web
9750
10034
  */
9751
10035
  animators?: Type<NonEmptyArray<DivAnimator>>;
9752
10036
  /**
@@ -9757,6 +10041,12 @@ interface DivStateProps {
9757
10041
  * Element stroke.
9758
10042
  */
9759
10043
  border?: Type<IDivBorder>;
10044
+ /**
10045
+ * Enables the bounding of child elements by the parent's borders.
10046
+ *
10047
+ * Platforms: android
10048
+ */
10049
+ clip_to_bounds?: Type<IntBoolean | DivExpression>;
9760
10050
  /**
9761
10051
  * Merges cells in a column of the [grid](div-grid.md) element.
9762
10052
  *
@@ -10013,8 +10303,8 @@ interface IDivStroke {
10013
10303
  }
10014
10304
 
10015
10305
  /**
10016
- * A two-state switch that allows user to toggle a boolean variable. The element has a different
10017
- * appearance depending on the platform. On iOS, the switch size is fixed.
10306
+ * Two-state toggle that allows the user to control a Boolean variable. The element's
10307
+ * look-and-feel varies by platform. The toggle has a fixed size in iOS.
10018
10308
  */
10019
10309
  declare class DivSwitch<T extends DivSwitchProps = DivSwitchProps> {
10020
10310
  readonly _props?: Exact<DivSwitchProps, T>;
@@ -10040,7 +10330,7 @@ declare class DivSwitch<T extends DivSwitchProps = DivSwitchProps> {
10040
10330
  /**
10041
10331
  * Declaration of animators that change variable values over time.
10042
10332
  *
10043
- * Platforms: android, ios
10333
+ * Platforms: android, ios, web
10044
10334
  */
10045
10335
  animators?: Type<NonEmptyArray<DivAnimator>>;
10046
10336
  /**
@@ -10092,11 +10382,11 @@ declare class DivSwitch<T extends DivSwitchProps = DivSwitchProps> {
10092
10382
  */
10093
10383
  id?: Type<string>;
10094
10384
  /**
10095
- * Enables or disables the ability to switch an element.
10385
+ * Enables or disables the element's toggle functionality.
10096
10386
  */
10097
10387
  is_enabled?: Type<IntBoolean | DivExpression>;
10098
10388
  /**
10099
- * The name of the boolean variable for the switch.
10389
+ * Name of the Boolean variable assigned to the toggle.
10100
10390
  */
10101
10391
  is_on_variable: Type<string>;
10102
10392
  /**
@@ -10110,8 +10400,10 @@ declare class DivSwitch<T extends DivSwitchProps = DivSwitchProps> {
10110
10400
  */
10111
10401
  margins?: Type<IDivEdgeInsets>;
10112
10402
  /**
10113
- * The color of the switch when it is on. If no color is specified, the default system color is
10114
- * used on iOS, and the color specified in `Div2Context` is used on Android.
10403
+ * Color of the toggle in the enabled state. If the color is omitted:
10404
+ : iOS standard system color
10405
+ * is used
10406
+ : the color specified in `Div2Context` on Android is used.
10115
10407
  */
10116
10408
  on_color?: Type<string | DivExpression>;
10117
10409
  /**
@@ -10237,7 +10529,7 @@ interface DivSwitchProps {
10237
10529
  /**
10238
10530
  * Declaration of animators that change variable values over time.
10239
10531
  *
10240
- * Platforms: android, ios
10532
+ * Platforms: android, ios, web
10241
10533
  */
10242
10534
  animators?: Type<NonEmptyArray<DivAnimator>>;
10243
10535
  /**
@@ -10289,11 +10581,11 @@ interface DivSwitchProps {
10289
10581
  */
10290
10582
  id?: Type<string>;
10291
10583
  /**
10292
- * Enables or disables the ability to switch an element.
10584
+ * Enables or disables the element's toggle functionality.
10293
10585
  */
10294
10586
  is_enabled?: Type<IntBoolean | DivExpression>;
10295
10587
  /**
10296
- * The name of the boolean variable for the switch.
10588
+ * Name of the Boolean variable assigned to the toggle.
10297
10589
  */
10298
10590
  is_on_variable: Type<string>;
10299
10591
  /**
@@ -10307,8 +10599,10 @@ interface DivSwitchProps {
10307
10599
  */
10308
10600
  margins?: Type<IDivEdgeInsets>;
10309
10601
  /**
10310
- * The color of the switch when it is on. If no color is specified, the default system color is
10311
- * used on iOS, and the color specified in `Div2Context` is used on Android.
10602
+ * Color of the toggle in the enabled state. If the color is omitted:
10603
+ : iOS standard system color
10604
+ * is used
10605
+ : the color specified in `Div2Context` on Android is used.
10312
10606
  */
10313
10607
  on_color?: Type<string | DivExpression>;
10314
10608
  /**
@@ -10440,7 +10734,7 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
10440
10734
  /**
10441
10735
  * Declaration of animators that change variable values over time.
10442
10736
  *
10443
- * Platforms: android, ios
10737
+ * Platforms: android, ios, web
10444
10738
  */
10445
10739
  animators?: Type<NonEmptyArray<DivAnimator>>;
10446
10740
  /**
@@ -10682,7 +10976,7 @@ interface DivTabsProps {
10682
10976
  /**
10683
10977
  * Declaration of animators that change variable values over time.
10684
10978
  *
10685
- * Platforms: android, ios
10979
+ * Platforms: android, ios, web
10686
10980
  */
10687
10981
  animators?: Type<NonEmptyArray<DivAnimator>>;
10688
10982
  /**
@@ -11066,7 +11360,7 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
11066
11360
  /**
11067
11361
  * Declaration of animators that change variable values over time.
11068
11362
  *
11069
- * Platforms: android, ios
11363
+ * Platforms: android, ios, web
11070
11364
  */
11071
11365
  animators?: Type<NonEmptyArray<DivAnimator>>;
11072
11366
  /**
@@ -11168,6 +11462,20 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
11168
11462
  * measurement, see [Layout inside the card](../../layout).
11169
11463
  */
11170
11464
  height?: Type<DivSize>;
11465
+ /**
11466
+ * Actions performed when hovering over an element ends. Available on platforms with pointing
11467
+ * device support (mouse, stylus, etc).
11468
+ *
11469
+ * Platforms: not supported
11470
+ */
11471
+ hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
11472
+ /**
11473
+ * Actions performed when hovering over an element. Available on platforms with pointing device
11474
+ * support (mouse, stylus, etc).
11475
+ *
11476
+ * Platforms: not supported
11477
+ */
11478
+ hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
11171
11479
  /**
11172
11480
  * Element ID. It must be unique within the root element. It is used as `accessibilityIdentifier`
11173
11481
  * on iOS.
@@ -11220,6 +11528,18 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
11220
11528
  * Internal margins from the element stroke.
11221
11529
  */
11222
11530
  paddings?: Type<IDivEdgeInsets>;
11531
+ /**
11532
+ * Actions performed when an element is released.
11533
+ *
11534
+ * Platforms: not supported
11535
+ */
11536
+ press_end_actions?: Type<NonEmptyArray<IDivAction>>;
11537
+ /**
11538
+ * Actions performed when an element is pressed.
11539
+ *
11540
+ * Platforms: not supported
11541
+ */
11542
+ press_start_actions?: Type<NonEmptyArray<IDivAction>>;
11223
11543
  /**
11224
11544
  * A character range in which additional style parameters can be set. Defined by mandatory
11225
11545
  * `start` and `end` fields.
@@ -11286,8 +11606,8 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
11286
11606
  */
11287
11607
  text_shadow?: Type<IDivShadow>;
11288
11608
  /**
11289
- * Set text width to maximal line width, works only with `wrap_content` width with
11290
- * `constrained=true` and `max_size` set.
11609
+ * Limit the text width to the maximum line width. Applies only when the width is set to
11610
+ * `wrap_content`, `constrained=true`, and `max_size` is specified.
11291
11611
  *
11292
11612
  * Platforms: android, ios
11293
11613
  */
@@ -11418,7 +11738,7 @@ interface DivTextProps {
11418
11738
  /**
11419
11739
  * Declaration of animators that change variable values over time.
11420
11740
  *
11421
- * Platforms: android, ios
11741
+ * Platforms: android, ios, web
11422
11742
  */
11423
11743
  animators?: Type<NonEmptyArray<DivAnimator>>;
11424
11744
  /**
@@ -11520,6 +11840,20 @@ interface DivTextProps {
11520
11840
  * measurement, see [Layout inside the card](../../layout).
11521
11841
  */
11522
11842
  height?: Type<DivSize>;
11843
+ /**
11844
+ * Actions performed when hovering over an element ends. Available on platforms with pointing
11845
+ * device support (mouse, stylus, etc).
11846
+ *
11847
+ * Platforms: not supported
11848
+ */
11849
+ hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
11850
+ /**
11851
+ * Actions performed when hovering over an element. Available on platforms with pointing device
11852
+ * support (mouse, stylus, etc).
11853
+ *
11854
+ * Platforms: not supported
11855
+ */
11856
+ hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
11523
11857
  /**
11524
11858
  * Element ID. It must be unique within the root element. It is used as `accessibilityIdentifier`
11525
11859
  * on iOS.
@@ -11572,6 +11906,18 @@ interface DivTextProps {
11572
11906
  * Internal margins from the element stroke.
11573
11907
  */
11574
11908
  paddings?: Type<IDivEdgeInsets>;
11909
+ /**
11910
+ * Actions performed when an element is released.
11911
+ *
11912
+ * Platforms: not supported
11913
+ */
11914
+ press_end_actions?: Type<NonEmptyArray<IDivAction>>;
11915
+ /**
11916
+ * Actions performed when an element is pressed.
11917
+ *
11918
+ * Platforms: not supported
11919
+ */
11920
+ press_start_actions?: Type<NonEmptyArray<IDivAction>>;
11575
11921
  /**
11576
11922
  * A character range in which additional style parameters can be set. Defined by mandatory
11577
11923
  * `start` and `end` fields.
@@ -11638,8 +11984,8 @@ interface DivTextProps {
11638
11984
  */
11639
11985
  text_shadow?: Type<IDivShadow>;
11640
11986
  /**
11641
- * Set text width to maximal line width, works only with `wrap_content` width with
11642
- * `constrained=true` and `max_size` set.
11987
+ * Limit the text width to the maximum line width. Applies only when the width is set to
11988
+ * `wrap_content`, `constrained=true`, and `max_size` is specified.
11643
11989
  *
11644
11990
  * Platforms: android, ios
11645
11991
  */
@@ -11778,6 +12124,17 @@ interface IDivTextImage {
11778
12124
  * Image height.
11779
12125
  */
11780
12126
  height?: Type<DivFixedSize>;
12127
+ /**
12128
+ * Defines direction in `start` parameter:
12129
+ `normal` - regular indexation for strings ([0, 1, 2,
12130
+ * ..., N]). Use to insert an image by index relative to the begging of a string.
12131
+ `reversed` -
12132
+ * indexation from the end towards the begging of a string ([N, ..., 2, 1, 0]). Use to insert an
12133
+ * image by index relative to the end of a string.
12134
+ *
12135
+ * Platforms: not supported
12136
+ */
12137
+ indexing_direction?: Type<ImageIndexingDirection | DivExpression>;
11781
12138
  /**
11782
12139
  * Background image must be loaded before the display.
11783
12140
  *
@@ -11808,6 +12165,7 @@ interface IDivTextImage {
11808
12165
  */
11809
12166
  width?: Type<DivFixedSize>;
11810
12167
  }
12168
+ declare type ImageIndexingDirection = 'normal' | 'reversed';
11811
12169
  interface IImageAccessibility {
11812
12170
  /**
11813
12171
  * Element description. It is used as the main description for screen reading applications.
@@ -11843,8 +12201,8 @@ interface IDivTextRange {
11843
12201
  */
11844
12202
  border?: Type<IDivTextRangeBorder>;
11845
12203
  /**
11846
- * Ordinal number of the last character to be included in the range. If property is omitted, the
11847
- * range will end at the last character of the text.
12204
+ * Ordinal number of the last character to be included in the range. If the property is omitted,
12205
+ * the range ends at the last character of the text.
11848
12206
  */
11849
12207
  end?: Type<number | DivExpression>;
11850
12208
  /**
@@ -12105,7 +12463,7 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
12105
12463
  /**
12106
12464
  * Declaration of animators that change variable values over time.
12107
12465
  *
12108
- * Platforms: android, ios
12466
+ * Platforms: android, ios, web
12109
12467
  */
12110
12468
  animators?: Type<NonEmptyArray<DivAnimator>>;
12111
12469
  /**
@@ -12354,7 +12712,7 @@ interface DivVideoProps {
12354
12712
  /**
12355
12713
  * Declaration of animators that change variable values over time.
12356
12714
  *
12357
- * Platforms: android, ios
12715
+ * Platforms: android, ios, web
12358
12716
  */
12359
12717
  animators?: Type<NonEmptyArray<DivAnimator>>;
12360
12718
  /**
@@ -12757,7 +13115,7 @@ interface IDivWrapContentSizeConstraintSize {
12757
13115
  }
12758
13116
 
12759
13117
  /**
12760
- * Specifies container's end as scroll destination.
13118
+ * Specifies the end of the container as the scrolling end position.
12761
13119
  */
12762
13120
  declare class EndDestination<T extends EndDestinationProps = EndDestinationProps> {
12763
13121
  readonly _props?: Exact<EndDestinationProps, T>;
@@ -12768,20 +13126,20 @@ interface EndDestinationProps {
12768
13126
  }
12769
13127
 
12770
13128
  /**
12771
- * Specifies element with provided index as scroll destination.
13129
+ * Specifies the element with the given index as the scrolling end position.
12772
13130
  */
12773
13131
  declare class IndexDestination<T extends IndexDestinationProps = IndexDestinationProps> {
12774
13132
  readonly _props?: Exact<IndexDestinationProps, T>;
12775
13133
  readonly type = "index";
12776
13134
  /**
12777
- * Index of contaner's item.
13135
+ * Container element index.
12778
13136
  */
12779
13137
  value: Type<number | DivExpression>;
12780
13138
  constructor(props: Exact<IndexDestinationProps, T>);
12781
13139
  }
12782
13140
  interface IndexDestinationProps {
12783
13141
  /**
12784
- * Index of contaner's item.
13142
+ * Container element index.
12785
13143
  */
12786
13144
  value: Type<number | DivExpression>;
12787
13145
  }
@@ -12861,27 +13219,27 @@ interface NumberVariableProps {
12861
13219
  }
12862
13220
 
12863
13221
  /**
12864
- * Specifies position measured in `dp` from container's start as scroll destination. Applicable
12865
- * only in `gallery`.
13222
+ * Specifies the position measured in `dp` from the container start as the scrolling end
13223
+ * position. Only applies in `gallery`.
12866
13224
  */
12867
13225
  declare class OffsetDestination<T extends OffsetDestinationProps = OffsetDestinationProps> {
12868
13226
  readonly _props?: Exact<OffsetDestinationProps, T>;
12869
13227
  readonly type = "offset";
12870
13228
  /**
12871
- * Position in `dp`.
13229
+ * Position measured in `dp`.
12872
13230
  */
12873
13231
  value: Type<number | DivExpression>;
12874
13232
  constructor(props: Exact<OffsetDestinationProps, T>);
12875
13233
  }
12876
13234
  interface OffsetDestinationProps {
12877
13235
  /**
12878
- * Position in `dp`.
13236
+ * Position measured in `dp`.
12879
13237
  */
12880
13238
  value: Type<number | DivExpression>;
12881
13239
  }
12882
13240
 
12883
13241
  /**
12884
- * Specifies container's start as scroll destination.
13242
+ * Specifies the start of the container as the scrolling end position.
12885
13243
  */
12886
13244
  declare class StartDestination<T extends StartDestinationProps = StartDestinationProps> {
12887
13245
  readonly _props?: Exact<StartDestinationProps, T>;
@@ -13120,4 +13478,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
13120
13478
  };
13121
13479
  };
13122
13480
 
13123
- export { AccessibilityType, ArrayValue, ArrayValueProps, ArrayVariable, ArrayVariableProps, BooleanValue, BooleanValueProps, BooleanVariable, BooleanVariableProps, ColorValue, ColorValueProps, ColorVariable, ColorVariableProps, ContentText, ContentTextProps, ContentUrl, ContentUrlProps, DelimiterStyleOrientation, DictValue, DictValueProps, DictVariable, DictVariableProps, Div, DivAccessibilityMode, DivAccessibilityType, DivActionAnimatorStart, DivActionAnimatorStartProps, DivActionAnimatorStop, DivActionAnimatorStopProps, DivActionArrayInsertValue, DivActionArrayInsertValueProps, DivActionArrayRemoveValue, DivActionArrayRemoveValueProps, DivActionArraySetValue, DivActionArraySetValueProps, DivActionClearFocus, DivActionClearFocusProps, DivActionCopyToClipboard, DivActionCopyToClipboardContent, DivActionCopyToClipboardProps, DivActionDictSetValue, DivActionDictSetValueProps, DivActionDownload, DivActionDownloadProps, DivActionFocusElement, DivActionFocusElementProps, DivActionHideTooltip, DivActionHideTooltipProps, DivActionScrollBy, DivActionScrollByOverflow, DivActionScrollByProps, DivActionScrollDestination, DivActionScrollTo, DivActionScrollToProps, DivActionSetState, DivActionSetStateProps, DivActionSetStoredValue, DivActionSetStoredValueProps, DivActionSetVariable, DivActionSetVariableProps, DivActionShowTooltip, DivActionShowTooltipProps, DivActionSubmit, DivActionSubmitProps, DivActionTarget, DivActionTimer, DivActionTimerAction, DivActionTimerProps, DivActionTyped, DivActionVideo, DivActionVideoAction, DivActionVideoProps, DivAlignmentHorizontal, DivAlignmentVertical, DivAnimationDirection, DivAnimationInterpolator, DivAnimationName, DivAnimator, DivAppearanceSetTransition, DivAppearanceSetTransitionProps, DivAppearanceTransition, DivBackground, DivBlendMode, DivBlur, DivBlurProps, DivChangeBoundsTransition, DivChangeBoundsTransitionProps, DivChangeSetTransition, DivChangeSetTransitionProps, DivChangeTransition, DivCircleShape, DivCircleShapeProps, DivCloudBackground, DivCloudBackgroundProps, DivColorAnimator, DivColorAnimatorProps, DivContainer, DivContainerLayoutMode, DivContainerOrientation, DivContainerProps, DivContainerProps0, DivContainerProps1, DivContainerPropsBase, DivContentAlignmentHorizontal, DivContentAlignmentVertical, DivCount, DivCurrencyInputMask, DivCurrencyInputMaskProps, DivCustom, DivCustomProps, DivDefaultIndicatorItemPlacement, DivDefaultIndicatorItemPlacementProps, DivDrawable, DivEvaluableType, DivExpression, DivFadeTransition, DivFadeTransitionProps, DivFilter, DivFilterRtlMirror, DivFilterRtlMirrorProps, DivFixedCount, DivFixedCountProps, DivFixedLengthInputMask, DivFixedLengthInputMaskProps, DivFixedSize, DivFixedSizeProps, DivFontWeight, DivGallery, DivGalleryCrossContentAlignment, DivGalleryOrientation, DivGalleryProps, DivGalleryScrollMode, DivGalleryScrollbar, DivGifImage, DivGifImageProps, DivGradientBackground, DivGrid, DivGridProps, DivImage, DivImageBackground, DivImageBackgroundProps, DivImageProps, DivImageScale, DivIndicator, DivIndicatorAnimation, DivIndicatorItemPlacement, DivIndicatorProps, DivInfinityCount, DivInfinityCountProps, DivInput, DivInputAutocapitalization, DivInputEnterKeyType, DivInputFilter, DivInputFilterExpression, DivInputFilterExpressionProps, DivInputFilterRegex, DivInputFilterRegexProps, DivInputKeyboardType, DivInputMask, DivInputProps, DivInputValidator, DivInputValidatorExpression, DivInputValidatorExpressionProps, DivInputValidatorRegex, DivInputValidatorRegexProps, DivLineStyle, DivLinearGradient, DivLinearGradientProps, DivMatchParentSize, DivMatchParentSizeProps, DivNeighbourPageSize, DivNeighbourPageSizeProps, DivNinePatchBackground, DivNinePatchBackgroundProps, DivNumberAnimator, DivNumberAnimatorProps, DivPageSize, DivPageSizeProps, DivPageTransformation, DivPageTransformationOverlap, DivPageTransformationOverlapProps, DivPageTransformationSlide, DivPageTransformationSlideProps, DivPager, DivPagerLayoutMode, DivPagerOrientation, DivPagerProps, DivPatchMode, DivPercentageSize, DivPercentageSizeProps, DivPhoneInputMask, DivPhoneInputMaskProps, DivPivot, DivPivotFixed, DivPivotFixedProps, DivPivotPercentage, DivPivotPercentageProps, DivRadialGradient, DivRadialGradientCenter, DivRadialGradientFixedCenter, DivRadialGradientFixedCenterProps, DivRadialGradientProps, DivRadialGradientRadius, DivRadialGradientRelativeCenter, DivRadialGradientRelativeCenterProps, DivRadialGradientRelativeRadius, DivRadialGradientRelativeRadiusProps, DivRadialGradientRelativeRadiusValue, DivRoundedRectangleShape, DivRoundedRectangleShapeProps, DivScaleTransition, DivScaleTransitionProps, DivSelect, DivSelectProps, DivSeparator, DivSeparatorProps, DivShape, DivShapeDrawable, DivShapeDrawableProps, DivSize, DivSizeUnit, DivSlideTransition, DivSlideTransitionEdge, DivSlideTransitionProps, DivSlider, DivSliderProps, DivSolidBackground, DivSolidBackgroundProps, DivState, DivStateProps, DivStretchIndicatorItemPlacement, DivStretchIndicatorItemPlacementProps, DivSwitch, DivSwitchProps, DivTabs, DivTabsProps, DivText, DivTextAlignmentVertical, DivTextGradient, DivTextProps, DivTextRangeBackground, DivTextTruncate, DivTooltipPosition, DivTransitionSelector, DivTransitionTrigger, DivTriggerMode, DivTypedValue, DivVariable, DivVideo, DivVideoProps, DivVideoScale, DivVideoSource, DivVideoSourceProps, DivVideoSourceResolution, DivVideoSourceResolutionProps, DivVisibility, DivWrapContentSize, DivWrapContentSizeProps, EndDestination, EndDestinationProps, Exact, IDivAbsoluteEdgeInsets, IDivAccessibility, IDivAction, IDivActionMenuItem, IDivActionSubmitRequest, IDivAnimation, IDivAnimatorBase, IDivAspect, IDivBase, IDivBorder, IDivCollectionItemBuilder, IDivCollectionItemBuilderPrototype, IDivContainerSeparator, IDivCornersRadius, IDivData, IDivDataState, IDivDimension, IDivDisappearAction, IDivDownloadCallbacks, IDivEdgeInsets, IDivExtension, IDivFixedLengthInputMaskPatternElement, IDivFocus, IDivFocusNextFocusIds, IDivFunction, IDivFunctionArgument, IDivInputMaskBase, IDivInputNativeInterface, IDivInputValidatorBase, IDivLayoutProvider, IDivPatch, IDivPatchChange, IDivPoint, IDivSelectOption, IDivSeparatorDelimiterStyle, IDivShadow, IDivSightAction, IDivSliderRange, IDivSliderTextStyle, IDivStateState, IDivStroke, IDivTabsItem, IDivTabsTabTitleDelimiter, IDivTabsTabTitleStyle, IDivTextEllipsis, IDivTextImage, IDivTextRange, IDivTextRangeBorder, IDivTimer, IDivTooltip, IDivTransform, IDivTransitionBase, IDivTrigger, IDivVisibilityAction, IDivWrapContentSizeConstraintSize, IImageAccessibility, IRequestHeader, ITemplates, IndexDestination, IndexDestinationProps, IntBoolean, IntegerValue, IntegerValueProps, IntegerVariable, IntegerVariableProps, NonEmptyArray, NumberValue, NumberValueProps, NumberVariable, NumberVariableProps, OffsetDestination, OffsetDestinationProps, RequestMethod, SafeDivExpression, StartDestination, StartDestinationProps, StringValue, StringValueProps, StringVariable, StringVariableProps, TabTitleStyleAnimationType, TemplateBlock, TemplateHelper, TemplatePropertyReference, TemplateResolvedAction, ThelperWithMemo, Type, UrlValue, UrlValueProps, UrlVariable, UrlVariableProps, copyTemplates, divCard, escapeCard, escapeExpression, expression, fixed, getTemplateHash, matchParent, reference, rewriteNames, rewriteRefs, rewriteTemplateVersions, runResolveDeps, template, templateHelper, templatesDepsMap, thelperVersion, thelperWithMemo, treeWalkDFS, weighted, wrapContent };
13481
+ export { AccessibilityType, ArrayValue, ArrayValueProps, ArrayVariable, ArrayVariableProps, BooleanValue, BooleanValueProps, BooleanVariable, BooleanVariableProps, ColorValue, ColorValueProps, ColorVariable, ColorVariableProps, ContentText, ContentTextProps, ContentUrl, ContentUrlProps, DelimiterStyleOrientation, DictValue, DictValueProps, DictVariable, DictVariableProps, Div, DivAccessibilityMode, DivAccessibilityType, DivActionAnimatorStart, DivActionAnimatorStartProps, DivActionAnimatorStop, DivActionAnimatorStopProps, DivActionArrayInsertValue, DivActionArrayInsertValueProps, DivActionArrayRemoveValue, DivActionArrayRemoveValueProps, DivActionArraySetValue, DivActionArraySetValueProps, DivActionClearFocus, DivActionClearFocusProps, DivActionCopyToClipboard, DivActionCopyToClipboardContent, DivActionCopyToClipboardProps, DivActionDictSetValue, DivActionDictSetValueProps, DivActionDownload, DivActionDownloadProps, DivActionFocusElement, DivActionFocusElementProps, DivActionHideTooltip, DivActionHideTooltipProps, DivActionScrollBy, DivActionScrollByOverflow, DivActionScrollByProps, DivActionScrollDestination, DivActionScrollTo, DivActionScrollToProps, DivActionSetState, DivActionSetStateProps, DivActionSetStoredValue, DivActionSetStoredValueProps, DivActionSetVariable, DivActionSetVariableProps, DivActionShowTooltip, DivActionShowTooltipProps, DivActionSubmit, DivActionSubmitProps, DivActionTarget, DivActionTimer, DivActionTimerAction, DivActionTimerProps, DivActionTyped, DivActionVideo, DivActionVideoAction, DivActionVideoProps, DivAlignmentHorizontal, DivAlignmentVertical, DivAnimationDirection, DivAnimationInterpolator, DivAnimationName, DivAnimator, DivAppearanceSetTransition, DivAppearanceSetTransitionProps, DivAppearanceTransition, DivBackground, DivBlendMode, DivBlur, DivBlurProps, DivChangeBoundsTransition, DivChangeBoundsTransitionProps, DivChangeSetTransition, DivChangeSetTransitionProps, DivChangeTransition, DivCircleShape, DivCircleShapeProps, DivCloudBackground, DivCloudBackgroundProps, DivColorAnimator, DivColorAnimatorProps, DivContainer, DivContainerLayoutMode, DivContainerOrientation, DivContainerProps, DivContainerProps0, DivContainerProps1, DivContainerPropsBase, DivContentAlignmentHorizontal, DivContentAlignmentVertical, DivCount, DivCurrencyInputMask, DivCurrencyInputMaskProps, DivCustom, DivCustomProps, DivDefaultIndicatorItemPlacement, DivDefaultIndicatorItemPlacementProps, DivDrawable, DivEvaluableType, DivExpression, DivFadeTransition, DivFadeTransitionProps, DivFilter, DivFilterRtlMirror, DivFilterRtlMirrorProps, DivFixedCount, DivFixedCountProps, DivFixedLengthInputMask, DivFixedLengthInputMaskProps, DivFixedSize, DivFixedSizeProps, DivFontWeight, DivGallery, DivGalleryCrossContentAlignment, DivGalleryOrientation, DivGalleryProps, DivGalleryScrollMode, DivGalleryScrollbar, DivGifImage, DivGifImageProps, DivGradientBackground, DivGrid, DivGridProps, DivImage, DivImageBackground, DivImageBackgroundProps, DivImageProps, DivImageScale, DivIndicator, DivIndicatorAnimation, DivIndicatorItemPlacement, DivIndicatorProps, DivInfinityCount, DivInfinityCountProps, DivInput, DivInputAutocapitalization, DivInputEnterKeyType, DivInputFilter, DivInputFilterExpression, DivInputFilterExpressionProps, DivInputFilterRegex, DivInputFilterRegexProps, DivInputKeyboardType, DivInputMask, DivInputProps, DivInputValidator, DivInputValidatorExpression, DivInputValidatorExpressionProps, DivInputValidatorRegex, DivInputValidatorRegexProps, DivLineStyle, DivLinearGradient, DivLinearGradientProps, DivMatchParentSize, DivMatchParentSizeProps, DivNeighbourPageSize, DivNeighbourPageSizeProps, DivNinePatchBackground, DivNinePatchBackgroundProps, DivNumberAnimator, DivNumberAnimatorProps, DivPageContentSize, DivPageContentSizeAlignment, DivPageContentSizeProps, DivPageSize, DivPageSizeProps, DivPageTransformation, DivPageTransformationOverlap, DivPageTransformationOverlapProps, DivPageTransformationSlide, DivPageTransformationSlideProps, DivPager, DivPagerLayoutMode, DivPagerOrientation, DivPagerProps, DivPatchMode, DivPercentageSize, DivPercentageSizeProps, DivPhoneInputMask, DivPhoneInputMaskProps, DivPivot, DivPivotFixed, DivPivotFixedProps, DivPivotPercentage, DivPivotPercentageProps, DivRadialGradient, DivRadialGradientCenter, DivRadialGradientFixedCenter, DivRadialGradientFixedCenterProps, DivRadialGradientProps, DivRadialGradientRadius, DivRadialGradientRelativeCenter, DivRadialGradientRelativeCenterProps, DivRadialGradientRelativeRadius, DivRadialGradientRelativeRadiusProps, DivRadialGradientRelativeRadiusValue, DivRoundedRectangleShape, DivRoundedRectangleShapeProps, DivScaleTransition, DivScaleTransitionProps, DivSelect, DivSelectProps, DivSeparator, DivSeparatorProps, DivShape, DivShapeDrawable, DivShapeDrawableProps, DivSize, DivSizeUnit, DivSlideTransition, DivSlideTransitionEdge, DivSlideTransitionProps, DivSlider, DivSliderProps, DivSolidBackground, DivSolidBackgroundProps, DivState, DivStateProps, DivStretchIndicatorItemPlacement, DivStretchIndicatorItemPlacementProps, DivSwitch, DivSwitchProps, DivTabs, DivTabsProps, DivText, DivTextAlignmentVertical, DivTextGradient, DivTextProps, DivTextRangeBackground, DivTextTruncate, DivTooltipPosition, DivTransitionSelector, DivTransitionTrigger, DivTriggerMode, DivTypedValue, DivVariable, DivVideo, DivVideoProps, DivVideoScale, DivVideoSource, DivVideoSourceProps, DivVideoSourceResolution, DivVideoSourceResolutionProps, DivVisibility, DivWrapContentSize, DivWrapContentSizeProps, EndDestination, EndDestinationProps, Exact, IDivAbsoluteEdgeInsets, IDivAccessibility, IDivAction, IDivActionMenuItem, IDivActionSubmitRequest, IDivAnimation, IDivAnimatorBase, IDivAspect, IDivBase, IDivBorder, IDivCollectionItemBuilder, IDivCollectionItemBuilderPrototype, IDivContainerSeparator, IDivCornersRadius, IDivData, IDivDataState, IDivDimension, IDivDisappearAction, IDivDownloadCallbacks, IDivEdgeInsets, IDivExtension, IDivFixedLengthInputMaskPatternElement, IDivFocus, IDivFocusNextFocusIds, IDivFunction, IDivFunctionArgument, IDivInputMaskBase, IDivInputNativeInterface, IDivInputValidatorBase, IDivLayoutProvider, IDivPatch, IDivPatchChange, IDivPoint, IDivSelectOption, IDivSeparatorDelimiterStyle, IDivShadow, IDivSightAction, IDivSliderRange, IDivSliderTextStyle, IDivStateState, IDivStroke, IDivTabsItem, IDivTabsTabTitleDelimiter, IDivTabsTabTitleStyle, IDivTextEllipsis, IDivTextImage, IDivTextRange, IDivTextRangeBorder, IDivTimer, IDivTooltip, IDivTransform, IDivTransitionBase, IDivTrigger, IDivVisibilityAction, IDivWrapContentSizeConstraintSize, IImageAccessibility, IRequestHeader, ITemplates, ImageIndexingDirection, IndexDestination, IndexDestinationProps, IntBoolean, IntegerValue, IntegerValueProps, IntegerVariable, IntegerVariableProps, NonEmptyArray, NumberValue, NumberValueProps, NumberVariable, NumberVariableProps, OffsetDestination, OffsetDestinationProps, RequestMethod, SafeDivExpression, StartDestination, StartDestinationProps, StringValue, StringValueProps, StringVariable, StringVariableProps, TabTitleStyleAnimationType, TemplateBlock, TemplateHelper, TemplatePropertyReference, TemplateResolvedAction, ThelperWithMemo, Type, UrlValue, UrlValueProps, UrlVariable, UrlVariableProps, copyTemplates, divCard, escapeCard, escapeExpression, expression, fixed, getTemplateHash, matchParent, reference, rewriteNames, rewriteRefs, rewriteTemplateVersions, runResolveDeps, template, templateHelper, templatesDepsMap, thelperVersion, thelperWithMemo, treeWalkDFS, weighted, wrapContent };