@divkitframework/jsonbuilder 30.16.0 → 30.18.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.
@@ -378,6 +378,98 @@ interface IDivActionMenuItem {
378
378
  text: Type<string | DivExpression>;
379
379
  }
380
380
 
381
+ /**
382
+ * Starts specified animator
383
+ */
384
+ declare class DivActionAnimatorStart<T extends DivActionAnimatorStartProps = DivActionAnimatorStartProps> {
385
+ readonly _props?: Exact<DivActionAnimatorStartProps, T>;
386
+ readonly type = "animator_start";
387
+ /**
388
+ * The identifier of the animator being started.
389
+ */
390
+ animator_id: Type<string | DivExpression>;
391
+ /**
392
+ * Animation direction. This property sets whether an animation should play forward, backward, or
393
+ * alternate back and forth between playing the sequence forward and backward.
394
+ */
395
+ direction?: Type<DivAnimationDirection | DivExpression>;
396
+ /**
397
+ * Animation duration in milliseconds.
398
+ */
399
+ duration?: Type<number | DivExpression>;
400
+ /**
401
+ * Overrides value that will be set at the end of animation.
402
+ */
403
+ end_value?: Type<DivTypedValue>;
404
+ /**
405
+ * Interpolation function.
406
+ */
407
+ interpolator?: Type<DivAnimationInterpolator | DivExpression>;
408
+ /**
409
+ * The number of times the animation will repeat before it finishes. `0` enables infinite
410
+ * repeats.
411
+ */
412
+ repeat_count?: Type<number | DivExpression>;
413
+ /**
414
+ * Animation start delay in milliseconds.
415
+ */
416
+ start_delay?: Type<number | DivExpression>;
417
+ /**
418
+ * Overrides value that will be set at the start of animation.
419
+ */
420
+ start_value?: Type<DivTypedValue>;
421
+ constructor(props: Exact<DivActionAnimatorStartProps, T>);
422
+ }
423
+ interface DivActionAnimatorStartProps {
424
+ /**
425
+ * The identifier of the animator being started.
426
+ */
427
+ animator_id: Type<string | DivExpression>;
428
+ /**
429
+ * Animation direction. This property sets whether an animation should play forward, backward, or
430
+ * alternate back and forth between playing the sequence forward and backward.
431
+ */
432
+ direction?: Type<DivAnimationDirection | DivExpression>;
433
+ /**
434
+ * Animation duration in milliseconds.
435
+ */
436
+ duration?: Type<number | DivExpression>;
437
+ /**
438
+ * Overrides value that will be set at the end of animation.
439
+ */
440
+ end_value?: Type<DivTypedValue>;
441
+ /**
442
+ * Interpolation function.
443
+ */
444
+ interpolator?: Type<DivAnimationInterpolator | DivExpression>;
445
+ /**
446
+ * The number of times the animation will repeat before it finishes. `0` enables infinite
447
+ * repeats.
448
+ */
449
+ repeat_count?: Type<number | DivExpression>;
450
+ /**
451
+ * Animation start delay in milliseconds.
452
+ */
453
+ start_delay?: Type<number | DivExpression>;
454
+ /**
455
+ * Overrides value that will be set at the start of animation.
456
+ */
457
+ start_value?: Type<DivTypedValue>;
458
+ }
459
+
460
+ /**
461
+ * Stops specified animator
462
+ */
463
+ declare class DivActionAnimatorStop<T extends DivActionAnimatorStopProps = DivActionAnimatorStopProps> {
464
+ readonly _props?: Exact<DivActionAnimatorStopProps, T>;
465
+ readonly type = "animator_stop";
466
+ animator_id: Type<string | DivExpression>;
467
+ constructor(props: Exact<DivActionAnimatorStopProps, T>);
468
+ }
469
+ interface DivActionAnimatorStopProps {
470
+ animator_id: Type<string | DivExpression>;
471
+ }
472
+
381
473
  /**
382
474
  * Adds a value to the array
383
475
  */
@@ -483,6 +575,64 @@ interface DivActionFocusElementProps {
483
575
  element_id: Type<string | DivExpression>;
484
576
  }
485
577
 
578
+ /**
579
+ * Hides tooltip.
580
+ */
581
+ declare class DivActionHideTooltip<T extends DivActionHideTooltipProps = DivActionHideTooltipProps> {
582
+ readonly _props?: Exact<DivActionHideTooltipProps, T>;
583
+ readonly type = "hide_tooltip";
584
+ /**
585
+ * Tooltip identifier.
586
+ */
587
+ id: Type<string | DivExpression>;
588
+ constructor(props: Exact<DivActionHideTooltipProps, T>);
589
+ }
590
+ interface DivActionHideTooltipProps {
591
+ /**
592
+ * Tooltip identifier.
593
+ */
594
+ id: Type<string | DivExpression>;
595
+ }
596
+
597
+ /**
598
+ * Switches the appearance of content in `div-state`.
599
+ */
600
+ declare class DivActionSetState<T extends DivActionSetStateProps = DivActionSetStateProps> {
601
+ readonly _props?: Exact<DivActionSetStateProps, T>;
602
+ readonly type = "set_state";
603
+ /**
604
+ * The path of the state inside `state` that needs to be activated. Set in
605
+ * `div_data_state_id/id/state_id` format. Can be hierarchical:
606
+ * `div_data_state_id/id_1/state_id_1/../id_n/state_id_n`. Consists of: `div_data_state_id` -
607
+ * `state_id` numeric value of the `state` object in data;`id` - `id` value of the `state`
608
+ * object;`state_id` - `state_id` value of the state object in `state`.
609
+ */
610
+ state_id: Type<string | DivExpression>;
611
+ /**
612
+ * Indicates a state change:`true`: The change is temporary and when the element is re-created,
613
+ * the state will change back to the initial one (default value).`false` - The state change is
614
+ * permanent.
615
+ */
616
+ temporary?: Type<boolean | DivExpression>;
617
+ constructor(props: Exact<DivActionSetStateProps, T>);
618
+ }
619
+ interface DivActionSetStateProps {
620
+ /**
621
+ * The path of the state inside `state` that needs to be activated. Set in
622
+ * `div_data_state_id/id/state_id` format. Can be hierarchical:
623
+ * `div_data_state_id/id_1/state_id_1/../id_n/state_id_n`. Consists of: `div_data_state_id` -
624
+ * `state_id` numeric value of the `state` object in data;`id` - `id` value of the `state`
625
+ * object;`state_id` - `state_id` value of the state object in `state`.
626
+ */
627
+ state_id: Type<string | DivExpression>;
628
+ /**
629
+ * Indicates a state change:`true`: The change is temporary and when the element is re-created,
630
+ * the state will change back to the initial one (default value).`false` - The state change is
631
+ * permanent.
632
+ */
633
+ temporary?: Type<boolean | DivExpression>;
634
+ }
635
+
486
636
  /**
487
637
  * Assigns a value to the variable
488
638
  */
@@ -498,7 +648,98 @@ interface DivActionSetVariableProps {
498
648
  variable_name: Type<string | DivExpression>;
499
649
  }
500
650
 
