@divkitframework/jsonbuilder 30.3.0 → 30.4.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
  */
@@ -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
  */
@@ -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
  */
@@ -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
  */
@@ -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
  */
@@ -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 };
@@ -125,6 +125,19 @@ class DivActionArrayRemoveValue {
125
125
  }
126
126
  }
127
127
 
128
+ // Generated code. Do not modify.
129
+ /**
130
+ * Sets value in the array
131
+ */
132
+ class DivActionArraySetValue {
133
+ constructor(props) {
134
+ this.type = 'array_set_value';
135
+ this.index = props.index;
136
+ this.value = props.value;
137
+ this.variable_name = props.variable_name;
138
+ }
139
+ }
140
+
128
141
  // Generated code. Do not modify.
129
142
  /**
130
143
  * Removes focus from focused item.
@@ -146,6 +159,19 @@ class DivActionCopyToClipboard {
146
159
  }
147
160
  }
148
161
 
162
+ // Generated code. Do not modify.
163
+ /**
164
+ * Sets value in dictionary for the given key. Removes key if the value is not defined.
165
+ */
166
+ class DivActionDictSetValue {
167
+ constructor(props) {
168
+ this.type = 'dict_set_value';
169
+ this.key = props.key;
170
+ this.value = props.value;
171
+ this.variable_name = props.variable_name;
172
+ }
173
+ }
174
+
149
175
  // Generated code. Do not modify.
