@divkitframework/jsonbuilder 30.3.0 → 30.5.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.
@@ -410,6 +410,23 @@ interface DivActionArrayRemoveValueProps {
410
410
  variable_name: Type<string | DivExpression>;
411
411
  }
412
412
 
413
+ /**
414
+ * Sets value in the array
415
+ */
416
+ declare class DivActionArraySetValue<T extends DivActionArraySetValueProps = DivActionArraySetValueProps> {
417
+ readonly _props?: Exact<DivActionArraySetValueProps, T>;
418
+ readonly type = "array_set_value";
419
+ index: Type<number | DivExpression>;
420
+ value: Type<DivTypedValue>;
421
+ variable_name: Type<string | DivExpression>;
422
+ constructor(props: Exact<DivActionArraySetValueProps, T>);
423
+ }
424
+ interface DivActionArraySetValueProps {
425
+ index: Type<number | DivExpression>;
426
+ value: Type<DivTypedValue>;
427
+ variable_name: Type<string | DivExpression>;
428
+ }
429
+
413
430
  /**
414
431
  * Removes focus from focused item.
415
432
  */
@@ -436,6 +453,23 @@ interface DivActionCopyToClipboardProps {
436
453
 
437
454
  declare type DivActionCopyToClipboardContent = ContentText | ContentUrl;
438
455
 
456
+ /**
457
+ * Sets value in dictionary for the given key. Removes key if the value is not defined.
458
+ */
459
+ declare class DivActionDictSetValue<T extends DivActionDictSetValueProps = DivActionDictSetValueProps> {
460
+ readonly _props?: Exact<DivActionDictSetValueProps, T>;
461
+ readonly type = "dict_set_value";
462
+ key: Type<string | DivExpression>;
463
+ value?: Type<DivTypedValue>;
464
+ variable_name: Type<string | DivExpression>;
465
+ constructor(props: Exact<DivActionDictSetValueProps, T>);
466
+ }
467
+ interface DivActionDictSetValueProps {
468
+ key: Type<string | DivExpression>;
469
+ value?: Type<DivTypedValue>;
470
+ variable_name: Type<string | DivExpression>;
471
+ }
472
+
439
473
  /**
440
474
  * Requests focus for an element. May require a user action on the web.
441
475
  */
@@ -464,7 +498,7 @@ interface DivActionSetVariableProps {
464
498
  variable_name: Type<string | DivExpression>;
465
499
  }
466
500
 
467
- declare type DivActionTyped = DivActionArrayInsertValue | DivActionArrayRemoveValue | DivActionSetVariable | DivActionFocusElement | DivActionClearFocus | DivActionCopyToClipboard;
501
+ declare type DivActionTyped = DivActionArrayInsertValue | DivActionArrayRemoveValue | DivActionArraySetValue | DivActionClearFocus | DivActionCopyToClipboard | DivActionDictSetValue | DivActionFocusElement | DivActionSetVariable;
468
502
 
469
503
  declare type DivAlignmentHorizontal = 'left' | 'center' | 'right' | 'start' | 'end';
470
504
 
@@ -648,6 +682,11 @@ interface IDivBase {
648
682
  * Animation starting triggers. Default value: `[state_change, visibility_change]`.
649
683
  */
650
684
  transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
685
+ /**
686
+ * Definition of variables that can be used within this element. These variables, defined in the
687
+ * array, can only be used inside this element and its children.
688
+ */
689
+ variables?: Type<NonEmptyArray<DivVariable>>;
651
690
  /**
652
691
  * Element visibility.
653
692
  */
@@ -1018,6 +1057,11 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
1018
1057
  * Animation starting triggers. Default value: `[state_change, visibility_change]`.
1019
1058
  */
1020
1059
  transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
1060
+ /**
1061
+ * Definition of variables that can be used within this element. These variables, defined in the
1062
+ * array, can only be used inside this element and its children.
1063
+ */
1064
+ variables?: Type<NonEmptyArray<DivVariable>>;
1021
1065
  /**
1022
1066
  * Element visibility.
1023
1067
  */
@@ -1213,6 +1257,11 @@ interface DivContainerPropsBase {
1213
1257
  * Animation starting triggers. Default value: `[state_change, visibility_change]`.
1214
1258
  */
1215
1259
  transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
1260
+ /**
1261
+ * Definition of variables that can be used within this element. These variables, defined in the
1262
+ * array, can only be used inside this element and its children.
1263
+ */
1264
+ variables?: Type<NonEmptyArray<DivVariable>>;
1216
1265
  /**
1217
1266
  * Element visibility.
1218
1267
  */
@@ -1445,6 +1494,11 @@ declare class DivCustom<T extends DivCustomProps = DivCustomProps> {
1445
1494
  * Animation starting triggers. Default value: `[state_change, visibility_change]`.
1446
1495
  */
1447
1496
  transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
1497
+ /**
1498
+ * Definition of variables that can be used within this element. These variables, defined in the
1499
+ * array, can only be used inside this element and its children.
1500
+ */
1501
+ variables?: Type<NonEmptyArray<DivVariable>>;
1448
1502
  /**
1449
1503
  * Element visibility.
1450
1504
  */
@@ -1575,6 +1629,11 @@ interface DivCustomProps {
1575
1629
  * Animation starting triggers. Default value: `[state_change, visibility_change]`.
1576
1630
  */
1577
1631
  transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
1632
+ /**
1633
+ * Definition of variables that can be used within this element. These variables, defined in the
1634
+ * array, can only be used inside this element and its children.
1635
+ */
1636
+ variables?: Type<NonEmptyArray<DivVariable>>;
1578
1637
  /**
1579
1638
  * Element visibility.
1580
1639
  */
@@ -2107,6 +2166,11 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
2107
2166
  * Animation starting triggers. Default value: `[state_change, visibility_change]`.
2108
2167
  */
2109
2168
  transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
2169
+ /**
2170
+ * Definition of variables that can be used within this element. These variables, defined in the
2171
+ * array, can only be used inside this element and its children.
2172
+ */
2173
+ variables?: Type<NonEmptyArray<DivVariable>>;
2110
2174
  /**
2111
2175
  * Element visibility.
2112
2176
  */
@@ -2288,6 +2352,11 @@ interface DivGalleryProps {
2288
2352
  * Animation starting triggers. Default value: `[state_change, visibility_change]`.
2289
2353
  */
2290
2354
  transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
2355
+ /**
2356
+ * Definition of variables that can be used within this element. These variables, defined in the
2357
+ * array, can only be used inside this element and its children.
2358
+ */
2359
+ variables?: Type<NonEmptyArray<DivVariable>>;
2291
2360
  /**
2292
2361
  * Element visibility.
2293
2362
  */
@@ -2472,6 +2541,11 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
2472
2541
  * Animation starting triggers. Default value: `[state_change, visibility_change]`.
2473
2542
  */
2474
2543
  transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
2544
+ /**
2545
+ * Definition of variables that can be used within this element. These variables, defined in the
2546
+ * array, can only be used inside this element and its children.
2547
+ */
2548
+ variables?: Type<NonEmptyArray<DivVariable>>;
2475
2549
  /**
2476
2550
  * Element visibility.
2477
2551
  */
@@ -2647,6 +2721,11 @@ interface DivGifImageProps {
2647
2721
  * Animation starting triggers. Default value: `[state_change, visibility_change]`.
2648
2722
  */
2649
2723
  transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
2724
+ /**
2725
+ * Definition of variables that can be used within this element. These variables, defined in the
2726
+ * array, can only be used inside this element and its children.
2727
+ */
2728
+ variables?: Type<NonEmptyArray<DivVariable>>;
2650
2729
  /**
2651
2730
  * Element visibility.
2652
2731
  */
@@ -2808,6 +2887,11 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
2808
2887
  * Animation starting triggers. Default value: `[state_change, visibility_change]`.
2809
2888
  */
2810
2889
  transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
2890
+ /**
2891
+ * Definition of variables that can be used within this element. These variables, defined in the
2892
+ * array, can only be used inside this element and its children.
2893
+ */
2894
+ variables?: Type<NonEmptyArray<DivVariable>>;
2811
2895
  /**
2812
2896
  * Element visibility.
2813
2897
  */
@@ -2964,6 +3048,11 @@ interface DivGridProps {
2964
3048
  * Animation starting triggers. Default value: `[state_change, visibility_change]`.
2965
3049
  */
2966
3050
  transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
3051
+ /**
3052
+ * Definition of variables that can be used within this element. These variables, defined in the
3053
+ * array, can only be used inside this element and its children.
3054
+ */
3055
+ variables?: Type<NonEmptyArray<DivVariable>>;
2967
3056
  /**
2968
3057
  * Element visibility.
2969
3058
  */
@@ -3166,6 +3255,11 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
3166
3255
  * Animation starting triggers. Default value: `[state_change, visibility_change]`.
3167
3256
  */
3168
3257
  transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
3258
+ /**
3259
+ * Definition of variables that can be used within this element. These variables, defined in the
3260
+ * array, can only be used inside this element and its children.
3261
+ */
3262
+ variables?: Type<NonEmptyArray<DivVariable>>;
3169
3263
  /**
3170
3264
  * Element visibility.
3171
3265
  */
@@ -3363,6 +3457,11 @@ interface DivImageProps {
3363
3457
  * Animation starting triggers. Default value: `[state_change, visibility_change]`.
3364
3458
  */
3365
3459
  transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
3460
+ /**
3461
+ * Definition of variables that can be used within this element. These variables, defined in the
3462
+ * array, can only be used inside this element and its children.
3463
+ */
3464
+ variables?: Type<NonEmptyArray<DivVariable>>;
3366
3465
  /**
3367
3466
  * Element visibility.
3368
3467
  */
@@ -3617,6 +3716,11 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
3617
3716
  * Animation starting triggers. Default value: `[state_change, visibility_change]`.
3618
3717
  */
3619
3718
  transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
3719
+ /**
3720
+ * Definition of variables that can be used within this element. These variables, defined in the
3721
+ * array, can only be used inside this element and its children.
3722
+ */
3723
+ variables?: Type<NonEmptyArray<DivVariable>>;
3620
3724
  /**
3621
3725
  * Element visibility.
3622
3726
  */
@@ -3797,6 +3901,11 @@ interface DivIndicatorProps {
3797
3901
  * Animation starting triggers. Default value: `[state_change, visibility_change]`.
3798
3902
  */
3799
3903
  transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
3904
+ /**
3905
+ * Definition of variables that can be used within this element. These variables, defined in the
3906
+ * array, can only be used inside this element and its children.
3907
+ */
3908
+ variables?: Type<NonEmptyArray<DivVariable>>;
3800
3909
  /**
3801
3910
  * Element visibility.
3802
3911
  */
@@ -3945,7 +4054,7 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
3945
4054
  */
3946
4055
  mask?: Type<DivInputMask>;
3947
4056
  /**
3948
- * The maximum number of characters that can be entered in the input field.
4057
+ * Maximum number of characters that can be entered in the input field.
3949
4058
  */
3950
4059
  max_length?: Type<number | DivExpression>;
3951
4060
  /**
@@ -4022,6 +4131,11 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
4022
4131
  * Validator that checks that the field value meets the specified conditions.
4023
4132
  */
4024
4133
  validators?: Type<NonEmptyArray<DivInputValidator>>;
4134
+ /**
4135
+ * Definition of variables that can be used within this element. These variables, defined in the
4136
+ * array, can only be used inside this element and its children.
4137
+ */
4138
+ variables?: Type<NonEmptyArray<DivVariable>>;
4025
4139
  /**
4026
4140
  * Element visibility.
4027
4141
  */
@@ -4151,7 +4265,7 @@ interface DivInputProps {
4151
4265
  */
4152
4266
  mask?: Type<DivInputMask>;
4153
4267
  /**
4154
- * The maximum number of characters that can be entered in the input field.
4268
+ * Maximum number of characters that can be entered in the input field.
4155
4269
  */
4156
4270
  max_length?: Type<number | DivExpression>;
4157
4271
  /**
@@ -4228,6 +4342,11 @@ interface DivInputProps {
4228
4342
  * Validator that checks that the field value meets the specified conditions.
4229
4343
  */
4230
4344
  validators?: Type<NonEmptyArray<DivInputValidator>>;
4345
+ /**
4346
+ * Definition of variables that can be used within this element. These variables, defined in the
4347
+ * array, can only be used inside this element and its children.
4348
+ */
4349
+ variables?: Type<NonEmptyArray<DivVariable>>;
4231
4350
  /**
4232
4351
  * Element visibility.
4233
4352
  */
@@ -4799,6 +4918,11 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
4799
4918
  * Animation starting triggers. Default value: `[state_change, visibility_change]`.
4800
4919
  */
4801
4920
  transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
4921
+ /**
4922
+ * Definition of variables that can be used within this element. These variables, defined in the
4923
+ * array, can only be used inside this element and its children.
4924
+ */
4925
+ variables?: Type<NonEmptyArray<DivVariable>>;
4802
4926
  /**
4803
4927
  * Element visibility.
4804
4928
  */
@@ -4964,6 +5088,11 @@ interface DivPagerProps {
4964
5088
  * Animation starting triggers. Default value: `[state_change, visibility_change]`.
4965
5089
  */
4966
5090
  transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
5091
+ /**
5092
+ * Definition of variables that can be used within this element. These variables, defined in the
5093
+ * array, can only be used inside this element and its children.
5094
+ */
5095
+ variables?: Type<NonEmptyArray<DivVariable>>;
4967
5096
  /**
4968
5097
  * Element visibility.
4969
5098
  */
@@ -5490,6 +5619,11 @@ declare class DivSelect<T extends DivSelectProps = DivSelectProps> {
5490
5619
  * Name of the variable that stores the selected option value (`value`).
5491
5620
  */
5492
5621
  value_variable: Type<string>;
5622
+ /**
5623
+ * Definition of variables that can be used within this element. These variables, defined in the
5624
+ * array, can only be used inside this element and its children.
5625
+ */
5626
+ variables?: Type<NonEmptyArray<DivVariable>>;
5493
5627
  /**
5494
5628
  * Element visibility.
5495
5629
  */
@@ -5652,6 +5786,11 @@ interface DivSelectProps {
5652
5786
  * Name of the variable that stores the selected option value (`value`).
5653
5787
  */
5654
5788
  value_variable: Type<string>;
5789
+ /**
5790
+ * Definition of variables that can be used within this element. These variables, defined in the
5791
+ * array, can only be used inside this element and its children.
5792
+ */
5793
+ variables?: Type<NonEmptyArray<DivVariable>>;
5655
5794
  /**
5656
5795
  * Element visibility.
5657
5796
  */
@@ -5814,6 +5953,11 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
5814
5953
  * Animation starting triggers. Default value: `[state_change, visibility_change]`.
5815
5954
  */
5816
5955
  transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
5956
+ /**
5957
+ * Definition of variables that can be used within this element. These variables, defined in the
5958
+ * array, can only be used inside this element and its children.
5959
+ */
5960
+ variables?: Type<NonEmptyArray<DivVariable>>;
5817
5961
  /**
5818
5962
  * Element visibility.
5819
5963
  */
@@ -5958,6 +6102,11 @@ interface DivSeparatorProps {
5958
6102
  * Animation starting triggers. Default value: `[state_change, visibility_change]`.
5959
6103
  */
5960
6104
  transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
6105
+ /**
6106
+ * Definition of variables that can be used within this element. These variables, defined in the
6107
+ * array, can only be used inside this element and its children.
6108
+ */
6109
+ variables?: Type<NonEmptyArray<DivVariable>>;
5961
6110
  /**
5962
6111
  * Element visibility.
5963
6112
  */
@@ -6315,6 +6464,11 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
6315
6464
  * Animation starting triggers. Default value: `[state_change, visibility_change]`.
6316
6465
  */
6317
6466
  transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
6467
+ /**
6468
+ * Definition of variables that can be used within this element. These variables, defined in the
6469
+ * array, can only be used inside this element and its children.
6470
+ */
6471
+ variables?: Type<NonEmptyArray<DivVariable>>;
6318
6472
  /**
6319
6473
  * Element visibility.
6320
6474
  */
@@ -6489,6 +6643,11 @@ interface DivSliderProps {
6489
6643
  * Animation starting triggers. Default value: `[state_change, visibility_change]`.
6490
6644
  */
6491
6645
  transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
6646
+ /**
6647
+ * Definition of variables that can be used within this element. These variables, defined in the
6648
+ * array, can only be used inside this element and its children.
6649
+ */
6650
+ variables?: Type<NonEmptyArray<DivVariable>>;
6492
6651
  /**
6493
6652
  * Element visibility.
6494
6653
  */
@@ -6700,6 +6859,11 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
6700
6859
  * Animation starting triggers. Default value: `[state_change, visibility_change]`.
6701
6860
  */
6702
6861
  transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
6862
+ /**
6863
+ * Definition of variables that can be used within this element. These variables, defined in the
6864
+ * array, can only be used inside this element and its children.
6865
+ */
6866
+ variables?: Type<NonEmptyArray<DivVariable>>;
6703
6867
  /**
6704
6868
  * Element visibility.
6705
6869
  */
@@ -6846,6 +7010,11 @@ interface DivStateProps {
6846
7010
  * Animation starting triggers. Default value: `[state_change, visibility_change]`.
6847
7011
  */
6848
7012
  transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
7013
+ /**
7014
+ * Definition of variables that can be used within this element. These variables, defined in the
7015
+ * array, can only be used inside this element and its children.
7016
+ */
7017
+ variables?: Type<NonEmptyArray<DivVariable>>;
6849
7018
  /**
6850
7019
  * Element visibility.
6851
7020
  */
@@ -7092,6 +7261,11 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
7092
7261
  * Animation starting triggers. Default value: `[state_change, visibility_change]`.
7093
7262
  */
7094
7263
  transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
7264
+ /**
7265
+ * Definition of variables that can be used within this element. These variables, defined in the
7266
+ * array, can only be used inside this element and its children.
7267
+ */
7268
+ variables?: Type<NonEmptyArray<DivVariable>>;
7095
7269
  /**
7096
7270
  * Element visibility.
7097
7271
  */
@@ -7262,6 +7436,11 @@ interface DivTabsProps {
7262
7436
  * Animation starting triggers. Default value: `[state_change, visibility_change]`.
7263
7437
  */
7264
7438
  transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
7439
+ /**
7440
+ * Definition of variables that can be used within this element. These variables, defined in the
7441
+ * array, can only be used inside this element and its children.
7442
+ */
7443
+ variables?: Type<NonEmptyArray<DivVariable>>;
7265
7444
  /**
7266
7445
  * Element visibility.
7267
7446
  */
@@ -7481,8 +7660,8 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
7481
7660
  */
7482
7661
  font_family?: Type<string | DivExpression>;
7483
7662
  /**
7484
- * List of OpenType font features. The format is the same as the CSS font-feature-settings
7485
- * attribute: https://www.w3.org/TR/css-fonts-3/#font-feature-settings-prop
7663
+ * List of OpenType font features. The format matches the CSS attribute "font-feature-settings".
7664
+ * Learn more: https://www.w3.org/TR/css-fonts-3/#font-feature-settings-prop
7486
7665
  */
7487
7666
  font_feature_settings?: Type<string | DivExpression>;
7488
7667
  /**
@@ -7623,6 +7802,11 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
7623
7802
  * Underline.
7624
7803
  */
7625
7804
  underline?: Type<DivLineStyle | DivExpression>;
7805
+ /**
7806
+ * Definition of variables that can be used within this element. These variables, defined in the
7807
+ * array, can only be used inside this element and its children.
7808
+ */
7809
+ variables?: Type<NonEmptyArray<DivVariable>>;
7626
7810
  /**
7627
7811
  * Element visibility.
7628
7812
  */
@@ -7719,8 +7903,8 @@ interface DivTextProps {
7719
7903
  */
7720
7904
  font_family?: Type<string | DivExpression>;
7721
7905
  /**
7722
- * List of OpenType font features. The format is the same as the CSS font-feature-settings
7723
- * attribute: https://www.w3.org/TR/css-fonts-3/#font-feature-settings-prop
7906
+ * List of OpenType font features. The format matches the CSS attribute "font-feature-settings".
7907
+ * Learn more: https://www.w3.org/TR/css-fonts-3/#font-feature-settings-prop
7724
7908
  */
7725
7909
  font_feature_settings?: Type<string | DivExpression>;
7726
7910
  /**
@@ -7861,6 +8045,11 @@ interface DivTextProps {
7861
8045
  * Underline.
7862
8046
  */
7863
8047
  underline?: Type<DivLineStyle | DivExpression>;
8048
+ /**
8049
+ * Definition of variables that can be used within this element. These variables, defined in the
8050
+ * array, can only be used inside this element and its children.
8051
+ */
8052
+ variables?: Type<NonEmptyArray<DivVariable>>;
7864
8053
  /**
7865
8054
  * Element visibility.
7866
8055
  */
@@ -7961,8 +8150,8 @@ interface IDivTextRange {
7961
8150
  */
7962
8151
  font_family?: Type<string | DivExpression>;
7963
8152
  /**
7964
- * List of OpenType font features. The format is the same as the CSS font-feature-settings
7965
- * attribute: https://www.w3.org/TR/css-fonts-3/#font-feature-settings-prop
8153
+ * List of OpenType font features. The format matches the CSS attribute "font-feature-settings".
8154
+ * Learn more: https://www.w3.org/TR/css-fonts-3/#font-feature-settings-prop
7966
8155
  */
7967
8156
  font_feature_settings?: Type<string | DivExpression>;
7968
8157
  /**
@@ -8332,6 +8521,11 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
8332
8521
  * Animation starting triggers. Default value: `[state_change, visibility_change]`.
8333
8522
  */
8334
8523
  transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
8524
+ /**
8525
+ * Definition of variables that can be used within this element. These variables, defined in the
8526
+ * array, can only be used inside this element and its children.
8527
+ */
8528
+ variables?: Type<NonEmptyArray<DivVariable>>;
8335
8529
  video_sources: Type<NonEmptyArray<DivVideoSource>>;
8336
8530
  /**
8337
8531
  * Element visibility.
@@ -8511,6 +8705,11 @@ interface DivVideoProps {
8511
8705
  * Animation starting triggers. Default value: `[state_change, visibility_change]`.
8512
8706
  */
8513
8707
  transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
8708
+ /**
8709
+ * Definition of variables that can be used within this element. These variables, defined in the
8710
+ * array, can only be used inside this element and its children.
8711
+ */
8712
+ variables?: Type<NonEmptyArray<DivVariable>>;
8514
8713
  video_sources: Type<NonEmptyArray<DivVideoSource>>;
8515
8714
  /**
8516
8715
  * Element visibility.
@@ -8999,4 +9198,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
8999
9198
  };
9000
9199
  };
9001
9200
 
9002
- export { ArrayValue, ArrayValueProps, ArrayVariable, ArrayVariableProps, BooleanValue, BooleanValueProps, BooleanVariable, BooleanVariableProps, ColorValue, ColorValueProps, ColorVariable, ColorVariableProps, ContentText, ContentTextProps, ContentUrl, ContentUrlProps, DelimiterStyleOrientation, DictValue, DictValueProps, DictVariable, DictVariableProps, Div, DivAccessibilityMode, DivAccessibilityType, DivActionArrayInsertValue, DivActionArrayInsertValueProps, DivActionArrayRemoveValue, DivActionArrayRemoveValueProps, DivActionClearFocus, DivActionClearFocusProps, DivActionCopyToClipboard, DivActionCopyToClipboardContent, DivActionCopyToClipboardProps, DivActionFocusElement, DivActionFocusElementProps, DivActionSetVariable, DivActionSetVariableProps, DivActionTarget, DivActionTyped, DivAlignmentHorizontal, DivAlignmentVertical, DivAnimationInterpolator, DivAnimationName, DivAppearanceSetTransition, DivAppearanceSetTransitionProps, DivAppearanceTransition, DivBackground, DivBlendMode, DivBlur, DivBlurProps, DivChangeBoundsTransition, DivChangeBoundsTransitionProps, DivChangeSetTransition, DivChangeSetTransitionProps, DivChangeTransition, DivCircleShape, DivCircleShapeProps, DivContainer, DivContainerLayoutMode, DivContainerOrientation, DivContainerProps, DivContainerProps0, DivContainerProps1, DivContainerPropsBase, DivContentAlignmentHorizontal, DivContentAlignmentVertical, DivCount, DivCurrencyInputMask, DivCurrencyInputMaskProps, DivCustom, DivCustomProps, DivDefaultIndicatorItemPlacement, DivDefaultIndicatorItemPlacementProps, DivDrawable, 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, DivInputKeyboardType, DivInputMask, DivInputProps, DivInputValidator, DivInputValidatorExpression, DivInputValidatorExpressionProps, DivInputValidatorRegex, DivInputValidatorRegexProps, DivLineStyle, DivLinearGradient, DivLinearGradientProps, DivMatchParentSize, DivMatchParentSizeProps, DivNeighbourPageSize, DivNeighbourPageSizeProps, DivNinePatchBackground, DivNinePatchBackgroundProps, DivPageSize, DivPageSizeProps, DivPageTransformation, DivPageTransformationOverlap, DivPageTransformationOverlapProps, DivPageTransformationSlide, DivPageTransformationSlideProps, DivPager, DivPagerLayoutMode, DivPagerOrientation, DivPagerProps, DivPatchMode, DivPercentageSize, DivPercentageSizeProps, DivPhoneInputMask, DivPhoneInputMaskProps, DivPivot, DivPivotFixed, DivPivotFixedProps, DivPivotPercentage, DivPivotPercentageProps, DivRadialGradient, DivRadialGradientCenter, DivRadialGradientFixedCenter, DivRadialGradientFixedCenterProps, DivRadialGradientProps, DivRadialGradientRadius, DivRadialGradientRelativeCenter, DivRadialGradientRelativeCenterProps, DivRadialGradientRelativeRadius, DivRadialGradientRelativeRadiusProps, DivRadialGradientRelativeRadiusValue, DivRoundedRectangleShape, DivRoundedRectangleShapeProps, DivScaleTransition, DivScaleTransitionProps, DivSelect, DivSelectProps, DivSeparator, DivSeparatorProps, DivShape, DivShapeDrawable, DivShapeDrawableProps, DivSize, DivSizeUnit, DivSlideTransition, DivSlideTransitionEdge, DivSlideTransitionProps, DivSlider, DivSliderProps, DivSolidBackground, DivSolidBackgroundProps, DivState, DivStateProps, DivStretchIndicatorItemPlacement, DivStretchIndicatorItemPlacementProps, DivTabs, DivTabsProps, DivText, DivTextGradient, DivTextProps, DivTextRangeBackground, DivTextTruncate, DivTooltipPosition, DivTransitionSelector, DivTransitionTrigger, DivTriggerMode, DivTypedValue, DivVariable, DivVideo, DivVideoProps, DivVideoScale, DivVideoSource, DivVideoSourceProps, DivVideoSourceResolution, DivVideoSourceResolutionProps, DivVisibility, DivWrapContentSize, DivWrapContentSizeProps, Exact, IDivAbsoluteEdgeInsets, IDivAccessibility, IDivAction, IDivActionMenuItem, IDivAnimation, IDivAspect, IDivBase, IDivBorder, IDivCollectionItemBuilder, IDivCollectionItemBuilderPrototype, IDivContainerSeparator, IDivCornersRadius, IDivData, IDivDataState, IDivDimension, IDivDisappearAction, IDivDownloadCallbacks, IDivEdgeInsets, IDivExtension, IDivFixedLengthInputMaskPatternElement, IDivFocus, IDivFocusNextFocusIds, IDivInputMaskBase, IDivInputNativeInterface, IDivInputValidatorBase, IDivPatch, IDivPatchChange, IDivPoint, IDivSelectOption, IDivSeparatorDelimiterStyle, IDivShadow, IDivSightAction, IDivSliderRange, IDivSliderTextStyle, IDivStateState, IDivStroke, IDivTabsItem, IDivTabsTabTitleDelimiter, IDivTabsTabTitleStyle, IDivTextEllipsis, IDivTextImage, IDivTextRange, IDivTextRangeBorder, IDivTimer, IDivTooltip, IDivTransform, IDivTransitionBase, IDivTrigger, IDivVisibilityAction, IDivWrapContentSizeConstraintSize, ITemplates, IntBoolean, IntegerValue, IntegerValueProps, IntegerVariable, IntegerVariableProps, NonEmptyArray, NumberValue, NumberValueProps, NumberVariable, NumberVariableProps, SafeDivExpression, 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 };
9201
+ export { ArrayValue, ArrayValueProps, ArrayVariable, ArrayVariableProps, BooleanValue, BooleanValueProps, BooleanVariable, BooleanVariableProps, ColorValue, ColorValueProps, ColorVariable, ColorVariableProps, ContentText, ContentTextProps, ContentUrl, ContentUrlProps, DelimiterStyleOrientation, DictValue, DictValueProps, DictVariable, DictVariableProps, Div, DivAccessibilityMode, DivAccessibilityType, DivActionArrayInsertValue, DivActionArrayInsertValueProps, DivActionArrayRemoveValue, DivActionArrayRemoveValueProps, DivActionArraySetValue, DivActionArraySetValueProps, DivActionClearFocus, DivActionClearFocusProps, DivActionCopyToClipboard, DivActionCopyToClipboardContent, DivActionCopyToClipboardProps, DivActionDictSetValue, DivActionDictSetValueProps, DivActionFocusElement, DivActionFocusElementProps, DivActionSetVariable, DivActionSetVariableProps, DivActionTarget, DivActionTyped, DivAlignmentHorizontal, DivAlignmentVertical, DivAnimationInterpolator, DivAnimationName, DivAppearanceSetTransition, DivAppearanceSetTransitionProps, DivAppearanceTransition, DivBackground, DivBlendMode, DivBlur, DivBlurProps, DivChangeBoundsTransition, DivChangeBoundsTransitionProps, DivChangeSetTransition, DivChangeSetTransitionProps, DivChangeTransition, DivCircleShape, DivCircleShapeProps, DivContainer, DivContainerLayoutMode, DivContainerOrientation, DivContainerProps, DivContainerProps0, DivContainerProps1, DivContainerPropsBase, DivContentAlignmentHorizontal, DivContentAlignmentVertical, DivCount, DivCurrencyInputMask, DivCurrencyInputMaskProps, DivCustom, DivCustomProps, DivDefaultIndicatorItemPlacement, DivDefaultIndicatorItemPlacementProps, DivDrawable, 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, DivInputKeyboardType, DivInputMask, DivInputProps, DivInputValidator, DivInputValidatorExpression, DivInputValidatorExpressionProps, DivInputValidatorRegex, DivInputValidatorRegexProps, DivLineStyle, DivLinearGradient, DivLinearGradientProps, DivMatchParentSize, DivMatchParentSizeProps, DivNeighbourPageSize, DivNeighbourPageSizeProps, DivNinePatchBackground, DivNinePatchBackgroundProps, DivPageSize, DivPageSizeProps, DivPageTransformation, DivPageTransformationOverlap, DivPageTransformationOverlapProps, DivPageTransformationSlide, DivPageTransformationSlideProps, DivPager, DivPagerLayoutMode, DivPagerOrientation, DivPagerProps, DivPatchMode, DivPercentageSize, DivPercentageSizeProps, DivPhoneInputMask, DivPhoneInputMaskProps, DivPivot, DivPivotFixed, DivPivotFixedProps, DivPivotPercentage, DivPivotPercentageProps, DivRadialGradient, DivRadialGradientCenter, DivRadialGradientFixedCenter, DivRadialGradientFixedCenterProps, DivRadialGradientProps, DivRadialGradientRadius, DivRadialGradientRelativeCenter, DivRadialGradientRelativeCenterProps, DivRadialGradientRelativeRadius, DivRadialGradientRelativeRadiusProps, DivRadialGradientRelativeRadiusValue, DivRoundedRectangleShape, DivRoundedRectangleShapeProps, DivScaleTransition, DivScaleTransitionProps, DivSelect, DivSelectProps, DivSeparator, DivSeparatorProps, DivShape, DivShapeDrawable, DivShapeDrawableProps, DivSize, DivSizeUnit, DivSlideTransition, DivSlideTransitionEdge, DivSlideTransitionProps, DivSlider, DivSliderProps, DivSolidBackground, DivSolidBackgroundProps, DivState, DivStateProps, DivStretchIndicatorItemPlacement, DivStretchIndicatorItemPlacementProps, DivTabs, DivTabsProps, DivText, DivTextGradient, DivTextProps, DivTextRangeBackground, DivTextTruncate, DivTooltipPosition, DivTransitionSelector, DivTransitionTrigger, DivTriggerMode, DivTypedValue, DivVariable, DivVideo, DivVideoProps, DivVideoScale, DivVideoSource, DivVideoSourceProps, DivVideoSourceResolution, DivVideoSourceResolutionProps, DivVisibility, DivWrapContentSize, DivWrapContentSizeProps, Exact, IDivAbsoluteEdgeInsets, IDivAccessibility, IDivAction, IDivActionMenuItem, IDivAnimation, IDivAspect, IDivBase, IDivBorder, IDivCollectionItemBuilder, IDivCollectionItemBuilderPrototype, IDivContainerSeparator, IDivCornersRadius, IDivData, IDivDataState, IDivDimension, IDivDisappearAction, IDivDownloadCallbacks, IDivEdgeInsets, IDivExtension, IDivFixedLengthInputMaskPatternElement, IDivFocus, IDivFocusNextFocusIds, IDivInputMaskBase, IDivInputNativeInterface, IDivInputValidatorBase, IDivPatch, IDivPatchChange, IDivPoint, IDivSelectOption, IDivSeparatorDelimiterStyle, IDivShadow, IDivSightAction, IDivSliderRange, IDivSliderTextStyle, IDivStateState, IDivStroke, IDivTabsItem, IDivTabsTabTitleDelimiter, IDivTabsTabTitleStyle, IDivTextEllipsis, IDivTextImage, IDivTextRange, IDivTextRangeBorder, IDivTimer, IDivTooltip, IDivTransform, IDivTransitionBase, IDivTrigger, IDivVisibilityAction, IDivWrapContentSizeConstraintSize, ITemplates, IntBoolean, IntegerValue, IntegerValueProps, IntegerVariable, IntegerVariableProps, NonEmptyArray, NumberValue, NumberValueProps, NumberVariable, NumberVariableProps, SafeDivExpression, 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 };