@divkitframework/jsonbuilder 30.27.0 → 30.29.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.
@@ -298,6 +298,13 @@ interface IDivAccessibility {
298
298
  * Platforms: android, ios
299
299
  */
300
300
  hint?: Type<string | DivExpression>;
301
+ /**
302
+ * Indicates the current status of the checkbox or radio button. `true` is selected, `false` is
303
+ * not selected.
304
+ *
305
+ * Platforms: not supported
306
+ */
307
+ is_checked?: Type<IntBoolean | DivExpression>;
301
308
  /**
302
309
  * The way the accessibility tree is organized. In the `merge` mode the accessibility service
303
310
  * perceives an element together with a subtree as a whole. In the `exclude` mode an element
@@ -328,7 +335,7 @@ interface IDivAccessibility {
328
335
  type?: Type<DivAccessibilityType>;
329
336
  }
330
337
  declare type DivAccessibilityMode = 'default' | 'merge' | 'exclude';
331
- declare type DivAccessibilityType = 'none' | 'button' | 'image' | 'text' | 'edit_text' | 'header' | 'tab_bar' | 'list' | 'select' | 'auto';
338
+ declare type DivAccessibilityType = 'none' | 'button' | 'image' | 'text' | 'edit_text' | 'header' | 'tab_bar' | 'list' | 'select' | 'checkbox' | 'radio' | 'auto';
332
339
 
333
340
  /**
334
341
  * It defines an action when clicking on an element.
@@ -661,7 +668,7 @@ interface DivActionHideTooltipProps {
661
668
  }
662
669
 
663
670
  /**
664
- * Scrolls the container by 'item_count' or 'offset' starting from the current position. If both
671
+ * Scrolls the container by `item_count` or `offset` starting from the current position. If both
665
672
  * values are specified, the action will be combined. For scrolling back, use negative values.
666
673
  */
667
674
  declare class DivActionScrollBy<T extends DivActionScrollByProps = DivActionScrollByProps> {
@@ -680,13 +687,13 @@ declare class DivActionScrollBy<T extends DivActionScrollByProps = DivActionScro
680
687
  */
681
688
  item_count?: Type<number | DivExpression>;
682
689
  /**
683
- * Scrolling distance measured in 'dp' from the current position. For scrolling back, use
684
- * negative values. Only applies in 'gallery'.
690
+ * Scrolling distance measured in `dp` from the current position. For scrolling back, use
691
+ * negative values. Only applies in `gallery`.
685
692
  */
686
693
  offset?: Type<number | DivExpression>;
687
694
  /**
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.
695
+ * Defines navigation behavior at boundary elements:`clamp`: Stop navigation at the boundary
696
+ * element (default)`ring`: Navigate to the start or end, depending on the current element.
690
697
  */
691
698
  overflow?: Type<DivActionScrollByOverflow | DivExpression>;
692
699
  constructor(props: Exact<DivActionScrollByProps, T>);
@@ -705,13 +712,13 @@ interface DivActionScrollByProps {
705
712
  */
706
713
  item_count?: Type<number | DivExpression>;
707
714
  /**
708
- * Scrolling distance measured in 'dp' from the current position. For scrolling back, use
709
- * negative values. Only applies in 'gallery'.
715
+ * Scrolling distance measured in `dp` from the current position. For scrolling back, use
716
+ * negative values. Only applies in `gallery`.
710
717
  */
711
718
  offset?: Type<number | DivExpression>;
712
719
  /**
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.
720
+ * Defines navigation behavior at boundary elements:`clamp`: Stop navigation at the boundary
721
+ * element (default)`ring`: Navigate to the start or end, depending on the current element.
715
722
  */
716
723
  overflow?: Type<DivActionScrollByOverflow | DivExpression>;
717
724
  }
@@ -720,7 +727,7 @@ declare type DivActionScrollByOverflow = 'clamp' | 'ring';
720
727
  declare type DivActionScrollDestination = OffsetDestination | IndexDestination | StartDestination | EndDestination;
721
728
 
722
729
  /**
723
- * Scrolls to a position or switches to the container element specified by the 'destination'
730
+ * Scrolls to a position or switches to the container element specified by the `destination`
724
731
  * parameter.
725
732
  */
726
733
  declare class DivActionScrollTo<T extends DivActionScrollToProps = DivActionScrollToProps> {
@@ -731,10 +738,10 @@ declare class DivActionScrollTo<T extends DivActionScrollToProps = DivActionScro
731
738
  */
732
739
  animated?: Type<boolean | DivExpression>;
733
740
  /**
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.
741
+ * Defines the scrolling end position:`index`: Scroll to the element with the index provided in
742
+ * `value``offset`: Scroll to the position specified in `value` and measured in `dp` from the
743
+ * start of the container. Applies only in `gallery`;`start`: Scroll to the container
744
+ * start;`end`: Scroll to the container end.
738
745
  */
739
746
  destination: Type<DivActionScrollDestination>;
740
747
  /**
@@ -749,10 +756,10 @@ interface DivActionScrollToProps {
749
756
  */
750
757
  animated?: Type<boolean | DivExpression>;
751
758
  /**
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.
759
+ * Defines the scrolling end position:`index`: Scroll to the element with the index provided in
760
+ * `value``offset`: Scroll to the position specified in `value` and measured in `dp` from the
761
+ * start of the container. Applies only in `gallery`;`start`: Scroll to the container
762
+ * start;`end`: Scroll to the container end.
756
763
  */
757
764
  destination: Type<DivActionScrollDestination>;
758
765
  /**
@@ -1158,7 +1165,7 @@ interface IDivBase {
1158
1165
  /**
1159
1166
  * Declaration of animators that change variable values over time.
1160
1167
  *
1161
- * Platforms: android, ios
1168
+ * Platforms: android, ios, web
1162
1169
  */
1163
1170
  animators?: Type<NonEmptyArray<DivAnimator>>;
1164
1171
  /**
@@ -1195,7 +1202,7 @@ interface IDivBase {
1195
1202
  /**
1196
1203
  * User functions.
1197
1204
  *
1198
- * Platforms: ios
1205
+ * Platforms: android, ios, web
1199
1206
  */
1200
1207
  functions?: Type<NonEmptyArray<IDivFunction>>;
1201
1208
  /**
@@ -1680,7 +1687,7 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
1680
1687
  /**
1681
1688
  * Declaration of animators that change variable values over time.
1682
1689
  *
1683
- * Platforms: android, ios
1690
+ * Platforms: android, ios, web
1684
1691
  */
1685
1692
  animators?: Type<NonEmptyArray<DivAnimator>>;
1686
1693
  /**
@@ -1748,7 +1755,7 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
1748
1755
  /**
1749
1756
  * User functions.
1750
1757
  *
1751
- * Platforms: ios
1758
+ * Platforms: android, ios, web
1752
1759
  */
1753
1760
  functions?: Type<NonEmptyArray<IDivFunction>>;
1754
1761
  /**
@@ -1758,15 +1765,15 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
1758
1765
  */
1759
1766
  height?: Type<DivSize>;
1760
1767
  /**
1761
- * Actions performed when hovering over an element ends. Available on platforms with pointing
1762
- * device support (mouse, stylus, etc).
1768
+ * Actions performed after hovering over an element. Available on platforms that support pointing
1769
+ * devices (such as a mouse or stylus).
1763
1770
  *
1764
1771
  * Platforms: not supported
1765
1772
  */
1766
1773
  hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
1767
1774
  /**
1768
- * Actions performed when hovering over an element. Available on platforms with pointing device
1769
- * support (mouse, stylus, etc).
1775
+ * Actions performed when hovering over an element. Available on platforms that support pointing
1776
+ * devices (such as a mouse or stylus).
1770
1777
  *
1771
1778
  * Platforms: not supported
1772
1779
  */
@@ -1828,13 +1835,13 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
1828
1835
  */
1829
1836
  paddings?: Type<IDivEdgeInsets>;
1830
1837
  /**
1831
- * Actions performed when an element is released.
1838
+ * Actions performed after clicking/tapping an element.
1832
1839
  *
1833
1840
  * Platforms: not supported
1834
1841
  */
1835
1842
  press_end_actions?: Type<NonEmptyArray<IDivAction>>;
1836
1843
  /**
1837
- * Actions performed when an element is pressed.
1844
+ * Actions performed at the start of a click/tap on an element.
1838
1845
  *
1839
1846
  * Platforms: not supported
1840
1847
  */
@@ -1981,7 +1988,7 @@ interface DivContainerPropsBase {
1981
1988
  /**
1982
1989
  * Declaration of animators that change variable values over time.
1983
1990
  *
1984
- * Platforms: android, ios
1991
+ * Platforms: android, ios, web
1985
1992
  */
1986
1993
  animators?: Type<NonEmptyArray<DivAnimator>>;
1987
1994
  /**
@@ -2049,7 +2056,7 @@ interface DivContainerPropsBase {
2049
2056
  /**
2050
2057
  * User functions.
2051
2058
  *
2052
- * Platforms: ios
2059
+ * Platforms: android, ios, web
2053
2060
  */
2054
2061
  functions?: Type<NonEmptyArray<IDivFunction>>;
2055
2062
  /**
@@ -2059,15 +2066,15 @@ interface DivContainerPropsBase {
2059
2066
  */
2060
2067
  height?: Type<DivSize>;
2061
2068
  /**
2062
- * Actions performed when hovering over an element ends. Available on platforms with pointing
2063
- * device support (mouse, stylus, etc).
2069
+ * Actions performed after hovering over an element. Available on platforms that support pointing
2070
+ * devices (such as a mouse or stylus).
2064
2071
  *
2065
2072
  * Platforms: not supported
2066
2073
  */
2067
2074
  hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
2068
2075
  /**
2069
- * Actions performed when hovering over an element. Available on platforms with pointing device
2070
- * support (mouse, stylus, etc).
2076
+ * Actions performed when hovering over an element. Available on platforms that support pointing
2077
+ * devices (such as a mouse or stylus).
2071
2078
  *
2072
2079
  * Platforms: not supported
2073
2080
  */
@@ -2129,13 +2136,13 @@ interface DivContainerPropsBase {
2129
2136
  */
2130
2137
  paddings?: Type<IDivEdgeInsets>;
2131
2138
  /**
2132
- * Actions performed when an element is released.
2139
+ * Actions performed after clicking/tapping an element.
2133
2140
  *
2134
2141
  * Platforms: not supported
2135
2142
  */
2136
2143
  press_end_actions?: Type<NonEmptyArray<IDivAction>>;
2137
2144
  /**
2138
- * Actions performed when an element is pressed.
2145
+ * Actions performed at the start of a click/tap on an element.
2139
2146
  *
2140
2147
  * Platforms: not supported
2141
2148
  */
@@ -2371,7 +2378,7 @@ declare class DivCustom<T extends DivCustomProps = DivCustomProps> {
2371
2378
  /**
2372
2379
  * Declaration of animators that change variable values over time.
2373
2380
  *
2374
- * Platforms: android, ios
2381
+ * Platforms: android, ios, web
2375
2382
  */
2376
2383
  animators?: Type<NonEmptyArray<DivAnimator>>;
2377
2384
  /**
@@ -2416,7 +2423,7 @@ declare class DivCustom<T extends DivCustomProps = DivCustomProps> {
2416
2423
  /**
2417
2424
  * User functions.
2418
2425
  *
2419
- * Platforms: ios
2426
+ * Platforms: android, ios, web
2420
2427
  */
2421
2428
  functions?: Type<NonEmptyArray<IDivFunction>>;
2422
2429
  /**
@@ -2567,7 +2574,7 @@ interface DivCustomProps {
2567
2574
  /**
2568
2575
  * Declaration of animators that change variable values over time.
2569
2576
  *
2570
- * Platforms: android, ios
2577
+ * Platforms: android, ios, web
2571
2578
  */
2572
2579
  animators?: Type<NonEmptyArray<DivAnimator>>;
2573
2580
  /**
@@ -2612,7 +2619,7 @@ interface DivCustomProps {
2612
2619
  /**
2613
2620
  * User functions.
2614
2621
  *
2615
- * Platforms: ios
2622
+ * Platforms: android, ios, web
2616
2623
  */
2617
2624
  functions?: Type<NonEmptyArray<IDivFunction>>;
2618
2625
  /**
@@ -3181,7 +3188,7 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
3181
3188
  /**
3182
3189
  * Declaration of animators that change variable values over time.
3183
3190
  *
3184
- * Platforms: android, ios
3191
+ * Platforms: android, ios, web
3185
3192
  */
3186
3193
  animators?: Type<NonEmptyArray<DivAnimator>>;
3187
3194
  /**
@@ -3246,7 +3253,7 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
3246
3253
  /**
3247
3254
  * User functions.
3248
3255
  *
3249
- * Platforms: ios
3256
+ * Platforms: android, ios, web
3250
3257
  */
3251
3258
  functions?: Type<NonEmptyArray<IDivFunction>>;
3252
3259
  /**
@@ -3442,7 +3449,7 @@ interface DivGalleryProps {
3442
3449
  /**
3443
3450
  * Declaration of animators that change variable values over time.
3444
3451
  *
3445
- * Platforms: android, ios
3452
+ * Platforms: android, ios, web
3446
3453
  */
3447
3454
  animators?: Type<NonEmptyArray<DivAnimator>>;
3448
3455
  /**
@@ -3507,7 +3514,7 @@ interface DivGalleryProps {
3507
3514
  /**
3508
3515
  * User functions.
3509
3516
  *
3510
- * Platforms: ios
3517
+ * Platforms: android, ios, web
3511
3518
  */
3512
3519
  functions?: Type<NonEmptyArray<IDivFunction>>;
3513
3520
  /**
@@ -3727,7 +3734,7 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
3727
3734
  /**
3728
3735
  * Declaration of animators that change variable values over time.
3729
3736
  *
3730
- * Platforms: android, ios
3737
+ * Platforms: android, ios, web
3731
3738
  */
3732
3739
  animators?: Type<NonEmptyArray<DivAnimator>>;
3733
3740
  /**
@@ -3783,7 +3790,7 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
3783
3790
  /**
3784
3791
  * User functions.
3785
3792
  *
3786
- * Platforms: ios
3793
+ * Platforms: android, ios, web
3787
3794
  */
3788
3795
  functions?: Type<NonEmptyArray<IDivFunction>>;
3789
3796
  /**
@@ -3797,15 +3804,15 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
3797
3804
  */
3798
3805
  height?: Type<DivSize>;
3799
3806
  /**
3800
- * Actions performed when hovering over an element ends. Available on platforms with pointing
3801
- * device support (mouse, stylus, etc).
3807
+ * Actions performed after hovering over an element. Available on platforms that support pointing
3808
+ * devices (such as a mouse or stylus).
3802
3809
  *
3803
3810
  * Platforms: not supported
3804
3811
  */
3805
3812
  hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
3806
3813
  /**
3807
- * Actions performed when hovering over an element. Available on platforms with pointing device
3808
- * support (mouse, stylus, etc).
3814
+ * Actions performed when hovering over an element. Available on platforms that support pointing
3815
+ * devices (such as a mouse or stylus).
3809
3816
  *
3810
3817
  * Platforms: not supported
3811
3818
  */
@@ -3849,13 +3856,13 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
3849
3856
  */
3850
3857
  preload_required?: Type<IntBoolean | DivExpression>;
3851
3858
  /**
3852
- * Actions performed when an element is released.
3859
+ * Actions performed after clicking/tapping an element.
3853
3860
  *
3854
3861
  * Platforms: not supported
3855
3862
  */
3856
3863
  press_end_actions?: Type<NonEmptyArray<IDivAction>>;
3857
3864
  /**
3858
- * Actions performed when an element is pressed.
3865
+ * Actions performed at the start of a click/tap on an element.
3859
3866
  *
3860
3867
  * Platforms: not supported
3861
3868
  */
@@ -4006,7 +4013,7 @@ interface DivGifImageProps {
4006
4013
  /**
4007
4014
  * Declaration of animators that change variable values over time.
4008
4015
  *
4009
- * Platforms: android, ios
4016
+ * Platforms: android, ios, web
4010
4017
  */
4011
4018
  animators?: Type<NonEmptyArray<DivAnimator>>;
4012
4019
  /**
@@ -4062,7 +4069,7 @@ interface DivGifImageProps {
4062
4069
  /**
4063
4070
  * User functions.
4064
4071
  *
4065
- * Platforms: ios
4072
+ * Platforms: android, ios, web
4066
4073
  */
4067
4074
  functions?: Type<NonEmptyArray<IDivFunction>>;
4068
4075
  /**
@@ -4076,15 +4083,15 @@ interface DivGifImageProps {
4076
4083
  */
4077
4084
  height?: Type<DivSize>;
4078
4085
  /**
4079
- * Actions performed when hovering over an element ends. Available on platforms with pointing
4080
- * device support (mouse, stylus, etc).
4086
+ * Actions performed after hovering over an element. Available on platforms that support pointing
4087
+ * devices (such as a mouse or stylus).
4081
4088
  *
4082
4089
  * Platforms: not supported
4083
4090
  */
4084
4091
  hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
4085
4092
  /**
4086
- * Actions performed when hovering over an element. Available on platforms with pointing device
4087
- * support (mouse, stylus, etc).
4093
+ * Actions performed when hovering over an element. Available on platforms that support pointing
4094
+ * devices (such as a mouse or stylus).
4088
4095
  *
4089
4096
  * Platforms: not supported
4090
4097
  */
@@ -4128,13 +4135,13 @@ interface DivGifImageProps {
4128
4135
  */
4129
4136
  preload_required?: Type<IntBoolean | DivExpression>;
4130
4137
  /**
4131
- * Actions performed when an element is released.
4138
+ * Actions performed after clicking/tapping an element.
4132
4139
  *
4133
4140
  * Platforms: not supported
4134
4141
  */
4135
4142
  press_end_actions?: Type<NonEmptyArray<IDivAction>>;
4136
4143
  /**
4137
- * Actions performed when an element is pressed.
4144
+ * Actions performed at the start of a click/tap on an element.
4138
4145
  *
4139
4146
  * Platforms: not supported
4140
4147
  */
@@ -4290,7 +4297,7 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
4290
4297
  /**
4291
4298
  * Declaration of animators that change variable values over time.
4292
4299
  *
4293
- * Platforms: android, ios
4300
+ * Platforms: android, ios, web
4294
4301
  */
4295
4302
  animators?: Type<NonEmptyArray<DivAnimator>>;
4296
4303
  /**
@@ -4345,7 +4352,7 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
4345
4352
  /**
4346
4353
  * User functions.
4347
4354
  *
4348
- * Platforms: ios
4355
+ * Platforms: android, ios, web
4349
4356
  */
4350
4357
  functions?: Type<NonEmptyArray<IDivFunction>>;
4351
4358
  /**
@@ -4355,15 +4362,15 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
4355
4362
  */
4356
4363
  height?: Type<DivSize>;
4357
4364
  /**
4358
- * Actions performed when hovering over an element ends. Available on platforms with pointing
4359
- * device support (mouse, stylus, etc).
4365
+ * Actions performed after hovering over an element. Available on platforms that support pointing
4366
+ * devices (such as a mouse or stylus).
4360
4367
  *
4361
4368
  * Platforms: not supported
4362
4369
  */
4363
4370
  hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
4364
4371
  /**
4365
- * Actions performed when hovering over an element. Available on platforms with pointing device
4366
- * support (mouse, stylus, etc).
4372
+ * Actions performed when hovering over an element. Available on platforms that support pointing
4373
+ * devices (such as a mouse or stylus).
4367
4374
  *
4368
4375
  * Platforms: not supported
4369
4376
  */
@@ -4399,13 +4406,13 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
4399
4406
  */
4400
4407
  paddings?: Type<IDivEdgeInsets>;
4401
4408
  /**
4402
- * Actions performed when an element is released.
4409
+ * Actions performed after clicking/tapping an element.
4403
4410
  *
4404
4411
  * Platforms: not supported
4405
4412
  */
4406
4413
  press_end_actions?: Type<NonEmptyArray<IDivAction>>;
4407
4414
  /**
4408
- * Actions performed when an element is pressed.
4415
+ * Actions performed at the start of a click/tap on an element.
4409
4416
  *
4410
4417
  * Platforms: not supported
4411
4418
  */
@@ -4544,7 +4551,7 @@ interface DivGridProps {
4544
4551
  /**
4545
4552
  * Declaration of animators that change variable values over time.
4546
4553
  *
4547
- * Platforms: android, ios
4554
+ * Platforms: android, ios, web
4548
4555
  */
4549
4556
  animators?: Type<NonEmptyArray<DivAnimator>>;
4550
4557
  /**
@@ -4599,7 +4606,7 @@ interface DivGridProps {
4599
4606
  /**
4600
4607
  * User functions.
4601
4608
  *
4602
- * Platforms: ios
4609
+ * Platforms: android, ios, web
4603
4610
  */
4604
4611
  functions?: Type<NonEmptyArray<IDivFunction>>;
4605
4612
  /**
@@ -4609,15 +4616,15 @@ interface DivGridProps {
4609
4616
  */
4610
4617
  height?: Type<DivSize>;
4611
4618
  /**
4612
- * Actions performed when hovering over an element ends. Available on platforms with pointing
4613
- * device support (mouse, stylus, etc).
4619
+ * Actions performed after hovering over an element. Available on platforms that support pointing
4620
+ * devices (such as a mouse or stylus).
4614
4621
  *
4615
4622
  * Platforms: not supported
4616
4623
  */
4617
4624
  hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
4618
4625
  /**
4619
- * Actions performed when hovering over an element. Available on platforms with pointing device
4620
- * support (mouse, stylus, etc).
4626
+ * Actions performed when hovering over an element. Available on platforms that support pointing
4627
+ * devices (such as a mouse or stylus).
4621
4628
  *
4622
4629
  * Platforms: not supported
4623
4630
  */
@@ -4653,13 +4660,13 @@ interface DivGridProps {
4653
4660
  */
4654
4661
  paddings?: Type<IDivEdgeInsets>;
4655
4662
  /**
4656
- * Actions performed when an element is released.
4663
+ * Actions performed after clicking/tapping an element.
4657
4664
  *
4658
4665
  * Platforms: not supported
4659
4666
  */
4660
4667
  press_end_actions?: Type<NonEmptyArray<IDivAction>>;
4661
4668
  /**
4662
- * Actions performed when an element is pressed.
4669
+ * Actions performed at the start of a click/tap on an element.
4663
4670
  *
4664
4671
  * Platforms: not supported
4665
4672
  */
@@ -4803,7 +4810,7 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
4803
4810
  /**
4804
4811
  * Declaration of animators that change variable values over time.
4805
4812
  *
4806
- * Platforms: android, ios
4813
+ * Platforms: android, ios, web
4807
4814
  */
4808
4815
  animators?: Type<NonEmptyArray<DivAnimator>>;
4809
4816
  /**
@@ -4869,7 +4876,7 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
4869
4876
  /**
4870
4877
  * User functions.
4871
4878
  *
4872
- * Platforms: ios
4879
+ * Platforms: android, ios, web
4873
4880
  */
4874
4881
  functions?: Type<NonEmptyArray<IDivFunction>>;
4875
4882
  /**
@@ -4887,15 +4894,15 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
4887
4894
  */
4888
4895
  high_priority_preview_show?: Type<IntBoolean | DivExpression>;
4889
4896
  /**
4890
- * Actions performed when hovering over an element ends. Available on platforms with pointing
4891
- * device support (mouse, stylus, etc).
4897
+ * Actions performed after hovering over an element. Available on platforms that support pointing
4898
+ * devices (such as a mouse or stylus).
4892
4899
  *
4893
4900
  * Platforms: not supported
4894
4901
  */
4895
4902
  hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
4896
4903
  /**
4897
- * Actions performed when hovering over an element. Available on platforms with pointing device
4898
- * support (mouse, stylus, etc).
4904
+ * Actions performed when hovering over an element. Available on platforms that support pointing
4905
+ * devices (such as a mouse or stylus).
4899
4906
  *
4900
4907
  * Platforms: not supported
4901
4908
  */
@@ -4943,13 +4950,13 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
4943
4950
  */
4944
4951
  preload_required?: Type<IntBoolean | DivExpression>;
4945
4952
  /**
4946
- * Actions performed when an element is released.
4953
+ * Actions performed after clicking/tapping an element.
4947
4954
  *
4948
4955
  * Platforms: not supported
4949
4956
  */
4950
4957
  press_end_actions?: Type<NonEmptyArray<IDivAction>>;
4951
4958
  /**
4952
- * Actions performed when an element is pressed.
4959
+ * Actions performed at the start of a click/tap on an element.
4953
4960
  *
4954
4961
  * Platforms: not supported
4955
4962
  */
@@ -5108,7 +5115,7 @@ interface DivImageProps {
5108
5115
  /**
5109
5116
  * Declaration of animators that change variable values over time.
5110
5117
  *
5111
- * Platforms: android, ios
5118
+ * Platforms: android, ios, web
5112
5119
  */
5113
5120
  animators?: Type<NonEmptyArray<DivAnimator>>;
5114
5121
  /**
@@ -5174,7 +5181,7 @@ interface DivImageProps {
5174
5181
  /**
5175
5182
  * User functions.
5176
5183
  *
5177
- * Platforms: ios
5184
+ * Platforms: android, ios, web
5178
5185
  */
5179
5186
  functions?: Type<NonEmptyArray<IDivFunction>>;
5180
5187
  /**
@@ -5192,15 +5199,15 @@ interface DivImageProps {
5192
5199
  */
5193
5200
  high_priority_preview_show?: Type<IntBoolean | DivExpression>;
5194
5201
  /**
5195
- * Actions performed when hovering over an element ends. Available on platforms with pointing
5196
- * device support (mouse, stylus, etc).
5202
+ * Actions performed after hovering over an element. Available on platforms that support pointing
5203
+ * devices (such as a mouse or stylus).
5197
5204
  *
5198
5205
  * Platforms: not supported
5199
5206
  */
5200
5207
  hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
5201
5208
  /**
5202
- * Actions performed when hovering over an element. Available on platforms with pointing device
5203
- * support (mouse, stylus, etc).
5209
+ * Actions performed when hovering over an element. Available on platforms that support pointing
5210
+ * devices (such as a mouse or stylus).
5204
5211
  *
5205
5212
  * Platforms: not supported
5206
5213
  */
@@ -5248,13 +5255,13 @@ interface DivImageProps {
5248
5255
  */
5249
5256
  preload_required?: Type<IntBoolean | DivExpression>;
5250
5257
  /**
5251
- * Actions performed when an element is released.
5258
+ * Actions performed after clicking/tapping an element.
5252
5259
  *
5253
5260
  * Platforms: not supported
5254
5261
  */
5255
5262
  press_end_actions?: Type<NonEmptyArray<IDivAction>>;
5256
5263
  /**
5257
- * Actions performed when an element is pressed.
5264
+ * Actions performed at the start of a click/tap on an element.
5258
5265
  *
5259
5266
  * Platforms: not supported
5260
5267
  */
@@ -5498,7 +5505,7 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
5498
5505
  /**
5499
5506
  * Declaration of animators that change variable values over time.
5500
5507
  *
5501
- * Platforms: android, ios
5508
+ * Platforms: android, ios, web
5502
5509
  */
5503
5510
  animators?: Type<NonEmptyArray<DivAnimator>>;
5504
5511
  /**
@@ -5535,7 +5542,7 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
5535
5542
  /**
5536
5543
  * User functions.
5537
5544
  *
5538
- * Platforms: ios
5545
+ * Platforms: android, ios, web
5539
5546
  */
5540
5547
  functions?: Type<NonEmptyArray<IDivFunction>>;
5541
5548
  /**
@@ -5750,7 +5757,7 @@ interface DivIndicatorProps {
5750
5757
  /**
5751
5758
  * Declaration of animators that change variable values over time.
5752
5759
  *
5753
- * Platforms: android, ios
5760
+ * Platforms: android, ios, web
5754
5761
  */
5755
5762
  animators?: Type<NonEmptyArray<DivAnimator>>;
5756
5763
  /**
@@ -5787,7 +5794,7 @@ interface DivIndicatorProps {
5787
5794
  /**
5788
5795
  * User functions.
5789
5796
  *
5790
- * Platforms: ios
5797
+ * Platforms: android, ios, web
5791
5798
  */
5792
5799
  functions?: Type<NonEmptyArray<IDivFunction>>;
5793
5800
  /**
@@ -5999,7 +6006,7 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
5999
6006
  /**
6000
6007
  * Declaration of animators that change variable values over time.
6001
6008
  *
6002
- * Platforms: android, ios
6009
+ * Platforms: android, ios, web
6003
6010
  */
6004
6011
  animators?: Type<NonEmptyArray<DivAnimator>>;
6005
6012
  /**
@@ -6031,13 +6038,13 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
6031
6038
  /**
6032
6039
  * Actions when pressing the 'Enter' key. Actions (if any) override the default behavior.
6033
6040
  *
6034
- * Platforms: ios
6041
+ * Platforms: ios, android, web
6035
6042
  */
6036
6043
  enter_key_actions?: Type<NonEmptyArray<IDivAction>>;
6037
6044
  /**
6038
6045
  * 'Enter' key type.
6039
6046
  *
6040
- * Platforms: ios
6047
+ * Platforms: ios, android, web
6041
6048
  */
6042
6049
  enter_key_type?: Type<DivInputEnterKeyType | DivExpression>;
6043
6050
  /**
@@ -6087,7 +6094,7 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
6087
6094
  /**
6088
6095
  * User functions.
6089
6096
  *
6090
- * Platforms: ios
6097
+ * Platforms: android, ios, web
6091
6098
  */
6092
6099
  functions?: Type<NonEmptyArray<IDivFunction>>;
6093
6100
  /**
@@ -6256,7 +6263,7 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
6256
6263
  /**
6257
6264
  * Validator that checks that the field value meets the specified conditions.
6258
6265
  *
6259
- * Platforms: android, ios
6266
+ * Platforms: android, ios, web
6260
6267
  */
6261
6268
  validators?: Type<NonEmptyArray<DivInputValidator>>;
6262
6269
  /**
@@ -6317,7 +6324,7 @@ interface DivInputProps {
6317
6324
  /**
6318
6325
  * Declaration of animators that change variable values over time.
6319
6326
  *
6320
- * Platforms: android, ios
6327
+ * Platforms: android, ios, web
6321
6328
  */
6322
6329
  animators?: Type<NonEmptyArray<DivAnimator>>;
6323
6330
  /**
@@ -6349,13 +6356,13 @@ interface DivInputProps {
6349
6356
  /**
6350
6357
  * Actions when pressing the 'Enter' key. Actions (if any) override the default behavior.
6351
6358
  *
6352
- * Platforms: ios
6359
+ * Platforms: ios, android, web
6353
6360
  */
6354
6361
  enter_key_actions?: Type<NonEmptyArray<IDivAction>>;
6355
6362
  /**
6356
6363
  * 'Enter' key type.
6357
6364
  *
6358
- * Platforms: ios
6365
+ * Platforms: ios, android, web
6359
6366
  */
6360
6367
  enter_key_type?: Type<DivInputEnterKeyType | DivExpression>;
6361
6368
  /**
@@ -6405,7 +6412,7 @@ interface DivInputProps {
6405
6412
  /**
6406
6413
  * User functions.
6407
6414
  *
6408
- * Platforms: ios
6415
+ * Platforms: android, ios, web
6409
6416
  */
6410
6417
  functions?: Type<NonEmptyArray<IDivFunction>>;
6411
6418
  /**
@@ -6574,7 +6581,7 @@ interface DivInputProps {
6574
6581
  /**
6575
6582
  * Validator that checks that the field value meets the specified conditions.
6576
6583
  *
6577
- * Platforms: android, ios
6584
+ * Platforms: android, ios, web
6578
6585
  */
6579
6586
  validators?: Type<NonEmptyArray<DivInputValidator>>;
6580
6587
  /**
@@ -6999,22 +7006,22 @@ interface DivNumberAnimatorProps {
6999
7006
  }
7000
7007
 
7001
7008
  /**
7002
- * Page size equals to its content size.
7009
+ * The page size is equal to the size of its content.
7003
7010
  */
7004
7011
  declare class DivPageContentSize<T extends DivPageContentSizeProps = DivPageContentSizeProps> {
7005
7012
  readonly _props?: Exact<DivPageContentSizeProps, T>;
7006
7013
  readonly type = "wrap_content";
7007
7014
  /**
7008
- * Pager pages' alignment along the scroll axis. For edge alignment, offset from parent edge is
7009
- * equal to the corresponding padding.
7015
+ * Alignment of pager pages along the scroll axis. For edge alignment, the margin from the edge
7016
+ * of the parent equals the value of the corresponding padding.
7010
7017
  */
7011
7018
  alignment?: Type<DivPageContentSizeAlignment | DivExpression>;
7012
7019
  constructor(props?: Exact<DivPageContentSizeProps, T>);
7013
7020
  }
7014
7021
  interface DivPageContentSizeProps {
7015
7022
  /**
7016
- * Pager pages' alignment along the scroll axis. For edge alignment, offset from parent edge is
7017
- * equal to the corresponding padding.
7023
+ * Alignment of pager pages along the scroll axis. For edge alignment, the margin from the edge
7024
+ * of the parent equals the value of the corresponding padding.
7018
7025
  */
7019
7026
  alignment?: Type<DivPageContentSizeAlignment | DivExpression>;
7020
7027
  }
@@ -7223,7 +7230,7 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
7223
7230
  /**
7224
7231
  * Declaration of animators that change variable values over time.
7225
7232
  *
7226
- * Platforms: android, ios
7233
+ * Platforms: android, ios, web
7227
7234
  */
7228
7235
  animators?: Type<NonEmptyArray<DivAnimator>>;
7229
7236
  /**
@@ -7243,7 +7250,7 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
7243
7250
  /**
7244
7251
  * Ordinal number of the pager element that will be opened by default.
7245
7252
  *
7246
- * Platforms: android, ios
7253
+ * Platforms: android, ios, web
7247
7254
  */
7248
7255
  default_item?: Type<number | DivExpression>;
7249
7256
  /**
@@ -7266,7 +7273,7 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
7266
7273
  /**
7267
7274
  * User functions.
7268
7275
  *
7269
- * Platforms: ios
7276
+ * Platforms: android, ios, web
7270
7277
  */
7271
7278
  functions?: Type<NonEmptyArray<IDivFunction>>;
7272
7279
  /**
@@ -7290,7 +7297,7 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
7290
7297
  /**
7291
7298
  * Sets collection elements dynamically using `data` and `prototypes`.
7292
7299
  *
7293
- * Platforms: android, ios
7300
+ * Platforms: android, ios, web
7294
7301
  */
7295
7302
  item_builder?: Type<IDivCollectionItemBuilder>;
7296
7303
  /**
@@ -7464,7 +7471,7 @@ interface DivPagerProps {
7464
7471
  /**
7465
7472
  * Declaration of animators that change variable values over time.
7466
7473
  *
7467
- * Platforms: android, ios
7474
+ * Platforms: android, ios, web
7468
7475
  */
7469
7476
  animators?: Type<NonEmptyArray<DivAnimator>>;
7470
7477
  /**
@@ -7484,7 +7491,7 @@ interface DivPagerProps {
7484
7491
  /**
7485
7492
  * Ordinal number of the pager element that will be opened by default.
7486
7493
  *
7487
- * Platforms: android, ios
7494
+ * Platforms: android, ios, web
7488
7495
  */
7489
7496
  default_item?: Type<number | DivExpression>;
7490
7497
  /**
@@ -7507,7 +7514,7 @@ interface DivPagerProps {
7507
7514
  /**
7508
7515
  * User functions.
7509
7516
  *
7510
- * Platforms: ios
7517
+ * Platforms: android, ios, web
7511
7518
  */
7512
7519
  functions?: Type<NonEmptyArray<IDivFunction>>;
7513
7520
  /**
@@ -7531,7 +7538,7 @@ interface DivPagerProps {
7531
7538
  /**
7532
7539
  * Sets collection elements dynamically using `data` and `prototypes`.
7533
7540
  *
7534
- * Platforms: android, ios
7541
+ * Platforms: android, ios, web
7535
7542
  */
7536
7543
  item_builder?: Type<IDivCollectionItemBuilder>;
7537
7544
  /**
@@ -8083,7 +8090,7 @@ declare class DivSelect<T extends DivSelectProps = DivSelectProps> {
8083
8090
  /**
8084
8091
  * Declaration of animators that change variable values over time.
8085
8092
  *
8086
- * Platforms: android, ios
8093
+ * Platforms: android, ios, web
8087
8094
  */
8088
8095
  animators?: Type<NonEmptyArray<DivAnimator>>;
8089
8096
  /**
@@ -8147,7 +8154,7 @@ declare class DivSelect<T extends DivSelectProps = DivSelectProps> {
8147
8154
  /**
8148
8155
  * User functions.
8149
8156
  *
8150
- * Platforms: ios
8157
+ * Platforms: android, ios, web
8151
8158
  */
8152
8159
  functions?: Type<NonEmptyArray<IDivFunction>>;
8153
8160
  /**
@@ -8319,7 +8326,7 @@ interface DivSelectProps {
8319
8326
  /**
8320
8327
  * Declaration of animators that change variable values over time.
8321
8328
  *
8322
- * Platforms: android, ios
8329
+ * Platforms: android, ios, web
8323
8330
  */
8324
8331
  animators?: Type<NonEmptyArray<DivAnimator>>;
8325
8332
  /**
@@ -8383,7 +8390,7 @@ interface DivSelectProps {
8383
8390
  /**
8384
8391
  * User functions.
8385
8392
  *
8386
- * Platforms: ios
8393
+ * Platforms: android, ios, web
8387
8394
  */
8388
8395
  functions?: Type<NonEmptyArray<IDivFunction>>;
8389
8396
  /**
@@ -8588,7 +8595,7 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
8588
8595
  /**
8589
8596
  * Declaration of animators that change variable values over time.
8590
8597
  *
8591
- * Platforms: android, ios
8598
+ * Platforms: android, ios, web
8592
8599
  */
8593
8600
  animators?: Type<NonEmptyArray<DivAnimator>>;
8594
8601
  /**
@@ -8635,7 +8642,7 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
8635
8642
  /**
8636
8643
  * User functions.
8637
8644
  *
8638
- * Platforms: ios
8645
+ * Platforms: android, ios, web
8639
8646
  */
8640
8647
  functions?: Type<NonEmptyArray<IDivFunction>>;
8641
8648
  /**
@@ -8645,15 +8652,15 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
8645
8652
  */
8646
8653
  height?: Type<DivSize>;
8647
8654
  /**
8648
- * Actions performed when hovering over an element ends. Available on platforms with pointing
8649
- * device support (mouse, stylus, etc).
8655
+ * Actions performed after hovering over an element. Available on platforms that support pointing
8656
+ * devices (such as a mouse or stylus).
8650
8657
  *
8651
8658
  * Platforms: not supported
8652
8659
  */
8653
8660
  hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
8654
8661
  /**
8655
- * Actions performed when hovering over an element. Available on platforms with pointing device
8656
- * support (mouse, stylus, etc).
8662
+ * Actions performed when hovering over an element. Available on platforms that support pointing
8663
+ * devices (such as a mouse or stylus).
8657
8664
  *
8658
8665
  * Platforms: not supported
8659
8666
  */
@@ -8685,13 +8692,13 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
8685
8692
  */
8686
8693
  paddings?: Type<IDivEdgeInsets>;
8687
8694
  /**
8688
- * Actions performed when an element is released.
8695
+ * Actions performed after clicking/tapping an element.
8689
8696
  *
8690
8697
  * Platforms: not supported
8691
8698
  */
8692
8699
  press_end_actions?: Type<NonEmptyArray<IDivAction>>;
8693
8700
  /**
8694
- * Actions performed when an element is pressed.
8701
+ * Actions performed at the start of a click/tap on an element.
8695
8702
  *
8696
8703
  * Platforms: not supported
8697
8704
  */
@@ -8830,7 +8837,7 @@ interface DivSeparatorProps {
8830
8837
  /**
8831
8838
  * Declaration of animators that change variable values over time.
8832
8839
  *
8833
- * Platforms: android, ios
8840
+ * Platforms: android, ios, web
8834
8841
  */
8835
8842
  animators?: Type<NonEmptyArray<DivAnimator>>;
8836
8843
  /**
@@ -8877,7 +8884,7 @@ interface DivSeparatorProps {
8877
8884
  /**
8878
8885
  * User functions.
8879
8886
  *
8880
- * Platforms: ios
8887
+ * Platforms: android, ios, web
8881
8888
  */
8882
8889
  functions?: Type<NonEmptyArray<IDivFunction>>;
8883
8890
  /**
@@ -8887,15 +8894,15 @@ interface DivSeparatorProps {
8887
8894
  */
8888
8895
  height?: Type<DivSize>;
8889
8896
  /**
8890
- * Actions performed when hovering over an element ends. Available on platforms with pointing
8891
- * device support (mouse, stylus, etc).
8897
+ * Actions performed after hovering over an element. Available on platforms that support pointing
8898
+ * devices (such as a mouse or stylus).
8892
8899
  *
8893
8900
  * Platforms: not supported
8894
8901
  */
8895
8902
  hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
8896
8903
  /**
8897
- * Actions performed when hovering over an element. Available on platforms with pointing device
8898
- * support (mouse, stylus, etc).
8904
+ * Actions performed when hovering over an element. Available on platforms that support pointing
8905
+ * devices (such as a mouse or stylus).
8899
8906
  *
8900
8907
  * Platforms: not supported
8901
8908
  */
@@ -8927,13 +8934,13 @@ interface DivSeparatorProps {
8927
8934
  */
8928
8935
  paddings?: Type<IDivEdgeInsets>;
8929
8936
  /**
8930
- * Actions performed when an element is released.
8937
+ * Actions performed after clicking/tapping an element.
8931
8938
  *
8932
8939
  * Platforms: not supported
8933
8940
  */
8934
8941
  press_end_actions?: Type<NonEmptyArray<IDivAction>>;
8935
8942
  /**
8936
- * Actions performed when an element is pressed.
8943
+ * Actions performed at the start of a click/tap on an element.
8937
8944
  *
8938
8945
  * Platforms: not supported
8939
8946
  */
@@ -9250,7 +9257,7 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
9250
9257
  /**
9251
9258
  * Declaration of animators that change variable values over time.
9252
9259
  *
9253
- * Platforms: android, ios
9260
+ * Platforms: android, ios, web
9254
9261
  */
9255
9262
  animators?: Type<NonEmptyArray<DivAnimator>>;
9256
9263
  /**
@@ -9287,7 +9294,7 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
9287
9294
  /**
9288
9295
  * User functions.
9289
9296
  *
9290
- * Platforms: ios
9297
+ * Platforms: android, ios, web
9291
9298
  */
9292
9299
  functions?: Type<NonEmptyArray<IDivFunction>>;
9293
9300
  /**
@@ -9494,7 +9501,7 @@ interface DivSliderProps {
9494
9501
  /**
9495
9502
  * Declaration of animators that change variable values over time.
9496
9503
  *
9497
- * Platforms: android, ios
9504
+ * Platforms: android, ios, web
9498
9505
  */
9499
9506
  animators?: Type<NonEmptyArray<DivAnimator>>;
9500
9507
  /**
@@ -9531,7 +9538,7 @@ interface DivSliderProps {
9531
9538
  /**
9532
9539
  * User functions.
9533
9540
  *
9534
- * Platforms: ios
9541
+ * Platforms: android, ios, web
9535
9542
  */
9536
9543
  functions?: Type<NonEmptyArray<IDivFunction>>;
9537
9544
  /**
@@ -9812,7 +9819,7 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
9812
9819
  /**
9813
9820
  * Declaration of animators that change variable values over time.
9814
9821
  *
9815
- * Platforms: android, ios
9822
+ * Platforms: android, ios, web
9816
9823
  */
9817
9824
  animators?: Type<NonEmptyArray<DivAnimator>>;
9818
9825
  /**
@@ -9823,6 +9830,12 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
9823
9830
  * Element stroke.
9824
9831
  */
9825
9832
  border?: Type<IDivBorder>;
9833
+ /**
9834
+ * Enables the bounding of child elements by the parent's borders.
9835
+ *
9836
+ * Platforms: android
9837
+ */
9838
+ clip_to_bounds?: Type<IntBoolean | DivExpression>;
9826
9839
  /**
9827
9840
  * Merges cells in a column of the [grid](div-grid.md) element.
9828
9841
  *
@@ -9860,7 +9873,7 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
9860
9873
  /**
9861
9874
  * User functions.
9862
9875
  *
9863
- * Platforms: ios
9876
+ * Platforms: android, ios, web
9864
9877
  */
9865
9878
  functions?: Type<NonEmptyArray<IDivFunction>>;
9866
9879
  /**
@@ -10024,7 +10037,7 @@ interface DivStateProps {
10024
10037
  /**
10025
10038
  * Declaration of animators that change variable values over time.
10026
10039
  *
10027
- * Platforms: android, ios
10040
+ * Platforms: android, ios, web
10028
10041
  */
10029
10042
  animators?: Type<NonEmptyArray<DivAnimator>>;
10030
10043
  /**
@@ -10035,6 +10048,12 @@ interface DivStateProps {
10035
10048
  * Element stroke.
10036
10049
  */
10037
10050
  border?: Type<IDivBorder>;
10051
+ /**
10052
+ * Enables the bounding of child elements by the parent's borders.
10053
+ *
10054
+ * Platforms: android
10055
+ */
10056
+ clip_to_bounds?: Type<IntBoolean | DivExpression>;
10038
10057
  /**
10039
10058
  * Merges cells in a column of the [grid](div-grid.md) element.
10040
10059
  *
@@ -10072,7 +10091,7 @@ interface DivStateProps {
10072
10091
  /**
10073
10092
  * User functions.
10074
10093
  *
10075
- * Platforms: ios
10094
+ * Platforms: android, ios, web
10076
10095
  */
10077
10096
  functions?: Type<NonEmptyArray<IDivFunction>>;
10078
10097
  /**
@@ -10318,7 +10337,7 @@ declare class DivSwitch<T extends DivSwitchProps = DivSwitchProps> {
10318
10337
  /**
10319
10338
  * Declaration of animators that change variable values over time.
10320
10339
  *
10321
- * Platforms: android, ios
10340
+ * Platforms: android, ios, web
10322
10341
  */
10323
10342
  animators?: Type<NonEmptyArray<DivAnimator>>;
10324
10343
  /**
@@ -10355,7 +10374,7 @@ declare class DivSwitch<T extends DivSwitchProps = DivSwitchProps> {
10355
10374
  /**
10356
10375
  * User functions.
10357
10376
  *
10358
- * Platforms: ios
10377
+ * Platforms: android, ios, web
10359
10378
  */
10360
10379
  functions?: Type<NonEmptyArray<IDivFunction>>;
10361
10380
  /**
@@ -10391,7 +10410,7 @@ declare class DivSwitch<T extends DivSwitchProps = DivSwitchProps> {
10391
10410
  * Color of the toggle in the enabled state. If the color is omitted:
10392
10411
  : iOS standard system color
10393
10412
  * is used
10394
- : the color specified in 'Div2Context' on Android is used.
10413
+ : the color specified in `Div2Context` on Android is used.
10395
10414
  */
10396
10415
  on_color?: Type<string | DivExpression>;
10397
10416
  /**
@@ -10517,7 +10536,7 @@ interface DivSwitchProps {
10517
10536
  /**
10518
10537
  * Declaration of animators that change variable values over time.
10519
10538
  *
10520
- * Platforms: android, ios
10539
+ * Platforms: android, ios, web
10521
10540
  */
10522
10541
  animators?: Type<NonEmptyArray<DivAnimator>>;
10523
10542
  /**
@@ -10554,7 +10573,7 @@ interface DivSwitchProps {
10554
10573
  /**
10555
10574
  * User functions.
10556
10575
  *
10557
- * Platforms: ios
10576
+ * Platforms: android, ios, web
10558
10577
  */
10559
10578
  functions?: Type<NonEmptyArray<IDivFunction>>;
10560
10579
  /**
@@ -10590,7 +10609,7 @@ interface DivSwitchProps {
10590
10609
  * Color of the toggle in the enabled state. If the color is omitted:
10591
10610
  : iOS standard system color
10592
10611
  * is used
10593
- : the color specified in 'Div2Context' on Android is used.
10612
+ : the color specified in `Div2Context` on Android is used.
10594
10613
  */
10595
10614
  on_color?: Type<string | DivExpression>;
10596
10615
  /**
@@ -10722,7 +10741,7 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
10722
10741
  /**
10723
10742
  * Declaration of animators that change variable values over time.
10724
10743
  *
10725
- * Platforms: android, ios
10744
+ * Platforms: android, ios, web
10726
10745
  */
10727
10746
  animators?: Type<NonEmptyArray<DivAnimator>>;
10728
10747
  /**
@@ -10765,7 +10784,7 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
10765
10784
  /**
10766
10785
  * User functions.
10767
10786
  *
10768
- * Platforms: ios
10787
+ * Platforms: android, ios, web
10769
10788
  */
10770
10789
  functions?: Type<NonEmptyArray<IDivFunction>>;
10771
10790
  /**
@@ -10964,7 +10983,7 @@ interface DivTabsProps {
10964
10983
  /**
10965
10984
  * Declaration of animators that change variable values over time.
10966
10985
  *
10967
- * Platforms: android, ios
10986
+ * Platforms: android, ios, web
10968
10987
  */
10969
10988
  animators?: Type<NonEmptyArray<DivAnimator>>;
10970
10989
  /**
@@ -11007,7 +11026,7 @@ interface DivTabsProps {
11007
11026
  /**
11008
11027
  * User functions.
11009
11028
  *
11010
- * Platforms: ios
11029
+ * Platforms: android, ios, web
11011
11030
  */
11012
11031
  functions?: Type<NonEmptyArray<IDivFunction>>;
11013
11032
  /**
@@ -11348,7 +11367,7 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
11348
11367
  /**
11349
11368
  * Declaration of animators that change variable values over time.
11350
11369
  *
11351
- * Platforms: android, ios
11370
+ * Platforms: android, ios, web
11352
11371
  */
11353
11372
  animators?: Type<NonEmptyArray<DivAnimator>>;
11354
11373
  /**
@@ -11441,7 +11460,7 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
11441
11460
  /**
11442
11461
  * User functions.
11443
11462
  *
11444
- * Platforms: ios
11463
+ * Platforms: android, ios, web
11445
11464
  */
11446
11465
  functions?: Type<NonEmptyArray<IDivFunction>>;
11447
11466
  /**
@@ -11451,15 +11470,15 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
11451
11470
  */
11452
11471
  height?: Type<DivSize>;
11453
11472
  /**
11454
- * Actions performed when hovering over an element ends. Available on platforms with pointing
11455
- * device support (mouse, stylus, etc).
11473
+ * Actions performed after hovering over an element. Available on platforms that support pointing
11474
+ * devices (such as a mouse or stylus).
11456
11475
  *
11457
11476
  * Platforms: not supported
11458
11477
  */
11459
11478
  hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
11460
11479
  /**
11461
- * Actions performed when hovering over an element. Available on platforms with pointing device
11462
- * support (mouse, stylus, etc).
11480
+ * Actions performed when hovering over an element. Available on platforms that support pointing
11481
+ * devices (such as a mouse or stylus).
11463
11482
  *
11464
11483
  * Platforms: not supported
11465
11484
  */
@@ -11517,13 +11536,13 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
11517
11536
  */
11518
11537
  paddings?: Type<IDivEdgeInsets>;
11519
11538
  /**
11520
- * Actions performed when an element is released.
11539
+ * Actions performed after clicking/tapping an element.
11521
11540
  *
11522
11541
  * Platforms: not supported
11523
11542
  */
11524
11543
  press_end_actions?: Type<NonEmptyArray<IDivAction>>;
11525
11544
  /**
11526
- * Actions performed when an element is pressed.
11545
+ * Actions performed at the start of a click/tap on an element.
11527
11546
  *
11528
11547
  * Platforms: not supported
11529
11548
  */
@@ -11595,7 +11614,7 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
11595
11614
  text_shadow?: Type<IDivShadow>;
11596
11615
  /**
11597
11616
  * 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.
11617
+ * `wrap_content`, `constrained=true`, and `max_size` is specified.
11599
11618
  *
11600
11619
  * Platforms: android, ios
11601
11620
  */
@@ -11726,7 +11745,7 @@ interface DivTextProps {
11726
11745
  /**
11727
11746
  * Declaration of animators that change variable values over time.
11728
11747
  *
11729
- * Platforms: android, ios
11748
+ * Platforms: android, ios, web
11730
11749
  */
11731
11750
  animators?: Type<NonEmptyArray<DivAnimator>>;
11732
11751
  /**
@@ -11819,7 +11838,7 @@ interface DivTextProps {
11819
11838
  /**
11820
11839
  * User functions.
11821
11840
  *
11822
- * Platforms: ios
11841
+ * Platforms: android, ios, web
11823
11842
  */
11824
11843
  functions?: Type<NonEmptyArray<IDivFunction>>;
11825
11844
  /**
@@ -11829,15 +11848,15 @@ interface DivTextProps {
11829
11848
  */
11830
11849
  height?: Type<DivSize>;
11831
11850
  /**
11832
- * Actions performed when hovering over an element ends. Available on platforms with pointing
11833
- * device support (mouse, stylus, etc).
11851
+ * Actions performed after hovering over an element. Available on platforms that support pointing
11852
+ * devices (such as a mouse or stylus).
11834
11853
  *
11835
11854
  * Platforms: not supported
11836
11855
  */
11837
11856
  hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
11838
11857
  /**
11839
- * Actions performed when hovering over an element. Available on platforms with pointing device
11840
- * support (mouse, stylus, etc).
11858
+ * Actions performed when hovering over an element. Available on platforms that support pointing
11859
+ * devices (such as a mouse or stylus).
11841
11860
  *
11842
11861
  * Platforms: not supported
11843
11862
  */
@@ -11895,13 +11914,13 @@ interface DivTextProps {
11895
11914
  */
11896
11915
  paddings?: Type<IDivEdgeInsets>;
11897
11916
  /**
11898
- * Actions performed when an element is released.
11917
+ * Actions performed after clicking/tapping an element.
11899
11918
  *
11900
11919
  * Platforms: not supported
11901
11920
  */
11902
11921
  press_end_actions?: Type<NonEmptyArray<IDivAction>>;
11903
11922
  /**
11904
- * Actions performed when an element is pressed.
11923
+ * Actions performed at the start of a click/tap on an element.
11905
11924
  *
11906
11925
  * Platforms: not supported
11907
11926
  */
@@ -11973,7 +11992,7 @@ interface DivTextProps {
11973
11992
  text_shadow?: Type<IDivShadow>;
11974
11993
  /**
11975
11994
  * 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.
11995
+ * `wrap_content`, `constrained=true`, and `max_size` is specified.
11977
11996
  *
11978
11997
  * Platforms: android, ios
11979
11998
  */
@@ -12112,6 +12131,17 @@ interface IDivTextImage {
12112
12131
  * Image height.
12113
12132
  */
12114
12133
  height?: Type<DivFixedSize>;
12134
+ /**
12135
+ * Defines direction in `start` parameter:
12136
+ `normal` - regular indexation for strings ([0, 1, 2,
12137
+ * ..., N]). Use to insert an image by index relative to the begging of a string.
12138
+ `reversed` -
12139
+ * indexation from the end towards the begging of a string ([N, ..., 2, 1, 0]). Use to insert an
12140
+ * image by index relative to the end of a string.
12141
+ *
12142
+ * Platforms: android
12143
+ */
12144
+ indexing_direction?: Type<ImageIndexingDirection | DivExpression>;
12115
12145
  /**
12116
12146
  * Background image must be loaded before the display.
12117
12147
  *
@@ -12142,6 +12172,7 @@ interface IDivTextImage {
12142
12172
  */
12143
12173
  width?: Type<DivFixedSize>;
12144
12174
  }
12175
+ declare type ImageIndexingDirection = 'normal' | 'reversed';
12145
12176
  interface IImageAccessibility {
12146
12177
  /**
12147
12178
  * Element description. It is used as the main description for screen reading applications.
@@ -12223,6 +12254,13 @@ interface IDivTextRange {
12223
12254
  * Line spacing of the text. Units specified in `font_size_unit`.
12224
12255
  */
12225
12256
  line_height?: Type<number | DivExpression>;
12257
+ /**
12258
+ * A mask that hides a part of text, text can be revealed by disabling mask through `is_enabled`
12259
+ * property.
12260
+ *
12261
+ * Platforms: not supported
12262
+ */
12263
+ mask?: Type<DivTextRangeMask>;
12226
12264
  /**
12227
12265
  * Ordinal number of a character which the range begins from. The first character has a number
12228
12266
  * `0`.
@@ -12272,6 +12310,103 @@ interface IDivTextRangeBorder {
12272
12310
  stroke?: Type<IDivStroke>;
12273
12311
  }
12274
12312
 
12313
+ declare type DivTextRangeMask = DivTextRangeMaskParticles | DivTextRangeMaskSolid;
12314
+
12315
+ interface IDivTextRangeMaskBase {
12316
+ /**
12317
+ * Controls mask state: if set to `true` mask will hide specified part of the text, otherwise the
12318
+ * text will be shown.
12319
+ */
12320
+ is_enabled?: Type<boolean | DivExpression>;
12321
+ }
12322
+
12323
+ /**
12324
+ * A mask to hide text (spoiler) that looks like randomly distributed particles (telegram alike).
12325
+ */
12326
+ declare class DivTextRangeMaskParticles<T extends DivTextRangeMaskParticlesProps = DivTextRangeMaskParticlesProps> {
12327
+ readonly _props?: Exact<DivTextRangeMaskParticlesProps, T>;
12328
+ readonly type = "particles";
12329
+ /**
12330
+ * Color of particles on the mask.
12331
+ */
12332
+ color: Type<string | DivExpression>;
12333
+ /**
12334
+ * Density of particles on the mask, interpreted as a probability of a particle to spawn in a
12335
+ * given point on the mask.
12336
+ */
12337
+ density?: Type<number | DivExpression>;
12338
+ /**
12339
+ * Defines whether particles on the mask will be animated or not. Animation looks like smooth
12340
+ * random particle movements (telegram alike).
12341
+ */
12342
+ is_animated?: Type<boolean | DivExpression>;
12343
+ /**
12344
+ * Controls mask state: if set to `true` mask will hide specified part of the text, otherwise the
12345
+ * text will be shown.
12346
+ */
12347
+ is_enabled?: Type<boolean | DivExpression>;
12348
+ /**
12349
+ * Size of a single particle on a mask.
12350
+ */
12351
+ particle_size?: Type<DivFixedSize>;
12352
+ constructor(props: Exact<DivTextRangeMaskParticlesProps, T>);
12353
+ }
12354
+ interface DivTextRangeMaskParticlesProps {
12355
+ /**
12356
+ * Color of particles on the mask.
12357
+ */
12358
+ color: Type<string | DivExpression>;
12359
+ /**
12360
+ * Density of particles on the mask, interpreted as a probability of a particle to spawn in a
12361
+ * given point on the mask.
12362
+ */
12363
+ density?: Type<number | DivExpression>;
12364
+ /**
12365
+ * Defines whether particles on the mask will be animated or not. Animation looks like smooth
12366
+ * random particle movements (telegram alike).
12367
+ */
12368
+ is_animated?: Type<boolean | DivExpression>;
12369
+ /**
12370
+ * Controls mask state: if set to `true` mask will hide specified part of the text, otherwise the
12371
+ * text will be shown.
12372
+ */
12373
+ is_enabled?: Type<boolean | DivExpression>;
12374
+ /**
12375
+ * Size of a single particle on a mask.
12376
+ */
12377
+ particle_size?: Type<DivFixedSize>;
12378
+ }
12379
+
12380
+ /**
12381
+ * A mask to hide text (spoiler) that looks like a rectangle filled with color specified by
12382
+ * `color` parameter.
12383
+ */
12384
+ declare class DivTextRangeMaskSolid<T extends DivTextRangeMaskSolidProps = DivTextRangeMaskSolidProps> {
12385
+ readonly _props?: Exact<DivTextRangeMaskSolidProps, T>;
12386
+ readonly type = "solid";
12387
+ /**
12388
+ * Color.
12389
+ */
12390
+ color: Type<string | DivExpression>;
12391
+ /**
12392
+ * Controls mask state: if set to `true` mask will hide specified part of the text, otherwise the
12393
+ * text will be shown.
12394
+ */
12395
+ is_enabled?: Type<boolean | DivExpression>;
12396
+ constructor(props: Exact<DivTextRangeMaskSolidProps, T>);
12397
+ }
12398
+ interface DivTextRangeMaskSolidProps {
12399
+ /**
12400
+ * Color.
12401
+ */
12402
+ color: Type<string | DivExpression>;
12403
+ /**
12404
+ * Controls mask state: if set to `true` mask will hide specified part of the text, otherwise the
12405
+ * text will be shown.
12406
+ */
12407
+ is_enabled?: Type<boolean | DivExpression>;
12408
+ }
12409
+
12275
12410
  /**
12276
12411
  * Timer.
12277
12412
  */
@@ -12439,7 +12574,7 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
12439
12574
  /**
12440
12575
  * Declaration of animators that change variable values over time.
12441
12576
  *
12442
- * Platforms: android, ios
12577
+ * Platforms: android, ios, web
12443
12578
  */
12444
12579
  animators?: Type<NonEmptyArray<DivAnimator>>;
12445
12580
  /**
@@ -12502,7 +12637,7 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
12502
12637
  /**
12503
12638
  * User functions.
12504
12639
  *
12505
- * Platforms: ios
12640
+ * Platforms: android, ios, web
12506
12641
  */
12507
12642
  functions?: Type<NonEmptyArray<IDivFunction>>;
12508
12643
  /**
@@ -12688,7 +12823,7 @@ interface DivVideoProps {
12688
12823
  /**
12689
12824
  * Declaration of animators that change variable values over time.
12690
12825
  *
12691
- * Platforms: android, ios
12826
+ * Platforms: android, ios, web
12692
12827
  */
12693
12828
  animators?: Type<NonEmptyArray<DivAnimator>>;
12694
12829
  /**
@@ -12751,7 +12886,7 @@ interface DivVideoProps {
12751
12886
  /**
12752
12887
  * User functions.
12753
12888
  *
12754
- * Platforms: ios
12889
+ * Platforms: android, ios, web
12755
12890
  */
12756
12891
  functions?: Type<NonEmptyArray<IDivFunction>>;
12757
12892
  /**
@@ -13195,21 +13330,21 @@ interface NumberVariableProps {
13195
13330
  }
13196
13331
 
13197
13332
  /**
13198
- * Specifies the position measured in 'dp' from the container start as the scrolling end
13199
- * position. Only applies in 'gallery'.
13333
+ * Specifies the position measured in `dp` from the container start as the scrolling end
13334
+ * position. Only applies in `gallery`.
13200
13335
  */
13201
13336
  declare class OffsetDestination<T extends OffsetDestinationProps = OffsetDestinationProps> {
13202
13337
  readonly _props?: Exact<OffsetDestinationProps, T>;
13203
13338
  readonly type = "offset";
13204
13339
  /**
13205
- * Position measured in 'dp'.
13340
+ * Position measured in `dp`.
13206
13341
  */
13207
13342
  value: Type<number | DivExpression>;
13208
13343
  constructor(props: Exact<OffsetDestinationProps, T>);
13209
13344
  }
13210
13345
  interface OffsetDestinationProps {
13211
13346
  /**
13212
- * Position measured in 'dp'.
13347
+ * Position measured in `dp`.
13213
13348
  */
13214
13349
  value: Type<number | DivExpression>;
13215
13350
  }
@@ -13454,4 +13589,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
13454
13589
  };
13455
13590
  };
13456
13591
 
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 };
13592
+ 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, DivTextRangeMask, DivTextRangeMaskParticles, DivTextRangeMaskParticlesProps, DivTextRangeMaskSolid, DivTextRangeMaskSolidProps, 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, IDivTextRangeMaskBase, 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 };