@divkitframework/jsonbuilder 32.1.0 → 32.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/es/jsonbuilder.js.map +1 -1
- package/dist/jsonbuilder.d.ts +85 -79
- package/dist/jsonbuilder.js.map +1 -1
- package/package.json +1 -1
package/dist/jsonbuilder.d.ts
CHANGED
|
@@ -120,7 +120,7 @@ declare class ArrayVariable<T extends ArrayVariableProps = ArrayVariableProps> {
|
|
|
120
120
|
*/
|
|
121
121
|
name: Type<string>;
|
|
122
122
|
/**
|
|
123
|
-
* Value.
|
|
123
|
+
* Value. Supports expressions for variable initialization.
|
|
124
124
|
*/
|
|
125
125
|
value: Type<unknown[] | DivExpression>;
|
|
126
126
|
constructor(props: Exact<ArrayVariableProps, T>);
|
|
@@ -131,7 +131,7 @@ interface ArrayVariableProps {
|
|
|
131
131
|
*/
|
|
132
132
|
name: Type<string>;
|
|
133
133
|
/**
|
|
134
|
-
* Value.
|
|
134
|
+
* Value. Supports expressions for variable initialization.
|
|
135
135
|
*/
|
|
136
136
|
value: Type<unknown[] | DivExpression>;
|
|
137
137
|
}
|
|
@@ -157,7 +157,7 @@ declare class BooleanVariable<T extends BooleanVariableProps = BooleanVariablePr
|
|
|
157
157
|
*/
|
|
158
158
|
name: Type<string>;
|
|
159
159
|
/**
|
|
160
|
-
* Value.
|
|
160
|
+
* Value. Supports expressions for variable initialization.
|
|
161
161
|
*/
|
|
162
162
|
value: Type<IntBoolean | DivExpression>;
|
|
163
163
|
constructor(props: Exact<BooleanVariableProps, T>);
|
|
@@ -168,7 +168,7 @@ interface BooleanVariableProps {
|
|
|
168
168
|
*/
|
|
169
169
|
name: Type<string>;
|
|
170
170
|
/**
|
|
171
|
-
* Value.
|
|
171
|
+
* Value. Supports expressions for variable initialization.
|
|
172
172
|
*/
|
|
173
173
|
value: Type<IntBoolean | DivExpression>;
|
|
174
174
|
}
|
|
@@ -194,7 +194,7 @@ declare class ColorVariable<T extends ColorVariableProps = ColorVariableProps> {
|
|
|
194
194
|
*/
|
|
195
195
|
name: Type<string>;
|
|
196
196
|
/**
|
|
197
|
-
* Value.
|
|
197
|
+
* Value. Supports expressions for variable initialization.
|
|
198
198
|
*/
|
|
199
199
|
value: Type<string | DivExpression>;
|
|
200
200
|
constructor(props: Exact<ColorVariableProps, T>);
|
|
@@ -205,7 +205,7 @@ interface ColorVariableProps {
|
|
|
205
205
|
*/
|
|
206
206
|
name: Type<string>;
|
|
207
207
|
/**
|
|
208
|
-
* Value.
|
|
208
|
+
* Value. Supports expressions for variable initialization.
|
|
209
209
|
*/
|
|
210
210
|
value: Type<string | DivExpression>;
|
|
211
211
|
}
|
|
@@ -251,7 +251,7 @@ declare class DictVariable<T extends DictVariableProps = DictVariableProps> {
|
|
|
251
251
|
*/
|
|
252
252
|
name: Type<string>;
|
|
253
253
|
/**
|
|
254
|
-
* Value.
|
|
254
|
+
* Value. Supports expressions for variable initialization.
|
|
255
255
|
*/
|
|
256
256
|
value: Type<{} | DivExpression>;
|
|
257
257
|
constructor(props: Exact<DictVariableProps, T>);
|
|
@@ -262,7 +262,7 @@ interface DictVariableProps {
|
|
|
262
262
|
*/
|
|
263
263
|
name: Type<string>;
|
|
264
264
|
/**
|
|
265
|
-
* Value.
|
|
265
|
+
* Value. Supports expressions for variable initialization.
|
|
266
266
|
*/
|
|
267
267
|
value: Type<{} | DivExpression>;
|
|
268
268
|
}
|
|
@@ -308,7 +308,7 @@ interface IDivAccessibility {
|
|
|
308
308
|
* Shows the current status of the checkbox or toggle: `true` means it's selected, `false` means
|
|
309
309
|
* it isn't selected.
|
|
310
310
|
*
|
|
311
|
-
* Platforms: web
|
|
311
|
+
* Platforms: ios, web
|
|
312
312
|
*/
|
|
313
313
|
is_checked?: Type<IntBoolean | DivExpression>;
|
|
314
314
|
/**
|
|
@@ -1783,14 +1783,14 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
|
|
|
1783
1783
|
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
1784
1784
|
* devices (such as a mouse or stylus).
|
|
1785
1785
|
*
|
|
1786
|
-
* Platforms: web, android
|
|
1786
|
+
* Platforms: web, android, ios
|
|
1787
1787
|
*/
|
|
1788
1788
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
1789
1789
|
/**
|
|
1790
1790
|
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
1791
1791
|
* devices (such as a mouse or stylus).
|
|
1792
1792
|
*
|
|
1793
|
-
* Platforms: web, android
|
|
1793
|
+
* Platforms: web, android, ios
|
|
1794
1794
|
*/
|
|
1795
1795
|
hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
1796
1796
|
/**
|
|
@@ -1852,13 +1852,13 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
|
|
|
1852
1852
|
/**
|
|
1853
1853
|
* Actions performed after clicking/tapping an element.
|
|
1854
1854
|
*
|
|
1855
|
-
* Platforms: web, android
|
|
1855
|
+
* Platforms: web, android, ios
|
|
1856
1856
|
*/
|
|
1857
1857
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
1858
1858
|
/**
|
|
1859
1859
|
* Actions performed at the start of a click/tap on an element.
|
|
1860
1860
|
*
|
|
1861
|
-
* Platforms: web, android
|
|
1861
|
+
* Platforms: web, android, ios
|
|
1862
1862
|
*/
|
|
1863
1863
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
1864
1864
|
/**
|
|
@@ -2089,14 +2089,14 @@ interface DivContainerPropsBase {
|
|
|
2089
2089
|
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
2090
2090
|
* devices (such as a mouse or stylus).
|
|
2091
2091
|
*
|
|
2092
|
-
* Platforms: web, android
|
|
2092
|
+
* Platforms: web, android, ios
|
|
2093
2093
|
*/
|
|
2094
2094
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
2095
2095
|
/**
|
|
2096
2096
|
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
2097
2097
|
* devices (such as a mouse or stylus).
|
|
2098
2098
|
*
|
|
2099
|
-
* Platforms: web, android
|
|
2099
|
+
* Platforms: web, android, ios
|
|
2100
2100
|
*/
|
|
2101
2101
|
hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
2102
2102
|
/**
|
|
@@ -2158,13 +2158,13 @@ interface DivContainerPropsBase {
|
|
|
2158
2158
|
/**
|
|
2159
2159
|
* Actions performed after clicking/tapping an element.
|
|
2160
2160
|
*
|
|
2161
|
-
* Platforms: web, android
|
|
2161
|
+
* Platforms: web, android, ios
|
|
2162
2162
|
*/
|
|
2163
2163
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
2164
2164
|
/**
|
|
2165
2165
|
* Actions performed at the start of a click/tap on an element.
|
|
2166
2166
|
*
|
|
2167
|
-
* Platforms: web, android
|
|
2167
|
+
* Platforms: web, android, ios
|
|
2168
2168
|
*/
|
|
2169
2169
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
2170
2170
|
/**
|
|
@@ -3811,14 +3811,14 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
|
|
|
3811
3811
|
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
3812
3812
|
* devices (such as a mouse or stylus).
|
|
3813
3813
|
*
|
|
3814
|
-
* Platforms: web, android
|
|
3814
|
+
* Platforms: web, android, ios
|
|
3815
3815
|
*/
|
|
3816
3816
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
3817
3817
|
/**
|
|
3818
3818
|
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
3819
3819
|
* devices (such as a mouse or stylus).
|
|
3820
3820
|
*
|
|
3821
|
-
* Platforms: web, android
|
|
3821
|
+
* Platforms: web, android, ios
|
|
3822
3822
|
*/
|
|
3823
3823
|
hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
3824
3824
|
/**
|
|
@@ -3862,13 +3862,13 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
|
|
|
3862
3862
|
/**
|
|
3863
3863
|
* Actions performed after clicking/tapping an element.
|
|
3864
3864
|
*
|
|
3865
|
-
* Platforms: web, android
|
|
3865
|
+
* Platforms: web, android, ios
|
|
3866
3866
|
*/
|
|
3867
3867
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
3868
3868
|
/**
|
|
3869
3869
|
* Actions performed at the start of a click/tap on an element.
|
|
3870
3870
|
*
|
|
3871
|
-
* Platforms: web, android
|
|
3871
|
+
* Platforms: web, android, ios
|
|
3872
3872
|
*/
|
|
3873
3873
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
3874
3874
|
/**
|
|
@@ -4095,14 +4095,14 @@ interface DivGifImageProps {
|
|
|
4095
4095
|
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
4096
4096
|
* devices (such as a mouse or stylus).
|
|
4097
4097
|
*
|
|
4098
|
-
* Platforms: web, android
|
|
4098
|
+
* Platforms: web, android, ios
|
|
4099
4099
|
*/
|
|
4100
4100
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4101
4101
|
/**
|
|
4102
4102
|
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
4103
4103
|
* devices (such as a mouse or stylus).
|
|
4104
4104
|
*
|
|
4105
|
-
* Platforms: web, android
|
|
4105
|
+
* Platforms: web, android, ios
|
|
4106
4106
|
*/
|
|
4107
4107
|
hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4108
4108
|
/**
|
|
@@ -4146,13 +4146,13 @@ interface DivGifImageProps {
|
|
|
4146
4146
|
/**
|
|
4147
4147
|
* Actions performed after clicking/tapping an element.
|
|
4148
4148
|
*
|
|
4149
|
-
* Platforms: web, android
|
|
4149
|
+
* Platforms: web, android, ios
|
|
4150
4150
|
*/
|
|
4151
4151
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4152
4152
|
/**
|
|
4153
4153
|
* Actions performed at the start of a click/tap on an element.
|
|
4154
4154
|
*
|
|
4155
|
-
* Platforms: web, android
|
|
4155
|
+
* Platforms: web, android, ios
|
|
4156
4156
|
*/
|
|
4157
4157
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4158
4158
|
/**
|
|
@@ -4379,14 +4379,14 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
|
|
|
4379
4379
|
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
4380
4380
|
* devices (such as a mouse or stylus).
|
|
4381
4381
|
*
|
|
4382
|
-
* Platforms: web, android
|
|
4382
|
+
* Platforms: web, android, ios
|
|
4383
4383
|
*/
|
|
4384
4384
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4385
4385
|
/**
|
|
4386
4386
|
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
4387
4387
|
* devices (such as a mouse or stylus).
|
|
4388
4388
|
*
|
|
4389
|
-
* Platforms: web, android
|
|
4389
|
+
* Platforms: web, android, ios
|
|
4390
4390
|
*/
|
|
4391
4391
|
hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4392
4392
|
/**
|
|
@@ -4422,13 +4422,13 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
|
|
|
4422
4422
|
/**
|
|
4423
4423
|
* Actions performed after clicking/tapping an element.
|
|
4424
4424
|
*
|
|
4425
|
-
* Platforms: web, android
|
|
4425
|
+
* Platforms: web, android, ios
|
|
4426
4426
|
*/
|
|
4427
4427
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4428
4428
|
/**
|
|
4429
4429
|
* Actions performed at the start of a click/tap on an element.
|
|
4430
4430
|
*
|
|
4431
|
-
* Platforms: web, android
|
|
4431
|
+
* Platforms: web, android, ios
|
|
4432
4432
|
*/
|
|
4433
4433
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4434
4434
|
/**
|
|
@@ -4638,14 +4638,14 @@ interface DivGridProps {
|
|
|
4638
4638
|
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
4639
4639
|
* devices (such as a mouse or stylus).
|
|
4640
4640
|
*
|
|
4641
|
-
* Platforms: web, android
|
|
4641
|
+
* Platforms: web, android, ios
|
|
4642
4642
|
*/
|
|
4643
4643
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4644
4644
|
/**
|
|
4645
4645
|
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
4646
4646
|
* devices (such as a mouse or stylus).
|
|
4647
4647
|
*
|
|
4648
|
-
* Platforms: web, android
|
|
4648
|
+
* Platforms: web, android, ios
|
|
4649
4649
|
*/
|
|
4650
4650
|
hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4651
4651
|
/**
|
|
@@ -4681,13 +4681,13 @@ interface DivGridProps {
|
|
|
4681
4681
|
/**
|
|
4682
4682
|
* Actions performed after clicking/tapping an element.
|
|
4683
4683
|
*
|
|
4684
|
-
* Platforms: web, android
|
|
4684
|
+
* Platforms: web, android, ios
|
|
4685
4685
|
*/
|
|
4686
4686
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4687
4687
|
/**
|
|
4688
4688
|
* Actions performed at the start of a click/tap on an element.
|
|
4689
4689
|
*
|
|
4690
|
-
* Platforms: web, android
|
|
4690
|
+
* Platforms: web, android, ios
|
|
4691
4691
|
*/
|
|
4692
4692
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4693
4693
|
/**
|
|
@@ -4921,14 +4921,14 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
|
|
|
4921
4921
|
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
4922
4922
|
* devices (such as a mouse or stylus).
|
|
4923
4923
|
*
|
|
4924
|
-
* Platforms: web, android
|
|
4924
|
+
* Platforms: web, android, ios
|
|
4925
4925
|
*/
|
|
4926
4926
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4927
4927
|
/**
|
|
4928
4928
|
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
4929
4929
|
* devices (such as a mouse or stylus).
|
|
4930
4930
|
*
|
|
4931
|
-
* Platforms: web, android
|
|
4931
|
+
* Platforms: web, android, ios
|
|
4932
4932
|
*/
|
|
4933
4933
|
hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4934
4934
|
/**
|
|
@@ -4976,13 +4976,13 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
|
|
|
4976
4976
|
/**
|
|
4977
4977
|
* Actions performed after clicking/tapping an element.
|
|
4978
4978
|
*
|
|
4979
|
-
* Platforms: web, android
|
|
4979
|
+
* Platforms: web, android, ios
|
|
4980
4980
|
*/
|
|
4981
4981
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4982
4982
|
/**
|
|
4983
4983
|
* Actions performed at the start of a click/tap on an element.
|
|
4984
4984
|
*
|
|
4985
|
-
* Platforms: web, android
|
|
4985
|
+
* Platforms: web, android, ios
|
|
4986
4986
|
*/
|
|
4987
4987
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
4988
4988
|
/**
|
|
@@ -5231,14 +5231,14 @@ interface DivImageProps {
|
|
|
5231
5231
|
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
5232
5232
|
* devices (such as a mouse or stylus).
|
|
5233
5233
|
*
|
|
5234
|
-
* Platforms: web, android
|
|
5234
|
+
* Platforms: web, android, ios
|
|
5235
5235
|
*/
|
|
5236
5236
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
5237
5237
|
/**
|
|
5238
5238
|
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
5239
5239
|
* devices (such as a mouse or stylus).
|
|
5240
5240
|
*
|
|
5241
|
-
* Platforms: web, android
|
|
5241
|
+
* Platforms: web, android, ios
|
|
5242
5242
|
*/
|
|
5243
5243
|
hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
5244
5244
|
/**
|
|
@@ -5286,13 +5286,13 @@ interface DivImageProps {
|
|
|
5286
5286
|
/**
|
|
5287
5287
|
* Actions performed after clicking/tapping an element.
|
|
5288
5288
|
*
|
|
5289
|
-
* Platforms: web, android
|
|
5289
|
+
* Platforms: web, android, ios
|
|
5290
5290
|
*/
|
|
5291
5291
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
5292
5292
|
/**
|
|
5293
5293
|
* Actions performed at the start of a click/tap on an element.
|
|
5294
5294
|
*
|
|
5295
|
-
* Platforms: web, android
|
|
5295
|
+
* Platforms: web, android, ios
|
|
5296
5296
|
*/
|
|
5297
5297
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
5298
5298
|
/**
|
|
@@ -6027,7 +6027,10 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
|
|
|
6027
6027
|
*/
|
|
6028
6028
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
6029
6029
|
/**
|
|
6030
|
-
* Text auto-capitalization type.
|
|
6030
|
+
* Text auto-capitalization type. By default: `auto` - default behavior of the platform;`none' -
|
|
6031
|
+
* automatic capitalization is not applied;`words` - capitalization of each word;`sentences` -
|
|
6032
|
+
* capitalization at the beginning of a sentence;`all_characters' - capitalization of each
|
|
6033
|
+
* character.
|
|
6031
6034
|
*
|
|
6032
6035
|
* Platforms: android, ios, web
|
|
6033
6036
|
*/
|
|
@@ -6102,7 +6105,7 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
|
|
|
6102
6105
|
* List of TrueType/OpenType font features. The object is constructed from pairs of axis tag and
|
|
6103
6106
|
* style values. The axis tag must contain four ASCII characters.
|
|
6104
6107
|
*
|
|
6105
|
-
* Platforms: android
|
|
6108
|
+
* Platforms: ios, android
|
|
6106
6109
|
*/
|
|
6107
6110
|
font_variation_settings?: Type<{} | DivExpression>;
|
|
6108
6111
|
/**
|
|
@@ -6348,7 +6351,10 @@ interface DivInputProps {
|
|
|
6348
6351
|
*/
|
|
6349
6352
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
6350
6353
|
/**
|
|
6351
|
-
* Text auto-capitalization type.
|
|
6354
|
+
* Text auto-capitalization type. By default: `auto` - default behavior of the platform;`none' -
|
|
6355
|
+
* automatic capitalization is not applied;`words` - capitalization of each word;`sentences` -
|
|
6356
|
+
* capitalization at the beginning of a sentence;`all_characters' - capitalization of each
|
|
6357
|
+
* character.
|
|
6352
6358
|
*
|
|
6353
6359
|
* Platforms: android, ios, web
|
|
6354
6360
|
*/
|
|
@@ -6423,7 +6429,7 @@ interface DivInputProps {
|
|
|
6423
6429
|
* List of TrueType/OpenType font features. The object is constructed from pairs of axis tag and
|
|
6424
6430
|
* style values. The axis tag must contain four ASCII characters.
|
|
6425
6431
|
*
|
|
6426
|
-
* Platforms: android
|
|
6432
|
+
* Platforms: ios, android
|
|
6427
6433
|
*/
|
|
6428
6434
|
font_variation_settings?: Type<{} | DivExpression>;
|
|
6429
6435
|
/**
|
|
@@ -8246,7 +8252,7 @@ declare class DivSelect<T extends DivSelectProps = DivSelectProps> {
|
|
|
8246
8252
|
* List of TrueType/OpenType font features. The object is constructed from pairs of axis tag and
|
|
8247
8253
|
* style values. The axis tag must contain four ASCII characters.
|
|
8248
8254
|
*
|
|
8249
|
-
* Platforms: android
|
|
8255
|
+
* Platforms: ios, android
|
|
8250
8256
|
*/
|
|
8251
8257
|
font_variation_settings?: Type<{} | DivExpression>;
|
|
8252
8258
|
/**
|
|
@@ -8487,7 +8493,7 @@ interface DivSelectProps {
|
|
|
8487
8493
|
* List of TrueType/OpenType font features. The object is constructed from pairs of axis tag and
|
|
8488
8494
|
* style values. The axis tag must contain four ASCII characters.
|
|
8489
8495
|
*
|
|
8490
|
-
* Platforms: android
|
|
8496
|
+
* Platforms: ios, android
|
|
8491
8497
|
*/
|
|
8492
8498
|
font_variation_settings?: Type<{} | DivExpression>;
|
|
8493
8499
|
/**
|
|
@@ -8775,14 +8781,14 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
|
|
|
8775
8781
|
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
8776
8782
|
* devices (such as a mouse or stylus).
|
|
8777
8783
|
*
|
|
8778
|
-
* Platforms: web, android
|
|
8784
|
+
* Platforms: web, android, ios
|
|
8779
8785
|
*/
|
|
8780
8786
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
8781
8787
|
/**
|
|
8782
8788
|
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
8783
8789
|
* devices (such as a mouse or stylus).
|
|
8784
8790
|
*
|
|
8785
|
-
* Platforms: web, android
|
|
8791
|
+
* Platforms: web, android, ios
|
|
8786
8792
|
*/
|
|
8787
8793
|
hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
8788
8794
|
/**
|
|
@@ -8814,13 +8820,13 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
|
|
|
8814
8820
|
/**
|
|
8815
8821
|
* Actions performed after clicking/tapping an element.
|
|
8816
8822
|
*
|
|
8817
|
-
* Platforms: web, android
|
|
8823
|
+
* Platforms: web, android, ios
|
|
8818
8824
|
*/
|
|
8819
8825
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
8820
8826
|
/**
|
|
8821
8827
|
* Actions performed at the start of a click/tap on an element.
|
|
8822
8828
|
*
|
|
8823
|
-
* Platforms: web, android
|
|
8829
|
+
* Platforms: web, android, ios
|
|
8824
8830
|
*/
|
|
8825
8831
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
8826
8832
|
/**
|
|
@@ -9022,14 +9028,14 @@ interface DivSeparatorProps {
|
|
|
9022
9028
|
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
9023
9029
|
* devices (such as a mouse or stylus).
|
|
9024
9030
|
*
|
|
9025
|
-
* Platforms: web, android
|
|
9031
|
+
* Platforms: web, android, ios
|
|
9026
9032
|
*/
|
|
9027
9033
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
9028
9034
|
/**
|
|
9029
9035
|
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
9030
9036
|
* devices (such as a mouse or stylus).
|
|
9031
9037
|
*
|
|
9032
|
-
* Platforms: web, android
|
|
9038
|
+
* Platforms: web, android, ios
|
|
9033
9039
|
*/
|
|
9034
9040
|
hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
9035
9041
|
/**
|
|
@@ -9061,13 +9067,13 @@ interface DivSeparatorProps {
|
|
|
9061
9067
|
/**
|
|
9062
9068
|
* Actions performed after clicking/tapping an element.
|
|
9063
9069
|
*
|
|
9064
|
-
* Platforms: web, android
|
|
9070
|
+
* Platforms: web, android, ios
|
|
9065
9071
|
*/
|
|
9066
9072
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
9067
9073
|
/**
|
|
9068
9074
|
* Actions performed at the start of a click/tap on an element.
|
|
9069
9075
|
*
|
|
9070
|
-
* Platforms: web, android
|
|
9076
|
+
* Platforms: web, android, ios
|
|
9071
9077
|
*/
|
|
9072
9078
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
9073
9079
|
/**
|
|
@@ -9430,7 +9436,7 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
|
|
|
9430
9436
|
/**
|
|
9431
9437
|
* Enables or disables toggling values by clicking or swiping.
|
|
9432
9438
|
*
|
|
9433
|
-
* Platforms: android, web
|
|
9439
|
+
* Platforms: android, ios, web
|
|
9434
9440
|
*/
|
|
9435
9441
|
is_enabled?: Type<IntBoolean | DivExpression>;
|
|
9436
9442
|
/**
|
|
@@ -9676,7 +9682,7 @@ interface DivSliderProps {
|
|
|
9676
9682
|
/**
|
|
9677
9683
|
* Enables or disables toggling values by clicking or swiping.
|
|
9678
9684
|
*
|
|
9679
|
-
* Platforms: android, web
|
|
9685
|
+
* Platforms: android, ios, web
|
|
9680
9686
|
*/
|
|
9681
9687
|
is_enabled?: Type<IntBoolean | DivExpression>;
|
|
9682
9688
|
/**
|
|
@@ -9889,7 +9895,7 @@ interface IDivSliderTextStyle {
|
|
|
9889
9895
|
* List of TrueType/OpenType font features. The object is constructed from pairs of axis tag and
|
|
9890
9896
|
* style values. The axis tag must contain four ASCII characters.
|
|
9891
9897
|
*
|
|
9892
|
-
* Platforms: android
|
|
9898
|
+
* Platforms: ios, android
|
|
9893
9899
|
*/
|
|
9894
9900
|
font_variation_settings?: Type<{} | DivExpression>;
|
|
9895
9901
|
/**
|
|
@@ -11032,7 +11038,7 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
|
|
|
11032
11038
|
/**
|
|
11033
11039
|
* Design style of separators between tab titles.
|
|
11034
11040
|
*
|
|
11035
|
-
* Platforms: android, web
|
|
11041
|
+
* Platforms: android, ios, web
|
|
11036
11042
|
*/
|
|
11037
11043
|
tab_title_delimiter?: Type<IDivTabsTabTitleDelimiter>;
|
|
11038
11044
|
/**
|
|
@@ -11270,7 +11276,7 @@ interface DivTabsProps {
|
|
|
11270
11276
|
/**
|
|
11271
11277
|
* Design style of separators between tab titles.
|
|
11272
11278
|
*
|
|
11273
|
-
* Platforms: android, web
|
|
11279
|
+
* Platforms: android, ios, web
|
|
11274
11280
|
*/
|
|
11275
11281
|
tab_title_delimiter?: Type<IDivTabsTabTitleDelimiter>;
|
|
11276
11282
|
/**
|
|
@@ -11623,7 +11629,7 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
11623
11629
|
* List of TrueType/OpenType font features. The object is constructed from pairs of axis tag and
|
|
11624
11630
|
* style values. The axis tag must contain four ASCII characters.
|
|
11625
11631
|
*
|
|
11626
|
-
* Platforms: android
|
|
11632
|
+
* Platforms: ios, android
|
|
11627
11633
|
*/
|
|
11628
11634
|
font_variation_settings?: Type<{} | DivExpression>;
|
|
11629
11635
|
/**
|
|
@@ -11652,14 +11658,14 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
11652
11658
|
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
11653
11659
|
* devices (such as a mouse or stylus).
|
|
11654
11660
|
*
|
|
11655
|
-
* Platforms: web, android
|
|
11661
|
+
* Platforms: web, android, ios
|
|
11656
11662
|
*/
|
|
11657
11663
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
11658
11664
|
/**
|
|
11659
11665
|
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
11660
11666
|
* devices (such as a mouse or stylus).
|
|
11661
11667
|
*
|
|
11662
|
-
* Platforms: web, android
|
|
11668
|
+
* Platforms: web, android, ios
|
|
11663
11669
|
*/
|
|
11664
11670
|
hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
11665
11671
|
/**
|
|
@@ -11717,13 +11723,13 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
11717
11723
|
/**
|
|
11718
11724
|
* Actions performed after clicking/tapping an element.
|
|
11719
11725
|
*
|
|
11720
|
-
* Platforms: web, android
|
|
11726
|
+
* Platforms: web, android, ios
|
|
11721
11727
|
*/
|
|
11722
11728
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
11723
11729
|
/**
|
|
11724
11730
|
* Actions performed at the start of a click/tap on an element.
|
|
11725
11731
|
*
|
|
11726
|
-
* Platforms: web, android
|
|
11732
|
+
* Platforms: web, android, ios
|
|
11727
11733
|
*/
|
|
11728
11734
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
11729
11735
|
/**
|
|
@@ -12013,7 +12019,7 @@ interface DivTextProps {
|
|
|
12013
12019
|
* List of TrueType/OpenType font features. The object is constructed from pairs of axis tag and
|
|
12014
12020
|
* style values. The axis tag must contain four ASCII characters.
|
|
12015
12021
|
*
|
|
12016
|
-
* Platforms: android
|
|
12022
|
+
* Platforms: ios, android
|
|
12017
12023
|
*/
|
|
12018
12024
|
font_variation_settings?: Type<{} | DivExpression>;
|
|
12019
12025
|
/**
|
|
@@ -12042,14 +12048,14 @@ interface DivTextProps {
|
|
|
12042
12048
|
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
12043
12049
|
* devices (such as a mouse or stylus).
|
|
12044
12050
|
*
|
|
12045
|
-
* Platforms: web, android
|
|
12051
|
+
* Platforms: web, android, ios
|
|
12046
12052
|
*/
|
|
12047
12053
|
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
12048
12054
|
/**
|
|
12049
12055
|
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
12050
12056
|
* devices (such as a mouse or stylus).
|
|
12051
12057
|
*
|
|
12052
|
-
* Platforms: web, android
|
|
12058
|
+
* Platforms: web, android, ios
|
|
12053
12059
|
*/
|
|
12054
12060
|
hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
12055
12061
|
/**
|
|
@@ -12107,13 +12113,13 @@ interface DivTextProps {
|
|
|
12107
12113
|
/**
|
|
12108
12114
|
* Actions performed after clicking/tapping an element.
|
|
12109
12115
|
*
|
|
12110
|
-
* Platforms: web, android
|
|
12116
|
+
* Platforms: web, android, ios
|
|
12111
12117
|
*/
|
|
12112
12118
|
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
12113
12119
|
/**
|
|
12114
12120
|
* Actions performed at the start of a click/tap on an element.
|
|
12115
12121
|
*
|
|
12116
|
-
* Platforms: web, android
|
|
12122
|
+
* Platforms: web, android, ios
|
|
12117
12123
|
*/
|
|
12118
12124
|
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
12119
12125
|
/**
|
|
@@ -12423,7 +12429,7 @@ interface IDivTextRange {
|
|
|
12423
12429
|
* List of TrueType/OpenType font features. The object is constructed from pairs of axis tag and
|
|
12424
12430
|
* style values. The axis tag must contain four ASCII characters.
|
|
12425
12431
|
*
|
|
12426
|
-
* Platforms: android
|
|
12432
|
+
* Platforms: ios, android
|
|
12427
12433
|
*/
|
|
12428
12434
|
font_variation_settings?: Type<{} | DivExpression>;
|
|
12429
12435
|
/**
|
|
@@ -13506,7 +13512,7 @@ declare class IntegerVariable<T extends IntegerVariableProps = IntegerVariablePr
|
|
|
13506
13512
|
*/
|
|
13507
13513
|
name: Type<string>;
|
|
13508
13514
|
/**
|
|
13509
|
-
* Value.
|
|
13515
|
+
* Value. Supports expressions for variable initialization.
|
|
13510
13516
|
*/
|
|
13511
13517
|
value: Type<number | DivExpression>;
|
|
13512
13518
|
constructor(props: Exact<IntegerVariableProps, T>);
|
|
@@ -13517,7 +13523,7 @@ interface IntegerVariableProps {
|
|
|
13517
13523
|
*/
|
|
13518
13524
|
name: Type<string>;
|
|
13519
13525
|
/**
|
|
13520
|
-
* Value.
|
|
13526
|
+
* Value. Supports expressions for variable initialization.
|
|
13521
13527
|
*/
|
|
13522
13528
|
value: Type<number | DivExpression>;
|
|
13523
13529
|
}
|
|
@@ -13543,7 +13549,7 @@ declare class NumberVariable<T extends NumberVariableProps = NumberVariableProps
|
|
|
13543
13549
|
*/
|
|
13544
13550
|
name: Type<string>;
|
|
13545
13551
|
/**
|
|
13546
|
-
* Value.
|
|
13552
|
+
* Value. Supports expressions for variable initialization.
|
|
13547
13553
|
*/
|
|
13548
13554
|
value: Type<number | DivExpression>;
|
|
13549
13555
|
constructor(props: Exact<NumberVariableProps, T>);
|
|
@@ -13554,7 +13560,7 @@ interface NumberVariableProps {
|
|
|
13554
13560
|
*/
|
|
13555
13561
|
name: Type<string>;
|
|
13556
13562
|
/**
|
|
13557
|
-
* Value.
|
|
13563
|
+
* Value. Supports expressions for variable initialization.
|
|
13558
13564
|
*/
|
|
13559
13565
|
value: Type<number | DivExpression>;
|
|
13560
13566
|
}
|
|
@@ -13611,7 +13617,7 @@ declare class StringVariable<T extends StringVariableProps = StringVariableProps
|
|
|
13611
13617
|
*/
|
|
13612
13618
|
name: Type<string>;
|
|
13613
13619
|
/**
|
|
13614
|
-
* Value.
|
|
13620
|
+
* Value. Supports expressions for variable initialization.
|
|
13615
13621
|
*/
|
|
13616
13622
|
value: Type<string | DivExpression>;
|
|
13617
13623
|
constructor(props: Exact<StringVariableProps, T>);
|
|
@@ -13622,7 +13628,7 @@ interface StringVariableProps {
|
|
|
13622
13628
|
*/
|
|
13623
13629
|
name: Type<string>;
|
|
13624
13630
|
/**
|
|
13625
|
-
* Value.
|
|
13631
|
+
* Value. Supports expressions for variable initialization.
|
|
13626
13632
|
*/
|
|
13627
13633
|
value: Type<string | DivExpression>;
|
|
13628
13634
|
}
|
|
@@ -13648,7 +13654,7 @@ declare class UrlVariable<T extends UrlVariableProps = UrlVariableProps> {
|
|
|
13648
13654
|
*/
|
|
13649
13655
|
name: Type<string>;
|
|
13650
13656
|
/**
|
|
13651
|
-
* Value.
|
|
13657
|
+
* Value. Supports expressions for variable initialization.
|
|
13652
13658
|
*/
|
|
13653
13659
|
value: Type<string | DivExpression>;
|
|
13654
13660
|
constructor(props: Exact<UrlVariableProps, T>);
|
|
@@ -13659,7 +13665,7 @@ interface UrlVariableProps {
|
|
|
13659
13665
|
*/
|
|
13660
13666
|
name: Type<string>;
|
|
13661
13667
|
/**
|
|
13662
|
-
* Value.
|
|
13668
|
+
* Value. Supports expressions for variable initialization.
|
|
13663
13669
|
*/
|
|
13664
13670
|
value: Type<string | DivExpression>;
|
|
13665
13671
|
}
|