@divkitframework/jsonbuilder 30.30.0 → 30.32.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.
@@ -299,8 +299,8 @@ interface IDivAccessibility {
299
299
  */
300
300
  hint?: Type<string | DivExpression>;
301
301
  /**
302
- * Indicates the current status of the checkbox or radio button. `true` is selected, `false` is
303
- * not selected.
302
+ * Shows the current state of the checkbox or radio button. `true` is selected, `false` is not
303
+ * selected.
304
304
  *
305
305
  * Platforms: web
306
306
  */
@@ -1768,14 +1768,14 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
1768
1768
  * Actions performed after hovering over an element. Available on platforms that support pointing
1769
1769
  * devices (such as a mouse or stylus).
1770
1770
  *
1771
- * Platforms: not supported
1771
+ * Platforms: web
1772
1772
  */
1773
1773
  hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
1774
1774
  /**
1775
1775
  * Actions performed when hovering over an element. Available on platforms that support pointing
1776
1776
  * devices (such as a mouse or stylus).
1777
1777
  *
1778
- * Platforms: not supported
1778
+ * Platforms: web
1779
1779
  */
1780
1780
  hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
1781
1781
  /**
@@ -1837,13 +1837,13 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
1837
1837
  /**
1838
1838
  * Actions performed after clicking/tapping an element.
1839
1839
  *
1840
- * Platforms: not supported
1840
+ * Platforms: web
1841
1841
  */
1842
1842
  press_end_actions?: Type<NonEmptyArray<IDivAction>>;
1843
1843
  /**
1844
1844
  * Actions performed at the start of a click/tap on an element.
1845
1845
  *
1846
- * Platforms: not supported
1846
+ * Platforms: web
1847
1847
  */
1848
1848
  press_start_actions?: Type<NonEmptyArray<IDivAction>>;
1849
1849
  /**
@@ -2069,14 +2069,14 @@ interface DivContainerPropsBase {
2069
2069
  * Actions performed after hovering over an element. Available on platforms that support pointing
2070
2070
  * devices (such as a mouse or stylus).
2071
2071
  *
2072
- * Platforms: not supported
2072
+ * Platforms: web
2073
2073
  */
2074
2074
  hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
2075
2075
  /**
2076
2076
  * Actions performed when hovering over an element. Available on platforms that support pointing
2077
2077
  * devices (such as a mouse or stylus).
2078
2078
  *
2079
- * Platforms: not supported
2079
+ * Platforms: web
2080
2080
  */
2081
2081
  hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
2082
2082
  /**
@@ -2138,13 +2138,13 @@ interface DivContainerPropsBase {
2138
2138
  /**
2139
2139
  * Actions performed after clicking/tapping an element.
2140
2140
  *
2141
- * Platforms: not supported
2141
+ * Platforms: web
2142
2142
  */
2143
2143
  press_end_actions?: Type<NonEmptyArray<IDivAction>>;
2144
2144
  /**
2145
2145
  * Actions performed at the start of a click/tap on an element.
2146
2146
  *
2147
- * Platforms: not supported
2147
+ * Platforms: web
2148
2148
  */
2149
2149
  press_start_actions?: Type<NonEmptyArray<IDivAction>>;
2150
2150
  /**
@@ -3270,7 +3270,7 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
3270
3270
  /**
3271
3271
  * Sets collection elements dynamically using `data` and `prototypes`.
3272
3272
  *
3273
- * Platforms: android, ios
3273
+ * Platforms: android, ios, web
3274
3274
  */
3275
3275
  item_builder?: Type<IDivCollectionItemBuilder>;
3276
3276
  /**
@@ -3531,7 +3531,7 @@ interface DivGalleryProps {
3531
3531
  /**
3532
3532
  * Sets collection elements dynamically using `data` and `prototypes`.
3533
3533
  *
3534
- * Platforms: android, ios
3534
+ * Platforms: android, ios, web
3535
3535
  */
3536
3536
  item_builder?: Type<IDivCollectionItemBuilder>;
3537
3537
  /**
@@ -3807,14 +3807,14 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
3807
3807
  * Actions performed after hovering over an element. Available on platforms that support pointing
3808
3808
  * devices (such as a mouse or stylus).
3809
3809
  *
3810
- * Platforms: not supported
3810
+ * Platforms: web
3811
3811
  */
3812
3812
  hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
3813
3813
  /**
3814
3814
  * Actions performed when hovering over an element. Available on platforms that support pointing
3815
3815
  * devices (such as a mouse or stylus).
3816
3816
  *
3817
- * Platforms: not supported
3817
+ * Platforms: web
3818
3818
  */
3819
3819
  hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
3820
3820
  /**
@@ -3858,13 +3858,13 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
3858
3858
  /**
3859
3859
  * Actions performed after clicking/tapping an element.
3860
3860
  *
3861
- * Platforms: not supported
3861
+ * Platforms: web
3862
3862
  */
3863
3863
  press_end_actions?: Type<NonEmptyArray<IDivAction>>;
3864
3864
  /**
3865
3865
  * Actions performed at the start of a click/tap on an element.
3866
3866
  *
3867
- * Platforms: not supported
3867
+ * Platforms: web
3868
3868
  */
3869
3869
  press_start_actions?: Type<NonEmptyArray<IDivAction>>;
3870
3870
  /**
@@ -4086,14 +4086,14 @@ interface DivGifImageProps {
4086
4086
  * Actions performed after hovering over an element. Available on platforms that support pointing
4087
4087
  * devices (such as a mouse or stylus).
4088
4088
  *
4089
- * Platforms: not supported
4089
+ * Platforms: web
4090
4090
  */
4091
4091
  hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
4092
4092
  /**
4093
4093
  * Actions performed when hovering over an element. Available on platforms that support pointing
4094
4094
  * devices (such as a mouse or stylus).
4095
4095
  *
4096
- * Platforms: not supported
4096
+ * Platforms: web
4097
4097
  */
4098
4098
  hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
4099
4099
  /**
@@ -4137,13 +4137,13 @@ interface DivGifImageProps {
4137
4137
  /**
4138
4138
  * Actions performed after clicking/tapping an element.
4139
4139
  *
4140
- * Platforms: not supported
4140
+ * Platforms: web
4141
4141
  */
4142
4142
  press_end_actions?: Type<NonEmptyArray<IDivAction>>;
4143
4143
  /**
4144
4144
  * Actions performed at the start of a click/tap on an element.
4145
4145
  *
4146
- * Platforms: not supported
4146
+ * Platforms: web
4147
4147
  */
4148
4148
  press_start_actions?: Type<NonEmptyArray<IDivAction>>;
4149
4149
  /**
@@ -4365,14 +4365,14 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
4365
4365
  * Actions performed after hovering over an element. Available on platforms that support pointing
4366
4366
  * devices (such as a mouse or stylus).
4367
4367
  *
4368
- * Platforms: not supported
4368
+ * Platforms: web
4369
4369
  */
4370
4370
  hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
4371
4371
  /**
4372
4372
  * Actions performed when hovering over an element. Available on platforms that support pointing
4373
4373
  * devices (such as a mouse or stylus).
4374
4374
  *
4375
- * Platforms: not supported
4375
+ * Platforms: web
4376
4376
  */
4377
4377
  hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
4378
4378
  /**
@@ -4408,13 +4408,13 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
4408
4408
  /**
4409
4409
  * Actions performed after clicking/tapping an element.
4410
4410
  *
4411
- * Platforms: not supported
4411
+ * Platforms: web
4412
4412
  */
4413
4413
  press_end_actions?: Type<NonEmptyArray<IDivAction>>;
4414
4414
  /**
4415
4415
  * Actions performed at the start of a click/tap on an element.
4416
4416
  *
4417
- * Platforms: not supported
4417
+ * Platforms: web
4418
4418
  */
4419
4419
  press_start_actions?: Type<NonEmptyArray<IDivAction>>;
4420
4420
  /**
@@ -4619,14 +4619,14 @@ interface DivGridProps {
4619
4619
  * Actions performed after hovering over an element. Available on platforms that support pointing
4620
4620
  * devices (such as a mouse or stylus).
4621
4621
  *
4622
- * Platforms: not supported
4622
+ * Platforms: web
4623
4623
  */
4624
4624
  hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
4625
4625
  /**
4626
4626
  * Actions performed when hovering over an element. Available on platforms that support pointing
4627
4627
  * devices (such as a mouse or stylus).
4628
4628
  *
4629
- * Platforms: not supported
4629
+ * Platforms: web
4630
4630
  */
4631
4631
  hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
4632
4632
  /**
@@ -4662,13 +4662,13 @@ interface DivGridProps {
4662
4662
  /**
4663
4663
  * Actions performed after clicking/tapping an element.
4664
4664
  *
4665
- * Platforms: not supported
4665
+ * Platforms: web
4666
4666
  */
4667
4667
  press_end_actions?: Type<NonEmptyArray<IDivAction>>;
4668
4668
  /**
4669
4669
  * Actions performed at the start of a click/tap on an element.
4670
4670
  *
4671
- * Platforms: not supported
4671
+ * Platforms: web
4672
4672
  */
4673
4673
  press_start_actions?: Type<NonEmptyArray<IDivAction>>;
4674
4674
  /**
@@ -4897,14 +4897,14 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
4897
4897
  * Actions performed after hovering over an element. Available on platforms that support pointing
4898
4898
  * devices (such as a mouse or stylus).
4899
4899
  *
4900
- * Platforms: not supported
4900
+ * Platforms: web
4901
4901
  */
4902
4902
  hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
4903
4903
  /**
4904
4904
  * Actions performed when hovering over an element. Available on platforms that support pointing
4905
4905
  * devices (such as a mouse or stylus).
4906
4906
  *
4907
- * Platforms: not supported
4907
+ * Platforms: web
4908
4908
  */
4909
4909
  hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
4910
4910
  /**
@@ -4952,13 +4952,13 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
4952
4952
  /**
4953
4953
  * Actions performed after clicking/tapping an element.
4954
4954
  *
4955
- * Platforms: not supported
4955
+ * Platforms: web
4956
4956
  */
4957
4957
  press_end_actions?: Type<NonEmptyArray<IDivAction>>;
4958
4958
  /**
4959
4959
  * Actions performed at the start of a click/tap on an element.
4960
4960
  *
4961
- * Platforms: not supported
4961
+ * Platforms: web
4962
4962
  */
4963
4963
  press_start_actions?: Type<NonEmptyArray<IDivAction>>;
4964
4964
  /**
@@ -5202,14 +5202,14 @@ interface DivImageProps {
5202
5202
  * Actions performed after hovering over an element. Available on platforms that support pointing
5203
5203
  * devices (such as a mouse or stylus).
5204
5204
  *
5205
- * Platforms: not supported
5205
+ * Platforms: web
5206
5206
  */
5207
5207
  hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
5208
5208
  /**
5209
5209
  * Actions performed when hovering over an element. Available on platforms that support pointing
5210
5210
  * devices (such as a mouse or stylus).
5211
5211
  *
5212
- * Platforms: not supported
5212
+ * Platforms: web
5213
5213
  */
5214
5214
  hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
5215
5215
  /**
@@ -5257,13 +5257,13 @@ interface DivImageProps {
5257
5257
  /**
5258
5258
  * Actions performed after clicking/tapping an element.
5259
5259
  *
5260
- * Platforms: not supported
5260
+ * Platforms: web
5261
5261
  */
5262
5262
  press_end_actions?: Type<NonEmptyArray<IDivAction>>;
5263
5263
  /**
5264
5264
  * Actions performed at the start of a click/tap on an element.
5265
5265
  *
5266
- * Platforms: not supported
5266
+ * Platforms: web
5267
5267
  */
5268
5268
  press_start_actions?: Type<NonEmptyArray<IDivAction>>;
5269
5269
  /**
@@ -7011,21 +7011,10 @@ interface DivNumberAnimatorProps {
7011
7011
  declare class DivPageContentSize<T extends DivPageContentSizeProps = DivPageContentSizeProps> {
7012
7012
  readonly _props?: Exact<DivPageContentSizeProps, T>;
7013
7013
  readonly type = "wrap_content";
7014
- /**
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.
7017
- */
7018
- alignment?: Type<DivPageContentSizeAlignment | DivExpression>;
7019
7014
  constructor(props?: Exact<DivPageContentSizeProps, T>);
7020
7015
  }