150
176
  /**
151
177
  * Requests focus for an element. May require a user action on the web.
@@ -274,6 +300,7 @@ class DivContainer {
274
300
  this.transition_in = props === null || props === void 0 ? void 0 : props.transition_in;
275
301
  this.transition_out = props === null || props === void 0 ? void 0 : props.transition_out;
276
302
  this.transition_triggers = props === null || props === void 0 ? void 0 : props.transition_triggers;
303
+ this.variables = props === null || props === void 0 ? void 0 : props.variables;
277
304
  this.visibility = props === null || props === void 0 ? void 0 : props.visibility;
278
305
  this.visibility_action = props === null || props === void 0 ? void 0 : props.visibility_action;
279
306
  this.visibility_actions = props === null || props === void 0 ? void 0 : props.visibility_actions;
@@ -326,6 +353,7 @@ class DivCustom {
326
353
  this.transition_in = props.transition_in;
327
354
  this.transition_out = props.transition_out;
328
355
  this.transition_triggers = props.transition_triggers;
356
+ this.variables = props.variables;
329
357
  this.visibility = props.visibility;
330
358
  this.visibility_action = props.visibility_action;
331
359
  this.visibility_actions = props.visibility_actions;
@@ -445,6 +473,7 @@ class DivGallery {
445
473
  this.transition_in = props === null || props === void 0 ? void 0 : props.transition_in;
446
474
  this.transition_out = props === null || props === void 0 ? void 0 : props.transition_out;
447
475
  this.transition_triggers = props === null || props === void 0 ? void 0 : props.transition_triggers;
476
+ this.variables = props === null || props === void 0 ? void 0 : props.variables;
448
477
  this.visibility = props === null || props === void 0 ? void 0 : props.visibility;
449
478
  this.visibility_action = props === null || props === void 0 ? void 0 : props.visibility_action;
450
479
  this.visibility_actions = props === null || props === void 0 ? void 0 : props.visibility_actions;
@@ -494,6 +523,7 @@ class DivGifImage {
494
523
  this.transition_in = props.transition_in;
495
524
  this.transition_out = props.transition_out;
496
525
  this.transition_triggers = props.transition_triggers;
526
+ this.variables = props.variables;
497
527
  this.visibility = props.visibility;
498
528
  this.visibility_action = props.visibility_action;
499
529
  this.visibility_actions = props.visibility_actions;
@@ -539,6 +569,7 @@ class DivGrid {
539
569
  this.transition_in = props.transition_in;
540
570
  this.transition_out = props.transition_out;
541
571
  this.transition_triggers = props.transition_triggers;
572
+ this.variables = props.variables;
542
573
  this.visibility = props.visibility;
543
574
  this.visibility_action = props.visibility_action;
544
575
  this.visibility_actions = props.visibility_actions;
@@ -593,6 +624,7 @@ class DivImage {
593
624
  this.transition_in = props.transition_in;
594
625
  this.transition_out = props.transition_out;
595
626
  this.transition_triggers = props.transition_triggers;
627
+ this.variables = props.variables;
596
628
  this.visibility = props.visibility;
597
629
  this.visibility_action = props.visibility_action;
598
630
  this.visibility_actions = props.visibility_actions;
@@ -658,6 +690,7 @@ class DivIndicator {
658
690
  this.transition_in = props === null || props === void 0 ? void 0 : props.transition_in;
659
691
  this.transition_out = props === null || props === void 0 ? void 0 : props.transition_out;
660
692
  this.transition_triggers = props === null || props === void 0 ? void 0 : props.transition_triggers;
693
+ this.variables = props === null || props === void 0 ? void 0 : props.variables;
661
694
  this.visibility = props === null || props === void 0 ? void 0 : props.visibility;
662
695
  this.visibility_action = props === null || props === void 0 ? void 0 : props.visibility_action;
663
696
  this.visibility_actions = props === null || props === void 0 ? void 0 : props.visibility_actions;
@@ -725,6 +758,7 @@ class DivInput {
725
758
  this.transition_out = props.transition_out;
726
759
  this.transition_triggers = props.transition_triggers;
727
760
  this.validators = props.validators;
761
+ this.variables = props.variables;
728
762
  this.visibility = props.visibility;
729
763
  this.visibility_action = props.visibility_action;
730
764
  this.visibility_actions = props.visibility_actions;
@@ -887,6 +921,7 @@ class DivPager {
887
921
  this.transition_in = props.transition_in;
888
922
  this.transition_out = props.transition_out;
889
923
  this.transition_triggers = props.transition_triggers;
924
+ this.variables = props.variables;
890
925
  this.visibility = props.visibility;
891
926
  this.visibility_action = props.visibility_action;
892
927
  this.visibility_actions = props.visibility_actions;
@@ -1058,6 +1093,7 @@ class DivSelect {
1058
1093
  this.transition_out = props.transition_out;
1059
1094
  this.transition_triggers = props.transition_triggers;
1060
1095
  this.value_variable = props.value_variable;
1096
+ this.variables = props.variables;
1061
1097
  this.visibility = props.visibility;
1062
1098
  this.visibility_action = props.visibility_action;
1063
1099
  this.visibility_actions = props.visibility_actions;
@@ -1100,6 +1136,7 @@ class DivSeparator {
1100
1136
  this.transition_in = props === null || props === void 0 ? void 0 : props.transition_in;
1101
1137
  this.transition_out = props === null || props === void 0 ? void 0 : props.transition_out;
1102
1138
  this.transition_triggers = props === null || props === void 0 ? void 0 : props.transition_triggers;
1139
+ this.variables = props === null || props === void 0 ? void 0 : props.variables;
1103
1140
  this.visibility = props === null || props === void 0 ? void 0 : props.visibility;
1104
1141
  this.visibility_action = props === null || props === void 0 ? void 0 : props.visibility_action;
1105
1142
  this.visibility_actions = props === null || props === void 0 ? void 0 : props.visibility_actions;
@@ -1178,6 +1215,7 @@ class DivSlider {
1178
1215
  this.transition_in = props.transition_in;
1179
1216
  this.transition_out = props.transition_out;
1180
1217
  this.transition_triggers = props.transition_triggers;
1218
+ this.variables = props.variables;
1181
1219
  this.visibility = props.visibility;
1182
1220
  this.visibility_action = props.visibility_action;
1183
1221
  this.visibility_actions = props.visibility_actions;
@@ -1230,6 +1268,7 @@ class DivState {
1230
1268
  this.transition_in = props.transition_in;
1231
1269
  this.transition_out = props.transition_out;
1232
1270
  this.transition_triggers = props.transition_triggers;
1271
+ this.variables = props.variables;
1233
1272
  this.visibility = props.visibility;
1234
1273
  this.visibility_action = props.visibility_action;
1235
1274
  this.visibility_actions = props.visibility_actions;
@@ -1290,6 +1329,7 @@ class DivTabs {
1290
1329
  this.transition_in = props.transition_in;
1291
1330
  this.transition_out = props.transition_out;
1292
1331
  this.transition_triggers = props.transition_triggers;
1332
+ this.variables = props.variables;
1293
1333
  this.visibility = props.visibility;
1294
1334
  this.visibility_action = props.visibility_action;
1295
1335
  this.visibility_actions = props.visibility_actions;
@@ -1355,6 +1395,7 @@ class DivText {
1355
1395
  this.transition_triggers = props.transition_triggers;
1356
1396
  this.truncate = props.truncate;
1357
1397
  this.underline = props.underline;
1398
+ this.variables = props.variables;
1358
1399
  this.visibility = props.visibility;
1359
1400
  this.visibility_action = props.visibility_action;
1360
1401
  this.visibility_actions = props.visibility_actions;
@@ -1405,6 +1446,7 @@ class DivVideo {
1405
1446
  this.transition_in = props.transition_in;
1406
1447
  this.transition_out = props.transition_out;
1407
1448
  this.transition_triggers = props.transition_triggers;
1449
+ this.variables = props.variables;
1408
1450
  this.video_sources = props.video_sources;
1409
1451
  this.visibility = props.visibility;
1410
1452
  this.visibility_action = props.visibility_action;
@@ -1915,8 +1957,10 @@ exports.DictValue = DictValue;
1915
1957
  exports.DictVariable = DictVariable;
1916
1958
  exports.DivActionArrayInsertValue = DivActionArrayInsertValue;
1917
1959
  exports.DivActionArrayRemoveValue = DivActionArrayRemoveValue;
1960
+ exports.DivActionArraySetValue = DivActionArraySetValue;
1918
1961
  exports.DivActionClearFocus = DivActionClearFocus;
1919
1962
  exports.DivActionCopyToClipboard = DivActionCopyToClipboard;
1963
+ exports.DivActionDictSetValue = DivActionDictSetValue;
1920
1964
  exports.DivActionFocusElement = DivActionFocusElement;
1921
1965
  exports.DivActionSetVariable = DivActionSetVariable;
1922
1966
  exports.DivAppearanceSetTransition = DivAppearanceSetTransition;