@divkitframework/jsonbuilder 30.25.0 → 30.27.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
  /**
@@ -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
  /**
@@ -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).
@@ -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).
@@ -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>`
@@ -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>`
@@ -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).
@@ -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).
@@ -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>`
@@ -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>`
@@ -5823,14 +6029,13 @@ 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
6034
  * Platforms: ios
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
6040
  * Platforms: ios
5836
6041
  */
@@ -6142,14 +6347,13 @@ 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
6352
  * Platforms: ios
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
6358
  * Platforms: ios
6155
6359
  */
@@ -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
  */
@@ -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.
@@ -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).
@@ -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).
@@ -10013,8 +10291,8 @@ interface IDivStroke {
10013
10291
  }
10014
10292
 
10015
10293
  /**
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.
10294
+ * Two-state toggle that allows the user to control a Boolean variable. The element's
10295
+ * look-and-feel varies by platform. The toggle has a fixed size in iOS.
10018
10296
  */
10019
10297
  declare class DivSwitch<T extends DivSwitchProps = DivSwitchProps> {
10020
10298
  readonly _props?: Exact<DivSwitchProps, T>;
@@ -10092,11 +10370,11 @@ declare class DivSwitch<T extends DivSwitchProps = DivSwitchProps> {
10092
10370
  */
10093
10371
  id?: Type<string>;
10094
10372
  /**
10095
- * Enables or disables the ability to switch an element.
10373
+ * Enables or disables the element's toggle functionality.
10096
10374
  */
10097
10375
  is_enabled?: Type<IntBoolean | DivExpression>;
10098
10376
  /**
10099
- * The name of the boolean variable for the switch.
10377
+ * Name of the Boolean variable assigned to the toggle.
10100
10378
  */
10101
10379
  is_on_variable: Type<string>;
10102
10380
  /**
@@ -10110,8 +10388,10 @@ declare class DivSwitch<T extends DivSwitchProps = DivSwitchProps> {
10110
10388
  */
10111
10389
  margins?: Type<IDivEdgeInsets>;
10112
10390
  /**
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.
10391
+ * Color of the toggle in the enabled state. If the color is omitted:
10392
+ : iOS standard system color
10393
+ * is used
10394
+ : the color specified in 'Div2Context' on Android is used.
10115
10395
  */
10116
10396
  on_color?: Type<string | DivExpression>;
10117
10397
  /**
@@ -10289,11 +10569,11 @@ interface DivSwitchProps {
10289
10569
  */
10290
10570
  id?: Type<string>;
10291
10571
  /**
10292
- * Enables or disables the ability to switch an element.
10572
+ * Enables or disables the element's toggle functionality.
10293
10573
  */
10294
10574
  is_enabled?: Type<IntBoolean | DivExpression>;
10295
10575
  /**
10296
- * The name of the boolean variable for the switch.
10576
+ * Name of the Boolean variable assigned to the toggle.
10297
10577
  */
10298
10578
  is_on_variable: Type<string>;
10299
10579
  /**
@@ -10307,8 +10587,10 @@ interface DivSwitchProps {
10307
10587
  */
10308
10588
  margins?: Type<IDivEdgeInsets>;
10309
10589
  /**
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.
10590
+ * Color of the toggle in the enabled state. If the color is omitted:
10591
+ : iOS standard system color
10592
+ * is used
10593
+ : the color specified in 'Div2Context' on Android is used.
10312
10594
  */
10313
10595
  on_color?: Type<string | DivExpression>;
10314
10596
  /**
@@ -11168,6 +11450,20 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
11168
11450
  * measurement, see [Layout inside the card](../../layout).
11169
11451
  */
11170
11452
  height?: Type<DivSize>;
11453
+ /**
11454
+ * Actions performed when hovering over an element ends. Available on platforms with pointing
11455
+ * device support (mouse, stylus, etc).
11456
+ *
11457
+ * Platforms: not supported
11458
+ */
11459
+ hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
11460
+ /**
11461
+ * Actions performed when hovering over an element. Available on platforms with pointing device
11462
+ * support (mouse, stylus, etc).
11463
+ *
11464
+ * Platforms: not supported
11465
+ */
11466
+ hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
11171
11467
  /**
11172
11468
  * Element ID. It must be unique within the root element. It is used as `accessibilityIdentifier`
11173
11469
  * on iOS.
@@ -11220,6 +11516,18 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
11220
11516
  * Internal margins from the element stroke.
11221
11517
  */
11222
11518
  paddings?: Type<IDivEdgeInsets>;
11519
+ /**
11520
+ * Actions performed when an element is released.
11521
+ *
11522
+ * Platforms: not supported
11523
+ */
11524
+ press_end_actions?: Type<NonEmptyArray<IDivAction>>;
11525
+ /**
11526
+ * Actions performed when an element is pressed.
11527
+ *
11528
+ * Platforms: not supported
11529
+ */
11530
+ press_start_actions?: Type<NonEmptyArray<IDivAction>>;
11223
11531
  /**
11224
11532
  * A character range in which additional style parameters can be set. Defined by mandatory
11225
11533
  * `start` and `end` fields.
@@ -11286,8 +11594,8 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
11286
11594
  */
11287
11595
  text_shadow?: Type<IDivShadow>;
11288
11596
  /**
11289
- * Set text width to maximal line width, works only with wrap_content width with constrained=true
11290
- * and max_size set
11597
+ * Limit the text width to the maximum line width. Applies only when the width is set to
11598
+ * 'wrap_content', 'constrained=true', and 'max_size' is specified.
11291
11599
  *
11292
11600
  * Platforms: android, ios
11293
11601
  */
@@ -11520,6 +11828,20 @@ interface DivTextProps {
11520
11828
  * measurement, see [Layout inside the card](../../layout).
11521
11829
  */
11522
11830
  height?: Type<DivSize>;
11831
+ /**
11832
+ * Actions performed when hovering over an element ends. Available on platforms with pointing
11833
+ * device support (mouse, stylus, etc).
11834
+ *
11835
+ * Platforms: not supported
11836
+ */
11837
+ hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
11838
+ /**
11839
+ * Actions performed when hovering over an element. Available on platforms with pointing device
11840
+ * support (mouse, stylus, etc).
11841
+ *
11842
+ * Platforms: not supported
11843
+ */
11844
+ hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
11523
11845
  /**
11524
11846
  * Element ID. It must be unique within the root element. It is used as `accessibilityIdentifier`
11525
11847
  * on iOS.
@@ -11572,6 +11894,18 @@ interface DivTextProps {
11572
11894
  * Internal margins from the element stroke.
11573
11895
  */
11574
11896
  paddings?: Type<IDivEdgeInsets>;
11897
+ /**
11898
+ * Actions performed when an element is released.
11899
+ *
11900
+ * Platforms: not supported
11901
+ */
11902
+ press_end_actions?: Type<NonEmptyArray<IDivAction>>;
11903
+ /**
11904
+ * Actions performed when an element is pressed.
11905
+ *
11906
+ * Platforms: not supported
11907
+ */
11908
+ press_start_actions?: Type<NonEmptyArray<IDivAction>>;
11575
11909
  /**
11576
11910
  * A character range in which additional style parameters can be set. Defined by mandatory
11577
11911
  * `start` and `end` fields.
@@ -11638,8 +11972,8 @@ interface DivTextProps {
11638
11972
  */
11639
11973
  text_shadow?: Type<IDivShadow>;
11640
11974
  /**
11641
- * Set text width to maximal line width, works only with wrap_content width with constrained=true
11642
- * and max_size set
11975
+ * Limit the text width to the maximum line width. Applies only when the width is set to
11976
+ * 'wrap_content', 'constrained=true', and 'max_size' is specified.
11643
11977
  *
11644
11978
  * Platforms: android, ios
11645
11979
  */
@@ -11843,8 +12177,8 @@ interface IDivTextRange {
11843
12177
  */
11844
12178
  border?: Type<IDivTextRangeBorder>;
11845
12179
  /**
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.
12180
+ * Ordinal number of the last character to be included in the range. If the property is omitted,
12181
+ * the range ends at the last character of the text.
11848
12182
  */
11849
12183
  end?: Type<number | DivExpression>;
11850
12184
  /**
@@ -12757,7 +13091,7 @@ interface IDivWrapContentSizeConstraintSize {
12757
13091
  }
12758
13092
 
12759
13093
  /**
12760
- * Specifies container's end as scroll destination.
13094
+ * Specifies the end of the container as the scrolling end position.
12761
13095
  */
12762
13096
  declare class EndDestination<T extends EndDestinationProps = EndDestinationProps> {
12763
13097
  readonly _props?: Exact<EndDestinationProps, T>;
@@ -12768,20 +13102,20 @@ interface EndDestinationProps {
12768
13102
  }
12769
13103
 
12770
13104
  /**
12771
- * Specifies element with provided index as scroll destination.
13105
+ * Specifies the element with the given index as the scrolling end position.
12772
13106
  */
12773
13107
  declare class IndexDestination<T extends IndexDestinationProps = IndexDestinationProps> {
12774
13108
  readonly _props?: Exact<IndexDestinationProps, T>;
12775
13109
  readonly type = "index";
12776
13110
  /**
12777
- * Index of contaner's item.
13111
+ * Container element index.
12778
13112
  */
12779
13113
  value: Type<number | DivExpression>;
12780
13114
  constructor(props: Exact<IndexDestinationProps, T>);
12781
13115
  }
12782
13116
  interface IndexDestinationProps {
12783
13117
  /**
12784
- * Index of contaner's item.
13118
+ * Container element index.
12785
13119
  */
12786
13120
  value: Type<number | DivExpression>;
12787
13121
  }
@@ -12861,27 +13195,27 @@ interface NumberVariableProps {
12861
13195
  }
12862
13196
 
12863
13197
  /**
12864
- * Specifies position measured in `dp` from container's start as scroll destination. Applicable
12865
- * only in `gallery`.
13198
+ * Specifies the position measured in 'dp' from the container start as the scrolling end
13199
+ * position. Only applies in 'gallery'.
12866
13200
  */
12867
13201
  declare class OffsetDestination<T extends OffsetDestinationProps = OffsetDestinationProps> {
12868
13202
  readonly _props?: Exact<OffsetDestinationProps, T>;
12869
13203
  readonly type = "offset";
12870
13204
  /**
12871
- * Position in `dp`.
13205
+ * Position measured in 'dp'.
12872
13206
  */
12873
13207
  value: Type<number | DivExpression>;
12874
13208
  constructor(props: Exact<OffsetDestinationProps, T>);
12875
13209
  }
12876
13210
  interface OffsetDestinationProps {
12877
13211
  /**
12878
- * Position in `dp`.
13212
+ * Position measured in 'dp'.
12879
13213
  */
12880
13214
  value: Type<number | DivExpression>;
12881
13215
  }
12882
13216
 
12883
13217
  /**
12884
- * Specifies container's start as scroll destination.
13218
+ * Specifies the start of the container as the scrolling end position.
12885
13219
  */
12886
13220
  declare class StartDestination<T extends StartDestinationProps = StartDestinationProps> {
12887
13221
  readonly _props?: Exact<StartDestinationProps, T>;
@@ -13120,4 +13454,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
13120
13454
  };
13121
13455
  };
13122
13456
 
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 };
13457
+ 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, 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 };