7021
7016
  interface DivPageContentSizeProps {
7022
- /**
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.
7025
- */
7026
- alignment?: Type<DivPageContentSizeAlignment | DivExpression>;
7027
7017
  }
7028
- declare type DivPageContentSizeAlignment = 'start' | 'center' | 'end';
7029
7018
 
7030
7019
  /**
7031
7020
  * Page width (%).
@@ -7365,6 +7354,13 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
7365
7354
  * Platforms: android, ios, web
7366
7355
  */
7367
7356
  row_span?: Type<number | DivExpression>;
7357
+ /**
7358
+ * Alignment of pager pages along the scroll axis. For edge alignment, the margin from the edge
7359
+ * of the parent equals the value of the corresponding padding.
7360
+ *
7361
+ * Platforms: ios
7362
+ */
7363
+ scroll_axis_alignment?: Type<DivPagerScrollAxisAlignment | DivExpression>;
7368
7364
  /**
7369
7365
  * List of [actions](div-action.md) to be executed when selecting an element in
7370
7366
  * [pager](div-pager.md).
@@ -7606,6 +7602,13 @@ interface DivPagerProps {
7606
7602
  * Platforms: android, ios, web
7607
7603
  */
7608
7604
  row_span?: Type<number | DivExpression>;
7605
+ /**
7606
+ * Alignment of pager pages along the scroll axis. For edge alignment, the margin from the edge
7607
+ * of the parent equals the value of the corresponding padding.
7608
+ *
7609
+ * Platforms: ios
7610
+ */
7611
+ scroll_axis_alignment?: Type<DivPagerScrollAxisAlignment | DivExpression>;
7609
7612
  /**
7610
7613
  * List of [actions](div-action.md) to be executed when selecting an element in
7611
7614
  * [pager](div-pager.md).
@@ -7690,6 +7693,7 @@ interface DivPagerProps {
7690
7693
  width?: Type<DivSize>;
7691
7694
  }
7692
7695
  declare type DivPagerOrientation = 'horizontal' | 'vertical';
7696
+ declare type DivPagerScrollAxisAlignment = 'start' | 'center' | 'end';
7693
7697
 
7694
7698
  declare type DivPagerLayoutMode = DivPageSize | DivNeighbourPageSize | DivPageContentSize;
7695
7699
 
@@ -8655,14 +8659,14 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
8655
8659
  * Actions performed after hovering over an element. Available on platforms that support pointing
8656
8660
  * devices (such as a mouse or stylus).
8657
8661
  *
8658
- * Platforms: not supported
8662
+ * Platforms: web
8659
8663
  */
