@divkitframework/jsonbuilder 30.22.0 → 30.23.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/jsonbuilder.d.ts +40 -44
- 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
|
/**
|
|
@@ -3122,7 +3118,7 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
|
|
|
3122
3118
|
/**
|
|
3123
3119
|
* Declaration of animators that change variable values over time.
|
|
3124
3120
|
*
|
|
3125
|
-
* Platforms:
|
|
3121
|
+
* Platforms: android, ios
|
|
3126
3122
|
*/
|
|
3127
3123
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
3128
3124
|
/**
|
|
@@ -3383,7 +3379,7 @@ interface DivGalleryProps {
|
|
|
3383
3379
|
/**
|
|
3384
3380
|
* Declaration of animators that change variable values over time.
|
|
3385
3381
|
*
|
|
3386
|
-
* Platforms:
|
|
3382
|
+
* Platforms: android, ios
|
|
3387
3383
|
*/
|
|
3388
3384
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
3389
3385
|
/**
|
|
@@ -3668,7 +3664,7 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
|
|
|
3668
3664
|
/**
|
|
3669
3665
|
* Declaration of animators that change variable values over time.
|
|
3670
3666
|
*
|
|
3671
|
-
* Platforms:
|
|
3667
|
+
* Platforms: android, ios
|
|
3672
3668
|
*/
|
|
3673
3669
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
3674
3670
|
/**
|
|
@@ -3921,7 +3917,7 @@ interface DivGifImageProps {
|
|
|
3921
3917
|
/**
|
|
3922
3918
|
* Declaration of animators that change variable values over time.
|
|
3923
3919
|
*
|
|
3924
|
-
* Platforms:
|
|
3920
|
+
* Platforms: android, ios
|
|
3925
3921
|
*/
|
|
3926
3922
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
3927
3923
|
/**
|
|
@@ -4179,7 +4175,7 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
|
|
|
4179
4175
|
/**
|
|
4180
4176
|
* Declaration of animators that change variable values over time.
|
|
4181
4177
|
*
|
|
4182
|
-
* Platforms:
|
|
4178
|
+
* Platforms: android, ios
|
|
4183
4179
|
*/
|
|
4184
4180
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
4185
4181
|
/**
|
|
@@ -4407,7 +4403,7 @@ interface DivGridProps {
|
|
|
4407
4403
|
/**
|
|
4408
4404
|
* Declaration of animators that change variable values over time.
|
|
4409
4405
|
*
|
|
4410
|
-
* Platforms:
|
|
4406
|
+
* Platforms: android, ios
|
|
4411
4407
|
*/
|
|
4412
4408
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
4413
4409
|
/**
|
|
@@ -4640,7 +4636,7 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
|
|
|
4640
4636
|
/**
|
|
4641
4637
|
* Declaration of animators that change variable values over time.
|
|
4642
4638
|
*
|
|
4643
|
-
* Platforms:
|
|
4639
|
+
* Platforms: android, ios
|
|
4644
4640
|
*/
|
|
4645
4641
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
4646
4642
|
/**
|
|
@@ -4919,7 +4915,7 @@ interface DivImageProps {
|
|
|
4919
4915
|
/**
|
|
4920
4916
|
* Declaration of animators that change variable values over time.
|
|
4921
4917
|
*
|
|
4922
|
-
* Platforms:
|
|
4918
|
+
* Platforms: android, ios
|
|
4923
4919
|
*/
|
|
4924
4920
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
4925
4921
|
/**
|
|
@@ -5283,7 +5279,7 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
|
|
|
5283
5279
|
/**
|
|
5284
5280
|
* Declaration of animators that change variable values over time.
|
|
5285
5281
|
*
|
|
5286
|
-
* Platforms:
|
|
5282
|
+
* Platforms: android, ios
|
|
5287
5283
|
*/
|
|
5288
5284
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
5289
5285
|
/**
|
|
@@ -5535,7 +5531,7 @@ interface DivIndicatorProps {
|
|
|
5535
5531
|
/**
|
|
5536
5532
|
* Declaration of animators that change variable values over time.
|
|
5537
5533
|
*
|
|
5538
|
-
* Platforms:
|
|
5534
|
+
* Platforms: android, ios
|
|
5539
5535
|
*/
|
|
5540
5536
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
5541
5537
|
/**
|
|
@@ -5784,7 +5780,7 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
|
|
|
5784
5780
|
/**
|
|
5785
5781
|
* Declaration of animators that change variable values over time.
|
|
5786
5782
|
*
|
|
5787
|
-
* Platforms:
|
|
5783
|
+
* Platforms: android, ios
|
|
5788
5784
|
*/
|
|
5789
5785
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
5790
5786
|
/**
|
|
@@ -6090,7 +6086,7 @@ interface DivInputProps {
|
|
|
6090
6086
|
/**
|
|
6091
6087
|
* Declaration of animators that change variable values over time.
|
|
6092
6088
|
*
|
|
6093
|
-
* Platforms:
|
|
6089
|
+
* Platforms: android, ios
|
|
6094
6090
|
*/
|
|
6095
6091
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
6096
6092
|
/**
|
|
@@ -6961,7 +6957,7 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
6961
6957
|
/**
|
|
6962
6958
|
* Declaration of animators that change variable values over time.
|
|
6963
6959
|
*
|
|
6964
|
-
* Platforms:
|
|
6960
|
+
* Platforms: android, ios
|
|
6965
6961
|
*/
|
|
6966
6962
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
6967
6963
|
/**
|
|
@@ -7200,7 +7196,7 @@ interface DivPagerProps {
|
|
|
7200
7196
|
/**
|
|
7201
7197
|
* Declaration of animators that change variable values over time.
|
|
7202
7198
|
*
|
|
7203
|
-
* Platforms:
|
|
7199
|
+
* Platforms: android, ios
|
|
7204
7200
|
*/
|
|
7205
7201
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
7206
7202
|
/**
|
|
@@ -7817,7 +7813,7 @@ declare class DivSelect<T extends DivSelectProps = DivSelectProps> {
|
|
|
7817
7813
|
/**
|
|
7818
7814
|
* Declaration of animators that change variable values over time.
|
|
7819
7815
|
*
|
|
7820
|
-
* Platforms:
|
|
7816
|
+
* Platforms: android, ios
|
|
7821
7817
|
*/
|
|
7822
7818
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
7823
7819
|
/**
|
|
@@ -8053,7 +8049,7 @@ interface DivSelectProps {
|
|
|
8053
8049
|
/**
|
|
8054
8050
|
* Declaration of animators that change variable values over time.
|
|
8055
8051
|
*
|
|
8056
|
-
* Platforms:
|
|
8052
|
+
* Platforms: android, ios
|
|
8057
8053
|
*/
|
|
8058
8054
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
8059
8055
|
/**
|
|
@@ -8322,7 +8318,7 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
|
|
|
8322
8318
|
/**
|
|
8323
8319
|
* Declaration of animators that change variable values over time.
|
|
8324
8320
|
*
|
|
8325
|
-
* Platforms:
|
|
8321
|
+
* Platforms: android, ios
|
|
8326
8322
|
*/
|
|
8327
8323
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
8328
8324
|
/**
|
|
@@ -8538,7 +8534,7 @@ interface DivSeparatorProps {
|
|
|
8538
8534
|
/**
|
|
8539
8535
|
* Declaration of animators that change variable values over time.
|
|
8540
8536
|
*
|
|
8541
|
-
* Platforms:
|
|
8537
|
+
* Platforms: android, ios
|
|
8542
8538
|
*/
|
|
8543
8539
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
8544
8540
|
/**
|
|
@@ -8932,7 +8928,7 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
|
|
|
8932
8928
|
/**
|
|
8933
8929
|
* Declaration of animators that change variable values over time.
|
|
8934
8930
|
*
|
|
8935
|
-
* Platforms:
|
|
8931
|
+
* Platforms: android, ios
|
|
8936
8932
|
*/
|
|
8937
8933
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
8938
8934
|
/**
|
|
@@ -9176,7 +9172,7 @@ interface DivSliderProps {
|
|
|
9176
9172
|
/**
|
|
9177
9173
|
* Declaration of animators that change variable values over time.
|
|
9178
9174
|
*
|
|
9179
|
-
* Platforms:
|
|
9175
|
+
* Platforms: android, ios
|
|
9180
9176
|
*/
|
|
9181
9177
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
9182
9178
|
/**
|
|
@@ -9494,7 +9490,7 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
|
|
|
9494
9490
|
/**
|
|
9495
9491
|
* Declaration of animators that change variable values over time.
|
|
9496
9492
|
*
|
|
9497
|
-
* Platforms:
|
|
9493
|
+
* Platforms: android, ios
|
|
9498
9494
|
*/
|
|
9499
9495
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
9500
9496
|
/**
|
|
@@ -9706,7 +9702,7 @@ interface DivStateProps {
|
|
|
9706
9702
|
/**
|
|
9707
9703
|
* Declaration of animators that change variable values over time.
|
|
9708
9704
|
*
|
|
9709
|
-
* Platforms:
|
|
9705
|
+
* Platforms: android, ios
|
|
9710
9706
|
*/
|
|
9711
9707
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
9712
9708
|
/**
|
|
@@ -10000,7 +9996,7 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
|
|
|
10000
9996
|
/**
|
|
10001
9997
|
* Declaration of animators that change variable values over time.
|
|
10002
9998
|
*
|
|
10003
|
-
* Platforms:
|
|
9999
|
+
* Platforms: android, ios
|
|
10004
10000
|
*/
|
|
10005
10001
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
10006
10002
|
/**
|
|
@@ -10242,7 +10238,7 @@ interface DivTabsProps {
|
|
|
10242
10238
|
/**
|
|
10243
10239
|
* Declaration of animators that change variable values over time.
|
|
10244
10240
|
*
|
|
10245
|
-
* Platforms:
|
|
10241
|
+
* Platforms: android, ios
|
|
10246
10242
|
*/
|
|
10247
10243
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
10248
10244
|
/**
|
|
@@ -10626,7 +10622,7 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
10626
10622
|
/**
|
|
10627
10623
|
* Declaration of animators that change variable values over time.
|
|
10628
10624
|
*
|
|
10629
|
-
* Platforms:
|
|
10625
|
+
* Platforms: android, ios
|
|
10630
10626
|
*/
|
|
10631
10627
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
10632
10628
|
/**
|
|
@@ -10978,7 +10974,7 @@ interface DivTextProps {
|
|
|
10978
10974
|
/**
|
|
10979
10975
|
* Declaration of animators that change variable values over time.
|
|
10980
10976
|
*
|
|
10981
|
-
* Platforms:
|
|
10977
|
+
* Platforms: android, ios
|
|
10982
10978
|
*/
|
|
10983
10979
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
10984
10980
|
/**
|
|
@@ -11665,7 +11661,7 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
|
|
|
11665
11661
|
/**
|
|
11666
11662
|
* Declaration of animators that change variable values over time.
|
|
11667
11663
|
*
|
|
11668
|
-
* Platforms:
|
|
11664
|
+
* Platforms: android, ios
|
|
11669
11665
|
*/
|
|
11670
11666
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
11671
11667
|
/**
|
|
@@ -11914,7 +11910,7 @@ interface DivVideoProps {
|
|
|
11914
11910
|
/**
|
|
11915
11911
|
* Declaration of animators that change variable values over time.
|
|
11916
11912
|
*
|
|
11917
|
-
* Platforms:
|
|
11913
|
+
* Platforms: android, ios
|
|
11918
11914
|
*/
|
|
11919
11915
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
11920
11916
|
/**
|
|
@@ -12680,4 +12676,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
|
|
|
12680
12676
|
};
|
|
12681
12677
|
};
|
|
12682
12678
|
|
|
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,
|
|
12679
|
+
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 };
|