@divkitframework/jsonbuilder 32.17.0 → 32.19.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.
@@ -1317,6 +1317,12 @@ interface IDivBase {
1317
1317
  * Platforms: android, ios, web
1318
1318
  */
1319
1319
  transform?: Type<IDivTransform>;
1320
+ /**
1321
+ * Array of transformations to be applied to the element in sequence.
1322
+ *
1323
+ * Platforms: not supported
1324
+ */
1325
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
1320
1326
  /**
1321
1327
  * Change animation. It is played when the position or size of an element changes in the new
1322
1328
  * layout.
@@ -1960,6 +1966,12 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
1960
1966
  * Platforms: android, ios, web
1961
1967
  */
1962
1968
  transform?: Type<IDivTransform>;
1969
+ /**
1970
+ * Array of transformations to be applied to the element in sequence.
1971
+ *
1972
+ * Platforms: not supported
1973
+ */
1974
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
1963
1975
  /**
1964
1976
  * Change animation. It is played when the position or size of an element changes in the new
1965
1977
  * layout.
@@ -2280,6 +2292,12 @@ interface DivContainerPropsBase {
2280
2292
  * Platforms: android, ios, web
2281
2293
  */
2282
2294
  transform?: Type<IDivTransform>;
2295
+ /**
2296
+ * Array of transformations to be applied to the element in sequence.
2297
+ *
2298
+ * Platforms: not supported
2299
+ */
2300
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
2283
2301
  /**
2284
2302
  * Change animation. It is played when the position or size of an element changes in the new
2285
2303
  * layout.
@@ -2576,6 +2594,12 @@ declare class DivCustom<T extends DivCustomProps = DivCustomProps> {
2576
2594
  * Platforms: android, ios, web
2577
2595
  */
2578
2596
  transform?: Type<IDivTransform>;
2597
+ /**
2598
+ * Array of transformations to be applied to the element in sequence.
2599
+ *
2600
+ * Platforms: not supported
2601
+ */
2602
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
2579
2603
  /**
2580
2604
  * Change animation. It is played when the position or size of an element changes in the new
2581
2605
  * layout.
@@ -2768,6 +2792,12 @@ interface DivCustomProps {
2768
2792
  * Platforms: android, ios, web
2769
2793
  */
2770
2794
  transform?: Type<IDivTransform>;
2795
+ /**
2796
+ * Array of transformations to be applied to the element in sequence.
2797
+ *
2798
+ * Platforms: not supported
2799
+ */
2800
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
2771
2801
  /**
2772
2802
  * Change animation. It is played when the position or size of an element changes in the new
2773
2803
  * layout.
@@ -3145,6 +3175,35 @@ interface DivFixedSizeProps {
3145
3175
  value: Type<number | DivExpression>;
3146
3176
  }
3147
3177
 
3178
+ /**
3179
+ * Fixed coordinates of the translation.
3180
+ */
3181
+ declare class DivFixedTranslation<T extends DivFixedTranslationProps = DivFixedTranslationProps> {
3182
+ readonly _props?: Exact<DivFixedTranslationProps, T>;
3183
+ readonly type = "translation-fixed";
3184
+ /**
3185
+ * Measurement unit. To learn more about units of size measurement, see [Layout inside the
3186
+ * card](../../layout).
3187
+ */
3188
+ unit?: Type<DivSizeUnit | DivExpression>;
3189
+ /**
3190
+ * Coordinate value.
3191
+ */
3192
+ value: Type<number | DivExpression>;
3193
+ constructor(props: Exact<DivFixedTranslationProps, T>);
3194
+ }
3195
+ interface DivFixedTranslationProps {
3196
+ /**
3197
+ * Measurement unit. To learn more about units of size measurement, see [Layout inside the
3198
+ * card](../../layout).
3199
+ */
3200
+ unit?: Type<DivSizeUnit | DivExpression>;
3201
+ /**
3202
+ * Coordinate value.
3203
+ */
3204
+ value: Type<number | DivExpression>;
3205
+ }
3206
+
3148
3207
  /**
3149
3208
  * Element behavior when focusing or losing focus.
3150
3209
  */
@@ -3438,6 +3497,12 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
3438
3497
  * Platforms: android, ios, web
3439
3498
  */
3440
3499
  transform?: Type<IDivTransform>;
3500
+ /**
3501
+ * Array of transformations to be applied to the element in sequence.
3502
+ *
3503
+ * Platforms: not supported
3504
+ */
3505
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
3441
3506
  /**
3442
3507
  * Change animation. It is played when the position or size of an element changes in the new
3443
3508
  * layout.
@@ -3695,6 +3760,12 @@ interface DivGalleryProps {
3695
3760
  * Platforms: android, ios, web
3696
3761
  */
3697
3762
  transform?: Type<IDivTransform>;
3763
+ /**
3764
+ * Array of transformations to be applied to the element in sequence.
3765
+ *
3766
+ * Platforms: not supported
3767
+ */
3768
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
3698
3769
  /**
3699
3770
  * Change animation. It is played when the position or size of an element changes in the new
3700
3771
  * layout.
@@ -3988,6 +4059,12 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
3988
4059
  * Platforms: android, ios, web
3989
4060
  */
3990
4061
  transform?: Type<IDivTransform>;
4062
+ /**
4063
+ * Array of transformations to be applied to the element in sequence.
4064
+ *
4065
+ * Platforms: not supported
4066
+ */
4067
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
3991
4068
  /**
3992
4069
  * Change animation. It is played when the position or size of an element changes in the new
3993
4070
  * layout.
@@ -4272,6 +4349,12 @@ interface DivGifImageProps {
4272
4349
  * Platforms: android, ios, web
4273
4350
  */
4274
4351
  transform?: Type<IDivTransform>;
4352
+ /**
4353
+ * Array of transformations to be applied to the element in sequence.
4354
+ *
4355
+ * Platforms: not supported
4356
+ */
4357
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
4275
4358
  /**
4276
4359
  * Change animation. It is played when the position or size of an element changes in the new
4277
4360
  * layout.
@@ -4536,6 +4619,12 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
4536
4619
  * Platforms: android, ios, web
4537
4620
  */
4538
4621
  transform?: Type<IDivTransform>;
4622
+ /**
4623
+ * Array of transformations to be applied to the element in sequence.
4624
+ *
4625
+ * Platforms: not supported
4626
+ */
4627
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
4539
4628
  /**
4540
4629
  * Change animation. It is played when the position or size of an element changes in the new
4541
4630
  * layout.
@@ -4795,6 +4884,12 @@ interface DivGridProps {
4795
4884
  * Platforms: android, ios, web
4796
4885
  */
4797
4886
  transform?: Type<IDivTransform>;
4887
+ /**
4888
+ * Array of transformations to be applied to the element in sequence.
4889
+ *
4890
+ * Platforms: not supported
4891
+ */
4892
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
4798
4893
  /**
4799
4894
  * Change animation. It is played when the position or size of an element changes in the new
4800
4895
  * layout.
@@ -5110,6 +5205,12 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
5110
5205
  * Platforms: android, ios, web
5111
5206
  */
5112
5207
  transform?: Type<IDivTransform>;
5208
+ /**
5209
+ * Array of transformations to be applied to the element in sequence.
5210
+ *
5211
+ * Platforms: not supported
5212
+ */
5213
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
5113
5214
  /**
5114
5215
  * Change animation. It is played when the position or size of an element changes in the new
5115
5216
  * layout.
@@ -5420,6 +5521,12 @@ interface DivImageProps {
5420
5521
  * Platforms: android, ios, web
5421
5522
  */
5422
5523
  transform?: Type<IDivTransform>;
5524
+ /**
5525
+ * Array of transformations to be applied to the element in sequence.
5526
+ *
5527
+ * Platforms: not supported
5528
+ */
5529
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
5423
5530
  /**
5424
5531
  * Change animation. It is played when the position or size of an element changes in the new
5425
5532
  * layout.
@@ -5746,6 +5853,12 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
5746
5853
  * Platforms: android, ios, web
5747
5854
  */
5748
5855
  transform?: Type<IDivTransform>;
5856
+ /**
5857
+ * Array of transformations to be applied to the element in sequence.
5858
+ *
5859
+ * Platforms: not supported
5860
+ */
5861
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
5749
5862
  /**
5750
5863
  * Change animation. It is played when the position or size of an element changes in the new
5751
5864
  * layout.
@@ -5994,6 +6107,12 @@ interface DivIndicatorProps {
5994
6107
  * Platforms: android, ios, web
5995
6108
  */
5996
6109
  transform?: Type<IDivTransform>;
6110
+ /**
6111
+ * Array of transformations to be applied to the element in sequence.
6112
+ *
6113
+ * Platforms: not supported
6114
+ */
6115
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
5997
6116
  /**
5998
6117
  * Change animation. It is played when the position or size of an element changes in the new
5999
6118
  * layout.
@@ -6331,6 +6450,12 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
6331
6450
  * Platforms: android, ios, web
6332
6451
  */
6333
6452
  transform?: Type<IDivTransform>;
6453
+ /**
6454
+ * Array of transformations to be applied to the element in sequence.
6455
+ *
6456
+ * Platforms: not supported
6457
+ */
6458
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
6334
6459
  /**
6335
6460
  * Change animation. It is played when the position or size of an element changes in the new
6336
6461
  * layout.
@@ -6655,6 +6780,12 @@ interface DivInputProps {
6655
6780
  * Platforms: android, ios, web
6656
6781
  */
6657
6782
  transform?: Type<IDivTransform>;
6783
+ /**
6784
+ * Array of transformations to be applied to the element in sequence.
6785
+ *
6786
+ * Platforms: not supported
6787
+ */
6788
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
6658
6789
  /**
6659
6790
  * Change animation. It is played when the position or size of an element changes in the new
6660
6791
  * layout.
@@ -7547,6 +7678,12 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
7547
7678
  * Platforms: android, ios, web
7548
7679
  */
7549
7680
  transform?: Type<IDivTransform>;
7681
+ /**
7682
+ * Array of transformations to be applied to the element in sequence.
7683
+ *
7684
+ * Platforms: not supported
7685
+ */
7686
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
7550
7687
  /**
7551
7688
  * Change animation. It is played when the position or size of an element changes in the new
7552
7689
  * layout.
@@ -7805,6 +7942,12 @@ interface DivPagerProps {
7805
7942
  * Platforms: android, ios, web
7806
7943
  */
7807
7944
  transform?: Type<IDivTransform>;
7945
+ /**
7946
+ * Array of transformations to be applied to the element in sequence.
7947
+ *
7948
+ * Platforms: not supported
7949
+ */
7950
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
7808
7951
  /**
7809
7952
  * Change animation. It is played when the position or size of an element changes in the new
7810
7953
  * layout.
@@ -7928,6 +8071,25 @@ interface DivPercentageSizeProps {
7928
8071
  value: Type<number | DivExpression>;
7929
8072
  }
7930
8073
 
8074
+ /**
8075
+ * Location of the translation coordinates as a percentage relative to the element size.
8076
+ */
8077
+ declare class DivPercentageTranslation<T extends DivPercentageTranslationProps = DivPercentageTranslationProps> {
8078
+ readonly _props?: Exact<DivPercentageTranslationProps, T>;
8079
+ readonly type = "translation-percentage";
8080
+ /**
8081
+ * Coordinate value as a percentage.
8082
+ */
8083
+ value: Type<number | DivExpression>;
8084
+ constructor(props: Exact<DivPercentageTranslationProps, T>);
8085
+ }
8086
+ interface DivPercentageTranslationProps {
8087
+ /**
8088
+ * Coordinate value as a percentage.
8089
+ */
8090
+ value: Type<number | DivExpression>;
8091
+ }
8092
+
7931
8093
  /**
7932
8094
  * Mask for entering phone numbers with dynamic regional format identification.
7933
8095
  */
@@ -8153,6 +8315,41 @@ interface DivRadialGradientRelativeRadiusProps {
8153
8315
  }
8154
8316
  declare type DivRadialGradientRelativeRadiusValue = 'nearest_corner' | 'farthest_corner' | 'nearest_side' | 'farthest_side';
8155
8317
 
8318
+ /**
8319
+ * Rotation transformation.
8320
+ */
8321
+ declare class DivRotationTransformation<T extends DivRotationTransformationProps = DivRotationTransformationProps> {
8322
+ readonly _props?: Exact<DivRotationTransformationProps, T>;
8323
+ readonly type = "rotation";
8324
+ /**
8325
+ * Rotation angle in degrees.
8326
+ */
8327
+ angle: Type<number | DivExpression>;
8328
+ /**
8329
+ * X coordinate of the rotation pivot point.
8330
+ */
8331
+ pivot_x?: Type<DivPivot>;
8332
+ /**
8333
+ * Y coordinate of the rotation pivot point.
8334
+ */
8335
+ pivot_y?: Type<DivPivot>;
8336
+ constructor(props: Exact<DivRotationTransformationProps, T>);
8337
+ }
8338
+ interface DivRotationTransformationProps {
8339
+ /**
8340
+ * Rotation angle in degrees.
8341
+ */
8342
+ angle: Type<number | DivExpression>;
8343
+ /**
8344
+ * X coordinate of the rotation pivot point.
8345
+ */
8346
+ pivot_x?: Type<DivPivot>;
8347
+ /**
8348
+ * Y coordinate of the rotation pivot point.
8349
+ */
8350
+ pivot_y?: Type<DivPivot>;
8351
+ }
8352
+
8156
8353
  /**
8157
8354
  * A rectangle with rounded corners.
8158
8355
  */
@@ -8448,6 +8645,12 @@ declare class DivSelect<T extends DivSelectProps = DivSelectProps> {
8448
8645
  * Platforms: android, ios, web
8449
8646
  */
8450
8647
  transform?: Type<IDivTransform>;
8648
+ /**
8649
+ * Array of transformations to be applied to the element in sequence.
8650
+ *
8651
+ * Platforms: not supported
8652
+ */
8653
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
8451
8654
  /**
8452
8655
  * Change animation. It is played when the position or size of an element changes in the new
8453
8656
  * layout.
@@ -8689,6 +8892,12 @@ interface DivSelectProps {
8689
8892
  * Platforms: android, ios, web
8690
8893
  */
8691
8894
  transform?: Type<IDivTransform>;
8895
+ /**
8896
+ * Array of transformations to be applied to the element in sequence.
8897
+ *
8898
+ * Platforms: not supported
8899
+ */
8900
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
8692
8901
  /**
8693
8902
  * Change animation. It is played when the position or size of an element changes in the new
8694
8903
  * layout.
@@ -8958,6 +9167,12 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
8958
9167
  * Platforms: android, ios, web
8959
9168
  */
8960
9169
  transform?: Type<IDivTransform>;
9170
+ /**
9171
+ * Array of transformations to be applied to the element in sequence.
9172
+ *
9173
+ * Platforms: not supported
9174
+ */
9175
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
8961
9176
  /**
8962
9177
  * Change animation. It is played when the position or size of an element changes in the new
8963
9178
  * layout.
@@ -9205,6 +9420,12 @@ interface DivSeparatorProps {
9205
9420
  * Platforms: android, ios, web
9206
9421
  */
9207
9422
  transform?: Type<IDivTransform>;
9423
+ /**
9424
+ * Array of transformations to be applied to the element in sequence.
9425
+ *
9426
+ * Platforms: not supported
9427
+ */
9428
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
9208
9429
  /**
9209
9430
  * Change animation. It is played when the position or size of an element changes in the new
9210
9431
  * layout.
@@ -9655,6 +9876,12 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
9655
9876
  * Platforms: android, ios, web
9656
9877
  */
9657
9878
  transform?: Type<IDivTransform>;
9879
+ /**
9880
+ * Array of transformations to be applied to the element in sequence.
9881
+ *
9882
+ * Platforms: not supported
9883
+ */
9884
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
9658
9885
  /**
9659
9886
  * Change animation. It is played when the position or size of an element changes in the new
9660
9887
  * layout.
@@ -9901,6 +10128,12 @@ interface DivSliderProps {
9901
10128
  * Platforms: android, ios, web
9902
10129
  */
9903
10130
  transform?: Type<IDivTransform>;
10131
+ /**
10132
+ * Array of transformations to be applied to the element in sequence.
10133
+ *
10134
+ * Platforms: not supported
10135
+ */
10136
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
9904
10137
  /**
9905
10138
  * Change animation. It is played when the position or size of an element changes in the new
9906
10139
  * layout.
@@ -10268,6 +10501,12 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
10268
10501
  * Platforms: android, ios, web
10269
10502
  */
10270
10503
  transform?: Type<IDivTransform>;
10504
+ /**
10505
+ * Array of transformations to be applied to the element in sequence.
10506
+ *
10507
+ * Platforms: not supported
10508
+ */
10509
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
10271
10510
  /**
10272
10511
  * It determines which events trigger transition animations.
10273
10512
  *
@@ -10545,6 +10784,12 @@ interface DivStateProps {
10545
10784
  * Platforms: android, ios, web
10546
10785
  */
10547
10786
  transform?: Type<IDivTransform>;
10787
+ /**
10788
+ * Array of transformations to be applied to the element in sequence.
10789
+ *
10790
+ * Platforms: not supported
10791
+ */
10792
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
10548
10793
  /**
10549
10794
  * It determines which events trigger transition animations.
10550
10795
  *
@@ -10858,6 +11103,12 @@ declare class DivSwitch<T extends DivSwitchProps = DivSwitchProps> {
10858
11103
  * Platforms: android, ios, web
10859
11104
  */
10860
11105
  transform?: Type<IDivTransform>;
11106
+ /**
11107
+ * Array of transformations to be applied to the element in sequence.
11108
+ *
11109
+ * Platforms: not supported
11110
+ */
11111
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
10861
11112
  /**
10862
11113
  * Change animation. It is played when the position or size of an element changes in the new
10863
11114
  * layout.
@@ -11053,6 +11304,12 @@ interface DivSwitchProps {
11053
11304
  * Platforms: android, ios, web
11054
11305
  */
11055
11306
  transform?: Type<IDivTransform>;
11307
+ /**
11308
+ * Array of transformations to be applied to the element in sequence.
11309
+ *
11310
+ * Platforms: not supported
11311
+ */
11312
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
11056
11313
  /**
11057
11314
  * Change animation. It is played when the position or size of an element changes in the new
11058
11315
  * layout.
@@ -11297,6 +11554,12 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
11297
11554
  * Platforms: android, ios, web
11298
11555
  */
11299
11556
  transform?: Type<IDivTransform>;
11557
+ /**
11558
+ * Array of transformations to be applied to the element in sequence.
11559
+ *
11560
+ * Platforms: not supported
11561
+ */
11562
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
11300
11563
  /**
11301
11564
  * Change animation. It is played when the position or size of an element changes in the new
11302
11565
  * layout.
@@ -11535,6 +11798,12 @@ interface DivTabsProps {
11535
11798
  * Platforms: android, ios, web
11536
11799
  */
11537
11800
  transform?: Type<IDivTransform>;
11801
+ /**
11802
+ * Array of transformations to be applied to the element in sequence.
11803
+ *
11804
+ * Platforms: not supported
11805
+ */
11806
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
11538
11807
  /**
11539
11808
  * Change animation. It is played when the position or size of an element changes in the new
11540
11809
  * layout.
@@ -12052,6 +12321,12 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
12052
12321
  * Platforms: android, ios, web
12053
12322
  */
12054
12323
  transform?: Type<IDivTransform>;
12324
+ /**
12325
+ * Array of transformations to be applied to the element in sequence.
12326
+ *
12327
+ * Platforms: not supported
12328
+ */
12329
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
12055
12330
  /**
12056
12331
  * Change animation. It is played when the position or size of an element changes in the new
12057
12332
  * layout.
@@ -12442,6 +12717,12 @@ interface DivTextProps {
12442
12717
  * Platforms: android, ios, web
12443
12718
  */
12444
12719
  transform?: Type<IDivTransform>;
12720
+ /**
12721
+ * Array of transformations to be applied to the element in sequence.
12722
+ *
12723
+ * Platforms: not supported
12724
+ */
12725
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
12445
12726
  /**
12446
12727
  * Change animation. It is played when the position or size of an element changes in the new
12447
12728
  * layout.
@@ -12984,6 +13265,8 @@ interface IDivTransform {
12984
13265
  rotation?: Type<number | DivExpression>;
12985
13266
  }
12986
13267
 
13268
+ declare type DivTransformation = DivRotationTransformation | DivTranslationTransformation;
13269
+
12987
13270
  interface IDivTransitionBase {
12988
13271
  /**
12989
13272
  * Animation duration in milliseconds.
@@ -13003,6 +13286,35 @@ declare type DivTransitionSelector = 'none' | 'data_change' | 'state_change' | '
13003
13286
 
13004
13287
  declare type DivTransitionTrigger = 'data_change' | 'state_change' | 'visibility_change';
13005
13288
 
13289
+ declare type DivTranslation = DivFixedTranslation | DivPercentageTranslation;
13290
+
13291
+ /**
13292
+ * Translation transformation.
13293
+ */
13294
+ declare class DivTranslationTransformation<T extends DivTranslationTransformationProps = DivTranslationTransformationProps> {
13295
+ readonly _props?: Exact<DivTranslationTransformationProps, T>;
13296
+ readonly type = "translation";
13297
+ /**
13298
+ * X coordinate of the translation.
13299
+ */
13300
+ x?: Type<DivTranslation>;
13301
+ /**
13302
+ * Y coordinate of the translation.
13303
+ */
13304
+ y?: Type<DivTranslation>;
13305
+ constructor(props?: Exact<DivTranslationTransformationProps, T>);
13306
+ }
13307
+ interface DivTranslationTransformationProps {
13308
+ /**
13309
+ * X coordinate of the translation.
13310
+ */
13311
+ x?: Type<DivTranslation>;
13312
+ /**
13313
+ * Y coordinate of the translation.
13314
+ */
13315
+ y?: Type<DivTranslation>;
13316
+ }
13317
+
13006
13318
  /**
13007
13319
  * A trigger that causes an action when activated.
13008
13320
  */
@@ -13218,6 +13530,12 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
13218
13530
  * Platforms: android, ios, web
13219
13531
  */
13220
13532
  transform?: Type<IDivTransform>;
13533
+ /**
13534
+ * Array of transformations to be applied to the element in sequence.
13535
+ *
13536
+ * Platforms: not supported
13537
+ */
13538
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
13221
13539
  /**
13222
13540
  * Change animation. It is played when the position or size of an element changes in the new
13223
13541
  * layout.
@@ -13463,6 +13781,12 @@ interface DivVideoProps {
13463
13781
  * Platforms: android, ios, web
13464
13782
  */
13465
13783
  transform?: Type<IDivTransform>;
13784
+ /**
13785
+ * Array of transformations to be applied to the element in sequence.
13786
+ *
13787
+ * Platforms: not supported
13788
+ */
13789
+ transformations?: Type<NonEmptyArray<DivTransformation>>;
13466
13790
  /**
13467
13791
  * Change animation. It is played when the position or size of an element changes in the new
13468
13792
  * layout.
@@ -14096,4 +14420,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
14096
14420
  };
14097
14421
  };
14098
14422
 
14099
- 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, DivActionUpdateStructure, DivActionUpdateStructureProps, 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, DivPagerItemAlignment, 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, DivStrokeStyle, DivStrokeStyleDashed, DivStrokeStyleDashedProps, DivStrokeStyleSolid, DivStrokeStyleSolidProps, DivSwitch, DivSwitchProps, DivTabs, DivTabsProps, DivText, DivTextAlignmentVertical, DivTextGradient, DivTextProps, DivTextRangeBackground, DivTextRangeMask, DivTextRangeMaskParticles, DivTextRangeMaskParticlesProps, DivTextRangeMaskSolid, DivTextRangeMaskSolidProps, DivTextTruncate, DivTooltipMode, DivTooltipModeModal, DivTooltipModeModalProps, DivTooltipModeNonModal, DivTooltipModeNonModalProps, 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, IDivLinearGradientColorPoint, IDivPatch, IDivPatchChange, IDivPoint, IDivRadialGradientColorPoint, IDivSelectOption, IDivSeparatorDelimiterStyle, IDivShadow, IDivSightAction, IDivSizeUnitValue, IDivSliderRange, IDivSliderTextStyle, IDivStateState, IDivStroke, IDivTabsItem, IDivTabsTabTitleDelimiter, IDivTabsTabTitleStyle, IDivTextEllipsis, IDivTextImage, IDivTextRange, IDivTextRangeBorder, IDivTextRangeMaskBase, IDivTimer, IDivTooltip, IDivTransform, IDivTransitionBase, IDivTrigger, IDivVisibilityAction, IImageAccessibility, IRequestHeader, ITemplates, ImageIndexingDirection, IndexDestination, IndexDestinationProps, IntBoolean, IntegerValue, IntegerValueProps, IntegerVariable, IntegerVariableProps, NonEmptyArray, NumberValue, NumberValueProps, NumberVariable, NumberVariableProps, OffsetDestination, OffsetDestinationProps, PropertyVariable, PropertyVariableProps, 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 };
14423
+ 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, DivActionUpdateStructure, DivActionUpdateStructureProps, 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, DivFixedTranslation, DivFixedTranslationProps, 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, DivPagerItemAlignment, DivPagerLayoutMode, DivPagerOrientation, DivPagerProps, DivPatchMode, DivPercentageSize, DivPercentageSizeProps, DivPercentageTranslation, DivPercentageTranslationProps, DivPhoneInputMask, DivPhoneInputMaskProps, DivPivot, DivPivotFixed, DivPivotFixedProps, DivPivotPercentage, DivPivotPercentageProps, DivRadialGradient, DivRadialGradientCenter, DivRadialGradientFixedCenter, DivRadialGradientFixedCenterProps, DivRadialGradientProps, DivRadialGradientRadius, DivRadialGradientRelativeCenter, DivRadialGradientRelativeCenterProps, DivRadialGradientRelativeRadius, DivRadialGradientRelativeRadiusProps, DivRadialGradientRelativeRadiusValue, DivRotationTransformation, DivRotationTransformationProps, DivRoundedRectangleShape, DivRoundedRectangleShapeProps, DivScaleTransition, DivScaleTransitionProps, DivSelect, DivSelectProps, DivSeparator, DivSeparatorProps, DivShape, DivShapeDrawable, DivShapeDrawableProps, DivSize, DivSizeUnit, DivSlideTransition, DivSlideTransitionEdge, DivSlideTransitionProps, DivSlider, DivSliderProps, DivSolidBackground, DivSolidBackgroundProps, DivState, DivStateProps, DivStretchIndicatorItemPlacement, DivStretchIndicatorItemPlacementProps, DivStrokeStyle, DivStrokeStyleDashed, DivStrokeStyleDashedProps, DivStrokeStyleSolid, DivStrokeStyleSolidProps, DivSwitch, DivSwitchProps, DivTabs, DivTabsProps, DivText, DivTextAlignmentVertical, DivTextGradient, DivTextProps, DivTextRangeBackground, DivTextRangeMask, DivTextRangeMaskParticles, DivTextRangeMaskParticlesProps, DivTextRangeMaskSolid, DivTextRangeMaskSolidProps, DivTextTruncate, DivTooltipMode, DivTooltipModeModal, DivTooltipModeModalProps, DivTooltipModeNonModal, DivTooltipModeNonModalProps, DivTooltipPosition, DivTransformation, DivTransitionSelector, DivTransitionTrigger, DivTranslation, DivTranslationTransformation, DivTranslationTransformationProps, 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, IDivLinearGradientColorPoint, IDivPatch, IDivPatchChange, IDivPoint, IDivRadialGradientColorPoint, IDivSelectOption, IDivSeparatorDelimiterStyle, IDivShadow, IDivSightAction, IDivSizeUnitValue, IDivSliderRange, IDivSliderTextStyle, IDivStateState, IDivStroke, IDivTabsItem, IDivTabsTabTitleDelimiter, IDivTabsTabTitleStyle, IDivTextEllipsis, IDivTextImage, IDivTextRange, IDivTextRangeBorder, IDivTextRangeMaskBase, IDivTimer, IDivTooltip, IDivTransform, IDivTransitionBase, IDivTrigger, IDivVisibilityAction, IImageAccessibility, IRequestHeader, ITemplates, ImageIndexingDirection, IndexDestination, IndexDestinationProps, IntBoolean, IntegerValue, IntegerValueProps, IntegerVariable, IntegerVariableProps, NonEmptyArray, NumberValue, NumberValueProps, NumberVariable, NumberVariableProps, OffsetDestination, OffsetDestinationProps, PropertyVariable, PropertyVariableProps, 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 };