8660
8664
  hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
8661
8665
  /**
8662
8666
  * Actions performed when hovering over an element. Available on platforms that support pointing
8663
8667
  * devices (such as a mouse or stylus).
8664
8668
  *
8665
- * Platforms: not supported
8669
+ * Platforms: web
8666
8670
  */
8667
8671
  hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
8668
8672
  /**
@@ -8694,13 +8698,13 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
8694
8698
  /**
8695
8699
  * Actions performed after clicking/tapping an element.
8696
8700
  *
8697
- * Platforms: not supported
8701
+ * Platforms: web
8698
8702
  */
8699
8703
  press_end_actions?: Type<NonEmptyArray<IDivAction>>;
8700
8704
  /**
8701
8705
  * Actions performed at the start of a click/tap on an element.
8702
8706
  *
8703
- * Platforms: not supported
8707
+ * Platforms: web
8704
8708
  */
8705
8709
  press_start_actions?: Type<NonEmptyArray<IDivAction>>;
8706
8710
  /**
@@ -8897,14 +8901,14 @@ interface DivSeparatorProps {
8897
8901
  * Actions performed after hovering over an element. Available on platforms that support pointing
8898
8902
  * devices (such as a mouse or stylus).
8899
8903
  *
8900
- * Platforms: not supported
8904
+ * Platforms: web
8901
8905
  */
