@divkitframework/jsonbuilder 29.15.0 → 30.1.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 +37 -3
- package/dist/es/jsonbuilder.js.map +1 -1
- package/dist/jsonbuilder.d.ts +317 -139
- package/dist/jsonbuilder.js +38 -2
- package/dist/jsonbuilder.js.map +1 -1
- package/package.json +1 -1
package/dist/jsonbuilder.d.ts
CHANGED
|
@@ -323,7 +323,7 @@ declare type DivAccessibilityType = 'none' | 'button' | 'image' | 'text' | 'edit
|
|
|
323
323
|
*/
|
|
324
324
|
interface IDivAction {
|
|
325
325
|
/**
|
|
326
|
-
* Callbacks that are called after [data loading](../../interaction
|
|
326
|
+
* Callbacks that are called after [data loading](../../interaction#loading-data).
|
|
327
327
|
*/
|
|
328
328
|
download_callbacks?: Type<IDivDownloadCallbacks>;
|
|
329
329
|
/**
|
|
@@ -334,7 +334,7 @@ interface IDivAction {
|
|
|
334
334
|
/**
|
|
335
335
|
* Logging ID.
|
|
336
336
|
*/
|
|
337
|
-
log_id: Type<string>;
|
|
337
|
+
log_id: Type<string | DivExpression>;
|
|
338
338
|
/**
|
|
339
339
|
* URL for logging.
|
|
340
340
|
*/
|
|
@@ -358,7 +358,7 @@ interface IDivAction {
|
|
|
358
358
|
typed?: Type<DivActionTyped>;
|
|
359
359
|
/**
|
|
360
360
|
* URL. Possible values: `url` or `div-action://`. To learn more, see [Interaction with
|
|
361
|
-
* elements](../../interaction
|
|
361
|
+
* elements](../../interaction).
|
|
362
362
|
*/
|
|
363
363
|
url?: Type<string | DivExpression>;
|
|
364
364
|
}
|
|
@@ -584,7 +584,7 @@ interface IDivBase {
|
|
|
584
584
|
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
585
585
|
/**
|
|
586
586
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
587
|
-
* [DivExtension](../../extensions
|
|
587
|
+
* [DivExtension](../../extensions).
|
|
588
588
|
*/
|
|
589
589
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
590
590
|
/**
|
|
@@ -594,7 +594,7 @@ interface IDivBase {
|
|
|
594
594
|
/**
|
|
595
595
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
596
596
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
597
|
-
* measurement, see [Layout inside the card](../../layout
|
|
597
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
598
598
|
*/
|
|
599
599
|
height?: Type<DivSize>;
|
|
600
600
|
/**
|
|
@@ -637,7 +637,7 @@ interface IDivBase {
|
|
|
637
637
|
/**
|
|
638
638
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
639
639
|
* the concept of transitions, see [Animated
|
|
640
|
-
* transitions](../../interaction
|
|
640
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
641
641
|
*/
|
|
642
642
|
transition_in?: Type<DivAppearanceTransition>;
|
|
643
643
|
/**
|
|
@@ -917,7 +917,7 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
|
|
|
917
917
|
doubletap_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
918
918
|
/**
|
|
919
919
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
920
|
-
* [DivExtension](../../extensions
|
|
920
|
+
* [DivExtension](../../extensions).
|
|
921
921
|
*/
|
|
922
922
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
923
923
|
/**
|
|
@@ -927,7 +927,7 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
|
|
|
927
927
|
/**
|
|
928
928
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
929
929
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
930
|
-
* measurement, see [Layout inside the card](../../layout
|
|
930
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
931
931
|
*/
|
|
932
932
|
height?: Type<DivSize>;
|
|
933
933
|
/**
|
|
@@ -1007,7 +1007,7 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
|
|
|
1007
1007
|
/**
|
|
1008
1008
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
1009
1009
|
* the concept of transitions, see [Animated
|
|
1010
|
-
* transitions](../../interaction
|
|
1010
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
1011
1011
|
*/
|
|
1012
1012
|
transition_in?: Type<DivAppearanceTransition>;
|
|
1013
1013
|
/**
|
|
@@ -1112,7 +1112,7 @@ interface DivContainerPropsBase {
|
|
|
1112
1112
|
doubletap_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
1113
1113
|
/**
|
|
1114
1114
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
1115
|
-
* [DivExtension](../../extensions
|
|
1115
|
+
* [DivExtension](../../extensions).
|
|
1116
1116
|
*/
|
|
1117
1117
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
1118
1118
|
/**
|
|
@@ -1122,7 +1122,7 @@ interface DivContainerPropsBase {
|
|
|
1122
1122
|
/**
|
|
1123
1123
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
1124
1124
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
1125
|
-
* measurement, see [Layout inside the card](../../layout
|
|
1125
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
1126
1126
|
*/
|
|
1127
1127
|
height?: Type<DivSize>;
|
|
1128
1128
|
/**
|
|
@@ -1202,7 +1202,7 @@ interface DivContainerPropsBase {
|
|
|
1202
1202
|
/**
|
|
1203
1203
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
1204
1204
|
* the concept of transitions, see [Animated
|
|
1205
|
-
* transitions](../../interaction
|
|
1205
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
1206
1206
|
*/
|
|
1207
1207
|
transition_in?: Type<DivAppearanceTransition>;
|
|
1208
1208
|
/**
|
|
@@ -1377,7 +1377,7 @@ declare class DivCustom<T extends DivCustomProps = DivCustomProps> {
|
|
|
1377
1377
|
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
1378
1378
|
/**
|
|
1379
1379
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
1380
|
-
* [DivExtension](../../extensions
|
|
1380
|
+
* [DivExtension](../../extensions).
|
|
1381
1381
|
*/
|
|
1382
1382
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
1383
1383
|
/**
|
|
@@ -1387,7 +1387,7 @@ declare class DivCustom<T extends DivCustomProps = DivCustomProps> {
|
|
|
1387
1387
|
/**
|
|
1388
1388
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
1389
1389
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
1390
|
-
* measurement, see [Layout inside the card](../../layout
|
|
1390
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
1391
1391
|
*/
|
|
1392
1392
|
height?: Type<DivSize>;
|
|
1393
1393
|
/**
|
|
@@ -1434,7 +1434,7 @@ declare class DivCustom<T extends DivCustomProps = DivCustomProps> {
|
|
|
1434
1434
|
/**
|
|
1435
1435
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
1436
1436
|
* the concept of transitions, see [Animated
|
|
1437
|
-
* transitions](../../interaction
|
|
1437
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
1438
1438
|
*/
|
|
1439
1439
|
transition_in?: Type<DivAppearanceTransition>;
|
|
1440
1440
|
/**
|
|
@@ -1507,7 +1507,7 @@ interface DivCustomProps {
|
|
|
1507
1507
|
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
1508
1508
|
/**
|
|
1509
1509
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
1510
|
-
* [DivExtension](../../extensions
|
|
1510
|
+
* [DivExtension](../../extensions).
|
|
1511
1511
|
*/
|
|
1512
1512
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
1513
1513
|
/**
|
|
@@ -1517,7 +1517,7 @@ interface DivCustomProps {
|
|
|
1517
1517
|
/**
|
|
1518
1518
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
1519
1519
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
1520
|
-
* measurement, see [Layout inside the card](../../layout
|
|
1520
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
1521
1521
|
*/
|
|
1522
1522
|
height?: Type<DivSize>;
|
|
1523
1523
|
/**
|
|
@@ -1564,7 +1564,7 @@ interface DivCustomProps {
|
|
|
1564
1564
|
/**
|
|
1565
1565
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
1566
1566
|
* the concept of transitions, see [Animated
|
|
1567
|
-
* transitions](../../interaction
|
|
1567
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
1568
1568
|
*/
|
|
1569
1569
|
transition_in?: Type<DivAppearanceTransition>;
|
|
1570
1570
|
/**
|
|
@@ -1634,7 +1634,7 @@ interface IDivDisappearAction {
|
|
|
1634
1634
|
*/
|
|
1635
1635
|
disappear_duration?: Type<number | DivExpression>;
|
|
1636
1636
|
/**
|
|
1637
|
-
* Callbacks that are called after [data loading](../../interaction
|
|
1637
|
+
* Callbacks that are called after [data loading](../../interaction#loading-data).
|
|
1638
1638
|
*/
|
|
1639
1639
|
download_callbacks?: Type<IDivDownloadCallbacks>;
|
|
1640
1640
|
/**
|
|
@@ -1645,7 +1645,7 @@ interface IDivDisappearAction {
|
|
|
1645
1645
|
/**
|
|
1646
1646
|
* Logging ID.
|
|
1647
1647
|
*/
|
|
1648
|
-
log_id: Type<string>;
|
|
1648
|
+
log_id: Type<string | DivExpression>;
|
|
1649
1649
|
/**
|
|
1650
1650
|
* Limit on the number of loggings. If `0`, the limit is removed.
|
|
1651
1651
|
*/
|
|
@@ -1661,7 +1661,7 @@ interface IDivDisappearAction {
|
|
|
1661
1661
|
typed?: Type<DivActionTyped>;
|
|
1662
1662
|
/**
|
|
1663
1663
|
* URL. Possible values: `url` or `div-action://`. To learn more, see [Interaction with
|
|
1664
|
-
* elements](../../interaction
|
|
1664
|
+
* elements](../../interaction).
|
|
1665
1665
|
*/
|
|
1666
1666
|
url?: Type<string | DivExpression>;
|
|
1667
1667
|
/**
|
|
@@ -1671,7 +1671,7 @@ interface IDivDisappearAction {
|
|
|
1671
1671
|
}
|
|
1672
1672
|
|
|
1673
1673
|
/**
|
|
1674
|
-
* Callbacks that are called after [data loading](../../interaction
|
|
1674
|
+
* Callbacks that are called after [data loading](../../interaction#loading-data).
|
|
1675
1675
|
*/
|
|
1676
1676
|
interface IDivDownloadCallbacks {
|
|
1677
1677
|
/**
|
|
@@ -1881,7 +1881,7 @@ declare class DivFixedSize<T extends DivFixedSizeProps = DivFixedSizeProps> {
|
|
|
1881
1881
|
readonly type = "fixed";
|
|
1882
1882
|
/**
|
|
1883
1883
|
* Unit of measurement. To learn more about units of size measurement, see [Layout inside the
|
|
1884
|
-
* card](../../layout
|
|
1884
|
+
* card](../../layout).
|
|
1885
1885
|
*/
|
|
1886
1886
|
unit?: Type<DivSizeUnit | DivExpression>;
|
|
1887
1887
|
/**
|
|
@@ -1893,7 +1893,7 @@ declare class DivFixedSize<T extends DivFixedSizeProps = DivFixedSizeProps> {
|
|
|
1893
1893
|
interface DivFixedSizeProps {
|
|
1894
1894
|
/**
|
|
1895
1895
|
* Unit of measurement. To learn more about units of size measurement, see [Layout inside the
|
|
1896
|
-
* card](../../layout
|
|
1896
|
+
* card](../../layout).
|
|
1897
1897
|
*/
|
|
1898
1898
|
unit?: Type<DivSizeUnit | DivExpression>;
|
|
1899
1899
|
/**
|
|
@@ -2002,7 +2002,7 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
|
|
|
2002
2002
|
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
2003
2003
|
/**
|
|
2004
2004
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
2005
|
-
* [DivExtension](../../extensions
|
|
2005
|
+
* [DivExtension](../../extensions).
|
|
2006
2006
|
*/
|
|
2007
2007
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
2008
2008
|
/**
|
|
@@ -2012,7 +2012,7 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
|
|
|
2012
2012
|
/**
|
|
2013
2013
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
2014
2014
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
2015
|
-
* measurement, see [Layout inside the card](../../layout
|
|
2015
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
2016
2016
|
*/
|
|
2017
2017
|
height?: Type<DivSize>;
|
|
2018
2018
|
/**
|
|
@@ -2020,6 +2020,10 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
|
|
|
2020
2020
|
* on iOS.
|
|
2021
2021
|
*/
|
|
2022
2022
|
id?: Type<string>;
|
|
2023
|
+
/**
|
|
2024
|
+
* Sets collection elements dynamically using `data` and `prototypes`.
|
|
2025
|
+
*/
|
|
2026
|
+
item_builder?: Type<IDivCollectionItemBuilder>;
|
|
2023
2027
|
/**
|
|
2024
2028
|
* Spacing between elements.
|
|
2025
2029
|
*/
|
|
@@ -2028,9 +2032,9 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
|
|
|
2028
2032
|
* Gallery elements. Scrolling to elements can be implemented
|
|
2029
2033
|
* using:`div-action://set_current_item?id=&item=` — scrolling to the element with an ordinal
|
|
2030
2034
|
* number `item` inside an element, with the specified
|
|
2031
|
-
* `id`;`div-action://set_next_item?id=[&overflow={clamp
|
|
2035
|
+
* `id`;`div-action://set_next_item?id=[&overflow={clamp\|ring}]` — scrolling to the next element
|
|
2032
2036
|
* inside an element, with the specified
|
|
2033
|
-
* `id`;`div-action://set_previous_item?id=[&overflow={clamp
|
|
2037
|
+
* `id`;`div-action://set_previous_item?id=[&overflow={clamp\|ring}]` — scrolling to the previous
|
|
2034
2038
|
* element inside an element, with the specified `id`.</p><p>The optional `overflow` parameter is
|
|
2035
2039
|
* used to set navigation when the first or last element is reached:`clamp` — transition will
|
|
2036
2040
|
* stop at the border element;`ring` — go to the beginning or end, depending on the current
|
|
@@ -2092,7 +2096,7 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
|
|
|
2092
2096
|
/**
|
|
2093
2097
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
2094
2098
|
* the concept of transitions, see [Animated
|
|
2095
|
-
* transitions](../../interaction
|
|
2099
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
2096
2100
|
*/
|
|
2097
2101
|
transition_in?: Type<DivAppearanceTransition>;
|
|
2098
2102
|
/**
|
|
@@ -2179,7 +2183,7 @@ interface DivGalleryProps {
|
|
|
2179
2183
|
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
2180
2184
|
/**
|
|
2181
2185
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
2182
|
-
* [DivExtension](../../extensions
|
|
2186
|
+
* [DivExtension](../../extensions).
|
|
2183
2187
|
*/
|
|
2184
2188
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
2185
2189
|
/**
|
|
@@ -2189,7 +2193,7 @@ interface DivGalleryProps {
|
|
|
2189
2193
|
/**
|
|
2190
2194
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
2191
2195
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
2192
|
-
* measurement, see [Layout inside the card](../../layout
|
|
2196
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
2193
2197
|
*/
|
|
2194
2198
|
height?: Type<DivSize>;
|
|
2195
2199
|
/**
|
|
@@ -2197,6 +2201,10 @@ interface DivGalleryProps {
|
|
|
2197
2201
|
* on iOS.
|
|
2198
2202
|
*/
|
|
2199
2203
|
id?: Type<string>;
|
|
2204
|
+
/**
|
|
2205
|
+
* Sets collection elements dynamically using `data` and `prototypes`.
|
|
2206
|
+
*/
|
|
2207
|
+
item_builder?: Type<IDivCollectionItemBuilder>;
|
|
2200
2208
|
/**
|
|
2201
2209
|
* Spacing between elements.
|
|
2202
2210
|
*/
|
|
@@ -2205,9 +2213,9 @@ interface DivGalleryProps {
|
|
|
2205
2213
|
* Gallery elements. Scrolling to elements can be implemented
|
|
2206
2214
|
* using:`div-action://set_current_item?id=&item=` — scrolling to the element with an ordinal
|
|
2207
2215
|
* number `item` inside an element, with the specified
|
|
2208
|
-
* `id`;`div-action://set_next_item?id=[&overflow={clamp
|
|
2216
|
+
* `id`;`div-action://set_next_item?id=[&overflow={clamp\|ring}]` — scrolling to the next element
|
|
2209
2217
|
* inside an element, with the specified
|
|
2210
|
-
* `id`;`div-action://set_previous_item?id=[&overflow={clamp
|
|
2218
|
+
* `id`;`div-action://set_previous_item?id=[&overflow={clamp\|ring}]` — scrolling to the previous
|
|
2211
2219
|
* element inside an element, with the specified `id`.</p><p>The optional `overflow` parameter is
|
|
2212
2220
|
* used to set navigation when the first or last element is reached:`clamp` — transition will
|
|
2213
2221
|
* stop at the border element;`ring` — go to the beginning or end, depending on the current
|
|
@@ -2269,7 +2277,7 @@ interface DivGalleryProps {
|
|
|
2269
2277
|
/**
|
|
2270
2278
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
2271
2279
|
* the concept of transitions, see [Animated
|
|
2272
|
-
* transitions](../../interaction
|
|
2280
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
2273
2281
|
*/
|
|
2274
2282
|
transition_in?: Type<DivAppearanceTransition>;
|
|
2275
2283
|
/**
|
|
@@ -2373,7 +2381,7 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
|
|
|
2373
2381
|
doubletap_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
2374
2382
|
/**
|
|
2375
2383
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
2376
|
-
* [DivExtension](../../extensions
|
|
2384
|
+
* [DivExtension](../../extensions).
|
|
2377
2385
|
*/
|
|
2378
2386
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
2379
2387
|
/**
|
|
@@ -2387,7 +2395,7 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
|
|
|
2387
2395
|
/**
|
|
2388
2396
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
2389
2397
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
2390
|
-
* measurement, see [Layout inside the card](../../layout
|
|
2398
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
2391
2399
|
*/
|
|
2392
2400
|
height?: Type<DivSize>;
|
|
2393
2401
|
/**
|
|
@@ -2453,7 +2461,7 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
|
|
|
2453
2461
|
/**
|
|
2454
2462
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
2455
2463
|
* the concept of transitions, see [Animated
|
|
2456
|
-
* transitions](../../interaction
|
|
2464
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
2457
2465
|
*/
|
|
2458
2466
|
transition_in?: Type<DivAppearanceTransition>;
|
|
2459
2467
|
/**
|
|
@@ -2548,7 +2556,7 @@ interface DivGifImageProps {
|
|
|
2548
2556
|
doubletap_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
2549
2557
|
/**
|
|
2550
2558
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
2551
|
-
* [DivExtension](../../extensions
|
|
2559
|
+
* [DivExtension](../../extensions).
|
|
2552
2560
|
*/
|
|
2553
2561
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
2554
2562
|
/**
|
|
@@ -2562,7 +2570,7 @@ interface DivGifImageProps {
|
|
|
2562
2570
|
/**
|
|
2563
2571
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
2564
2572
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
2565
|
-
* measurement, see [Layout inside the card](../../layout
|
|
2573
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
2566
2574
|
*/
|
|
2567
2575
|
height?: Type<DivSize>;
|
|
2568
2576
|
/**
|
|
@@ -2628,7 +2636,7 @@ interface DivGifImageProps {
|
|
|
2628
2636
|
/**
|
|
2629
2637
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
2630
2638
|
* the concept of transitions, see [Animated
|
|
2631
|
-
* transitions](../../interaction
|
|
2639
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
2632
2640
|
*/
|
|
2633
2641
|
transition_in?: Type<DivAppearanceTransition>;
|
|
2634
2642
|
/**
|
|
@@ -2727,7 +2735,7 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
|
|
|
2727
2735
|
doubletap_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
2728
2736
|
/**
|
|
2729
2737
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
2730
|
-
* [DivExtension](../../extensions
|
|
2738
|
+
* [DivExtension](../../extensions).
|
|
2731
2739
|
*/
|
|
2732
2740
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
2733
2741
|
/**
|
|
@@ -2737,7 +2745,7 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
|
|
|
2737
2745
|
/**
|
|
2738
2746
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
2739
2747
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
2740
|
-
* measurement, see [Layout inside the card](../../layout
|
|
2748
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
2741
2749
|
*/
|
|
2742
2750
|
height?: Type<DivSize>;
|
|
2743
2751
|
/**
|
|
@@ -2789,7 +2797,7 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
|
|
|
2789
2797
|
/**
|
|
2790
2798
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
2791
2799
|
* the concept of transitions, see [Animated
|
|
2792
|
-
* transitions](../../interaction
|
|
2800
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
2793
2801
|
*/
|
|
2794
2802
|
transition_in?: Type<DivAppearanceTransition>;
|
|
2795
2803
|
/**
|
|
@@ -2883,7 +2891,7 @@ interface DivGridProps {
|
|
|
2883
2891
|
doubletap_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
2884
2892
|
/**
|
|
2885
2893
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
2886
|
-
* [DivExtension](../../extensions
|
|
2894
|
+
* [DivExtension](../../extensions).
|
|
2887
2895
|
*/
|
|
2888
2896
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
2889
2897
|
/**
|
|
@@ -2893,7 +2901,7 @@ interface DivGridProps {
|
|
|
2893
2901
|
/**
|
|
2894
2902
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
2895
2903
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
2896
|
-
* measurement, see [Layout inside the card](../../layout
|
|
2904
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
2897
2905
|
*/
|
|
2898
2906
|
height?: Type<DivSize>;
|
|
2899
2907
|
/**
|
|
@@ -2945,7 +2953,7 @@ interface DivGridProps {
|
|
|
2945
2953
|
/**
|
|
2946
2954
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
2947
2955
|
* the concept of transitions, see [Animated
|
|
2948
|
-
* transitions](../../interaction
|
|
2956
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
2949
2957
|
*/
|
|
2950
2958
|
transition_in?: Type<DivAppearanceTransition>;
|
|
2951
2959
|
/**
|
|
@@ -3049,7 +3057,7 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
|
|
|
3049
3057
|
doubletap_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
3050
3058
|
/**
|
|
3051
3059
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
3052
|
-
* [DivExtension](../../extensions
|
|
3060
|
+
* [DivExtension](../../extensions).
|
|
3053
3061
|
*/
|
|
3054
3062
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
3055
3063
|
/**
|
|
@@ -3063,7 +3071,7 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
|
|
|
3063
3071
|
/**
|
|
3064
3072
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
3065
3073
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
3066
|
-
* measurement, see [Layout inside the card](../../layout
|
|
3074
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
3067
3075
|
*/
|
|
3068
3076
|
height?: Type<DivSize>;
|
|
3069
3077
|
/**
|
|
@@ -3147,7 +3155,7 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
|
|
|
3147
3155
|
/**
|
|
3148
3156
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
3149
3157
|
* the concept of transitions, see [Animated
|
|
3150
|
-
* transitions](../../interaction
|
|
3158
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
3151
3159
|
*/
|
|
3152
3160
|
transition_in?: Type<DivAppearanceTransition>;
|
|
3153
3161
|
/**
|
|
@@ -3246,7 +3254,7 @@ interface DivImageProps {
|
|
|
3246
3254
|
doubletap_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
3247
3255
|
/**
|
|
3248
3256
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
3249
|
-
* [DivExtension](../../extensions
|
|
3257
|
+
* [DivExtension](../../extensions).
|
|
3250
3258
|
*/
|
|
3251
3259
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
3252
3260
|
/**
|
|
@@ -3260,7 +3268,7 @@ interface DivImageProps {
|
|
|
3260
3268
|
/**
|
|
3261
3269
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
3262
3270
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
3263
|
-
* measurement, see [Layout inside the card](../../layout
|
|
3271
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
3264
3272
|
*/
|
|
3265
3273
|
height?: Type<DivSize>;
|
|
3266
3274
|
/**
|
|
@@ -3344,7 +3352,7 @@ interface DivImageProps {
|
|
|
3344
3352
|
/**
|
|
3345
3353
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
3346
3354
|
* the concept of transitions, see [Animated
|
|
3347
|
-
* transitions](../../interaction
|
|
3355
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
3348
3356
|
*/
|
|
3349
3357
|
transition_in?: Type<DivAppearanceTransition>;
|
|
3350
3358
|
/**
|
|
@@ -3503,7 +3511,7 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
|
|
|
3503
3511
|
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
3504
3512
|
/**
|
|
3505
3513
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
3506
|
-
* [DivExtension](../../extensions
|
|
3514
|
+
* [DivExtension](../../extensions).
|
|
3507
3515
|
*/
|
|
3508
3516
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
3509
3517
|
/**
|
|
@@ -3513,7 +3521,7 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
|
|
|
3513
3521
|
/**
|
|
3514
3522
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
3515
3523
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
3516
|
-
* measurement, see [Layout inside the card](../../layout
|
|
3524
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
3517
3525
|
*/
|
|
3518
3526
|
height?: Type<DivSize>;
|
|
3519
3527
|
/**
|
|
@@ -3598,7 +3606,7 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
|
|
|
3598
3606
|
/**
|
|
3599
3607
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
3600
3608
|
* the concept of transitions, see [Animated
|
|
3601
|
-
* transitions](../../interaction
|
|
3609
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
3602
3610
|
*/
|
|
3603
3611
|
transition_in?: Type<DivAppearanceTransition>;
|
|
3604
3612
|
/**
|
|
@@ -3683,7 +3691,7 @@ interface DivIndicatorProps {
|
|
|
3683
3691
|
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
3684
3692
|
/**
|
|
3685
3693
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
3686
|
-
* [DivExtension](../../extensions
|
|
3694
|
+
* [DivExtension](../../extensions).
|
|
3687
3695
|
*/
|
|
3688
3696
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
3689
3697
|
/**
|
|
@@ -3693,7 +3701,7 @@ interface DivIndicatorProps {
|
|
|
3693
3701
|
/**
|
|
3694
3702
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
3695
3703
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
3696
|
-
* measurement, see [Layout inside the card](../../layout
|
|
3704
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
3697
3705
|
*/
|
|
3698
3706
|
height?: Type<DivSize>;
|
|
3699
3707
|
/**
|
|
@@ -3778,7 +3786,7 @@ interface DivIndicatorProps {
|
|
|
3778
3786
|
/**
|
|
3779
3787
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
3780
3788
|
* the concept of transitions, see [Animated
|
|
3781
|
-
* transitions](../../interaction
|
|
3789
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
3782
3790
|
*/
|
|
3783
3791
|
transition_in?: Type<DivAppearanceTransition>;
|
|
3784
3792
|
/**
|
|
@@ -3862,7 +3870,7 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
|
|
|
3862
3870
|
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
3863
3871
|
/**
|
|
3864
3872
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
3865
|
-
* [DivExtension](../../extensions
|
|
3873
|
+
* [DivExtension](../../extensions).
|
|
3866
3874
|
*/
|
|
3867
3875
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
3868
3876
|
/**
|
|
@@ -3891,7 +3899,7 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
|
|
|
3891
3899
|
/**
|
|
3892
3900
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
3893
3901
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
3894
|
-
* measurement, see [Layout inside the card](../../layout
|
|
3902
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
3895
3903
|
*/
|
|
3896
3904
|
height?: Type<DivSize>;
|
|
3897
3905
|
/**
|
|
@@ -3995,7 +4003,7 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
|
|
|
3995
4003
|
/**
|
|
3996
4004
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
3997
4005
|
* the concept of transitions, see [Animated
|
|
3998
|
-
* transitions](../../interaction
|
|
4006
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
3999
4007
|
*/
|
|
4000
4008
|
transition_in?: Type<DivAppearanceTransition>;
|
|
4001
4009
|
/**
|
|
@@ -4064,7 +4072,7 @@ interface DivInputProps {
|
|
|
4064
4072
|
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
4065
4073
|
/**
|
|
4066
4074
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
4067
|
-
* [DivExtension](../../extensions
|
|
4075
|
+
* [DivExtension](../../extensions).
|
|
4068
4076
|
*/
|
|
4069
4077
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
4070
4078
|
/**
|
|
@@ -4093,7 +4101,7 @@ interface DivInputProps {
|
|
|
4093
4101
|
/**
|
|
4094
4102
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
4095
4103
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
4096
|
-
* measurement, see [Layout inside the card](../../layout
|
|
4104
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
4097
4105
|
*/
|
|
4098
4106
|
height?: Type<DivSize>;
|
|
4099
4107
|
/**
|
|
@@ -4197,7 +4205,7 @@ interface DivInputProps {
|
|
|
4197
4205
|
/**
|
|
4198
4206
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
4199
4207
|
* the concept of transitions, see [Animated
|
|
4200
|
-
* transitions](../../interaction
|
|
4208
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
4201
4209
|
*/
|
|
4202
4210
|
transition_in?: Type<DivAppearanceTransition>;
|
|
4203
4211
|
/**
|
|
@@ -4269,7 +4277,7 @@ interface IDivInputValidatorBase {
|
|
|
4269
4277
|
}
|
|
4270
4278
|
|
|
4271
4279
|
/**
|
|
4272
|
-
* [Calculated expression](../../expressions
|
|
4280
|
+
* [Calculated expression](../../expressions) validator.
|
|
4273
4281
|
*/
|
|
4274
4282
|
declare class DivInputValidatorExpression<T extends DivInputValidatorExpressionProps = DivInputValidatorExpressionProps> {
|
|
4275
4283
|
readonly _props?: Exact<DivInputValidatorExpressionProps, T>;
|
|
@@ -4279,7 +4287,7 @@ declare class DivInputValidatorExpression<T extends DivInputValidatorExpressionP
|
|
|
4279
4287
|
*/
|
|
4280
4288
|
allow_empty?: Type<IntBoolean | DivExpression>;
|
|
4281
4289
|
/**
|
|
4282
|
-
* [Calculated expression](../../expressions
|
|
4290
|
+
* [Calculated expression](../../expressions) used as a value validity condition.
|
|
4283
4291
|
*/
|
|
4284
4292
|
condition: Type<IntBoolean | DivExpression>;
|
|
4285
4293
|
/**
|
|
@@ -4299,7 +4307,7 @@ interface DivInputValidatorExpressionProps {
|
|
|
4299
4307
|
*/
|
|
4300
4308
|
allow_empty?: Type<IntBoolean | DivExpression>;
|
|
4301
4309
|
/**
|
|
4302
|
-
* [Calculated expression](../../expressions
|
|
4310
|
+
* [Calculated expression](../../expressions) used as a value validity condition.
|
|
4303
4311
|
*/
|
|
4304
4312
|
condition: Type<IntBoolean | DivExpression>;
|
|
4305
4313
|
/**
|
|
@@ -4475,6 +4483,162 @@ interface DivPageSizeProps {
|
|
|
4475
4483
|
page_width: Type<DivPercentageSize>;
|
|
4476
4484
|
}
|
|
4477
4485
|
|
|
4486
|
+
declare type DivPageTransformation = DivPageTransformationSlide | DivPageTransformationOverlap;
|
|
4487
|
+
|
|
4488
|
+
/**
|
|
4489
|
+
* The pages are stacked when the pager is scrolled overlapping each other.
|
|
4490
|
+
*/
|
|
4491
|
+
declare class DivPageTransformationOverlap<T extends DivPageTransformationOverlapProps = DivPageTransformationOverlapProps> {
|
|
4492
|
+
readonly _props?: Exact<DivPageTransformationOverlapProps, T>;
|
|
4493
|
+
readonly type = "overlap";
|
|
4494
|
+
/**
|
|
4495
|
+
* Tranformation speed nature. When the value is set to `spring` — animation of damping
|
|
4496
|
+
* fluctuations cut to 0.7 with the `damping=1` parameter. Other options correspond to the Bezier
|
|
4497
|
+
* curve:`linear` — cubic-bezier(0, 0, 1, 1);`ease` — cubic-bezier(0.25, 0.1, 0.25, 1);`ease_in`
|
|
4498
|
+
* — cubic-bezier(0.42, 0, 1, 1);`ease_out` — cubic-bezier(0, 0, 0.58, 1);`ease_in_out` —
|
|
4499
|
+
* cubic-bezier(0.42, 0, 0.58, 1).
|
|
4500
|
+
*/
|
|
4501
|
+
interpolator?: Type<DivAnimationInterpolator | DivExpression>;
|
|
4502
|
+
/**
|
|
4503
|
+
* Minimum alpha of the next page during pager scrolling in bounds [0, 1]. The next page is
|
|
4504
|
+
* always a page with a large sequential number in the list of `items`, regardless of the
|
|
4505
|
+
* direction of scrolling.
|
|
4506
|
+
*/
|
|
4507
|
+
next_page_alpha?: Type<number | DivExpression>;
|
|
4508
|
+
/**
|
|
4509
|
+
* Scale of the next page during pager scrolling. The next page is always a page with a large
|
|
4510
|
+
* sequential number in the list of `items`, regardless of the direction of scrolling.
|
|
4511
|
+
*/
|
|
4512
|
+
next_page_scale?: Type<number | DivExpression>;
|
|
4513
|
+
/**
|
|
4514
|
+
* Minimum alpha of the previous page during pager scrolling in bounds [0, 1]. The previous page
|
|
4515
|
+
* is always a page with a lower sequential number in the list of `items`, regardless of the
|
|
4516
|
+
* direction of scrolling.
|
|
4517
|
+
*/
|
|
4518
|
+
previous_page_alpha?: Type<number | DivExpression>;
|
|
4519
|
+
/**
|
|
4520
|
+
* Scale of the previous page during pager scrolling. The previous page is always a page with a
|
|
4521
|
+
* lower sequential number in the list of `items`, regardless of the direction of scrolling.
|
|
4522
|
+
*/
|
|
4523
|
+
previous_page_scale?: Type<number | DivExpression>;
|
|
4524
|
+
/**
|
|
4525
|
+
* If the value set to false, the next pages will be stacked on top the previous ones. If the
|
|
4526
|
+
* value set to true, then the opposite will occur. The next page is always a page with a large
|
|
4527
|
+
* sequential number in the list of `items`, regardless of the direction of scrolling.
|
|
4528
|
+
*/
|
|
4529
|
+
reversed_stacking_order?: Type<IntBoolean | DivExpression>;
|
|
4530
|
+
constructor(props?: Exact<DivPageTransformationOverlapProps, T>);
|
|
4531
|
+
}
|
|
4532
|
+
interface DivPageTransformationOverlapProps {
|
|
4533
|
+
/**
|
|
4534
|
+
* Tranformation speed nature. When the value is set to `spring` — animation of damping
|
|
4535
|
+
* fluctuations cut to 0.7 with the `damping=1` parameter. Other options correspond to the Bezier
|
|
4536
|
+
* curve:`linear` — cubic-bezier(0, 0, 1, 1);`ease` — cubic-bezier(0.25, 0.1, 0.25, 1);`ease_in`
|
|
4537
|
+
* — cubic-bezier(0.42, 0, 1, 1);`ease_out` — cubic-bezier(0, 0, 0.58, 1);`ease_in_out` —
|
|
4538
|
+
* cubic-bezier(0.42, 0, 0.58, 1).
|
|
4539
|
+
*/
|
|
4540
|
+
interpolator?: Type<DivAnimationInterpolator | DivExpression>;
|
|
4541
|
+
/**
|
|
4542
|
+
* Minimum alpha of the next page during pager scrolling in bounds [0, 1]. The next page is
|
|
4543
|
+
* always a page with a large sequential number in the list of `items`, regardless of the
|
|
4544
|
+
* direction of scrolling.
|
|
4545
|
+
*/
|
|
4546
|
+
next_page_alpha?: Type<number | DivExpression>;
|
|
4547
|
+
/**
|
|
4548
|
+
* Scale of the next page during pager scrolling. The next page is always a page with a large
|
|
4549
|
+
* sequential number in the list of `items`, regardless of the direction of scrolling.
|
|
4550
|
+
*/
|
|
4551
|
+
next_page_scale?: Type<number | DivExpression>;
|
|
4552
|
+
/**
|
|
4553
|
+
* Minimum alpha of the previous page during pager scrolling in bounds [0, 1]. The previous page
|
|
4554
|
+
* is always a page with a lower sequential number in the list of `items`, regardless of the
|
|
4555
|
+
* direction of scrolling.
|
|
4556
|
+
*/
|
|
4557
|
+
previous_page_alpha?: Type<number | DivExpression>;
|
|
4558
|
+
/**
|
|
4559
|
+
* Scale of the previous page during pager scrolling. The previous page is always a page with a
|
|
4560
|
+
* lower sequential number in the list of `items`, regardless of the direction of scrolling.
|
|
4561
|
+
*/
|
|
4562
|
+
previous_page_scale?: Type<number | DivExpression>;
|
|
4563
|
+
/**
|
|
4564
|
+
* If the value set to false, the next pages will be stacked on top the previous ones. If the
|
|
4565
|
+
* value set to true, then the opposite will occur. The next page is always a page with a large
|
|
4566
|
+
* sequential number in the list of `items`, regardless of the direction of scrolling.
|
|
4567
|
+
*/
|
|
4568
|
+
reversed_stacking_order?: Type<IntBoolean | DivExpression>;
|
|
4569
|
+
}
|
|
4570
|
+
|
|
4571
|
+
/**
|
|
4572
|
+
* The pages are moving when the pager is flipping without overlaping each other.
|
|
4573
|
+
*/
|
|
4574
|
+
declare class DivPageTransformationSlide<T extends DivPageTransformationSlideProps = DivPageTransformationSlideProps> {
|
|
4575
|
+
readonly _props?: Exact<DivPageTransformationSlideProps, T>;
|
|
4576
|
+
readonly type = "slide";
|
|
4577
|
+
/**
|
|
4578
|
+
* Tranformation speed nature. When the value is set to `spring` — animation of damping
|
|
4579
|
+
* fluctuations cut to 0.7 with the `damping=1` parameter. Other options correspond to the Bezier
|
|
4580
|
+
* curve:`linear` — cubic-bezier(0, 0, 1, 1);`ease` — cubic-bezier(0.25, 0.1, 0.25, 1);`ease_in`
|
|
4581
|
+
* — cubic-bezier(0.42, 0, 1, 1);`ease_out` — cubic-bezier(0, 0, 0.58, 1);`ease_in_out` —
|
|
4582
|
+
* cubic-bezier(0.42, 0, 0.58, 1).
|
|
4583
|
+
*/
|
|
4584
|
+
interpolator?: Type<DivAnimationInterpolator | DivExpression>;
|
|
4585
|
+
/**
|
|
4586
|
+
* Minimum alpha of the next page during pager scrolling in bounds [0, 1]. The next page is
|
|
4587
|
+
* always a page with a large sequential number in the list of `items`, regardless of the
|
|
4588
|
+
* direction of scrolling.
|
|
4589
|
+
*/
|
|
4590
|
+
next_page_alpha?: Type<number | DivExpression>;
|
|
4591
|
+
/**
|
|
4592
|
+
* Scale of the next page during pager scrolling. The next page is always a page with a large
|
|
4593
|
+
* sequential number in the list of `items`, regardless of the direction of scrolling.
|
|
4594
|
+
*/
|
|
4595
|
+
next_page_scale?: Type<number | DivExpression>;
|
|
4596
|
+
/**
|
|
4597
|
+
* Minimum alpha of the previous page during pager scrolling in bounds [0, 1]. The previous page
|
|
4598
|
+
* is always a page with a lower sequential number in the list of `items`, regardless of the
|
|
4599
|
+
* direction of scrolling.
|
|
4600
|
+
*/
|
|
4601
|
+
previous_page_alpha?: Type<number | DivExpression>;
|
|
4602
|
+
/**
|
|
4603
|
+
* Scale of the previous page during pager scrolling. The previous page is always a page with a
|
|
4604
|
+
* lower sequential number in the list of `items`, regardless of the direction of scrolling.
|
|
4605
|
+
*/
|
|
4606
|
+
previous_page_scale?: Type<number | DivExpression>;
|
|
4607
|
+
constructor(props?: Exact<DivPageTransformationSlideProps, T>);
|
|
4608
|
+
}
|
|
4609
|
+
interface DivPageTransformationSlideProps {
|
|
4610
|
+
/**
|
|
4611
|
+
* Tranformation speed nature. When the value is set to `spring` — animation of damping
|
|
4612
|
+
* fluctuations cut to 0.7 with the `damping=1` parameter. Other options correspond to the Bezier
|
|
4613
|
+
* curve:`linear` — cubic-bezier(0, 0, 1, 1);`ease` — cubic-bezier(0.25, 0.1, 0.25, 1);`ease_in`
|
|
4614
|
+
* — cubic-bezier(0.42, 0, 1, 1);`ease_out` — cubic-bezier(0, 0, 0.58, 1);`ease_in_out` —
|
|
4615
|
+
* cubic-bezier(0.42, 0, 0.58, 1).
|
|
4616
|
+
*/
|
|
4617
|
+
interpolator?: Type<DivAnimationInterpolator | DivExpression>;
|
|
4618
|
+
/**
|
|
4619
|
+
* Minimum alpha of the next page during pager scrolling in bounds [0, 1]. The next page is
|
|
4620
|
+
* always a page with a large sequential number in the list of `items`, regardless of the
|
|
4621
|
+
* direction of scrolling.
|
|
4622
|
+
*/
|
|
4623
|
+
next_page_alpha?: Type<number | DivExpression>;
|
|
4624
|
+
/**
|
|
4625
|
+
* Scale of the next page during pager scrolling. The next page is always a page with a large
|
|
4626
|
+
* sequential number in the list of `items`, regardless of the direction of scrolling.
|
|
4627
|
+
*/
|
|
4628
|
+
next_page_scale?: Type<number | DivExpression>;
|
|
4629
|
+
/**
|
|
4630
|
+
* Minimum alpha of the previous page during pager scrolling in bounds [0, 1]. The previous page
|
|
4631
|
+
* is always a page with a lower sequential number in the list of `items`, regardless of the
|
|
4632
|
+
* direction of scrolling.
|
|
4633
|
+
*/
|
|
4634
|
+
previous_page_alpha?: Type<number | DivExpression>;
|
|
4635
|
+
/**
|
|
4636
|
+
* Scale of the previous page during pager scrolling. The previous page is always a page with a
|
|
4637
|
+
* lower sequential number in the list of `items`, regardless of the direction of scrolling.
|
|
4638
|
+
*/
|
|
4639
|
+
previous_page_scale?: Type<number | DivExpression>;
|
|
4640
|
+
}
|
|
4641
|
+
|
|
4478
4642
|
/**
|
|
4479
4643
|
* Pager. It contains a horizontal set of cards that can be scrolled page by page. It shows the
|
|
4480
4644
|
* main page and the beginning of the next one.
|
|
@@ -4520,7 +4684,7 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
4520
4684
|
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
4521
4685
|
/**
|
|
4522
4686
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
4523
|
-
* [DivExtension](../../extensions
|
|
4687
|
+
* [DivExtension](../../extensions).
|
|
4524
4688
|
*/
|
|
4525
4689
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
4526
4690
|
/**
|
|
@@ -4530,7 +4694,7 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
4530
4694
|
/**
|
|
4531
4695
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
4532
4696
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
4533
|
-
* measurement, see [Layout inside the card](../../layout
|
|
4697
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
4534
4698
|
*/
|
|
4535
4699
|
height?: Type<DivSize>;
|
|
4536
4700
|
/**
|
|
@@ -4543,6 +4707,10 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
4543
4707
|
* starts over again.
|
|
4544
4708
|
*/
|
|
4545
4709
|
infinite_scroll?: Type<IntBoolean | DivExpression>;
|
|
4710
|
+
/**
|
|
4711
|
+
* Sets collection elements dynamically using `data` and `prototypes`.
|
|
4712
|
+
*/
|
|
4713
|
+
item_builder?: Type<IDivCollectionItemBuilder>;
|
|
4546
4714
|
/**
|
|
4547
4715
|
* Spacing between elements.
|
|
4548
4716
|
*/
|
|
@@ -4551,8 +4719,8 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
4551
4719
|
* Pager elements. Page-by-page transition options can be implemented
|
|
4552
4720
|
* using:`div-action://set_current_item?id=&item=` — set the current page with an ordinal number
|
|
4553
4721
|
* `item` inside an element, with the specified
|
|
4554
|
-
* `id`;`div-action://set_next_item?id=[&overflow={clamp
|
|
4555
|
-
* element, with the specified `id`;`div-action://set_previous_item?id=[&overflow={clamp
|
|
4722
|
+
* `id`;`div-action://set_next_item?id=[&overflow={clamp\|ring}]` — go to the next page inside an
|
|
4723
|
+
* element, with the specified `id`;`div-action://set_previous_item?id=[&overflow={clamp\|ring}]`
|
|
4556
4724
|
* — go to the previous page inside an element, with the specified `id`.</p><p>The optional
|
|
4557
4725
|
* `overflow` parameter is used to set navigation when the first or last element is
|
|
4558
4726
|
* reached:`clamp` — transition will stop at the border element;`ring` — go to the beginning or
|
|
@@ -4576,6 +4744,10 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
4576
4744
|
* Internal margins from the element stroke.
|
|
4577
4745
|
*/
|
|
4578
4746
|
paddings?: Type<IDivEdgeInsets>;
|
|
4747
|
+
/**
|
|
4748
|
+
* Page transformation during movement.
|
|
4749
|
+
*/
|
|
4750
|
+
page_transformation?: Type<DivPageTransformation>;
|
|
4579
4751
|
/**
|
|
4580
4752
|
* If the parameter is enabled, the pager won't transmit the scroll gesture to the parent
|
|
4581
4753
|
* element.
|
|
@@ -4608,7 +4780,7 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
4608
4780
|
/**
|
|
4609
4781
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
4610
4782
|
* the concept of transitions, see [Animated
|
|
4611
|
-
* transitions](../../interaction
|
|
4783
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
4612
4784
|
*/
|
|
4613
4785
|
transition_in?: Type<DivAppearanceTransition>;
|
|
4614
4786
|
/**
|
|
@@ -4677,7 +4849,7 @@ interface DivPagerProps {
|
|
|
4677
4849
|
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
4678
4850
|
/**
|
|
4679
4851
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
4680
|
-
* [DivExtension](../../extensions
|
|
4852
|
+
* [DivExtension](../../extensions).
|
|
4681
4853
|
*/
|
|
4682
4854
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
4683
4855
|
/**
|
|
@@ -4687,7 +4859,7 @@ interface DivPagerProps {
|
|
|
4687
4859
|
/**
|
|
4688
4860
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
4689
4861
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
4690
|
-
* measurement, see [Layout inside the card](../../layout
|
|
4862
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
4691
4863
|
*/
|
|
4692
4864
|
height?: Type<DivSize>;
|
|
4693
4865
|
/**
|
|
@@ -4700,6 +4872,10 @@ interface DivPagerProps {
|
|
|
4700
4872
|
* starts over again.
|
|
4701
4873
|
*/
|
|
4702
4874
|
infinite_scroll?: Type<IntBoolean | DivExpression>;
|
|
4875
|
+
/**
|
|
4876
|
+
* Sets collection elements dynamically using `data` and `prototypes`.
|
|
4877
|
+
*/
|
|
4878
|
+
item_builder?: Type<IDivCollectionItemBuilder>;
|
|
4703
4879
|
/**
|
|
4704
4880
|
* Spacing between elements.
|
|
4705
4881
|
*/
|
|
@@ -4708,8 +4884,8 @@ interface DivPagerProps {
|
|
|
4708
4884
|
* Pager elements. Page-by-page transition options can be implemented
|
|
4709
4885
|
* using:`div-action://set_current_item?id=&item=` — set the current page with an ordinal number
|
|
4710
4886
|
* `item` inside an element, with the specified
|
|
4711
|
-
* `id`;`div-action://set_next_item?id=[&overflow={clamp
|
|
4712
|
-
* element, with the specified `id`;`div-action://set_previous_item?id=[&overflow={clamp
|
|
4887
|
+
* `id`;`div-action://set_next_item?id=[&overflow={clamp\|ring}]` — go to the next page inside an
|
|
4888
|
+
* element, with the specified `id`;`div-action://set_previous_item?id=[&overflow={clamp\|ring}]`
|
|
4713
4889
|
* — go to the previous page inside an element, with the specified `id`.</p><p>The optional
|
|
4714
4890
|
* `overflow` parameter is used to set navigation when the first or last element is
|
|
4715
4891
|
* reached:`clamp` — transition will stop at the border element;`ring` — go to the beginning or
|
|
@@ -4733,6 +4909,10 @@ interface DivPagerProps {
|
|
|
4733
4909
|
* Internal margins from the element stroke.
|
|
4734
4910
|
*/
|
|
4735
4911
|
paddings?: Type<IDivEdgeInsets>;
|
|
4912
|
+
/**
|
|
4913
|
+
* Page transformation during movement.
|
|
4914
|
+
*/
|
|
4915
|
+
page_transformation?: Type<DivPageTransformation>;
|
|
4736
4916
|
/**
|
|
4737
4917
|
* If the parameter is enabled, the pager won't transmit the scroll gesture to the parent
|
|
4738
4918
|
* element.
|
|
@@ -4765,7 +4945,7 @@ interface DivPagerProps {
|
|
|
4765
4945
|
/**
|
|
4766
4946
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
4767
4947
|
* the concept of transitions, see [Animated
|
|
4768
|
-
* transitions](../../interaction
|
|
4948
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
4769
4949
|
*/
|
|
4770
4950
|
transition_in?: Type<DivAppearanceTransition>;
|
|
4771
4951
|
/**
|
|
@@ -4873,7 +5053,7 @@ declare class DivPivotFixed<T extends DivPivotFixedProps = DivPivotFixedProps> {
|
|
|
4873
5053
|
readonly type = "pivot-fixed";
|
|
4874
5054
|
/**
|
|
4875
5055
|
* Measurement unit. To learn more about units of size measurement, see [Layout inside the
|
|
4876
|
-
* card](../../layout
|
|
5056
|
+
* card](../../layout).
|
|
4877
5057
|
*/
|
|
4878
5058
|
unit?: Type<DivSizeUnit | DivExpression>;
|
|
4879
5059
|
/**
|
|
@@ -4885,7 +5065,7 @@ declare class DivPivotFixed<T extends DivPivotFixedProps = DivPivotFixedProps> {
|
|
|
4885
5065
|
interface DivPivotFixedProps {
|
|
4886
5066
|
/**
|
|
4887
5067
|
* Measurement unit. To learn more about units of size measurement, see [Layout inside the
|
|
4888
|
-
* card](../../layout
|
|
5068
|
+
* card](../../layout).
|
|
4889
5069
|
*/
|
|
4890
5070
|
unit?: Type<DivSizeUnit | DivExpression>;
|
|
4891
5071
|
/**
|
|
@@ -4980,7 +5160,7 @@ declare class DivRadialGradientFixedCenter<T extends DivRadialGradientFixedCente
|
|
|
4980
5160
|
readonly type = "fixed";
|
|
4981
5161
|
/**
|
|
4982
5162
|
* Unit of measurement. To learn more about units of size measurement, see [Layout inside the
|
|
4983
|
-
* card](../../layout
|
|
5163
|
+
* card](../../layout).
|
|
4984
5164
|
*/
|
|
4985
5165
|
unit?: Type<DivSizeUnit | DivExpression>;
|
|
4986
5166
|
/**
|
|
@@ -4992,7 +5172,7 @@ declare class DivRadialGradientFixedCenter<T extends DivRadialGradientFixedCente
|
|
|
4992
5172
|
interface DivRadialGradientFixedCenterProps {
|
|
4993
5173
|
/**
|
|
4994
5174
|
* Unit of measurement. To learn more about units of size measurement, see [Layout inside the
|
|
4995
|
-
* card](../../layout
|
|
5175
|
+
* card](../../layout).
|
|
4996
5176
|
*/
|
|
4997
5177
|
unit?: Type<DivSizeUnit | DivExpression>;
|
|
4998
5178
|
/**
|
|
@@ -5194,7 +5374,7 @@ declare class DivSelect<T extends DivSelectProps = DivSelectProps> {
|
|
|
5194
5374
|
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
5195
5375
|
/**
|
|
5196
5376
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
5197
|
-
* [DivExtension](../../extensions
|
|
5377
|
+
* [DivExtension](../../extensions).
|
|
5198
5378
|
*/
|
|
5199
5379
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
5200
5380
|
/**
|
|
@@ -5223,7 +5403,7 @@ declare class DivSelect<T extends DivSelectProps = DivSelectProps> {
|
|
|
5223
5403
|
/**
|
|
5224
5404
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
5225
5405
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
5226
|
-
* measurement, see [Layout inside the card](../../layout
|
|
5406
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
5227
5407
|
*/
|
|
5228
5408
|
height?: Type<DivSize>;
|
|
5229
5409
|
/**
|
|
@@ -5287,7 +5467,7 @@ declare class DivSelect<T extends DivSelectProps = DivSelectProps> {
|
|
|
5287
5467
|
/**
|
|
5288
5468
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
5289
5469
|
* the concept of transitions, see [Animated
|
|
5290
|
-
* transitions](../../interaction
|
|
5470
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
5291
5471
|
*/
|
|
5292
5472
|
transition_in?: Type<DivAppearanceTransition>;
|
|
5293
5473
|
/**
|
|
@@ -5356,7 +5536,7 @@ interface DivSelectProps {
|
|
|
5356
5536
|
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
5357
5537
|
/**
|
|
5358
5538
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
5359
|
-
* [DivExtension](../../extensions
|
|
5539
|
+
* [DivExtension](../../extensions).
|
|
5360
5540
|
*/
|
|
5361
5541
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
5362
5542
|
/**
|
|
@@ -5385,7 +5565,7 @@ interface DivSelectProps {
|
|
|
5385
5565
|
/**
|
|
5386
5566
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
5387
5567
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
5388
|
-
* measurement, see [Layout inside the card](../../layout
|
|
5568
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
5389
5569
|
*/
|
|
5390
5570
|
height?: Type<DivSize>;
|
|
5391
5571
|
/**
|
|
@@ -5449,7 +5629,7 @@ interface DivSelectProps {
|
|
|
5449
5629
|
/**
|
|
5450
5630
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
5451
5631
|
* the concept of transitions, see [Animated
|
|
5452
|
-
* transitions](../../interaction
|
|
5632
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
5453
5633
|
*/
|
|
5454
5634
|
transition_in?: Type<DivAppearanceTransition>;
|
|
5455
5635
|
/**
|
|
@@ -5557,7 +5737,7 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
|
|
|
5557
5737
|
doubletap_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
5558
5738
|
/**
|
|
5559
5739
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
5560
|
-
* [DivExtension](../../extensions
|
|
5740
|
+
* [DivExtension](../../extensions).
|
|
5561
5741
|
*/
|
|
5562
5742
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
5563
5743
|
/**
|
|
@@ -5567,7 +5747,7 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
|
|
|
5567
5747
|
/**
|
|
5568
5748
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
5569
5749
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
5570
|
-
* measurement, see [Layout inside the card](../../layout
|
|
5750
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
5571
5751
|
*/
|
|
5572
5752
|
height?: Type<DivSize>;
|
|
5573
5753
|
/**
|
|
@@ -5615,7 +5795,7 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
|
|
|
5615
5795
|
/**
|
|
5616
5796
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
5617
5797
|
* the concept of transitions, see [Animated
|
|
5618
|
-
* transitions](../../interaction
|
|
5798
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
5619
5799
|
*/
|
|
5620
5800
|
transition_in?: Type<DivAppearanceTransition>;
|
|
5621
5801
|
/**
|
|
@@ -5701,7 +5881,7 @@ interface DivSeparatorProps {
|
|
|
5701
5881
|
doubletap_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
5702
5882
|
/**
|
|
5703
5883
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
5704
|
-
* [DivExtension](../../extensions
|
|
5884
|
+
* [DivExtension](../../extensions).
|
|
5705
5885
|
*/
|
|
5706
5886
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
5707
5887
|
/**
|
|
@@ -5711,7 +5891,7 @@ interface DivSeparatorProps {
|
|
|
5711
5891
|
/**
|
|
5712
5892
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
5713
5893
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
5714
|
-
* measurement, see [Layout inside the card](../../layout
|
|
5894
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
5715
5895
|
*/
|
|
5716
5896
|
height?: Type<DivSize>;
|
|
5717
5897
|
/**
|
|
@@ -5759,7 +5939,7 @@ interface DivSeparatorProps {
|
|
|
5759
5939
|
/**
|
|
5760
5940
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
5761
5941
|
* the concept of transitions, see [Animated
|
|
5762
|
-
* transitions](../../interaction
|
|
5942
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
5763
5943
|
*/
|
|
5764
5944
|
transition_in?: Type<DivAppearanceTransition>;
|
|
5765
5945
|
/**
|
|
@@ -5873,7 +6053,7 @@ interface DivShapeDrawableProps {
|
|
|
5873
6053
|
|
|
5874
6054
|
interface IDivSightAction {
|
|
5875
6055
|
/**
|
|
5876
|
-
* Callbacks that are called after [data loading](../../interaction
|
|
6056
|
+
* Callbacks that are called after [data loading](../../interaction#loading-data).
|
|
5877
6057
|
*/
|
|
5878
6058
|
download_callbacks?: Type<IDivDownloadCallbacks>;
|
|
5879
6059
|
/**
|
|
@@ -5884,7 +6064,7 @@ interface IDivSightAction {
|
|
|
5884
6064
|
/**
|
|
5885
6065
|
* Logging ID.
|
|
5886
6066
|
*/
|
|
5887
|
-
log_id: Type<string>;
|
|
6067
|
+
log_id: Type<string | DivExpression>;
|
|
5888
6068
|
/**
|
|
5889
6069
|
* Limit on the number of loggings. If `0`, the limit is removed.
|
|
5890
6070
|
*/
|
|
@@ -5900,7 +6080,7 @@ interface IDivSightAction {
|
|
|
5900
6080
|
typed?: Type<DivActionTyped>;
|
|
5901
6081
|
/**
|
|
5902
6082
|
* URL. Possible values: `url` or `div-action://`. To learn more, see [Interaction with
|
|
5903
|
-
* elements](../../interaction
|
|
6083
|
+
* elements](../../interaction).
|
|
5904
6084
|
*/
|
|
5905
6085
|
url?: Type<string | DivExpression>;
|
|
5906
6086
|
}
|
|
@@ -6007,7 +6187,7 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
|
|
|
6007
6187
|
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
6008
6188
|
/**
|
|
6009
6189
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
6010
|
-
* [DivExtension](../../extensions
|
|
6190
|
+
* [DivExtension](../../extensions).
|
|
6011
6191
|
*/
|
|
6012
6192
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
6013
6193
|
/**
|
|
@@ -6017,7 +6197,7 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
|
|
|
6017
6197
|
/**
|
|
6018
6198
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
6019
6199
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
6020
|
-
* measurement, see [Layout inside the card](../../layout
|
|
6200
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
6021
6201
|
*/
|
|
6022
6202
|
height?: Type<DivSize>;
|
|
6023
6203
|
/**
|
|
@@ -6116,7 +6296,7 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
|
|
|
6116
6296
|
/**
|
|
6117
6297
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
6118
6298
|
* the concept of transitions, see [Animated
|
|
6119
|
-
* transitions](../../interaction
|
|
6299
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
6120
6300
|
*/
|
|
6121
6301
|
transition_in?: Type<DivAppearanceTransition>;
|
|
6122
6302
|
/**
|
|
@@ -6181,7 +6361,7 @@ interface DivSliderProps {
|
|
|
6181
6361
|
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
6182
6362
|
/**
|
|
6183
6363
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
6184
|
-
* [DivExtension](../../extensions
|
|
6364
|
+
* [DivExtension](../../extensions).
|
|
6185
6365
|
*/
|
|
6186
6366
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
6187
6367
|
/**
|
|
@@ -6191,7 +6371,7 @@ interface DivSliderProps {
|
|
|
6191
6371
|
/**
|
|
6192
6372
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
6193
6373
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
6194
|
-
* measurement, see [Layout inside the card](../../layout
|
|
6374
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
6195
6375
|
*/
|
|
6196
6376
|
height?: Type<DivSize>;
|
|
6197
6377
|
/**
|
|
@@ -6290,7 +6470,7 @@ interface DivSliderProps {
|
|
|
6290
6470
|
/**
|
|
6291
6471
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
6292
6472
|
* the concept of transitions, see [Animated
|
|
6293
|
-
* transitions](../../interaction
|
|
6473
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
6294
6474
|
*/
|
|
6295
6475
|
transition_in?: Type<DivAppearanceTransition>;
|
|
6296
6476
|
/**
|
|
@@ -6431,7 +6611,7 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
|
|
|
6431
6611
|
div_id?: Type<string>;
|
|
6432
6612
|
/**
|
|
6433
6613
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
6434
|
-
* [DivExtension](../../extensions
|
|
6614
|
+
* [DivExtension](../../extensions).
|
|
6435
6615
|
*/
|
|
6436
6616
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
6437
6617
|
/**
|
|
@@ -6441,7 +6621,7 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
|
|
|
6441
6621
|
/**
|
|
6442
6622
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
6443
6623
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
6444
|
-
* measurement, see [Layout inside the card](../../layout
|
|
6624
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
6445
6625
|
*/
|
|
6446
6626
|
height?: Type<DivSize>;
|
|
6447
6627
|
/**
|
|
@@ -6474,8 +6654,7 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
|
|
|
6474
6654
|
state_id_variable?: Type<string>;
|
|
6475
6655
|
/**
|
|
6476
6656
|
* States. Each element can have a few states with a different layout. Transition between states
|
|
6477
|
-
* is performed using [special scheme](../../interaction
|
|
6478
|
-
* element.
|
|
6657
|
+
* is performed using [special scheme](../../interaction) of the [action](div-action.md) element.
|
|
6479
6658
|
*/
|
|
6480
6659
|
states: Type<NonEmptyArray<IDivStateState>>;
|
|
6481
6660
|
/**
|
|
@@ -6502,7 +6681,7 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
|
|
|
6502
6681
|
/**
|
|
6503
6682
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
6504
6683
|
* the concept of transitions, see [Animated
|
|
6505
|
-
* transitions](../../interaction
|
|
6684
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
6506
6685
|
*/
|
|
6507
6686
|
transition_in?: Type<DivAppearanceTransition>;
|
|
6508
6687
|
/**
|
|
@@ -6578,7 +6757,7 @@ interface DivStateProps {
|
|
|
6578
6757
|
div_id?: Type<string>;
|
|
6579
6758
|
/**
|
|
6580
6759
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
6581
|
-
* [DivExtension](../../extensions
|
|
6760
|
+
* [DivExtension](../../extensions).
|
|
6582
6761
|
*/
|
|
6583
6762
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
6584
6763
|
/**
|
|
@@ -6588,7 +6767,7 @@ interface DivStateProps {
|
|
|
6588
6767
|
/**
|
|
6589
6768
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
6590
6769
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
6591
|
-
* measurement, see [Layout inside the card](../../layout
|
|
6770
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
6592
6771
|
*/
|
|
6593
6772
|
height?: Type<DivSize>;
|
|
6594
6773
|
/**
|
|
@@ -6621,8 +6800,7 @@ interface DivStateProps {
|
|
|
6621
6800
|
state_id_variable?: Type<string>;
|
|
6622
6801
|
/**
|
|
6623
6802
|
* States. Each element can have a few states with a different layout. Transition between states
|
|
6624
|
-
* is performed using [special scheme](../../interaction
|
|
6625
|
-
* element.
|
|
6803
|
+
* is performed using [special scheme](../../interaction) of the [action](div-action.md) element.
|
|
6626
6804
|
*/
|
|
6627
6805
|
states: Type<NonEmptyArray<IDivStateState>>;
|
|
6628
6806
|
/**
|
|
@@ -6649,7 +6827,7 @@ interface DivStateProps {
|
|
|
6649
6827
|
/**
|
|
6650
6828
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
6651
6829
|
* the concept of transitions, see [Animated
|
|
6652
|
-
* transitions](../../interaction
|
|
6830
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
6653
6831
|
*/
|
|
6654
6832
|
transition_in?: Type<DivAppearanceTransition>;
|
|
6655
6833
|
/**
|
|
@@ -6751,7 +6929,7 @@ interface IDivStroke {
|
|
|
6751
6929
|
|
|
6752
6930
|
/**
|
|
6753
6931
|
* Tabs. Height of the first tab is determined by its contents, and height of the remaining
|
|
6754
|
-
* [depends on the platform](../../location
|
|
6932
|
+
* [depends on the platform](../../location#tabs).
|
|
6755
6933
|
*/
|
|
6756
6934
|
declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
|
|
6757
6935
|
readonly _props?: Exact<DivTabsProps, T>;
|
|
@@ -6794,7 +6972,7 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
|
|
|
6794
6972
|
dynamic_height?: Type<IntBoolean | DivExpression>;
|
|
6795
6973
|
/**
|
|
6796
6974
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
6797
|
-
* [DivExtension](../../extensions
|
|
6975
|
+
* [DivExtension](../../extensions).
|
|
6798
6976
|
*/
|
|
6799
6977
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
6800
6978
|
/**
|
|
@@ -6808,7 +6986,7 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
|
|
|
6808
6986
|
/**
|
|
6809
6987
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
6810
6988
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
6811
|
-
* measurement, see [Layout inside the card](../../layout
|
|
6989
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
6812
6990
|
*/
|
|
6813
6991
|
height?: Type<DivSize>;
|
|
6814
6992
|
/**
|
|
@@ -6820,8 +6998,8 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
|
|
|
6820
6998
|
* Tabs. Transition between tabs can be implemented
|
|
6821
6999
|
* using:`div-action://set_current_item?id=&item=` — set the current tab with an ordinal number
|
|
6822
7000
|
* `item` inside an element, with the specified
|
|
6823
|
-
* `id`;`div-action://set_next_item?id=[&overflow={clamp
|
|
6824
|
-
* element, with the specified `id`;`div-action://set_previous_item?id=[&overflow={clamp
|
|
7001
|
+
* `id`;`div-action://set_next_item?id=[&overflow={clamp\|ring}]` — go to the next tab inside an
|
|
7002
|
+
* element, with the specified `id`;`div-action://set_previous_item?id=[&overflow={clamp\|ring}]`
|
|
6825
7003
|
* — go to the previous tab inside an element, with the specified `id`.</p><p>The optional
|
|
6826
7004
|
* `overflow` parameter is used to set navigation when the first or last element is
|
|
6827
7005
|
* reached:`clamp` — transition will stop at the border element;`ring` — go to the beginning or
|
|
@@ -6891,7 +7069,7 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
|
|
|
6891
7069
|
/**
|
|
6892
7070
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
6893
7071
|
* the concept of transitions, see [Animated
|
|
6894
|
-
* transitions](../../interaction
|
|
7072
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
6895
7073
|
*/
|
|
6896
7074
|
transition_in?: Type<DivAppearanceTransition>;
|
|
6897
7075
|
/**
|
|
@@ -6960,7 +7138,7 @@ interface DivTabsProps {
|
|
|
6960
7138
|
dynamic_height?: Type<IntBoolean | DivExpression>;
|
|
6961
7139
|
/**
|
|
6962
7140
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
6963
|
-
* [DivExtension](../../extensions
|
|
7141
|
+
* [DivExtension](../../extensions).
|
|
6964
7142
|
*/
|
|
6965
7143
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
6966
7144
|
/**
|
|
@@ -6974,7 +7152,7 @@ interface DivTabsProps {
|
|
|
6974
7152
|
/**
|
|
6975
7153
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
6976
7154
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
6977
|
-
* measurement, see [Layout inside the card](../../layout
|
|
7155
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
6978
7156
|
*/
|
|
6979
7157
|
height?: Type<DivSize>;
|
|
6980
7158
|
/**
|
|
@@ -6986,8 +7164,8 @@ interface DivTabsProps {
|
|
|
6986
7164
|
* Tabs. Transition between tabs can be implemented
|
|
6987
7165
|
* using:`div-action://set_current_item?id=&item=` — set the current tab with an ordinal number
|
|
6988
7166
|
* `item` inside an element, with the specified
|
|
6989
|
-
* `id`;`div-action://set_next_item?id=[&overflow={clamp
|
|
6990
|
-
* element, with the specified `id`;`div-action://set_previous_item?id=[&overflow={clamp
|
|
7167
|
+
* `id`;`div-action://set_next_item?id=[&overflow={clamp\|ring}]` — go to the next tab inside an
|
|
7168
|
+
* element, with the specified `id`;`div-action://set_previous_item?id=[&overflow={clamp\|ring}]`
|
|
6991
7169
|
* — go to the previous tab inside an element, with the specified `id`.</p><p>The optional
|
|
6992
7170
|
* `overflow` parameter is used to set navigation when the first or last element is
|
|
6993
7171
|
* reached:`clamp` — transition will stop at the border element;`ring` — go to the beginning or
|
|
@@ -7057,7 +7235,7 @@ interface DivTabsProps {
|
|
|
7057
7235
|
/**
|
|
7058
7236
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
7059
7237
|
* the concept of transitions, see [Animated
|
|
7060
|
-
* transitions](../../interaction
|
|
7238
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
7061
7239
|
*/
|
|
7062
7240
|
transition_in?: Type<DivAppearanceTransition>;
|
|
7063
7241
|
/**
|
|
@@ -7251,7 +7429,7 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
7251
7429
|
ellipsis?: Type<IDivTextEllipsis>;
|
|
7252
7430
|
/**
|
|
7253
7431
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
7254
|
-
* [DivExtension](../../extensions
|
|
7432
|
+
* [DivExtension](../../extensions).
|
|
7255
7433
|
*/
|
|
7256
7434
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
7257
7435
|
/**
|
|
@@ -7279,7 +7457,7 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
7279
7457
|
/**
|
|
7280
7458
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
7281
7459
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
7282
|
-
* measurement, see [Layout inside the card](../../layout
|
|
7460
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
7283
7461
|
*/
|
|
7284
7462
|
height?: Type<DivSize>;
|
|
7285
7463
|
/**
|
|
@@ -7384,7 +7562,7 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
7384
7562
|
/**
|
|
7385
7563
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
7386
7564
|
* the concept of transitions, see [Animated
|
|
7387
|
-
* transitions](../../interaction
|
|
7565
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
7388
7566
|
*/
|
|
7389
7567
|
transition_in?: Type<DivAppearanceTransition>;
|
|
7390
7568
|
/**
|
|
@@ -7484,7 +7662,7 @@ interface DivTextProps {
|
|
|
7484
7662
|
ellipsis?: Type<IDivTextEllipsis>;
|
|
7485
7663
|
/**
|
|
7486
7664
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
7487
|
-
* [DivExtension](../../extensions
|
|
7665
|
+
* [DivExtension](../../extensions).
|
|
7488
7666
|
*/
|
|
7489
7667
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
7490
7668
|
/**
|
|
@@ -7512,7 +7690,7 @@ interface DivTextProps {
|
|
|
7512
7690
|
/**
|
|
7513
7691
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
7514
7692
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
7515
|
-
* measurement, see [Layout inside the card](../../layout
|
|
7693
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
7516
7694
|
*/
|
|
7517
7695
|
height?: Type<DivSize>;
|
|
7518
7696
|
/**
|
|
@@ -7617,7 +7795,7 @@ interface DivTextProps {
|
|
|
7617
7795
|
/**
|
|
7618
7796
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
7619
7797
|
* the concept of transitions, see [Animated
|
|
7620
|
-
* transitions](../../interaction
|
|
7798
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
7621
7799
|
*/
|
|
7622
7800
|
transition_in?: Type<DivAppearanceTransition>;
|
|
7623
7801
|
/**
|
|
@@ -8002,7 +8180,7 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
|
|
|
8002
8180
|
end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
8003
8181
|
/**
|
|
8004
8182
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
8005
|
-
* [DivExtension](../../extensions
|
|
8183
|
+
* [DivExtension](../../extensions).
|
|
8006
8184
|
*/
|
|
8007
8185
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
8008
8186
|
/**
|
|
@@ -8016,7 +8194,7 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
|
|
|
8016
8194
|
/**
|
|
8017
8195
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
8018
8196
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
8019
|
-
* measurement, see [Layout inside the card](../../layout
|
|
8197
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
8020
8198
|
*/
|
|
8021
8199
|
height?: Type<DivSize>;
|
|
8022
8200
|
/**
|
|
@@ -8093,7 +8271,7 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
|
|
|
8093
8271
|
/**
|
|
8094
8272
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
8095
8273
|
* the concept of transitions, see [Animated
|
|
8096
|
-
* transitions](../../interaction
|
|
8274
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
8097
8275
|
*/
|
|
8098
8276
|
transition_in?: Type<DivAppearanceTransition>;
|
|
8099
8277
|
/**
|
|
@@ -8181,7 +8359,7 @@ interface DivVideoProps {
|
|
|
8181
8359
|
end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
8182
8360
|
/**
|
|
8183
8361
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
8184
|
-
* [DivExtension](../../extensions
|
|
8362
|
+
* [DivExtension](../../extensions).
|
|
8185
8363
|
*/
|
|
8186
8364
|
extensions?: Type<NonEmptyArray<IDivExtension>>;
|
|
8187
8365
|
/**
|
|
@@ -8195,7 +8373,7 @@ interface DivVideoProps {
|
|
|
8195
8373
|
/**
|
|
8196
8374
|
* Element height. For Android: if there is text in this or in a child element, specify height in
|
|
8197
8375
|
* `sp` to scale the element together with the text. To learn more about units of size
|
|
8198
|
-
* measurement, see [Layout inside the card](../../layout
|
|
8376
|
+
* measurement, see [Layout inside the card](../../layout).
|
|
8199
8377
|
*/
|
|
8200
8378
|
height?: Type<DivSize>;
|
|
8201
8379
|
/**
|
|
@@ -8272,7 +8450,7 @@ interface DivVideoProps {
|
|
|
8272
8450
|
/**
|
|
8273
8451
|
* Appearance animation. It is played when an element with a new ID appears. To learn more about
|
|
8274
8452
|
* the concept of transitions, see [Animated
|
|
8275
|
-
* transitions](../../interaction
|
|
8453
|
+
* transitions](../../interaction#animation/transition-animation).
|
|
8276
8454
|
*/
|
|
8277
8455
|
transition_in?: Type<DivAppearanceTransition>;
|
|
8278
8456
|
/**
|
|
@@ -8382,7 +8560,7 @@ declare type DivVisibility = 'visible' | 'invisible' | 'gone';
|
|
|
8382
8560
|
*/
|
|
8383
8561
|
interface IDivVisibilityAction {
|
|
8384
8562
|
/**
|
|
8385
|
-
* Callbacks that are called after [data loading](../../interaction
|
|
8563
|
+
* Callbacks that are called after [data loading](../../interaction#loading-data).
|
|
8386
8564
|
*/
|
|
8387
8565
|
download_callbacks?: Type<IDivDownloadCallbacks>;
|
|
8388
8566
|
/**
|
|
@@ -8393,7 +8571,7 @@ interface IDivVisibilityAction {
|
|
|
8393
8571
|
/**
|
|
8394
8572
|
* Logging ID.
|
|
8395
8573
|
*/
|
|
8396
|
-
log_id: Type<string>;
|
|
8574
|
+
log_id: Type<string | DivExpression>;
|
|
8397
8575
|
/**
|
|
8398
8576
|
* Limit on the number of loggings. If `0`, the limit is removed.
|
|
8399
8577
|
*/
|
|
@@ -8409,7 +8587,7 @@ interface IDivVisibilityAction {
|
|
|
8409
8587
|
typed?: Type<DivActionTyped>;
|
|
8410
8588
|
/**
|
|
8411
8589
|
* URL. Possible values: `url` or `div-action://`. To learn more, see [Interaction with
|
|
8412
|
-
* elements](../../interaction
|
|
8590
|
+
* elements](../../interaction).
|
|
8413
8591
|
*/
|
|
8414
8592
|
url?: Type<string | DivExpression>;
|
|
8415
8593
|
/**
|
|
@@ -8771,4 +8949,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
|
|
|
8771
8949
|
};
|
|
8772
8950
|
};
|
|
8773
8951
|
|
|
8774
|
-
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, 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, 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 };
|
|
8952
|
+
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, 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 };
|