@divkitframework/jsonbuilder 30.16.0 → 30.17.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.
- package/dist/es/jsonbuilder.js +124 -1
- package/dist/es/jsonbuilder.js.map +1 -1
- package/dist/jsonbuilder.d.ts +577 -2
- package/dist/jsonbuilder.js +130 -0
- package/dist/jsonbuilder.js.map +1 -1
- package/package.json +1 -1
package/dist/jsonbuilder.d.ts
CHANGED
|
@@ -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
|
*/
|
|
@@ -498,7 +590,98 @@ interface DivActionSetVariableProps {
|
|
|
498
590
|
variable_name: Type<string | DivExpression>;
|
|
499
591
|
}
|
|
500
592
|
|
|
501
|
-
|
|
593
|
+
/**
|
|
594
|
+
* Shows tooltip.
|
|
595
|
+
*/
|
|
596
|
+
declare class DivActionShowTooltip<T extends DivActionShowTooltipProps = DivActionShowTooltipProps> {
|
|
597
|
+
readonly _props?: Exact<DivActionShowTooltipProps, T>;
|
|
598
|
+
readonly type = "show_tooltip";
|
|
599
|
+
/**
|
|
600
|
+
* Tooltip identifier.
|
|
601
|
+
*/
|
|
602
|
+
id: Type<string | DivExpression>;
|
|
603
|
+
/**
|
|
604
|
+
* Defines whether tooltip can be shown again after being closed.
|
|
605
|
+
*/
|
|
606
|
+
multiple?: Type<boolean | DivExpression>;
|
|
607
|
+
constructor(props: Exact<DivActionShowTooltipProps, T>);
|
|
608
|
+
}
|
|
609
|
+
interface DivActionShowTooltipProps {
|
|
610
|
+
/**
|
|
611
|
+
* Tooltip identifier.
|
|
612
|
+
*/
|
|
613
|
+
id: Type<string | DivExpression>;
|
|
614
|
+
/**
|
|
615
|
+
* Defines whether tooltip can be shown again after being closed.
|
|
616
|
+
*/
|
|
617
|
+
multiple?: Type<boolean | DivExpression>;
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
/**
|
|
621
|
+
* Controls the timer.
|
|
622
|
+
*/
|
|
623
|
+
declare class DivActionTimer<T extends DivActionTimerProps = DivActionTimerProps> {
|
|
624
|
+
readonly _props?: Exact<DivActionTimerProps, T>;
|
|
625
|
+
readonly type = "timer";
|
|
626
|
+
/**
|
|
627
|
+
* Defines timer action:`start`- starts the timer when stopped, does onStart action;`stop`- stops
|
|
628
|
+
* timer, resets the time, does onEnd action;`pause`- pause timer, preserves current
|
|
629
|
+
* time;`resume`- starts timer from paused state, restores saved time;`cancel`- stops timer,
|
|
630
|
+
* resets its state, does onInterrupt action;`reset`- cancels timer and starts it again.
|
|
631
|
+
*/
|
|
632
|
+
action: Type<DivActionTimerAction | DivExpression>;
|
|
633
|
+
/**
|
|
634
|
+
* Timer identifier.
|
|
635
|
+
*/
|
|
636
|
+
id: Type<string | DivExpression>;
|
|
637
|
+
constructor(props: Exact<DivActionTimerProps, T>);
|
|
638
|
+
}
|
|
639
|
+
interface DivActionTimerProps {
|
|
640
|
+
/**
|
|
641
|
+
* Defines timer action:`start`- starts the timer when stopped, does onStart action;`stop`- stops
|
|
642
|
+
* timer, resets the time, does onEnd action;`pause`- pause timer, preserves current
|
|
643
|
+
* time;`resume`- starts timer from paused state, restores saved time;`cancel`- stops timer,
|
|
644
|
+
* resets its state, does onInterrupt action;`reset`- cancels timer and starts it again.
|
|
645
|
+
*/
|
|
646
|
+
action: Type<DivActionTimerAction | DivExpression>;
|
|
647
|
+
/**
|
|
648
|
+
* Timer identifier.
|
|
649
|
+
*/
|
|
650
|
+
id: Type<string | DivExpression>;
|
|
651
|
+
}
|
|
652
|
+
declare type DivActionTimerAction = 'start' | 'stop' | 'pause' | 'resume' | 'cancel' | 'reset';
|
|
653
|
+
|
|
654
|
+
declare type DivActionTyped = DivActionAnimatorStart | DivActionAnimatorStop | DivActionArrayInsertValue | DivActionArrayRemoveValue | DivActionArraySetValue | DivActionClearFocus | DivActionCopyToClipboard | DivActionDictSetValue | DivActionFocusElement | DivActionSetVariable | DivActionShowTooltip | DivActionTimer | DivActionVideo;
|
|
655
|
+
|
|
656
|
+
/**
|
|
657
|
+
* Controls given video.
|
|
658
|
+
*/
|
|
659
|
+
declare class DivActionVideo<T extends DivActionVideoProps = DivActionVideoProps> {
|
|
660
|
+
readonly _props?: Exact<DivActionVideoProps, T>;
|
|
661
|
+
readonly type = "video";
|
|
662
|
+
/**
|
|
663
|
+
* Defines video action:`start` - play if it is ready or plans to play when video becomes
|
|
664
|
+
* ready;`pause` - pauses video playback.
|
|
665
|
+
*/
|
|
666
|
+
action: Type<DivActionVideoAction | DivExpression>;
|
|
667
|
+
/**
|
|
668
|
+
* Video identifier.
|
|
669
|
+
*/
|
|
670
|
+
id: Type<string | DivExpression>;
|
|
671
|
+
constructor(props: Exact<DivActionVideoProps, T>);
|
|
672
|
+
}
|
|
673
|
+
interface DivActionVideoProps {
|
|
674
|
+
/**
|
|
675
|
+
* Defines video action:`start` - play if it is ready or plans to play when video becomes
|
|
676
|
+
* ready;`pause` - pauses video playback.
|
|
677
|
+
*/
|
|
678
|
+
action: Type<DivActionVideoAction | DivExpression>;
|
|
679
|
+
/**
|
|
680
|
+
* Video identifier.
|
|
681
|
+
*/
|
|
682
|
+
id: Type<string | DivExpression>;
|
|
683
|
+
}
|
|
684
|
+
declare type DivActionVideoAction = 'start' | 'pause';
|
|
502
685
|
|
|
503
686
|
declare type DivAlignmentHorizontal = 'left' | 'center' | 'right' | 'start' | 'end';
|
|
504
687
|
|
|
@@ -547,8 +730,54 @@ interface IDivAnimation {
|
|
|
547
730
|
}
|
|
548
731
|
declare type DivAnimationName = 'fade' | 'translate' | 'scale' | 'native' | 'set' | 'no_animation';
|
|
549
732
|
|
|
733
|
+
declare type DivAnimationDirection = 'normal' | 'reverse' | 'alternate' | 'alternate_reverse';
|
|
734
|
+
|
|
550
735
|
declare type DivAnimationInterpolator = 'linear' | 'ease' | 'ease_in' | 'ease_out' | 'ease_in_out' | 'spring';
|
|
551
736
|
|
|
737
|
+
declare type DivAnimator = DivColorAnimator | DivNumberAnimator;
|
|
738
|
+
|
|
739
|
+
interface IDivAnimatorBase {
|
|
740
|
+
/**
|
|
741
|
+
* Actions performed when the animator is cancelled. For example, when an action with
|
|
742
|
+
* `animator_stop` type is received
|
|
743
|
+
*/
|
|
744
|
+
cancel_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
745
|
+
/**
|
|
746
|
+
* Animation direction. This property sets whether an animation should play forward, backward, or
|
|
747
|
+
* alternate back and forth between playing the sequence forward and backward.
|
|
748
|
+
*/
|
|
749
|
+
direction?: Type<DivAnimationDirection | DivExpression>;
|
|
750
|
+
/**
|
|
751
|
+
* Animation duration in milliseconds.
|
|
752
|
+
*/
|
|
753
|
+
duration: Type<number | DivExpression>;
|
|
754
|
+
/**
|
|
755
|
+
* Actions performed when the animator completes animation.
|
|
756
|
+
*/
|
|
757
|
+
end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
758
|
+
/**
|
|
759
|
+
* Animator identificator
|
|
760
|
+
*/
|
|
761
|
+
id: Type<string>;
|
|
762
|
+
/**
|
|
763
|
+
* Interpolation function.
|
|
764
|
+
*/
|
|
765
|
+
interpolator?: Type<DivAnimationInterpolator | DivExpression>;
|
|
766
|
+
/**
|
|
767
|
+
* The number of times the animation will repeat before it finishes. `0` enables infinite
|
|
768
|
+
* repeats.
|
|
769
|
+
*/
|
|
770
|
+
repeat_count?: Type<number | DivExpression>;
|
|
771
|
+
/**
|
|
772
|
+
* Animation start delay in milliseconds.
|
|
773
|
+
*/
|
|
774
|
+
start_delay?: Type<number | DivExpression>;
|
|
775
|
+
/**
|
|
776
|
+
* Name of the variable being animated.
|
|
777
|
+
*/
|
|
778
|
+
variable_name: Type<string>;
|
|
779
|
+
}
|
|
780
|
+
|
|
552
781
|
/**
|
|
553
782
|
* A set of animations to be applied simultaneously.
|
|
554
783
|
*/
|
|
@@ -600,6 +829,10 @@ interface IDivBase {
|
|
|
600
829
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
601
830
|
*/
|
|
602
831
|
alpha?: Type<number | DivExpression>;
|
|
832
|
+
/**
|
|
833
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
834
|
+
*/
|
|
835
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
603
836
|
/**
|
|
604
837
|
* Element background. It can contain multiple layers.
|
|
605
838
|
*/
|
|
@@ -892,6 +1125,113 @@ interface IDivCollectionItemBuilderPrototype {
|
|
|
892
1125
|
selector?: Type<IntBoolean | DivExpression>;
|
|
893
1126
|
}
|
|
894
1127
|
|
|
1128
|
+
/**
|
|
1129
|
+
* Color animator.
|
|
1130
|
+
*/
|
|
1131
|
+
declare class DivColorAnimator<T extends DivColorAnimatorProps = DivColorAnimatorProps> {
|
|
1132
|
+
readonly _props?: Exact<DivColorAnimatorProps, T>;
|
|
1133
|
+
readonly type = "color_animator";
|
|
1134
|
+
/**
|
|
1135
|
+
* Actions performed when the animator is cancelled. For example, when an action with
|
|
1136
|
+
* `animator_stop` type is received
|
|
1137
|
+
*/
|
|
1138
|
+
cancel_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
1139
|
+
/**
|
|
1140
|
+
* Animation direction. This property sets whether an animation should play forward, backward, or
|
|
1141
|
+
* alternate back and forth between playing the sequence forward and backward.
|
|
1142
|
+
*/
|
|
1143
|
+
direction?: Type<DivAnimationDirection | DivExpression>;
|
|
1144
|
+
/**
|
|
1145
|
+
* Animation duration in milliseconds.
|
|
1146
|
+
*/
|
|
1147
|
+
duration: Type<number | DivExpression>;
|
|
1148
|
+
/**
|
|
1149
|
+
* Actions performed when the animator completes animation.
|
|
1150
|
+
*/
|
|
1151
|
+
end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
1152
|
+
/**
|
|
1153
|
+
* Value that will be set at the end of animation.
|
|
1154
|
+
*/
|
|
1155
|
+
end_value: Type<string | DivExpression>;
|
|
1156
|
+
/**
|
|
1157
|
+
* Animator identificator
|
|
1158
|
+
*/
|
|
1159
|
+
id: Type<string>;
|
|
1160
|
+
/**
|
|
1161
|
+
* Interpolation function.
|
|
1162
|
+
*/
|
|
1163
|
+
interpolator?: Type<DivAnimationInterpolator | DivExpression>;
|
|
1164
|
+
/**
|
|
1165
|
+
* The number of times the animation will repeat before it finishes. `0` enables infinite
|
|
1166
|
+
* repeats.
|
|
1167
|
+
*/
|
|
1168
|
+
repeat_count?: Type<number | DivExpression>;
|
|
1169
|
+
/**
|
|
1170
|
+
* Animation start delay in milliseconds.
|
|
1171
|
+
*/
|
|
1172
|
+
start_delay?: Type<number | DivExpression>;
|
|
1173
|
+
/**
|
|
1174
|
+
* Value that will be set at the start of animation. Can be omitted, in which case current value
|
|
1175
|
+
* of the variable will be used.
|
|
1176
|
+
*/
|
|
1177
|
+
start_value?: Type<string | DivExpression>;
|
|
1178
|
+
/**
|
|
1179
|
+
* Name of the variable being animated.
|
|
1180
|
+
*/
|
|
1181
|
+
variable_name: Type<string>;
|
|
1182
|
+
constructor(props: Exact<DivColorAnimatorProps, T>);
|
|
1183
|
+
}
|
|
1184
|
+
interface DivColorAnimatorProps {
|
|
1185
|
+
/**
|
|
1186
|
+
* Actions performed when the animator is cancelled. For example, when an action with
|
|
1187
|
+
* `animator_stop` type is received
|
|
1188
|
+
*/
|
|
1189
|
+
cancel_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
1190
|
+
/**
|
|
1191
|
+
* Animation direction. This property sets whether an animation should play forward, backward, or
|
|
1192
|
+
* alternate back and forth between playing the sequence forward and backward.
|
|
1193
|
+
*/
|
|
1194
|
+
direction?: Type<DivAnimationDirection | DivExpression>;
|
|
1195
|
+
/**
|
|
1196
|
+
* Animation duration in milliseconds.
|
|
1197
|
+
*/
|
|
1198
|
+
duration: Type<number | DivExpression>;
|
|
1199
|
+
/**
|
|
1200
|
+
* Actions performed when the animator completes animation.
|
|
1201
|
+
*/
|
|
1202
|
+
end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
1203
|
+
/**
|
|
1204
|
+
* Value that will be set at the end of animation.
|
|
1205
|
+
*/
|
|
1206
|
+
end_value: Type<string | DivExpression>;
|
|
1207
|
+
/**
|
|
1208
|
+
* Animator identificator
|
|
1209
|
+
*/
|
|
1210
|
+
id: Type<string>;
|
|
1211
|
+
/**
|
|
1212
|
+
* Interpolation function.
|
|
1213
|
+
*/
|
|
1214
|
+
interpolator?: Type<DivAnimationInterpolator | DivExpression>;
|
|
1215
|
+
/**
|
|
1216
|
+
* The number of times the animation will repeat before it finishes. `0` enables infinite
|
|
1217
|
+
* repeats.
|
|
1218
|
+
*/
|
|
1219
|
+
repeat_count?: Type<number | DivExpression>;
|
|
1220
|
+
/**
|
|
1221
|
+
* Animation start delay in milliseconds.
|
|
1222
|
+
*/
|
|
1223
|
+
start_delay?: Type<number | DivExpression>;
|
|
1224
|
+
/**
|
|
1225
|
+
* Value that will be set at the start of animation. Can be omitted, in which case current value
|
|
1226
|
+
* of the variable will be used.
|
|
1227
|
+
*/
|
|
1228
|
+
start_value?: Type<string | DivExpression>;
|
|
1229
|
+
/**
|
|
1230
|
+
* Name of the variable being animated.
|
|
1231
|
+
*/
|
|
1232
|
+
variable_name: Type<string>;
|
|
1233
|
+
}
|
|
1234
|
+
|
|
895
1235
|
/**
|
|
896
1236
|
* Container. It contains other elements and is responsible for their location. It is used to
|
|
897
1237
|
* arrange elements vertically, horizontally, and with an overlay in a certain order, simulating
|
|
@@ -929,6 +1269,10 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
|
|
|
929
1269
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
930
1270
|
*/
|
|
931
1271
|
alpha?: Type<number | DivExpression>;
|
|
1272
|
+
/**
|
|
1273
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
1274
|
+
*/
|
|
1275
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
932
1276
|
/**
|
|
933
1277
|
* Fixed aspect ratio of the container. The element's height is calculated based on the width,
|
|
934
1278
|
* ignoring the `height` parameter's value.
|
|
@@ -1142,6 +1486,10 @@ interface DivContainerPropsBase {
|
|
|
1142
1486
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
1143
1487
|
*/
|
|
1144
1488
|
alpha?: Type<number | DivExpression>;
|
|
1489
|
+
/**
|
|
1490
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
1491
|
+
*/
|
|
1492
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
1145
1493
|
/**
|
|
1146
1494
|
* Fixed aspect ratio of the container. The element's height is calculated based on the width,
|
|
1147
1495
|
* ignoring the `height` parameter's value.
|
|
@@ -1444,6 +1792,10 @@ declare class DivCustom<T extends DivCustomProps = DivCustomProps> {
|
|
|
1444
1792
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
1445
1793
|
*/
|
|
1446
1794
|
alpha?: Type<number | DivExpression>;
|
|
1795
|
+
/**
|
|
1796
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
1797
|
+
*/
|
|
1798
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
1447
1799
|
/**
|
|
1448
1800
|
* Element background. It can contain multiple layers.
|
|
1449
1801
|
*/
|
|
@@ -1592,6 +1944,10 @@ interface DivCustomProps {
|
|
|
1592
1944
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
1593
1945
|
*/
|
|
1594
1946
|
alpha?: Type<number | DivExpression>;
|
|
1947
|
+
/**
|
|
1948
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
1949
|
+
*/
|
|
1950
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
1595
1951
|
/**
|
|
1596
1952
|
* Element background. It can contain multiple layers.
|
|
1597
1953
|
*/
|
|
@@ -2091,6 +2447,10 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
|
|
|
2091
2447
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
2092
2448
|
*/
|
|
2093
2449
|
alpha?: Type<number | DivExpression>;
|
|
2450
|
+
/**
|
|
2451
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
2452
|
+
*/
|
|
2453
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
2094
2454
|
/**
|
|
2095
2455
|
* Element background. It can contain multiple layers.
|
|
2096
2456
|
*/
|
|
@@ -2290,6 +2650,10 @@ interface DivGalleryProps {
|
|
|
2290
2650
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
2291
2651
|
*/
|
|
2292
2652
|
alpha?: Type<number | DivExpression>;
|
|
2653
|
+
/**
|
|
2654
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
2655
|
+
*/
|
|
2656
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
2293
2657
|
/**
|
|
2294
2658
|
* Element background. It can contain multiple layers.
|
|
2295
2659
|
*/
|
|
@@ -2511,6 +2875,10 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
|
|
|
2511
2875
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
2512
2876
|
*/
|
|
2513
2877
|
alpha?: Type<number | DivExpression>;
|
|
2878
|
+
/**
|
|
2879
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
2880
|
+
*/
|
|
2881
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
2514
2882
|
/**
|
|
2515
2883
|
* Fixed aspect ratio. The element's height is calculated based on the width, ignoring the
|
|
2516
2884
|
* `height` value.
|
|
@@ -2704,6 +3072,10 @@ interface DivGifImageProps {
|
|
|
2704
3072
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
2705
3073
|
*/
|
|
2706
3074
|
alpha?: Type<number | DivExpression>;
|
|
3075
|
+
/**
|
|
3076
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
3077
|
+
*/
|
|
3078
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
2707
3079
|
/**
|
|
2708
3080
|
* Fixed aspect ratio. The element's height is calculated based on the width, ignoring the
|
|
2709
3081
|
* `height` value.
|
|
@@ -2902,6 +3274,10 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
|
|
|
2902
3274
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
2903
3275
|
*/
|
|
2904
3276
|
alpha?: Type<number | DivExpression>;
|
|
3277
|
+
/**
|
|
3278
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
3279
|
+
*/
|
|
3280
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
2905
3281
|
/**
|
|
2906
3282
|
* Element background. It can contain multiple layers.
|
|
2907
3283
|
*/
|
|
@@ -3076,6 +3452,10 @@ interface DivGridProps {
|
|
|
3076
3452
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
3077
3453
|
*/
|
|
3078
3454
|
alpha?: Type<number | DivExpression>;
|
|
3455
|
+
/**
|
|
3456
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
3457
|
+
*/
|
|
3458
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
3079
3459
|
/**
|
|
3080
3460
|
* Element background. It can contain multiple layers.
|
|
3081
3461
|
*/
|
|
@@ -3255,6 +3635,10 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
|
|
|
3255
3635
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
3256
3636
|
*/
|
|
3257
3637
|
alpha?: Type<number | DivExpression>;
|
|
3638
|
+
/**
|
|
3639
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
3640
|
+
*/
|
|
3641
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
3258
3642
|
/**
|
|
3259
3643
|
* Transparency animation when loading an image.
|
|
3260
3644
|
*/
|
|
@@ -3470,6 +3854,10 @@ interface DivImageProps {
|
|
|
3470
3854
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
3471
3855
|
*/
|
|
3472
3856
|
alpha?: Type<number | DivExpression>;
|
|
3857
|
+
/**
|
|
3858
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
3859
|
+
*/
|
|
3860
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
3473
3861
|
/**
|
|
3474
3862
|
* Transparency animation when loading an image.
|
|
3475
3863
|
*/
|
|
@@ -3766,6 +4154,10 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
|
|
|
3766
4154
|
* Animation of switching between indicators.
|
|
3767
4155
|
*/
|
|
3768
4156
|
animation?: Type<DivIndicatorAnimation | DivExpression>;
|
|
4157
|
+
/**
|
|
4158
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
4159
|
+
*/
|
|
4160
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
3769
4161
|
/**
|
|
3770
4162
|
* Element background. It can contain multiple layers.
|
|
3771
4163
|
*/
|
|
@@ -3964,6 +4356,10 @@ interface DivIndicatorProps {
|
|
|
3964
4356
|
* Animation of switching between indicators.
|
|
3965
4357
|
*/
|
|
3966
4358
|
animation?: Type<DivIndicatorAnimation | DivExpression>;
|
|
4359
|
+
/**
|
|
4360
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
4361
|
+
*/
|
|
4362
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
3967
4363
|
/**
|
|
3968
4364
|
* Element background. It can contain multiple layers.
|
|
3969
4365
|
*/
|
|
@@ -4161,6 +4557,10 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
|
|
|
4161
4557
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
4162
4558
|
*/
|
|
4163
4559
|
alpha?: Type<number | DivExpression>;
|
|
4560
|
+
/**
|
|
4561
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
4562
|
+
*/
|
|
4563
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
4164
4564
|
/**
|
|
4165
4565
|
* Automatic text capitalization type.
|
|
4166
4566
|
*/
|
|
@@ -4397,6 +4797,10 @@ interface DivInputProps {
|
|
|
4397
4797
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
4398
4798
|
*/
|
|
4399
4799
|
alpha?: Type<number | DivExpression>;
|
|
4800
|
+
/**
|
|
4801
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
4802
|
+
*/
|
|
4803
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
4400
4804
|
/**
|
|
4401
4805
|
* Automatic text capitalization type.
|
|
4402
4806
|
*/
|
|
@@ -4893,6 +5297,113 @@ interface DivNinePatchBackgroundProps {
|
|
|
4893
5297
|
insets: Type<IDivAbsoluteEdgeInsets>;
|
|
4894
5298
|
}
|
|
4895
5299
|
|
|
5300
|
+
/**
|
|
5301
|
+
* Number animator.
|
|
5302
|
+
*/
|
|
5303
|
+
declare class DivNumberAnimator<T extends DivNumberAnimatorProps = DivNumberAnimatorProps> {
|
|
5304
|
+
readonly _props?: Exact<DivNumberAnimatorProps, T>;
|
|
5305
|
+
readonly type = "number_animator";
|
|
5306
|
+
/**
|
|
5307
|
+
* Actions performed when the animator is cancelled. For example, when an action with
|
|
5308
|
+
* `animator_stop` type is received
|
|
5309
|
+
*/
|
|
5310
|
+
cancel_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
5311
|
+
/**
|
|
5312
|
+
* Animation direction. This property sets whether an animation should play forward, backward, or
|
|
5313
|
+
* alternate back and forth between playing the sequence forward and backward.
|
|
5314
|
+
*/
|
|
5315
|
+
direction?: Type<DivAnimationDirection | DivExpression>;
|
|
5316
|
+
/**
|
|
5317
|
+
* Animation duration in milliseconds.
|
|
5318
|
+
*/
|
|
5319
|
+
duration: Type<number | DivExpression>;
|
|
5320
|
+
/**
|
|
5321
|
+
* Actions performed when the animator completes animation.
|
|
5322
|
+
*/
|
|
5323
|
+
end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
5324
|
+
/**
|
|
5325
|
+
* Value that will be set at the end of animation.
|
|
5326
|
+
*/
|
|
5327
|
+
end_value: Type<number | DivExpression>;
|
|
5328
|
+
/**
|
|
5329
|
+
* Animator identificator
|
|
5330
|
+
*/
|
|
5331
|
+
id: Type<string>;
|
|
5332
|
+
/**
|
|
5333
|
+
* Interpolation function.
|
|
5334
|
+
*/
|
|
5335
|
+
interpolator?: Type<DivAnimationInterpolator | DivExpression>;
|
|
5336
|
+
/**
|
|
5337
|
+
* The number of times the animation will repeat before it finishes. `0` enables infinite
|
|
5338
|
+
* repeats.
|
|
5339
|
+
*/
|
|
5340
|
+
repeat_count?: Type<number | DivExpression>;
|
|
5341
|
+
/**
|
|
5342
|
+
* Animation start delay in milliseconds.
|
|
5343
|
+
*/
|
|
5344
|
+
start_delay?: Type<number | DivExpression>;
|
|
5345
|
+
/**
|
|
5346
|
+
* Value that will be set at the start of animation. Can be omitted, in which case current value
|
|
5347
|
+
* of the variable will be used.
|
|
5348
|
+
*/
|
|
5349
|
+
start_value?: Type<number | DivExpression>;
|
|
5350
|
+
/**
|
|
5351
|
+
* Name of the variable being animated.
|
|
5352
|
+
*/
|
|
5353
|
+
variable_name: Type<string>;
|
|
5354
|
+
constructor(props: Exact<DivNumberAnimatorProps, T>);
|
|
5355
|
+
}
|
|
5356
|
+
interface DivNumberAnimatorProps {
|
|
5357
|
+
/**
|
|
5358
|
+
* Actions performed when the animator is cancelled. For example, when an action with
|
|
5359
|
+
* `animator_stop` type is received
|
|
5360
|
+
*/
|
|
5361
|
+
cancel_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
5362
|
+
/**
|
|
5363
|
+
* Animation direction. This property sets whether an animation should play forward, backward, or
|
|
5364
|
+
* alternate back and forth between playing the sequence forward and backward.
|
|
5365
|
+
*/
|
|
5366
|
+
direction?: Type<DivAnimationDirection | DivExpression>;
|
|
5367
|
+
/**
|
|
5368
|
+
* Animation duration in milliseconds.
|
|
5369
|
+
*/
|
|
5370
|
+
duration: Type<number | DivExpression>;
|
|
5371
|
+
/**
|
|
5372
|
+
* Actions performed when the animator completes animation.
|
|
5373
|
+
*/
|
|
5374
|
+
end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
5375
|
+
/**
|
|
5376
|
+
* Value that will be set at the end of animation.
|
|
5377
|
+
*/
|
|
5378
|
+
end_value: Type<number | DivExpression>;
|
|
5379
|
+
/**
|
|
5380
|
+
* Animator identificator
|
|
5381
|
+
*/
|
|
5382
|
+
id: Type<string>;
|
|
5383
|
+
/**
|
|
5384
|
+
* Interpolation function.
|
|
5385
|
+
*/
|
|
5386
|
+
interpolator?: Type<DivAnimationInterpolator | DivExpression>;
|
|
5387
|
+
/**
|
|
5388
|
+
* The number of times the animation will repeat before it finishes. `0` enables infinite
|
|
5389
|
+
* repeats.
|
|
5390
|
+
*/
|
|
5391
|
+
repeat_count?: Type<number | DivExpression>;
|
|
5392
|
+
/**
|
|
5393
|
+
* Animation start delay in milliseconds.
|
|
5394
|
+
*/
|
|
5395
|
+
start_delay?: Type<number | DivExpression>;
|
|
5396
|
+
/**
|
|
5397
|
+
* Value that will be set at the start of animation. Can be omitted, in which case current value
|
|
5398
|
+
* of the variable will be used.
|
|
5399
|
+
*/
|
|
5400
|
+
start_value?: Type<number | DivExpression>;
|
|
5401
|
+
/**
|
|
5402
|
+
* Name of the variable being animated.
|
|
5403
|
+
*/
|
|
5404
|
+
variable_name: Type<string>;
|
|
5405
|
+
}
|
|
5406
|
+
|
|
4896
5407
|
/**
|
|
4897
5408
|
* Page width (%).
|
|
4898
5409
|
*/
|
|
@@ -5091,6 +5602,10 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
5091
5602
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
5092
5603
|
*/
|
|
5093
5604
|
alpha?: Type<number | DivExpression>;
|
|
5605
|
+
/**
|
|
5606
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
5607
|
+
*/
|
|
5608
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
5094
5609
|
/**
|
|
5095
5610
|
* Element background. It can contain multiple layers.
|
|
5096
5611
|
*/
|
|
@@ -5274,6 +5789,10 @@ interface DivPagerProps {
|
|
|
5274
5789
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
5275
5790
|
*/
|
|
5276
5791
|
alpha?: Type<number | DivExpression>;
|
|
5792
|
+
/**
|
|
5793
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
5794
|
+
*/
|
|
5795
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
5277
5796
|
/**
|
|
5278
5797
|
* Element background. It can contain multiple layers.
|
|
5279
5798
|
*/
|
|
@@ -5829,6 +6348,10 @@ declare class DivSelect<T extends DivSelectProps = DivSelectProps> {
|
|
|
5829
6348
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
5830
6349
|
*/
|
|
5831
6350
|
alpha?: Type<number | DivExpression>;
|
|
6351
|
+
/**
|
|
6352
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
6353
|
+
*/
|
|
6354
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
5832
6355
|
/**
|
|
5833
6356
|
* Element background. It can contain multiple layers.
|
|
5834
6357
|
*/
|
|
@@ -6013,6 +6536,10 @@ interface DivSelectProps {
|
|
|
6013
6536
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
6014
6537
|
*/
|
|
6015
6538
|
alpha?: Type<number | DivExpression>;
|
|
6539
|
+
/**
|
|
6540
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
6541
|
+
*/
|
|
6542
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
6016
6543
|
/**
|
|
6017
6544
|
* Element background. It can contain multiple layers.
|
|
6018
6545
|
*/
|
|
@@ -6228,6 +6755,10 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
|
|
|
6228
6755
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
6229
6756
|
*/
|
|
6230
6757
|
alpha?: Type<number | DivExpression>;
|
|
6758
|
+
/**
|
|
6759
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
6760
|
+
*/
|
|
6761
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
6231
6762
|
/**
|
|
6232
6763
|
* Element background. It can contain multiple layers.
|
|
6233
6764
|
*/
|
|
@@ -6390,6 +6921,10 @@ interface DivSeparatorProps {
|
|
|
6390
6921
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
6391
6922
|
*/
|
|
6392
6923
|
alpha?: Type<number | DivExpression>;
|
|
6924
|
+
/**
|
|
6925
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
6926
|
+
*/
|
|
6927
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
6393
6928
|
/**
|
|
6394
6929
|
* Element background. It can contain multiple layers.
|
|
6395
6930
|
*/
|
|
@@ -6722,6 +7257,10 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
|
|
|
6722
7257
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
6723
7258
|
*/
|
|
6724
7259
|
alpha?: Type<number | DivExpression>;
|
|
7260
|
+
/**
|
|
7261
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
7262
|
+
*/
|
|
7263
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
6725
7264
|
/**
|
|
6726
7265
|
* Element background. It can contain multiple layers.
|
|
6727
7266
|
*/
|
|
@@ -6914,6 +7453,10 @@ interface DivSliderProps {
|
|
|
6914
7453
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
6915
7454
|
*/
|
|
6916
7455
|
alpha?: Type<number | DivExpression>;
|
|
7456
|
+
/**
|
|
7457
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
7458
|
+
*/
|
|
7459
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
6917
7460
|
/**
|
|
6918
7461
|
* Element background. It can contain multiple layers.
|
|
6919
7462
|
*/
|
|
@@ -7175,6 +7718,10 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
|
|
|
7175
7718
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
7176
7719
|
*/
|
|
7177
7720
|
alpha?: Type<number | DivExpression>;
|
|
7721
|
+
/**
|
|
7722
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
7723
|
+
*/
|
|
7724
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
7178
7725
|
/**
|
|
7179
7726
|
* Element background. It can contain multiple layers.
|
|
7180
7727
|
*/
|
|
@@ -7339,6 +7886,10 @@ interface DivStateProps {
|
|
|
7339
7886
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
7340
7887
|
*/
|
|
7341
7888
|
alpha?: Type<number | DivExpression>;
|
|
7889
|
+
/**
|
|
7890
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
7891
|
+
*/
|
|
7892
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
7342
7893
|
/**
|
|
7343
7894
|
* Element background. It can contain multiple layers.
|
|
7344
7895
|
*/
|
|
@@ -7579,6 +8130,10 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
|
|
|
7579
8130
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
7580
8131
|
*/
|
|
7581
8132
|
alpha?: Type<number | DivExpression>;
|
|
8133
|
+
/**
|
|
8134
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
8135
|
+
*/
|
|
8136
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
7582
8137
|
/**
|
|
7583
8138
|
* Element background. It can contain multiple layers.
|
|
7584
8139
|
*/
|
|
@@ -7767,6 +8322,10 @@ interface DivTabsProps {
|
|
|
7767
8322
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
7768
8323
|
*/
|
|
7769
8324
|
alpha?: Type<number | DivExpression>;
|
|
8325
|
+
/**
|
|
8326
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
8327
|
+
*/
|
|
8328
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
7770
8329
|
/**
|
|
7771
8330
|
* Element background. It can contain multiple layers.
|
|
7772
8331
|
*/
|
|
@@ -8091,6 +8650,10 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
8091
8650
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
8092
8651
|
*/
|
|
8093
8652
|
alpha?: Type<number | DivExpression>;
|
|
8653
|
+
/**
|
|
8654
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
8655
|
+
*/
|
|
8656
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
8094
8657
|
/**
|
|
8095
8658
|
* Automatic text cropping to fit the container size.
|
|
8096
8659
|
*/
|
|
@@ -8351,6 +8914,10 @@ interface DivTextProps {
|
|
|
8351
8914
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
8352
8915
|
*/
|
|
8353
8916
|
alpha?: Type<number | DivExpression>;
|
|
8917
|
+
/**
|
|
8918
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
8919
|
+
*/
|
|
8920
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
8354
8921
|
/**
|
|
8355
8922
|
* Automatic text cropping to fit the container size.
|
|
8356
8923
|
*/
|
|
@@ -8918,6 +9485,10 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
|
|
|
8918
9485
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
8919
9486
|
*/
|
|
8920
9487
|
alpha?: Type<number | DivExpression>;
|
|
9488
|
+
/**
|
|
9489
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
9490
|
+
*/
|
|
9491
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
8921
9492
|
/**
|
|
8922
9493
|
* Fixed aspect ratio. The element's height is calculated based on the width, ignoring the
|
|
8923
9494
|
* `height` value.
|
|
@@ -9115,6 +9686,10 @@ interface DivVideoProps {
|
|
|
9115
9686
|
* Sets transparency of the entire element: `0` — completely transparent, `1` — opaque.
|
|
9116
9687
|
*/
|
|
9117
9688
|
alpha?: Type<number | DivExpression>;
|
|
9689
|
+
/**
|
|
9690
|
+
* Declaration of animators that can be used to change the value of variables over time.
|
|
9691
|
+
*/
|
|
9692
|
+
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
9118
9693
|
/**
|
|
9119
9694
|
* Fixed aspect ratio. The element's height is calculated based on the width, ignoring the
|
|
9120
9695
|
* `height` value.
|
|
@@ -9763,4 +10338,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
|
|
|
9763
10338
|
};
|
|
9764
10339
|
};
|
|
9765
10340
|
|
|
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 };
|
|
10341
|
+
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, 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, 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, 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 };
|