8902
8906
  hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
8903
8907
  /**
8904
8908
  * Actions performed when hovering over an element. Available on platforms that support pointing
8905
8909
  * devices (such as a mouse or stylus).
8906
8910
  *
8907
- * Platforms: not supported
8911
+ * Platforms: web
8908
8912
  */
8909
8913
  hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
8910
8914
  /**
@@ -8936,13 +8940,13 @@ interface DivSeparatorProps {
8936
8940
  /**
8937
8941
  * Actions performed after clicking/tapping an element.
8938
8942
  *
8939
- * Platforms: not supported
8943
+ * Platforms: web
8940
8944
  */
8941
8945
  press_end_actions?: Type<NonEmptyArray<IDivAction>>;
8942
8946
  /**
8943
8947
  * Actions performed at the start of a click/tap on an element.
8944
8948
  *
8945
- * Platforms: not supported
8949
+ * Platforms: web
8946
8950
  */
8947
8951
  press_start_actions?: Type<NonEmptyArray<IDivAction>>;
8948
8952
  /**
@@ -9308,6 +9312,12 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
9308
9312
  * on iOS.
9309
9313
  */
9310
9314
  id?: Type<string>;
9315
+ /**
9316
+ * Enables or disables value selecting by click/tap or swipe.
9317
+ *
9318
+ * Platforms: android
9319
+ */
9320
+ is_enabled?: Type<IntBoolean | DivExpression>;
9311
9321
  /**
9312
9322
  * Provides data on the actual size of the element.
9313
9323
  *
@@ -9552,6 +9562,12 @@ interface DivSliderProps {
9552
9562
  * on iOS.
9553
9563
  */
