@divkitframework/jsonbuilder 25.1.0 → 25.3.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 +39 -31
- package/dist/es/jsonbuilder.js.map +1 -1
- package/dist/jsonbuilder.d.ts +302 -111
- package/dist/jsonbuilder.js +41 -34
- package/dist/jsonbuilder.js.map +1 -1
- package/package.json +1 -1
package/dist/jsonbuilder.d.ts
CHANGED
|
@@ -145,6 +145,33 @@ interface ColorVariableProps {
|
|
|
145
145
|
value: Type<string>;
|
|
146
146
|
}
|
|
147
147
|
|
|
148
|
+
/**
|
|
149
|
+
* Variable — any json object.
|
|
150
|
+
*/
|
|
151
|
+
declare class DictVariable<T extends DictVariableProps = DictVariableProps> {
|
|
152
|
+
readonly _props?: Exact<DictVariableProps, T>;
|
|
153
|
+
readonly type = "dict";
|
|
154
|
+
/**
|
|
155
|
+
* Variable name.
|
|
156
|
+
*/
|
|
157
|
+
name: Type<string>;
|
|
158
|
+
/**
|
|
159
|
+
* Value.
|
|
160
|
+
*/
|
|
161
|
+
value: Type<{}>;
|
|
162
|
+
constructor(props: Exact<DictVariableProps, T>);
|
|
163
|
+
}
|
|
164
|
+
interface DictVariableProps {
|
|
165
|
+
/**
|
|
166
|
+
* Variable name.
|
|
167
|
+
*/
|
|
168
|
+
name: Type<string>;
|
|
169
|
+
/**
|
|
170
|
+
* Value.
|
|
171
|
+
*/
|
|
172
|
+
value: Type<{}>;
|
|
173
|
+
}
|
|
174
|
+
|
|
148
175
|
/**
|
|
149
176
|
* Sets margins without regard to screen properties.
|
|
150
177
|
*/
|
|
@@ -370,6 +397,10 @@ interface IDivBase {
|
|
|
370
397
|
* Merges cells in a column of the [grid](div-grid.md) element.
|
|
371
398
|
*/
|
|
372
399
|
column_span?: Type<number | DivExpression>;
|
|
400
|
+
/**
|
|
401
|
+
* Actions when an element disappears from the screen.
|
|
402
|
+
*/
|
|
403
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
373
404
|
/**
|
|
374
405
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
375
406
|
* [DivExtension](../../extensions.dita).
|
|
@@ -653,14 +684,18 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
|
|
|
653
684
|
* Horizontal element alignment. For child elements, it can be redefined using the
|
|
654
685
|
* `alignment_horizontal` property.
|
|
655
686
|
*/
|
|
656
|
-
content_alignment_horizontal?: Type<
|
|
687
|
+
content_alignment_horizontal?: Type<DivContentAlignmentHorizontal | DivExpression>;
|
|
657
688
|
/**
|
|
658
689
|
* Vertical element alignment. The `baseline` value aligns elements along their own specified
|
|
659
690
|
* baseline (for text and other elements that have a baseline). Elements that don't have their
|
|
660
691
|
* baseline value specified are aligned along the top edge. For child elements, it can be
|
|
661
692
|
* redefined using the `alignment_vertical` property.
|
|
662
693
|
*/
|
|
663
|
-
content_alignment_vertical?: Type<
|
|
694
|
+
content_alignment_vertical?: Type<DivContentAlignmentVertical | DivExpression>;
|
|
695
|
+
/**
|
|
696
|
+
* Actions when an element disappears from the screen.
|
|
697
|
+
*/
|
|
698
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
664
699
|
/**
|
|
665
700
|
* Action when double-clicking on an element.
|
|
666
701
|
*/
|
|
@@ -836,14 +871,18 @@ interface DivContainerProps {
|
|
|
836
871
|
* Horizontal element alignment. For child elements, it can be redefined using the
|
|
837
872
|
* `alignment_horizontal` property.
|
|
838
873
|
*/
|
|
839
|
-
content_alignment_horizontal?: Type<
|
|
874
|
+
content_alignment_horizontal?: Type<DivContentAlignmentHorizontal | DivExpression>;
|
|
840
875
|
/**
|
|
841
876
|
* Vertical element alignment. The `baseline` value aligns elements along their own specified
|
|
842
877
|
* baseline (for text and other elements that have a baseline). Elements that don't have their
|
|
843
878
|
* baseline value specified are aligned along the top edge. For child elements, it can be
|
|
844
879
|
* redefined using the `alignment_vertical` property.
|
|
845
880
|
*/
|
|
846
|
-
content_alignment_vertical?: Type<
|
|
881
|
+
content_alignment_vertical?: Type<DivContentAlignmentVertical | DivExpression>;
|
|
882
|
+
/**
|
|
883
|
+
* Actions when an element disappears from the screen.
|
|
884
|
+
*/
|
|
885
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
847
886
|
/**
|
|
848
887
|
* Action when double-clicking on an element.
|
|
849
888
|
*/
|
|
@@ -968,6 +1007,10 @@ interface DivContainerProps {
|
|
|
968
1007
|
declare type DivContainerLayoutMode = 'no_wrap' | 'wrap';
|
|
969
1008
|
declare type DivContainerOrientation = 'vertical' | 'horizontal' | 'overlap';
|
|
970
1009
|
interface IDivContainerSeparator {
|
|
1010
|
+
/**
|
|
1011
|
+
* External margins from the element stroke.
|
|
1012
|
+
*/
|
|
1013
|
+
margins?: Type<IDivEdgeInsets>;
|
|
971
1014
|
/**
|
|
972
1015
|
* Enables displaying the separator after the last item.
|
|
973
1016
|
*/
|
|
@@ -986,6 +1029,10 @@ interface IDivContainerSeparator {
|
|
|
986
1029
|
style: Type<DivDrawable>;
|
|
987
1030
|
}
|
|
988
1031
|
|
|
1032
|
+
declare type DivContentAlignmentHorizontal = 'left' | 'center' | 'right' | 'space-between' | 'space-around' | 'space-evenly';
|
|
1033
|
+
|
|
1034
|
+
declare type DivContentAlignmentVertical = 'top' | 'center' | 'bottom' | 'baseline' | 'space-between' | 'space-around' | 'space-evenly';
|
|
1035
|
+
|
|
989
1036
|
/**
|
|
990
1037
|
* Sets corner rounding.
|
|
991
1038
|
*/
|
|
@@ -1011,32 +1058,32 @@ interface IDivCornersRadius {
|
|
|
1011
1058
|
declare type DivCount = DivInfinityCount | DivFixedCount;
|
|
1012
1059
|
|
|
1013
1060
|
/**
|
|
1014
|
-
* Mask for currency
|
|
1061
|
+
* Mask for entering currency in the specified regional format.
|
|
1015
1062
|
*/
|
|
1016
1063
|
declare class DivCurrencyInputMask<T extends DivCurrencyInputMaskProps = DivCurrencyInputMaskProps> {
|
|
1017
1064
|
readonly _props?: Exact<DivCurrencyInputMaskProps, T>;
|
|
1018
1065
|
readonly type = "currency";
|
|
1019
1066
|
/**
|
|
1020
|
-
*
|
|
1021
|
-
* https://en.wikipedia.org/wiki/IETF_language_tag
|
|
1022
|
-
*
|
|
1067
|
+
* Language tag that the currency format should match, as per [IETF BCP
|
|
1068
|
+
* 47](https://en.wikipedia.org/wiki/IETF_language_tag). If the language is not set, it is
|
|
1069
|
+
* defined automatically.
|
|
1023
1070
|
*/
|
|
1024
1071
|
locale?: Type<string | DivExpression>;
|
|
1025
1072
|
/**
|
|
1026
|
-
* Name of
|
|
1073
|
+
* Name of the variable to store the unprocessed value.
|
|
1027
1074
|
*/
|
|
1028
1075
|
raw_text_variable: Type<string>;
|
|
1029
1076
|
constructor(props: Exact<DivCurrencyInputMaskProps, T>);
|
|
1030
1077
|
}
|
|
1031
1078
|
interface DivCurrencyInputMaskProps {
|
|
1032
1079
|
/**
|
|
1033
|
-
*
|
|
1034
|
-
* https://en.wikipedia.org/wiki/IETF_language_tag
|
|
1035
|
-
*
|
|
1080
|
+
* Language tag that the currency format should match, as per [IETF BCP
|
|
1081
|
+
* 47](https://en.wikipedia.org/wiki/IETF_language_tag). If the language is not set, it is
|
|
1082
|
+
* defined automatically.
|
|
1036
1083
|
*/
|
|
1037
1084
|
locale?: Type<string | DivExpression>;
|
|
1038
1085
|
/**
|
|
1039
|
-
* Name of
|
|
1086
|
+
* Name of the variable to store the unprocessed value.
|
|
1040
1087
|
*/
|
|
1041
1088
|
raw_text_variable: Type<string>;
|
|
1042
1089
|
}
|
|
@@ -1084,6 +1131,10 @@ declare class DivCustom<T extends DivCustomProps = DivCustomProps> {
|
|
|
1084
1131
|
* Subtype of an element for a host application.
|
|
1085
1132
|
*/
|
|
1086
1133
|
custom_type: Type<string>;
|
|
1134
|
+
/**
|
|
1135
|
+
* Actions when an element disappears from the screen.
|
|
1136
|
+
*/
|
|
1137
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
1087
1138
|
/**
|
|
1088
1139
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
1089
1140
|
* [DivExtension](../../extensions.dita).
|
|
@@ -1210,6 +1261,10 @@ interface DivCustomProps {
|
|
|
1210
1261
|
* Subtype of an element for a host application.
|
|
1211
1262
|
*/
|
|
1212
1263
|
custom_type: Type<string>;
|
|
1264
|
+
/**
|
|
1265
|
+
* Actions when an element disappears from the screen.
|
|
1266
|
+
*/
|
|
1267
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
1213
1268
|
/**
|
|
1214
1269
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
1215
1270
|
* [DivExtension](../../extensions.dita).
|
|
@@ -1329,6 +1384,45 @@ interface IDivDimension {
|
|
|
1329
1384
|
value: Type<number | DivExpression>;
|
|
1330
1385
|
}
|
|
1331
1386
|
|
|
1387
|
+
/**
|
|
1388
|
+
* Actions performed when an element becomes invisible.
|
|
1389
|
+
*/
|
|
1390
|
+
interface IDivDisappearAction {
|
|
1391
|
+
/**
|
|
1392
|
+
* Time in milliseconds during which an element must be invisible to trigger `disappear-action`.
|
|
1393
|
+
*/
|
|
1394
|
+
disappear_duration?: Type<number | DivExpression>;
|
|
1395
|
+
/**
|
|
1396
|
+
* Callbacks that are called after [data loading](../../interaction.dita#loading-data).
|
|
1397
|
+
*/
|
|
1398
|
+
download_callbacks?: Type<IDivDownloadCallbacks>;
|
|
1399
|
+
/**
|
|
1400
|
+
* Logging ID.
|
|
1401
|
+
*/
|
|
1402
|
+
log_id: Type<string>;
|
|
1403
|
+
/**
|
|
1404
|
+
* Limit on the number of loggings. If `0`, the limit is removed.
|
|
1405
|
+
*/
|
|
1406
|
+
log_limit?: Type<number | DivExpression>;
|
|
1407
|
+
/**
|
|
1408
|
+
* Additional parameters, passed to the host application.
|
|
1409
|
+
*/
|
|
1410
|
+
payload?: Type<{}>;
|
|
1411
|
+
/**
|
|
1412
|
+
* Referer URL for logging.
|
|
1413
|
+
*/
|
|
1414
|
+
referer?: Type<string | DivExpression>;
|
|
1415
|
+
/**
|
|
1416
|
+
* URL. Possible values: `url` or `div-action://`. To learn more, see [Interaction with
|
|
1417
|
+
* elements](../../interaction.dita).
|
|
1418
|
+
*/
|
|
1419
|
+
url?: Type<string | DivExpression>;
|
|
1420
|
+
/**
|
|
1421
|
+
* Percentage of the visible part of an element that triggers `disappear-action`.
|
|
1422
|
+
*/
|
|
1423
|
+
visibility_percentage?: Type<number | DivExpression>;
|
|
1424
|
+
}
|
|
1425
|
+
|
|
1332
1426
|
/**
|
|
1333
1427
|
* Callbacks that are called after [data loading](../../interaction.dita#loading-data).
|
|
1334
1428
|
*/
|
|
@@ -1468,7 +1562,7 @@ declare class DivFixedLengthInputMask<T extends DivFixedLengthInputMaskProps = D
|
|
|
1468
1562
|
*/
|
|
1469
1563
|
pattern_elements: Type<NonEmptyArray<IDivFixedLengthInputMaskPatternElement>>;
|
|
1470
1564
|
/**
|
|
1471
|
-
* Name of
|
|
1565
|
+
* Name of the variable to store the unprocessed value.
|
|
1472
1566
|
*/
|
|
1473
1567
|
raw_text_variable: Type<string>;
|
|
1474
1568
|
constructor(props: Exact<DivFixedLengthInputMaskProps, T>);
|
|
@@ -1488,7 +1582,7 @@ interface DivFixedLengthInputMaskProps {
|
|
|
1488
1582
|
*/
|
|
1489
1583
|
pattern_elements: Type<NonEmptyArray<IDivFixedLengthInputMaskPatternElement>>;
|
|
1490
1584
|
/**
|
|
1491
|
-
* Name of
|
|
1585
|
+
* Name of the variable to store the unprocessed value.
|
|
1492
1586
|
*/
|
|
1493
1587
|
raw_text_variable: Type<string>;
|
|
1494
1588
|
}
|
|
@@ -1636,6 +1730,10 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
|
|
|
1636
1730
|
* element.
|
|
1637
1731
|
*/
|
|
1638
1732
|
default_item?: Type<number | DivExpression>;
|
|
1733
|
+
/**
|
|
1734
|
+
* Actions when an element disappears from the screen.
|
|
1735
|
+
*/
|
|
1736
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
1639
1737
|
/**
|
|
1640
1738
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
1641
1739
|
* [DivExtension](../../extensions.dita).
|
|
@@ -1802,6 +1900,10 @@ interface DivGalleryProps {
|
|
|
1802
1900
|
* element.
|
|
1803
1901
|
*/
|
|
1804
1902
|
default_item?: Type<number | DivExpression>;
|
|
1903
|
+
/**
|
|
1904
|
+
* Actions when an element disappears from the screen.
|
|
1905
|
+
*/
|
|
1906
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
1805
1907
|
/**
|
|
1806
1908
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
1807
1909
|
* [DivExtension](../../extensions.dita).
|
|
@@ -1980,6 +2082,10 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
|
|
|
1980
2082
|
* Vertical image alignment.
|
|
1981
2083
|
*/
|
|
1982
2084
|
content_alignment_vertical?: Type<DivAlignmentVertical | DivExpression>;
|
|
2085
|
+
/**
|
|
2086
|
+
* Actions when an element disappears from the screen.
|
|
2087
|
+
*/
|
|
2088
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
1983
2089
|
/**
|
|
1984
2090
|
* Action when double-clicking on an element.
|
|
1985
2091
|
*/
|
|
@@ -2151,6 +2257,10 @@ interface DivGifImageProps {
|
|
|
2151
2257
|
* Vertical image alignment.
|
|
2152
2258
|
*/
|
|
2153
2259
|
content_alignment_vertical?: Type<DivAlignmentVertical | DivExpression>;
|
|
2260
|
+
/**
|
|
2261
|
+
* Actions when an element disappears from the screen.
|
|
2262
|
+
*/
|
|
2263
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
2154
2264
|
/**
|
|
2155
2265
|
* Action when double-clicking on an element.
|
|
2156
2266
|
*/
|
|
@@ -2326,6 +2436,10 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
|
|
|
2326
2436
|
* Vertical alignment of grid contents.
|
|
2327
2437
|
*/
|
|
2328
2438
|
content_alignment_vertical?: Type<DivAlignmentVertical | DivExpression>;
|
|
2439
|
+
/**
|
|
2440
|
+
* Actions when an element disappears from the screen.
|
|
2441
|
+
*/
|
|
2442
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
2329
2443
|
/**
|
|
2330
2444
|
* Action when double-clicking on an element.
|
|
2331
2445
|
*/
|
|
@@ -2478,6 +2592,10 @@ interface DivGridProps {
|
|
|
2478
2592
|
* Vertical alignment of grid contents.
|
|
2479
2593
|
*/
|
|
2480
2594
|
content_alignment_vertical?: Type<DivAlignmentVertical | DivExpression>;
|
|
2595
|
+
/**
|
|
2596
|
+
* Actions when an element disappears from the screen.
|
|
2597
|
+
*/
|
|
2598
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
2481
2599
|
/**
|
|
2482
2600
|
* Action when double-clicking on an element.
|
|
2483
2601
|
*/
|
|
@@ -2640,6 +2758,10 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
|
|
|
2640
2758
|
* Vertical image alignment.
|
|
2641
2759
|
*/
|
|
2642
2760
|
content_alignment_vertical?: Type<DivAlignmentVertical | DivExpression>;
|
|
2761
|
+
/**
|
|
2762
|
+
* Actions when an element disappears from the screen.
|
|
2763
|
+
*/
|
|
2764
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
2643
2765
|
/**
|
|
2644
2766
|
* Action when double-clicking on an element.
|
|
2645
2767
|
*/
|
|
@@ -2833,6 +2955,10 @@ interface DivImageProps {
|
|
|
2833
2955
|
* Vertical image alignment.
|
|
2834
2956
|
*/
|
|
2835
2957
|
content_alignment_vertical?: Type<DivAlignmentVertical | DivExpression>;
|
|
2958
|
+
/**
|
|
2959
|
+
* Actions when an element disappears from the screen.
|
|
2960
|
+
*/
|
|
2961
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
2836
2962
|
/**
|
|
2837
2963
|
* Action when double-clicking on an element.
|
|
2838
2964
|
*/
|
|
@@ -3090,6 +3216,10 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
|
|
|
3090
3216
|
* Merges cells in a column of the [grid](div-grid.md) element.
|
|
3091
3217
|
*/
|
|
3092
3218
|
column_span?: Type<number | DivExpression>;
|
|
3219
|
+
/**
|
|
3220
|
+
* Actions when an element disappears from the screen.
|
|
3221
|
+
*/
|
|
3222
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
3093
3223
|
/**
|
|
3094
3224
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
3095
3225
|
* [DivExtension](../../extensions.dita).
|
|
@@ -3266,6 +3396,10 @@ interface DivIndicatorProps {
|
|
|
3266
3396
|
* Merges cells in a column of the [grid](div-grid.md) element.
|
|
3267
3397
|
*/
|
|
3268
3398
|
column_span?: Type<number | DivExpression>;
|
|
3399
|
+
/**
|
|
3400
|
+
* Actions when an element disappears from the screen.
|
|
3401
|
+
*/
|
|
3402
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
3269
3403
|
/**
|
|
3270
3404
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
3271
3405
|
* [DivExtension](../../extensions.dita).
|
|
@@ -3441,6 +3575,10 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
|
|
|
3441
3575
|
* Merges cells in a column of the [grid](div-grid.md) element.
|
|
3442
3576
|
*/
|
|
3443
3577
|
column_span?: Type<number | DivExpression>;
|
|
3578
|
+
/**
|
|
3579
|
+
* Actions when an element disappears from the screen.
|
|
3580
|
+
*/
|
|
3581
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
3444
3582
|
/**
|
|
3445
3583
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
3446
3584
|
* [DivExtension](../../extensions.dita).
|
|
@@ -3538,6 +3676,14 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
|
|
|
3538
3676
|
* [pager](div-pager.md).
|
|
3539
3677
|
*/
|
|
3540
3678
|
selected_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
3679
|
+
/**
|
|
3680
|
+
* Horizontal text alignment.
|
|
3681
|
+
*/
|
|
3682
|
+
text_alignment_horizontal?: Type<DivAlignmentHorizontal | DivExpression>;
|
|
3683
|
+
/**
|
|
3684
|
+
* Vertical text alignment.
|
|
3685
|
+
*/
|
|
3686
|
+
text_alignment_vertical?: Type<DivAlignmentVertical | DivExpression>;
|
|
3541
3687
|
/**
|
|
3542
3688
|
* Text color.
|
|
3543
3689
|
*/
|
|
@@ -3627,6 +3773,10 @@ interface DivInputProps {
|
|
|
3627
3773
|
* Merges cells in a column of the [grid](div-grid.md) element.
|
|
3628
3774
|
*/
|
|
3629
3775
|
column_span?: Type<number | DivExpression>;
|
|
3776
|
+
/**
|
|
3777
|
+
* Actions when an element disappears from the screen.
|
|
3778
|
+
*/
|
|
3779
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
3630
3780
|
/**
|
|
3631
3781
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
3632
3782
|
* [DivExtension](../../extensions.dita).
|
|
@@ -3724,6 +3874,14 @@ interface DivInputProps {
|
|
|
3724
3874
|
* [pager](div-pager.md).
|
|
3725
3875
|
*/
|
|
3726
3876
|
selected_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
3877
|
+
/**
|
|
3878
|
+
* Horizontal text alignment.
|
|
3879
|
+
*/
|
|
3880
|
+
text_alignment_horizontal?: Type<DivAlignmentHorizontal | DivExpression>;
|
|
3881
|
+
/**
|
|
3882
|
+
* Vertical text alignment.
|
|
3883
|
+
*/
|
|
3884
|
+
text_alignment_vertical?: Type<DivAlignmentVertical | DivExpression>;
|
|
3727
3885
|
/**
|
|
3728
3886
|
* Text color.
|
|
3729
3887
|
*/
|
|
@@ -3798,7 +3956,7 @@ declare type DivInputMask = DivFixedLengthInputMask | DivCurrencyInputMask;
|
|
|
3798
3956
|
|
|
3799
3957
|
interface IDivInputMaskBase {
|
|
3800
3958
|
/**
|
|
3801
|
-
* Name of
|
|
3959
|
+
* Name of the variable to store the unprocessed value.
|
|
3802
3960
|
*/
|
|
3803
3961
|
raw_text_variable: Type<string>;
|
|
3804
3962
|
}
|
|
@@ -4062,6 +4220,10 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
4062
4220
|
* Ordinal number of the pager element that will be opened by default.
|
|
4063
4221
|
*/
|
|
4064
4222
|
default_item?: Type<number | DivExpression>;
|
|
4223
|
+
/**
|
|
4224
|
+
* Actions when an element disappears from the screen.
|
|
4225
|
+
*/
|
|
4226
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
4065
4227
|
/**
|
|
4066
4228
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
4067
4229
|
* [DivExtension](../../extensions.dita).
|
|
@@ -4210,6 +4372,10 @@ interface DivPagerProps {
|
|
|
4210
4372
|
* Ordinal number of the pager element that will be opened by default.
|
|
4211
4373
|
*/
|
|
4212
4374
|
default_item?: Type<number | DivExpression>;
|
|
4375
|
+
/**
|
|
4376
|
+
* Actions when an element disappears from the screen.
|
|
4377
|
+
*/
|
|
4378
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
4213
4379
|
/**
|
|
4214
4380
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
4215
4381
|
* [DivExtension](../../extensions.dita).
|
|
@@ -4666,7 +4832,7 @@ interface DivScaleTransitionProps {
|
|
|
4666
4832
|
}
|
|
4667
4833
|
|
|
4668
4834
|
/**
|
|
4669
|
-
*
|
|
4835
|
+
* List of options with only one to be selected.
|
|
4670
4836
|
*/
|
|
4671
4837
|
declare class DivSelect<T extends DivSelectProps = DivSelectProps> {
|
|
4672
4838
|
readonly _props?: Exact<DivSelectProps, T>;
|
|
@@ -4699,6 +4865,10 @@ declare class DivSelect<T extends DivSelectProps = DivSelectProps> {
|
|
|
4699
4865
|
* Merges cells in a column of the [grid](div-grid.md) element.
|
|
4700
4866
|
*/
|
|
4701
4867
|
column_span?: Type<number | DivExpression>;
|
|
4868
|
+
/**
|
|
4869
|
+
* Actions when an element disappears from the screen.
|
|
4870
|
+
*/
|
|
4871
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
4702
4872
|
/**
|
|
4703
4873
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
4704
4874
|
* [DivExtension](../../extensions.dita).
|
|
@@ -4751,7 +4921,7 @@ declare class DivSelect<T extends DivSelectProps = DivSelectProps> {
|
|
|
4751
4921
|
*/
|
|
4752
4922
|
letter_spacing?: Type<number | DivExpression>;
|
|
4753
4923
|
/**
|
|
4754
|
-
* Line spacing of the text.
|
|
4924
|
+
* Line spacing of the text. Measured in units set in `font_size_unit`.
|
|
4755
4925
|
*/
|
|
4756
4926
|
line_height?: Type<number | DivExpression>;
|
|
4757
4927
|
/**
|
|
@@ -4806,7 +4976,7 @@ declare class DivSelect<T extends DivSelectProps = DivSelectProps> {
|
|
|
4806
4976
|
*/
|
|
4807
4977
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
4808
4978
|
/**
|
|
4809
|
-
*
|
|
4979
|
+
* Name of the variable that stores the selected option value (`value`).
|
|
4810
4980
|
*/
|
|
4811
4981
|
value_variable: Type<string>;
|
|
4812
4982
|
/**
|
|
@@ -4857,6 +5027,10 @@ interface DivSelectProps {
|
|
|
4857
5027
|
* Merges cells in a column of the [grid](div-grid.md) element.
|
|
4858
5028
|
*/
|
|
4859
5029
|
column_span?: Type<number | DivExpression>;
|
|
5030
|
+
/**
|
|
5031
|
+
* Actions when an element disappears from the screen.
|
|
5032
|
+
*/
|
|
5033
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
4860
5034
|
/**
|
|
4861
5035
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
4862
5036
|
* [DivExtension](../../extensions.dita).
|
|
@@ -4909,7 +5083,7 @@ interface DivSelectProps {
|
|
|
4909
5083
|
*/
|
|
4910
5084
|
letter_spacing?: Type<number | DivExpression>;
|
|
4911
5085
|
/**
|
|
4912
|
-
* Line spacing of the text.
|
|
5086
|
+
* Line spacing of the text. Measured in units set in `font_size_unit`.
|
|
4913
5087
|
*/
|
|
4914
5088
|
line_height?: Type<number | DivExpression>;
|
|
4915
5089
|
/**
|
|
@@ -4964,7 +5138,7 @@ interface DivSelectProps {
|
|
|
4964
5138
|
*/
|
|
4965
5139
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
4966
5140
|
/**
|
|
4967
|
-
*
|
|
5141
|
+
* Name of the variable that stores the selected option value (`value`).
|
|
4968
5142
|
*/
|
|
4969
5143
|
value_variable: Type<string>;
|
|
4970
5144
|
/**
|
|
@@ -4986,16 +5160,15 @@ interface DivSelectProps {
|
|
|
4986
5160
|
width?: Type<DivSize>;
|
|
4987
5161
|
}
|
|
4988
5162
|
/**
|
|
4989
|
-
*
|
|
5163
|
+
* List option.
|
|
4990
5164
|
*/
|
|
4991
5165
|
interface IDivSelectOption {
|
|
4992
5166
|
/**
|
|
4993
|
-
*
|
|
4994
|
-
* instead.
|
|
5167
|
+
* Text description of the option displayed in the list. If not set, `value` is used instead.
|
|
4995
5168
|
*/
|
|
4996
5169
|
text?: Type<string | DivExpression>;
|
|
4997
5170
|
/**
|
|
4998
|
-
*
|
|
5171
|
+
* Value matching the option.
|
|
4999
5172
|
*/
|
|
5000
5173
|
value: Type<string | DivExpression>;
|
|
5001
5174
|
}
|
|
@@ -5051,6 +5224,10 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
|
|
|
5051
5224
|
* Separator display settings.
|
|
5052
5225
|
*/
|
|
5053
5226
|
delimiter_style?: Type<IDivSeparatorDelimiterStyle>;
|
|
5227
|
+
/**
|
|
5228
|
+
* Actions when an element disappears from the screen.
|
|
5229
|
+
*/
|
|
5230
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
5054
5231
|
/**
|
|
5055
5232
|
* Action when double-clicking on an element.
|
|
5056
5233
|
*/
|
|
@@ -5191,6 +5368,10 @@ interface DivSeparatorProps {
|
|
|
5191
5368
|
* Separator display settings.
|
|
5192
5369
|
*/
|
|
5193
5370
|
delimiter_style?: Type<IDivSeparatorDelimiterStyle>;
|
|
5371
|
+
/**
|
|
5372
|
+
* Actions when an element disappears from the screen.
|
|
5373
|
+
*/
|
|
5374
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
5194
5375
|
/**
|
|
5195
5376
|
* Action when double-clicking on an element.
|
|
5196
5377
|
*/
|
|
@@ -5463,6 +5644,10 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
|
|
|
5463
5644
|
* Merges cells in a column of the [grid](div-grid.md) element.
|
|
5464
5645
|
*/
|
|
5465
5646
|
column_span?: Type<number | DivExpression>;
|
|
5647
|
+
/**
|
|
5648
|
+
* Actions when an element disappears from the screen.
|
|
5649
|
+
*/
|
|
5650
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
5466
5651
|
/**
|
|
5467
5652
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
5468
5653
|
* [DivExtension](../../extensions.dita).
|
|
@@ -5629,6 +5814,10 @@ interface DivSliderProps {
|
|
|
5629
5814
|
* Merges cells in a column of the [grid](div-grid.md) element.
|
|
5630
5815
|
*/
|
|
5631
5816
|
column_span?: Type<number | DivExpression>;
|
|
5817
|
+
/**
|
|
5818
|
+
* Actions when an element disappears from the screen.
|
|
5819
|
+
*/
|
|
5820
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
5632
5821
|
/**
|
|
5633
5822
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
5634
5823
|
* [DivExtension](../../extensions.dita).
|
|
@@ -5843,6 +6032,10 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
|
|
|
5843
6032
|
* the `states` will be set.
|
|
5844
6033
|
*/
|
|
5845
6034
|
default_state_id?: Type<string | DivExpression>;
|
|
6035
|
+
/**
|
|
6036
|
+
* Actions when an element disappears from the screen.
|
|
6037
|
+
*/
|
|
6038
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
5846
6039
|
/**
|
|
5847
6040
|
* ID of an element to search in the hierarchy. The ID must be unique at one hierarchy level.
|
|
5848
6041
|
*
|
|
@@ -5980,6 +6173,10 @@ interface DivStateProps {
|
|
|
5980
6173
|
* the `states` will be set.
|
|
5981
6174
|
*/
|
|
5982
6175
|
default_state_id?: Type<string | DivExpression>;
|
|
6176
|
+
/**
|
|
6177
|
+
* Actions when an element disappears from the screen.
|
|
6178
|
+
*/
|
|
6179
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
5983
6180
|
/**
|
|
5984
6181
|
* ID of an element to search in the hierarchy. The ID must be unique at one hierarchy level.
|
|
5985
6182
|
*
|
|
@@ -6188,6 +6385,10 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
|
|
|
6188
6385
|
* Merges cells in a column of the [grid](div-grid.md) element.
|
|
6189
6386
|
*/
|
|
6190
6387
|
column_span?: Type<number | DivExpression>;
|
|
6388
|
+
/**
|
|
6389
|
+
* Actions when an element disappears from the screen.
|
|
6390
|
+
*/
|
|
6391
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
6191
6392
|
/**
|
|
6192
6393
|
* Updating height when changing the active element. In the browser, the value is always `true`.
|
|
6193
6394
|
*/
|
|
@@ -6350,6 +6551,10 @@ interface DivTabsProps {
|
|
|
6350
6551
|
* Merges cells in a column of the [grid](div-grid.md) element.
|
|
6351
6552
|
*/
|
|
6352
6553
|
column_span?: Type<number | DivExpression>;
|
|
6554
|
+
/**
|
|
6555
|
+
* Actions when an element disappears from the screen.
|
|
6556
|
+
*/
|
|
6557
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
6353
6558
|
/**
|
|
6354
6559
|
* Updating height when changing the active element. In the browser, the value is always `true`.
|
|
6355
6560
|
*/
|
|
@@ -6633,6 +6838,10 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
6633
6838
|
* Merges cells in a column of the [grid](div-grid.md) element.
|
|
6634
6839
|
*/
|
|
6635
6840
|
column_span?: Type<number | DivExpression>;
|
|
6841
|
+
/**
|
|
6842
|
+
* Actions when an element disappears from the screen.
|
|
6843
|
+
*/
|
|
6844
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
6636
6845
|
/**
|
|
6637
6846
|
* Action when double-clicking on an element.
|
|
6638
6847
|
*/
|
|
@@ -6858,6 +7067,10 @@ interface DivTextProps {
|
|
|
6858
7067
|
* Merges cells in a column of the [grid](div-grid.md) element.
|
|
6859
7068
|
*/
|
|
6860
7069
|
column_span?: Type<number | DivExpression>;
|
|
7070
|
+
/**
|
|
7071
|
+
* Actions when an element disappears from the screen.
|
|
7072
|
+
*/
|
|
7073
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
6861
7074
|
/**
|
|
6862
7075
|
* Action when double-clicking on an element.
|
|
6863
7076
|
*/
|
|
@@ -7308,10 +7521,10 @@ interface IDivTrigger {
|
|
|
7308
7521
|
}
|
|
7309
7522
|
declare type DivTriggerMode = 'on_condition' | 'on_variable';
|
|
7310
7523
|
|
|
7311
|
-
declare type DivVariable = StringVariable | NumberVariable | IntegerVariable | BooleanVariable | ColorVariable | UrlVariable;
|
|
7524
|
+
declare type DivVariable = StringVariable | NumberVariable | IntegerVariable | BooleanVariable | ColorVariable | UrlVariable | DictVariable;
|
|
7312
7525
|
|
|
7313
7526
|
/**
|
|
7314
|
-
* Video
|
|
7527
|
+
* Video.
|
|
7315
7528
|
*/
|
|
7316
7529
|
declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
|
|
7317
7530
|
readonly _props?: Exact<DivVideoProps, T>;
|
|
@@ -7333,8 +7546,8 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
|
|
|
7333
7546
|
*/
|
|
7334
7547
|
alpha?: Type<number | DivExpression>;
|
|
7335
7548
|
/**
|
|
7336
|
-
*
|
|
7337
|
-
*
|
|
7549
|
+
* This option turns on automatic video playback. On the web, the video starts if muted playback
|
|
7550
|
+
* is turned on.
|
|
7338
7551
|
*/
|
|
7339
7552
|
autostart?: Type<IntBoolean | DivExpression>;
|
|
7340
7553
|
/**
|
|
@@ -7346,7 +7559,7 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
|
|
|
7346
7559
|
*/
|
|
7347
7560
|
border?: Type<IDivBorder>;
|
|
7348
7561
|
/**
|
|
7349
|
-
* Actions
|
|
7562
|
+
* Actions performed during video loading.
|
|
7350
7563
|
*/
|
|
7351
7564
|
buffering_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
7352
7565
|
/**
|
|
@@ -7354,11 +7567,15 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
|
|
|
7354
7567
|
*/
|
|
7355
7568
|
column_span?: Type<number | DivExpression>;
|
|
7356
7569
|
/**
|
|
7357
|
-
*
|
|
7570
|
+
* Actions when an element disappears from the screen.
|
|
7571
|
+
*/
|
|
7572
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
7573
|
+
/**
|
|
7574
|
+
* Time interval from the video beginning to the current position in milliseconds.
|
|
7358
7575
|
*/
|
|
7359
7576
|
elapsed_time_variable?: Type<string>;
|
|
7360
7577
|
/**
|
|
7361
|
-
* Actions
|
|
7578
|
+
* Actions performed after the video ends.
|
|
7362
7579
|
*/
|
|
7363
7580
|
end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
7364
7581
|
/**
|
|
@@ -7391,7 +7608,7 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
|
|
|
7391
7608
|
*/
|
|
7392
7609
|
margins?: Type<IDivEdgeInsets>;
|
|
7393
7610
|
/**
|
|
7394
|
-
*
|
|
7611
|
+
* This option mutes video.
|
|
7395
7612
|
*/
|
|
7396
7613
|
muted?: Type<IntBoolean | DivExpression>;
|
|
7397
7614
|
/**
|
|
@@ -7403,20 +7620,20 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
|
|
|
7403
7620
|
*/
|
|
7404
7621
|
pause_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
7405
7622
|
/**
|
|
7406
|
-
*
|
|
7623
|
+
* Additional information that can be used in the player.
|
|
7407
7624
|
*/
|
|
7408
7625
|
player_settings_payload?: Type<{}>;
|
|
7409
7626
|
/**
|
|
7410
|
-
*
|
|
7411
|
-
*
|
|
7627
|
+
* Video preview encoded in `base64`. Will be shown until the video is ready to play. `Data url`
|
|
7628
|
+
* format: `data:[;base64],<data>`
|
|
7412
7629
|
*/
|
|
7413
7630
|
preview?: Type<string | DivExpression>;
|
|
7414
7631
|
/**
|
|
7415
|
-
*
|
|
7632
|
+
* This option turns on video repeat.
|
|
7416
7633
|
*/
|
|
7417
7634
|
repeatable?: Type<IntBoolean | DivExpression>;
|
|
7418
7635
|
/**
|
|
7419
|
-
* Actions
|
|
7636
|
+
* Actions performed when video playback resumes.
|
|
7420
7637
|
*/
|
|
7421
7638
|
resume_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
7422
7639
|
/**
|
|
@@ -7457,7 +7674,7 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
|
|
|
7457
7674
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
7458
7675
|
*/
|
|
7459
7676
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
7460
|
-
|
|
7677
|
+
video_sources: Type<NonEmptyArray<DivVideoSource>>;
|
|
7461
7678
|
/**
|
|
7462
7679
|
* Element visibility.
|
|
7463
7680
|
*/
|
|
@@ -7495,8 +7712,8 @@ interface DivVideoProps {
|
|
|
7495
7712
|
*/
|
|
7496
7713
|
alpha?: Type<number | DivExpression>;
|
|
7497
7714
|
/**
|
|
7498
|
-
*
|
|
7499
|
-
*
|
|
7715
|
+
* This option turns on automatic video playback. On the web, the video starts if muted playback
|
|
7716
|
+
* is turned on.
|
|
7500
7717
|
*/
|
|
7501
7718
|
autostart?: Type<IntBoolean | DivExpression>;
|
|
7502
7719
|
/**
|
|
@@ -7508,7 +7725,7 @@ interface DivVideoProps {
|
|
|
7508
7725
|
*/
|
|
7509
7726
|
border?: Type<IDivBorder>;
|
|
7510
7727
|
/**
|
|
7511
|
-
* Actions
|
|
7728
|
+
* Actions performed during video loading.
|
|
7512
7729
|
*/
|
|
7513
7730
|
buffering_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
7514
7731
|
/**
|
|
@@ -7516,11 +7733,15 @@ interface DivVideoProps {
|
|
|
7516
7733
|
*/
|
|
7517
7734
|
column_span?: Type<number | DivExpression>;
|
|
7518
7735
|
/**
|
|
7519
|
-
*
|
|
7736
|
+
* Actions when an element disappears from the screen.
|
|
7737
|
+
*/
|
|
7738
|
+
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
7739
|
+
/**
|
|
7740
|
+
* Time interval from the video beginning to the current position in milliseconds.
|
|
7520
7741
|
*/
|
|
7521
7742
|
elapsed_time_variable?: Type<string>;
|
|
7522
7743
|
/**
|
|
7523
|
-
* Actions
|
|
7744
|
+
* Actions performed after the video ends.
|
|
7524
7745
|
*/
|
|
7525
7746
|
end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
7526
7747
|
/**
|
|
@@ -7553,7 +7774,7 @@ interface DivVideoProps {
|
|
|
7553
7774
|
*/
|
|
7554
7775
|
margins?: Type<IDivEdgeInsets>;
|
|
7555
7776
|
/**
|
|
7556
|
-
*
|
|
7777
|
+
* This option mutes video.
|
|
7557
7778
|
*/
|
|
7558
7779
|
muted?: Type<IntBoolean | DivExpression>;
|
|
7559
7780
|
/**
|
|
@@ -7565,20 +7786,20 @@ interface DivVideoProps {
|
|
|
7565
7786
|
*/
|
|
7566
7787
|
pause_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
7567
7788
|
/**
|
|
7568
|
-
*
|
|
7789
|
+
* Additional information that can be used in the player.
|
|
7569
7790
|
*/
|
|
7570
7791
|
player_settings_payload?: Type<{}>;
|
|
7571
7792
|
/**
|
|
7572
|
-
*
|
|
7573
|
-
*
|
|
7793
|
+
* Video preview encoded in `base64`. Will be shown until the video is ready to play. `Data url`
|
|
7794
|
+
* format: `data:[;base64],<data>`
|
|
7574
7795
|
*/
|
|
7575
7796
|
preview?: Type<string | DivExpression>;
|
|
7576
7797
|
/**
|
|
7577
|
-
*
|
|
7798
|
+
* This option turns on video repeat.
|
|
7578
7799
|
*/
|
|
7579
7800
|
repeatable?: Type<IntBoolean | DivExpression>;
|
|
7580
7801
|
/**
|
|
7581
|
-
* Actions
|
|
7802
|
+
* Actions performed when video playback resumes.
|
|
7582
7803
|
*/
|
|
7583
7804
|
resume_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
7584
7805
|
/**
|
|
@@ -7619,7 +7840,7 @@ interface DivVideoProps {
|
|
|
7619
7840
|
* Animation starting triggers. Default value: `[state_change, visibility_change]`.
|
|
7620
7841
|
*/
|
|
7621
7842
|
transition_triggers?: Type<NonEmptyArray<DivTransitionTrigger>>;
|
|
7622
|
-
|
|
7843
|
+
video_sources: Type<NonEmptyArray<DivVideoSource>>;
|
|
7623
7844
|
/**
|
|
7624
7845
|
* Element visibility.
|
|
7625
7846
|
*/
|
|
@@ -7639,102 +7860,72 @@ interface DivVideoProps {
|
|
|
7639
7860
|
width?: Type<DivSize>;
|
|
7640
7861
|
}
|
|
7641
7862
|
|
|
7642
|
-
declare
|
|
7643
|
-
|
|
7644
|
-
/**
|
|
7645
|
-
* Data for stream display.
|
|
7646
|
-
*/
|
|
7647
|
-
declare class DivVideoDataStream<T extends DivVideoDataStreamProps = DivVideoDataStreamProps> {
|
|
7648
|
-
readonly _props?: Exact<DivVideoDataStreamProps, T>;
|
|
7649
|
-
readonly type = "stream";
|
|
7650
|
-
/**
|
|
7651
|
-
* Contains a link to the stream.
|
|
7652
|
-
*/
|
|
7653
|
-
url: Type<string | DivExpression>;
|
|
7654
|
-
constructor(props: Exact<DivVideoDataStreamProps, T>);
|
|
7655
|
-
}
|
|
7656
|
-
interface DivVideoDataStreamProps {
|
|
7657
|
-
/**
|
|
7658
|
-
* Contains a link to the stream.
|
|
7659
|
-
*/
|
|
7660
|
-
url: Type<string | DivExpression>;
|
|
7661
|
-
}
|
|
7662
|
-
|
|
7663
|
-
/**
|
|
7664
|
-
* Data for video display.
|
|
7665
|
-
*/
|
|
7666
|
-
declare class DivVideoDataVideo<T extends DivVideoDataVideoProps = DivVideoDataVideoProps> {
|
|
7667
|
-
readonly _props?: Exact<DivVideoDataVideoProps, T>;
|
|
7668
|
-
readonly type = "video";
|
|
7669
|
-
video_sources: Type<NonEmptyArray<DivVideoDataVideoSource>>;
|
|
7670
|
-
constructor(props: Exact<DivVideoDataVideoProps, T>);
|
|
7671
|
-
}
|
|
7672
|
-
interface DivVideoDataVideoProps {
|
|
7673
|
-
video_sources: Type<NonEmptyArray<DivVideoDataVideoSource>>;
|
|
7674
|
-
}
|
|
7675
|
-
|
|
7676
|
-
declare class DivVideoDataVideoSource<T extends DivVideoDataVideoSourceProps = DivVideoDataVideoSourceProps> {
|
|
7677
|
-
readonly _props?: Exact<DivVideoDataVideoSourceProps, T>;
|
|
7863
|
+
declare class DivVideoSource<T extends DivVideoSourceProps = DivVideoSourceProps> {
|
|
7864
|
+
readonly _props?: Exact<DivVideoSourceProps, T>;
|
|
7678
7865
|
readonly type = "video_source";
|
|
7679
7866
|
/**
|
|
7680
|
-
*
|
|
7867
|
+
* Properties of the media file that determines the data transfer rate in the video stream.
|
|
7868
|
+
* Bitrate is measured in kilobits per second (kbps) and indicates how much data is transmitted
|
|
7869
|
+
* per unit of time.
|
|
7681
7870
|
*/
|
|
7682
|
-
|
|
7871
|
+
bitrate?: Type<number | DivExpression>;
|
|
7683
7872
|
/**
|
|
7684
|
-
* The property defines the MIME type (Multipurpose Internet Mail Extensions) for the
|
|
7873
|
+
* The property defines the MIME type (Multipurpose Internet Mail Extensions) for the media file.
|
|
7685
7874
|
* A MIME type is a string that indicates the type of file content and is used to determine the
|
|
7686
7875
|
* type of file and its correct processing.
|
|
7687
7876
|
*/
|
|
7688
|
-
mime_type
|
|
7877
|
+
mime_type: Type<string | DivExpression>;
|
|
7689
7878
|
/**
|
|
7690
|
-
*
|
|
7879
|
+
* Media file Resolution.
|
|
7691
7880
|
*/
|
|
7692
|
-
resolution?: Type<
|
|
7881
|
+
resolution?: Type<DivVideoSourceResolution>;
|
|
7693
7882
|
/**
|
|
7694
|
-
* The property contains a link to a
|
|
7883
|
+
* The property contains a link to a media file available for playback or download.
|
|
7695
7884
|
*/
|
|
7696
7885
|
url: Type<string | DivExpression>;
|
|
7697
|
-
constructor(props: Exact<
|
|
7886
|
+
constructor(props: Exact<DivVideoSourceProps, T>);
|
|
7698
7887
|
}
|
|
7699
|
-
interface
|
|
7888
|
+
interface DivVideoSourceProps {
|
|
7700
7889
|
/**
|
|
7701
|
-
*
|
|
7890
|
+
* Properties of the media file that determines the data transfer rate in the video stream.
|
|
7891
|
+
* Bitrate is measured in kilobits per second (kbps) and indicates how much data is transmitted
|
|
7892
|
+
* per unit of time.
|
|
7702
7893
|
*/
|
|
7703
|
-
|
|
7894
|
+
bitrate?: Type<number | DivExpression>;
|
|
7704
7895
|
/**
|
|
7705
|
-
* The property defines the MIME type (Multipurpose Internet Mail Extensions) for the
|
|
7896
|
+
* The property defines the MIME type (Multipurpose Internet Mail Extensions) for the media file.
|
|
7706
7897
|
* A MIME type is a string that indicates the type of file content and is used to determine the
|
|
7707
7898
|
* type of file and its correct processing.
|
|
7708
7899
|
*/
|
|
7709
|
-
mime_type
|
|
7900
|
+
mime_type: Type<string | DivExpression>;
|
|
7710
7901
|
/**
|
|
7711
|
-
*
|
|
7902
|
+
* Media file Resolution.
|
|
7712
7903
|
*/
|
|
7713
|
-
resolution?: Type<
|
|
7904
|
+
resolution?: Type<DivVideoSourceResolution>;
|
|
7714
7905
|
/**
|
|
7715
|
-
* The property contains a link to a
|
|
7906
|
+
* The property contains a link to a media file available for playback or download.
|
|
7716
7907
|
*/
|
|
7717
7908
|
url: Type<string | DivExpression>;
|
|
7718
7909
|
}
|
|
7719
7910
|
/**
|
|
7720
|
-
*
|
|
7911
|
+
* Media file Resolution.
|
|
7721
7912
|
*/
|
|
7722
|
-
declare class
|
|
7723
|
-
readonly _props?: Exact<
|
|
7913
|
+
declare class DivVideoSourceResolution<T extends DivVideoSourceResolutionProps = DivVideoSourceResolutionProps> {
|
|
7914
|
+
readonly _props?: Exact<DivVideoSourceResolutionProps, T>;
|
|
7724
7915
|
readonly type = "resolution";
|
|
7725
7916
|
/**
|
|
7726
|
-
* Contains information about the resolution height of the
|
|
7917
|
+
* Contains information about the resolution height of the Media file.
|
|
7727
7918
|
*/
|
|
7728
7919
|
height: Type<number | DivExpression>;
|
|
7729
7920
|
/**
|
|
7730
7921
|
* Contains information about the resolution width of the video file.
|
|
7731
7922
|
*/
|
|
7732
7923
|
width: Type<number | DivExpression>;
|
|
7733
|
-
constructor(props: Exact<
|
|
7924
|
+
constructor(props: Exact<DivVideoSourceResolutionProps, T>);
|
|
7734
7925
|
}
|
|
7735
|
-
interface
|
|
7926
|
+
interface DivVideoSourceResolutionProps {
|
|
7736
7927
|
/**
|
|
7737
|
-
* Contains information about the resolution height of the
|
|
7928
|
+
* Contains information about the resolution height of the Media file.
|
|
7738
7929
|
*/
|
|
7739
7930
|
height: Type<number | DivExpression>;
|
|
7740
7931
|
/**
|
|
@@ -8093,4 +8284,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
|
|
|
8093
8284
|
};
|
|
8094
8285
|
};
|
|
8095
8286
|
|
|
8096
|
-
export { BooleanVariable, BooleanVariableProps, ColorVariable, ColorVariableProps, DelimiterStyleOrientation, Div, DivAccessibilityMode, DivAccessibilityType, DivActionTarget, DivAlignmentHorizontal, DivAlignmentVertical, DivAnimationInterpolator, DivAnimationName, DivAppearanceSetTransition, DivAppearanceSetTransitionProps, DivAppearanceTransition, DivBackground, DivBlendMode, DivBlur, DivBlurProps, DivChangeBoundsTransition, DivChangeBoundsTransitionProps, DivChangeSetTransition, DivChangeSetTransitionProps, DivChangeTransition, DivCircleShape, DivCircleShapeProps, DivContainer, DivContainerLayoutMode, DivContainerOrientation, DivContainerProps, DivCount, DivCurrencyInputMask, DivCurrencyInputMaskProps, DivCustom, DivCustomProps, DivDefaultIndicatorItemPlacement, DivDefaultIndicatorItemPlacementProps, DivDrawable, DivExpression, DivFadeTransition, DivFadeTransitionProps, DivFilter, DivFixedCount, DivFixedCountProps, DivFixedLengthInputMask, DivFixedLengthInputMaskProps, DivFixedSize, DivFixedSizeProps, DivFontFamily, DivFontWeight, DivGallery, DivGalleryCrossContentAlignment, DivGalleryOrientation, DivGalleryProps, DivGalleryScrollMode, 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, DivPager, DivPagerLayoutMode, DivPagerOrientation, DivPagerProps, DivPatchMode, DivPercentageSize, DivPercentageSizeProps, 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, DivVariable, DivVideo,
|
|
8287
|
+
export { BooleanVariable, BooleanVariableProps, ColorVariable, ColorVariableProps, DelimiterStyleOrientation, DictVariable, DictVariableProps, Div, DivAccessibilityMode, DivAccessibilityType, DivActionTarget, DivAlignmentHorizontal, DivAlignmentVertical, DivAnimationInterpolator, DivAnimationName, DivAppearanceSetTransition, DivAppearanceSetTransitionProps, DivAppearanceTransition, DivBackground, DivBlendMode, DivBlur, DivBlurProps, DivChangeBoundsTransition, DivChangeBoundsTransitionProps, DivChangeSetTransition, DivChangeSetTransitionProps, DivChangeTransition, DivCircleShape, DivCircleShapeProps, DivContainer, DivContainerLayoutMode, DivContainerOrientation, DivContainerProps, DivContentAlignmentHorizontal, DivContentAlignmentVertical, DivCount, DivCurrencyInputMask, DivCurrencyInputMaskProps, DivCustom, DivCustomProps, DivDefaultIndicatorItemPlacement, DivDefaultIndicatorItemPlacementProps, DivDrawable, DivExpression, DivFadeTransition, DivFadeTransitionProps, DivFilter, DivFixedCount, DivFixedCountProps, DivFixedLengthInputMask, DivFixedLengthInputMaskProps, DivFixedSize, DivFixedSizeProps, DivFontFamily, DivFontWeight, DivGallery, DivGalleryCrossContentAlignment, DivGalleryOrientation, DivGalleryProps, DivGalleryScrollMode, 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, DivPager, DivPagerLayoutMode, DivPagerOrientation, DivPagerProps, DivPatchMode, DivPercentageSize, DivPercentageSizeProps, 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, DivVariable, DivVideo, DivVideoProps, DivVideoSource, DivVideoSourceProps, DivVideoSourceResolution, DivVideoSourceResolutionProps, DivVisibility, DivWrapContentSize, DivWrapContentSizeProps, Exact, IDivAbsoluteEdgeInsets, IDivAccessibility, IDivAction, IDivActionMenuItem, IDivAnimation, IDivAspect, IDivBase, IDivBorder, IDivContainerSeparator, IDivCornersRadius, IDivData, IDivDataState, IDivDimension, IDivDisappearAction, IDivDownloadCallbacks, IDivEdgeInsets, IDivExtension, IDivFixedLengthInputMaskPatternElement, IDivFocus, IDivFocusNextFocusIds, IDivInputMaskBase, IDivInputNativeInterface, IDivInputValidatorBase, IDivPatch, IDivPatchChange, IDivPoint, IDivSelectOption, IDivSeparatorDelimiterStyle, IDivShadow, IDivSliderTextStyle, IDivStateState, IDivStroke, IDivTabsItem, IDivTabsTabTitleStyle, IDivTextEllipsis, IDivTextImage, IDivTextRange, IDivTextRangeBorder, IDivTimer, IDivTooltip, IDivTransform, IDivTransitionBase, IDivTrigger, IDivVisibilityAction, IDivWrapContentSizeConstraintSize, ITemplates, IntBoolean, IntegerVariable, IntegerVariableProps, NonEmptyArray, NumberVariable, NumberVariableProps, SafeDivExpression, StringVariable, StringVariableProps, TabTitleStyleAnimationType, TemplateBlock, TemplateHelper, TemplatePropertyReference, TemplateResolvedAction, ThelperWithMemo, Type, UrlVariable, UrlVariableProps, copyTemplates, divCard, escapeCard, escapeExpression, expression, fixed, getTemplateHash, matchParent, reference, rewriteNames, rewriteRefs, rewriteTemplateVersions, runResolveDeps, template, templateHelper, templatesDepsMap, thelperVersion, thelperWithMemo, treeWalkDFS, weighted, wrapContent };
|