@divkitframework/jsonbuilder 30.31.0 → 30.33.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 +4 -4
- package/dist/es/jsonbuilder.js.map +1 -1
- package/dist/jsonbuilder.d.ts +118 -252
- package/dist/jsonbuilder.js +4 -4
- package/dist/jsonbuilder.js.map +1 -1
- package/package.json +1 -1
package/dist/jsonbuilder.d.ts
CHANGED
|
@@ -299,8 +299,8 @@ interface IDivAccessibility {
|
|
|
299
299
|
*/
|
|
300
300
|
hint?: Type<string | DivExpression>;
|
|
301
301
|
/**
|
|
302
|
-
* Shows the current
|
|
303
|
-
* selected.
|
|
302
|
+
* Shows the current status of the checkbox or toggle: `true` means it's selected, `false` means
|
|
303
|
+
* it isn't selected.
|
|
304
304
|
*
|
|
305
305
|
* Platforms: web
|
|
306
306
|
*/
|
|
@@ -343,8 +343,6 @@ declare type DivAccessibilityType = 'none' | 'button' | 'image' | 'text' | 'edit
|
|
|
343
343
|
interface IDivAction {
|
|
344
344
|
/**
|
|
345
345
|
* Callbacks that are called after [data loading](../../interaction#loading-data).
|
|
346
|
-
*
|
|
347
|
-
* Platforms: android, ios, web
|
|
348
346
|
*/
|
|
349
347
|
download_callbacks?: Type<IDivDownloadCallbacks>;
|
|
350
348
|
/**
|
|
@@ -1311,14 +1309,10 @@ interface IDivBase {
|
|
|
1311
1309
|
/**
|
|
1312
1310
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
1313
1311
|
* set.
|
|
1314
|
-
*
|
|
1315
|
-
* Platforms: android, ios, web
|
|
1316
1312
|
*/
|
|
1317
1313
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
1318
1314
|
/**
|
|
1319
1315
|
* Actions when an element appears on the screen.
|
|
1320
|
-
*
|
|
1321
|
-
* Platforms: android, ios, web
|
|
1322
1316
|
*/
|
|
1323
1317
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
1324
1318
|
/**
|
|
@@ -1768,14 +1762,14 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
|
|
|
1768
1762
|
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
1769
1763
|
* devices (such as a mouse or stylus).
|
|
1770
1764
|
*
|
|
1771
|
-
* Platforms: web
|
|
1765
|
+
* Platforms: web, android
|
|
1772
1766
|
*/
|
|
1773
1767
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
1774
1768
|
/**
|
|
1775
1769
|
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
1776
1770
|
* devices (such as a mouse or stylus).
|
|
1777
1771
|
*
|
|
1778
|
-
* Platforms: web
|
|
1772
|
+
* Platforms: web, android
|
|
1779
1773
|
*/
|
|
1780
1774
|
hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
1781
1775
|
/**
|
|
@@ -1837,13 +1831,13 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
|
|
|
1837
1831
|
/**
|
|
1838
1832
|
* Actions performed after clicking/tapping an element.
|
|
1839
1833
|
*
|
|
1840
|
-
* Platforms: web
|
|
1834
|
+
* Platforms: web, android
|
|
1841
1835
|
*/
|
|
1842
1836
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
1843
1837
|
/**
|
|
1844
1838
|
* Actions performed at the start of a click/tap on an element.
|
|
1845
1839
|
*
|
|
1846
|
-
* Platforms: web
|
|
1840
|
+
* Platforms: web, android
|
|
1847
1841
|
*/
|
|
1848
1842
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
1849
1843
|
/**
|
|
@@ -1935,14 +1929,10 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
|
|
|
1935
1929
|
/**
|
|
1936
1930
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
1937
1931
|
* set.
|
|
1938
|
-
*
|
|
1939
|
-
* Platforms: android, ios, web
|
|
1940
1932
|
*/
|
|
1941
1933
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
1942
1934
|
/**
|
|
1943
1935
|
* Actions when an element appears on the screen.
|
|
1944
|
-
*
|
|
1945
|
-
* Platforms: android, ios, web
|
|
1946
1936
|
*/
|
|
1947
1937
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
1948
1938
|
/**
|
|
@@ -2069,14 +2059,14 @@ interface DivContainerPropsBase {
|
|
|
2069
2059
|
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
2070
2060
|
* devices (such as a mouse or stylus).
|
|
2071
2061
|
*
|
|
2072
|
-
* Platforms: web
|
|
2062
|
+
* Platforms: web, android
|
|
2073
2063
|
*/
|
|
2074
2064
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
2075
2065
|
/**
|
|
2076
2066
|
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
2077
2067
|
* devices (such as a mouse or stylus).
|
|
2078
2068
|
*
|
|
2079
|
-
* Platforms: web
|
|
2069
|
+
* Platforms: web, android
|
|
2080
2070
|
*/
|
|
2081
2071
|
hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
2082
2072
|
/**
|
|
@@ -2138,13 +2128,13 @@ interface DivContainerPropsBase {
|
|
|
2138
2128
|
/**
|
|
2139
2129
|
* Actions performed after clicking/tapping an element.
|
|
2140
2130
|
*
|
|
2141
|
-
* Platforms: web
|
|
2131
|
+
* Platforms: web, android
|
|
2142
2132
|
*/
|
|
2143
2133
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
2144
2134
|
/**
|
|
2145
2135
|
* Actions performed at the start of a click/tap on an element.
|
|
2146
2136
|
*
|
|
2147
|
-
* Platforms: web
|
|
2137
|
+
* Platforms: web, android
|
|
2148
2138
|
*/
|
|
2149
2139
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
2150
2140
|
/**
|
|
@@ -2236,14 +2226,10 @@ interface DivContainerPropsBase {
|
|
|
2236
2226
|
/**
|
|
2237
2227
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
2238
2228
|
* set.
|
|
2239
|
-
*
|
|
2240
|
-
* Platforms: android, ios, web
|
|
2241
2229
|
*/
|
|
2242
2230
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
2243
2231
|
/**
|
|
2244
2232
|
* Actions when an element appears on the screen.
|
|
2245
|
-
*
|
|
2246
|
-
* Platforms: android, ios, web
|
|
2247
2233
|
*/
|
|
2248
2234
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
2249
2235
|
/**
|
|
@@ -2536,14 +2522,10 @@ declare class DivCustom<T extends DivCustomProps = DivCustomProps> {
|
|
|
2536
2522
|
/**
|
|
2537
2523
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
2538
2524
|
* set.
|
|
2539
|
-
*
|
|
2540
|
-
* Platforms: android, ios, web
|
|
2541
2525
|
*/
|
|
2542
2526
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
2543
2527
|
/**
|
|
2544
2528
|
* Actions when an element appears on the screen.
|
|
2545
|
-
*
|
|
2546
|
-
* Platforms: android, ios, web
|
|
2547
2529
|
*/
|
|
2548
2530
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
2549
2531
|
/**
|
|
@@ -2732,14 +2714,10 @@ interface DivCustomProps {
|
|
|
2732
2714
|
/**
|
|
2733
2715
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
2734
2716
|
* set.
|
|
2735
|
-
*
|
|
2736
|
-
* Platforms: android, ios, web
|
|
2737
2717
|
*/
|
|
2738
2718
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
2739
2719
|
/**
|
|
2740
2720
|
* Actions when an element appears on the screen.
|
|
2741
|
-
*
|
|
2742
|
-
* Platforms: android, ios, web
|
|
2743
2721
|
*/
|
|
2744
2722
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
2745
2723
|
/**
|
|
@@ -2789,8 +2767,6 @@ interface IDivDisappearAction {
|
|
|
2789
2767
|
disappear_duration?: Type<number | DivExpression>;
|
|
2790
2768
|
/**
|
|
2791
2769
|
* Callbacks that are called after [data loading](../../interaction#loading-data).
|
|
2792
|
-
*
|
|
2793
|
-
* Platforms: android, ios, web
|
|
2794
2770
|
*/
|
|
2795
2771
|
download_callbacks?: Type<IDivDownloadCallbacks>;
|
|
2796
2772
|
/**
|
|
@@ -3411,14 +3387,10 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
|
|
|
3411
3387
|
/**
|
|
3412
3388
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
3413
3389
|
* set.
|
|
3414
|
-
*
|
|
3415
|
-
* Platforms: android, ios, web
|
|
3416
3390
|
*/
|
|
3417
3391
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
3418
3392
|
/**
|
|
3419
3393
|
* Actions when an element appears on the screen.
|
|
3420
|
-
*
|
|
3421
|
-
* Platforms: android, ios, web
|
|
3422
3394
|
*/
|
|
3423
3395
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
3424
3396
|
/**
|
|
@@ -3672,14 +3644,10 @@ interface DivGalleryProps {
|
|
|
3672
3644
|
/**
|
|
3673
3645
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
3674
3646
|
* set.
|
|
3675
|
-
*
|
|
3676
|
-
* Platforms: android, ios, web
|
|
3677
3647
|
*/
|
|
3678
3648
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
3679
3649
|
/**
|
|
3680
3650
|
* Actions when an element appears on the screen.
|
|
3681
|
-
*
|
|
3682
|
-
* Platforms: android, ios, web
|
|
3683
3651
|
*/
|
|
3684
3652
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
3685
3653
|
/**
|
|
@@ -3807,14 +3775,14 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
|
|
|
3807
3775
|
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
3808
3776
|
* devices (such as a mouse or stylus).
|
|
3809
3777
|
*
|
|
3810
|
-
* Platforms: web
|
|
3778
|
+
* Platforms: web, android
|
|
3811
3779
|
*/
|
|
3812
3780
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
3813
3781
|
/**
|
|
3814
3782
|
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
3815
3783
|
* devices (such as a mouse or stylus).
|
|
3816
3784
|
*
|
|
3817
|
-
* Platforms: web
|
|
3785
|
+
* Platforms: web, android
|
|
3818
3786
|
*/
|
|
3819
3787
|
hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
3820
3788
|
/**
|
|
@@ -3858,13 +3826,13 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
|
|
|
3858
3826
|
/**
|
|
3859
3827
|
* Actions performed after clicking/tapping an element.
|
|
3860
3828
|
*
|
|
3861
|
-
* Platforms: web
|
|
3829
|
+
* Platforms: web, android
|
|
3862
3830
|
*/
|
|
3863
3831
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
3864
3832
|
/**
|
|
3865
3833
|
* Actions performed at the start of a click/tap on an element.
|
|
3866
3834
|
*
|
|
3867
|
-
* Platforms: web
|
|
3835
|
+
* Platforms: web, android
|
|
3868
3836
|
*/
|
|
3869
3837
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
3870
3838
|
/**
|
|
@@ -3960,14 +3928,10 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
|
|
|
3960
3928
|
/**
|
|
3961
3929
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
3962
3930
|
* set.
|
|
3963
|
-
*
|
|
3964
|
-
* Platforms: android, ios, web
|
|
3965
3931
|
*/
|
|
3966
3932
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
3967
3933
|
/**
|
|
3968
3934
|
* Actions when an element appears on the screen.
|
|
3969
|
-
*
|
|
3970
|
-
* Platforms: android, ios, web
|
|
3971
3935
|
*/
|
|
3972
3936
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
3973
3937
|
/**
|
|
@@ -4086,14 +4050,14 @@ interface DivGifImageProps {
|
|
|
4086
4050
|
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
4087
4051
|
* devices (such as a mouse or stylus).
|
|
4088
4052
|
*
|
|
4089
|
-
* Platforms: web
|
|
4053
|
+
* Platforms: web, android
|
|
4090
4054
|
*/
|
|
4091
4055
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4092
4056
|
/**
|
|
4093
4057
|
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
4094
4058
|
* devices (such as a mouse or stylus).
|
|
4095
4059
|
*
|
|
4096
|
-
* Platforms: web
|
|
4060
|
+
* Platforms: web, android
|
|
4097
4061
|
*/
|
|
4098
4062
|
hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4099
4063
|
/**
|
|
@@ -4137,13 +4101,13 @@ interface DivGifImageProps {
|
|
|
4137
4101
|
/**
|
|
4138
4102
|
* Actions performed after clicking/tapping an element.
|
|
4139
4103
|
*
|
|
4140
|
-
* Platforms: web
|
|
4104
|
+
* Platforms: web, android
|
|
4141
4105
|
*/
|
|
4142
4106
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4143
4107
|
/**
|
|
4144
4108
|
* Actions performed at the start of a click/tap on an element.
|
|
4145
4109
|
*
|
|
4146
|
-
* Platforms: web
|
|
4110
|
+
* Platforms: web, android
|
|
4147
4111
|
*/
|
|
4148
4112
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4149
4113
|
/**
|
|
@@ -4239,14 +4203,10 @@ interface DivGifImageProps {
|
|
|
4239
4203
|
/**
|
|
4240
4204
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
4241
4205
|
* set.
|
|
4242
|
-
*
|
|
4243
|
-
* Platforms: android, ios, web
|
|
4244
4206
|
*/
|
|
4245
4207
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
4246
4208
|
/**
|
|
4247
4209
|
* Actions when an element appears on the screen.
|
|
4248
|
-
*
|
|
4249
|
-
* Platforms: android, ios, web
|
|
4250
4210
|
*/
|
|
4251
4211
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
4252
4212
|
/**
|
|
@@ -4365,14 +4325,14 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
|
|
|
4365
4325
|
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
4366
4326
|
* devices (such as a mouse or stylus).
|
|
4367
4327
|
*
|
|
4368
|
-
* Platforms: web
|
|
4328
|
+
* Platforms: web, android
|
|
4369
4329
|
*/
|
|
4370
4330
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4371
4331
|
/**
|
|
4372
4332
|
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
4373
4333
|
* devices (such as a mouse or stylus).
|
|
4374
4334
|
*
|
|
4375
|
-
* Platforms: web
|
|
4335
|
+
* Platforms: web, android
|
|
4376
4336
|
*/
|
|
4377
4337
|
hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4378
4338
|
/**
|
|
@@ -4408,13 +4368,13 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
|
|
|
4408
4368
|
/**
|
|
4409
4369
|
* Actions performed after clicking/tapping an element.
|
|
4410
4370
|
*
|
|
4411
|
-
* Platforms: web
|
|
4371
|
+
* Platforms: web, android
|
|
4412
4372
|
*/
|
|
4413
4373
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4414
4374
|
/**
|
|
4415
4375
|
* Actions performed at the start of a click/tap on an element.
|
|
4416
4376
|
*
|
|
4417
|
-
* Platforms: web
|
|
4377
|
+
* Platforms: web, android
|
|
4418
4378
|
*/
|
|
4419
4379
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4420
4380
|
/**
|
|
@@ -4498,14 +4458,10 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
|
|
|
4498
4458
|
/**
|
|
4499
4459
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
4500
4460
|
* set.
|
|
4501
|
-
*
|
|
4502
|
-
* Platforms: android, ios, web
|
|
4503
4461
|
*/
|
|
4504
4462
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
4505
4463
|
/**
|
|
4506
4464
|
* Actions when an element appears on the screen.
|
|
4507
|
-
*
|
|
4508
|
-
* Platforms: android, ios, web
|
|
4509
4465
|
*/
|
|
4510
4466
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
4511
4467
|
/**
|
|
@@ -4619,14 +4575,14 @@ interface DivGridProps {
|
|
|
4619
4575
|
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
4620
4576
|
* devices (such as a mouse or stylus).
|
|
4621
4577
|
*
|
|
4622
|
-
* Platforms: web
|
|
4578
|
+
* Platforms: web, android
|
|
4623
4579
|
*/
|
|
4624
4580
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4625
4581
|
/**
|
|
4626
4582
|
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
4627
4583
|
* devices (such as a mouse or stylus).
|
|
4628
4584
|
*
|
|
4629
|
-
* Platforms: web
|
|
4585
|
+
* Platforms: web, android
|
|
4630
4586
|
*/
|
|
4631
4587
|
hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4632
4588
|
/**
|
|
@@ -4662,13 +4618,13 @@ interface DivGridProps {
|
|
|
4662
4618
|
/**
|
|
4663
4619
|
* Actions performed after clicking/tapping an element.
|
|
4664
4620
|
*
|
|
4665
|
-
* Platforms: web
|
|
4621
|
+
* Platforms: web, android
|
|
4666
4622
|
*/
|
|
4667
4623
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4668
4624
|
/**
|
|
4669
4625
|
* Actions performed at the start of a click/tap on an element.
|
|
4670
4626
|
*
|
|
4671
|
-
* Platforms: web
|
|
4627
|
+
* Platforms: web, android
|
|
4672
4628
|
*/
|
|
4673
4629
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4674
4630
|
/**
|
|
@@ -4752,14 +4708,10 @@ interface DivGridProps {
|
|
|
4752
4708
|
/**
|
|
4753
4709
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
4754
4710
|
* set.
|
|
4755
|
-
*
|
|
4756
|
-
* Platforms: android, ios, web
|
|
4757
4711
|
*/
|
|
4758
4712
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
4759
4713
|
/**
|
|
4760
4714
|
* Actions when an element appears on the screen.
|
|
4761
|
-
*
|
|
4762
|
-
* Platforms: android, ios, web
|
|
4763
4715
|
*/
|
|
4764
4716
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
4765
4717
|
/**
|
|
@@ -4897,14 +4849,14 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
|
|
|
4897
4849
|
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
4898
4850
|
* devices (such as a mouse or stylus).
|
|
4899
4851
|
*
|
|
4900
|
-
* Platforms: web
|
|
4852
|
+
* Platforms: web, android
|
|
4901
4853
|
*/
|
|
4902
4854
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4903
4855
|
/**
|
|
4904
4856
|
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
4905
4857
|
* devices (such as a mouse or stylus).
|
|
4906
4858
|
*
|
|
4907
|
-
* Platforms: web
|
|
4859
|
+
* Platforms: web, android
|
|
4908
4860
|
*/
|
|
4909
4861
|
hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4910
4862
|
/**
|
|
@@ -4952,13 +4904,13 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
|
|
|
4952
4904
|
/**
|
|
4953
4905
|
* Actions performed after clicking/tapping an element.
|
|
4954
4906
|
*
|
|
4955
|
-
* Platforms: web
|
|
4907
|
+
* Platforms: web, android
|
|
4956
4908
|
*/
|
|
4957
4909
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4958
4910
|
/**
|
|
4959
4911
|
* Actions performed at the start of a click/tap on an element.
|
|
4960
4912
|
*
|
|
4961
|
-
* Platforms: web
|
|
4913
|
+
* Platforms: web, android
|
|
4962
4914
|
*/
|
|
4963
4915
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4964
4916
|
/**
|
|
@@ -5062,14 +5014,10 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
|
|
|
5062
5014
|
/**
|
|
5063
5015
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
5064
5016
|
* set.
|
|
5065
|
-
*
|
|
5066
|
-
* Platforms: android, ios, web
|
|
5067
5017
|
*/
|
|
5068
5018
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
5069
5019
|
/**
|
|
5070
5020
|
* Actions when an element appears on the screen.
|
|
5071
|
-
*
|
|
5072
|
-
* Platforms: android, ios, web
|
|
5073
5021
|
*/
|
|
5074
5022
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
5075
5023
|
/**
|
|
@@ -5202,14 +5150,14 @@ interface DivImageProps {
|
|
|
5202
5150
|
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
5203
5151
|
* devices (such as a mouse or stylus).
|
|
5204
5152
|
*
|
|
5205
|
-
* Platforms: web
|
|
5153
|
+
* Platforms: web, android
|
|
5206
5154
|
*/
|
|
5207
5155
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
5208
5156
|
/**
|
|
5209
5157
|
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
5210
5158
|
* devices (such as a mouse or stylus).
|
|
5211
5159
|
*
|
|
5212
|
-
* Platforms: web
|
|
5160
|
+
* Platforms: web, android
|
|
5213
5161
|
*/
|
|
5214
5162
|
hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
5215
5163
|
/**
|
|
@@ -5257,13 +5205,13 @@ interface DivImageProps {
|
|
|
5257
5205
|
/**
|
|
5258
5206
|
* Actions performed after clicking/tapping an element.
|
|
5259
5207
|
*
|
|
5260
|
-
* Platforms: web
|
|
5208
|
+
* Platforms: web, android
|
|
5261
5209
|
*/
|
|
5262
5210
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
5263
5211
|
/**
|
|
5264
5212
|
* Actions performed at the start of a click/tap on an element.
|
|
5265
5213
|
*
|
|
5266
|
-
* Platforms: web
|
|
5214
|
+
* Platforms: web, android
|
|
5267
5215
|
*/
|
|
5268
5216
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
5269
5217
|
/**
|
|
@@ -5367,14 +5315,10 @@ interface DivImageProps {
|
|
|
5367
5315
|
/**
|
|
5368
5316
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
5369
5317
|
* set.
|
|
5370
|
-
*
|
|
5371
|
-
* Platforms: android, ios, web
|
|
5372
5318
|
*/
|
|
5373
5319
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
5374
5320
|
/**
|
|
5375
5321
|
* Actions when an element appears on the screen.
|
|
5376
|
-
*
|
|
5377
|
-
* Platforms: android, ios, web
|
|
5378
5322
|
*/
|
|
5379
5323
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
5380
5324
|
/**
|
|
@@ -5697,14 +5641,10 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
|
|
|
5697
5641
|
/**
|
|
5698
5642
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
5699
5643
|
* set.
|
|
5700
|
-
*
|
|
5701
|
-
* Platforms: android, ios, web
|
|
5702
5644
|
*/
|
|
5703
5645
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
5704
5646
|
/**
|
|
5705
5647
|
* Actions when an element appears on the screen.
|
|
5706
|
-
*
|
|
5707
|
-
* Platforms: android, ios, web
|
|
5708
5648
|
*/
|
|
5709
5649
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
5710
5650
|
/**
|
|
@@ -5949,14 +5889,10 @@ interface DivIndicatorProps {
|
|
|
5949
5889
|
/**
|
|
5950
5890
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
5951
5891
|
* set.
|
|
5952
|
-
*
|
|
5953
|
-
* Platforms: android, ios, web
|
|
5954
5892
|
*/
|
|
5955
5893
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
5956
5894
|
/**
|
|
5957
5895
|
* Actions when an element appears on the screen.
|
|
5958
|
-
*
|
|
5959
|
-
* Platforms: android, ios, web
|
|
5960
5896
|
*/
|
|
5961
5897
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
5962
5898
|
/**
|
|
@@ -6286,14 +6222,10 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
|
|
|
6286
6222
|
/**
|
|
6287
6223
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
6288
6224
|
* set.
|
|
6289
|
-
*
|
|
6290
|
-
* Platforms: android, ios, web
|
|
6291
6225
|
*/
|
|
6292
6226
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
6293
6227
|
/**
|
|
6294
6228
|
* Actions when an element appears on the screen.
|
|
6295
|
-
*
|
|
6296
|
-
* Platforms: android, ios, web
|
|
6297
6229
|
*/
|
|
6298
6230
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
6299
6231
|
/**
|
|
@@ -6604,14 +6536,10 @@ interface DivInputProps {
|
|
|
6604
6536
|
/**
|
|
6605
6537
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
6606
6538
|
* set.
|
|
6607
|
-
*
|
|
6608
|
-
* Platforms: android, ios, web
|
|
6609
6539
|
*/
|
|
6610
6540
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
6611
6541
|
/**
|
|
6612
6542
|
* Actions when an element appears on the screen.
|
|
6613
|
-
*
|
|
6614
|
-
* Platforms: android, ios, web
|
|
6615
6543
|
*/
|
|
6616
6544
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
6617
6545
|
/**
|
|
@@ -7011,21 +6939,10 @@ interface DivNumberAnimatorProps {
|
|
|
7011
6939
|
declare class DivPageContentSize<T extends DivPageContentSizeProps = DivPageContentSizeProps> {
|
|
7012
6940
|
readonly _props?: Exact<DivPageContentSizeProps, T>;
|
|
7013
6941
|
readonly type = "wrap_content";
|
|
7014
|
-
/**
|
|
7015
|
-
* Alignment of pager pages along the scroll axis. For edge alignment, the margin from the edge
|
|
7016
|
-
* of the parent equals the value of the corresponding padding.
|
|
7017
|
-
*/
|
|
7018
|
-
alignment?: Type<DivPageContentSizeAlignment | DivExpression>;
|
|
7019
6942
|
constructor(props?: Exact<DivPageContentSizeProps, T>);
|
|
7020
6943
|
}
|
|
7021
6944
|
interface DivPageContentSizeProps {
|
|
7022
|
-
/**
|
|
7023
|
-
* Alignment of pager pages along the scroll axis. For edge alignment, the margin from the edge
|
|
7024
|
-
* of the parent equals the value of the corresponding padding.
|
|
7025
|
-
*/
|
|
7026
|
-
alignment?: Type<DivPageContentSizeAlignment | DivExpression>;
|
|
7027
6945
|
}
|
|
7028
|
-
declare type DivPageContentSizeAlignment = 'start' | 'center' | 'end';
|
|
7029
6946
|
|
|
7030
6947
|
/**
|
|
7031
6948
|
* Page width (%).
|
|
@@ -7249,8 +7166,6 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
7249
7166
|
column_span?: Type<number | DivExpression>;
|
|
7250
7167
|
/**
|
|
7251
7168
|
* Ordinal number of the pager element that will be opened by default.
|
|
7252
|
-
*
|
|
7253
|
-
* Platforms: android, ios, web
|
|
7254
7169
|
*/
|
|
7255
7170
|
default_item?: Type<number | DivExpression>;
|
|
7256
7171
|
/**
|
|
@@ -7302,6 +7217,8 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
7302
7217
|
item_builder?: Type<IDivCollectionItemBuilder>;
|
|
7303
7218
|
/**
|
|
7304
7219
|
* Spacing between elements.
|
|
7220
|
+
*
|
|
7221
|
+
* Platforms: android, ios, web
|
|
7305
7222
|
*/
|
|
7306
7223
|
item_spacing?: Type<DivFixedSize>;
|
|
7307
7224
|
/**
|
|
@@ -7319,6 +7236,8 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
7319
7236
|
/**
|
|
7320
7237
|
* Type of calculation of the main page width:`fixed` — from the fixed width of the next page
|
|
7321
7238
|
* `neighbour_page_width`;`percentage` — from the percentage value `page_width`.
|
|
7239
|
+
*
|
|
7240
|
+
* Platforms: android, ios, web
|
|
7322
7241
|
*/
|
|
7323
7242
|
layout_mode: Type<DivPagerLayoutMode>;
|
|
7324
7243
|
/**
|
|
@@ -7365,6 +7284,13 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
7365
7284
|
* Platforms: android, ios, web
|
|
7366
7285
|
*/
|
|
7367
7286
|
row_span?: Type<number | DivExpression>;
|
|
7287
|
+
/**
|
|
7288
|
+
* Alignment of pager pages along the scroll axis. For edge alignment, the margin from the edge
|
|
7289
|
+
* of the parent equals the value of the corresponding padding.
|
|
7290
|
+
*
|
|
7291
|
+
* Platforms: ios
|
|
7292
|
+
*/
|
|
7293
|
+
scroll_axis_alignment?: Type<DivPagerScrollAxisAlignment | DivExpression>;
|
|
7368
7294
|
/**
|
|
7369
7295
|
* List of [actions](div-action.md) to be executed when selecting an element in
|
|
7370
7296
|
* [pager](div-pager.md).
|
|
@@ -7433,14 +7359,10 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
7433
7359
|
/**
|
|
7434
7360
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
7435
7361
|
* set.
|
|
7436
|
-
*
|
|
7437
|
-
* Platforms: android, ios, web
|
|
7438
7362
|
*/
|
|
7439
7363
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
7440
7364
|
/**
|
|
7441
7365
|
* Actions when an element appears on the screen.
|
|
7442
|
-
*
|
|
7443
|
-
* Platforms: android, ios, web
|
|
7444
7366
|
*/
|
|
7445
7367
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
7446
7368
|
/**
|
|
@@ -7490,8 +7412,6 @@ interface DivPagerProps {
|
|
|
7490
7412
|
column_span?: Type<number | DivExpression>;
|
|
7491
7413
|
/**
|
|
7492
7414
|
* Ordinal number of the pager element that will be opened by default.
|
|
7493
|
-
*
|
|
7494
|
-
* Platforms: android, ios, web
|
|
7495
7415
|
*/
|
|
7496
7416
|
default_item?: Type<number | DivExpression>;
|
|
7497
7417
|
/**
|
|
@@ -7543,6 +7463,8 @@ interface DivPagerProps {
|
|
|
7543
7463
|
item_builder?: Type<IDivCollectionItemBuilder>;
|
|
7544
7464
|
/**
|
|
7545
7465
|
* Spacing between elements.
|
|
7466
|
+
*
|
|
7467
|
+
* Platforms: android, ios, web
|
|
7546
7468
|
*/
|
|
7547
7469
|
item_spacing?: Type<DivFixedSize>;
|
|
7548
7470
|
/**
|
|
@@ -7560,6 +7482,8 @@ interface DivPagerProps {
|
|
|
7560
7482
|
/**
|
|
7561
7483
|
* Type of calculation of the main page width:`fixed` — from the fixed width of the next page
|
|
7562
7484
|
* `neighbour_page_width`;`percentage` — from the percentage value `page_width`.
|
|
7485
|
+
*
|
|
7486
|
+
* Platforms: android, ios, web
|
|
7563
7487
|
*/
|
|
7564
7488
|
layout_mode: Type<DivPagerLayoutMode>;
|
|
7565
7489
|
/**
|
|
@@ -7606,6 +7530,13 @@ interface DivPagerProps {
|
|
|
7606
7530
|
* Platforms: android, ios, web
|
|
7607
7531
|
*/
|
|
7608
7532
|
row_span?: Type<number | DivExpression>;
|
|
7533
|
+
/**
|
|
7534
|
+
* Alignment of pager pages along the scroll axis. For edge alignment, the margin from the edge
|
|
7535
|
+
* of the parent equals the value of the corresponding padding.
|
|
7536
|
+
*
|
|
7537
|
+
* Platforms: ios
|
|
7538
|
+
*/
|
|
7539
|
+
scroll_axis_alignment?: Type<DivPagerScrollAxisAlignment | DivExpression>;
|
|
7609
7540
|
/**
|
|
7610
7541
|
* List of [actions](div-action.md) to be executed when selecting an element in
|
|
7611
7542
|
* [pager](div-pager.md).
|
|
@@ -7674,14 +7605,10 @@ interface DivPagerProps {
|
|
|
7674
7605
|
/**
|
|
7675
7606
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
7676
7607
|
* set.
|
|
7677
|
-
*
|
|
7678
|
-
* Platforms: android, ios, web
|
|
7679
7608
|
*/
|
|
7680
7609
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
7681
7610
|
/**
|
|
7682
7611
|
* Actions when an element appears on the screen.
|
|
7683
|
-
*
|
|
7684
|
-
* Platforms: android, ios, web
|
|
7685
7612
|
*/
|
|
7686
7613
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
7687
7614
|
/**
|
|
@@ -7690,6 +7617,7 @@ interface DivPagerProps {
|
|
|
7690
7617
|
width?: Type<DivSize>;
|
|
7691
7618
|
}
|
|
7692
7619
|
declare type DivPagerOrientation = 'horizontal' | 'vertical';
|
|
7620
|
+
declare type DivPagerScrollAxisAlignment = 'start' | 'center' | 'end';
|
|
7693
7621
|
|
|
7694
7622
|
declare type DivPagerLayoutMode = DivPageSize | DivNeighbourPageSize | DivPageContentSize;
|
|
7695
7623
|
|
|
@@ -8288,14 +8216,10 @@ declare class DivSelect<T extends DivSelectProps = DivSelectProps> {
|
|
|
8288
8216
|
/**
|
|
8289
8217
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
8290
8218
|
* set.
|
|
8291
|
-
*
|
|
8292
|
-
* Platforms: android, ios, web
|
|
8293
8219
|
*/
|
|
8294
8220
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
8295
8221
|
/**
|
|
8296
8222
|
* Actions when an element appears on the screen.
|
|
8297
|
-
*
|
|
8298
|
-
* Platforms: android, ios, web
|
|
8299
8223
|
*/
|
|
8300
8224
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
8301
8225
|
/**
|
|
@@ -8524,14 +8448,10 @@ interface DivSelectProps {
|
|
|
8524
8448
|
/**
|
|
8525
8449
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
8526
8450
|
* set.
|
|
8527
|
-
*
|
|
8528
|
-
* Platforms: android, ios, web
|
|
8529
8451
|
*/
|
|
8530
8452
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
8531
8453
|
/**
|
|
8532
8454
|
* Actions when an element appears on the screen.
|
|
8533
|
-
*
|
|
8534
|
-
* Platforms: android, ios, web
|
|
8535
8455
|
*/
|
|
8536
8456
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
8537
8457
|
/**
|
|
@@ -8655,14 +8575,14 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
|
|
|
8655
8575
|
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
8656
8576
|
* devices (such as a mouse or stylus).
|
|
8657
8577
|
*
|
|
8658
|
-
* Platforms: web
|
|
8578
|
+
* Platforms: web, android
|
|
8659
8579
|
*/
|
|
8660
8580
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
8661
8581
|
/**
|
|
8662
8582
|
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
8663
8583
|
* devices (such as a mouse or stylus).
|
|
8664
8584
|
*
|
|
8665
|
-
* Platforms: web
|
|
8585
|
+
* Platforms: web, android
|
|
8666
8586
|
*/
|
|
8667
8587
|
hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
8668
8588
|
/**
|
|
@@ -8694,13 +8614,13 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
|
|
|
8694
8614
|
/**
|
|
8695
8615
|
* Actions performed after clicking/tapping an element.
|
|
8696
8616
|
*
|
|
8697
|
-
* Platforms: web
|
|
8617
|
+
* Platforms: web, android
|
|
8698
8618
|
*/
|
|
8699
8619
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
8700
8620
|
/**
|
|
8701
8621
|
* Actions performed at the start of a click/tap on an element.
|
|
8702
8622
|
*
|
|
8703
|
-
* Platforms: web
|
|
8623
|
+
* Platforms: web, android
|
|
8704
8624
|
*/
|
|
8705
8625
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
8706
8626
|
/**
|
|
@@ -8784,14 +8704,10 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
|
|
|
8784
8704
|
/**
|
|
8785
8705
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
8786
8706
|
* set.
|
|
8787
|
-
*
|
|
8788
|
-
* Platforms: android, ios, web
|
|
8789
8707
|
*/
|
|
8790
8708
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
8791
8709
|
/**
|
|
8792
8710
|
* Actions when an element appears on the screen.
|
|
8793
|
-
*
|
|
8794
|
-
* Platforms: android, ios, web
|
|
8795
8711
|
*/
|
|
8796
8712
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
8797
8713
|
/**
|
|
@@ -8897,14 +8813,14 @@ interface DivSeparatorProps {
|
|
|
8897
8813
|
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
8898
8814
|
* devices (such as a mouse or stylus).
|
|
8899
8815
|
*
|
|
8900
|
-
* Platforms: web
|
|
8816
|
+
* Platforms: web, android
|
|
8901
8817
|
*/
|
|
8902
8818
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
8903
8819
|
/**
|
|
8904
8820
|
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
8905
8821
|
* devices (such as a mouse or stylus).
|
|
8906
8822
|
*
|
|
8907
|
-
* Platforms: web
|
|
8823
|
+
* Platforms: web, android
|
|
8908
8824
|
*/
|
|
8909
8825
|
hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
8910
8826
|
/**
|
|
@@ -8936,13 +8852,13 @@ interface DivSeparatorProps {
|
|
|
8936
8852
|
/**
|
|
8937
8853
|
* Actions performed after clicking/tapping an element.
|
|
8938
8854
|
*
|
|
8939
|
-
* Platforms: web
|
|
8855
|
+
* Platforms: web, android
|
|
8940
8856
|
*/
|
|
8941
8857
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
8942
8858
|
/**
|
|
8943
8859
|
* Actions performed at the start of a click/tap on an element.
|
|
8944
8860
|
*
|
|
8945
|
-
* Platforms: web
|
|
8861
|
+
* Platforms: web, android
|
|
8946
8862
|
*/
|
|
8947
8863
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
8948
8864
|
/**
|
|
@@ -9026,14 +8942,10 @@ interface DivSeparatorProps {
|
|
|
9026
8942
|
/**
|
|
9027
8943
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
9028
8944
|
* set.
|
|
9029
|
-
*
|
|
9030
|
-
* Platforms: android, ios, web
|
|
9031
8945
|
*/
|
|
9032
8946
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
9033
8947
|
/**
|
|
9034
8948
|
* Actions when an element appears on the screen.
|
|
9035
|
-
*
|
|
9036
|
-
* Platforms: android, ios, web
|
|
9037
8949
|
*/
|
|
9038
8950
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
9039
8951
|
/**
|
|
@@ -9127,8 +9039,6 @@ interface DivShapeDrawableProps {
|
|
|
9127
9039
|
interface IDivSightAction {
|
|
9128
9040
|
/**
|
|
9129
9041
|
* Callbacks that are called after [data loading](../../interaction#loading-data).
|
|
9130
|
-
*
|
|
9131
|
-
* Platforms: android, ios, web
|
|
9132
9042
|
*/
|
|
9133
9043
|
download_callbacks?: Type<IDivDownloadCallbacks>;
|
|
9134
9044
|
/**
|
|
@@ -9309,9 +9219,9 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
|
|
|
9309
9219
|
*/
|
|
9310
9220
|
id?: Type<string>;
|
|
9311
9221
|
/**
|
|
9312
|
-
* Enables or disables
|
|
9222
|
+
* Enables or disables toggling values by clicking or swiping.
|
|
9313
9223
|
*
|
|
9314
|
-
* Platforms: android
|
|
9224
|
+
* Platforms: android, web
|
|
9315
9225
|
*/
|
|
9316
9226
|
is_enabled?: Type<IntBoolean | DivExpression>;
|
|
9317
9227
|
/**
|
|
@@ -9469,14 +9379,10 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
|
|
|
9469
9379
|
/**
|
|
9470
9380
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
9471
9381
|
* set.
|
|
9472
|
-
*
|
|
9473
|
-
* Platforms: android, ios, web
|
|
9474
9382
|
*/
|
|
9475
9383
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
9476
9384
|
/**
|
|
9477
9385
|
* Actions when an element appears on the screen.
|
|
9478
|
-
*
|
|
9479
|
-
* Platforms: android, ios, web
|
|
9480
9386
|
*/
|
|
9481
9387
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
9482
9388
|
/**
|
|
@@ -9559,9 +9465,9 @@ interface DivSliderProps {
|
|
|
9559
9465
|
*/
|
|
9560
9466
|
id?: Type<string>;
|
|
9561
9467
|
/**
|
|
9562
|
-
* Enables or disables
|
|
9468
|
+
* Enables or disables toggling values by clicking or swiping.
|
|
9563
9469
|
*
|
|
9564
|
-
* Platforms: android
|
|
9470
|
+
* Platforms: android, web
|
|
9565
9471
|
*/
|
|
9566
9472
|
is_enabled?: Type<IntBoolean | DivExpression>;
|
|
9567
9473
|
/**
|
|
@@ -9719,14 +9625,10 @@ interface DivSliderProps {
|
|
|
9719
9625
|
/**
|
|
9720
9626
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
9721
9627
|
* set.
|
|
9722
|
-
*
|
|
9723
|
-
* Platforms: android, ios, web
|
|
9724
9628
|
*/
|
|
9725
9629
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
9726
9630
|
/**
|
|
9727
9631
|
* Actions when an element appears on the screen.
|
|
9728
|
-
*
|
|
9729
|
-
* Platforms: android, ios, web
|
|
9730
9632
|
*/
|
|
9731
9633
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
9732
9634
|
/**
|
|
@@ -10011,14 +9913,10 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
|
|
|
10011
9913
|
/**
|
|
10012
9914
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
10013
9915
|
* set.
|
|
10014
|
-
*
|
|
10015
|
-
* Platforms: android, ios, web
|
|
10016
9916
|
*/
|
|
10017
9917
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
10018
9918
|
/**
|
|
10019
9919
|
* Actions when an element appears on the screen.
|
|
10020
|
-
*
|
|
10021
|
-
* Platforms: android, ios, web
|
|
10022
9920
|
*/
|
|
10023
9921
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
10024
9922
|
/**
|
|
@@ -10229,14 +10127,10 @@ interface DivStateProps {
|
|
|
10229
10127
|
/**
|
|
10230
10128
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
10231
10129
|
* set.
|
|
10232
|
-
*
|
|
10233
|
-
* Platforms: android, ios, web
|
|
10234
10130
|
*/
|
|
10235
10131
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
10236
10132
|
/**
|
|
10237
10133
|
* Actions when an element appears on the screen.
|
|
10238
|
-
*
|
|
10239
|
-
* Platforms: android, ios, web
|
|
10240
10134
|
*/
|
|
10241
10135
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
10242
10136
|
/**
|
|
@@ -10510,14 +10404,10 @@ declare class DivSwitch<T extends DivSwitchProps = DivSwitchProps> {
|
|
|
10510
10404
|
/**
|
|
10511
10405
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
10512
10406
|
* set.
|
|
10513
|
-
*
|
|
10514
|
-
* Platforms: android, ios, web
|
|
10515
10407
|
*/
|
|
10516
10408
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
10517
10409
|
/**
|
|
10518
10410
|
* Actions when an element appears on the screen.
|
|
10519
|
-
*
|
|
10520
|
-
* Platforms: android, ios, web
|
|
10521
10411
|
*/
|
|
10522
10412
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
10523
10413
|
/**
|
|
@@ -10709,14 +10599,10 @@ interface DivSwitchProps {
|
|
|
10709
10599
|
/**
|
|
10710
10600
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
10711
10601
|
* set.
|
|
10712
|
-
*
|
|
10713
|
-
* Platforms: android, ios, web
|
|
10714
10602
|
*/
|
|
10715
10603
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
10716
10604
|
/**
|
|
10717
10605
|
* Actions when an element appears on the screen.
|
|
10718
|
-
*
|
|
10719
|
-
* Platforms: android, ios, web
|
|
10720
10606
|
*/
|
|
10721
10607
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
10722
10608
|
/**
|
|
@@ -10957,14 +10843,10 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
|
|
|
10957
10843
|
/**
|
|
10958
10844
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
10959
10845
|
* set.
|
|
10960
|
-
*
|
|
10961
|
-
* Platforms: android, ios, web
|
|
10962
10846
|
*/
|
|
10963
10847
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
10964
10848
|
/**
|
|
10965
10849
|
* Actions when an element appears on the screen.
|
|
10966
|
-
*
|
|
10967
|
-
* Platforms: android, ios, web
|
|
10968
10850
|
*/
|
|
10969
10851
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
10970
10852
|
/**
|
|
@@ -11199,14 +11081,10 @@ interface DivTabsProps {
|
|
|
11199
11081
|
/**
|
|
11200
11082
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
11201
11083
|
* set.
|
|
11202
|
-
*
|
|
11203
|
-
* Platforms: android, ios, web
|
|
11204
11084
|
*/
|
|
11205
11085
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
11206
11086
|
/**
|
|
11207
11087
|
* Actions when an element appears on the screen.
|
|
11208
|
-
*
|
|
11209
|
-
* Platforms: android, ios, web
|
|
11210
11088
|
*/
|
|
11211
11089
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
11212
11090
|
/**
|
|
@@ -11485,14 +11363,14 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
11485
11363
|
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
11486
11364
|
* devices (such as a mouse or stylus).
|
|
11487
11365
|
*
|
|
11488
|
-
* Platforms: web
|
|
11366
|
+
* Platforms: web, android
|
|
11489
11367
|
*/
|
|
11490
11368
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
11491
11369
|
/**
|
|
11492
11370
|
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
11493
11371
|
* devices (such as a mouse or stylus).
|
|
11494
11372
|
*
|
|
11495
|
-
* Platforms: web
|
|
11373
|
+
* Platforms: web, android
|
|
11496
11374
|
*/
|
|
11497
11375
|
hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
11498
11376
|
/**
|
|
@@ -11550,13 +11428,13 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
11550
11428
|
/**
|
|
11551
11429
|
* Actions performed after clicking/tapping an element.
|
|
11552
11430
|
*
|
|
11553
|
-
* Platforms: web
|
|
11431
|
+
* Platforms: web, android
|
|
11554
11432
|
*/
|
|
11555
11433
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
11556
11434
|
/**
|
|
11557
11435
|
* Actions performed at the start of a click/tap on an element.
|
|
11558
11436
|
*
|
|
11559
|
-
* Platforms: web
|
|
11437
|
+
* Platforms: web, android
|
|
11560
11438
|
*/
|
|
11561
11439
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
11562
11440
|
/**
|
|
@@ -11704,14 +11582,10 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
11704
11582
|
/**
|
|
11705
11583
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
11706
11584
|
* set.
|
|
11707
|
-
*
|
|
11708
|
-
* Platforms: android, ios, web
|
|
11709
11585
|
*/
|
|
11710
11586
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
11711
11587
|
/**
|
|
11712
11588
|
* Actions when an element appears on the screen.
|
|
11713
|
-
*
|
|
11714
|
-
* Platforms: android, ios, web
|
|
11715
11589
|
*/
|
|
11716
11590
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
11717
11591
|
/**
|
|
@@ -11863,14 +11737,14 @@ interface DivTextProps {
|
|
|
11863
11737
|
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
11864
11738
|
* devices (such as a mouse or stylus).
|
|
11865
11739
|
*
|
|
11866
|
-
* Platforms: web
|
|
11740
|
+
* Platforms: web, android
|
|
11867
11741
|
*/
|
|
11868
11742
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
11869
11743
|
/**
|
|
11870
11744
|
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
11871
11745
|
* devices (such as a mouse or stylus).
|
|
11872
11746
|
*
|
|
11873
|
-
* Platforms: web
|
|
11747
|
+
* Platforms: web, android
|
|
11874
11748
|
*/
|
|
11875
11749
|
hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
11876
11750
|
/**
|
|
@@ -11928,13 +11802,13 @@ interface DivTextProps {
|
|
|
11928
11802
|
/**
|
|
11929
11803
|
* Actions performed after clicking/tapping an element.
|
|
11930
11804
|
*
|
|
11931
|
-
* Platforms: web
|
|
11805
|
+
* Platforms: web, android
|
|
11932
11806
|
*/
|
|
11933
11807
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
11934
11808
|
/**
|
|
11935
11809
|
* Actions performed at the start of a click/tap on an element.
|
|
11936
11810
|
*
|
|
11937
|
-
* Platforms: web
|
|
11811
|
+
* Platforms: web, android
|
|
11938
11812
|
*/
|
|
11939
11813
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
11940
11814
|
/**
|
|
@@ -12082,14 +11956,10 @@ interface DivTextProps {
|
|
|
12082
11956
|
/**
|
|
12083
11957
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
12084
11958
|
* set.
|
|
12085
|
-
*
|
|
12086
|
-
* Platforms: android, ios, web
|
|
12087
11959
|
*/
|
|
12088
11960
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
12089
11961
|
/**
|
|
12090
11962
|
* Actions when an element appears on the screen.
|
|
12091
|
-
*
|
|
12092
|
-
* Platforms: android, ios, web
|
|
12093
11963
|
*/
|
|
12094
11964
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
12095
11965
|
/**
|
|
@@ -12138,12 +12008,12 @@ interface IDivTextImage {
|
|
|
12138
12008
|
*/
|
|
12139
12009
|
height?: Type<DivFixedSize>;
|
|
12140
12010
|
/**
|
|
12141
|
-
* Defines direction in `start` parameter:
|
|
12142
|
-
`normal`
|
|
12143
|
-
* ..., N]). Use to insert an image by index relative to the
|
|
12144
|
-
|
|
12145
|
-
|
|
12146
|
-
* image by index relative to the end of a string.
|
|
12011
|
+
* Defines the direction in the `start` parameter:
|
|
12012
|
+
– `normal` is for regular string indexing ([0,
|
|
12013
|
+
* 1, 2, ..., N]). Use it if you need to insert an image by index relative to the beginning of a
|
|
12014
|
+
* string.
|
|
12015
|
+
– `reversed` is for indexing a string from the end to the beginning ([N, ..., 2, 1,
|
|
12016
|
+
* 0]). Use it if you need to insert an image by index relative to the end of a string.
|
|
12147
12017
|
*
|
|
12148
12018
|
* Platforms: android, web
|
|
12149
12019
|
*/
|
|
@@ -12200,7 +12070,7 @@ interface IDivTextRange {
|
|
|
12200
12070
|
*/
|
|
12201
12071
|
actions?: Type<NonEmptyArray<IDivAction>>;
|
|
12202
12072
|
/**
|
|
12203
|
-
* Vertical text alignment within the row.
|
|
12073
|
+
* Vertical text alignment within the row. Ignored when a baseline offset is specified.
|
|
12204
12074
|
*
|
|
12205
12075
|
* Platforms: android, web
|
|
12206
12076
|
*/
|
|
@@ -12209,6 +12079,12 @@ interface IDivTextRange {
|
|
|
12209
12079
|
* Character range background.
|
|
12210
12080
|
*/
|
|
12211
12081
|
background?: Type<DivTextRangeBackground>;
|
|
12082
|
+
/**
|
|
12083
|
+
* Character baseline vertial offset. If set, vertical alignment is ignored.
|
|
12084
|
+
*
|
|
12085
|
+
* Platforms: android, web
|
|
12086
|
+
*/
|
|
12087
|
+
baseline_offset?: Type<number | DivExpression>;
|
|
12212
12088
|
/**
|
|
12213
12089
|
* Character range border.
|
|
12214
12090
|
*/
|
|
@@ -12261,8 +12137,8 @@ interface IDivTextRange {
|
|
|
12261
12137
|
*/
|
|
12262
12138
|
line_height?: Type<number | DivExpression>;
|
|
12263
12139
|
/**
|
|
12264
|
-
* A mask that hides a part of text
|
|
12265
|
-
* property.
|
|
12140
|
+
* A mask that hides a part of text. To show the hidden text, disable the mask using the
|
|
12141
|
+
* `is_enabled` property.
|
|
12266
12142
|
*
|
|
12267
12143
|
* Platforms: not supported
|
|
12268
12144
|
*/
|
|
@@ -12320,72 +12196,72 @@ declare type DivTextRangeMask = DivTextRangeMaskParticles | DivTextRangeMaskSoli
|
|
|
12320
12196
|
|
|
12321
12197
|
interface IDivTextRangeMaskBase {
|
|
12322
12198
|
/**
|
|
12323
|
-
* Controls mask state
|
|
12324
|
-
* text will be shown.
|
|
12199
|
+
* Controls the mask state. If set to `true`, the mask will hide the specified part of text.
|
|
12200
|
+
* Otherwise, the text will be shown.
|
|
12325
12201
|
*/
|
|
12326
12202
|
is_enabled?: Type<boolean | DivExpression>;
|
|
12327
12203
|
}
|
|
12328
12204
|
|
|
12329
12205
|
/**
|
|
12330
|
-
* A mask to hide text (spoiler)
|
|
12206
|
+
* A mask to hide text (spoiler). Looks like randomly distributed particles, same as in Telegram.
|
|
12331
12207
|
*/
|
|
12332
12208
|
declare class DivTextRangeMaskParticles<T extends DivTextRangeMaskParticlesProps = DivTextRangeMaskParticlesProps> {
|
|
12333
12209
|
readonly _props?: Exact<DivTextRangeMaskParticlesProps, T>;
|
|
12334
12210
|
readonly type = "particles";
|
|
12335
12211
|
/**
|
|
12336
|
-
*
|
|
12212
|
+
* The color of particles on the mask.
|
|
12337
12213
|
*/
|
|
12338
12214
|
color: Type<string | DivExpression>;
|
|
12339
12215
|
/**
|
|
12340
|
-
*
|
|
12341
|
-
* given point on the mask.
|
|
12216
|
+
* The density of particles on the mask. Interpreted as the probability of a particle to appear
|
|
12217
|
+
* in a given point on the mask.
|
|
12342
12218
|
*/
|
|
12343
12219
|
density?: Type<number | DivExpression>;
|
|
12344
12220
|
/**
|
|
12345
|
-
*
|
|
12346
|
-
*
|
|
12221
|
+
* Enables animation for particles on the mask. The animation looks like a smooth movement of
|
|
12222
|
+
* particles across the mask, same as in Telegram.
|
|
12347
12223
|
*/
|
|
12348
12224
|
is_animated?: Type<boolean | DivExpression>;
|
|
12349
12225
|
/**
|
|
12350
|
-
* Controls mask state
|
|
12351
|
-
* text will be shown.
|
|
12226
|
+
* Controls the mask state. If set to `true`, the mask will hide the specified part of text.
|
|
12227
|
+
* Otherwise, the text will be shown.
|
|
12352
12228
|
*/
|
|
12353
12229
|
is_enabled?: Type<boolean | DivExpression>;
|
|
12354
12230
|
/**
|
|
12355
|
-
*
|
|
12231
|
+
* The size of a single particle on the mask.
|
|
12356
12232
|
*/
|
|
12357
12233
|
particle_size?: Type<DivFixedSize>;
|
|
12358
12234
|
constructor(props: Exact<DivTextRangeMaskParticlesProps, T>);
|
|
12359
12235
|
}
|
|
12360
12236
|
interface DivTextRangeMaskParticlesProps {
|
|
12361
12237
|
/**
|
|
12362
|
-
*
|
|
12238
|
+
* The color of particles on the mask.
|
|
12363
12239
|
*/
|
|
12364
12240
|
color: Type<string | DivExpression>;
|
|
12365
12241
|
/**
|
|
12366
|
-
*
|
|
12367
|
-
* given point on the mask.
|
|
12242
|
+
* The density of particles on the mask. Interpreted as the probability of a particle to appear
|
|
12243
|
+
* in a given point on the mask.
|
|
12368
12244
|
*/
|
|
12369
12245
|
density?: Type<number | DivExpression>;
|
|
12370
12246
|
/**
|
|
12371
|
-
*
|
|
12372
|
-
*
|
|
12247
|
+
* Enables animation for particles on the mask. The animation looks like a smooth movement of
|
|
12248
|
+
* particles across the mask, same as in Telegram.
|
|
12373
12249
|
*/
|
|
12374
12250
|
is_animated?: Type<boolean | DivExpression>;
|
|
12375
12251
|
/**
|
|
12376
|
-
* Controls mask state
|
|
12377
|
-
* text will be shown.
|
|
12252
|
+
* Controls the mask state. If set to `true`, the mask will hide the specified part of text.
|
|
12253
|
+
* Otherwise, the text will be shown.
|
|
12378
12254
|
*/
|
|
12379
12255
|
is_enabled?: Type<boolean | DivExpression>;
|
|
12380
12256
|
/**
|
|
12381
|
-
*
|
|
12257
|
+
* The size of a single particle on the mask.
|
|
12382
12258
|
*/
|
|
12383
12259
|
particle_size?: Type<DivFixedSize>;
|
|
12384
12260
|
}
|
|
12385
12261
|
|
|
12386
12262
|
/**
|
|
12387
|
-
* A mask to hide text (spoiler)
|
|
12388
|
-
* `color` parameter.
|
|
12263
|
+
* A mask to hide text (spoiler). Looks like a rectangle filled with the color specified in the
|
|
12264
|
+
* `color` parameter, same as in Telegram.
|
|
12389
12265
|
*/
|
|
12390
12266
|
declare class DivTextRangeMaskSolid<T extends DivTextRangeMaskSolidProps = DivTextRangeMaskSolidProps> {
|
|
12391
12267
|
readonly _props?: Exact<DivTextRangeMaskSolidProps, T>;
|
|
@@ -12395,8 +12271,8 @@ declare class DivTextRangeMaskSolid<T extends DivTextRangeMaskSolidProps = DivTe
|
|
|
12395
12271
|
*/
|
|
12396
12272
|
color: Type<string | DivExpression>;
|
|
12397
12273
|
/**
|
|
12398
|
-
* Controls mask state
|
|
12399
|
-
* text will be shown.
|
|
12274
|
+
* Controls the mask state. If set to `true`, the mask will hide the specified part of text.
|
|
12275
|
+
* Otherwise, the text will be shown.
|
|
12400
12276
|
*/
|
|
12401
12277
|
is_enabled?: Type<boolean | DivExpression>;
|
|
12402
12278
|
constructor(props: Exact<DivTextRangeMaskSolidProps, T>);
|
|
@@ -12407,8 +12283,8 @@ interface DivTextRangeMaskSolidProps {
|
|
|
12407
12283
|
*/
|
|
12408
12284
|
color: Type<string | DivExpression>;
|
|
12409
12285
|
/**
|
|
12410
|
-
* Controls mask state
|
|
12411
|
-
* text will be shown.
|
|
12286
|
+
* Controls the mask state. If set to `true`, the mask will hide the specified part of text.
|
|
12287
|
+
* Otherwise, the text will be shown.
|
|
12412
12288
|
*/
|
|
12413
12289
|
is_enabled?: Type<boolean | DivExpression>;
|
|
12414
12290
|
}
|
|
@@ -12791,14 +12667,10 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
|
|
|
12791
12667
|
/**
|
|
12792
12668
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
12793
12669
|
* set.
|
|
12794
|
-
*
|
|
12795
|
-
* Platforms: android, ios, web
|
|
12796
12670
|
*/
|
|
12797
12671
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
12798
12672
|
/**
|
|
12799
12673
|
* Actions when an element appears on the screen.
|
|
12800
|
-
*
|
|
12801
|
-
* Platforms: android, ios, web
|
|
12802
12674
|
*/
|
|
12803
12675
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
12804
12676
|
/**
|
|
@@ -13040,14 +12912,10 @@ interface DivVideoProps {
|
|
|
13040
12912
|
/**
|
|
13041
12913
|
* Tracking visibility of a single element. Not used if the `visibility_actions` parameter is
|
|
13042
12914
|
* set.
|
|
13043
|
-
*
|
|
13044
|
-
* Platforms: android, ios, web
|
|
13045
12915
|
*/
|
|
13046
12916
|
visibility_action?: Type<IDivVisibilityAction>;
|
|
13047
12917
|
/**
|
|
13048
12918
|
* Actions when an element appears on the screen.
|
|
13049
|
-
*
|
|
13050
|
-
* Platforms: android, ios, web
|
|
13051
12919
|
*/
|
|
13052
12920
|
visibility_actions?: Type<NonEmptyArray<IDivVisibilityAction>>;
|
|
13053
12921
|
/**
|
|
@@ -13136,8 +13004,6 @@ declare type DivVisibility = 'visible' | 'invisible' | 'gone';
|
|
|
13136
13004
|
interface IDivVisibilityAction {
|
|
13137
13005
|
/**
|
|
13138
13006
|
* Callbacks that are called after [data loading](../../interaction#loading-data).
|
|
13139
|
-
*
|
|
13140
|
-
* Platforms: android, ios, web
|
|
13141
13007
|
*/
|
|
13142
13008
|
download_callbacks?: Type<IDivDownloadCallbacks>;
|
|
13143
13009
|
/**
|
|
@@ -13595,4 +13461,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
|
|
|
13595
13461
|
};
|
|
13596
13462
|
};
|
|
13597
13463
|
|
|
13598
|
-
export { AccessibilityType, ArrayValue, ArrayValueProps, ArrayVariable, ArrayVariableProps, BooleanValue, BooleanValueProps, BooleanVariable, BooleanVariableProps, ColorValue, ColorValueProps, ColorVariable, ColorVariableProps, ContentText, ContentTextProps, ContentUrl, ContentUrlProps, DelimiterStyleOrientation, DictValue, DictValueProps, DictVariable, DictVariableProps, Div, DivAccessibilityMode, DivAccessibilityType, DivActionAnimatorStart, DivActionAnimatorStartProps, DivActionAnimatorStop, DivActionAnimatorStopProps, DivActionArrayInsertValue, DivActionArrayInsertValueProps, DivActionArrayRemoveValue, DivActionArrayRemoveValueProps, DivActionArraySetValue, DivActionArraySetValueProps, DivActionClearFocus, DivActionClearFocusProps, DivActionCopyToClipboard, DivActionCopyToClipboardContent, DivActionCopyToClipboardProps, DivActionDictSetValue, DivActionDictSetValueProps, DivActionDownload, DivActionDownloadProps, DivActionFocusElement, DivActionFocusElementProps, DivActionHideTooltip, DivActionHideTooltipProps, DivActionScrollBy, DivActionScrollByOverflow, DivActionScrollByProps, DivActionScrollDestination, DivActionScrollTo, DivActionScrollToProps, DivActionSetState, DivActionSetStateProps, DivActionSetStoredValue, DivActionSetStoredValueProps, DivActionSetVariable, DivActionSetVariableProps, DivActionShowTooltip, DivActionShowTooltipProps, DivActionSubmit, DivActionSubmitProps, DivActionTarget, DivActionTimer, DivActionTimerAction, DivActionTimerProps, DivActionTyped, DivActionVideo, DivActionVideoAction, DivActionVideoProps, DivAlignmentHorizontal, DivAlignmentVertical, DivAnimationDirection, DivAnimationInterpolator, DivAnimationName, DivAnimator, DivAppearanceSetTransition, DivAppearanceSetTransitionProps, DivAppearanceTransition, DivBackground, DivBlendMode, DivBlur, DivBlurProps, DivChangeBoundsTransition, DivChangeBoundsTransitionProps, DivChangeSetTransition, DivChangeSetTransitionProps, DivChangeTransition, DivCircleShape, DivCircleShapeProps, DivCloudBackground, DivCloudBackgroundProps, DivColorAnimator, DivColorAnimatorProps, DivContainer, DivContainerLayoutMode, DivContainerOrientation, DivContainerProps, DivContainerProps0, DivContainerProps1, DivContainerPropsBase, DivContentAlignmentHorizontal, DivContentAlignmentVertical, DivCount, DivCurrencyInputMask, DivCurrencyInputMaskProps, DivCustom, DivCustomProps, DivDefaultIndicatorItemPlacement, DivDefaultIndicatorItemPlacementProps, DivDrawable, DivEvaluableType, DivExpression, DivFadeTransition, DivFadeTransitionProps, DivFilter, DivFilterRtlMirror, DivFilterRtlMirrorProps, DivFixedCount, DivFixedCountProps, DivFixedLengthInputMask, DivFixedLengthInputMaskProps, DivFixedSize, DivFixedSizeProps, DivFontWeight, DivGallery, DivGalleryCrossContentAlignment, DivGalleryOrientation, DivGalleryProps, DivGalleryScrollMode, DivGalleryScrollbar, DivGifImage, DivGifImageProps, DivGradientBackground, DivGrid, DivGridProps, DivImage, DivImageBackground, DivImageBackgroundProps, DivImageProps, DivImageScale, DivIndicator, DivIndicatorAnimation, DivIndicatorItemPlacement, DivIndicatorProps, DivInfinityCount, DivInfinityCountProps, DivInput, DivInputAutocapitalization, DivInputEnterKeyType, DivInputFilter, DivInputFilterExpression, DivInputFilterExpressionProps, DivInputFilterRegex, DivInputFilterRegexProps, DivInputKeyboardType, DivInputMask, DivInputProps, DivInputValidator, DivInputValidatorExpression, DivInputValidatorExpressionProps, DivInputValidatorRegex, DivInputValidatorRegexProps, DivLineStyle, DivLinearGradient, DivLinearGradientProps, DivMatchParentSize, DivMatchParentSizeProps, DivNeighbourPageSize, DivNeighbourPageSizeProps, DivNinePatchBackground, DivNinePatchBackgroundProps, DivNumberAnimator, DivNumberAnimatorProps, DivPageContentSize,
|
|
13464
|
+
export { AccessibilityType, ArrayValue, ArrayValueProps, ArrayVariable, ArrayVariableProps, BooleanValue, BooleanValueProps, BooleanVariable, BooleanVariableProps, ColorValue, ColorValueProps, ColorVariable, ColorVariableProps, ContentText, ContentTextProps, ContentUrl, ContentUrlProps, DelimiterStyleOrientation, DictValue, DictValueProps, DictVariable, DictVariableProps, Div, DivAccessibilityMode, DivAccessibilityType, DivActionAnimatorStart, DivActionAnimatorStartProps, DivActionAnimatorStop, DivActionAnimatorStopProps, DivActionArrayInsertValue, DivActionArrayInsertValueProps, DivActionArrayRemoveValue, DivActionArrayRemoveValueProps, DivActionArraySetValue, DivActionArraySetValueProps, DivActionClearFocus, DivActionClearFocusProps, DivActionCopyToClipboard, DivActionCopyToClipboardContent, DivActionCopyToClipboardProps, DivActionDictSetValue, DivActionDictSetValueProps, DivActionDownload, DivActionDownloadProps, DivActionFocusElement, DivActionFocusElementProps, DivActionHideTooltip, DivActionHideTooltipProps, DivActionScrollBy, DivActionScrollByOverflow, DivActionScrollByProps, DivActionScrollDestination, DivActionScrollTo, DivActionScrollToProps, DivActionSetState, DivActionSetStateProps, DivActionSetStoredValue, DivActionSetStoredValueProps, DivActionSetVariable, DivActionSetVariableProps, DivActionShowTooltip, DivActionShowTooltipProps, DivActionSubmit, DivActionSubmitProps, DivActionTarget, DivActionTimer, DivActionTimerAction, DivActionTimerProps, DivActionTyped, DivActionVideo, DivActionVideoAction, DivActionVideoProps, DivAlignmentHorizontal, DivAlignmentVertical, DivAnimationDirection, DivAnimationInterpolator, DivAnimationName, DivAnimator, DivAppearanceSetTransition, DivAppearanceSetTransitionProps, DivAppearanceTransition, DivBackground, DivBlendMode, DivBlur, DivBlurProps, DivChangeBoundsTransition, DivChangeBoundsTransitionProps, DivChangeSetTransition, DivChangeSetTransitionProps, DivChangeTransition, DivCircleShape, DivCircleShapeProps, DivCloudBackground, DivCloudBackgroundProps, DivColorAnimator, DivColorAnimatorProps, DivContainer, DivContainerLayoutMode, DivContainerOrientation, DivContainerProps, DivContainerProps0, DivContainerProps1, DivContainerPropsBase, DivContentAlignmentHorizontal, DivContentAlignmentVertical, DivCount, DivCurrencyInputMask, DivCurrencyInputMaskProps, DivCustom, DivCustomProps, DivDefaultIndicatorItemPlacement, DivDefaultIndicatorItemPlacementProps, DivDrawable, DivEvaluableType, DivExpression, DivFadeTransition, DivFadeTransitionProps, DivFilter, DivFilterRtlMirror, DivFilterRtlMirrorProps, DivFixedCount, DivFixedCountProps, DivFixedLengthInputMask, DivFixedLengthInputMaskProps, DivFixedSize, DivFixedSizeProps, DivFontWeight, DivGallery, DivGalleryCrossContentAlignment, DivGalleryOrientation, DivGalleryProps, DivGalleryScrollMode, DivGalleryScrollbar, DivGifImage, DivGifImageProps, DivGradientBackground, DivGrid, DivGridProps, DivImage, DivImageBackground, DivImageBackgroundProps, DivImageProps, DivImageScale, DivIndicator, DivIndicatorAnimation, DivIndicatorItemPlacement, DivIndicatorProps, DivInfinityCount, DivInfinityCountProps, DivInput, DivInputAutocapitalization, DivInputEnterKeyType, DivInputFilter, DivInputFilterExpression, DivInputFilterExpressionProps, DivInputFilterRegex, DivInputFilterRegexProps, DivInputKeyboardType, DivInputMask, DivInputProps, DivInputValidator, DivInputValidatorExpression, DivInputValidatorExpressionProps, DivInputValidatorRegex, DivInputValidatorRegexProps, DivLineStyle, DivLinearGradient, DivLinearGradientProps, DivMatchParentSize, DivMatchParentSizeProps, DivNeighbourPageSize, DivNeighbourPageSizeProps, DivNinePatchBackground, DivNinePatchBackgroundProps, DivNumberAnimator, DivNumberAnimatorProps, DivPageContentSize, DivPageContentSizeProps, DivPageSize, DivPageSizeProps, DivPageTransformation, DivPageTransformationOverlap, DivPageTransformationOverlapProps, DivPageTransformationSlide, DivPageTransformationSlideProps, DivPager, DivPagerLayoutMode, DivPagerOrientation, DivPagerProps, DivPagerScrollAxisAlignment, 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, DivSwitch, DivSwitchProps, DivTabs, DivTabsProps, DivText, DivTextAlignmentVertical, DivTextGradient, DivTextProps, DivTextRangeBackground, DivTextRangeMask, DivTextRangeMaskParticles, DivTextRangeMaskParticlesProps, DivTextRangeMaskSolid, DivTextRangeMaskSolidProps, DivTextTruncate, DivTooltipPosition, DivTransitionSelector, DivTransitionTrigger, DivTriggerMode, DivTypedValue, DivVariable, DivVideo, DivVideoProps, DivVideoScale, DivVideoSource, DivVideoSourceProps, DivVideoSourceResolution, DivVideoSourceResolutionProps, DivVisibility, DivWrapContentSize, DivWrapContentSizeProps, EndDestination, EndDestinationProps, Exact, IDivAbsoluteEdgeInsets, IDivAccessibility, IDivAction, IDivActionMenuItem, IDivActionSubmitRequest, IDivAnimation, IDivAnimatorBase, IDivAspect, IDivBase, IDivBorder, IDivCollectionItemBuilder, IDivCollectionItemBuilderPrototype, IDivContainerSeparator, IDivCornersRadius, IDivData, IDivDataState, IDivDimension, IDivDisappearAction, IDivDownloadCallbacks, IDivEdgeInsets, IDivExtension, IDivFixedLengthInputMaskPatternElement, IDivFocus, IDivFocusNextFocusIds, IDivFunction, IDivFunctionArgument, IDivInputMaskBase, IDivInputNativeInterface, IDivInputValidatorBase, IDivLayoutProvider, IDivPatch, IDivPatchChange, IDivPoint, IDivSelectOption, IDivSeparatorDelimiterStyle, IDivShadow, IDivSightAction, IDivSliderRange, IDivSliderTextStyle, IDivStateState, IDivStroke, IDivTabsItem, IDivTabsTabTitleDelimiter, IDivTabsTabTitleStyle, IDivTextEllipsis, IDivTextImage, IDivTextRange, IDivTextRangeBorder, IDivTextRangeMaskBase, IDivTimer, IDivTooltip, IDivTransform, IDivTransitionBase, IDivTrigger, IDivVisibilityAction, IDivWrapContentSizeConstraintSize, IImageAccessibility, IRequestHeader, ITemplates, ImageIndexingDirection, IndexDestination, IndexDestinationProps, IntBoolean, IntegerValue, IntegerValueProps, IntegerVariable, IntegerVariableProps, NonEmptyArray, NumberValue, NumberValueProps, NumberVariable, NumberVariableProps, OffsetDestination, OffsetDestinationProps, RequestMethod, SafeDivExpression, StartDestination, StartDestinationProps, 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 };
|