9554
9564
  id?: Type<string>;
9565
+ /**
9566
+ * Enables or disables value selecting by click/tap or swipe.
9567
+ *
9568
+ * Platforms: android
9569
+ */
9570
+ is_enabled?: Type<IntBoolean | DivExpression>;
9555
9571
  /**
9556
9572
  * Provides data on the actual size of the element.
9557
9573
  *
@@ -9833,7 +9849,7 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
9833
9849
  /**
9834
9850
  * Enables the bounding of child elements by the parent's borders.
9835
9851
  *
9836
- * Platforms: android
9852
+ * Platforms: android, web
9837
9853
  */
9838
9854
  clip_to_bounds?: Type<IntBoolean | DivExpression>;
9839
9855
  /**
@@ -10051,7 +10067,7 @@ interface DivStateProps {
10051
10067
  /**
10052
10068
  * Enables the bounding of child elements by the parent's borders.
10053
10069
  *
10054
- * Platforms: android
10070
+ * Platforms: android, web
10055
10071
  */
10056
10072
  clip_to_bounds?: Type<IntBoolean | DivExpression>;
10057
10073
  /**
@@ -11473,14 +11489,14 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
11473
11489
  * Actions performed after hovering over an element. Available on platforms that support pointing
11474
11490
  * devices (such as a mouse or stylus).
11475
11491
  *
11476
- * Platforms: not supported
11492
+ * Platforms: web
11477
11493
  */
11478
11494
  hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
11479
11495
  /**
11480
11496
  * Actions performed when hovering over an element. Available on platforms that support pointing
11481
11497
  * devices (such as a mouse or stylus).
11482
11498
  *
11483
- * Platforms: not supported
11499
+ * Platforms: web
11484
11500
  */
11485
11501
  hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
11486
11502
  /**
@@ -11538,13 +11554,13 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
11538
11554
  /**
11539
11555
  * Actions performed after clicking/tapping an element.
11540
11556
  *
11541
- * Platforms: not supported
11557
+ * Platforms: web
11542
11558
  */
11543
11559
  press_end_actions?: Type<NonEmptyArray<IDivAction>>;
11544
11560
  /**
11545
11561
  * Actions performed at the start of a click/tap on an element.
11546
11562
  *
11547
- * Platforms: not supported
11563
+ * Platforms: web
11548
11564
  */
11549
11565
  press_start_actions?: Type<NonEmptyArray<IDivAction>>;
11550
11566
  /**
@@ -11851,14 +11867,14 @@ interface DivTextProps {
11851
11867
  * Actions performed after hovering over an element. Available on platforms that support pointing
11852
11868
  * devices (such as a mouse or stylus).
11853
11869
  *
11854
- * Platforms: not supported
11870
+ * Platforms: web
11855
11871
  */
11856
11872
  hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
11857
11873
  /**
11858
11874
  * Actions performed when hovering over an element. Available on platforms that support pointing
11859
11875
  * devices (such as a mouse or stylus).
11860
11876
  *
11861
- * Platforms: not supported
11877
+ * Platforms: web
11862
11878
  */
11863
11879
  hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
11864
11880
  /**
@@ -11916,13 +11932,13 @@ interface DivTextProps {
11916
11932
  /**
11917
11933
  * Actions performed after clicking/tapping an element.
11918
11934
  *
11919
- * Platforms: not supported
11935
+ * Platforms: web
11920
11936
  */
11921
11937
  press_end_actions?: Type<NonEmptyArray<IDivAction>>;
11922
11938
  /**
11923
11939
  * Actions performed at the start of a click/tap on an element.
11924
11940
  *
11925
- * Platforms: not supported
11941
+ * Platforms: web
11926
11942
  */
11927
11943
  press_start_actions?: Type<NonEmptyArray<IDivAction>>;
