@divkitframework/jsonbuilder 30.22.0 → 30.24.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 +61 -48
- package/dist/jsonbuilder.js.map +1 -1
- package/package.json +1 -1
package/dist/jsonbuilder.d.ts
CHANGED
|
@@ -920,10 +920,6 @@ interface DivActionSubmitProps {
|
|
|
920
920
|
*/
|
|
921
921
|
request: Type<IDivActionSubmitRequest>;
|
|
922
922
|
}
|
|
923
|
-
interface IDivActionSubmitParameter {
|
|
924
|
-
name: Type<string | DivExpression>;
|
|
925
|
-
value: Type<string | DivExpression>;
|
|
926
|
-
}
|
|
927
923
|
/**
|
|
928
924
|
* The HTTP request parameters that are used to configure how data is sent.
|
|
929
925
|
*/
|
|
@@ -931,21 +927,21 @@ interface IDivActionSubmitRequest {
|
|
|
931
927
|
/**
|
|
932
928
|
* The HTTP request headers.
|
|
933
929
|
*/
|
|
934
|
-
headers?: Type<NonEmptyArray<
|
|
930
|
+
headers?: Type<NonEmptyArray<IRequestHeader>>;
|
|
935
931
|
/**
|
|
936
932
|
* The HTTP request method.
|
|
937
933
|
*/
|
|
938
934
|
method?: Type<RequestMethod | DivExpression>;
|
|
939
|
-
/**
|
|
940
|
-
* Query parameters.
|
|
941
|
-
*/
|
|
942
|
-
query_parameters?: Type<NonEmptyArray<IDivActionSubmitParameter>>;
|
|
943
935
|
/**
|
|
944
936
|
* The url to which data from the container is sent.
|
|
945
937
|
*/
|
|
946
938
|
url: Type<string | DivExpression>;
|
|
947
939
|
}
|
|
948
|
-
declare type RequestMethod = '
|
|
940
|
+
declare type RequestMethod = 'get' | 'post' | 'put' | 'patch' | 'delete' | 'head' | 'options';
|
|
941
|
+
interface IRequestHeader {
|
|
942
|
+
name: Type<string | DivExpression>;
|
|
943
|
+
value: Type<string | DivExpression>;
|
|
944
|
+
}
|
|
949
945
|
|
|
950
946
|
/**
|
|
951
947
|
* Controls the timer.
|
|
@@ -1164,7 +1160,7 @@ interface IDivBase {
|
|
|
1164
1160
|
/**
|
|
1165
1161
|
* Declaration of animators that change variable values over time.
|
|
1166
1162
|
*
|
|
1167
|
-
* Platforms:
|
|
1163
|
+
* Platforms: android, ios
|
|
1168
1164
|
*/
|
|
1169
1165
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
1170
1166
|
/**
|
|
@@ -1686,7 +1682,7 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
|
|
|
1686
1682
|
/**
|
|
1687
1683
|
* Declaration of animators that change variable values over time.
|
|
1688
1684
|
*
|
|
1689
|
-
* Platforms:
|
|
1685
|
+
* Platforms: android, ios
|
|
1690
1686
|
*/
|
|
1691
1687
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
1692
1688
|
/**
|
|
@@ -1961,7 +1957,7 @@ interface DivContainerPropsBase {
|
|
|
1961
1957
|
/**
|
|
1962
1958
|
* Declaration of animators that change variable values over time.
|
|
1963
1959
|
*
|
|
1964
|
-
* Platforms:
|
|
1960
|
+
* Platforms: android, ios
|
|
1965
1961
|
*/
|
|
1966
1962
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
1967
1963
|
/**
|
|
@@ -2325,7 +2321,7 @@ declare class DivCustom<T extends DivCustomProps = DivCustomProps> {
|
|
|
2325
2321
|
/**
|
|
2326
2322
|
* Declaration of animators that change variable values over time.
|
|
2327
2323
|
*
|
|
2328
|
-
* Platforms:
|
|
2324
|
+
* Platforms: android, ios
|
|
2329
2325
|
*/
|
|
2330
2326
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
2331
2327
|
/**
|
|
@@ -2521,7 +2517,7 @@ interface DivCustomProps {
|
|
|
2521
2517
|
/**
|
|
2522
2518
|
* Declaration of animators that change variable values over time.
|
|
2523
2519
|
*
|
|
2524
|
-
* Platforms:
|
|
2520
|
+
* Platforms: android, ios
|
|
2525
2521
|
*/
|
|
2526
2522
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
2527
2523
|
/**
|
|
@@ -3032,8 +3028,6 @@ interface IDivFocus {
|
|
|
3032
3028
|
border?: Type<IDivBorder>;
|
|
3033
3029
|
/**
|
|
3034
3030
|
* IDs of elements that will be next to get focus.
|
|
3035
|
-
*
|
|
3036
|
-
* Platforms: android, ios
|
|
3037
3031
|
*/
|
|
3038
3032
|
next_focus_ids?: Type<IDivFocusNextFocusIds>;
|
|
3039
3033
|
/**
|
|
@@ -3049,10 +3043,25 @@ interface IDivFocus {
|
|
|
3049
3043
|
* IDs of elements that will be next to get focus.
|
|
3050
3044
|
*/
|
|
3051
3045
|
interface IDivFocusNextFocusIds {
|
|
3046
|
+
/**
|
|
3047
|
+
* Platforms: android
|
|
3048
|
+
*/
|
|
3052
3049
|
down?: Type<string | DivExpression>;
|
|
3050
|
+
/**
|
|
3051
|
+
* Platforms: android, ios
|
|
3052
|
+
*/
|
|
3053
3053
|
forward?: Type<string | DivExpression>;
|
|
3054
|
+
/**
|
|
3055
|
+
* Platforms: android
|
|
3056
|
+
*/
|
|
3054
3057
|
left?: Type<string | DivExpression>;
|
|
3058
|
+
/**
|
|
3059
|
+
* Platforms: android
|
|
3060
|
+
*/
|
|
3055
3061
|
right?: Type<string | DivExpression>;
|
|
3062
|
+
/**
|
|
3063
|
+
* Platforms: android
|
|
3064
|
+
*/
|
|
3056
3065
|
up?: Type<string | DivExpression>;
|
|
3057
3066
|
}
|
|
3058
3067
|
|
|
@@ -3122,7 +3131,7 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
|
|
|
3122
3131
|
/**
|
|
3123
3132
|
* Declaration of animators that change variable values over time.
|
|
3124
3133
|
*
|
|
3125
|
-
* Platforms:
|
|
3134
|
+
* Platforms: android, ios
|
|
3126
3135
|
*/
|
|
3127
3136
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
3128
3137
|
/**
|
|
@@ -3383,7 +3392,7 @@ interface DivGalleryProps {
|
|
|
3383
3392
|
/**
|
|
3384
3393
|
* Declaration of animators that change variable values over time.
|
|
3385
3394
|
*
|
|
3386
|
-
* Platforms:
|
|
3395
|
+
* Platforms: android, ios
|
|
3387
3396
|
*/
|
|
3388
3397
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
3389
3398
|
/**
|
|
@@ -3668,7 +3677,7 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
|
|
|
3668
3677
|
/**
|
|
3669
3678
|
* Declaration of animators that change variable values over time.
|
|
3670
3679
|
*
|
|
3671
|
-
* Platforms:
|
|
3680
|
+
* Platforms: android, ios
|
|
3672
3681
|
*/
|
|
3673
3682
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
3674
3683
|
/**
|
|
@@ -3921,7 +3930,7 @@ interface DivGifImageProps {
|
|
|
3921
3930
|
/**
|
|
3922
3931
|
* Declaration of animators that change variable values over time.
|
|
3923
3932
|
*
|
|
3924
|
-
* Platforms:
|
|
3933
|
+
* Platforms: android, ios
|
|
3925
3934
|
*/
|
|
3926
3935
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
3927
3936
|
/**
|
|
@@ -4179,7 +4188,7 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
|
|
|
4179
4188
|
/**
|
|
4180
4189
|
* Declaration of animators that change variable values over time.
|
|
4181
4190
|
*
|
|
4182
|
-
* Platforms:
|
|
4191
|
+
* Platforms: android, ios
|
|
4183
4192
|
*/
|
|
4184
4193
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
4185
4194
|
/**
|
|
@@ -4407,7 +4416,7 @@ interface DivGridProps {
|
|
|
4407
4416
|
/**
|
|
4408
4417
|
* Declaration of animators that change variable values over time.
|
|
4409
4418
|
*
|
|
4410
|
-
* Platforms:
|
|
4419
|
+
* Platforms: android, ios
|
|
4411
4420
|
*/
|
|
4412
4421
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
4413
4422
|
/**
|
|
@@ -4640,7 +4649,7 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
|
|
|
4640
4649
|
/**
|
|
4641
4650
|
* Declaration of animators that change variable values over time.
|
|
4642
4651
|
*
|
|
4643
|
-
* Platforms:
|
|
4652
|
+
* Platforms: android, ios
|
|
4644
4653
|
*/
|
|
4645
4654
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
4646
4655
|
/**
|
|
@@ -4919,7 +4928,7 @@ interface DivImageProps {
|
|
|
4919
4928
|
/**
|
|
4920
4929
|
* Declaration of animators that change variable values over time.
|
|
4921
4930
|
*
|
|
4922
|
-
* Platforms:
|
|
4931
|
+
* Platforms: android, ios
|
|
4923
4932
|
*/
|
|
4924
4933
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
4925
4934
|
/**
|
|
@@ -5283,7 +5292,7 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
|
|
|
5283
5292
|
/**
|
|
5284
5293
|
* Declaration of animators that change variable values over time.
|
|
5285
5294
|
*
|
|
5286
|
-
* Platforms:
|
|
5295
|
+
* Platforms: android, ios
|
|
5287
5296
|
*/
|
|
5288
5297
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
5289
5298
|
/**
|
|
@@ -5535,7 +5544,7 @@ interface DivIndicatorProps {
|
|
|
5535
5544
|
/**
|
|
5536
5545
|
* Declaration of animators that change variable values over time.
|
|
5537
5546
|
*
|
|
5538
|
-
* Platforms:
|
|
5547
|
+
* Platforms: android, ios
|
|
5539
5548
|
*/
|
|
5540
5549
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
5541
5550
|
/**
|
|
@@ -5784,7 +5793,7 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
|
|
|
5784
5793
|
/**
|
|
5785
5794
|
* Declaration of animators that change variable values over time.
|
|
5786
5795
|
*
|
|
5787
|
-
* Platforms:
|
|
5796
|
+
* Platforms: android, ios
|
|
5788
5797
|
*/
|
|
5789
5798
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
5790
5799
|
/**
|
|
@@ -6090,7 +6099,7 @@ interface DivInputProps {
|
|
|
6090
6099
|
/**
|
|
6091
6100
|
* Declaration of animators that change variable values over time.
|
|
6092
6101
|
*
|
|
6093
|
-
* Platforms:
|
|
6102
|
+
* Platforms: android, ios
|
|
6094
6103
|
*/
|
|
6095
6104
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
6096
6105
|
/**
|
|
@@ -6961,7 +6970,7 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
6961
6970
|
/**
|
|
6962
6971
|
* Declaration of animators that change variable values over time.
|
|
6963
6972
|
*
|
|
6964
|
-
* Platforms:
|
|
6973
|
+
* Platforms: android, ios
|
|
6965
6974
|
*/
|
|
6966
6975
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
6967
6976
|
/**
|
|
@@ -6980,6 +6989,8 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
6980
6989
|
column_span?: Type<number | DivExpression>;
|
|
6981
6990
|
/**
|
|
6982
6991
|
* Ordinal number of the pager element that will be opened by default.
|
|
6992
|
+
*
|
|
6993
|
+
* Platforms: android, ios
|
|
6983
6994
|
*/
|
|
6984
6995
|
default_item?: Type<number | DivExpression>;
|
|
6985
6996
|
/**
|
|
@@ -7200,7 +7211,7 @@ interface DivPagerProps {
|
|
|
7200
7211
|
/**
|
|
7201
7212
|
* Declaration of animators that change variable values over time.
|
|
7202
7213
|
*
|
|
7203
|
-
* Platforms:
|
|
7214
|
+
* Platforms: android, ios
|
|
7204
7215
|
*/
|
|
7205
7216
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
7206
7217
|
/**
|
|
@@ -7219,6 +7230,8 @@ interface DivPagerProps {
|
|
|
7219
7230
|
column_span?: Type<number | DivExpression>;
|
|
7220
7231
|
/**
|
|
7221
7232
|
* Ordinal number of the pager element that will be opened by default.
|
|
7233
|
+
*
|
|
7234
|
+
* Platforms: android, ios
|
|
7222
7235
|
*/
|
|
7223
7236
|
default_item?: Type<number | DivExpression>;
|
|
7224
7237
|
/**
|
|
@@ -7817,7 +7830,7 @@ declare class DivSelect<T extends DivSelectProps = DivSelectProps> {
|
|
|
7817
7830
|
/**
|
|
7818
7831
|
* Declaration of animators that change variable values over time.
|
|
7819
7832
|
*
|
|
7820
|
-
* Platforms:
|
|
7833
|
+
* Platforms: android, ios
|
|
7821
7834
|
*/
|
|
7822
7835
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
7823
7836
|
/**
|
|
@@ -8053,7 +8066,7 @@ interface DivSelectProps {
|
|
|
8053
8066
|
/**
|
|
8054
8067
|
* Declaration of animators that change variable values over time.
|
|
8055
8068
|
*
|
|
8056
|
-
* Platforms:
|
|
8069
|
+
* Platforms: android, ios
|
|
8057
8070
|
*/
|
|
8058
8071
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
8059
8072
|
/**
|
|
@@ -8322,7 +8335,7 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
|
|
|
8322
8335
|
/**
|
|
8323
8336
|
* Declaration of animators that change variable values over time.
|
|
8324
8337
|
*
|
|
8325
|
-
* Platforms:
|
|
8338
|
+
* Platforms: android, ios
|
|
8326
8339
|
*/
|
|
8327
8340
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
8328
8341
|
/**
|
|
@@ -8538,7 +8551,7 @@ interface DivSeparatorProps {
|
|
|
8538
8551
|
/**
|
|
8539
8552
|
* Declaration of animators that change variable values over time.
|
|
8540
8553
|
*
|
|
8541
|
-
* Platforms:
|
|
8554
|
+
* Platforms: android, ios
|
|
8542
8555
|
*/
|
|
8543
8556
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
8544
8557
|
/**
|
|
@@ -8932,7 +8945,7 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
|
|
|
8932
8945
|
/**
|
|
8933
8946
|
* Declaration of animators that change variable values over time.
|
|
8934
8947
|
*
|
|
8935
|
-
* Platforms:
|
|
8948
|
+
* Platforms: android, ios
|
|
8936
8949
|
*/
|
|
8937
8950
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
8938
8951
|
/**
|
|
@@ -9176,7 +9189,7 @@ interface DivSliderProps {
|
|
|
9176
9189
|
/**
|
|
9177
9190
|
* Declaration of animators that change variable values over time.
|
|
9178
9191
|
*
|
|
9179
|
-
* Platforms:
|
|
9192
|
+
* Platforms: android, ios
|
|
9180
9193
|
*/
|
|
9181
9194
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
9182
9195
|
/**
|
|
@@ -9494,7 +9507,7 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
|
|
|
9494
9507
|
/**
|
|
9495
9508
|
* Declaration of animators that change variable values over time.
|
|
9496
9509
|
*
|
|
9497
|
-
* Platforms:
|
|
9510
|
+
* Platforms: android, ios
|
|
9498
9511
|
*/
|
|
9499
9512
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
9500
9513
|
/**
|
|
@@ -9706,7 +9719,7 @@ interface DivStateProps {
|
|
|
9706
9719
|
/**
|
|
9707
9720
|
* Declaration of animators that change variable values over time.
|
|
9708
9721
|
*
|
|
9709
|
-
* Platforms:
|
|
9722
|
+
* Platforms: android, ios
|
|
9710
9723
|
*/
|
|
9711
9724
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
9712
9725
|
/**
|
|
@@ -10000,7 +10013,7 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
|
|
|
10000
10013
|
/**
|
|
10001
10014
|
* Declaration of animators that change variable values over time.
|
|
10002
10015
|
*
|
|
10003
|
-
* Platforms:
|
|
10016
|
+
* Platforms: android, ios
|
|
10004
10017
|
*/
|
|
10005
10018
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
10006
10019
|
/**
|
|
@@ -10132,7 +10145,7 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
|
|
|
10132
10145
|
/**
|
|
10133
10146
|
* Design style of separators between tab titles.
|
|
10134
10147
|
*
|
|
10135
|
-
* Platforms: android
|
|
10148
|
+
* Platforms: android, web
|
|
10136
10149
|
*/
|
|
10137
10150
|
tab_title_delimiter?: Type<IDivTabsTabTitleDelimiter>;
|
|
10138
10151
|
/**
|
|
@@ -10242,7 +10255,7 @@ interface DivTabsProps {
|
|
|
10242
10255
|
/**
|
|
10243
10256
|
* Declaration of animators that change variable values over time.
|
|
10244
10257
|
*
|
|
10245
|
-
* Platforms:
|
|
10258
|
+
* Platforms: android, ios
|
|
10246
10259
|
*/
|
|
10247
10260
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
10248
10261
|
/**
|
|
@@ -10374,7 +10387,7 @@ interface DivTabsProps {
|
|
|
10374
10387
|
/**
|
|
10375
10388
|
* Design style of separators between tab titles.
|
|
10376
10389
|
*
|
|
10377
|
-
* Platforms: android
|
|
10390
|
+
* Platforms: android, web
|
|
10378
10391
|
*/
|
|
10379
10392
|
tab_title_delimiter?: Type<IDivTabsTabTitleDelimiter>;
|
|
10380
10393
|
/**
|
|
@@ -10626,7 +10639,7 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
10626
10639
|
/**
|
|
10627
10640
|
* Declaration of animators that change variable values over time.
|
|
10628
10641
|
*
|
|
10629
|
-
* Platforms:
|
|
10642
|
+
* Platforms: android, ios
|
|
10630
10643
|
*/
|
|
10631
10644
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
10632
10645
|
/**
|
|
@@ -10978,7 +10991,7 @@ interface DivTextProps {
|
|
|
10978
10991
|
/**
|
|
10979
10992
|
* Declaration of animators that change variable values over time.
|
|
10980
10993
|
*
|
|
10981
|
-
* Platforms:
|
|
10994
|
+
* Platforms: android, ios
|
|
10982
10995
|
*/
|
|
10983
10996
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
10984
10997
|
/**
|
|
@@ -11665,7 +11678,7 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
|
|
|
11665
11678
|
/**
|
|
11666
11679
|
* Declaration of animators that change variable values over time.
|
|
11667
11680
|
*
|
|
11668
|
-
* Platforms:
|
|
11681
|
+
* Platforms: android, ios
|
|
11669
11682
|
*/
|
|
11670
11683
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
11671
11684
|
/**
|
|
@@ -11914,7 +11927,7 @@ interface DivVideoProps {
|
|
|
11914
11927
|
/**
|
|
11915
11928
|
* Declaration of animators that change variable values over time.
|
|
11916
11929
|
*
|
|
11917
|
-
* Platforms:
|
|
11930
|
+
* Platforms: android, ios
|
|
11918
11931
|
*/
|
|
11919
11932
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
11920
11933
|
/**
|
|
@@ -12680,4 +12693,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
|
|
|
12680
12693
|
};
|
|
12681
12694
|
};
|
|
12682
12695
|
|
|
12683
|
-
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, DivInputFilter, DivInputFilterExpression, DivInputFilterExpressionProps, DivInputFilterRegex, DivInputFilterRegexProps, DivInputKeyboardType, DivInputMask, DivInputProps, DivInputValidator, DivInputValidatorExpression, DivInputValidatorExpressionProps, DivInputValidatorRegex, DivInputValidatorRegexProps, DivLineStyle, DivLinearGradient, DivLinearGradientProps, DivMatchParentSize, DivMatchParentSizeProps, DivNeighbourPageSize, DivNeighbourPageSizeProps, DivNinePatchBackground, DivNinePatchBackgroundProps, DivNumberAnimator, DivNumberAnimatorProps, DivPageSize, DivPageSizeProps, DivPageTransformation, DivPageTransformationOverlap, DivPageTransformationOverlapProps, DivPageTransformationSlide, DivPageTransformationSlideProps, DivPager, DivPagerLayoutMode, DivPagerOrientation, DivPagerProps, DivPatchMode, DivPercentageSize, DivPercentageSizeProps, DivPhoneInputMask, DivPhoneInputMaskProps, DivPivot, DivPivotFixed, DivPivotFixedProps, DivPivotPercentage, DivPivotPercentageProps, DivRadialGradient, DivRadialGradientCenter, DivRadialGradientFixedCenter, DivRadialGradientFixedCenterProps, DivRadialGradientProps, DivRadialGradientRadius, DivRadialGradientRelativeCenter, DivRadialGradientRelativeCenterProps, DivRadialGradientRelativeRadius, DivRadialGradientRelativeRadiusProps, DivRadialGradientRelativeRadiusValue, DivRoundedRectangleShape, DivRoundedRectangleShapeProps, DivScaleTransition, DivScaleTransitionProps, DivSelect, DivSelectProps, DivSeparator, DivSeparatorProps, DivShape, DivShapeDrawable, DivShapeDrawableProps, DivSize, DivSizeUnit, DivSlideTransition, DivSlideTransitionEdge, DivSlideTransitionProps, DivSlider, DivSliderProps, DivSolidBackground, DivSolidBackgroundProps, DivState, DivStateProps, DivStretchIndicatorItemPlacement, DivStretchIndicatorItemPlacementProps, DivTabs, DivTabsProps, DivText, 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,
|
|
12696
|
+
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, DivInputFilter, DivInputFilterExpression, DivInputFilterExpressionProps, DivInputFilterRegex, DivInputFilterRegexProps, DivInputKeyboardType, DivInputMask, DivInputProps, DivInputValidator, DivInputValidatorExpression, DivInputValidatorExpressionProps, DivInputValidatorRegex, DivInputValidatorRegexProps, DivLineStyle, DivLinearGradient, DivLinearGradientProps, DivMatchParentSize, DivMatchParentSizeProps, DivNeighbourPageSize, DivNeighbourPageSizeProps, DivNinePatchBackground, DivNinePatchBackgroundProps, DivNumberAnimator, DivNumberAnimatorProps, DivPageSize, DivPageSizeProps, DivPageTransformation, DivPageTransformationOverlap, DivPageTransformationOverlapProps, DivPageTransformationSlide, DivPageTransformationSlideProps, DivPager, DivPagerLayoutMode, DivPagerOrientation, DivPagerProps, DivPatchMode, DivPercentageSize, DivPercentageSizeProps, DivPhoneInputMask, DivPhoneInputMaskProps, DivPivot, DivPivotFixed, DivPivotFixedProps, DivPivotPercentage, DivPivotPercentageProps, DivRadialGradient, DivRadialGradientCenter, DivRadialGradientFixedCenter, DivRadialGradientFixedCenterProps, DivRadialGradientProps, DivRadialGradientRadius, DivRadialGradientRelativeCenter, DivRadialGradientRelativeCenterProps, DivRadialGradientRelativeRadius, DivRadialGradientRelativeRadiusProps, DivRadialGradientRelativeRadiusValue, DivRoundedRectangleShape, DivRoundedRectangleShapeProps, DivScaleTransition, DivScaleTransitionProps, DivSelect, DivSelectProps, DivSeparator, DivSeparatorProps, DivShape, DivShapeDrawable, DivShapeDrawableProps, DivSize, DivSizeUnit, DivSlideTransition, DivSlideTransitionEdge, DivSlideTransitionProps, DivSlider, DivSliderProps, DivSolidBackground, DivSolidBackgroundProps, DivState, DivStateProps, DivStretchIndicatorItemPlacement, DivStretchIndicatorItemPlacementProps, DivTabs, DivTabsProps, DivText, 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, 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 };
|