501
- declare type DivActionTyped = DivActionArrayInsertValue | DivActionArrayRemoveValue | DivActionArraySetValue | DivActionClearFocus | DivActionCopyToClipboard | DivActionDictSetValue | DivActionFocusElement | DivActionSetVariable;
651
+ /**
652
+ * Shows tooltip.
653
+ */
654
+ declare class DivActionShowTooltip<T extends DivActionShowTooltipProps = DivActionShowTooltipProps> {
655
+ readonly _props?: Exact<DivActionShowTooltipProps, T>;
656
+ readonly type = "show_tooltip";
657
+ /**
658
+ * Tooltip identifier.
659
+ */
660
+ id: Type<string | DivExpression>;
661
+ /**
662
+ * Defines whether tooltip can be shown again after being closed.
663
+ */
664
+ multiple?: Type<boolean | DivExpression>;
665
+ constructor(props: Exact<DivActionShowTooltipProps, T>);
666
+ }
667
+ interface DivActionShowTooltipProps {
668
+ /**
669
+ * Tooltip identifier.
670
+ */
671
+ id: Type<string | DivExpression>;
672
+ /**
673
+ * Defines whether tooltip can be shown again after being closed.
674
+ */
675
+ multiple?: Type<boolean | DivExpression>;
676
+ }
677
+
678
+ /**
679
+ * Controls the timer.
680
+ */
681
+ declare class DivActionTimer<T extends DivActionTimerProps = DivActionTimerProps> {
682
+ readonly _props?: Exact<DivActionTimerProps, T>;
683
+ readonly type = "timer";
684
+ /**
685
+ * Defines timer action:`start`- starts the timer when stopped, does onStart action;`stop`- stops
686
+ * timer, resets the time, does onEnd action;`pause`- pause timer, preserves current
687
+ * time;`resume`- starts timer from paused state, restores saved time;`cancel`- stops timer,
688
+ * resets its state, does onInterrupt action;`reset`- cancels timer and starts it again.
689
+ */
690
+ action: Type<DivActionTimerAction | DivExpression>;
691
+ /**
692
+ * Timer identifier.
693
+ */
694
+ id: Type<string | DivExpression>;
695
+ constructor(props: Exact<DivActionTimerProps, T>);
696
+ }
697
+ interface DivActionTimerProps {
698
+ /**
699
+ * Defines timer action:`start`- starts the timer when stopped, does onStart action;`stop`- stops
700
+ * timer, resets the time, does onEnd action;`pause`- pause timer, preserves current
701
+ * time;`resume`- starts timer from paused state, restores saved time;`cancel`- stops timer,
702
+ * resets its state, does onInterrupt action;`reset`- cancels timer and starts it again.
703
+ */
704
+ action: Type<DivActionTimerAction | DivExpression>;
705
+ /**
706
+ * Timer identifier.
707
+ */
708
+ id: Type<string | DivExpression>;
709
+ }
710
+ declare type DivActionTimerAction = 'start' | 'stop' | 'pause' | 'resume' | 'cancel' | 'reset';
711
+
712
+ declare type DivActionTyped = DivActionAnimatorStart | DivActionAnimatorStop | DivActionArrayInsertValue | DivActionArrayRemoveValue | DivActionArraySetValue | DivActionClearFocus | DivActionCopyToClipboard | DivActionDictSetValue | DivActionFocusElement | DivActionHideTooltip | DivActionSetState | DivActionSetVariable | DivActionShowTooltip | DivActionTimer | DivActionVideo;
713
+
714
+ /**
715
+ * Controls given video.
716
+ */
717
+ declare class DivActionVideo<T extends DivActionVideoProps = DivActionVideoProps> {
718
+ readonly _props?: Exact<DivActionVideoProps, T>;
719
+ readonly type = "video";
720
+ /**
721
+ * Defines video action:`start` - play if it is ready or plans to play when video becomes
722
+ * ready;`pause` - pauses video playback.
723
+ */
724
+ action: Type<DivActionVideoAction | DivExpression>;
725
+ /**
726
+ * Video identifier.
727
+ */
728
+ id: Type<string | DivExpression>;
729
+ constructor(props: Exact<DivActionVideoProps, T>);
730
+ }
731
+ interface DivActionVideoProps {
732
+ /**
733
+ * Defines video action:`start` - play if it is ready or plans to play when video becomes
734
+ * ready;`pause` - pauses video playback.
735
+ */
736
+ action: Type<DivActionVideoAction | DivExpression>;
737
+ /**
738
+ * Video identifier.
739
+ */
740
+ id: Type<string | DivExpression>;
741
+ }
742
+ declare type DivActionVideoAction = 'start' | 'pause';
502
743
 
503
744
  declare type DivAlignmentHorizontal = 'left' | 'center' | 'right' | 'start' | 'end';
504
745
 
@@ -547,8 +788,54 @@ interface IDivAnimation {
547
788
  }
548
789
  declare type DivAnimationName = 'fade' | 'translate' | 'scale' | 'native' | 'set' | 'no_animation';
549
790
 
791
+ declare type DivAnimationDirection = 'normal' | 'reverse' | 'alternate' | 'alternate_reverse';
792
+
550
793
  declare type DivAnimationInterpolator = 'linear' | 'ease' | 'ease_in' | 'ease_out' | 'ease_in_out' | 'spring';
551
794
 
795
+ declare type DivAnimator = DivColorAnimator | DivNumberAnimator;
796
+
797
+ interface IDivAnimatorBase {
798
+ /**
799
+ * Actions performed when the animator is cancelled. For example, when an action with
800
+ * `animator_stop` type is received
801
+ */
802
+ cancel_actions?: Type<NonEmptyArray<IDivAction>>;
803
+ /**
804
+ * Animation direction. This property sets whether an animation should play forward, backward, or
805
+ * alternate back and forth between playing the sequence forward and backward.
806
+ */
807
+ direction?: Type<DivAnimationDirection | DivExpression>;
808
+ /**
809
+ * Animation duration in milliseconds.
810
+ */
811
+ duration: Type<number | DivExpression>;
812
+ /**
813
+ * Actions performed when the animator completes animation.
814
+ */
815
+ end_actions?: Type<NonEmptyArray<IDivAction>>;
816
+ /**
817
+ * Animator identificator
818
+ */
819
+ id: Type<string>;
820
+ /**
821
+ * Interpolation function.
822
+ */
823
+ interpolator?: Type<DivAnimationInterpolator | DivExpression>;
824
+ /**
825
+ * The number of times the animation will repeat before it finishes. `0` enables infinite
826
+ * repeats.
827
+ */
828
+ repeat_count?: Type<number | DivExpression>;
829
+ /**
830
+ * Animation start delay in milliseconds.
831
+ */
832
+ start_delay?: Type<number | DivExpression>;
833
+ /**
834
+ * Name of the variable being animated.
835
+ */
836
+ variable_name: Type<string>;
837
+ }
838
+
552
839
  /**
553
840
  * A set of animations to be applied simultaneously.
554
841
  */