11928
11944
  /**
@@ -12092,20 +12108,14 @@ declare type DivTextTruncate = 'none' | 'start' | 'end' | 'middle';
12092
12108
  interface IDivTextEllipsis {
12093
12109
  /**
12094
12110
  * Actions when clicking on a crop marker.
12095
- *
12096
- * Platforms: android, ios, web
12097
12111
  */
12098
12112
  actions?: Type<NonEmptyArray<IDivAction>>;
12099
12113
  /**
12100
12114
  * Images embedded in a crop marker.
12101
- *
12102
- * Platforms: android, ios, web
12103
12115
  */
12104
12116
  images?: Type<NonEmptyArray<IDivTextImage>>;
12105
12117
  /**
12106
12118
  * Character ranges inside a crop marker with different text styles.
12107
- *
12108
- * Platforms: android, ios, web
12109
12119
  */
12110
12120
  ranges?: Type<NonEmptyArray<IDivTextRange>>;
12111
12121
  /**
@@ -12118,7 +12128,7 @@ interface IDivTextEllipsis {
12118
12128
  */
12119
12129
  interface IDivTextImage {
12120
12130
  /**
12121
- * Platforms: android
12131
+ * Platforms: android, web
12122
12132
  */
12123
12133
  accessibility?: Type<IImageAccessibility>;
12124
12134
  /**
@@ -12139,7 +12149,7 @@ interface IDivTextImage {
12139
12149
  * indexation from the end towards the begging of a string ([N, ..., 2, 1, 0]). Use to insert an
12140
12150
  * image by index relative to the end of a string.
12141
12151
  *
12142
- * Platforms: android
12152
+ * Platforms: android, web
12143
12153
  */
12144
12154
  indexing_direction?: Type<ImageIndexingDirection | DivExpression>;
12145
12155
  /**
@@ -12194,7 +12204,7 @@ interface IDivTextRange {
12194
12204
  */
12195
12205
  actions?: Type<NonEmptyArray<IDivAction>>;
12196
12206
  /**
12197
- * Vertical text alignment within the row.
12207
+ * Vertical text alignment within the row. Ignored when a baseline offset is specified.
12198
12208
  *
12199
12209
  * Platforms: android, web
12200
12210
  */
@@ -12203,6 +12213,12 @@ interface IDivTextRange {
12203
12213
  * Character range background.
12204
12214
  */
12205
12215
  background?: Type<DivTextRangeBackground>;
12216
+ /**
12217
+ * Character baseline vertial offset. If set, vertical alignment is ignored.
12218
+ *
12219
+ * Platforms: android
12220
+ */
12221
+ baseline_offset?: Type<number | DivExpression>;
12206
12222
  /**
12207
12223
  * Character range border.
12208
12224
  */
@@ -13589,4 +13605,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
13589
13605
  };
13590
13606
  };
13591
13607
 
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 };
13608
+ 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, DivPageContentSizeProps, DivPageSize, DivPageSizeProps, DivPageTransformation, DivPageTransformationOverlap, DivPageTransformationOverlapProps, DivPageTransformationSlide, DivPageTransformationSlideProps, DivPager, DivPagerLayoutMode, DivPagerOrientation, DivPagerProps, DivPagerScrollAxisAlignment, 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 };
@@ -1146,7 +1146,6 @@ class DivNumberAnimator {
1146
1146
  class DivPageContentSize {
1147
1147
  constructor(props) {
1148
1148
  this.type = 'wrap_content';
1149
- this.alignment = props === null || props === void 0 ? void 0 : props.alignment;
1150
1149
  }
1151
1150
  }
1152
1151
 
@@ -1228,6 +1227,7 @@ class DivPager {
1228
1227
  this.restrict_parent_scroll = props.restrict_parent_scroll;
1229
1228
  this.reuse_id = props.reuse_id;
1230
1229
  this.row_span = props.row_span;
1230
+ this.scroll_axis_alignment = props.scroll_axis_alignment;
1231
1231
  this.selected_actions = props.selected_actions;
1232
1232
  this.tooltips = props.tooltips;
1233
1233
  this.transform = props.transform;
@@ -1523,6 +1523,7 @@ class DivSlider {
1523
1523
  this.functions = props.functions;
1524
1524
  this.height = props.height;
1525
1525
  this.id = props.id;
1526
+ this.is_enabled = props.is_enabled;
1526
1527
  this.layout_provider = props.layout_provider;
1527
1528
  this.margins = props.margins;
1528
1529
  this.max_value = props.max_value;