@divkitframework/jsonbuilder 32.4.0 → 32.6.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 +24 -1
- package/dist/es/jsonbuilder.js.map +1 -1
- package/dist/jsonbuilder.d.ts +268 -64
- package/dist/jsonbuilder.js +24 -0
- package/dist/jsonbuilder.js.map +1 -1
- package/package.json +1 -1
package/dist/jsonbuilder.d.ts
CHANGED
|
@@ -348,7 +348,7 @@ declare type DivAccessibilityType = 'none' | 'button' | 'image' | 'text' | 'edit
|
|
|
348
348
|
*/
|
|
349
349
|
interface IDivAction {
|
|
350
350
|
/**
|
|
351
|
-
* Callbacks that are called after
|
|
351
|
+
* Callbacks that are called after data loading.
|
|
352
352
|
*/
|
|
353
353
|
download_callbacks?: Type<IDivDownloadCallbacks>;
|
|
354
354
|
/**
|
|
@@ -392,8 +392,7 @@ interface IDivAction {
|
|
|
392
392
|
target?: Type<DivActionTarget | DivExpression>;
|
|
393
393
|
typed?: Type<DivActionTyped>;
|
|
394
394
|
/**
|
|
395
|
-
* URL. Possible values: `url` or `div-action://`.
|
|
396
|
-
* elements](../../interaction).
|
|
395
|
+
* URL. Possible values: `url` or `div-action://`.
|
|
397
396
|
*/
|
|
398
397
|
url?: Type<string | DivExpression>;
|
|
399
398
|
}
|
|
@@ -992,7 +991,50 @@ interface DivActionTimerProps {
|
|
|
992
991
|
}
|
|
993
992
|
declare type DivActionTimerAction = 'start' | 'stop' | 'pause' | 'resume' | 'cancel' | 'reset';
|
|
994
993
|
|
|
995
|
-
declare type DivActionTyped = DivActionAnimatorStart | DivActionAnimatorStop | DivActionArrayInsertValue | DivActionArrayRemoveValue | DivActionArraySetValue | DivActionClearFocus | DivActionCopyToClipboard | DivActionDictSetValue | DivActionDownload | DivActionFocusElement | DivActionHideTooltip | DivActionScrollBy | DivActionScrollTo | DivActionSetState | DivActionSetStoredValue | DivActionSetVariable | DivActionShowTooltip | DivActionSubmit | DivActionTimer | DivActionVideo;
|
|
994
|
+
declare type DivActionTyped = DivActionAnimatorStart | DivActionAnimatorStop | DivActionArrayInsertValue | DivActionArrayRemoveValue | DivActionArraySetValue | DivActionClearFocus | DivActionCopyToClipboard | DivActionDictSetValue | DivActionDownload | DivActionFocusElement | DivActionHideTooltip | DivActionScrollBy | DivActionScrollTo | DivActionSetState | DivActionSetStoredValue | DivActionSetVariable | DivActionShowTooltip | DivActionSubmit | DivActionTimer | DivActionUpdateStructure | DivActionVideo;
|
|
995
|
+
|
|
996
|
+
/**
|
|
997
|
+
* Set values in a variable of type array or dictionary with different nesting.
|
|
998
|
+
*/
|
|
999
|
+
declare class DivActionUpdateStructure<T extends DivActionUpdateStructureProps = DivActionUpdateStructureProps> {
|
|
1000
|
+
readonly _props?: Exact<DivActionUpdateStructureProps, T>;
|
|
1001
|
+
readonly type = "update_structure";
|
|
1002
|
+
/**
|
|
1003
|
+
* Path within an array/dictionary where a value needs to be set. Path format: Each path element
|
|
1004
|
+
* is separated by a '/' symbol.Path elements can be of two types: an index of an element in an
|
|
1005
|
+
* array, starting from 0 or dictionary keys in the form of arbitrary strings.The path is read
|
|
1006
|
+
* from left to right, each element determines the transition to the next level of
|
|
1007
|
+
* nesting.Example path: `key/0/inner_key/1`.
|
|
1008
|
+
*/
|
|
1009
|
+
path: Type<string | DivExpression>;
|
|
1010
|
+
/**
|
|
1011
|
+
* Value set into dictionary/array.
|
|
1012
|
+
*/
|
|
1013
|
+
value: Type<DivTypedValue>;
|
|
1014
|
+
/**
|
|
1015
|
+
* Variable name of array or dictionary type.
|
|
1016
|
+
*/
|
|
1017
|
+
variable_name: Type<string | DivExpression>;
|
|
1018
|
+
constructor(props: Exact<DivActionUpdateStructureProps, T>);
|
|
1019
|
+
}
|
|
1020
|
+
interface DivActionUpdateStructureProps {
|
|
1021
|
+
/**
|
|
1022
|
+
* Path within an array/dictionary where a value needs to be set. Path format: Each path element
|
|
1023
|
+
* is separated by a '/' symbol.Path elements can be of two types: an index of an element in an
|
|
1024
|
+
* array, starting from 0 or dictionary keys in the form of arbitrary strings.The path is read
|
|
1025
|
+
* from left to right, each element determines the transition to the next level of
|
|
1026
|
+
* nesting.Example path: `key/0/inner_key/1`.
|
|
1027
|
+
*/
|
|
1028
|
+
path: Type<string | DivExpression>;
|
|
1029
|
+
/**
|
|
1030
|
+
* Value set into dictionary/array.
|
|
1031
|
+
*/
|
|
1032
|
+
value: Type<DivTypedValue>;
|
|
1033
|
+
/**
|
|
1034
|
+
* Variable name of array or dictionary type.
|
|
1035
|
+
*/
|
|
1036
|
+
variable_name: Type<string | DivExpression>;
|
|
1037
|
+
}
|
|
996
1038
|
|
|
997
1039
|
/**
|
|
998
1040
|
* Manages video playback.
|
|
@@ -1227,7 +1269,8 @@ interface IDivBase {
|
|
|
1227
1269
|
*/
|
|
1228
1270
|
id?: Type<string>;
|
|
1229
1271
|
/**
|
|
1230
|
-
* Provides data on the actual size of the element.
|
|
1272
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
1273
|
+
* account the margins of the element itself.
|
|
1231
1274
|
*
|
|
1232
1275
|
* Platforms: android, ios, web
|
|
1233
1276
|
*/
|
|
@@ -1816,7 +1859,8 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
|
|
|
1816
1859
|
*/
|
|
1817
1860
|
layout_mode?: Type<DivContainerLayoutMode | DivExpression>;
|
|
1818
1861
|
/**
|
|
1819
|
-
* Provides data on the actual size of the element.
|
|
1862
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
1863
|
+
* account the margins of the element itself.
|
|
1820
1864
|
*
|
|
1821
1865
|
* Platforms: android, ios, web
|
|
1822
1866
|
*/
|
|
@@ -2122,7 +2166,8 @@ interface DivContainerPropsBase {
|
|
|
2122
2166
|
*/
|
|
2123
2167
|
layout_mode?: Type<DivContainerLayoutMode | DivExpression>;
|
|
2124
2168
|
/**
|
|
2125
|
-
* Provides data on the actual size of the element.
|
|
2169
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
2170
|
+
* account the margins of the element itself.
|
|
2126
2171
|
*
|
|
2127
2172
|
* Platforms: android, ios, web
|
|
2128
2173
|
*/
|
|
@@ -2458,7 +2503,8 @@ declare class DivCustom<T extends DivCustomProps = DivCustomProps> {
|
|
|
2458
2503
|
*/
|
|
2459
2504
|
items?: Type<NonEmptyArray<Div>>;
|
|
2460
2505
|
/**
|
|
2461
|
-
* Provides data on the actual size of the element.
|
|
2506
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
2507
|
+
* account the margins of the element itself.
|
|
2462
2508
|
*
|
|
2463
2509
|
* Platforms: android, ios, web
|
|
2464
2510
|
*/
|
|
@@ -2650,7 +2696,8 @@ interface DivCustomProps {
|
|
|
2650
2696
|
*/
|
|
2651
2697
|
items?: Type<NonEmptyArray<Div>>;
|
|
2652
2698
|
/**
|
|
2653
|
-
* Provides data on the actual size of the element.
|
|
2699
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
2700
|
+
* account the margins of the element itself.
|
|
2654
2701
|
*
|
|
2655
2702
|
* Platforms: android, ios, web
|
|
2656
2703
|
*/
|
|
@@ -2796,7 +2843,7 @@ interface IDivDisappearAction {
|
|
|
2796
2843
|
*/
|
|
2797
2844
|
disappear_duration?: Type<number | DivExpression>;
|
|
2798
2845
|
/**
|
|
2799
|
-
* Callbacks that are called after
|
|
2846
|
+
* Callbacks that are called after data loading.
|
|
2800
2847
|
*/
|
|
2801
2848
|
download_callbacks?: Type<IDivDownloadCallbacks>;
|
|
2802
2849
|
/**
|
|
@@ -2830,8 +2877,7 @@ interface IDivDisappearAction {
|
|
|
2830
2877
|
scope_id?: Type<string>;
|
|
2831
2878
|
typed?: Type<DivActionTyped>;
|
|
2832
2879
|
/**
|
|
2833
|
-
* URL. Possible values: `url` or `div-action://`.
|
|
2834
|
-
* elements](../../interaction).
|
|
2880
|
+
* URL. Possible values: `url` or `div-action://`.
|
|
2835
2881
|
*/
|
|
2836
2882
|
url?: Type<string | DivExpression>;
|
|
2837
2883
|
/**
|
|
@@ -3294,7 +3340,8 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
|
|
|
3294
3340
|
*/
|
|
3295
3341
|
items?: Type<NonEmptyArray<Div>>;
|
|
3296
3342
|
/**
|
|
3297
|
-
* Provides data on the actual size of the element.
|
|
3343
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
3344
|
+
* account the margins of the element itself.
|
|
3298
3345
|
*
|
|
3299
3346
|
* Platforms: android, ios, web
|
|
3300
3347
|
*/
|
|
@@ -3343,7 +3390,7 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
|
|
|
3343
3390
|
* `none` — the scrollbar is hidden.`auto` — the scrollbar is shown if there isn't enough space
|
|
3344
3391
|
* and it needs to be displayed on the current platform.
|
|
3345
3392
|
*
|
|
3346
|
-
* Platforms: web, android
|
|
3393
|
+
* Platforms: web, android, ios
|
|
3347
3394
|
*/
|
|
3348
3395
|
scrollbar?: Type<DivGalleryScrollbar | DivExpression>;
|
|
3349
3396
|
/**
|
|
@@ -3551,7 +3598,8 @@ interface DivGalleryProps {
|
|
|
3551
3598
|
*/
|
|
3552
3599
|
items?: Type<NonEmptyArray<Div>>;
|
|
3553
3600
|
/**
|
|
3554
|
-
* Provides data on the actual size of the element.
|
|
3601
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
3602
|
+
* account the margins of the element itself.
|
|
3555
3603
|
*
|
|
3556
3604
|
* Platforms: android, ios, web
|
|
3557
3605
|
*/
|
|
@@ -3600,7 +3648,7 @@ interface DivGalleryProps {
|
|
|
3600
3648
|
* `none` — the scrollbar is hidden.`auto` — the scrollbar is shown if there isn't enough space
|
|
3601
3649
|
* and it needs to be displayed on the current platform.
|
|
3602
3650
|
*
|
|
3603
|
-
* Platforms: web, android
|
|
3651
|
+
* Platforms: web, android, ios
|
|
3604
3652
|
*/
|
|
3605
3653
|
scrollbar?: Type<DivGalleryScrollbar | DivExpression>;
|
|
3606
3654
|
/**
|
|
@@ -3827,7 +3875,8 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
|
|
|
3827
3875
|
*/
|
|
3828
3876
|
id?: Type<string>;
|
|
3829
3877
|
/**
|
|
3830
|
-
* Provides data on the actual size of the element.
|
|
3878
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
3879
|
+
* account the margins of the element itself.
|
|
3831
3880
|
*
|
|
3832
3881
|
* Platforms: android, ios, web
|
|
3833
3882
|
*/
|
|
@@ -3856,7 +3905,7 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
|
|
|
3856
3905
|
/**
|
|
3857
3906
|
* Background image must be loaded before the display.
|
|
3858
3907
|
*
|
|
3859
|
-
* Platforms: android, web
|
|
3908
|
+
* Platforms: android, ios, web
|
|
3860
3909
|
*/
|
|
3861
3910
|
preload_required?: Type<IntBoolean | DivExpression>;
|
|
3862
3911
|
/**
|
|
@@ -4111,7 +4160,8 @@ interface DivGifImageProps {
|
|
|
4111
4160
|
*/
|
|
4112
4161
|
id?: Type<string>;
|
|
4113
4162
|
/**
|
|
4114
|
-
* Provides data on the actual size of the element.
|
|
4163
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
4164
|
+
* account the margins of the element itself.
|
|
4115
4165
|
*
|
|
4116
4166
|
* Platforms: android, ios, web
|
|
4117
4167
|
*/
|
|
@@ -4140,7 +4190,7 @@ interface DivGifImageProps {
|
|
|
4140
4190
|
/**
|
|
4141
4191
|
* Background image must be loaded before the display.
|
|
4142
4192
|
*
|
|
4143
|
-
* Platforms: android, web
|
|
4193
|
+
* Platforms: android, ios, web
|
|
4144
4194
|
*/
|
|
4145
4195
|
preload_required?: Type<IntBoolean | DivExpression>;
|
|
4146
4196
|
/**
|
|
@@ -4399,7 +4449,8 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
|
|
|
4399
4449
|
*/
|
|
4400
4450
|
items?: Type<NonEmptyArray<Div>>;
|
|
4401
4451
|
/**
|
|
4402
|
-
* Provides data on the actual size of the element.
|
|
4452
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
4453
|
+
* account the margins of the element itself.
|
|
4403
4454
|
*
|
|
4404
4455
|
* Platforms: android, ios, web
|
|
4405
4456
|
*/
|
|
@@ -4658,7 +4709,8 @@ interface DivGridProps {
|
|
|
4658
4709
|
*/
|
|
4659
4710
|
items?: Type<NonEmptyArray<Div>>;
|
|
4660
4711
|
/**
|
|
4661
|
-
* Provides data on the actual size of the element.
|
|
4712
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
4713
|
+
* account the margins of the element itself.
|
|
4662
4714
|
*
|
|
4663
4715
|
* Platforms: android, ios, web
|
|
4664
4716
|
*/
|
|
@@ -4941,7 +4993,8 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
|
|
|
4941
4993
|
*/
|
|
4942
4994
|
image_url: Type<string | DivExpression>;
|
|
4943
4995
|
/**
|
|
4944
|
-
* Provides data on the actual size of the element.
|
|
4996
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
4997
|
+
* account the margins of the element itself.
|
|
4945
4998
|
*
|
|
4946
4999
|
* Platforms: android, ios, web
|
|
4947
5000
|
*/
|
|
@@ -4970,7 +5023,7 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
|
|
|
4970
5023
|
/**
|
|
4971
5024
|
* Background image must be loaded before the display.
|
|
4972
5025
|
*
|
|
4973
|
-
* Platforms: android, web
|
|
5026
|
+
* Platforms: android, ios, web
|
|
4974
5027
|
*/
|
|
4975
5028
|
preload_required?: Type<IntBoolean | DivExpression>;
|
|
4976
5029
|
/**
|
|
@@ -5251,7 +5304,8 @@ interface DivImageProps {
|
|
|
5251
5304
|
*/
|
|
5252
5305
|
image_url: Type<string | DivExpression>;
|
|
5253
5306
|
/**
|
|
5254
|
-
* Provides data on the actual size of the element.
|
|
5307
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
5308
|
+
* account the margins of the element itself.
|
|
5255
5309
|
*
|
|
5256
5310
|
* Platforms: android, ios, web
|
|
5257
5311
|
*/
|
|
@@ -5280,7 +5334,7 @@ interface DivImageProps {
|
|
|
5280
5334
|
/**
|
|
5281
5335
|
* Background image must be loaded before the display.
|
|
5282
5336
|
*
|
|
5283
|
-
* Platforms: android, web
|
|
5337
|
+
* Platforms: android, ios, web
|
|
5284
5338
|
*/
|
|
5285
5339
|
preload_required?: Type<IntBoolean | DivExpression>;
|
|
5286
5340
|
/**
|
|
@@ -5437,7 +5491,7 @@ declare class DivImageBackground<T extends DivImageBackgroundProps = DivImageBac
|
|
|
5437
5491
|
/**
|
|
5438
5492
|
* Background image must be loaded before the display.
|
|
5439
5493
|
*
|
|
5440
|
-
* Platforms: android
|
|
5494
|
+
* Platforms: android, ios
|
|
5441
5495
|
*/
|
|
5442
5496
|
preload_required?: Type<IntBoolean | DivExpression>;
|
|
5443
5497
|
/**
|
|
@@ -5470,7 +5524,7 @@ interface DivImageBackgroundProps {
|
|
|
5470
5524
|
/**
|
|
5471
5525
|
* Background image must be loaded before the display.
|
|
5472
5526
|
*
|
|
5473
|
-
* Platforms: android
|
|
5527
|
+
* Platforms: android, ios
|
|
5474
5528
|
*/
|
|
5475
5529
|
preload_required?: Type<IntBoolean | DivExpression>;
|
|
5476
5530
|
/**
|
|
@@ -5603,7 +5657,8 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
|
|
|
5603
5657
|
*/
|
|
5604
5658
|
items_placement?: Type<DivIndicatorItemPlacement>;
|
|
5605
5659
|
/**
|
|
5606
|
-
* Provides data on the actual size of the element.
|
|
5660
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
5661
|
+
* account the margins of the element itself.
|
|
5607
5662
|
*
|
|
5608
5663
|
* Platforms: android, ios, web
|
|
5609
5664
|
*/
|
|
@@ -5626,7 +5681,8 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
|
|
|
5626
5681
|
*/
|
|
5627
5682
|
paddings?: Type<IDivEdgeInsets>;
|
|
5628
5683
|
/**
|
|
5629
|
-
* ID of the pager that is a data source for an indicator.
|
|
5684
|
+
* ID of the pager that is a data source for an indicator. If not specified, the indicator will
|
|
5685
|
+
* automatically find the nearest pager.
|
|
5630
5686
|
*/
|
|
5631
5687
|
pager_id?: Type<string>;
|
|
5632
5688
|
/**
|
|
@@ -5851,7 +5907,8 @@ interface DivIndicatorProps {
|
|
|
5851
5907
|
*/
|
|
5852
5908
|
items_placement?: Type<DivIndicatorItemPlacement>;
|
|
5853
5909
|
/**
|
|
5854
|
-
* Provides data on the actual size of the element.
|
|
5910
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
5911
|
+
* account the margins of the element itself.
|
|
5855
5912
|
*
|
|
5856
5913
|
* Platforms: android, ios, web
|
|
5857
5914
|
*/
|
|
@@ -5874,7 +5931,8 @@ interface DivIndicatorProps {
|
|
|
5874
5931
|
*/
|
|
5875
5932
|
paddings?: Type<IDivEdgeInsets>;
|
|
5876
5933
|
/**
|
|
5877
|
-
* ID of the pager that is a data source for an indicator.
|
|
5934
|
+
* ID of the pager that is a data source for an indicator. If not specified, the indicator will
|
|
5935
|
+
* automatically find the nearest pager.
|
|
5878
5936
|
*/
|
|
5879
5937
|
pager_id?: Type<string>;
|
|
5880
5938
|
/**
|
|
@@ -6056,7 +6114,8 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
|
|
|
6056
6114
|
*/
|
|
6057
6115
|
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
6058
6116
|
/**
|
|
6059
|
-
* Actions when pressing the 'Enter' key. Actions (if any) override the default behavior.
|
|
6117
|
+
* Actions when pressing the 'Enter' key. Actions (if any) override the default behavior. In
|
|
6118
|
+
* multiline inputs, pressing Enter will trigger the actions instead of adding a new line.
|
|
6060
6119
|
*
|
|
6061
6120
|
* Platforms: ios, android, web
|
|
6062
6121
|
*/
|
|
@@ -6159,7 +6218,8 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
|
|
|
6159
6218
|
*/
|
|
6160
6219
|
keyboard_type?: Type<DivInputKeyboardType | DivExpression>;
|
|
6161
6220
|
/**
|
|
6162
|
-
* Provides data on the actual size of the element.
|
|
6221
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
6222
|
+
* account the margins of the element itself.
|
|
6163
6223
|
*
|
|
6164
6224
|
* Platforms: android, ios, web
|
|
6165
6225
|
*/
|
|
@@ -6380,7 +6440,8 @@ interface DivInputProps {
|
|
|
6380
6440
|
*/
|
|
6381
6441
|
disappear_actions?: Type<NonEmptyArray<IDivDisappearAction>>;
|
|
6382
6442
|
/**
|
|
6383
|
-
* Actions when pressing the 'Enter' key. Actions (if any) override the default behavior.
|
|
6443
|
+
* Actions when pressing the 'Enter' key. Actions (if any) override the default behavior. In
|
|
6444
|
+
* multiline inputs, pressing Enter will trigger the actions instead of adding a new line.
|
|
6384
6445
|
*
|
|
6385
6446
|
* Platforms: ios, android, web
|
|
6386
6447
|
*/
|
|
@@ -6483,7 +6544,8 @@ interface DivInputProps {
|
|
|
6483
6544
|
*/
|
|
6484
6545
|
keyboard_type?: Type<DivInputKeyboardType | DivExpression>;
|
|
6485
6546
|
/**
|
|
6486
|
-
* Provides data on the actual size of the element.
|
|
6547
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
6548
|
+
* account the margins of the element itself.
|
|
6487
6549
|
*
|
|
6488
6550
|
* Platforms: android, ios, web
|
|
6489
6551
|
*/
|
|
@@ -7378,7 +7440,8 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
7378
7440
|
*/
|
|
7379
7441
|
layout_mode: Type<DivPagerLayoutMode>;
|
|
7380
7442
|
/**
|
|
7381
|
-
* Provides data on the actual size of the element.
|
|
7443
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
7444
|
+
* account the margins of the element itself.
|
|
7382
7445
|
*
|
|
7383
7446
|
* Platforms: android, ios, web
|
|
7384
7447
|
*/
|
|
@@ -7636,7 +7699,8 @@ interface DivPagerProps {
|
|
|
7636
7699
|
*/
|
|
7637
7700
|
layout_mode: Type<DivPagerLayoutMode>;
|
|
7638
7701
|
/**
|
|
7639
|
-
* Provides data on the actual size of the element.
|
|
7702
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
7703
|
+
* account the margins of the element itself.
|
|
7640
7704
|
*
|
|
7641
7705
|
* Platforms: android, ios, web
|
|
7642
7706
|
*/
|
|
@@ -8291,7 +8355,8 @@ declare class DivSelect<T extends DivSelectProps = DivSelectProps> {
|
|
|
8291
8355
|
*/
|
|
8292
8356
|
id?: Type<string>;
|
|
8293
8357
|
/**
|
|
8294
|
-
* Provides data on the actual size of the element.
|
|
8358
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
8359
|
+
* account the margins of the element itself.
|
|
8295
8360
|
*
|
|
8296
8361
|
* Platforms: android, ios, web
|
|
8297
8362
|
*/
|
|
@@ -8532,7 +8597,8 @@ interface DivSelectProps {
|
|
|
8532
8597
|
*/
|
|
8533
8598
|
id?: Type<string>;
|
|
8534
8599
|
/**
|
|
8535
|
-
* Provides data on the actual size of the element.
|
|
8600
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
8601
|
+
* account the margins of the element itself.
|
|
8536
8602
|
*
|
|
8537
8603
|
* Platforms: android, ios, web
|
|
8538
8604
|
*/
|
|
@@ -8797,7 +8863,8 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
|
|
|
8797
8863
|
*/
|
|
8798
8864
|
id?: Type<string>;
|
|
8799
8865
|
/**
|
|
8800
|
-
* Provides data on the actual size of the element.
|
|
8866
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
8867
|
+
* account the margins of the element itself.
|
|
8801
8868
|
*
|
|
8802
8869
|
* Platforms: android, ios, web
|
|
8803
8870
|
*/
|
|
@@ -9044,7 +9111,8 @@ interface DivSeparatorProps {
|
|
|
9044
9111
|
*/
|
|
9045
9112
|
id?: Type<string>;
|
|
9046
9113
|
/**
|
|
9047
|
-
* Provides data on the actual size of the element.
|
|
9114
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
9115
|
+
* account the margins of the element itself.
|
|
9048
9116
|
*
|
|
9049
9117
|
* Platforms: android, ios, web
|
|
9050
9118
|
*/
|
|
@@ -9253,7 +9321,7 @@ interface DivShapeDrawableProps {
|
|
|
9253
9321
|
|
|
9254
9322
|
interface IDivSightAction {
|
|
9255
9323
|
/**
|
|
9256
|
-
* Callbacks that are called after
|
|
9324
|
+
* Callbacks that are called after data loading.
|
|
9257
9325
|
*/
|
|
9258
9326
|
download_callbacks?: Type<IDivDownloadCallbacks>;
|
|
9259
9327
|
/**
|
|
@@ -9287,8 +9355,7 @@ interface IDivSightAction {
|
|
|
9287
9355
|
scope_id?: Type<string>;
|
|
9288
9356
|
typed?: Type<DivActionTyped>;
|
|
9289
9357
|
/**
|
|
9290
|
-
* URL. Possible values: `url` or `div-action://`.
|
|
9291
|
-
* elements](../../interaction).
|
|
9358
|
+
* URL. Possible values: `url` or `div-action://`.
|
|
9292
9359
|
*/
|
|
9293
9360
|
url?: Type<string | DivExpression>;
|
|
9294
9361
|
}
|
|
@@ -9440,7 +9507,8 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
|
|
|
9440
9507
|
*/
|
|
9441
9508
|
is_enabled?: Type<IntBoolean | DivExpression>;
|
|
9442
9509
|
/**
|
|
9443
|
-
* Provides data on the actual size of the element.
|
|
9510
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
9511
|
+
* account the margins of the element itself.
|
|
9444
9512
|
*
|
|
9445
9513
|
* Platforms: android, ios, web
|
|
9446
9514
|
*/
|
|
@@ -9686,7 +9754,8 @@ interface DivSliderProps {
|
|
|
9686
9754
|
*/
|
|
9687
9755
|
is_enabled?: Type<IntBoolean | DivExpression>;
|
|
9688
9756
|
/**
|
|
9689
|
-
* Provides data on the actual size of the element.
|
|
9757
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
9758
|
+
* account the margins of the element itself.
|
|
9690
9759
|
*
|
|
9691
9760
|
* Platforms: android, ios, web
|
|
9692
9761
|
*/
|
|
@@ -9955,6 +10024,21 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
|
|
|
9955
10024
|
* Platforms: android, ios, web
|
|
9956
10025
|
*/
|
|
9957
10026
|
accessibility?: Type<IDivAccessibility>;
|
|
10027
|
+
/**
|
|
10028
|
+
* One action when clicking on an element. Not used if the `actions` parameter is set.
|
|
10029
|
+
*/
|
|
10030
|
+
action?: Type<IDivAction>;
|
|
10031
|
+
/**
|
|
10032
|
+
* Click animation. The web only supports the following values: `fade`, `scale`, `native`,
|
|
10033
|
+
* `no_animation` and `set`.
|
|
10034
|
+
*
|
|
10035
|
+
* Platforms: android, ios, web
|
|
10036
|
+
*/
|
|
10037
|
+
action_animation?: Type<IDivAnimation>;
|
|
10038
|
+
/**
|
|
10039
|
+
* Multiple actions when clicking on an element.
|
|
10040
|
+
*/
|
|
10041
|
+
actions?: Type<NonEmptyArray<IDivAction>>;
|
|
9958
10042
|
/**
|
|
9959
10043
|
* Horizontal alignment of an element inside the parent element.
|
|
9960
10044
|
*/
|
|
@@ -9981,6 +10065,15 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
|
|
|
9981
10065
|
* Element stroke.
|
|
9982
10066
|
*/
|
|
9983
10067
|
border?: Type<IDivBorder>;
|
|
10068
|
+
/**
|
|
10069
|
+
* If the value is:`true` - when the element action is activated, the focus will be moved to that
|
|
10070
|
+
* element. That means that the accessibility focus will be moved and the virtual keyboard will
|
|
10071
|
+
* be hidden, unless the target element implies its presence (e.g. `input`).`false` - when you
|
|
10072
|
+
* click on an element, the focus will remain on the currently focused element.
|
|
10073
|
+
*
|
|
10074
|
+
* Platforms: android, ios, web
|
|
10075
|
+
*/
|
|
10076
|
+
capture_focus_on_action?: Type<boolean | DivExpression>;
|
|
9984
10077
|
/**
|
|
9985
10078
|
* Enables the bounding of child elements by the parent's borders.
|
|
9986
10079
|
*
|
|
@@ -10010,6 +10103,12 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
|
|
|
10010
10103
|
* @deprecated
|
|
10011
10104
|
*/
|
|
10012
10105
|
div_id?: Type<string>;
|
|
10106
|
+
/**
|
|
10107
|
+
* Action when double-clicking on an element.
|
|
10108
|
+
*
|
|
10109
|
+
* Platforms: android, ios, web
|
|
10110
|
+
*/
|
|
10111
|
+
doubletap_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
10013
10112
|
/**
|
|
10014
10113
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
10015
10114
|
* [DivExtension](../../extensions).
|
|
@@ -10033,17 +10132,39 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
|
|
|
10033
10132
|
* measurement, see [Layout inside the card](../../layout).
|
|
10034
10133
|
*/
|
|
10035
10134
|
height?: Type<DivSize>;
|
|
10135
|
+
/**
|
|
10136
|
+
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
10137
|
+
* devices (such as a mouse or stylus).
|
|
10138
|
+
*
|
|
10139
|
+
* Platforms: web, android, ios
|
|
10140
|
+
*/
|
|
10141
|
+
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
10142
|
+
/**
|
|
10143
|
+
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
10144
|
+
* devices (such as a mouse or stylus).
|
|
10145
|
+
*
|
|
10146
|
+
* Platforms: web, android, ios
|
|
10147
|
+
*/
|
|
10148
|
+
hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
10036
10149
|
/**
|
|
10037
10150
|
* Element ID. It must be unique within the root element. It is used as `accessibilityIdentifier`
|
|
10038
10151
|
* on iOS.
|
|
10039
10152
|
*/
|
|
10040
10153
|
id?: Type<string>;
|
|
10041
10154
|
/**
|
|
10042
|
-
* Provides data on the actual size of the element.
|
|
10155
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
10156
|
+
* account the margins of the element itself.
|
|
10043
10157
|
*
|
|
10044
10158
|
* Platforms: android, ios, web
|
|
10045
10159
|
*/
|
|
10046
10160
|
layout_provider?: Type<IDivLayoutProvider>;
|
|
10161
|
+
/**
|
|
10162
|
+
* Action when long-clicking an element. Doesn't work on devices that don't support touch
|
|
10163
|
+
* gestures.
|
|
10164
|
+
*
|
|
10165
|
+
* Platforms: android, ios, web
|
|
10166
|
+
*/
|
|
10167
|
+
longtap_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
10047
10168
|
/**
|
|
10048
10169
|
* External margins from the element stroke.
|
|
10049
10170
|
*/
|
|
@@ -10052,6 +10173,18 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
|
|
|
10052
10173
|
* Internal margins from the element stroke.
|
|
10053
10174
|
*/
|
|
10054
10175
|
paddings?: Type<IDivEdgeInsets>;
|
|
10176
|
+
/**
|
|
10177
|
+
* Actions performed after clicking/tapping an element.
|
|
10178
|
+
*
|
|
10179
|
+
* Platforms: web, android, ios
|
|
10180
|
+
*/
|
|
10181
|
+
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
10182
|
+
/**
|
|
10183
|
+
* Actions performed at the start of a click/tap on an element.
|
|
10184
|
+
*
|
|
10185
|
+
* Platforms: web, android, ios
|
|
10186
|
+
*/
|
|
10187
|
+
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
10055
10188
|
/**
|
|
10056
10189
|
* ID for the div object structure. Used to optimize block reuse. See [block
|
|
10057
10190
|
* reuse](../../reuse/reuse.md).
|
|
@@ -10169,6 +10302,21 @@ interface DivStateProps {
|
|
|
10169
10302
|
* Platforms: android, ios, web
|
|
10170
10303
|
*/
|
|
10171
10304
|
accessibility?: Type<IDivAccessibility>;
|
|
10305
|
+
/**
|
|
10306
|
+
* One action when clicking on an element. Not used if the `actions` parameter is set.
|
|
10307
|
+
*/
|
|
10308
|
+
action?: Type<IDivAction>;
|
|
10309
|
+
/**
|
|
10310
|
+
* Click animation. The web only supports the following values: `fade`, `scale`, `native`,
|
|
10311
|
+
* `no_animation` and `set`.
|
|
10312
|
+
*
|
|
10313
|
+
* Platforms: android, ios, web
|
|
10314
|
+
*/
|
|
10315
|
+
action_animation?: Type<IDivAnimation>;
|
|
10316
|
+
/**
|
|
10317
|
+
* Multiple actions when clicking on an element.
|
|
10318
|
+
*/
|
|
10319
|
+
actions?: Type<NonEmptyArray<IDivAction>>;
|
|
10172
10320
|
/**
|
|
10173
10321
|
* Horizontal alignment of an element inside the parent element.
|
|
10174
10322
|
*/
|
|
@@ -10195,6 +10343,15 @@ interface DivStateProps {
|
|
|
10195
10343
|
* Element stroke.
|
|
10196
10344
|
*/
|
|
10197
10345
|
border?: Type<IDivBorder>;
|
|
10346
|
+
/**
|
|
10347
|
+
* If the value is:`true` - when the element action is activated, the focus will be moved to that
|
|
10348
|
+
* element. That means that the accessibility focus will be moved and the virtual keyboard will
|
|
10349
|
+
* be hidden, unless the target element implies its presence (e.g. `input`).`false` - when you
|
|
10350
|
+
* click on an element, the focus will remain on the currently focused element.
|
|
10351
|
+
*
|
|
10352
|
+
* Platforms: android, ios, web
|
|
10353
|
+
*/
|
|
10354
|
+
capture_focus_on_action?: Type<boolean | DivExpression>;
|
|
10198
10355
|
/**
|
|
10199
10356
|
* Enables the bounding of child elements by the parent's borders.
|
|
10200
10357
|
*
|
|
@@ -10224,6 +10381,12 @@ interface DivStateProps {
|
|
|
10224
10381
|
* @deprecated
|
|
10225
10382
|
*/
|
|
10226
10383
|
div_id?: Type<string>;
|
|
10384
|
+
/**
|
|
10385
|
+
* Action when double-clicking on an element.
|
|
10386
|
+
*
|
|
10387
|
+
* Platforms: android, ios, web
|
|
10388
|
+
*/
|
|
10389
|
+
doubletap_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
10227
10390
|
/**
|
|
10228
10391
|
* Extensions for additional processing of an element. The list of extensions is given in
|
|
10229
10392
|
* [DivExtension](../../extensions).
|
|
@@ -10247,17 +10410,39 @@ interface DivStateProps {
|
|
|
10247
10410
|
* measurement, see [Layout inside the card](../../layout).
|
|
10248
10411
|
*/
|
|
10249
10412
|
height?: Type<DivSize>;
|
|
10413
|
+
/**
|
|
10414
|
+
* Actions performed after hovering over an element. Available on platforms that support pointing
|
|
10415
|
+
* devices (such as a mouse or stylus).
|
|
10416
|
+
*
|
|
10417
|
+
* Platforms: web, android, ios
|
|
10418
|
+
*/
|
|
10419
|
+
hover_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
10420
|
+
/**
|
|
10421
|
+
* Actions performed when hovering over an element. Available on platforms that support pointing
|
|
10422
|
+
* devices (such as a mouse or stylus).
|
|
10423
|
+
*
|
|
10424
|
+
* Platforms: web, android, ios
|
|
10425
|
+
*/
|
|
10426
|
+
hover_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
10250
10427
|
/**
|
|
10251
10428
|
* Element ID. It must be unique within the root element. It is used as `accessibilityIdentifier`
|
|
10252
10429
|
* on iOS.
|
|
10253
10430
|
*/
|
|
10254
10431
|
id?: Type<string>;
|
|
10255
10432
|
/**
|
|
10256
|
-
* Provides data on the actual size of the element.
|
|
10433
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
10434
|
+
* account the margins of the element itself.
|
|
10257
10435
|
*
|
|
10258
10436
|
* Platforms: android, ios, web
|
|
10259
10437
|
*/
|
|
10260
10438
|
layout_provider?: Type<IDivLayoutProvider>;
|
|
10439
|
+
/**
|
|
10440
|
+
* Action when long-clicking an element. Doesn't work on devices that don't support touch
|
|
10441
|
+
* gestures.
|
|
10442
|
+
*
|
|
10443
|
+
* Platforms: android, ios, web
|
|
10444
|
+
*/
|
|
10445
|
+
longtap_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
10261
10446
|
/**
|
|
10262
10447
|
* External margins from the element stroke.
|
|
10263
10448
|
*/
|
|
@@ -10266,6 +10451,18 @@ interface DivStateProps {
|
|
|
10266
10451
|
* Internal margins from the element stroke.
|
|
10267
10452
|
*/
|
|
10268
10453
|
paddings?: Type<IDivEdgeInsets>;
|
|
10454
|
+
/**
|
|
10455
|
+
* Actions performed after clicking/tapping an element.
|
|
10456
|
+
*
|
|
10457
|
+
* Platforms: web, android, ios
|
|
10458
|
+
*/
|
|
10459
|
+
press_end_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
10460
|
+
/**
|
|
10461
|
+
* Actions performed at the start of a click/tap on an element.
|
|
10462
|
+
*
|
|
10463
|
+
* Platforms: web, android, ios
|
|
10464
|
+
*/
|
|
10465
|
+
press_start_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
10269
10466
|
/**
|
|
10270
10467
|
* ID for the div object structure. Used to optimize block reuse. See [block
|
|
10271
10468
|
* reuse](../../reuse/reuse.md).
|
|
@@ -10570,7 +10767,8 @@ declare class DivSwitch<T extends DivSwitchProps = DivSwitchProps> {
|
|
|
10570
10767
|
*/
|
|
10571
10768
|
is_on_variable: Type<string>;
|
|
10572
10769
|
/**
|
|
10573
|
-
* Provides data on the actual size of the element.
|
|
10770
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
10771
|
+
* account the margins of the element itself.
|
|
10574
10772
|
*
|
|
10575
10773
|
* Platforms: android, ios, web
|
|
10576
10774
|
*/
|
|
@@ -10765,7 +10963,8 @@ interface DivSwitchProps {
|
|
|
10765
10963
|
*/
|
|
10766
10964
|
is_on_variable: Type<string>;
|
|
10767
10965
|
/**
|
|
10768
|
-
* Provides data on the actual size of the element.
|
|
10966
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
10967
|
+
* account the margins of the element itself.
|
|
10769
10968
|
*
|
|
10770
10969
|
* Platforms: android, ios, web
|
|
10771
10970
|
*/
|
|
@@ -10980,7 +11179,8 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
|
|
|
10980
11179
|
*/
|
|
10981
11180
|
items: Type<NonEmptyArray<IDivTabsItem>>;
|
|
10982
11181
|
/**
|
|
10983
|
-
* Provides data on the actual size of the element.
|
|
11182
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
11183
|
+
* account the margins of the element itself.
|
|
10984
11184
|
*
|
|
10985
11185
|
* Platforms: android, ios, web
|
|
10986
11186
|
*/
|
|
@@ -11218,7 +11418,8 @@ interface DivTabsProps {
|
|
|
11218
11418
|
*/
|
|
11219
11419
|
items: Type<NonEmptyArray<IDivTabsItem>>;
|
|
11220
11420
|
/**
|
|
11221
|
-
* Provides data on the actual size of the element.
|
|
11421
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
11422
|
+
* account the margins of the element itself.
|
|
11222
11423
|
*
|
|
11223
11424
|
* Platforms: android, ios, web
|
|
11224
11425
|
*/
|
|
@@ -11680,7 +11881,8 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
11680
11881
|
*/
|
|
11681
11882
|
images?: Type<NonEmptyArray<IDivTextImage>>;
|
|
11682
11883
|
/**
|
|
11683
|
-
* Provides data on the actual size of the element.
|
|
11884
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
11885
|
+
* account the margins of the element itself.
|
|
11684
11886
|
*
|
|
11685
11887
|
* Platforms: android, ios, web
|
|
11686
11888
|
*/
|
|
@@ -12070,7 +12272,8 @@ interface DivTextProps {
|
|
|
12070
12272
|
*/
|
|
12071
12273
|
images?: Type<NonEmptyArray<IDivTextImage>>;
|
|
12072
12274
|
/**
|
|
12073
|
-
* Provides data on the actual size of the element.
|
|
12275
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
12276
|
+
* account the margins of the element itself.
|
|
12074
12277
|
*
|
|
12075
12278
|
* Platforms: android, ios, web
|
|
12076
12279
|
*/
|
|
@@ -12330,7 +12533,7 @@ interface IDivTextImage {
|
|
|
12330
12533
|
/**
|
|
12331
12534
|
* Background image must be loaded before the display.
|
|
12332
12535
|
*
|
|
12333
|
-
* Platforms: web
|
|
12536
|
+
* Platforms: ios, web
|
|
12334
12537
|
*/
|
|
12335
12538
|
preload_required?: Type<IntBoolean | DivExpression>;
|
|
12336
12539
|
/**
|
|
@@ -12898,7 +13101,8 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
|
|
|
12898
13101
|
*/
|
|
12899
13102
|
id?: Type<string>;
|
|
12900
13103
|
/**
|
|
12901
|
-
* Provides data on the actual size of the element.
|
|
13104
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
13105
|
+
* account the margins of the element itself.
|
|
12902
13106
|
*
|
|
12903
13107
|
* Platforms: android, ios, web
|
|
12904
13108
|
*/
|
|
@@ -12928,7 +13132,7 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
|
|
|
12928
13132
|
/**
|
|
12929
13133
|
* Enables video preloading.
|
|
12930
13134
|
*
|
|
12931
|
-
* Platforms: android, web
|
|
13135
|
+
* Platforms: android, ios, web
|
|
12932
13136
|
*/
|
|
12933
13137
|
preload_required?: Type<IntBoolean | DivExpression>;
|
|
12934
13138
|
/**
|
|
@@ -13143,7 +13347,8 @@ interface DivVideoProps {
|
|
|
13143
13347
|
*/
|
|
13144
13348
|
id?: Type<string>;
|
|
13145
13349
|
/**
|
|
13146
|
-
* Provides data on the actual size of the element.
|
|
13350
|
+
* Provides data on the actual size of the element. The size is calculated without taking into
|
|
13351
|
+
* account the margins of the element itself.
|
|
13147
13352
|
*
|
|
13148
13353
|
* Platforms: android, ios, web
|
|
13149
13354
|
*/
|
|
@@ -13173,7 +13378,7 @@ interface DivVideoProps {
|
|
|
13173
13378
|
/**
|
|
13174
13379
|
* Enables video preloading.
|
|
13175
13380
|
*
|
|
13176
|
-
* Platforms: android, web
|
|
13381
|
+
* Platforms: android, ios, web
|
|
13177
13382
|
*/
|
|
13178
13383
|
preload_required?: Type<IntBoolean | DivExpression>;
|
|
13179
13384
|
/**
|
|
@@ -13367,7 +13572,7 @@ declare type DivVisibility = 'visible' | 'invisible' | 'gone';
|
|
|
13367
13572
|
*/
|
|
13368
13573
|
interface IDivVisibilityAction {
|
|
13369
13574
|
/**
|
|
13370
|
-
* Callbacks that are called after
|
|
13575
|
+
* Callbacks that are called after data loading.
|
|
13371
13576
|
*/
|
|
13372
13577
|
download_callbacks?: Type<IDivDownloadCallbacks>;
|
|
13373
13578
|
/**
|
|
@@ -13401,8 +13606,7 @@ interface IDivVisibilityAction {
|
|
|
13401
13606
|
scope_id?: Type<string>;
|
|
13402
13607
|
typed?: Type<DivActionTyped>;
|
|
13403
13608
|
/**
|
|
13404
|
-
* URL. Possible values: `url` or `div-action://`.
|
|
13405
|
-
* elements](../../interaction).
|
|
13609
|
+
* URL. Possible values: `url` or `div-action://`.
|
|
13406
13610
|
*/
|
|
13407
13611
|
url?: Type<string | DivExpression>;
|
|
13408
13612
|
/**
|
|
@@ -13825,4 +14029,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
|
|
|
13825
14029
|
};
|
|
13826
14030
|
};
|
|
13827
14031
|
|
|
13828
|
-
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, DivPagerItemAlignment, 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, DivStrokeStyle, DivStrokeStyleDashed, DivStrokeStyleDashedProps, DivStrokeStyleSolid, DivStrokeStyleSolidProps, DivSwitch, DivSwitchProps, DivTabs, DivTabsProps, DivText, DivTextAlignmentVertical, DivTextGradient, DivTextProps, DivTextRangeBackground, DivTextRangeMask, DivTextRangeMaskParticles, DivTextRangeMaskParticlesProps, DivTextRangeMaskSolid, DivTextRangeMaskSolidProps, DivTextTruncate, DivTooltipMode, DivTooltipModeModal, DivTooltipModeModalProps, DivTooltipModeNonModal, DivTooltipModeNonModalProps, 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, IDivLinearGradientColorPoint, IDivPatch, IDivPatchChange, IDivPoint, IDivRadialGradientColorPoint, 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 };
|
|
14032
|
+
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, DivActionUpdateStructure, DivActionUpdateStructureProps, 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, DivPagerItemAlignment, 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, DivStrokeStyle, DivStrokeStyleDashed, DivStrokeStyleDashedProps, DivStrokeStyleSolid, DivStrokeStyleSolidProps, DivSwitch, DivSwitchProps, DivTabs, DivTabsProps, DivText, DivTextAlignmentVertical, DivTextGradient, DivTextProps, DivTextRangeBackground, DivTextRangeMask, DivTextRangeMaskParticles, DivTextRangeMaskParticlesProps, DivTextRangeMaskSolid, DivTextRangeMaskSolidProps, DivTextTruncate, DivTooltipMode, DivTooltipModeModal, DivTooltipModeModalProps, DivTooltipModeNonModal, DivTooltipModeNonModalProps, 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, IDivLinearGradientColorPoint, IDivPatch, IDivPatchChange, IDivPoint, IDivRadialGradientColorPoint, 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 };
|