@@ -600,6 +887,10 @@ interface IDivBase {
600
887
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
601
888
  */
602
889
  alpha?: Type<number | DivExpression>;
890
+ /**
891
+ * Declaration of animators that can be used to change the value of variables over time.
892
+ */
893
+ animators?: Type<NonEmptyArray<DivAnimator>>;
603
894
  /**
604
895
  * Element background. It can contain multiple layers.
605
896
  */
@@ -625,6 +916,10 @@ interface IDivBase {
625
916
  * Parameters when focusing on an element or losing focus.
626
917
  */
627
918
  focus?: Type<IDivFocus>;
919
+ /**
920
+ * Custom functions.
921
+ */
922
+ functions?: Type<NonEmptyArray<IDivFunction>>;
628
923
  /**
629
924
  * Element height. For Android: if there is text in this or in a child element, specify height in
630
925
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -892,6 +1187,113 @@ interface IDivCollectionItemBuilderPrototype {
892
1187
  selector?: Type<IntBoolean | DivExpression>;
893
1188
  }
894
1189
 
1190
+ /**
1191
+ * Color animator.
1192
+ */
1193
+ declare class DivColorAnimator<T extends DivColorAnimatorProps = DivColorAnimatorProps> {
1194
+ readonly _props?: Exact<DivColorAnimatorProps, T>;
1195
+ readonly type = "color_animator";
1196
+ /**
1197
+ * Actions performed when the animator is cancelled. For example, when an action with
1198
+ * `animator_stop` type is received
1199
+ */
1200
+ cancel_actions?: Type<NonEmptyArray<IDivAction>>;
1201
+ /**
1202
+ * Animation direction. This property sets whether an animation should play forward, backward, or
1203
+ * alternate back and forth between playing the sequence forward and backward.
1204
+ */
1205
+ direction?: Type<DivAnimationDirection | DivExpression>;
1206
+ /**
1207
+ * Animation duration in milliseconds.
1208
+ */
1209
+ duration: Type<number | DivExpression>;
1210
+ /**
1211
+ * Actions performed when the animator completes animation.
1212
+ */
1213
+ end_actions?: Type<NonEmptyArray<IDivAction>>;
1214
+ /**
1215
+ * Value that will be set at the end of animation.
1216
+ */
1217
+ end_value: Type<string | DivExpression>;
1218
+ /**
1219
+ * Animator identificator
1220
+ */
1221
+ id: Type<string>;
1222
+ /**
1223
+ * Interpolation function.
1224
+ */
1225
+ interpolator?: Type<DivAnimationInterpolator | DivExpression>;
1226
+ /**
1227
+ * The number of times the animation will repeat before it finishes. `0` enables infinite
1228
+ * repeats.
1229
+ */
1230
+ repeat_count?: Type<number | DivExpression>;
1231
+ /**
1232
+ * Animation start delay in milliseconds.
1233
+ */
1234
+ start_delay?: Type<number | DivExpression>;
1235
+ /**
1236
+ * Value that will be set at the start of animation. Can be omitted, in which case current value
1237
+ * of the variable will be used.
1238
+ */
1239
+ start_value?: Type<string | DivExpression>;
1240
+ /**
1241
+ * Name of the variable being animated.
1242
+ */
1243
+ variable_name: Type<string>;
1244
+ constructor(props: Exact<DivColorAnimatorProps, T>);
1245
+ }
1246
+ interface DivColorAnimatorProps {
1247
+ /**
1248
+ * Actions performed when the animator is cancelled. For example, when an action with
1249
+ * `animator_stop` type is received
1250
+ */
1251
+ cancel_actions?: Type<NonEmptyArray<IDivAction>>;
1252
+ /**
1253
+ * Animation direction. This property sets whether an animation should play forward, backward, or
1254
+ * alternate back and forth between playing the sequence forward and backward.
1255
+ */
1256
+ direction?: Type<DivAnimationDirection | DivExpression>;
1257
+ /**
1258
+ * Animation duration in milliseconds.
1259
+ */
1260
+ duration: Type<number | DivExpression>;
1261
+ /**
1262
+ * Actions performed when the animator completes animation.
1263
+ */
1264
+ end_actions?: Type<NonEmptyArray<IDivAction>>;
1265
+ /**
1266
+ * Value that will be set at the end of animation.
1267
+ */
1268
+ end_value: Type<string | DivExpression>;
1269
+ /**
1270
+ * Animator identificator
1271
+ */
1272
+ id: Type<string>;
1273
+ /**
1274
+ * Interpolation function.
1275
+ */
1276
+ interpolator?: Type<DivAnimationInterpolator | DivExpression>;
1277
+ /**
1278
+ * The number of times the animation will repeat before it finishes. `0` enables infinite
1279
+ * repeats.
1280
+ */
1281
+ repeat_count?: Type<number | DivExpression>;
1282
+ /**
1283
+ * Animation start delay in milliseconds.
1284
+ */
1285
+ start_delay?: Type<number | DivExpression>;
1286
+ /**
1287
+ * Value that will be set at the start of animation. Can be omitted, in which case current value
1288
+ * of the variable will be used.
1289
+ */
1290
+ start_value?: Type<string | DivExpression>;
1291
+ /**
1292
+ * Name of the variable being animated.
1293
+ */
1294
+ variable_name: Type<string>;
1295
+ }
1296
+
895
1297
  /**
896
1298
  * Container. It contains other elements and is responsible for their location. It is used to
897
1299
  * arrange elements vertically, horizontally, and with an overlay in a certain order, simulating
@@ -929,6 +1331,10 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
929
1331
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
930
1332
  */
931
1333
  alpha?: Type<number | DivExpression>;
1334
+ /**
1335
+ * Declaration of animators that can be used to change the value of variables over time.
1336
+ */
1337
+ animators?: Type<NonEmptyArray<DivAnimator>>;
932
1338
  /**
933
1339
  * Fixed aspect ratio of the container. The element's height is calculated based on the width,
934
1340
  * ignoring the `height` parameter's value.
@@ -981,6 +1387,10 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
981
1387
  * Parameters when focusing on an element or losing focus.
982
1388
  */
983
1389
  focus?: Type<IDivFocus>;
1390
+ /**
1391
+ * Custom functions.
1392
+ */
1393
+ functions?: Type<NonEmptyArray<IDivFunction>>;
984
1394
  /**
985
1395
  * Element height. For Android: if there is text in this or in a child element, specify height in
986
1396
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -1142,6 +1552,10 @@ interface DivContainerPropsBase {
1142
1552
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
1143
1553
  */
1144
1554
  alpha?: Type<number | DivExpression>;
1555
+ /**
1556
+ * Declaration of animators that can be used to change the value of variables over time.
1557
+ */
1558
+ animators?: Type<NonEmptyArray<DivAnimator>>;
1145
1559
  /**
1146
1560
  * Fixed aspect ratio of the container. The element's height is calculated based on the width,
1147
1561
  * ignoring the `height` parameter's value.
@@ -1194,6 +1608,10 @@ interface DivContainerPropsBase {
1194
1608
  * Parameters when focusing on an element or losing focus.
1195
1609
  */
1196
1610
  focus?: Type<IDivFocus>;
1611
+ /**
1612
+ * Custom functions.
1613
+ */
1614
+ functions?: Type<NonEmptyArray<IDivFunction>>;
1197
1615
  /**
1198
1616
  * Element height. For Android: if there is text in this or in a child element, specify height in
1199
1617
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -1444,6 +1862,10 @@ declare class DivCustom<T extends DivCustomProps = DivCustomProps> {
1444
1862
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
1445
1863
  */
1446
1864
  alpha?: Type<number | DivExpression>;
1865
+ /**
1866
+ * Declaration of animators that can be used to change the value of variables over time.
1867
+ */
1868
+ animators?: Type<NonEmptyArray<DivAnimator>>;
1447
1869
  /**
1448
1870
  * Element background. It can contain multiple layers.
1449
1871
  */
@@ -1477,6 +1899,10 @@ declare class DivCustom<T extends DivCustomProps = DivCustomProps> {
1477
1899
  * Parameters when focusing on an element or losing focus.
1478
1900
  */
1479
1901
  focus?: Type<IDivFocus>;
1902
+ /**
1903
+ * Custom functions.
1904
+ */
1905
+ functions?: Type<NonEmptyArray<IDivFunction>>;
1480
1906
  /**
1481
1907
  * Element height. For Android: if there is text in this or in a child element, specify height in
1482
1908
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -1592,6 +2018,10 @@ interface DivCustomProps {
1592
2018
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
1593
2019
  */
1594
2020
  alpha?: Type<number | DivExpression>;
2021
+ /**
2022
+ * Declaration of animators that can be used to change the value of variables over time.
2023
+ */
2024
+ animators?: Type<NonEmptyArray<DivAnimator>>;
1595
2025
  /**
1596
2026
  * Element background. It can contain multiple layers.
1597
2027
  */
@@ -1625,6 +2055,10 @@ interface DivCustomProps {
1625
2055
  * Parameters when focusing on an element or losing focus.
1626
2056
  */
1627
2057
  focus?: Type<IDivFocus>;
2058
+ /**
2059
+ * Custom functions.
2060
+ */
2061
+ functions?: Type<NonEmptyArray<IDivFunction>>;
1628
2062
  /**
1629
2063
  * Element height. For Android: if there is text in this or in a child element, specify height in
1630
2064
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -1848,6 +2282,8 @@ interface IDivEdgeInsets {
1848
2282
  unit?: Type<DivSizeUnit | DivExpression>;
1849
2283
  }
1850
2284
 
2285
+ declare type DivEvaluableType = 'string' | 'integer' | 'number' | 'boolean' | 'datetime' | 'color' | 'url' | 'dict' | 'array';
2286
+
1851
2287
  /**
1852
2288
  * Extension that affects an element.
1853
2289
  */
@@ -2069,6 +2505,43 @@ interface IDivFocusNextFocusIds {
2069
2505
 
2070
2506
  declare type DivFontWeight = 'light' | 'medium' | 'regular' | 'bold';
2071
2507
 
2508
+ /**
2509
+ * Custom function.
2510
+ */
2511
+ interface IDivFunction {
2512
+ /**
2513
+ * Function argument.
2514
+ */
2515
+ arguments: Type<NonEmptyArray<IDivFunctionArgument>>;
2516
+ /**
2517
+ * Function body. Evaluated as an expression with the passed arguments. Does not capture external
2518
+ * variables
2519
+ */
2520
+ body: Type<string>;
2521
+ /**
2522
+ * Function name.
2523
+ */
2524
+ name: Type<string>;
2525
+ /**
2526
+ * Return type.
2527
+ */
2528
+ return_type: Type<DivEvaluableType>;
2529
+ }
2530
+
2531
+ /**
2532
+ * Function argument.
2533
+ */
2534
+ interface IDivFunctionArgument {
2535
+ /**
2536
+ * Function argument name.
2537
+ */
2538
+ name: Type<string>;
2539
+ /**
2540
+ * Function argument type.
2541
+ */
2542
+ type: Type<DivEvaluableType>;
2543
+ }
2544
+
2072
2545
  /**
2073
2546
  * Gallery. It contains a horizontal or vertical set of cards that can be scrolled.
2074
2547
  */
@@ -2091,6 +2564,10 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
2091
2564
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
2092
2565
  */
2093
2566
  alpha?: Type<number | DivExpression>;
2567
+ /**
2568
+ * Declaration of animators that can be used to change the value of variables over time.
2569
+ */
2570
+ animators?: Type<NonEmptyArray<DivAnimator>>;
2094
2571
  /**
2095
2572
  * Element background. It can contain multiple layers.
2096
2573
  */
@@ -2138,6 +2615,10 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
2138
2615
  * Parameters when focusing on an element or losing focus.
2139
2616
  */
2140
2617
  focus?: Type<IDivFocus>;
2618
+ /**
2619
+ * Custom functions.
2620
+ */
2621
+ functions?: Type<NonEmptyArray<IDivFunction>>;
2141
2622
  /**
2142
2623
  * Element height. For Android: if there is text in this or in a child element, specify height in
2143
2624
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -2290,6 +2771,10 @@ interface DivGalleryProps {
2290
2771
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
2291
2772
  */
2292
2773
  alpha?: Type<number | DivExpression>;
2774
+ /**
2775
+ * Declaration of animators that can be used to change the value of variables over time.
2776
+ */
2777
+ animators?: Type<NonEmptyArray<DivAnimator>>;
2293
2778
  /**
2294
2779
  * Element background. It can contain multiple layers.
2295
2780
  */
@@ -2337,6 +2822,10 @@ interface DivGalleryProps {
2337
2822
  * Parameters when focusing on an element or losing focus.
2338
2823
  */
2339
2824
  focus?: Type<IDivFocus>;
2825
+ /**
2826
+ * Custom functions.
2827
+ */
2828
+ functions?: Type<NonEmptyArray<IDivFunction>>;
2340
2829
  /**
2341
2830
  * Element height. For Android: if there is text in this or in a child element, specify height in
2342
2831
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -2511,6 +3000,10 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
2511
3000
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
2512
3001
  */
2513
3002
  alpha?: Type<number | DivExpression>;
3003
+ /**
3004
+ * Declaration of animators that can be used to change the value of variables over time.
3005
+ */
3006
+ animators?: Type<NonEmptyArray<DivAnimator>>;
2514
3007
  /**
2515
3008
  * Fixed aspect ratio. The element's height is calculated based on the width, ignoring the
2516
3009
  * `height` value.
@@ -2553,6 +3046,10 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
2553
3046
  * Parameters when focusing on an element or losing focus.
2554
3047
  */
2555
3048
  focus?: Type<IDivFocus>;
3049
+ /**
3050
+ * Custom functions.
3051
+ */
3052
+ functions?: Type<NonEmptyArray<IDivFunction>>;
2556
3053
  /**
2557
3054
  * Direct URL to a GIF image.
2558
3055
  */
@@ -2704,6 +3201,10 @@ interface DivGifImageProps {
2704
3201
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
2705
3202
  */
2706
3203
  alpha?: Type<number | DivExpression>;
3204
+ /**
3205
+ * Declaration of animators that can be used to change the value of variables over time.
3206
+ */
3207
+ animators?: Type<NonEmptyArray<DivAnimator>>;
2707
3208
  /**
2708
3209
  * Fixed aspect ratio. The element's height is calculated based on the width, ignoring the
2709
3210
  * `height` value.
@@ -2746,6 +3247,10 @@ interface DivGifImageProps {
2746
3247
  * Parameters when focusing on an element or losing focus.
2747
3248
  */
2748
3249
  focus?: Type<IDivFocus>;
3250
+ /**
3251
+ * Custom functions.
3252
+ */
3253
+ functions?: Type<NonEmptyArray<IDivFunction>>;
2749
3254
  /**
2750
3255
  * Direct URL to a GIF image.
2751
3256
  */
@@ -2902,6 +3407,10 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
2902
3407
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
2903
3408
  */
2904
3409
  alpha?: Type<number | DivExpression>;
3410
+ /**
3411
+ * Declaration of animators that can be used to change the value of variables over time.
3412
+ */
3413
+ animators?: Type<NonEmptyArray<DivAnimator>>;
2905
3414
  /**
2906
3415
  * Element background. It can contain multiple layers.
2907
3416
  */
@@ -2943,6 +3452,10 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
2943
3452
  * Parameters when focusing on an element or losing focus.
2944
3453
  */
2945
3454
  focus?: Type<IDivFocus>;
3455
+ /**
3456
+ * Custom functions.
3457
+ */
3458
+ functions?: Type<NonEmptyArray<IDivFunction>>;
2946
3459
  /**
2947
3460
  * Element height. For Android: if there is text in this or in a child element, specify height in
2948
3461
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -3076,6 +3589,10 @@ interface DivGridProps {
3076
3589
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
3077
3590
  */
3078
3591
  alpha?: Type<number | DivExpression>;
3592
+ /**
3593
+ * Declaration of animators that can be used to change the value of variables over time.
3594
+ */
3595
+ animators?: Type<NonEmptyArray<DivAnimator>>;
3079
3596
  /**
3080
3597
  * Element background. It can contain multiple layers.
3081
3598
  */
@@ -3117,6 +3634,10 @@ interface DivGridProps {
3117
3634
  * Parameters when focusing on an element or losing focus.
3118
3635
  */
3119
3636
  focus?: Type<IDivFocus>;
3637
+ /**
3638
+ * Custom functions.
3639
+ */
3640
+ functions?: Type<NonEmptyArray<IDivFunction>>;
3120
3641
  /**
3121
3642
  * Element height. For Android: if there is text in this or in a child element, specify height in
3122
3643
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -3255,6 +3776,10 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
3255
3776
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
3256
3777
  */
3257
3778
  alpha?: Type<number | DivExpression>;
3779
+ /**
3780
+ * Declaration of animators that can be used to change the value of variables over time.
3781
+ */
3782
+ animators?: Type<NonEmptyArray<DivAnimator>>;
3258
3783
  /**
3259
3784
  * Transparency animation when loading an image.
3260
3785
  */
@@ -3305,6 +3830,10 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
3305
3830
  * Parameters when focusing on an element or losing focus.
3306
3831
  */
3307
3832
  focus?: Type<IDivFocus>;
3833
+ /**
3834
+ * Custom functions.
3835
+ */
3836
+ functions?: Type<NonEmptyArray<IDivFunction>>;
3308
3837
  /**
3309
3838
  * Element height. For Android: if there is text in this or in a child element, specify height in
3310
3839
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -3470,6 +3999,10 @@ interface DivImageProps {
3470
3999
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
3471
4000
  */
3472
4001
  alpha?: Type<number | DivExpression>;
4002
+ /**
4003
+ * Declaration of animators that can be used to change the value of variables over time.
4004
+ */
4005
+ animators?: Type<NonEmptyArray<DivAnimator>>;
3473
4006
  /**
3474
4007
  * Transparency animation when loading an image.
3475
4008
  */
@@ -3520,6 +4053,10 @@ interface DivImageProps {
3520
4053
  * Parameters when focusing on an element or losing focus.
3521
4054
  */
3522
4055
  focus?: Type<IDivFocus>;
4056
+ /**
4057
+ * Custom functions.
4058
+ */
4059
+ functions?: Type<NonEmptyArray<IDivFunction>>;
3523
4060
  /**
3524
4061
  * Element height. For Android: if there is text in this or in a child element, specify height in
3525
4062
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -3766,6 +4303,10 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
3766
4303
  * Animation of switching between indicators.
3767
4304
  */
3768
4305
  animation?: Type<DivIndicatorAnimation | DivExpression>;
4306
+ /**
4307
+ * Declaration of animators that can be used to change the value of variables over time.
4308
+ */
4309
+ animators?: Type<NonEmptyArray<DivAnimator>>;
3769
4310
  /**
3770
4311
  * Element background. It can contain multiple layers.
3771
4312
  */
@@ -3791,6 +4332,10 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
3791
4332
  * Parameters when focusing on an element or losing focus.
3792
4333
  */
3793
4334
  focus?: Type<IDivFocus>;
4335
+ /**
4336
+ * Custom functions.
4337
+ */
4338
+ functions?: Type<NonEmptyArray<IDivFunction>>;
3794
4339
  /**
3795
4340
  * Element height. For Android: if there is text in this or in a child element, specify height in
3796
4341
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -3964,6 +4509,10 @@ interface DivIndicatorProps {
3964
4509
  * Animation of switching between indicators.
3965
4510
  */
3966
4511
  animation?: Type<DivIndicatorAnimation | DivExpression>;
4512
+ /**
4513
+ * Declaration of animators that can be used to change the value of variables over time.
4514
+ */
4515
+ animators?: Type<NonEmptyArray<DivAnimator>>;
3967
4516
  /**
3968
4517
  * Element background. It can contain multiple layers.
3969
4518
  */
@@ -3989,6 +4538,10 @@ interface DivIndicatorProps {
3989
4538
  * Parameters when focusing on an element or losing focus.
3990
4539
  */
3991
4540
  focus?: Type<IDivFocus>;
4541
+ /**
4542
+ * Custom functions.
4543
+ */
4544
+ functions?: Type<NonEmptyArray<IDivFunction>>;
3992
4545
  /**
3993
4546
  * Element height. For Android: if there is text in this or in a child element, specify height in
3994
4547
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -4161,6 +4714,10 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
4161
4714
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
4162
4715
  */
4163
4716
  alpha?: Type<number | DivExpression>;
4717
+ /**
4718
+ * Declaration of animators that can be used to change the value of variables over time.
4719
+ */
4720
+ animators?: Type<NonEmptyArray<DivAnimator>>;
4164
4721
  /**
4165
4722
  * Automatic text capitalization type.
4166
4723
  */
@@ -4217,6 +4774,10 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
4217
4774
  * Style. Numeric value.
4218
4775
  */
4219
4776
  font_weight_value?: Type<number | DivExpression>;
4777
+ /**
4778
+ * Custom functions.
4779
+ */
4780
+ functions?: Type<NonEmptyArray<IDivFunction>>;
4220
4781
  /**
4221
4782
  * Element height. For Android: if there is text in this or in a child element, specify height in
4222
4783
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -4397,6 +4958,10 @@ interface DivInputProps {
4397
4958
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
4398
4959
  */
4399
4960
  alpha?: Type<number | DivExpression>;
4961
+ /**
4962
+ * Declaration of animators that can be used to change the value of variables over time.
4963
+ */
4964
+ animators?: Type<NonEmptyArray<DivAnimator>>;
4400
4965
  /**
4401
4966
  * Automatic text capitalization type.
4402
4967
  */
@@ -4453,6 +5018,10 @@ interface DivInputProps {
4453
5018
  * Style. Numeric value.
4454
5019
  */
4455
5020
  font_weight_value?: Type<number | DivExpression>;
5021
+ /**
5022
+ * Custom functions.
5023
+ */
5024
+ functions?: Type<NonEmptyArray<IDivFunction>>;
4456
5025
  /**
4457
5026
  * Element height. For Android: if there is text in this or in a child element, specify height in
4458
5027
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -4893,6 +5462,113 @@ interface DivNinePatchBackgroundProps {
4893
5462
  insets: Type<IDivAbsoluteEdgeInsets>;
4894
5463
  }
4895
5464
 
5465
+ /**
5466
+ * Number animator.
5467
+ */
5468
+ declare class DivNumberAnimator<T extends DivNumberAnimatorProps = DivNumberAnimatorProps> {
5469
+ readonly _props?: Exact<DivNumberAnimatorProps, T>;
5470
+ readonly type = "number_animator";
5471
+ /**
5472
+ * Actions performed when the animator is cancelled. For example, when an action with
5473
+ * `animator_stop` type is received
5474
+ */
5475
+ cancel_actions?: Type<NonEmptyArray<IDivAction>>;
5476
+ /**
5477
+ * Animation direction. This property sets whether an animation should play forward, backward, or
5478
+ * alternate back and forth between playing the sequence forward and backward.
5479
+ */
5480
+ direction?: Type<DivAnimationDirection | DivExpression>;
5481
+ /**
5482
+ * Animation duration in milliseconds.
5483
+ */
5484
+ duration: Type<number | DivExpression>;
5485
+ /**
5486
+ * Actions performed when the animator completes animation.
5487
+ */
5488
+ end_actions?: Type<NonEmptyArray<IDivAction>>;
5489
+ /**
5490
+ * Value that will be set at the end of animation.
5491
+ */
5492
+ end_value: Type<number | DivExpression>;
5493
+ /**
5494
+ * Animator identificator
5495
+ */
5496
+ id: Type<string>;
5497
+ /**
5498
+ * Interpolation function.
5499
+ */
5500
+ interpolator?: Type<DivAnimationInterpolator | DivExpression>;
5501
+ /**
5502
+ * The number of times the animation will repeat before it finishes. `0` enables infinite
5503
+ * repeats.
5504
+ */
5505
+ repeat_count?: Type<number | DivExpression>;
5506
+ /**
5507
+ * Animation start delay in milliseconds.
5508
+ */
5509
+ start_delay?: Type<number | DivExpression>;
5510
+ /**
5511
+ * Value that will be set at the start of animation. Can be omitted, in which case current value
5512
+ * of the variable will be used.
5513
+ */
5514
+ start_value?: Type<number | DivExpression>;
5515
+ /**
5516
+ * Name of the variable being animated.
5517
+ */
5518
+ variable_name: Type<string>;
5519
+ constructor(props: Exact<DivNumberAnimatorProps, T>);
5520
+ }
5521
+ interface DivNumberAnimatorProps {
5522
+ /**
5523
+ * Actions performed when the animator is cancelled. For example, when an action with
5524
+ * `animator_stop` type is received
5525
+ */
5526
+ cancel_actions?: Type<NonEmptyArray<IDivAction>>;
5527
+ /**
5528
+ * Animation direction. This property sets whether an animation should play forward, backward, or
5529
+ * alternate back and forth between playing the sequence forward and backward.
5530
+ */
5531
+ direction?: Type<DivAnimationDirection | DivExpression>;
5532
+ /**
5533
+ * Animation duration in milliseconds.
5534
+ */
5535
+ duration: Type<number | DivExpression>;
5536
+ /**
5537
+ * Actions performed when the animator completes animation.
5538
+ */
5539
+ end_actions?: Type<NonEmptyArray<IDivAction>>;
5540
+ /**
5541
+ * Value that will be set at the end of animation.
5542
+ */
5543
+ end_value: Type<number | DivExpression>;
5544
+ /**
5545
+ * Animator identificator
5546
+ */
5547
+ id: Type<string>;
5548
+ /**
5549
+ * Interpolation function.
5550
+ */
5551
+ interpolator?: Type<DivAnimationInterpolator | DivExpression>;
5552
+ /**
5553
+ * The number of times the animation will repeat before it finishes. `0` enables infinite
5554
+ * repeats.
5555
+ */
5556
+ repeat_count?: Type<number | DivExpression>;
5557
+ /**
5558
+ * Animation start delay in milliseconds.
5559
+ */
5560
+ start_delay?: Type<number | DivExpression>;
5561
+ /**
5562
+ * Value that will be set at the start of animation. Can be omitted, in which case current value
5563
+ * of the variable will be used.
5564
+ */
5565
+ start_value?: Type<number | DivExpression>;
5566
+ /**
5567
+ * Name of the variable being animated.
5568
+ */
5569
+ variable_name: Type<string>;
5570
+ }
5571
+
4896
5572
  /**
4897
5573
  * Page width (%).
4898
5574
  */
@@ -5091,6 +5767,10 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
5091
5767
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
5092
5768
  */
5093
5769
  alpha?: Type<number | DivExpression>;
5770
+ /**
5771
+ * Declaration of animators that can be used to change the value of variables over time.
5772
+ */
5773
+ animators?: Type<NonEmptyArray<DivAnimator>>;
5094
5774
  /**
5095
5775
  * Element background. It can contain multiple layers.
5096
5776
  */
@@ -5120,6 +5800,10 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
5120
5800
  * Parameters when focusing on an element or losing focus.
5121
5801
  */
5122
5802
  focus?: Type<IDivFocus>;
5803
+ /**
5804
+ * Custom functions.
5805
+ */
5806
+ functions?: Type<NonEmptyArray<IDivFunction>>;
5123
5807
  /**
5124
5808
  * Element height. For Android: if there is text in this or in a child element, specify height in
5125
5809
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -5274,6 +5958,10 @@ interface DivPagerProps {
5274
5958
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
5275
5959
  */
5276
5960
  alpha?: Type<number | DivExpression>;
5961
+ /**
5962
+ * Declaration of animators that can be used to change the value of variables over time.
5963
+ */
5964
+ animators?: Type<NonEmptyArray<DivAnimator>>;
5277
5965
  /**
5278
5966
  * Element background. It can contain multiple layers.
5279
5967
  */
@@ -5303,6 +5991,10 @@ interface DivPagerProps {
5303
5991
  * Parameters when focusing on an element or losing focus.
5304
5992
  */
5305
5993
  focus?: Type<IDivFocus>;
5994
+ /**
5995
+ * Custom functions.
5996
+ */
5997
+ functions?: Type<NonEmptyArray<IDivFunction>>;
5306
5998
  /**
5307
5999
  * Element height. For Android: if there is text in this or in a child element, specify height in
5308
6000
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -5829,6 +6521,10 @@ declare class DivSelect<T extends DivSelectProps = DivSelectProps> {
5829
6521
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
5830
6522
  */
5831
6523
  alpha?: Type<number | DivExpression>;
6524
+ /**
6525
+ * Declaration of animators that can be used to change the value of variables over time.
6526
+ */
6527
+ animators?: Type<NonEmptyArray<DivAnimator>>;
5832
6528
  /**
5833
6529
  * Element background. It can contain multiple layers.
5834
6530
  */
@@ -5877,6 +6573,10 @@ declare class DivSelect<T extends DivSelectProps = DivSelectProps> {
5877
6573
  * Style. Numeric value.
5878
6574
  */
5879
6575
  font_weight_value?: Type<number | DivExpression>;
6576
+ /**
6577
+ * Custom functions.
6578
+ */
6579
+ functions?: Type<NonEmptyArray<IDivFunction>>;
5880
6580
  /**
5881
6581
  * Element height. For Android: if there is text in this or in a child element, specify height in
5882
6582
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -6013,6 +6713,10 @@ interface DivSelectProps {
6013
6713
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
6014
6714
  */
6015
6715
  alpha?: Type<number | DivExpression>;
6716
+ /**
6717
+ * Declaration of animators that can be used to change the value of variables over time.
6718
+ */
6719
+ animators?: Type<NonEmptyArray<DivAnimator>>;
6016
6720
  /**
6017
6721
  * Element background. It can contain multiple layers.
6018
6722
  */
@@ -6061,6 +6765,10 @@ interface DivSelectProps {
6061
6765
  * Style. Numeric value.
6062
6766
  */
6063
6767
  font_weight_value?: Type<number | DivExpression>;
6768
+ /**
6769
+ * Custom functions.
6770
+ */
6771
+ functions?: Type<NonEmptyArray<IDivFunction>>;
6064
6772
  /**
6065
6773
  * Element height. For Android: if there is text in this or in a child element, specify height in
6066
6774
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -6228,6 +6936,10 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
6228
6936
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
6229
6937
  */
6230
6938
  alpha?: Type<number | DivExpression>;
6939
+ /**
6940
+ * Declaration of animators that can be used to change the value of variables over time.
6941
+ */
6942
+ animators?: Type<NonEmptyArray<DivAnimator>>;
6231
6943
  /**
6232
6944
  * Element background. It can contain multiple layers.
6233
6945
  */
@@ -6261,6 +6973,10 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
6261
6973
  * Parameters when focusing on an element or losing focus.
6262
6974
  */
6263
6975
  focus?: Type<IDivFocus>;
6976
+ /**
6977
+ * Custom functions.
6978
+ */
6979
+ functions?: Type<NonEmptyArray<IDivFunction>>;
6264
6980
  /**
6265
6981
  * Element height. For Android: if there is text in this or in a child element, specify height in
6266
6982
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -6390,6 +7106,10 @@ interface DivSeparatorProps {
6390
7106
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
6391
7107
  */
6392
7108
  alpha?: Type<number | DivExpression>;
7109
+ /**
7110
+ * Declaration of animators that can be used to change the value of variables over time.
7111
+ */
7112
+ animators?: Type<NonEmptyArray<DivAnimator>>;
6393
7113
  /**
6394
7114
  * Element background. It can contain multiple layers.
6395
7115
  */
@@ -6423,6 +7143,10 @@ interface DivSeparatorProps {
6423
7143
  * Parameters when focusing on an element or losing focus.
6424
7144
  */
6425
7145
  focus?: Type<IDivFocus>;
7146
+ /**
7147
+ * Custom functions.
7148
+ */
7149
+ functions?: Type<NonEmptyArray<IDivFunction>>;
6426
7150
  /**
6427
7151
  * Element height. For Android: if there is text in this or in a child element, specify height in
6428
7152
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -6722,6 +7446,10 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
6722
7446
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
6723
7447
  */
6724
7448
  alpha?: Type<number | DivExpression>;
7449
+ /**
7450
+ * Declaration of animators that can be used to change the value of variables over time.
7451
+ */
7452
+ animators?: Type<NonEmptyArray<DivAnimator>>;
6725
7453
  /**
6726
7454
  * Element background. It can contain multiple layers.
6727
7455
  */
@@ -6747,6 +7475,10 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
6747
7475
  * Parameters when focusing on an element or losing focus.
6748
7476
  */
6749
7477
  focus?: Type<IDivFocus>;
7478
+ /**
7479
+ * Custom functions.
7480
+ */
7481
+ functions?: Type<NonEmptyArray<IDivFunction>>;
6750
7482
  /**
6751
7483
  * Element height. For Android: if there is text in this or in a child element, specify height in
6752
7484
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -6914,6 +7646,10 @@ interface DivSliderProps {
6914
7646
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
6915
7647
  */
6916
7648
  alpha?: Type<number | DivExpression>;
7649
+ /**
7650
+ * Declaration of animators that can be used to change the value of variables over time.
7651
+ */
7652
+ animators?: Type<NonEmptyArray<DivAnimator>>;
6917
7653
  /**
6918
7654
  * Element background. It can contain multiple layers.
6919
7655
  */
@@ -6939,6 +7675,10 @@ interface DivSliderProps {
6939
7675
  * Parameters when focusing on an element or losing focus.
6940
7676
  */
6941
7677
  focus?: Type<IDivFocus>;
7678
+ /**
7679
+ * Custom functions.
7680
+ */
7681
+ functions?: Type<NonEmptyArray<IDivFunction>>;
6942
7682
  /**
6943
7683
  * Element height. For Android: if there is text in this or in a child element, specify height in
6944
7684
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -7175,6 +7915,10 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
7175
7915
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
7176
7916
  */
7177
7917
  alpha?: Type<number | DivExpression>;
7918
+ /**
7919
+ * Declaration of animators that can be used to change the value of variables over time.
7920
+ */
7921
+ animators?: Type<NonEmptyArray<DivAnimator>>;
7178
7922
  /**
7179
7923
  * Element background. It can contain multiple layers.
7180
7924
  */
@@ -7211,6 +7955,10 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
7211
7955
  * Parameters when focusing on an element or losing focus.
7212
7956
  */
7213
7957
  focus?: Type<IDivFocus>;
7958
+ /**
7959
+ * Custom functions.
7960
+ */
7961
+ functions?: Type<NonEmptyArray<IDivFunction>>;
7214
7962
  /**
7215
7963
  * Element height. For Android: if there is text in this or in a child element, specify height in
7216
7964
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -7339,6 +8087,10 @@ interface DivStateProps {
7339
8087
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
7340
8088
  */
7341
8089
  alpha?: Type<number | DivExpression>;
8090
+ /**
8091
+ * Declaration of animators that can be used to change the value of variables over time.
8092
+ */
8093
+ animators?: Type<NonEmptyArray<DivAnimator>>;
7342
8094
  /**
7343
8095
  * Element background. It can contain multiple layers.
7344
8096
  */
@@ -7375,6 +8127,10 @@ interface DivStateProps {
7375
8127
  * Parameters when focusing on an element or losing focus.
7376
8128
  */
7377
8129
  focus?: Type<IDivFocus>;
8130
+ /**
8131
+ * Custom functions.
8132
+ */
8133
+ functions?: Type<NonEmptyArray<IDivFunction>>;
7378
8134
  /**
7379
8135
  * Element height. For Android: if there is text in this or in a child element, specify height in
7380
8136
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -7579,6 +8335,10 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
7579
8335
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
7580
8336
  */
7581
8337
  alpha?: Type<number | DivExpression>;
8338
+ /**
8339
+ * Declaration of animators that can be used to change the value of variables over time.
8340
+ */
8341
+ animators?: Type<NonEmptyArray<DivAnimator>>;
7582
8342
  /**
7583
8343
  * Element background. It can contain multiple layers.
7584
8344
  */
@@ -7608,6 +8368,10 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
7608
8368
  * Parameters when focusing on an element or losing focus.
7609
8369
  */
7610
8370
  focus?: Type<IDivFocus>;
8371
+ /**
8372
+ * Custom functions.
8373
+ */
8374
+ functions?: Type<NonEmptyArray<IDivFunction>>;
7611
8375
  /**
7612
8376
  * A separating line between tabs and contents.
7613
8377
  */
@@ -7767,6 +8531,10 @@ interface DivTabsProps {
7767
8531
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
7768
8532
  */
7769
8533
  alpha?: Type<number | DivExpression>;
8534
+ /**
8535
+ * Declaration of animators that can be used to change the value of variables over time.
8536
+ */
8537
+ animators?: Type<NonEmptyArray<DivAnimator>>;
7770
8538
  /**
7771
8539
  * Element background. It can contain multiple layers.
7772
8540
  */
@@ -7796,6 +8564,10 @@ interface DivTabsProps {
7796
8564
  * Parameters when focusing on an element or losing focus.
7797
8565
  */
7798
8566
  focus?: Type<IDivFocus>;
8567
+ /**
8568
+ * Custom functions.
8569
+ */
8570
+ functions?: Type<NonEmptyArray<IDivFunction>>;
7799
8571
  /**
7800
8572
  * A separating line between tabs and contents.
7801
8573
  */
@@ -8091,6 +8863,10 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
8091
8863
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
8092
8864
  */
8093
8865
  alpha?: Type<number | DivExpression>;
8866
+ /**
8867
+ * Declaration of animators that can be used to change the value of variables over time.
8868
+ */
8869
+ animators?: Type<NonEmptyArray<DivAnimator>>;
8094
8870
  /**
8095
8871
  * Automatic text cropping to fit the container size.
8096
8872
  */
@@ -8155,6 +8931,10 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
8155
8931
  * Style. Numeric value.
8156
8932
  */
8157
8933
  font_weight_value?: Type<number | DivExpression>;
8934
+ /**
8935
+ * Custom functions.
8936
+ */
8937
+ functions?: Type<NonEmptyArray<IDivFunction>>;
8158
8938
  /**
8159
8939
  * Element height. For Android: if there is text in this or in a child element, specify height in
8160
8940
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -8351,6 +9131,10 @@ interface DivTextProps {
8351
9131
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
8352
9132
  */
8353
9133
  alpha?: Type<number | DivExpression>;
9134
+ /**
9135
+ * Declaration of animators that can be used to change the value of variables over time.
9136
+ */
9137
+ animators?: Type<NonEmptyArray<DivAnimator>>;
8354
9138
  /**
8355
9139
  * Automatic text cropping to fit the container size.
8356
9140
  */
@@ -8415,6 +9199,10 @@ interface DivTextProps {
8415
9199
  * Style. Numeric value.
8416
9200
  */
8417
9201
  font_weight_value?: Type<number | DivExpression>;
9202
+ /**
9203
+ * Custom functions.
9204
+ */
9205
+ functions?: Type<NonEmptyArray<IDivFunction>>;
8418
9206
  /**
8419
9207
  * Element height. For Android: if there is text in this or in a child element, specify height in
8420
9208
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -8918,6 +9706,10 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
8918
9706
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
8919
9707
  */
8920
9708
  alpha?: Type<number | DivExpression>;
9709
+ /**
9710
+ * Declaration of animators that can be used to change the value of variables over time.
9711
+ */
9712
+ animators?: Type<NonEmptyArray<DivAnimator>>;
8921
9713
  /**
8922
9714
  * Fixed aspect ratio. The element's height is calculated based on the width, ignoring the
8923
9715
  * `height` value.
@@ -8969,6 +9761,10 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
8969
9761
  * Parameters when focusing on an element or losing focus.
8970
9762
  */
8971
9763
  focus?: Type<IDivFocus>;
9764
+ /**
9765
+ * Custom functions.
9766
+ */
9767
+ functions?: Type<NonEmptyArray<IDivFunction>>;
8972
9768
  /**
8973
9769
  * Element height. For Android: if there is text in this or in a child element, specify height in
8974
9770
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -9115,6 +9911,10 @@ interface DivVideoProps {
9115
9911
  * Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
9116
9912
  */
9117
9913
  alpha?: Type<number | DivExpression>;
9914
+ /**
9915
+ * Declaration of animators that can be used to change the value of variables over time.
9916
+ */
9917
+ animators?: Type<NonEmptyArray<DivAnimator>>;
9118
9918
  /**
9119
9919
  * Fixed aspect ratio. The element's height is calculated based on the width, ignoring the
9120
9920
  * `height` value.
@@ -9166,6 +9966,10 @@ interface DivVideoProps {
9166
9966
  * Parameters when focusing on an element or losing focus.
9167
9967
  */
9168
9968
  focus?: Type<IDivFocus>;
9969
+ /**
9970
+ * Custom functions.
9971
+ */
9972
+ functions?: Type<NonEmptyArray<IDivFunction>>;
9169
9973
  /**
9170
9974
  * Element height. For Android: if there is text in this or in a child element, specify height in
9171
9975
  * `sp` to scale the element together with the text. To learn more about units of size
@@ -9763,4 +10567,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
9763
10567
  };
9764
10568
  };
9765
10569
 
9766
- 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, 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, DivInputAutocapitalization, DivInputFilter, DivInputFilterExpression, DivInputFilterExpressionProps, DivInputFilterRegex, DivInputFilterRegexProps, 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, DivTextAlignmentVertical, 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, IDivLayoutProvider, 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, IImageAccessibility, 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 };
10570
+ 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, DivActionFocusElement, DivActionFocusElementProps, DivActionHideTooltip, DivActionHideTooltipProps, DivActionSetState, DivActionSetStateProps, DivActionSetVariable, DivActionSetVariableProps, DivActionShowTooltip, DivActionShowTooltipProps, DivActionTarget, DivActionTimer, DivActionTimerAction, DivActionTimerProps, DivActionTyped, DivActionVideo, DivActionVideoAction, DivActionVideoProps, DivAlignmentHorizontal, DivAlignmentVertical, DivAnimationDirection, DivAnimationInterpolator, DivAnimationName, DivAnimator, DivAppearanceSetTransition, DivAppearanceSetTransitionProps, DivAppearanceTransition, DivBackground, DivBlendMode, DivBlur, DivBlurProps, DivChangeBoundsTransition, DivChangeBoundsTransitionProps, DivChangeSetTransition, DivChangeSetTransitionProps, DivChangeTransition, DivCircleShape, DivCircleShapeProps, 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, DivInputFilter, DivInputFilterExpression, DivInputFilterExpressionProps, DivInputFilterRegex, DivInputFilterRegexProps, DivInputKeyboardType, DivInputMask, DivInputProps, DivInputValidator, DivInputValidatorExpression, DivInputValidatorExpressionProps, DivInputValidatorRegex, DivInputValidatorRegexProps, DivLineStyle, DivLinearGradient, DivLinearGradientProps, DivMatchParentSize, DivMatchParentSizeProps, DivNeighbourPageSize, DivNeighbourPageSizeProps, DivNinePatchBackground, DivNinePatchBackgroundProps, DivNumberAnimator, DivNumberAnimatorProps, 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, DivTextAlignmentVertical, 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, IDivAnimatorBase, IDivAspect, IDivBase, IDivBorder, IDivCollectionItemBuilder, IDivCollectionItemBuilderPrototype, IDivContainerSeparator, IDivCornersRadius, IDivData, IDivDataState, IDivDimension, IDivDisappearAction, IDivDownloadCallbacks, IDivEdgeInsets, IDivExtension, IDivFixedLengthInputMaskPatternElement, IDivFocus, IDivFocusNextFocusIds, IDivFunction, IDivFunctionArgument, IDivInputMaskBase, IDivInputNativeInterface, IDivInputValidatorBase, IDivLayoutProvider, IDivPatch, IDivPatchChange, IDivPoint, IDivSelectOption, IDivSeparatorDelimiterStyle, IDivShadow, IDivSightAction, IDivSliderRange, IDivSliderTextStyle, IDivStateState, IDivStroke, IDivTabsItem, IDivTabsTabTitleDelimiter, IDivTabsTabTitleStyle, IDivTextEllipsis, IDivTextImage, IDivTextRange, IDivTextRangeBorder, IDivTimer, IDivTooltip, IDivTransform, IDivTransitionBase, IDivTrigger, IDivVisibilityAction, IDivWrapContentSizeConstraintSize, IImageAccessibility, 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 };