@divkitframework/jsonbuilder 20.0.0 → 21.1.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.
@@ -146,7 +146,7 @@ interface ColorVariableProps {
146
146
  }
147
147
 
148
148
  /**
149
- * Sets the margins, without taking the properties of the screen.
149
+ * Sets margins without regard to screen properties.
150
150
  */
151
151
  interface IDivAbsoluteEdgeInsets {
152
152
  /**
@@ -168,7 +168,7 @@ interface IDivAbsoluteEdgeInsets {
168
168
  }
169
169
 
170
170
  /**
171
- * Accessibility for disabled people.
171
+ * Accessibility settings.
172
172
  */
173
173
  interface IDivAccessibility {
174
174
  /**
@@ -187,7 +187,7 @@ interface IDivAccessibility {
187
187
  */
188
188
  mode?: Type<DivAccessibilityMode | DivExpression>;
189
189
  /**
190
- * Mutes the sound of the screen reader after interacting with the element.
190
+ * Mutes the screen reader sound after interacting with the element.
191
191
  */
192
192
  mute_after_action?: Type<IntBoolean | DivExpression>;
193
193
  /**
@@ -197,8 +197,7 @@ interface IDivAccessibility {
197
197
  state_description?: Type<string | DivExpression>;
198
198
  /**
199
199
  * Element role. It is used for correct identification of an element by an accessibility service.
200
- * The `list` element is used to group list items into a single element; works only on
201
- * Android/iOS.
200
+ * The `list` element is used to group list items into a single element.
202
201
  */
203
202
  type?: Type<DivAccessibilityType>;
204
203
  }
@@ -344,7 +343,7 @@ declare type DivBackground = DivLinearGradient | DivRadialGradient | DivImageBac
344
343
 
345
344
  interface IDivBase {
346
345
  /**
347
- * Accessibility for disabled people.
346
+ * Accessibility settings.
348
347
  */
349
348
  accessibility?: Type<IDivAccessibility>;
350
349
  /**
@@ -414,8 +413,8 @@ interface IDivBase {
414
413
  */
415
414
  tooltips?: Type<NonEmptyArray<IDivTooltip>>;
416
415
  /**
417
- * Transformation of the element. Applies the passed transform to the element. The content that
418
- * does not fit into the original view will be cut off.
416
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
417
+ * view area is cut off.
419
418
  */
420
419
  transform?: Type<IDivTransform>;
421
420
  /**
@@ -465,14 +464,14 @@ declare class DivBlur<T extends DivBlurProps = DivBlurProps> {
465
464
  readonly _props?: Exact<DivBlurProps, T>;
466
465
  readonly type = "blur";
467
466
  /**
468
- * Defines how many pixels on the screen blend into each other. It is specified in `dp`.
467
+ * Blur radius. Defines how many pixels blend into each other. Specified in: `dp`.
469
468
  */
470
469
  radius: Type<number | DivExpression>;
471
470
  constructor(props: Exact<DivBlurProps, T>);
472
471
  }
473
472
  interface DivBlurProps {
474
473
  /**
475
- * Defines how many pixels on the screen blend into each other. It is specified in `dp`.
474
+ * Blur radius. Defines how many pixels blend into each other. Specified in: `dp`.
476
475
  */
477
476
  radius: Type<number | DivExpression>;
478
477
  }
@@ -560,7 +559,7 @@ interface DivChangeSetTransitionProps {
560
559
  declare type DivChangeTransition = DivChangeSetTransition | DivChangeBoundsTransition;
561
560
 
562
561
  /**
563
- * A circle.
562
+ * Circle.
564
563
  */
565
564
  declare class DivCircleShape<T extends DivCircleShapeProps = DivCircleShapeProps> {
566
565
  readonly _props?: Exact<DivCircleShapeProps, T>;
@@ -587,7 +586,7 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
587
586
  readonly _props?: Exact<DivContainerProps, T>;
588
587
  readonly type = "container";
589
588
  /**
590
- * Accessibility for disabled people.
589
+ * Accessibility settings.
591
590
  */
592
591
  accessibility?: Type<IDivAccessibility>;
593
592
  /**
@@ -595,7 +594,7 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
595
594
  */
596
595
  action?: Type<IDivAction>;
597
596
  /**
598
- * Action animation. Web supports `fade`, `scale` and `set` only.
597
+ * Click animation. The web only supports the following values: `fade`, `scale`, and `set`.
599
598
  */
600
599
  action_animation?: Type<IDivAnimation>;
601
600
  /**
@@ -666,11 +665,10 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
666
665
  */
667
666
  items: Type<NonEmptyArray<Div>>;
668
667
  /**
669
- * Method of placing elements. `wrap` value includes the transfer of elements to the next line if
670
- * they did not fit in the previous one. If the value is set to `wrap`, then a separate line will
671
- * be allocated for all elements with a size value of `match_parent` along the main axis. If the
672
- * value is set to `wrap`, then elements with a size value of `match_parent` along the cross axis
673
- * will be ignored.
668
+ * Element placement method. The `wrap` value transfers elements to the next line if they don't
669
+ * fit in the previous one. If the `wrap` value is set:A separate line is allocated for each
670
+ * element along the main axis with the size value set to `match_parent`.Elements along the cross
671
+ * axis with the size value `match_parent` are ignored.
674
672
  */
675
673
  layout_mode?: Type<DivContainerLayoutMode | DivExpression>;
676
674
  /**
@@ -717,8 +715,8 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
717
715
  */
718
716
  tooltips?: Type<NonEmptyArray<IDivTooltip>>;
719
717
  /**
720
- * Transformation of the element. Applies the passed transform to the element. The content that
721
- * does not fit into the original view will be cut off.
718
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
719
+ * view area is cut off.
722
720
  */
723
721
  transform?: Type<IDivTransform>;
724
722
  /**
@@ -761,7 +759,7 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
761
759
  }
762
760
  interface DivContainerProps {
763
761
  /**
764
- * Accessibility for disabled people.
762
+ * Accessibility settings.
765
763
  */
766
764
  accessibility?: Type<IDivAccessibility>;
767
765
  /**
@@ -769,7 +767,7 @@ interface DivContainerProps {
769
767
  */
770
768
  action?: Type<IDivAction>;
771
769
  /**
772
- * Action animation. Web supports `fade`, `scale` and `set` only.
770
+ * Click animation. The web only supports the following values: `fade`, `scale`, and `set`.
773
771
  */
774
772
  action_animation?: Type<IDivAnimation>;
775
773
  /**
@@ -840,11 +838,10 @@ interface DivContainerProps {
840
838
  */
841
839
  items: Type<NonEmptyArray<Div>>;
842
840
  /**
843
- * Method of placing elements. `wrap` value includes the transfer of elements to the next line if
844
- * they did not fit in the previous one. If the value is set to `wrap`, then a separate line will
845
- * be allocated for all elements with a size value of `match_parent` along the main axis. If the
846
- * value is set to `wrap`, then elements with a size value of `match_parent` along the cross axis
847
- * will be ignored.
841
+ * Element placement method. The `wrap` value transfers elements to the next line if they don't
842
+ * fit in the previous one. If the `wrap` value is set:A separate line is allocated for each
843
+ * element along the main axis with the size value set to `match_parent`.Elements along the cross
844
+ * axis with the size value `match_parent` are ignored.
848
845
  */
849
846
  layout_mode?: Type<DivContainerLayoutMode | DivExpression>;
850
847
  /**
@@ -891,8 +888,8 @@ interface DivContainerProps {
891
888
  */
892
889
  tooltips?: Type<NonEmptyArray<IDivTooltip>>;
893
890
  /**
894
- * Transformation of the element. Applies the passed transform to the element. The content that
895
- * does not fit into the original view will be cut off.
891
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
892
+ * view area is cut off.
896
893
  */
897
894
  transform?: Type<IDivTransform>;
898
895
  /**
@@ -936,19 +933,19 @@ declare type DivContainerLayoutMode = 'no_wrap' | 'wrap';
936
933
  declare type DivContainerOrientation = 'vertical' | 'horizontal' | 'overlap';
937
934
  interface IDivContainerSeparator {
938
935
  /**
939
- * Enables showing of separator after the last item.
936
+ * Enables displaying the separator after the last item.
940
937
  */
941
938
  show_at_end?: Type<IntBoolean | DivExpression>;
942
939
  /**
943
- * Enables showing of separator before the first item.
940
+ * Enables displaying the separator before the first item.
944
941
  */
945
942
  show_at_start?: Type<IntBoolean | DivExpression>;
946
943
  /**
947
- * Enables showing of separator between items.
944
+ * Enables displaying the separator between items.
948
945
  */
949
946
  show_between?: Type<IntBoolean | DivExpression>;
950
947
  /**
951
- * Style of the separator.
948
+ * Separator style.
952
949
  */
953
950
  style: Type<DivDrawable>;
954
951
  }
@@ -985,7 +982,7 @@ declare class DivCustom<T extends DivCustomProps = DivCustomProps> {
985
982
  readonly _props?: Exact<DivCustomProps, T>;
986
983
  readonly type = "custom";
987
984
  /**
988
- * Accessibility for disabled people.
985
+ * Accessibility settings.
989
986
  */
990
987
  accessibility?: Type<IDivAccessibility>;
991
988
  /**
@@ -1067,8 +1064,8 @@ declare class DivCustom<T extends DivCustomProps = DivCustomProps> {
1067
1064
  */
1068
1065
  tooltips?: Type<NonEmptyArray<IDivTooltip>>;
1069
1066
  /**
1070
- * Transformation of the element. Applies the passed transform to the element. The content that
1071
- * does not fit into the original view will be cut off.
1067
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
1068
+ * view area is cut off.
1072
1069
  */
1073
1070
  transform?: Type<IDivTransform>;
1074
1071
  /**
@@ -1111,7 +1108,7 @@ declare class DivCustom<T extends DivCustomProps = DivCustomProps> {
1111
1108
  }
1112
1109
  interface DivCustomProps {
1113
1110
  /**
1114
- * Accessibility for disabled people.
1111
+ * Accessibility settings.
1115
1112
  */
1116
1113
  accessibility?: Type<IDivAccessibility>;
1117
1114
  /**
@@ -1193,8 +1190,8 @@ interface DivCustomProps {
1193
1190
  */
1194
1191
  tooltips?: Type<NonEmptyArray<IDivTooltip>>;
1195
1192
  /**
1196
- * Transformation of the element. Applies the passed transform to the element. The content that
1197
- * does not fit into the original view will be cut off.
1193
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
1194
+ * view area is cut off.
1198
1195
  */
1199
1196
  transform?: Type<IDivTransform>;
1200
1197
  /**
@@ -1242,16 +1239,16 @@ declare class DivDefaultIndicatorItemPlacement<T extends DivDefaultIndicatorItem
1242
1239
  readonly _props?: Exact<DivDefaultIndicatorItemPlacementProps, T>;
1243
1240
  readonly type = "default";
1244
1241
  /**
1245
- * Spacing between indicator centers. It is deprecated for Android. Use `items_placement`
1246
- * instead.
1242
+ * Spacing between indicator centers. <br>The parameter is deprecated for Android, please use the
1243
+ * `items_placement` parameter instead.
1247
1244
  */
1248
1245
  space_between_centers?: Type<DivFixedSize>;
1249
1246
  constructor(props?: Exact<DivDefaultIndicatorItemPlacementProps, T>);
1250
1247
  }
1251
1248
  interface DivDefaultIndicatorItemPlacementProps {
1252
1249
  /**
1253
- * Spacing between indicator centers. It is deprecated for Android. Use `items_placement`
1254
- * instead.
1250
+ * Spacing between indicator centers. <br>The parameter is deprecated for Android, please use the
1251
+ * `items_placement` parameter instead.
1255
1252
  */
1256
1253
  space_between_centers?: Type<DivFixedSize>;
1257
1254
  }
@@ -1424,7 +1421,7 @@ interface IDivFocus {
1424
1421
  */
1425
1422
  background?: Type<NonEmptyArray<DivBackground>>;
1426
1423
  /**
1427
- * Border of an element when it is in focus
1424
+ * Border of an element when it's in focus.
1428
1425
  */
1429
1426
  border?: Type<IDivBorder>;
1430
1427
  /**
@@ -1462,7 +1459,7 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
1462
1459
  readonly _props?: Exact<DivGalleryProps, T>;
1463
1460
  readonly type = "gallery";
1464
1461
  /**
1465
- * Accessibility for disabled people.
1462
+ * Accessibility settings.
1466
1463
  */
1467
1464
  accessibility?: Type<IDivAccessibility>;
1468
1465
  /**
@@ -1501,7 +1498,7 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
1501
1498
  */
1502
1499
  cross_content_alignment?: Type<DivGalleryCrossContentAlignment | DivExpression>;
1503
1500
  /**
1504
- * Spacing between elements across the scroll axis. Default value is `item_spacing`
1501
+ * Spacing between elements across the scroll axis. By default, the value set to `item_spacing`.
1505
1502
  */
1506
1503
  cross_spacing?: Type<number | DivExpression>;
1507
1504
  /**
@@ -1584,8 +1581,8 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
1584
1581
  */
1585
1582
  tooltips?: Type<NonEmptyArray<IDivTooltip>>;
1586
1583
  /**
1587
- * Transformation of the element. Applies the passed transform to the element. The content that
1588
- * does not fit into the original view will be cut off.
1584
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
1585
+ * view area is cut off.
1589
1586
  */
1590
1587
  transform?: Type<IDivTransform>;
1591
1588
  /**
@@ -1628,7 +1625,7 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
1628
1625
  }
1629
1626
  interface DivGalleryProps {
1630
1627
  /**
1631
- * Accessibility for disabled people.
1628
+ * Accessibility settings.
1632
1629
  */
1633
1630
  accessibility?: Type<IDivAccessibility>;
1634
1631
  /**
@@ -1667,7 +1664,7 @@ interface DivGalleryProps {
1667
1664
  */
1668
1665
  cross_content_alignment?: Type<DivGalleryCrossContentAlignment | DivExpression>;
1669
1666
  /**
1670
- * Spacing between elements across the scroll axis. Default value is `item_spacing`
1667
+ * Spacing between elements across the scroll axis. By default, the value set to `item_spacing`.
1671
1668
  */
1672
1669
  cross_spacing?: Type<number | DivExpression>;
1673
1670
  /**
@@ -1750,8 +1747,8 @@ interface DivGalleryProps {
1750
1747
  */
1751
1748
  tooltips?: Type<NonEmptyArray<IDivTooltip>>;
1752
1749
  /**
1753
- * Transformation of the element. Applies the passed transform to the element. The content that
1754
- * does not fit into the original view will be cut off.
1750
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
1751
+ * view area is cut off.
1755
1752
  */
1756
1753
  transform?: Type<IDivTransform>;
1757
1754
  /**
@@ -1802,7 +1799,7 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
1802
1799
  readonly _props?: Exact<DivGifImageProps, T>;
1803
1800
  readonly type = "gif";
1804
1801
  /**
1805
- * Accessibility for disabled people.
1802
+ * Accessibility settings.
1806
1803
  */
1807
1804
  accessibility?: Type<IDivAccessibility>;
1808
1805
  /**
@@ -1810,7 +1807,7 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
1810
1807
  */
1811
1808
  action?: Type<IDivAction>;
1812
1809
  /**
1813
- * Action animation. Web supports `fade`, `scale` and `set` only.
1810
+ * Click animation. The web only supports the following values: `fade`, `scale`, and `set`.
1814
1811
  */
1815
1812
  action_animation?: Type<IDivAnimation>;
1816
1813
  /**
@@ -1923,8 +1920,8 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
1923
1920
  */
1924
1921
  tooltips?: Type<NonEmptyArray<IDivTooltip>>;
1925
1922
  /**
1926
- * Transformation of the element. Applies the passed transform to the element. The content that
1927
- * does not fit into the original view will be cut off.
1923
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
1924
+ * view area is cut off.
1928
1925
  */
1929
1926
  transform?: Type<IDivTransform>;
1930
1927
  /**
@@ -1967,7 +1964,7 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
1967
1964
  }
1968
1965
  interface DivGifImageProps {
1969
1966
  /**
1970
- * Accessibility for disabled people.
1967
+ * Accessibility settings.
1971
1968
  */
1972
1969
  accessibility?: Type<IDivAccessibility>;
1973
1970
  /**
@@ -1975,7 +1972,7 @@ interface DivGifImageProps {
1975
1972
  */
1976
1973
  action?: Type<IDivAction>;
1977
1974
  /**
1978
- * Action animation. Web supports `fade`, `scale` and `set` only.
1975
+ * Click animation. The web only supports the following values: `fade`, `scale`, and `set`.
1979
1976
  */
1980
1977
  action_animation?: Type<IDivAnimation>;
1981
1978
  /**
@@ -2088,8 +2085,8 @@ interface DivGifImageProps {
2088
2085
  */
2089
2086
  tooltips?: Type<NonEmptyArray<IDivTooltip>>;
2090
2087
  /**
2091
- * Transformation of the element. Applies the passed transform to the element. The content that
2092
- * does not fit into the original view will be cut off.
2088
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
2089
+ * view area is cut off.
2093
2090
  */
2094
2091
  transform?: Type<IDivTransform>;
2095
2092
  /**
@@ -2137,7 +2134,7 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
2137
2134
  readonly _props?: Exact<DivGridProps, T>;
2138
2135
  readonly type = "grid";
2139
2136
  /**
2140
- * Accessibility for disabled people.
2137
+ * Accessibility settings.
2141
2138
  */
2142
2139
  accessibility?: Type<IDivAccessibility>;
2143
2140
  /**
@@ -2145,7 +2142,7 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
2145
2142
  */
2146
2143
  action?: Type<IDivAction>;
2147
2144
  /**
2148
- * Action animation. Web supports `fade`, `scale` and `set` only.
2145
+ * Click animation. The web only supports the following values: `fade`, `scale`, and `set`.
2149
2146
  */
2150
2147
  action_animation?: Type<IDivAnimation>;
2151
2148
  /**
@@ -2243,8 +2240,8 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
2243
2240
  */
2244
2241
  tooltips?: Type<NonEmptyArray<IDivTooltip>>;
2245
2242
  /**
2246
- * Transformation of the element. Applies the passed transform to the element. The content that
2247
- * does not fit into the original view will be cut off.
2243
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
2244
+ * view area is cut off.
2248
2245
  */
2249
2246
  transform?: Type<IDivTransform>;
2250
2247
  /**
@@ -2287,7 +2284,7 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
2287
2284
  }
2288
2285
  interface DivGridProps {
2289
2286
  /**
2290
- * Accessibility for disabled people.
2287
+ * Accessibility settings.
2291
2288
  */
2292
2289
  accessibility?: Type<IDivAccessibility>;
2293
2290
  /**
@@ -2295,7 +2292,7 @@ interface DivGridProps {
2295
2292
  */
2296
2293
  action?: Type<IDivAction>;
2297
2294
  /**
2298
- * Action animation. Web supports `fade`, `scale` and `set` only.
2295
+ * Click animation. The web only supports the following values: `fade`, `scale`, and `set`.
2299
2296
  */
2300
2297
  action_animation?: Type<IDivAnimation>;
2301
2298
  /**
@@ -2393,8 +2390,8 @@ interface DivGridProps {
2393
2390
  */
2394
2391
  tooltips?: Type<NonEmptyArray<IDivTooltip>>;
2395
2392
  /**
2396
- * Transformation of the element. Applies the passed transform to the element. The content that
2397
- * does not fit into the original view will be cut off.
2393
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
2394
+ * view area is cut off.
2398
2395
  */
2399
2396
  transform?: Type<IDivTransform>;
2400
2397
  /**
@@ -2442,7 +2439,7 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
2442
2439
  readonly _props?: Exact<DivImageProps, T>;
2443
2440
  readonly type = "image";
2444
2441
  /**
2445
- * Accessibility for disabled people.
2442
+ * Accessibility settings.
2446
2443
  */
2447
2444
  accessibility?: Type<IDivAccessibility>;
2448
2445
  /**
@@ -2450,7 +2447,7 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
2450
2447
  */
2451
2448
  action?: Type<IDivAction>;
2452
2449
  /**
2453
- * Action animation. Web supports `fade`, `scale` and `set` only.
2450
+ * Click animation. The web only supports the following values: `fade`, `scale`, and `set`.
2454
2451
  */
2455
2452
  action_animation?: Type<IDivAnimation>;
2456
2453
  /**
@@ -2576,7 +2573,7 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
2576
2573
  */
2577
2574
  tint_color?: Type<string | DivExpression>;
2578
2575
  /**
2579
- * The blend mode of color specified in tint_color.
2576
+ * Blend mode of the color specified in `tint_color`.
2580
2577
  */
2581
2578
  tint_mode?: Type<DivBlendMode | DivExpression>;
2582
2579
  /**
@@ -2585,8 +2582,8 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
2585
2582
  */
2586
2583
  tooltips?: Type<NonEmptyArray<IDivTooltip>>;
2587
2584
  /**
2588
- * Transformation of the element. Applies the passed transform to the element. The content that
2589
- * does not fit into the original view will be cut off.
2585
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
2586
+ * view area is cut off.
2590
2587
  */
2591
2588
  transform?: Type<IDivTransform>;
2592
2589
  /**
@@ -2629,7 +2626,7 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
2629
2626
  }
2630
2627
  interface DivImageProps {
2631
2628
  /**
2632
- * Accessibility for disabled people.
2629
+ * Accessibility settings.
2633
2630
  */
2634
2631
  accessibility?: Type<IDivAccessibility>;
2635
2632
  /**
@@ -2637,7 +2634,7 @@ interface DivImageProps {
2637
2634
  */
2638
2635
  action?: Type<IDivAction>;
2639
2636
  /**
2640
- * Action animation. Web supports `fade`, `scale` and `set` only.
2637
+ * Click animation. The web only supports the following values: `fade`, `scale`, and `set`.
2641
2638
  */
2642
2639
  action_animation?: Type<IDivAnimation>;
2643
2640
  /**
@@ -2763,7 +2760,7 @@ interface DivImageProps {
2763
2760
  */
2764
2761
  tint_color?: Type<string | DivExpression>;
2765
2762
  /**
2766
- * The blend mode of color specified in tint_color.
2763
+ * Blend mode of the color specified in `tint_color`.
2767
2764
  */
2768
2765
  tint_mode?: Type<DivBlendMode | DivExpression>;
2769
2766
  /**
@@ -2772,8 +2769,8 @@ interface DivImageProps {
2772
2769
  */
2773
2770
  tooltips?: Type<NonEmptyArray<IDivTooltip>>;
2774
2771
  /**
2775
- * Transformation of the element. Applies the passed transform to the element. The content that
2776
- * does not fit into the original view will be cut off.
2772
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
2773
+ * view area is cut off.
2777
2774
  */
2778
2775
  transform?: Type<IDivTransform>;
2779
2776
  /**
@@ -2890,7 +2887,7 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
2890
2887
  readonly _props?: Exact<DivIndicatorProps, T>;
2891
2888
  readonly type = "indicator";
2892
2889
  /**
2893
- * Accessibility for disabled people.
2890
+ * Accessibility settings.
2894
2891
  */
2895
2892
  accessibility?: Type<IDivAccessibility>;
2896
2893
  /**
@@ -2954,9 +2951,8 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
2954
2951
  */
2955
2952
  inactive_item_color?: Type<string | DivExpression>;
2956
2953
  /**
2957
- * Indicator items placement mode. There are 2 modes: default (indicators width is fixed and
2958
- * defined by the shape parameters) and stretch (indicators will be expanded to fill the whole
2959
- * width).
2954
+ * Indicator items placement mode:Default: Indicators' width is fixed and defined by the `shape`
2955
+ * parameters.Stretch: Indicators are expanded to fill the entire width.
2960
2956
  */
2961
2957
  items_placement?: Type<DivIndicatorItemPlacement>;
2962
2958
  /**
@@ -2990,8 +2986,8 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
2990
2986
  */
2991
2987
  shape?: Type<DivShape>;
2992
2988
  /**
2993
- * Spacing between indicator centers. It is deprecated for Android. Use `items_placement`
2994
- * instead.
2989
+ * Spacing between indicator centers. <br>The parameter is deprecated for Android, please use the
2990
+ * `items_placement` parameter instead.
2995
2991
  *
2996
2992
  * @deprecated
2997
2993
  */
@@ -3002,8 +2998,8 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
3002
2998
  */
3003
2999
  tooltips?: Type<NonEmptyArray<IDivTooltip>>;
3004
3000
  /**
3005
- * Transformation of the element. Applies the passed transform to the element. The content that
3006
- * does not fit into the original view will be cut off.
3001
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
3002
+ * view area is cut off.
3007
3003
  */
3008
3004
  transform?: Type<IDivTransform>;
3009
3005
  /**
@@ -3046,7 +3042,7 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
3046
3042
  }
3047
3043
  interface DivIndicatorProps {
3048
3044
  /**
3049
- * Accessibility for disabled people.
3045
+ * Accessibility settings.
3050
3046
  */
3051
3047
  accessibility?: Type<IDivAccessibility>;
3052
3048
  /**
@@ -3110,9 +3106,8 @@ interface DivIndicatorProps {
3110
3106
  */
3111
3107
  inactive_item_color?: Type<string | DivExpression>;
3112
3108
  /**
3113
- * Indicator items placement mode. There are 2 modes: default (indicators width is fixed and
3114
- * defined by the shape parameters) and stretch (indicators will be expanded to fill the whole
3115
- * width).
3109
+ * Indicator items placement mode:Default: Indicators' width is fixed and defined by the `shape`
3110
+ * parameters.Stretch: Indicators are expanded to fill the entire width.
3116
3111
  */
3117
3112
  items_placement?: Type<DivIndicatorItemPlacement>;
3118
3113
  /**
@@ -3146,8 +3141,8 @@ interface DivIndicatorProps {
3146
3141
  */
3147
3142
  shape?: Type<DivShape>;
3148
3143
  /**
3149
- * Spacing between indicator centers. It is deprecated for Android. Use `items_placement`
3150
- * instead.
3144
+ * Spacing between indicator centers. <br>The parameter is deprecated for Android, please use the
3145
+ * `items_placement` parameter instead.
3151
3146
  *
3152
3147
  * @deprecated
3153
3148
  */
@@ -3158,8 +3153,8 @@ interface DivIndicatorProps {
3158
3153
  */
3159
3154
  tooltips?: Type<NonEmptyArray<IDivTooltip>>;
3160
3155
  /**
3161
- * Transformation of the element. Applies the passed transform to the element. The content that
3162
- * does not fit into the original view will be cut off.
3156
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
3157
+ * view area is cut off.
3163
3158
  */
3164
3159
  transform?: Type<IDivTransform>;
3165
3160
  /**
@@ -3221,7 +3216,7 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
3221
3216
  readonly _props?: Exact<DivInputProps, T>;
3222
3217
  readonly type = "input";
3223
3218
  /**
3224
- * Accessibility for disabled people.
3219
+ * Accessibility settings.
3225
3220
  */
3226
3221
  accessibility?: Type<IDivAccessibility>;
3227
3222
  /**
@@ -3318,7 +3313,7 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
3318
3313
  */
3319
3314
  margins?: Type<IDivEdgeInsets>;
3320
3315
  /**
3321
- * Maximum number of lines that will be visible in the input view.
3316
+ * Maximum number of lines to be displayed in the input field.
3322
3317
  */
3323
3318
  max_visible_lines?: Type<number | DivExpression>;
3324
3319
  /**
@@ -3356,8 +3351,8 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
3356
3351
  */
3357
3352
  tooltips?: Type<NonEmptyArray<IDivTooltip>>;
3358
3353
  /**
3359
- * Transformation of the element. Applies the passed transform to the element. The content that
3360
- * does not fit into the original view will be cut off.
3354
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
3355
+ * view area is cut off.
3361
3356
  */
3362
3357
  transform?: Type<IDivTransform>;
3363
3358
  /**
@@ -3400,7 +3395,7 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
3400
3395
  }
3401
3396
  interface DivInputProps {
3402
3397
  /**
3403
- * Accessibility for disabled people.
3398
+ * Accessibility settings.
3404
3399
  */
3405
3400
  accessibility?: Type<IDivAccessibility>;
3406
3401
  /**
@@ -3497,7 +3492,7 @@ interface DivInputProps {
3497
3492
  */
3498
3493
  margins?: Type<IDivEdgeInsets>;
3499
3494
  /**
3500
- * Maximum number of lines that will be visible in the input view.
3495
+ * Maximum number of lines to be displayed in the input field.
3501
3496
  */
3502
3497
  max_visible_lines?: Type<number | DivExpression>;
3503
3498
  /**
@@ -3535,8 +3530,8 @@ interface DivInputProps {
3535
3530
  */
3536
3531
  tooltips?: Type<NonEmptyArray<IDivTooltip>>;
3537
3532
  /**
3538
- * Transformation of the element. Applies the passed transform to the element. The content that
3539
- * does not fit into the original view will be cut off.
3533
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
3534
+ * view area is cut off.
3540
3535
  */
3541
3536
  transform?: Type<IDivTransform>;
3542
3537
  /**
@@ -3600,7 +3595,7 @@ declare class DivLinearGradient<T extends DivLinearGradientProps = DivLinearGrad
3600
3595
  */
3601
3596
  angle?: Type<number | DivExpression>;
3602
3597
  /**
3603
- * Colors. Gradient points will be located at an equal distance from each other.
3598
+ * Colors. Gradient points are located at an equal distance from each other.
3604
3599
  */
3605
3600
  colors: Type<NonEmptyArray<string | DivExpression>>;
3606
3601
  constructor(props: Exact<DivLinearGradientProps, T>);
@@ -3611,7 +3606,7 @@ interface DivLinearGradientProps {
3611
3606
  */
3612
3607
  angle?: Type<number | DivExpression>;
3613
3608
  /**
3614
- * Colors. Gradient points will be located at an equal distance from each other.
3609
+ * Colors. Gradient points are located at an equal distance from each other.
3615
3610
  */
3616
3611
  colors: Type<NonEmptyArray<string | DivExpression>>;
3617
3612
  }
@@ -3657,7 +3652,7 @@ interface DivNeighbourPageSizeProps {
3657
3652
  }
3658
3653
 
3659
3654
  /**
3660
- * Image in nine patch format. https://developer.android.com/studio/write/draw9patch.
3655
+ * Image in 9-patch format (https://developer.android.com/studio/write/draw9patch).
3661
3656
  */
3662
3657
  declare class DivNinePatchBackground<T extends DivNinePatchBackgroundProps = DivNinePatchBackgroundProps> {
3663
3658
  readonly _props?: Exact<DivNinePatchBackgroundProps, T>;
@@ -3667,8 +3662,8 @@ declare class DivNinePatchBackground<T extends DivNinePatchBackgroundProps = Div
3667
3662
  */
3668
3663
  image_url: Type<string | DivExpression>;
3669
3664
  /**
3670
- * Margins that break images into parts, according to the rule, are similar to
3671
- * border-image-slice. (https://developer.mozilla.org/en-US/docs/Web/CSS/border-image-slice)
3665
+ * Margins that break the image into parts using the same rules as the CSS `border-image-slice`
3666
+ * property (https://developer.mozilla.org/en-US/docs/Web/CSS/border-image-slice).
3672
3667
  */
3673
3668
  insets: Type<IDivAbsoluteEdgeInsets>;
3674
3669
  constructor(props: Exact<DivNinePatchBackgroundProps, T>);
@@ -3679,8 +3674,8 @@ interface DivNinePatchBackgroundProps {
3679
3674
  */
3680
3675
  image_url: Type<string | DivExpression>;
3681
3676
  /**
3682
- * Margins that break images into parts, according to the rule, are similar to
3683
- * border-image-slice. (https://developer.mozilla.org/en-US/docs/Web/CSS/border-image-slice)
3677
+ * Margins that break the image into parts using the same rules as the CSS `border-image-slice`
3678
+ * property (https://developer.mozilla.org/en-US/docs/Web/CSS/border-image-slice).
3684
3679
  */
3685
3680
  insets: Type<IDivAbsoluteEdgeInsets>;
3686
3681
  }
@@ -3712,7 +3707,7 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
3712
3707
  readonly _props?: Exact<DivPagerProps, T>;
3713
3708
  readonly type = "pager";
3714
3709
  /**
3715
- * Accessibility for disabled people.
3710
+ * Accessibility settings.
3716
3711
  */
3717
3712
  accessibility?: Type<IDivAccessibility>;
3718
3713
  /**
@@ -3816,8 +3811,8 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
3816
3811
  */
3817
3812
  tooltips?: Type<NonEmptyArray<IDivTooltip>>;
3818
3813
  /**
3819
- * Transformation of the element. Applies the passed transform to the element. The content that
3820
- * does not fit into the original view will be cut off.
3814
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
3815
+ * view area is cut off.
3821
3816
  */
3822
3817
  transform?: Type<IDivTransform>;
3823
3818
  /**
@@ -3860,7 +3855,7 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
3860
3855
  }
3861
3856
  interface DivPagerProps {
3862
3857
  /**
3863
- * Accessibility for disabled people.
3858
+ * Accessibility settings.
3864
3859
  */
3865
3860
  accessibility?: Type<IDivAccessibility>;
3866
3861
  /**
@@ -3964,8 +3959,8 @@ interface DivPagerProps {
3964
3959
  */
3965
3960
  tooltips?: Type<NonEmptyArray<IDivTooltip>>;
3966
3961
  /**
3967
- * Transformation of the element. Applies the passed transform to the element. The content that
3968
- * does not fit into the original view will be cut off.
3962
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
3963
+ * view area is cut off.
3969
3964
  */
3970
3965
  transform?: Type<IDivTransform>;
3971
3966
  /**
@@ -4058,49 +4053,49 @@ interface DivPercentageSizeProps {
4058
4053
  declare type DivPivot = DivPivotFixed | DivPivotPercentage;
4059
4054
 
4060
4055
  /**
4061
- * Value of the offset of the coordinates of the axis of rotation.
4056
+ * Fixed coordinates of the rotation axis.
4062
4057
  */
4063
4058
  declare class DivPivotFixed<T extends DivPivotFixedProps = DivPivotFixedProps> {
4064
4059
  readonly _props?: Exact<DivPivotFixedProps, T>;
4065
4060
  readonly type = "pivot-fixed";
4066
4061
  /**
4067
- * Unit of size measurement. To learn more about units of size measurement, see [Layout inside
4068
- * the card](../../layout.dita).
4062
+ * Measurement unit. To learn more about units of size measurement, see [Layout inside the
4063
+ * card](../../layout.dita).
4069
4064
  */
4070
4065
  unit?: Type<DivSizeUnit | DivExpression>;
4071
4066
  /**
4072
- * Offset.
4067
+ * Coordinate value.
4073
4068
  */
4074
4069
  value?: Type<number | DivExpression>;
4075
4070
  constructor(props?: Exact<DivPivotFixedProps, T>);
4076
4071
  }
4077
4072
  interface DivPivotFixedProps {
4078
4073
  /**
4079
- * Unit of size measurement. To learn more about units of size measurement, see [Layout inside
4080
- * the card](../../layout.dita).
4074
+ * Measurement unit. To learn more about units of size measurement, see [Layout inside the
4075
+ * card](../../layout.dita).
4081
4076
  */
4082
4077
  unit?: Type<DivSizeUnit | DivExpression>;
4083
4078
  /**
4084
- * Offset.
4079
+ * Coordinate value.
4085
4080
  */
4086
4081
  value?: Type<number | DivExpression>;
4087
4082
  }
4088
4083
 
4089
4084
  /**
4090
- * Location of the coordinate of the axis of rotation as a percentage relative to the element.
4085
+ * Location of the coordinate of the rotation axis as a percentage relative to the element size.
4091
4086
  */
4092
4087
  declare class DivPivotPercentage<T extends DivPivotPercentageProps = DivPivotPercentageProps> {
4093
4088
  readonly _props?: Exact<DivPivotPercentageProps, T>;
4094
4089
  readonly type = "pivot-percentage";
4095
4090
  /**
4096
- * Location of the element.
4091
+ * Coordinate value as a percentage.
4097
4092
  */
4098
4093
  value: Type<number | DivExpression>;
4099
4094
  constructor(props: Exact<DivPivotPercentageProps, T>);
4100
4095
  }
4101
4096
  interface DivPivotPercentageProps {
4102
4097
  /**
4103
- * Location of the element.
4098
+ * Coordinate value as a percentage.
4104
4099
  */
4105
4100
  value: Type<number | DivExpression>;
4106
4101
  }
@@ -4130,11 +4125,11 @@ declare class DivRadialGradient<T extends DivRadialGradientProps = DivRadialGrad
4130
4125
  */
4131
4126
  center_x?: Type<DivRadialGradientCenter>;
4132
4127
  /**
4133
- * Shift of the central point of the gradient relative to the upper edge along the Y axis.
4128
+ * Shift of the central point of the gradient relative to the top edge along the Y axis.
4134
4129
  */
4135
4130
  center_y?: Type<DivRadialGradientCenter>;
4136
4131
  /**
4137
- * Colors. Gradient points will be located at an equal distance from each other.
4132
+ * Colors. Gradient points are located at an equal distance from each other.
4138
4133
  */
4139
4134
  colors: Type<NonEmptyArray<string | DivExpression>>;
4140
4135
  /**
@@ -4149,11 +4144,11 @@ interface DivRadialGradientProps {
4149
4144
  */
4150
4145
  center_x?: Type<DivRadialGradientCenter>;
4151
4146
  /**
4152
- * Shift of the central point of the gradient relative to the upper edge along the Y axis.
4147
+ * Shift of the central point of the gradient relative to the top edge along the Y axis.
4153
4148
  */
4154
4149
  center_y?: Type<DivRadialGradientCenter>;
4155
4150
  /**
4156
- * Colors. Gradient points will be located at an equal distance from each other.
4151
+ * Colors. Gradient points are located at an equal distance from each other.
4157
4152
  */
4158
4153
  colors: Type<NonEmptyArray<string | DivExpression>>;
4159
4154
  /**
@@ -4165,7 +4160,7 @@ interface DivRadialGradientProps {
4165
4160
  declare type DivRadialGradientCenter = DivRadialGradientFixedCenter | DivRadialGradientRelativeCenter;
4166
4161
 
4167
4162
  /**
4168
- * Fixed central point of the gradient.
4163
+ * Fixed coordinates of the central point of the gradient.
4169
4164
  */
4170
4165
  declare class DivRadialGradientFixedCenter<T extends DivRadialGradientFixedCenterProps = DivRadialGradientFixedCenterProps> {
4171
4166
  readonly _props?: Exact<DivRadialGradientFixedCenterProps, T>;
@@ -4176,7 +4171,7 @@ declare class DivRadialGradientFixedCenter<T extends DivRadialGradientFixedCente
4176
4171
  */
4177
4172
  unit?: Type<DivSizeUnit | DivExpression>;
4178
4173
  /**
4179
- * Shift value of the fixed central point of the gradient.
4174
+ * Coordinate value.
4180
4175
  */
4181
4176
  value: Type<number | DivExpression>;
4182
4177
  constructor(props: Exact<DivRadialGradientFixedCenterProps, T>);
@@ -4188,7 +4183,7 @@ interface DivRadialGradientFixedCenterProps {
4188
4183
  */
4189
4184
  unit?: Type<DivSizeUnit | DivExpression>;
4190
4185
  /**
4191
- * Shift value of the fixed central point of the gradient.
4186
+ * Coordinate value.
4192
4187
  */
4193
4188
  value: Type<number | DivExpression>;
4194
4189
  }
@@ -4196,20 +4191,20 @@ interface DivRadialGradientFixedCenterProps {
4196
4191
  declare type DivRadialGradientRadius = DivFixedSize | DivRadialGradientRelativeRadius;
4197
4192
 
4198
4193
  /**
4199
- * Relative central point of the gradient.
4194
+ * Location of the central point of the gradient relative to the element borders.
4200
4195
  */
4201
4196
  declare class DivRadialGradientRelativeCenter<T extends DivRadialGradientRelativeCenterProps = DivRadialGradientRelativeCenterProps> {
4202
4197
  readonly _props?: Exact<DivRadialGradientRelativeCenterProps, T>;
4203
4198
  readonly type = "relative";
4204
4199
  /**
4205
- * Shift value of the central relative point of the gradient in the range `0..1`.
4200
+ * Coordinate value in the range "0...1".
4206
4201
  */
4207
4202
  value: Type<number | DivExpression>;
4208
4203
  constructor(props: Exact<DivRadialGradientRelativeCenterProps, T>);
4209
4204
  }
4210
4205
  interface DivRadialGradientRelativeCenterProps {
4211
4206
  /**
4212
- * Shift value of the central relative point of the gradient in the range `0..1`.
4207
+ * Coordinate value in the range "0...1".
4213
4208
  */
4214
4209
  value: Type<number | DivExpression>;
4215
4210
  }
@@ -4221,14 +4216,14 @@ declare class DivRadialGradientRelativeRadius<T extends DivRadialGradientRelativ
4221
4216
  readonly _props?: Exact<DivRadialGradientRelativeRadiusProps, T>;
4222
4217
  readonly type = "relative";
4223
4218
  /**
4224
- * Type of relative radius of the gradient transition.
4219
+ * Type of the relative radius of the gradient transition.
4225
4220
  */
4226
4221
  value: Type<DivRadialGradientRelativeRadiusValue | DivExpression>;
4227
4222
  constructor(props: Exact<DivRadialGradientRelativeRadiusProps, T>);
4228
4223
  }
4229
4224
  interface DivRadialGradientRelativeRadiusProps {
4230
4225
  /**
4231
- * Type of relative radius of the gradient transition.
4226
+ * Type of the relative radius of the gradient transition.
4232
4227
  */
4233
4228
  value: Type<DivRadialGradientRelativeRadiusValue | DivExpression>;
4234
4229
  }
@@ -4337,7 +4332,7 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
4337
4332
  readonly _props?: Exact<DivSeparatorProps, T>;
4338
4333
  readonly type = "separator";
4339
4334
  /**
4340
- * Accessibility for disabled people.
4335
+ * Accessibility settings.
4341
4336
  */
4342
4337
  accessibility?: Type<IDivAccessibility>;
4343
4338
  /**
@@ -4345,7 +4340,7 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
4345
4340
  */
4346
4341
  action?: Type<IDivAction>;
4347
4342
  /**
4348
- * Action animation. Web supports `fade`, `scale` and `set` only.
4343
+ * Click animation. The web only supports the following values: `fade`, `scale`, and `set`.
4349
4344
  */
4350
4345
  action_animation?: Type<IDivAnimation>;
4351
4346
  /**
@@ -4431,8 +4426,8 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
4431
4426
  */
4432
4427
  tooltips?: Type<NonEmptyArray<IDivTooltip>>;
4433
4428
  /**
4434
- * Transformation of the element. Applies the passed transform to the element. The content that
4435
- * does not fit into the original view will be cut off.
4429
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
4430
+ * view area is cut off.
4436
4431
  */
4437
4432
  transform?: Type<IDivTransform>;
4438
4433
  /**
@@ -4475,7 +4470,7 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
4475
4470
  }
4476
4471
  interface DivSeparatorProps {
4477
4472
  /**
4478
- * Accessibility for disabled people.
4473
+ * Accessibility settings.
4479
4474
  */
4480
4475
  accessibility?: Type<IDivAccessibility>;
4481
4476
  /**
@@ -4483,7 +4478,7 @@ interface DivSeparatorProps {
4483
4478
  */
4484
4479
  action?: Type<IDivAction>;
4485
4480
  /**
4486
- * Action animation. Web supports `fade`, `scale` and `set` only.
4481
+ * Click animation. The web only supports the following values: `fade`, `scale`, and `set`.
4487
4482
  */
4488
4483
  action_animation?: Type<IDivAnimation>;
4489
4484
  /**
@@ -4569,8 +4564,8 @@ interface DivSeparatorProps {
4569
4564
  */
4570
4565
  tooltips?: Type<NonEmptyArray<IDivTooltip>>;
4571
4566
  /**
4572
- * Transformation of the element. Applies the passed transform to the element. The content that
4573
- * does not fit into the original view will be cut off.
4567
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
4568
+ * view area is cut off.
4574
4569
  */
4575
4570
  transform?: Type<IDivTransform>;
4576
4571
  /**
@@ -4754,7 +4749,7 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
4754
4749
  readonly _props?: Exact<DivSliderProps, T>;
4755
4750
  readonly type = "slider";
4756
4751
  /**
4757
- * Accessibility for disabled people.
4752
+ * Accessibility settings.
4758
4753
  */
4759
4754
  accessibility?: Type<IDivAccessibility>;
4760
4755
  /**
@@ -4822,7 +4817,7 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
4822
4817
  */
4823
4818
  row_span?: Type<number | DivExpression>;
4824
4819
  /**
4825
- * Accessibility for the secondary thumb.
4820
+ * Accessibility settings for the second pointer.
4826
4821
  */
4827
4822
  secondary_value_accessibility?: Type<IDivAccessibility>;
4828
4823
  /**
@@ -4839,7 +4834,7 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
4839
4834
  */
4840
4835
  thumb_secondary_text_style?: Type<IDivSliderTextStyle>;
4841
4836
  /**
4842
- * Name of the variable to store the current value of the secondary thumb.
4837
+ * Name of the variable to store the second pointer's current value.
4843
4838
  */
4844
4839
  thumb_secondary_value_variable?: Type<string>;
4845
4840
  /**
@@ -4851,7 +4846,7 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
4851
4846
  */
4852
4847
  thumb_text_style?: Type<IDivSliderTextStyle>;
4853
4848
  /**
4854
- * Name of the variable to store the current thumb value.
4849
+ * Name of the variable to store the pointer's current value.
4855
4850
  */
4856
4851
  thumb_value_variable?: Type<string>;
4857
4852
  /**
@@ -4876,8 +4871,8 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
4876
4871
  */
4877
4872
  track_inactive_style: Type<DivDrawable>;
4878
4873
  /**
4879
- * Transformation of the element. Applies the passed transform to the element. The content that
4880
- * does not fit into the original view will be cut off.
4874
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
4875
+ * view area is cut off.
4881
4876
  */
4882
4877
  transform?: Type<IDivTransform>;
4883
4878
  /**
@@ -4920,7 +4915,7 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
4920
4915
  }
4921
4916
  interface DivSliderProps {
4922
4917
  /**
4923
- * Accessibility for disabled people.
4918
+ * Accessibility settings.
4924
4919
  */
4925
4920
  accessibility?: Type<IDivAccessibility>;
4926
4921
  /**
@@ -4988,7 +4983,7 @@ interface DivSliderProps {
4988
4983
  */
4989
4984
  row_span?: Type<number | DivExpression>;
4990
4985
  /**
4991
- * Accessibility for the secondary thumb.
4986
+ * Accessibility settings for the second pointer.
4992
4987
  */
4993
4988
  secondary_value_accessibility?: Type<IDivAccessibility>;
4994
4989
  /**
@@ -5005,7 +5000,7 @@ interface DivSliderProps {
5005
5000
  */
5006
5001
  thumb_secondary_text_style?: Type<IDivSliderTextStyle>;
5007
5002
  /**
5008
- * Name of the variable to store the current value of the secondary thumb.
5003
+ * Name of the variable to store the second pointer's current value.
5009
5004
  */
5010
5005
  thumb_secondary_value_variable?: Type<string>;
5011
5006
  /**
@@ -5017,7 +5012,7 @@ interface DivSliderProps {
5017
5012
  */
5018
5013
  thumb_text_style?: Type<IDivSliderTextStyle>;
5019
5014
  /**
5020
- * Name of the variable to store the current thumb value.
5015
+ * Name of the variable to store the pointer's current value.
5021
5016
  */
5022
5017
  thumb_value_variable?: Type<string>;
5023
5018
  /**
@@ -5042,8 +5037,8 @@ interface DivSliderProps {
5042
5037
  */
5043
5038
  track_inactive_style: Type<DivDrawable>;
5044
5039
  /**
5045
- * Transformation of the element. Applies the passed transform to the element. The content that
5046
- * does not fit into the original view will be cut off.
5040
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
5041
+ * view area is cut off.
5047
5042
  */
5048
5043
  transform?: Type<IDivTransform>;
5049
5044
  /**
@@ -5129,7 +5124,7 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
5129
5124
  readonly _props?: Exact<DivStateProps, T>;
5130
5125
  readonly type = "state";
5131
5126
  /**
5132
- * Accessibility for disabled people.
5127
+ * Accessibility settings.
5133
5128
  */
5134
5129
  accessibility?: Type<IDivAccessibility>;
5135
5130
  /**
@@ -5216,8 +5211,8 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
5216
5211
  */
5217
5212
  tooltips?: Type<NonEmptyArray<IDivTooltip>>;
5218
5213
  /**
5219
- * Transformation of the element. Applies the passed transform to the element. The content that
5220
- * does not fit into the original view will be cut off.
5214
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
5215
+ * view area is cut off.
5221
5216
  */
5222
5217
  transform?: Type<IDivTransform>;
5223
5218
  /**
@@ -5266,7 +5261,7 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
5266
5261
  }
5267
5262
  interface DivStateProps {
5268
5263
  /**
5269
- * Accessibility for disabled people.
5264
+ * Accessibility settings.
5270
5265
  */
5271
5266
  accessibility?: Type<IDivAccessibility>;
5272
5267
  /**
@@ -5353,8 +5348,8 @@ interface DivStateProps {
5353
5348
  */
5354
5349
  tooltips?: Type<NonEmptyArray<IDivTooltip>>;
5355
5350
  /**
5356
- * Transformation of the element. Applies the passed transform to the element. The content that
5357
- * does not fit into the original view will be cut off.
5351
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
5352
+ * view area is cut off.
5358
5353
  */
5359
5354
  transform?: Type<IDivTransform>;
5360
5355
  /**
@@ -5436,8 +5431,8 @@ declare class DivStretchIndicatorItemPlacement<T extends DivStretchIndicatorItem
5436
5431
  readonly _props?: Exact<DivStretchIndicatorItemPlacementProps, T>;
5437
5432
  readonly type = "stretch";
5438
5433
  /**
5439
- * Spacing between indicator centers. It is deprecated for Android. Use `items_placement`
5440
- * instead.
5434
+ * Spacing between indicator centers. <br>The parameter is deprecated for Android, please use the
5435
+ * `items_placement` parameter instead.
5441
5436
  */
5442
5437
  item_spacing?: Type<DivFixedSize>;
5443
5438
  /**
@@ -5448,8 +5443,8 @@ declare class DivStretchIndicatorItemPlacement<T extends DivStretchIndicatorItem
5448
5443
  }
5449
5444
  interface DivStretchIndicatorItemPlacementProps {
5450
5445
  /**
5451
- * Spacing between indicator centers. It is deprecated for Android. Use `items_placement`
5452
- * instead.
5446
+ * Spacing between indicator centers. <br>The parameter is deprecated for Android, please use the
5447
+ * `items_placement` parameter instead.
5453
5448
  */
5454
5449
  item_spacing?: Type<DivFixedSize>;
5455
5450
  /**
@@ -5481,7 +5476,7 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
5481
5476
  readonly _props?: Exact<DivTabsProps, T>;
5482
5477
  readonly type = "tabs";
5483
5478
  /**
5484
- * Accessibility for disabled people.
5479
+ * Accessibility settings.
5485
5480
  */
5486
5481
  accessibility?: Type<IDivAccessibility>;
5487
5482
  /**
@@ -5599,8 +5594,8 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
5599
5594
  */
5600
5595
  tooltips?: Type<NonEmptyArray<IDivTooltip>>;
5601
5596
  /**
5602
- * Transformation of the element. Applies the passed transform to the element. The content that
5603
- * does not fit into the original view will be cut off.
5597
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
5598
+ * view area is cut off.
5604
5599
  */
5605
5600
  transform?: Type<IDivTransform>;
5606
5601
  /**
@@ -5643,7 +5638,7 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
5643
5638
  }
5644
5639
  interface DivTabsProps {
5645
5640
  /**
5646
- * Accessibility for disabled people.
5641
+ * Accessibility settings.
5647
5642
  */
5648
5643
  accessibility?: Type<IDivAccessibility>;
5649
5644
  /**
@@ -5761,8 +5756,8 @@ interface DivTabsProps {
5761
5756
  */
5762
5757
  tooltips?: Type<NonEmptyArray<IDivTooltip>>;
5763
5758
  /**
5764
- * Transformation of the element. Applies the passed transform to the element. The content that
5765
- * does not fit into the original view will be cut off.
5759
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
5760
+ * view area is cut off.
5766
5761
  */
5767
5762
  transform?: Type<IDivTransform>;
5768
5763
  /**
@@ -5892,7 +5887,7 @@ interface IDivTabsTabTitleStyle {
5892
5887
  */
5893
5888
  letter_spacing?: Type<number | DivExpression>;
5894
5889
  /**
5895
- * Line spacing of the text range. The count is taken from the font baseline.
5890
+ * Line spacing of the text.
5896
5891
  */
5897
5892
  line_height?: Type<number | DivExpression>;
5898
5893
  /**
@@ -5909,7 +5904,7 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
5909
5904
  readonly _props?: Exact<DivTextProps, T>;
5910
5905
  readonly type = "text";
5911
5906
  /**
5912
- * Accessibility for disabled people.
5907
+ * Accessibility settings.
5913
5908
  */
5914
5909
  accessibility?: Type<IDivAccessibility>;
5915
5910
  /**
@@ -5917,7 +5912,7 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
5917
5912
  */
5918
5913
  action?: Type<IDivAction>;
5919
5914
  /**
5920
- * Action animation. Web supports `fade`, `scale` and `set` only.
5915
+ * Click animation. The web only supports the following values: `fade`, `scale`, and `set`.
5921
5916
  */
5922
5917
  action_animation?: Type<IDivAnimation>;
5923
5918
  /**
@@ -6040,7 +6035,7 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
6040
6035
  */
6041
6036
  row_span?: Type<number | DivExpression>;
6042
6037
  /**
6043
- * Selecting and copying text.
6038
+ * Ability to select and copy text.
6044
6039
  */
6045
6040
  selectable?: Type<IntBoolean | DivExpression>;
6046
6041
  /**
@@ -6078,8 +6073,8 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
6078
6073
  */
6079
6074
  tooltips?: Type<NonEmptyArray<IDivTooltip>>;
6080
6075
  /**
6081
- * Transformation of the element. Applies the passed transform to the element. The content that
6082
- * does not fit into the original view will be cut off.
6076
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
6077
+ * view area is cut off.
6083
6078
  */
6084
6079
  transform?: Type<IDivTransform>;
6085
6080
  /**
@@ -6132,7 +6127,7 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
6132
6127
  }
6133
6128
  interface DivTextProps {
6134
6129
  /**
6135
- * Accessibility for disabled people.
6130
+ * Accessibility settings.
6136
6131
  */
6137
6132
  accessibility?: Type<IDivAccessibility>;
6138
6133
  /**
@@ -6140,7 +6135,7 @@ interface DivTextProps {
6140
6135
  */
6141
6136
  action?: Type<IDivAction>;
6142
6137
  /**
6143
- * Action animation. Web supports `fade`, `scale` and `set` only.
6138
+ * Click animation. The web only supports the following values: `fade`, `scale`, and `set`.
6144
6139
  */
6145
6140
  action_animation?: Type<IDivAnimation>;
6146
6141
  /**
@@ -6263,7 +6258,7 @@ interface DivTextProps {
6263
6258
  */
6264
6259
  row_span?: Type<number | DivExpression>;
6265
6260
  /**
6266
- * Selecting and copying text.
6261
+ * Ability to select and copy text.
6267
6262
  */
6268
6263
  selectable?: Type<IntBoolean | DivExpression>;
6269
6264
  /**
@@ -6301,8 +6296,8 @@ interface DivTextProps {
6301
6296
  */
6302
6297
  tooltips?: Type<NonEmptyArray<IDivTooltip>>;
6303
6298
  /**
6304
- * Transformation of the element. Applies the passed transform to the element. The content that
6305
- * does not fit into the original view will be cut off.
6299
+ * Applies the passed transformation to the element. Content that doesn't fit into the original
6300
+ * view area is cut off.
6306
6301
  */
6307
6302
  transform?: Type<IDivTransform>;
6308
6303
  /**
@@ -6392,7 +6387,7 @@ interface IDivTextImage {
6392
6387
  */
6393
6388
  tint_color?: Type<string | DivExpression>;
6394
6389
  /**
6395
- * The blend mode of color specified in tint_color.
6390
+ * Blend mode of the color specified in `tint_color`.
6396
6391
  */
6397
6392
  tint_mode?: Type<DivBlendMode | DivExpression>;
6398
6393
  /**
@@ -6413,11 +6408,11 @@ interface IDivTextRange {
6413
6408
  */
6414
6409
  actions?: Type<NonEmptyArray<IDivAction>>;
6415
6410
  /**
6416
- * Text range background.
6411
+ * Character range background.
6417
6412
  */
6418
6413
  background?: Type<DivTextRangeBackground>;
6419
6414
  /**
6420
- * Text range border.
6415
+ * Character range border.
6421
6416
  */
6422
6417
  border?: Type<IDivTextRangeBorder>;
6423
6418
  /**
@@ -6466,7 +6461,7 @@ interface IDivTextRange {
6466
6461
  */
6467
6462
  text_color?: Type<string | DivExpression>;
6468
6463
  /**
6469
- * The top margin of the text range. Measured in units specified in `font_size_unit`.
6464
+ * Top margin of the character range. Units specified in `font_size_unit`.
6470
6465
  */
6471
6466
  top_offset?: Type<number | DivExpression>;
6472
6467
  /**
@@ -6480,7 +6475,7 @@ declare type DivTextGradient = DivLinearGradient | DivRadialGradient;
6480
6475
  declare type DivTextRangeBackground = DivSolidBackground;
6481
6476
 
6482
6477
  /**
6483
- * Text range border.
6478
+ * Character range border.
6484
6479
  */
6485
6480
  interface IDivTextRangeBorder {
6486
6481
  /**
@@ -6498,8 +6493,8 @@ interface IDivTextRangeBorder {
6498
6493
  */
6499
6494
  interface IDivTimer {
6500
6495
  /**
6501
- * The duration of the timer in milliseconds. If the parameter is `0` or not specified, the timer
6502
- * runs indefinitely (until the timer stop event occurs).
6496
+ * Timer duration in milliseconds. If the parameter is `0` or not specified, the timer runs
6497
+ * indefinitely (until the timer stop event occurs).
6503
6498
  */
6504
6499
  duration?: Type<number | DivExpression>;
6505
6500
  /**
@@ -6508,23 +6503,22 @@ interface IDivTimer {
6508
6503
  */
6509
6504
  end_actions?: Type<NonEmptyArray<IDivAction>>;
6510
6505
  /**
6511
- * Timer ID. Must be unique. It is used when calling actions for the selected timer, for example:
6506
+ * Timer ID. Must be unique. Used when calling actions for the selected timer, for example:
6512
6507
  * start, stop.
6513
6508
  */
6514
6509
  id: Type<string>;
6515
6510
  /**
6516
- * Actions that are performed on each tick of the timer.
6511
+ * Actions that are performed on each count of the timer.
6517
6512
  */
6518
6513
  tick_actions?: Type<NonEmptyArray<IDivAction>>;
6519
6514
  /**
6520
- * Duration of time intervals in milliseconds between ticks. If the parameter is not specified,
6515
+ * Duration of time intervals in milliseconds between counts. If the parameter is not specified,
6521
6516
  * the timer counts down from `0` to `duration` without calling `tick_actions`.
6522
6517
  */
6523
6518
  tick_interval?: Type<number | DivExpression>;
6524
6519
  /**
6525
- * The name of the variable in which the current timer value is stored. It is updated on each
6526
- * tick or when commands for the timer are called (start, stop, etc.), with the exception of the
6527
- * cancel command.
6520
+ * Name of the variable where the current timer value is stored. Updated on each count or when
6521
+ * the timer commands are called (start, stop, and so on), except the cancel command.
6528
6522
  */
6529
6523
  value_variable?: Type<string>;
6530
6524
  }
@@ -6573,16 +6567,15 @@ declare type DivTooltipPosition = 'left' | 'top-left' | 'top' | 'top-right' | 'r
6573
6567
  */
6574
6568
  interface IDivTransform {
6575
6569
  /**
6576
- * The X coordinate of the rotation axis.
6570
+ * X coordinate of the rotation axis.
6577
6571
  */
6578
6572
  pivot_x?: Type<DivPivot>;
6579
6573
  /**
6580
- * The Y coordinate of the rotation axis.
6574
+ * Y coordinate of the rotation axis.
6581
6575
  */
6582
6576
  pivot_y?: Type<DivPivot>;
6583
6577
  /**
6584
- * The number of degrees by which the element must be rotated. A positive value describes a
6585
- * clockwise rotation.
6578
+ * Degrees of the element rotation. Positive values used for clockwise rotation.
6586
6579
  */
6587
6580
  rotation?: Type<number | DivExpression>;
6588
6581
  }
@@ -6682,11 +6675,11 @@ declare class DivWrapContentSize<T extends DivWrapContentSizeProps = DivWrapCont
6682
6675
  */
6683
6676
  constrained?: Type<IntBoolean | DivExpression>;
6684
6677
  /**
6685
- * Maximum element size.
6678
+ * Maximum size of an element.
6686
6679
  */
6687
6680
  max_size?: Type<IDivWrapContentSizeConstraintSize>;
6688
6681
  /**
6689
- * Minimum element size.
6682
+ * Minimum size of an element.
6690
6683
  */
6691
6684
  min_size?: Type<IDivWrapContentSizeConstraintSize>;
6692
6685
  constructor(props?: Exact<DivWrapContentSizeProps, T>);
@@ -6698,11 +6691,11 @@ interface DivWrapContentSizeProps {
6698
6691
  */
6699
6692
  constrained?: Type<IntBoolean | DivExpression>;
6700
6693
  /**
6701
- * Maximum element size.
6694
+ * Maximum size of an element.
6702
6695
  */
6703
6696
  max_size?: Type<IDivWrapContentSizeConstraintSize>;
6704
6697
  /**
6705
- * Minimum element size.
6698
+ * Minimum size of an element.
6706
6699
  */
6707
6700
  min_size?: Type<IDivWrapContentSizeConstraintSize>;
6708
6701
  }