@divkitframework/jsonbuilder 30.28.0 → 30.29.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 +30 -2
- package/dist/es/jsonbuilder.js.map +1 -1
- package/dist/jsonbuilder.d.ts +228 -117
- package/dist/jsonbuilder.js +31 -1
- package/dist/jsonbuilder.js.map +1 -1
- package/package.json +1 -1
package/dist/jsonbuilder.d.ts
CHANGED
|
@@ -298,6 +298,13 @@ interface IDivAccessibility {
|
|
|
298
298
|
* Platforms: android, ios
|
|
299
299
|
*/
|
|
300
300
|
hint?: Type<string | DivExpression>;
|
|
301
|
+
/**
|
|
302
|
+
* Indicates the current status of the checkbox or radio button. `true` is selected, `false` is
|
|
303
|
+
* not selected.
|
|
304
|
+
*
|
|
305
|
+
* Platforms: not supported
|
|
306
|
+
*/
|
|
307
|
+
is_checked?: Type<IntBoolean | DivExpression>;
|
|
301
308
|
/**
|
|
302
309
|
* The way the accessibility tree is organized. In the `merge` mode the accessibility service
|
|
303
310
|
* perceives an element together with a subtree as a whole. In the `exclude` mode an element
|
|
@@ -328,7 +335,7 @@ interface IDivAccessibility {
|
|
|
328
335
|
type?: Type<DivAccessibilityType>;
|
|
329
336
|
}
|
|
330
337
|
declare type DivAccessibilityMode = 'default' | 'merge' | 'exclude';
|
|
331
|
-
declare type DivAccessibilityType = 'none' | 'button' | 'image' | 'text' | 'edit_text' | 'header' | 'tab_bar' | 'list' | 'select' | 'auto';
|
|
338
|
+
declare type DivAccessibilityType = 'none' | 'button' | 'image' | 'text' | 'edit_text' | 'header' | 'tab_bar' | 'list' | 'select' | 'checkbox' | 'radio' | 'auto';
|
|
332
339
|
|
|
333
340
|
/**
|
|
334
341
|
* It defines an action when clicking on an element.
|
|
@@ -1195,7 +1202,7 @@ interface IDivBase {
|
|
|
1195
1202
|
/**
|
|
1196
1203
|
* User functions.
|
|
1197
1204
|
*
|
|
1198
|
-
* Platforms: ios
|
|
1205
|
+
* Platforms: android, ios, web
|
|
1199
1206
|
*/
|
|
1200
1207
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
1201
1208
|
/**
|
|
@@ -1748,7 +1755,7 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
|
|
|
1748
1755
|
/**
|
|
1749
1756
|
* User functions.
|
|
1750
1757
|
*
|
|
1751
|
-
* Platforms: ios
|
|
1758
|
+
* Platforms: android, ios, web
|
|
1752
1759
|
*/
|
|
1753
1760
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
1754
1761
|
/**
|
|
@@ -1758,15 +1765,15 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
|
|
|
1758
1765
|
*/
|
|
1759
1766
|
height?: Type<DivSize>;
|
|
1760
1767
|
/**
|
|
1761
|
-
* Actions performed
|
|
1762
|
-
*
|
|
1768
|
+
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
1769
|
+
* devices (such as a mouse or stylus).
|
|
1763
1770
|
*
|
|
1764
1771
|
* Platforms: not supported
|
|
1765
1772
|
*/
|
|
1766
1773
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
1767
1774
|
/**
|
|
1768
|
-
* Actions performed when hovering over an element. Available on platforms
|
|
1769
|
-
*
|
|
1775
|
+
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
1776
|
+
* devices (such as a mouse or stylus).
|
|
1770
1777
|
*
|
|
1771
1778
|
* Platforms: not supported
|
|
1772
1779
|
*/
|
|
@@ -1828,13 +1835,13 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
|
|
|
1828
1835
|
*/
|
|
1829
1836
|
paddings?: Type<IDivEdgeInsets>;
|
|
1830
1837
|
/**
|
|
1831
|
-
* Actions performed
|
|
1838
|
+
* Actions performed after clicking/tapping an element.
|
|
1832
1839
|
*
|
|
1833
1840
|
* Platforms: not supported
|
|
1834
1841
|
*/
|
|
1835
1842
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
1836
1843
|
/**
|
|
1837
|
-
* Actions performed
|
|
1844
|
+
* Actions performed at the start of a click/tap on an element.
|
|
1838
1845
|
*
|
|
1839
1846
|
* Platforms: not supported
|
|
1840
1847
|
*/
|
|
@@ -2049,7 +2056,7 @@ interface DivContainerPropsBase {
|
|
|
2049
2056
|
/**
|
|
2050
2057
|
* User functions.
|
|
2051
2058
|
*
|
|
2052
|
-
* Platforms: ios
|
|
2059
|
+
* Platforms: android, ios, web
|
|
2053
2060
|
*/
|
|
2054
2061
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
2055
2062
|
/**
|
|
@@ -2059,15 +2066,15 @@ interface DivContainerPropsBase {
|
|
|
2059
2066
|
*/
|
|
2060
2067
|
height?: Type<DivSize>;
|
|
2061
2068
|
/**
|
|
2062
|
-
* Actions performed
|
|
2063
|
-
*
|
|
2069
|
+
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
2070
|
+
* devices (such as a mouse or stylus).
|
|
2064
2071
|
*
|
|
2065
2072
|
* Platforms: not supported
|
|
2066
2073
|
*/
|
|
2067
2074
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
2068
2075
|
/**
|
|
2069
|
-
* Actions performed when hovering over an element. Available on platforms
|
|
2070
|
-
*
|
|
2076
|
+
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
2077
|
+
* devices (such as a mouse or stylus).
|
|
2071
2078
|
*
|
|
2072
2079
|
* Platforms: not supported
|
|
2073
2080
|
*/
|
|
@@ -2129,13 +2136,13 @@ interface DivContainerPropsBase {
|
|
|
2129
2136
|
*/
|
|
2130
2137
|
paddings?: Type<IDivEdgeInsets>;
|
|
2131
2138
|
/**
|
|
2132
|
-
* Actions performed
|
|
2139
|
+
* Actions performed after clicking/tapping an element.
|
|
2133
2140
|
*
|
|
2134
2141
|
* Platforms: not supported
|
|
2135
2142
|
*/
|
|
2136
2143
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
2137
2144
|
/**
|
|
2138
|
-
* Actions performed
|
|
2145
|
+
* Actions performed at the start of a click/tap on an element.
|
|
2139
2146
|
*
|
|
2140
2147
|
* Platforms: not supported
|
|
2141
2148
|
*/
|
|
@@ -2416,7 +2423,7 @@ declare class DivCustom<T extends DivCustomProps = DivCustomProps> {
|
|
|
2416
2423
|
/**
|
|
2417
2424
|
* User functions.
|
|
2418
2425
|
*
|
|
2419
|
-
* Platforms: ios
|
|
2426
|
+
* Platforms: android, ios, web
|
|
2420
2427
|
*/
|
|
2421
2428
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
2422
2429
|
/**
|
|
@@ -2612,7 +2619,7 @@ interface DivCustomProps {
|
|
|
2612
2619
|
/**
|
|
2613
2620
|
* User functions.
|
|
2614
2621
|
*
|
|
2615
|
-
* Platforms: ios
|
|
2622
|
+
* Platforms: android, ios, web
|
|
2616
2623
|
*/
|
|
2617
2624
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
2618
2625
|
/**
|
|
@@ -3246,7 +3253,7 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
|
|
|
3246
3253
|
/**
|
|
3247
3254
|
* User functions.
|
|
3248
3255
|
*
|
|
3249
|
-
* Platforms: ios
|
|
3256
|
+
* Platforms: android, ios, web
|
|
3250
3257
|
*/
|
|
3251
3258
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
3252
3259
|
/**
|
|
@@ -3507,7 +3514,7 @@ interface DivGalleryProps {
|
|
|
3507
3514
|
/**
|
|
3508
3515
|
* User functions.
|
|
3509
3516
|
*
|
|
3510
|
-
* Platforms: ios
|
|
3517
|
+
* Platforms: android, ios, web
|
|
3511
3518
|
*/
|
|
3512
3519
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
3513
3520
|
/**
|
|
@@ -3783,7 +3790,7 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
|
|
|
3783
3790
|
/**
|
|
3784
3791
|
* User functions.
|
|
3785
3792
|
*
|
|
3786
|
-
* Platforms: ios
|
|
3793
|
+
* Platforms: android, ios, web
|
|
3787
3794
|
*/
|
|
3788
3795
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
3789
3796
|
/**
|
|
@@ -3797,15 +3804,15 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
|
|
|
3797
3804
|
*/
|
|
3798
3805
|
height?: Type<DivSize>;
|
|
3799
3806
|
/**
|
|
3800
|
-
* Actions performed
|
|
3801
|
-
*
|
|
3807
|
+
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
3808
|
+
* devices (such as a mouse or stylus).
|
|
3802
3809
|
*
|
|
3803
3810
|
* Platforms: not supported
|
|
3804
3811
|
*/
|
|
3805
3812
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
3806
3813
|
/**
|
|
3807
|
-
* Actions performed when hovering over an element. Available on platforms
|
|
3808
|
-
*
|
|
3814
|
+
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
3815
|
+
* devices (such as a mouse or stylus).
|
|
3809
3816
|
*
|
|
3810
3817
|
* Platforms: not supported
|
|
3811
3818
|
*/
|
|
@@ -3849,13 +3856,13 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
|
|
|
3849
3856
|
*/
|
|
3850
3857
|
preload_required?: Type<IntBoolean | DivExpression>;
|
|
3851
3858
|
/**
|
|
3852
|
-
* Actions performed
|
|
3859
|
+
* Actions performed after clicking/tapping an element.
|
|
3853
3860
|
*
|
|
3854
3861
|
* Platforms: not supported
|
|
3855
3862
|
*/
|
|
3856
3863
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
3857
3864
|
/**
|
|
3858
|
-
* Actions performed
|
|
3865
|
+
* Actions performed at the start of a click/tap on an element.
|
|
3859
3866
|
*
|
|
3860
3867
|
* Platforms: not supported
|
|
3861
3868
|
*/
|
|
@@ -4062,7 +4069,7 @@ interface DivGifImageProps {
|
|
|
4062
4069
|
/**
|
|
4063
4070
|
* User functions.
|
|
4064
4071
|
*
|
|
4065
|
-
* Platforms: ios
|
|
4072
|
+
* Platforms: android, ios, web
|
|
4066
4073
|
*/
|
|
4067
4074
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
4068
4075
|
/**
|
|
@@ -4076,15 +4083,15 @@ interface DivGifImageProps {
|
|
|
4076
4083
|
*/
|
|
4077
4084
|
height?: Type<DivSize>;
|
|
4078
4085
|
/**
|
|
4079
|
-
* Actions performed
|
|
4080
|
-
*
|
|
4086
|
+
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
4087
|
+
* devices (such as a mouse or stylus).
|
|
4081
4088
|
*
|
|
4082
4089
|
* Platforms: not supported
|
|
4083
4090
|
*/
|
|
4084
4091
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4085
4092
|
/**
|
|
4086
|
-
* Actions performed when hovering over an element. Available on platforms
|
|
4087
|
-
*
|
|
4093
|
+
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
4094
|
+
* devices (such as a mouse or stylus).
|
|
4088
4095
|
*
|
|
4089
4096
|
* Platforms: not supported
|
|
4090
4097
|
*/
|
|
@@ -4128,13 +4135,13 @@ interface DivGifImageProps {
|
|
|
4128
4135
|
*/
|
|
4129
4136
|
preload_required?: Type<IntBoolean | DivExpression>;
|
|
4130
4137
|
/**
|
|
4131
|
-
* Actions performed
|
|
4138
|
+
* Actions performed after clicking/tapping an element.
|
|
4132
4139
|
*
|
|
4133
4140
|
* Platforms: not supported
|
|
4134
4141
|
*/
|
|
4135
4142
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4136
4143
|
/**
|
|
4137
|
-
* Actions performed
|
|
4144
|
+
* Actions performed at the start of a click/tap on an element.
|
|
4138
4145
|
*
|
|
4139
4146
|
* Platforms: not supported
|
|
4140
4147
|
*/
|
|
@@ -4345,7 +4352,7 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
|
|
|
4345
4352
|
/**
|
|
4346
4353
|
* User functions.
|
|
4347
4354
|
*
|
|
4348
|
-
* Platforms: ios
|
|
4355
|
+
* Platforms: android, ios, web
|
|
4349
4356
|
*/
|
|
4350
4357
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
4351
4358
|
/**
|
|
@@ -4355,15 +4362,15 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
|
|
|
4355
4362
|
*/
|
|
4356
4363
|
height?: Type<DivSize>;
|
|
4357
4364
|
/**
|
|
4358
|
-
* Actions performed
|
|
4359
|
-
*
|
|
4365
|
+
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
4366
|
+
* devices (such as a mouse or stylus).
|
|
4360
4367
|
*
|
|
4361
4368
|
* Platforms: not supported
|
|
4362
4369
|
*/
|
|
4363
4370
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4364
4371
|
/**
|
|
4365
|
-
* Actions performed when hovering over an element. Available on platforms
|
|
4366
|
-
*
|
|
4372
|
+
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
4373
|
+
* devices (such as a mouse or stylus).
|
|
4367
4374
|
*
|
|
4368
4375
|
* Platforms: not supported
|
|
4369
4376
|
*/
|
|
@@ -4399,13 +4406,13 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
|
|
|
4399
4406
|
*/
|
|
4400
4407
|
paddings?: Type<IDivEdgeInsets>;
|
|
4401
4408
|
/**
|
|
4402
|
-
* Actions performed
|
|
4409
|
+
* Actions performed after clicking/tapping an element.
|
|
4403
4410
|
*
|
|
4404
4411
|
* Platforms: not supported
|
|
4405
4412
|
*/
|
|
4406
4413
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4407
4414
|
/**
|
|
4408
|
-
* Actions performed
|
|
4415
|
+
* Actions performed at the start of a click/tap on an element.
|
|
4409
4416
|
*
|
|
4410
4417
|
* Platforms: not supported
|
|
4411
4418
|
*/
|
|
@@ -4599,7 +4606,7 @@ interface DivGridProps {
|
|
|
4599
4606
|
/**
|
|
4600
4607
|
* User functions.
|
|
4601
4608
|
*
|
|
4602
|
-
* Platforms: ios
|
|
4609
|
+
* Platforms: android, ios, web
|
|
4603
4610
|
*/
|
|
4604
4611
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
4605
4612
|
/**
|
|
@@ -4609,15 +4616,15 @@ interface DivGridProps {
|
|
|
4609
4616
|
*/
|
|
4610
4617
|
height?: Type<DivSize>;
|
|
4611
4618
|
/**
|
|
4612
|
-
* Actions performed
|
|
4613
|
-
*
|
|
4619
|
+
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
4620
|
+
* devices (such as a mouse or stylus).
|
|
4614
4621
|
*
|
|
4615
4622
|
* Platforms: not supported
|
|
4616
4623
|
*/
|
|
4617
4624
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4618
4625
|
/**
|
|
4619
|
-
* Actions performed when hovering over an element. Available on platforms
|
|
4620
|
-
*
|
|
4626
|
+
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
4627
|
+
* devices (such as a mouse or stylus).
|
|
4621
4628
|
*
|
|
4622
4629
|
* Platforms: not supported
|
|
4623
4630
|
*/
|
|
@@ -4653,13 +4660,13 @@ interface DivGridProps {
|
|
|
4653
4660
|
*/
|
|
4654
4661
|
paddings?: Type<IDivEdgeInsets>;
|
|
4655
4662
|
/**
|
|
4656
|
-
* Actions performed
|
|
4663
|
+
* Actions performed after clicking/tapping an element.
|
|
4657
4664
|
*
|
|
4658
4665
|
* Platforms: not supported
|
|
4659
4666
|
*/
|
|
4660
4667
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4661
4668
|
/**
|
|
4662
|
-
* Actions performed
|
|
4669
|
+
* Actions performed at the start of a click/tap on an element.
|
|
4663
4670
|
*
|
|
4664
4671
|
* Platforms: not supported
|
|
4665
4672
|
*/
|
|
@@ -4869,7 +4876,7 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
|
|
|
4869
4876
|
/**
|
|
4870
4877
|
* User functions.
|
|
4871
4878
|
*
|
|
4872
|
-
* Platforms: ios
|
|
4879
|
+
* Platforms: android, ios, web
|
|
4873
4880
|
*/
|
|
4874
4881
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
4875
4882
|
/**
|
|
@@ -4887,15 +4894,15 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
|
|
|
4887
4894
|
*/
|
|
4888
4895
|
high_priority_preview_show?: Type<IntBoolean | DivExpression>;
|
|
4889
4896
|
/**
|
|
4890
|
-
* Actions performed
|
|
4891
|
-
*
|
|
4897
|
+
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
4898
|
+
* devices (such as a mouse or stylus).
|
|
4892
4899
|
*
|
|
4893
4900
|
* Platforms: not supported
|
|
4894
4901
|
*/
|
|
4895
4902
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4896
4903
|
/**
|
|
4897
|
-
* Actions performed when hovering over an element. Available on platforms
|
|
4898
|
-
*
|
|
4904
|
+
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
4905
|
+
* devices (such as a mouse or stylus).
|
|
4899
4906
|
*
|
|
4900
4907
|
* Platforms: not supported
|
|
4901
4908
|
*/
|
|
@@ -4943,13 +4950,13 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
|
|
|
4943
4950
|
*/
|
|
4944
4951
|
preload_required?: Type<IntBoolean | DivExpression>;
|
|
4945
4952
|
/**
|
|
4946
|
-
* Actions performed
|
|
4953
|
+
* Actions performed after clicking/tapping an element.
|
|
4947
4954
|
*
|
|
4948
4955
|
* Platforms: not supported
|
|
4949
4956
|
*/
|
|
4950
4957
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4951
4958
|
/**
|
|
4952
|
-
* Actions performed
|
|
4959
|
+
* Actions performed at the start of a click/tap on an element.
|
|
4953
4960
|
*
|
|
4954
4961
|
* Platforms: not supported
|
|
4955
4962
|
*/
|
|
@@ -5174,7 +5181,7 @@ interface DivImageProps {
|
|
|
5174
5181
|
/**
|
|
5175
5182
|
* User functions.
|
|
5176
5183
|
*
|
|
5177
|
-
* Platforms: ios
|
|
5184
|
+
* Platforms: android, ios, web
|
|
5178
5185
|
*/
|
|
5179
5186
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
5180
5187
|
/**
|
|
@@ -5192,15 +5199,15 @@ interface DivImageProps {
|
|
|
5192
5199
|
*/
|
|
5193
5200
|
high_priority_preview_show?: Type<IntBoolean | DivExpression>;
|
|
5194
5201
|
/**
|
|
5195
|
-
* Actions performed
|
|
5196
|
-
*
|
|
5202
|
+
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
5203
|
+
* devices (such as a mouse or stylus).
|
|
5197
5204
|
*
|
|
5198
5205
|
* Platforms: not supported
|
|
5199
5206
|
*/
|
|
5200
5207
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
5201
5208
|
/**
|
|
5202
|
-
* Actions performed when hovering over an element. Available on platforms
|
|
5203
|
-
*
|
|
5209
|
+
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
5210
|
+
* devices (such as a mouse or stylus).
|
|
5204
5211
|
*
|
|
5205
5212
|
* Platforms: not supported
|
|
5206
5213
|
*/
|
|
@@ -5248,13 +5255,13 @@ interface DivImageProps {
|
|
|
5248
5255
|
*/
|
|
5249
5256
|
preload_required?: Type<IntBoolean | DivExpression>;
|
|
5250
5257
|
/**
|
|
5251
|
-
* Actions performed
|
|
5258
|
+
* Actions performed after clicking/tapping an element.
|
|
5252
5259
|
*
|
|
5253
5260
|
* Platforms: not supported
|
|
5254
5261
|
*/
|
|
5255
5262
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
5256
5263
|
/**
|
|
5257
|
-
* Actions performed
|
|
5264
|
+
* Actions performed at the start of a click/tap on an element.
|
|
5258
5265
|
*
|
|
5259
5266
|
* Platforms: not supported
|
|
5260
5267
|
*/
|
|
@@ -5535,7 +5542,7 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
|
|
|
5535
5542
|
/**
|
|
5536
5543
|
* User functions.
|
|
5537
5544
|
*
|
|
5538
|
-
* Platforms: ios
|
|
5545
|
+
* Platforms: android, ios, web
|
|
5539
5546
|
*/
|
|
5540
5547
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
5541
5548
|
/**
|
|
@@ -5787,7 +5794,7 @@ interface DivIndicatorProps {
|
|
|
5787
5794
|
/**
|
|
5788
5795
|
* User functions.
|
|
5789
5796
|
*
|
|
5790
|
-
* Platforms: ios
|
|
5797
|
+
* Platforms: android, ios, web
|
|
5791
5798
|
*/
|
|
5792
5799
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
5793
5800
|
/**
|
|
@@ -6087,7 +6094,7 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
|
|
|
6087
6094
|
/**
|
|
6088
6095
|
* User functions.
|
|
6089
6096
|
*
|
|
6090
|
-
* Platforms: ios
|
|
6097
|
+
* Platforms: android, ios, web
|
|
6091
6098
|
*/
|
|
6092
6099
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
6093
6100
|
/**
|
|
@@ -6405,7 +6412,7 @@ interface DivInputProps {
|
|
|
6405
6412
|
/**
|
|
6406
6413
|
* User functions.
|
|
6407
6414
|
*
|
|
6408
|
-
* Platforms: ios
|
|
6415
|
+
* Platforms: android, ios, web
|
|
6409
6416
|
*/
|
|
6410
6417
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
6411
6418
|
/**
|
|
@@ -6999,22 +7006,22 @@ interface DivNumberAnimatorProps {
|
|
|
6999
7006
|
}
|
|
7000
7007
|
|
|
7001
7008
|
/**
|
|
7002
|
-
*
|
|
7009
|
+
* The page size is equal to the size of its content.
|
|
7003
7010
|
*/
|
|
7004
7011
|
declare class DivPageContentSize<T extends DivPageContentSizeProps = DivPageContentSizeProps> {
|
|
7005
7012
|
readonly _props?: Exact<DivPageContentSizeProps, T>;
|
|
7006
7013
|
readonly type = "wrap_content";
|
|
7007
7014
|
/**
|
|
7008
|
-
*
|
|
7009
|
-
*
|
|
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.
|
|
7010
7017
|
*/
|
|
7011
7018
|
alignment?: Type<DivPageContentSizeAlignment | DivExpression>;
|
|
7012
7019
|
constructor(props?: Exact<DivPageContentSizeProps, T>);
|
|
7013
7020
|
}
|
|
7014
7021
|
interface DivPageContentSizeProps {
|
|
7015
7022
|
/**
|
|
7016
|
-
*
|
|
7017
|
-
*
|
|
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.
|
|
7018
7025
|
*/
|
|
7019
7026
|
alignment?: Type<DivPageContentSizeAlignment | DivExpression>;
|
|
7020
7027
|
}
|
|
@@ -7266,7 +7273,7 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
7266
7273
|
/**
|
|
7267
7274
|
* User functions.
|
|
7268
7275
|
*
|
|
7269
|
-
* Platforms: ios
|
|
7276
|
+
* Platforms: android, ios, web
|
|
7270
7277
|
*/
|
|
7271
7278
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
7272
7279
|
/**
|
|
@@ -7290,7 +7297,7 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
7290
7297
|
/**
|
|
7291
7298
|
* Sets collection elements dynamically using `data` and `prototypes`.
|
|
7292
7299
|
*
|
|
7293
|
-
* Platforms: android, ios
|
|
7300
|
+
* Platforms: android, ios, web
|
|
7294
7301
|
*/
|
|
7295
7302
|
item_builder?: Type<IDivCollectionItemBuilder>;
|
|
7296
7303
|
/**
|
|
@@ -7507,7 +7514,7 @@ interface DivPagerProps {
|
|
|
7507
7514
|
/**
|
|
7508
7515
|
* User functions.
|
|
7509
7516
|
*
|
|
7510
|
-
* Platforms: ios
|
|
7517
|
+
* Platforms: android, ios, web
|
|
7511
7518
|
*/
|
|
7512
7519
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
7513
7520
|
/**
|
|
@@ -7531,7 +7538,7 @@ interface DivPagerProps {
|
|
|
7531
7538
|
/**
|
|
7532
7539
|
* Sets collection elements dynamically using `data` and `prototypes`.
|
|
7533
7540
|
*
|
|
7534
|
-
* Platforms: android, ios
|
|
7541
|
+
* Platforms: android, ios, web
|
|
7535
7542
|
*/
|
|
7536
7543
|
item_builder?: Type<IDivCollectionItemBuilder>;
|
|
7537
7544
|
/**
|
|
@@ -8147,7 +8154,7 @@ declare class DivSelect<T extends DivSelectProps = DivSelectProps> {
|
|
|
8147
8154
|
/**
|
|
8148
8155
|
* User functions.
|
|
8149
8156
|
*
|
|
8150
|
-
* Platforms: ios
|
|
8157
|
+
* Platforms: android, ios, web
|
|
8151
8158
|
*/
|
|
8152
8159
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
8153
8160
|
/**
|
|
@@ -8383,7 +8390,7 @@ interface DivSelectProps {
|
|
|
8383
8390
|
/**
|
|
8384
8391
|
* User functions.
|
|
8385
8392
|
*
|
|
8386
|
-
* Platforms: ios
|
|
8393
|
+
* Platforms: android, ios, web
|
|
8387
8394
|
*/
|
|
8388
8395
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
8389
8396
|
/**
|
|
@@ -8635,7 +8642,7 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
|
|
|
8635
8642
|
/**
|
|
8636
8643
|
* User functions.
|
|
8637
8644
|
*
|
|
8638
|
-
* Platforms: ios
|
|
8645
|
+
* Platforms: android, ios, web
|
|
8639
8646
|
*/
|
|
8640
8647
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
8641
8648
|
/**
|
|
@@ -8645,15 +8652,15 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
|
|
|
8645
8652
|
*/
|
|
8646
8653
|
height?: Type<DivSize>;
|
|
8647
8654
|
/**
|
|
8648
|
-
* Actions performed
|
|
8649
|
-
*
|
|
8655
|
+
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
8656
|
+
* devices (such as a mouse or stylus).
|
|
8650
8657
|
*
|
|
8651
8658
|
* Platforms: not supported
|
|
8652
8659
|
*/
|
|
8653
8660
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
8654
8661
|
/**
|
|
8655
|
-
* Actions performed when hovering over an element. Available on platforms
|
|
8656
|
-
*
|
|
8662
|
+
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
8663
|
+
* devices (such as a mouse or stylus).
|
|
8657
8664
|
*
|
|
8658
8665
|
* Platforms: not supported
|
|
8659
8666
|
*/
|
|
@@ -8685,13 +8692,13 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
|
|
|
8685
8692
|
*/
|
|
8686
8693
|
paddings?: Type<IDivEdgeInsets>;
|
|
8687
8694
|
/**
|
|
8688
|
-
* Actions performed
|
|
8695
|
+
* Actions performed after clicking/tapping an element.
|
|
8689
8696
|
*
|
|
8690
8697
|
* Platforms: not supported
|
|
8691
8698
|
*/
|
|
8692
8699
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
8693
8700
|
/**
|
|
8694
|
-
* Actions performed
|
|
8701
|
+
* Actions performed at the start of a click/tap on an element.
|
|
8695
8702
|
*
|
|
8696
8703
|
* Platforms: not supported
|
|
8697
8704
|
*/
|
|
@@ -8877,7 +8884,7 @@ interface DivSeparatorProps {
|
|
|
8877
8884
|
/**
|
|
8878
8885
|
* User functions.
|
|
8879
8886
|
*
|
|
8880
|
-
* Platforms: ios
|
|
8887
|
+
* Platforms: android, ios, web
|
|
8881
8888
|
*/
|
|
8882
8889
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
8883
8890
|
/**
|
|
@@ -8887,15 +8894,15 @@ interface DivSeparatorProps {
|
|
|
8887
8894
|
*/
|
|
8888
8895
|
height?: Type<DivSize>;
|
|
8889
8896
|
/**
|
|
8890
|
-
* Actions performed
|
|
8891
|
-
*
|
|
8897
|
+
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
8898
|
+
* devices (such as a mouse or stylus).
|
|
8892
8899
|
*
|
|
8893
8900
|
* Platforms: not supported
|
|
8894
8901
|
*/
|
|
8895
8902
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
8896
8903
|
/**
|
|
8897
|
-
* Actions performed when hovering over an element. Available on platforms
|
|
8898
|
-
*
|
|
8904
|
+
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
8905
|
+
* devices (such as a mouse or stylus).
|
|
8899
8906
|
*
|
|
8900
8907
|
* Platforms: not supported
|
|
8901
8908
|
*/
|
|
@@ -8927,13 +8934,13 @@ interface DivSeparatorProps {
|
|
|
8927
8934
|
*/
|
|
8928
8935
|
paddings?: Type<IDivEdgeInsets>;
|
|
8929
8936
|
/**
|
|
8930
|
-
* Actions performed
|
|
8937
|
+
* Actions performed after clicking/tapping an element.
|
|
8931
8938
|
*
|
|
8932
8939
|
* Platforms: not supported
|
|
8933
8940
|
*/
|
|
8934
8941
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
8935
8942
|
/**
|
|
8936
|
-
* Actions performed
|
|
8943
|
+
* Actions performed at the start of a click/tap on an element.
|
|
8937
8944
|
*
|
|
8938
8945
|
* Platforms: not supported
|
|
8939
8946
|
*/
|
|
@@ -9287,7 +9294,7 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
|
|
|
9287
9294
|
/**
|
|
9288
9295
|
* User functions.
|
|
9289
9296
|
*
|
|
9290
|
-
* Platforms: ios
|
|
9297
|
+
* Platforms: android, ios, web
|
|
9291
9298
|
*/
|
|
9292
9299
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
9293
9300
|
/**
|
|
@@ -9531,7 +9538,7 @@ interface DivSliderProps {
|
|
|
9531
9538
|
/**
|
|
9532
9539
|
* User functions.
|
|
9533
9540
|
*
|
|
9534
|
-
* Platforms: ios
|
|
9541
|
+
* Platforms: android, ios, web
|
|
9535
9542
|
*/
|
|
9536
9543
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
9537
9544
|
/**
|
|
@@ -9866,7 +9873,7 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
|
|
|
9866
9873
|
/**
|
|
9867
9874
|
* User functions.
|
|
9868
9875
|
*
|
|
9869
|
-
* Platforms: ios
|
|
9876
|
+
* Platforms: android, ios, web
|
|
9870
9877
|
*/
|
|
9871
9878
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
9872
9879
|
/**
|
|
@@ -10084,7 +10091,7 @@ interface DivStateProps {
|
|
|
10084
10091
|
/**
|
|
10085
10092
|
* User functions.
|
|
10086
10093
|
*
|
|
10087
|
-
* Platforms: ios
|
|
10094
|
+
* Platforms: android, ios, web
|
|
10088
10095
|
*/
|
|
10089
10096
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
10090
10097
|
/**
|
|
@@ -10367,7 +10374,7 @@ declare class DivSwitch<T extends DivSwitchProps = DivSwitchProps> {
|
|
|
10367
10374
|
/**
|
|
10368
10375
|
* User functions.
|
|
10369
10376
|
*
|
|
10370
|
-
* Platforms: ios
|
|
10377
|
+
* Platforms: android, ios, web
|
|
10371
10378
|
*/
|
|
10372
10379
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
10373
10380
|
/**
|
|
@@ -10566,7 +10573,7 @@ interface DivSwitchProps {
|
|
|
10566
10573
|
/**
|
|
10567
10574
|
* User functions.
|
|
10568
10575
|
*
|
|
10569
|
-
* Platforms: ios
|
|
10576
|
+
* Platforms: android, ios, web
|
|
10570
10577
|
*/
|
|
10571
10578
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
10572
10579
|
/**
|
|
@@ -10777,7 +10784,7 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
|
|
|
10777
10784
|
/**
|
|
10778
10785
|
* User functions.
|
|
10779
10786
|
*
|
|
10780
|
-
* Platforms: ios
|
|
10787
|
+
* Platforms: android, ios, web
|
|
10781
10788
|
*/
|
|
10782
10789
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
10783
10790
|
/**
|
|
@@ -11019,7 +11026,7 @@ interface DivTabsProps {
|
|
|
11019
11026
|
/**
|
|
11020
11027
|
* User functions.
|
|
11021
11028
|
*
|
|
11022
|
-
* Platforms: ios
|
|
11029
|
+
* Platforms: android, ios, web
|
|
11023
11030
|
*/
|
|
11024
11031
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
11025
11032
|
/**
|
|
@@ -11453,7 +11460,7 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
11453
11460
|
/**
|
|
11454
11461
|
* User functions.
|
|
11455
11462
|
*
|
|
11456
|
-
* Platforms: ios
|
|
11463
|
+
* Platforms: android, ios, web
|
|
11457
11464
|
*/
|
|
11458
11465
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
11459
11466
|
/**
|
|
@@ -11463,15 +11470,15 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
11463
11470
|
*/
|
|
11464
11471
|
height?: Type<DivSize>;
|
|
11465
11472
|
/**
|
|
11466
|
-
* Actions performed
|
|
11467
|
-
*
|
|
11473
|
+
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
11474
|
+
* devices (such as a mouse or stylus).
|
|
11468
11475
|
*
|
|
11469
11476
|
* Platforms: not supported
|
|
11470
11477
|
*/
|
|
11471
11478
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
11472
11479
|
/**
|
|
11473
|
-
* Actions performed when hovering over an element. Available on platforms
|
|
11474
|
-
*
|
|
11480
|
+
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
11481
|
+
* devices (such as a mouse or stylus).
|
|
11475
11482
|
*
|
|
11476
11483
|
* Platforms: not supported
|
|
11477
11484
|
*/
|
|
@@ -11529,13 +11536,13 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
11529
11536
|
*/
|
|
11530
11537
|
paddings?: Type<IDivEdgeInsets>;
|
|
11531
11538
|
/**
|
|
11532
|
-
* Actions performed
|
|
11539
|
+
* Actions performed after clicking/tapping an element.
|
|
11533
11540
|
*
|
|
11534
11541
|
* Platforms: not supported
|
|
11535
11542
|
*/
|
|
11536
11543
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
11537
11544
|
/**
|
|
11538
|
-
* Actions performed
|
|
11545
|
+
* Actions performed at the start of a click/tap on an element.
|
|
11539
11546
|
*
|
|
11540
11547
|
* Platforms: not supported
|
|
11541
11548
|
*/
|
|
@@ -11831,7 +11838,7 @@ interface DivTextProps {
|
|
|
11831
11838
|
/**
|
|
11832
11839
|
* User functions.
|
|
11833
11840
|
*
|
|
11834
|
-
* Platforms: ios
|
|
11841
|
+
* Platforms: android, ios, web
|
|
11835
11842
|
*/
|
|
11836
11843
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
11837
11844
|
/**
|
|
@@ -11841,15 +11848,15 @@ interface DivTextProps {
|
|
|
11841
11848
|
*/
|
|
11842
11849
|
height?: Type<DivSize>;
|
|
11843
11850
|
/**
|
|
11844
|
-
* Actions performed
|
|
11845
|
-
*
|
|
11851
|
+
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
11852
|
+
* devices (such as a mouse or stylus).
|
|
11846
11853
|
*
|
|
11847
11854
|
* Platforms: not supported
|
|
11848
11855
|
*/
|
|
11849
11856
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
11850
11857
|
/**
|
|
11851
|
-
* Actions performed when hovering over an element. Available on platforms
|
|
11852
|
-
*
|
|
11858
|
+
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
11859
|
+
* devices (such as a mouse or stylus).
|
|
11853
11860
|
*
|
|
11854
11861
|
* Platforms: not supported
|
|
11855
11862
|
*/
|
|
@@ -11907,13 +11914,13 @@ interface DivTextProps {
|
|
|
11907
11914
|
*/
|
|
11908
11915
|
paddings?: Type<IDivEdgeInsets>;
|
|
11909
11916
|
/**
|
|
11910
|
-
* Actions performed
|
|
11917
|
+
* Actions performed after clicking/tapping an element.
|
|
11911
11918
|
*
|
|
11912
11919
|
* Platforms: not supported
|
|
11913
11920
|
*/
|
|
11914
11921
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
11915
11922
|
/**
|
|
11916
|
-
* Actions performed
|
|
11923
|
+
* Actions performed at the start of a click/tap on an element.
|
|
11917
11924
|
*
|
|
11918
11925
|
* Platforms: not supported
|
|
11919
11926
|
*/
|
|
@@ -12132,7 +12139,7 @@ interface IDivTextImage {
|
|
|
12132
12139
|
* indexation from the end towards the begging of a string ([N, ..., 2, 1, 0]). Use to insert an
|
|
12133
12140
|
* image by index relative to the end of a string.
|
|
12134
12141
|
*
|
|
12135
|
-
* Platforms:
|
|
12142
|
+
* Platforms: android
|
|
12136
12143
|
*/
|
|
12137
12144
|
indexing_direction?: Type<ImageIndexingDirection | DivExpression>;
|
|
12138
12145
|
/**
|
|
@@ -12247,6 +12254,13 @@ interface IDivTextRange {
|
|
|
12247
12254
|
* Line spacing of the text. Units specified in `font_size_unit`.
|
|
12248
12255
|
*/
|
|
12249
12256
|
line_height?: Type<number | DivExpression>;
|
|
12257
|
+
/**
|
|
12258
|
+
* A mask that hides a part of text, text can be revealed by disabling mask through `is_enabled`
|
|
12259
|
+
* property.
|
|
12260
|
+
*
|
|
12261
|
+
* Platforms: not supported
|
|
12262
|
+
*/
|
|
12263
|
+
mask?: Type<DivTextRangeMask>;
|
|
12250
12264
|
/**
|
|
12251
12265
|
* Ordinal number of a character which the range begins from. The first character has a number
|
|
12252
12266
|
* `0`.
|
|
@@ -12296,6 +12310,103 @@ interface IDivTextRangeBorder {
|
|
|
12296
12310
|
stroke?: Type<IDivStroke>;
|
|
12297
12311
|
}
|
|
12298
12312
|
|
|
12313
|
+
declare type DivTextRangeMask = DivTextRangeMaskParticles | DivTextRangeMaskSolid;
|
|
12314
|
+
|
|
12315
|
+
interface IDivTextRangeMaskBase {
|
|
12316
|
+
/**
|
|
12317
|
+
* Controls mask state: if set to `true` mask will hide specified part of the text, otherwise the
|
|
12318
|
+
* text will be shown.
|
|
12319
|
+
*/
|
|
12320
|
+
is_enabled?: Type<boolean | DivExpression>;
|
|
12321
|
+
}
|
|
12322
|
+
|
|
12323
|
+
/**
|
|
12324
|
+
* A mask to hide text (spoiler) that looks like randomly distributed particles (telegram alike).
|
|
12325
|
+
*/
|
|
12326
|
+
declare class DivTextRangeMaskParticles<T extends DivTextRangeMaskParticlesProps = DivTextRangeMaskParticlesProps> {
|
|
12327
|
+
readonly _props?: Exact<DivTextRangeMaskParticlesProps, T>;
|
|
12328
|
+
readonly type = "particles";
|
|
12329
|
+
/**
|
|
12330
|
+
* Color of particles on the mask.
|
|
12331
|
+
*/
|
|
12332
|
+
color: Type<string | DivExpression>;
|
|
12333
|
+
/**
|
|
12334
|
+
* Density of particles on the mask, interpreted as a probability of a particle to spawn in a
|
|
12335
|
+
* given point on the mask.
|
|
12336
|
+
*/
|
|
12337
|
+
density?: Type<number | DivExpression>;
|
|
12338
|
+
/**
|
|
12339
|
+
* Defines whether particles on the mask will be animated or not. Animation looks like smooth
|
|
12340
|
+
* random particle movements (telegram alike).
|
|
12341
|
+
*/
|
|
12342
|
+
is_animated?: Type<boolean | DivExpression>;
|
|
12343
|
+
/**
|
|
12344
|
+
* Controls mask state: if set to `true` mask will hide specified part of the text, otherwise the
|
|
12345
|
+
* text will be shown.
|
|
12346
|
+
*/
|
|
12347
|
+
is_enabled?: Type<boolean | DivExpression>;
|
|
12348
|
+
/**
|
|
12349
|
+
* Size of a single particle on a mask.
|
|
12350
|
+
*/
|
|
12351
|
+
particle_size?: Type<DivFixedSize>;
|
|
12352
|
+
constructor(props: Exact<DivTextRangeMaskParticlesProps, T>);
|
|
12353
|
+
}
|
|
12354
|
+
interface DivTextRangeMaskParticlesProps {
|
|
12355
|
+
/**
|
|
12356
|
+
* Color of particles on the mask.
|
|
12357
|
+
*/
|
|
12358
|
+
color: Type<string | DivExpression>;
|
|
12359
|
+
/**
|
|
12360
|
+
* Density of particles on the mask, interpreted as a probability of a particle to spawn in a
|
|
12361
|
+
* given point on the mask.
|
|
12362
|
+
*/
|
|
12363
|
+
density?: Type<number | DivExpression>;
|
|
12364
|
+
/**
|
|
12365
|
+
* Defines whether particles on the mask will be animated or not. Animation looks like smooth
|
|
12366
|
+
* random particle movements (telegram alike).
|
|
12367
|
+
*/
|
|
12368
|
+
is_animated?: Type<boolean | DivExpression>;
|
|
12369
|
+
/**
|
|
12370
|
+
* Controls mask state: if set to `true` mask will hide specified part of the text, otherwise the
|
|
12371
|
+
* text will be shown.
|
|
12372
|
+
*/
|
|
12373
|
+
is_enabled?: Type<boolean | DivExpression>;
|
|
12374
|
+
/**
|
|
12375
|
+
* Size of a single particle on a mask.
|
|
12376
|
+
*/
|
|
12377
|
+
particle_size?: Type<DivFixedSize>;
|
|
12378
|
+
}
|
|
12379
|
+
|
|
12380
|
+
/**
|
|
12381
|
+
* A mask to hide text (spoiler) that looks like a rectangle filled with color specified by
|
|
12382
|
+
* `color` parameter.
|
|
12383
|
+
*/
|
|
12384
|
+
declare class DivTextRangeMaskSolid<T extends DivTextRangeMaskSolidProps = DivTextRangeMaskSolidProps> {
|
|
12385
|
+
readonly _props?: Exact<DivTextRangeMaskSolidProps, T>;
|
|
12386
|
+
readonly type = "solid";
|
|
12387
|
+
/**
|
|
12388
|
+
* Color.
|
|
12389
|
+
*/
|
|
12390
|
+
color: Type<string | DivExpression>;
|
|
12391
|
+
/**
|
|
12392
|
+
* Controls mask state: if set to `true` mask will hide specified part of the text, otherwise the
|
|
12393
|
+
* text will be shown.
|
|
12394
|
+
*/
|
|
12395
|
+
is_enabled?: Type<boolean | DivExpression>;
|
|
12396
|
+
constructor(props: Exact<DivTextRangeMaskSolidProps, T>);
|
|
12397
|
+
}
|
|
12398
|
+
interface DivTextRangeMaskSolidProps {
|
|
12399
|
+
/**
|
|
12400
|
+
* Color.
|
|
12401
|
+
*/
|
|
12402
|
+
color: Type<string | DivExpression>;
|
|
12403
|
+
/**
|
|
12404
|
+
* Controls mask state: if set to `true` mask will hide specified part of the text, otherwise the
|
|
12405
|
+
* text will be shown.
|
|
12406
|
+
*/
|
|
12407
|
+
is_enabled?: Type<boolean | DivExpression>;
|
|
12408
|
+
}
|
|
12409
|
+
|
|
12299
12410
|
/**
|
|
12300
12411
|
* Timer.
|
|
12301
12412
|
*/
|
|
@@ -12526,7 +12637,7 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
|
|
|
12526
12637
|
/**
|
|
12527
12638
|
* User functions.
|
|
12528
12639
|
*
|
|
12529
|
-
* Platforms: ios
|
|
12640
|
+
* Platforms: android, ios, web
|
|
12530
12641
|
*/
|
|
12531
12642
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
12532
12643
|
/**
|
|
@@ -12775,7 +12886,7 @@ interface DivVideoProps {
|
|
|
12775
12886
|
/**
|
|
12776
12887
|
* User functions.
|
|
12777
12888
|
*
|
|
12778
|
-
* Platforms: ios
|
|
12889
|
+
* Platforms: android, ios, web
|
|
12779
12890
|
*/
|
|
12780
12891
|
functions?: Type<NonEmptyArray<IDivFunction>>;
|
|
12781
12892
|
/**
|
|
@@ -13478,4 +13589,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
|
|
|
13478
13589
|
};
|
|
13479
13590
|
};
|
|
13480
13591
|
|
|
13481
|
-
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, DivPageContentSizeAlignment, DivPageContentSizeProps, 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, DivSwitch, DivSwitchProps, DivTabs, DivTabsProps, DivText, DivTextAlignmentVertical, DivTextGradient, DivTextProps, DivTextRangeBackground, 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, 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 };
|
|
13592
|
+
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, DivPageContentSizeAlignment, DivPageContentSizeProps, 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, 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 };
|