@divkitframework/jsonbuilder 30.2.0 → 30.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/jsonbuilder.js +45 -1
- package/dist/es/jsonbuilder.js.map +1 -1
- package/dist/jsonbuilder.d.ts +224 -2
- package/dist/jsonbuilder.js +46 -0
- package/dist/jsonbuilder.js.map +1 -1
- package/package.json +1 -1
package/dist/jsonbuilder.d.ts
CHANGED
|
@@ -410,6 +410,23 @@ interface DivActionArrayRemoveValueProps {
|
|
|
410
410
|
variable_name: Type<string | DivExpression>;
|
|
411
411
|
}
|
|
412
412
|
|
|
413
|
+
/**
|
|
414
|
+
* Sets value in the array
|
|
415
|
+
*/
|
|
416
|
+
declare class DivActionArraySetValue<T extends DivActionArraySetValueProps = DivActionArraySetValueProps> {
|
|
417
|
+
readonly _props?: Exact<DivActionArraySetValueProps, T>;
|
|
418
|
+
readonly type = "array_set_value";
|
|
419
|
+
index: Type<number | DivExpression>;
|
|
420
|
+
value: Type<DivTypedValue>;
|
|
421
|
+
variable_name: Type<string | DivExpression>;
|
|
422
|
+
constructor(props: Exact<DivActionArraySetValueProps, T>);
|
|
423
|
+
}
|
|
424
|
+
interface DivActionArraySetValueProps {
|
|
425
|
+
index: Type<number | DivExpression>;
|
|
426
|
+
value: Type<DivTypedValue>;
|
|
427
|
+
variable_name: Type<string | DivExpression>;
|
|
428
|
+
}
|
|
429
|
+
|
|
413
430
|
/**
|
|
414
431
|
* Removes focus from focused item.
|
|
415
432
|
*/
|
|
@@ -436,6 +453,23 @@ interface DivActionCopyToClipboardProps {
|
|
|
436
453
|
|
|
437
454
|
declare type DivActionCopyToClipboardContent = ContentText | ContentUrl;
|
|
438
455
|
|
|
456
|
+
/**
|
|
457
|
+
* Sets value in dictionary for the given key. Removes key if the value is not defined.
|
|
458
|
+
*/
|
|
459
|
+
declare class DivActionDictSetValue<T extends DivActionDictSetValueProps = DivActionDictSetValueProps> {
|
|
460
|
+
readonly _props?: Exact<DivActionDictSetValueProps, T>;
|
|
461
|
+
readonly type = "dict_set_value";
|
|
462
|
+
key: Type<string | DivExpression>;
|
|
463
|
+
value?: Type<DivTypedValue>;
|
|
464
|
+
variable_name: Type<string | DivExpression>;
|
|
465
|
+
constructor(props: Exact<DivActionDictSetValueProps, T>);
|
|
466
|
+
}
|
|
467
|
+
interface DivActionDictSetValueProps {
|
|
468
|
+
key: Type<string | DivExpression>;
|
|
469
|
+
value?: Type<DivTypedValue>;
|
|
470
|
+
variable_name: Type<string | DivExpression>;
|
|
471
|
+
}
|
|
472
|
+
|
|
439
473
|
/**
|
|
440
474
|
* Requests focus for an element. May require a user action on the web.
|
|
441
475
|
*/
|
|
@@ -464,7 +498,7 @@ interface DivActionSetVariableProps {
|
|
|
464
498
|
variable_name: Type<string | DivExpression>;
|
|
465
499
|
}
|
|
466
500
|
|
|
467
|
-
declare type DivActionTyped = DivActionArrayInsertValue | DivActionArrayRemoveValue |
|
|
501
|
+
declare type DivActionTyped = DivActionArrayInsertValue | DivActionArrayRemoveValue | DivActionArraySetValue | DivActionClearFocus | DivActionCopyToClipboard | DivActionDictSetValue | DivActionFocusElement | DivActionSetVariable;
|
|
468
502
|
|
|
469
503
|
declare type DivAlignmentHorizontal = 'left' | 'center' | 'right' | 'start' | 'end';
|
|
470
504
|
|
|
@@ -648,6 +682,11 @@ interface IDivBase {
|
|
|
648
682
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
649
683
|
*/
|
|
650
684
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
685
|
+
/**
|
|
686
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
687
|
+
* array, can only be used inside this element and its children.
|
|
688
|
+
*/
|
|
689
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
651
690
|
/**
|
|
652
691
|
* Element visibility.
|
|
653
692
|
*/
|
|
@@ -1018,6 +1057,11 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
|
|
|
1018
1057
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
1019
1058
|
*/
|
|
1020
1059
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
1060
|
+
/**
|
|
1061
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
1062
|
+
* array, can only be used inside this element and its children.
|
|
1063
|
+
*/
|
|
1064
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
1021
1065
|
/**
|
|
1022
1066
|
* Element visibility.
|
|
1023
1067
|
*/
|
|
@@ -1213,6 +1257,11 @@ interface DivContainerPropsBase {
|
|
|
1213
1257
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
1214
1258
|
*/
|
|
1215
1259
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
1260
|
+
/**
|
|
1261
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
1262
|
+
* array, can only be used inside this element and its children.
|
|
1263
|
+
*/
|
|
1264
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
1216
1265
|
/**
|
|
1217
1266
|
* Element visibility.
|
|
1218
1267
|
*/
|
|
@@ -1445,6 +1494,11 @@ declare class DivCustom<T extends DivCustomProps = DivCustomProps> {
|
|
|
1445
1494
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
1446
1495
|
*/
|
|
1447
1496
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
1497
|
+
/**
|
|
1498
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
1499
|
+
* array, can only be used inside this element and its children.
|
|
1500
|
+
*/
|
|
1501
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
1448
1502
|
/**
|
|
1449
1503
|
* Element visibility.
|
|
1450
1504
|
*/
|
|
@@ -1575,6 +1629,11 @@ interface DivCustomProps {
|
|
|
1575
1629
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
1576
1630
|
*/
|
|
1577
1631
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
1632
|
+
/**
|
|
1633
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
1634
|
+
* array, can only be used inside this element and its children.
|
|
1635
|
+
*/
|
|
1636
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
1578
1637
|
/**
|
|
1579
1638
|
* Element visibility.
|
|
1580
1639
|
*/
|
|
@@ -2107,6 +2166,11 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
|
|
|
2107
2166
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
2108
2167
|
*/
|
|
2109
2168
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
2169
|
+
/**
|
|
2170
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
2171
|
+
* array, can only be used inside this element and its children.
|
|
2172
|
+
*/
|
|
2173
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
2110
2174
|
/**
|
|
2111
2175
|
* Element visibility.
|
|
2112
2176
|
*/
|
|
@@ -2288,6 +2352,11 @@ interface DivGalleryProps {
|
|
|
2288
2352
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
2289
2353
|
*/
|
|
2290
2354
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
2355
|
+
/**
|
|
2356
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
2357
|
+
* array, can only be used inside this element and its children.
|
|
2358
|
+
*/
|
|
2359
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
2291
2360
|
/**
|
|
2292
2361
|
* Element visibility.
|
|
2293
2362
|
*/
|
|
@@ -2472,6 +2541,11 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
|
|
|
2472
2541
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
2473
2542
|
*/
|
|
2474
2543
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
2544
|
+
/**
|
|
2545
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
2546
|
+
* array, can only be used inside this element and its children.
|
|
2547
|
+
*/
|
|
2548
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
2475
2549
|
/**
|
|
2476
2550
|
* Element visibility.
|
|
2477
2551
|
*/
|
|
@@ -2647,6 +2721,11 @@ interface DivGifImageProps {
|
|
|
2647
2721
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
2648
2722
|
*/
|
|
2649
2723
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
2724
|
+
/**
|
|
2725
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
2726
|
+
* array, can only be used inside this element and its children.
|
|
2727
|
+
*/
|
|
2728
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
2650
2729
|
/**
|
|
2651
2730
|
* Element visibility.
|
|
2652
2731
|
*/
|
|
@@ -2808,6 +2887,11 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
|
|
|
2808
2887
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
2809
2888
|
*/
|
|
2810
2889
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
2890
|
+
/**
|
|
2891
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
2892
|
+
* array, can only be used inside this element and its children.
|
|
2893
|
+
*/
|
|
2894
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
2811
2895
|
/**
|
|
2812
2896
|
* Element visibility.
|
|
2813
2897
|
*/
|
|
@@ -2964,6 +3048,11 @@ interface DivGridProps {
|
|
|
2964
3048
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
2965
3049
|
*/
|
|
2966
3050
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
3051
|
+
/**
|
|
3052
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
3053
|
+
* array, can only be used inside this element and its children.
|
|
3054
|
+
*/
|
|
3055
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
2967
3056
|
/**
|
|
2968
3057
|
* Element visibility.
|
|
2969
3058
|
*/
|
|
@@ -3166,6 +3255,11 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
|
|
|
3166
3255
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
3167
3256
|
*/
|
|
3168
3257
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
3258
|
+
/**
|
|
3259
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
3260
|
+
* array, can only be used inside this element and its children.
|
|
3261
|
+
*/
|
|
3262
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
3169
3263
|
/**
|
|
3170
3264
|
* Element visibility.
|
|
3171
3265
|
*/
|
|
@@ -3363,6 +3457,11 @@ interface DivImageProps {
|
|
|
3363
3457
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
3364
3458
|
*/
|
|
3365
3459
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
3460
|
+
/**
|
|
3461
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
3462
|
+
* array, can only be used inside this element and its children.
|
|
3463
|
+
*/
|
|
3464
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
3366
3465
|
/**
|
|
3367
3466
|
* Element visibility.
|
|
3368
3467
|
*/
|
|
@@ -3617,6 +3716,11 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
|
|
|
3617
3716
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
3618
3717
|
*/
|
|
3619
3718
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
3719
|
+
/**
|
|
3720
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
3721
|
+
* array, can only be used inside this element and its children.
|
|
3722
|
+
*/
|
|
3723
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
3620
3724
|
/**
|
|
3621
3725
|
* Element visibility.
|
|
3622
3726
|
*/
|
|
@@ -3797,6 +3901,11 @@ interface DivIndicatorProps {
|
|
|
3797
3901
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
3798
3902
|
*/
|
|
3799
3903
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
3904
|
+
/**
|
|
3905
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
3906
|
+
* array, can only be used inside this element and its children.
|
|
3907
|
+
*/
|
|
3908
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
3800
3909
|
/**
|
|
3801
3910
|
* Element visibility.
|
|
3802
3911
|
*/
|
|
@@ -3944,6 +4053,10 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
|
|
|
3944
4053
|
* Mask for entering text based on the specified template.
|
|
3945
4054
|
*/
|
|
3946
4055
|
mask?: Type<DivInputMask>;
|
|
4056
|
+
/**
|
|
4057
|
+
* The maximum number of characters that can be entered in the input field.
|
|
4058
|
+
*/
|
|
4059
|
+
max_length?: Type<number | DivExpression>;
|
|
3947
4060
|
/**
|
|
3948
4061
|
* Maximum number of lines to be displayed in the input field.
|
|
3949
4062
|
*/
|
|
@@ -4018,6 +4131,11 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
|
|
|
4018
4131
|
* Validator that checks that the field value meets the specified conditions.
|
|
4019
4132
|
*/
|
|
4020
4133
|
validators?: Type<NonEmptyArray<DivInputValidator>>;
|
|
4134
|
+
/**
|
|
4135
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
4136
|
+
* array, can only be used inside this element and its children.
|
|
4137
|
+
*/
|
|
4138
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
4021
4139
|
/**
|
|
4022
4140
|
* Element visibility.
|
|
4023
4141
|
*/
|
|
@@ -4146,6 +4264,10 @@ interface DivInputProps {
|
|
|
4146
4264
|
* Mask for entering text based on the specified template.
|
|
4147
4265
|
*/
|
|
4148
4266
|
mask?: Type<DivInputMask>;
|
|
4267
|
+
/**
|
|
4268
|
+
* The maximum number of characters that can be entered in the input field.
|
|
4269
|
+
*/
|
|
4270
|
+
max_length?: Type<number | DivExpression>;
|
|
4149
4271
|
/**
|
|
4150
4272
|
* Maximum number of lines to be displayed in the input field.
|
|
4151
4273
|
*/
|
|
@@ -4220,6 +4342,11 @@ interface DivInputProps {
|
|
|
4220
4342
|
* Validator that checks that the field value meets the specified conditions.
|
|
4221
4343
|
*/
|
|
4222
4344
|
validators?: Type<NonEmptyArray<DivInputValidator>>;
|
|
4345
|
+
/**
|
|
4346
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
4347
|
+
* array, can only be used inside this element and its children.
|
|
4348
|
+
*/
|
|
4349
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
4223
4350
|
/**
|
|
4224
4351
|
* Element visibility.
|
|
4225
4352
|
*/
|
|
@@ -4791,6 +4918,11 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
4791
4918
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
4792
4919
|
*/
|
|
4793
4920
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
4921
|
+
/**
|
|
4922
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
4923
|
+
* array, can only be used inside this element and its children.
|
|
4924
|
+
*/
|
|
4925
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
4794
4926
|
/**
|
|
4795
4927
|
* Element visibility.
|
|
4796
4928
|
*/
|
|
@@ -4956,6 +5088,11 @@ interface DivPagerProps {
|
|
|
4956
5088
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
4957
5089
|
*/
|
|
4958
5090
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
5091
|
+
/**
|
|
5092
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
5093
|
+
* array, can only be used inside this element and its children.
|
|
5094
|
+
*/
|
|
5095
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
4959
5096
|
/**
|
|
4960
5097
|
* Element visibility.
|
|
4961
5098
|
*/
|
|
@@ -5482,6 +5619,11 @@ declare class DivSelect<T extends DivSelectProps = DivSelectProps> {
|
|
|
5482
5619
|
* Name of the variable that stores the selected option value (`value`).
|
|
5483
5620
|
*/
|
|
5484
5621
|
value_variable: Type<string>;
|
|
5622
|
+
/**
|
|
5623
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
5624
|
+
* array, can only be used inside this element and its children.
|
|
5625
|
+
*/
|
|
5626
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
5485
5627
|
/**
|
|
5486
5628
|
* Element visibility.
|
|
5487
5629
|
*/
|
|
@@ -5644,6 +5786,11 @@ interface DivSelectProps {
|
|
|
5644
5786
|
* Name of the variable that stores the selected option value (`value`).
|
|
5645
5787
|
*/
|
|
5646
5788
|
value_variable: Type<string>;
|
|
5789
|
+
/**
|
|
5790
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
5791
|
+
* array, can only be used inside this element and its children.
|
|
5792
|
+
*/
|
|
5793
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
5647
5794
|
/**
|
|
5648
5795
|
* Element visibility.
|
|
5649
5796
|
*/
|
|
@@ -5806,6 +5953,11 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
|
|
|
5806
5953
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
5807
5954
|
*/
|
|
5808
5955
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
5956
|
+
/**
|
|
5957
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
5958
|
+
* array, can only be used inside this element and its children.
|
|
5959
|
+
*/
|
|
5960
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
5809
5961
|
/**
|
|
5810
5962
|
* Element visibility.
|
|
5811
5963
|
*/
|
|
@@ -5950,6 +6102,11 @@ interface DivSeparatorProps {
|
|
|
5950
6102
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
5951
6103
|
*/
|
|
5952
6104
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
6105
|
+
/**
|
|
6106
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
6107
|
+
* array, can only be used inside this element and its children.
|
|
6108
|
+
*/
|
|
6109
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
5953
6110
|
/**
|
|
5954
6111
|
* Element visibility.
|
|
5955
6112
|
*/
|
|
@@ -6307,6 +6464,11 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
|
|
|
6307
6464
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
6308
6465
|
*/
|
|
6309
6466
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
6467
|
+
/**
|
|
6468
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
6469
|
+
* array, can only be used inside this element and its children.
|
|
6470
|
+
*/
|
|
6471
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
6310
6472
|
/**
|
|
6311
6473
|
* Element visibility.
|
|
6312
6474
|
*/
|
|
@@ -6481,6 +6643,11 @@ interface DivSliderProps {
|
|
|
6481
6643
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
6482
6644
|
*/
|
|
6483
6645
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
6646
|
+
/**
|
|
6647
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
6648
|
+
* array, can only be used inside this element and its children.
|
|
6649
|
+
*/
|
|
6650
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
6484
6651
|
/**
|
|
6485
6652
|
* Element visibility.
|
|
6486
6653
|
*/
|
|
@@ -6692,6 +6859,11 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
|
|
|
6692
6859
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
6693
6860
|
*/
|
|
6694
6861
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
6862
|
+
/**
|
|
6863
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
6864
|
+
* array, can only be used inside this element and its children.
|
|
6865
|
+
*/
|
|
6866
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
6695
6867
|
/**
|
|
6696
6868
|
* Element visibility.
|
|
6697
6869
|
*/
|
|
@@ -6838,6 +7010,11 @@ interface DivStateProps {
|
|
|
6838
7010
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
6839
7011
|
*/
|
|
6840
7012
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
7013
|
+
/**
|
|
7014
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
7015
|
+
* array, can only be used inside this element and its children.
|
|
7016
|
+
*/
|
|
7017
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
6841
7018
|
/**
|
|
6842
7019
|
* Element visibility.
|
|
6843
7020
|
*/
|
|
@@ -7084,6 +7261,11 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
|
|
|
7084
7261
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
7085
7262
|
*/
|
|
7086
7263
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
7264
|
+
/**
|
|
7265
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
7266
|
+
* array, can only be used inside this element and its children.
|
|
7267
|
+
*/
|
|
7268
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
7087
7269
|
/**
|
|
7088
7270
|
* Element visibility.
|
|
7089
7271
|
*/
|
|
@@ -7254,6 +7436,11 @@ interface DivTabsProps {
|
|
|
7254
7436
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
7255
7437
|
*/
|
|
7256
7438
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
7439
|
+
/**
|
|
7440
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
7441
|
+
* array, can only be used inside this element and its children.
|
|
7442
|
+
*/
|
|
7443
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
7257
7444
|
/**
|
|
7258
7445
|
* Element visibility.
|
|
7259
7446
|
*/
|
|
@@ -7472,6 +7659,11 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
7472
7659
|
* size.
|
|
7473
7660
|
*/
|
|
7474
7661
|
font_family?: Type<string | DivExpression>;
|
|
7662
|
+
/**
|
|
7663
|
+
* List of OpenType font features. The format is the same as the CSS font-feature-settings
|
|
7664
|
+
* attribute: https://www.w3.org/TR/css-fonts-3/#font-feature-settings-prop
|
|
7665
|
+
*/
|
|
7666
|
+
font_feature_settings?: Type<string | DivExpression>;
|
|
7475
7667
|
/**
|
|
7476
7668
|
* Font size.
|
|
7477
7669
|
*/
|
|
@@ -7610,6 +7802,11 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
7610
7802
|
* Underline.
|
|
7611
7803
|
*/
|
|
7612
7804
|
underline?: Type<DivLineStyle | DivExpression>;
|
|
7805
|
+
/**
|
|
7806
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
7807
|
+
* array, can only be used inside this element and its children.
|
|
7808
|
+
*/
|
|
7809
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
7613
7810
|
/**
|
|
7614
7811
|
* Element visibility.
|
|
7615
7812
|
*/
|
|
@@ -7705,6 +7902,11 @@ interface DivTextProps {
|
|
|
7705
7902
|
* size.
|
|
7706
7903
|
*/
|
|
7707
7904
|
font_family?: Type<string | DivExpression>;
|
|
7905
|
+
/**
|
|
7906
|
+
* List of OpenType font features. The format is the same as the CSS font-feature-settings
|
|
7907
|
+
* attribute: https://www.w3.org/TR/css-fonts-3/#font-feature-settings-prop
|
|
7908
|
+
*/
|
|
7909
|
+
font_feature_settings?: Type<string | DivExpression>;
|
|
7708
7910
|
/**
|
|
7709
7911
|
* Font size.
|
|
7710
7912
|
*/
|
|
@@ -7843,6 +8045,11 @@ interface DivTextProps {
|
|
|
7843
8045
|
* Underline.
|
|
7844
8046
|
*/
|
|
7845
8047
|
underline?: Type<DivLineStyle | DivExpression>;
|
|
8048
|
+
/**
|
|
8049
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
8050
|
+
* array, can only be used inside this element and its children.
|
|
8051
|
+
*/
|
|
8052
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
7846
8053
|
/**
|
|
7847
8054
|
* Element visibility.
|
|
7848
8055
|
*/
|
|
@@ -7942,6 +8149,11 @@ interface IDivTextRange {
|
|
|
7942
8149
|
* size.
|
|
7943
8150
|
*/
|
|
7944
8151
|
font_family?: Type<string | DivExpression>;
|
|
8152
|
+
/**
|
|
8153
|
+
* List of OpenType font features. The format is the same as the CSS font-feature-settings
|
|
8154
|
+
* attribute: https://www.w3.org/TR/css-fonts-3/#font-feature-settings-prop
|
|
8155
|
+
*/
|
|
8156
|
+
font_feature_settings?: Type<string | DivExpression>;
|
|
7945
8157
|
/**
|
|
7946
8158
|
* Font size.
|
|
7947
8159
|
*/
|
|
@@ -8309,6 +8521,11 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
|
|
|
8309
8521
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
8310
8522
|
*/
|
|
8311
8523
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
8524
|
+
/**
|
|
8525
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
8526
|
+
* array, can only be used inside this element and its children.
|
|
8527
|
+
*/
|
|
8528
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
8312
8529
|
video_sources: Type<NonEmptyArray<DivVideoSource>>;
|
|
8313
8530
|
/**
|
|
8314
8531
|
* Element visibility.
|
|
@@ -8488,6 +8705,11 @@ interface DivVideoProps {
|
|
|
8488
8705
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
8489
8706
|
*/
|
|
8490
8707
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
8708
|
+
/**
|
|
8709
|
+
* Definition of variables that can be used within this element. These variables, defined in the
|
|
8710
|
+
* array, can only be used inside this element and its children.
|
|
8711
|
+
*/
|
|
8712
|
+
variables?: Type<NonEmptyArray<DivVariable>>;
|
|
8491
8713
|
video_sources: Type<NonEmptyArray<DivVideoSource>>;
|
|
8492
8714
|
/**
|
|
8493
8715
|
* Element visibility.
|
|
@@ -8976,4 +9198,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
|
|
|
8976
9198
|
};
|
|
8977
9199
|
};
|
|
8978
9200
|
|
|
8979
|
-
export { ArrayValue, ArrayValueProps, ArrayVariable, ArrayVariableProps, BooleanValue, BooleanValueProps, BooleanVariable, BooleanVariableProps, ColorValue, ColorValueProps, ColorVariable, ColorVariableProps, ContentText, ContentTextProps, ContentUrl, ContentUrlProps, DelimiterStyleOrientation, DictValue, DictValueProps, DictVariable, DictVariableProps, Div, DivAccessibilityMode, DivAccessibilityType, DivActionArrayInsertValue, DivActionArrayInsertValueProps, DivActionArrayRemoveValue, DivActionArrayRemoveValueProps, DivActionClearFocus, DivActionClearFocusProps, DivActionCopyToClipboard, DivActionCopyToClipboardContent, DivActionCopyToClipboardProps, DivActionFocusElement, DivActionFocusElementProps, DivActionSetVariable, DivActionSetVariableProps, DivActionTarget, DivActionTyped, DivAlignmentHorizontal, DivAlignmentVertical, DivAnimationInterpolator, DivAnimationName, DivAppearanceSetTransition, DivAppearanceSetTransitionProps, DivAppearanceTransition, DivBackground, DivBlendMode, DivBlur, DivBlurProps, DivChangeBoundsTransition, DivChangeBoundsTransitionProps, DivChangeSetTransition, DivChangeSetTransitionProps, DivChangeTransition, DivCircleShape, DivCircleShapeProps, DivContainer, DivContainerLayoutMode, DivContainerOrientation, DivContainerProps, DivContainerProps0, DivContainerProps1, DivContainerPropsBase, DivContentAlignmentHorizontal, DivContentAlignmentVertical, DivCount, DivCurrencyInputMask, DivCurrencyInputMaskProps, DivCustom, DivCustomProps, DivDefaultIndicatorItemPlacement, DivDefaultIndicatorItemPlacementProps, DivDrawable, DivExpression, DivFadeTransition, DivFadeTransitionProps, DivFilter, DivFilterRtlMirror, DivFilterRtlMirrorProps, DivFixedCount, DivFixedCountProps, DivFixedLengthInputMask, DivFixedLengthInputMaskProps, DivFixedSize, DivFixedSizeProps, DivFontWeight, DivGallery, DivGalleryCrossContentAlignment, DivGalleryOrientation, DivGalleryProps, DivGalleryScrollMode, DivGalleryScrollbar, DivGifImage, DivGifImageProps, DivGradientBackground, DivGrid, DivGridProps, DivImage, DivImageBackground, DivImageBackgroundProps, DivImageProps, DivImageScale, DivIndicator, DivIndicatorAnimation, DivIndicatorItemPlacement, DivIndicatorProps, DivInfinityCount, DivInfinityCountProps, DivInput, DivInputKeyboardType, DivInputMask, DivInputProps, DivInputValidator, DivInputValidatorExpression, DivInputValidatorExpressionProps, DivInputValidatorRegex, DivInputValidatorRegexProps, DivLineStyle, DivLinearGradient, DivLinearGradientProps, DivMatchParentSize, DivMatchParentSizeProps, DivNeighbourPageSize, DivNeighbourPageSizeProps, DivNinePatchBackground, DivNinePatchBackgroundProps, DivPageSize, DivPageSizeProps, DivPageTransformation, DivPageTransformationOverlap, DivPageTransformationOverlapProps, DivPageTransformationSlide, DivPageTransformationSlideProps, DivPager, DivPagerLayoutMode, DivPagerOrientation, DivPagerProps, DivPatchMode, DivPercentageSize, DivPercentageSizeProps, DivPhoneInputMask, DivPhoneInputMaskProps, DivPivot, DivPivotFixed, DivPivotFixedProps, DivPivotPercentage, DivPivotPercentageProps, DivRadialGradient, DivRadialGradientCenter, DivRadialGradientFixedCenter, DivRadialGradientFixedCenterProps, DivRadialGradientProps, DivRadialGradientRadius, DivRadialGradientRelativeCenter, DivRadialGradientRelativeCenterProps, DivRadialGradientRelativeRadius, DivRadialGradientRelativeRadiusProps, DivRadialGradientRelativeRadiusValue, DivRoundedRectangleShape, DivRoundedRectangleShapeProps, DivScaleTransition, DivScaleTransitionProps, DivSelect, DivSelectProps, DivSeparator, DivSeparatorProps, DivShape, DivShapeDrawable, DivShapeDrawableProps, DivSize, DivSizeUnit, DivSlideTransition, DivSlideTransitionEdge, DivSlideTransitionProps, DivSlider, DivSliderProps, DivSolidBackground, DivSolidBackgroundProps, DivState, DivStateProps, DivStretchIndicatorItemPlacement, DivStretchIndicatorItemPlacementProps, DivTabs, DivTabsProps, DivText, DivTextGradient, DivTextProps, DivTextRangeBackground, DivTextTruncate, DivTooltipPosition, DivTransitionSelector, DivTransitionTrigger, DivTriggerMode, DivTypedValue, DivVariable, DivVideo, DivVideoProps, DivVideoScale, DivVideoSource, DivVideoSourceProps, DivVideoSourceResolution, DivVideoSourceResolutionProps, DivVisibility, DivWrapContentSize, DivWrapContentSizeProps, Exact, IDivAbsoluteEdgeInsets, IDivAccessibility, IDivAction, IDivActionMenuItem, IDivAnimation, IDivAspect, IDivBase, IDivBorder, IDivCollectionItemBuilder, IDivCollectionItemBuilderPrototype, IDivContainerSeparator, IDivCornersRadius, IDivData, IDivDataState, IDivDimension, IDivDisappearAction, IDivDownloadCallbacks, IDivEdgeInsets, IDivExtension, IDivFixedLengthInputMaskPatternElement, IDivFocus, IDivFocusNextFocusIds, IDivInputMaskBase, IDivInputNativeInterface, IDivInputValidatorBase, IDivPatch, IDivPatchChange, IDivPoint, IDivSelectOption, IDivSeparatorDelimiterStyle, IDivShadow, IDivSightAction, IDivSliderRange, IDivSliderTextStyle, IDivStateState, IDivStroke, IDivTabsItem, IDivTabsTabTitleDelimiter, IDivTabsTabTitleStyle, IDivTextEllipsis, IDivTextImage, IDivTextRange, IDivTextRangeBorder, IDivTimer, IDivTooltip, IDivTransform, IDivTransitionBase, IDivTrigger, IDivVisibilityAction, IDivWrapContentSizeConstraintSize, ITemplates, IntBoolean, IntegerValue, IntegerValueProps, IntegerVariable, IntegerVariableProps, NonEmptyArray, NumberValue, NumberValueProps, NumberVariable, NumberVariableProps, SafeDivExpression, StringValue, StringValueProps, StringVariable, StringVariableProps, TabTitleStyleAnimationType, TemplateBlock, TemplateHelper, TemplatePropertyReference, TemplateResolvedAction, ThelperWithMemo, Type, UrlValue, UrlValueProps, UrlVariable, UrlVariableProps, copyTemplates, divCard, escapeCard, escapeExpression, expression, fixed, getTemplateHash, matchParent, reference, rewriteNames, rewriteRefs, rewriteTemplateVersions, runResolveDeps, template, templateHelper, templatesDepsMap, thelperVersion, thelperWithMemo, treeWalkDFS, weighted, wrapContent };
|
|
9201
|
+
export { ArrayValue, ArrayValueProps, ArrayVariable, ArrayVariableProps, BooleanValue, BooleanValueProps, BooleanVariable, BooleanVariableProps, ColorValue, ColorValueProps, ColorVariable, ColorVariableProps, ContentText, ContentTextProps, ContentUrl, ContentUrlProps, DelimiterStyleOrientation, DictValue, DictValueProps, DictVariable, DictVariableProps, Div, DivAccessibilityMode, DivAccessibilityType, DivActionArrayInsertValue, DivActionArrayInsertValueProps, DivActionArrayRemoveValue, DivActionArrayRemoveValueProps, DivActionArraySetValue, DivActionArraySetValueProps, DivActionClearFocus, DivActionClearFocusProps, DivActionCopyToClipboard, DivActionCopyToClipboardContent, DivActionCopyToClipboardProps, DivActionDictSetValue, DivActionDictSetValueProps, DivActionFocusElement, DivActionFocusElementProps, DivActionSetVariable, DivActionSetVariableProps, DivActionTarget, DivActionTyped, DivAlignmentHorizontal, DivAlignmentVertical, DivAnimationInterpolator, DivAnimationName, DivAppearanceSetTransition, DivAppearanceSetTransitionProps, DivAppearanceTransition, DivBackground, DivBlendMode, DivBlur, DivBlurProps, DivChangeBoundsTransition, DivChangeBoundsTransitionProps, DivChangeSetTransition, DivChangeSetTransitionProps, DivChangeTransition, DivCircleShape, DivCircleShapeProps, DivContainer, DivContainerLayoutMode, DivContainerOrientation, DivContainerProps, DivContainerProps0, DivContainerProps1, DivContainerPropsBase, DivContentAlignmentHorizontal, DivContentAlignmentVertical, DivCount, DivCurrencyInputMask, DivCurrencyInputMaskProps, DivCustom, DivCustomProps, DivDefaultIndicatorItemPlacement, DivDefaultIndicatorItemPlacementProps, DivDrawable, DivExpression, DivFadeTransition, DivFadeTransitionProps, DivFilter, DivFilterRtlMirror, DivFilterRtlMirrorProps, DivFixedCount, DivFixedCountProps, DivFixedLengthInputMask, DivFixedLengthInputMaskProps, DivFixedSize, DivFixedSizeProps, DivFontWeight, DivGallery, DivGalleryCrossContentAlignment, DivGalleryOrientation, DivGalleryProps, DivGalleryScrollMode, DivGalleryScrollbar, DivGifImage, DivGifImageProps, DivGradientBackground, DivGrid, DivGridProps, DivImage, DivImageBackground, DivImageBackgroundProps, DivImageProps, DivImageScale, DivIndicator, DivIndicatorAnimation, DivIndicatorItemPlacement, DivIndicatorProps, DivInfinityCount, DivInfinityCountProps, DivInput, DivInputKeyboardType, DivInputMask, DivInputProps, DivInputValidator, DivInputValidatorExpression, DivInputValidatorExpressionProps, DivInputValidatorRegex, DivInputValidatorRegexProps, DivLineStyle, DivLinearGradient, DivLinearGradientProps, DivMatchParentSize, DivMatchParentSizeProps, DivNeighbourPageSize, DivNeighbourPageSizeProps, DivNinePatchBackground, DivNinePatchBackgroundProps, DivPageSize, DivPageSizeProps, DivPageTransformation, DivPageTransformationOverlap, DivPageTransformationOverlapProps, DivPageTransformationSlide, DivPageTransformationSlideProps, DivPager, DivPagerLayoutMode, DivPagerOrientation, DivPagerProps, DivPatchMode, DivPercentageSize, DivPercentageSizeProps, DivPhoneInputMask, DivPhoneInputMaskProps, DivPivot, DivPivotFixed, DivPivotFixedProps, DivPivotPercentage, DivPivotPercentageProps, DivRadialGradient, DivRadialGradientCenter, DivRadialGradientFixedCenter, DivRadialGradientFixedCenterProps, DivRadialGradientProps, DivRadialGradientRadius, DivRadialGradientRelativeCenter, DivRadialGradientRelativeCenterProps, DivRadialGradientRelativeRadius, DivRadialGradientRelativeRadiusProps, DivRadialGradientRelativeRadiusValue, DivRoundedRectangleShape, DivRoundedRectangleShapeProps, DivScaleTransition, DivScaleTransitionProps, DivSelect, DivSelectProps, DivSeparator, DivSeparatorProps, DivShape, DivShapeDrawable, DivShapeDrawableProps, DivSize, DivSizeUnit, DivSlideTransition, DivSlideTransitionEdge, DivSlideTransitionProps, DivSlider, DivSliderProps, DivSolidBackground, DivSolidBackgroundProps, DivState, DivStateProps, DivStretchIndicatorItemPlacement, DivStretchIndicatorItemPlacementProps, DivTabs, DivTabsProps, DivText, DivTextGradient, DivTextProps, DivTextRangeBackground, DivTextTruncate, DivTooltipPosition, DivTransitionSelector, DivTransitionTrigger, DivTriggerMode, DivTypedValue, DivVariable, DivVideo, DivVideoProps, DivVideoScale, DivVideoSource, DivVideoSourceProps, DivVideoSourceResolution, DivVideoSourceResolutionProps, DivVisibility, DivWrapContentSize, DivWrapContentSizeProps, Exact, IDivAbsoluteEdgeInsets, IDivAccessibility, IDivAction, IDivActionMenuItem, IDivAnimation, IDivAspect, IDivBase, IDivBorder, IDivCollectionItemBuilder, IDivCollectionItemBuilderPrototype, IDivContainerSeparator, IDivCornersRadius, IDivData, IDivDataState, IDivDimension, IDivDisappearAction, IDivDownloadCallbacks, IDivEdgeInsets, IDivExtension, IDivFixedLengthInputMaskPatternElement, IDivFocus, IDivFocusNextFocusIds, IDivInputMaskBase, IDivInputNativeInterface, IDivInputValidatorBase, IDivPatch, IDivPatchChange, IDivPoint, IDivSelectOption, IDivSeparatorDelimiterStyle, IDivShadow, IDivSightAction, IDivSliderRange, IDivSliderTextStyle, IDivStateState, IDivStroke, IDivTabsItem, IDivTabsTabTitleDelimiter, IDivTabsTabTitleStyle, IDivTextEllipsis, IDivTextImage, IDivTextRange, IDivTextRangeBorder, IDivTimer, IDivTooltip, IDivTransform, IDivTransitionBase, IDivTrigger, IDivVisibilityAction, IDivWrapContentSizeConstraintSize, ITemplates, IntBoolean, IntegerValue, IntegerValueProps, IntegerVariable, IntegerVariableProps, NonEmptyArray, NumberValue, NumberValueProps, NumberVariable, NumberVariableProps, SafeDivExpression, StringValue, StringValueProps, StringVariable, StringVariableProps, TabTitleStyleAnimationType, TemplateBlock, TemplateHelper, TemplatePropertyReference, TemplateResolvedAction, ThelperWithMemo, Type, UrlValue, UrlValueProps, UrlVariable, UrlVariableProps, copyTemplates, divCard, escapeCard, escapeExpression, expression, fixed, getTemplateHash, matchParent, reference, rewriteNames, rewriteRefs, rewriteTemplateVersions, runResolveDeps, template, templateHelper, templatesDepsMap, thelperVersion, thelperWithMemo, treeWalkDFS, weighted, wrapContent };
|