@divkitframework/jsonbuilder 30.27.0 → 30.28.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 +5 -4
- package/dist/es/jsonbuilder.js.map +1 -1
- package/dist/jsonbuilder.d.ts +94 -70
- package/dist/jsonbuilder.js +5 -4
- package/dist/jsonbuilder.js.map +1 -1
- package/package.json +1 -1
package/dist/jsonbuilder.d.ts
CHANGED
|
@@ -661,7 +661,7 @@ interface DivActionHideTooltipProps {
|
|
|
661
661
|
}
|
|
662
662
|
|
|
663
663
|
/**
|
|
664
|
-
* Scrolls the container by
|
|
664
|
+
* Scrolls the container by `item_count` or `offset` starting from the current position. If both
|
|
665
665
|
* values are specified, the action will be combined. For scrolling back, use negative values.
|
|
666
666
|
*/
|
|
667
667
|
declare class DivActionScrollBy<T extends DivActionScrollByProps = DivActionScrollByProps> {
|
|
@@ -680,13 +680,13 @@ declare class DivActionScrollBy<T extends DivActionScrollByProps = DivActionScro
|
|
|
680
680
|
*/
|
|
681
681
|
item_count?: Type<number | DivExpression>;
|
|
682
682
|
/**
|
|
683
|
-
* Scrolling distance measured in
|
|
684
|
-
* negative values. Only applies in
|
|
683
|
+
* Scrolling distance measured in `dp` from the current position. For scrolling back, use
|
|
684
|
+
* negative values. Only applies in `gallery`.
|
|
685
685
|
*/
|
|
686
686
|
offset?: Type<number | DivExpression>;
|
|
687
687
|
/**
|
|
688
|
-
* Defines navigation behavior at boundary elements
|
|
689
|
-
* element (default)
|
|
688
|
+
* Defines navigation behavior at boundary elements:`clamp`: Stop navigation at the boundary
|
|
689
|
+
* element (default)`ring`: Navigate to the start or end, depending on the current element.
|
|
690
690
|
*/
|
|
691
691
|
overflow?: Type<DivActionScrollByOverflow | DivExpression>;
|
|
692
692
|
constructor(props: Exact<DivActionScrollByProps, T>);
|
|
@@ -705,13 +705,13 @@ interface DivActionScrollByProps {
|
|
|
705
705
|
*/
|
|
706
706
|
item_count?: Type<number | DivExpression>;
|
|
707
707
|
/**
|
|
708
|
-
* Scrolling distance measured in
|
|
709
|
-
* negative values. Only applies in
|
|
708
|
+
* Scrolling distance measured in `dp` from the current position. For scrolling back, use
|
|
709
|
+
* negative values. Only applies in `gallery`.
|
|
710
710
|
*/
|
|
711
711
|
offset?: Type<number | DivExpression>;
|
|
712
712
|
/**
|
|
713
|
-
* Defines navigation behavior at boundary elements
|
|
714
|
-
* element (default)
|
|
713
|
+
* Defines navigation behavior at boundary elements:`clamp`: Stop navigation at the boundary
|
|
714
|
+
* element (default)`ring`: Navigate to the start or end, depending on the current element.
|
|
715
715
|
*/
|
|
716
716
|
overflow?: Type<DivActionScrollByOverflow | DivExpression>;
|
|
717
717
|
}
|
|
@@ -720,7 +720,7 @@ declare type DivActionScrollByOverflow = 'clamp' | 'ring';
|
|
|
720
720
|
declare type DivActionScrollDestination = OffsetDestination | IndexDestination | StartDestination | EndDestination;
|
|
721
721
|
|
|
722
722
|
/**
|
|
723
|
-
* Scrolls to a position or switches to the container element specified by the
|
|
723
|
+
* Scrolls to a position or switches to the container element specified by the `destination`
|
|
724
724
|
* parameter.
|
|
725
725
|
*/
|
|
726
726
|
declare class DivActionScrollTo<T extends DivActionScrollToProps = DivActionScrollToProps> {
|
|
@@ -731,10 +731,10 @@ declare class DivActionScrollTo<T extends DivActionScrollToProps = DivActionScro
|
|
|
731
731
|
*/
|
|
732
732
|
animated?: Type<boolean | DivExpression>;
|
|
733
733
|
/**
|
|
734
|
-
* Defines the scrolling end position
|
|
735
|
-
*
|
|
736
|
-
* start of the container. Applies only in
|
|
737
|
-
* start
|
|
734
|
+
* Defines the scrolling end position:`index`: Scroll to the element with the index provided in
|
|
735
|
+
* `value``offset`: Scroll to the position specified in `value` and measured in `dp` from the
|
|
736
|
+
* start of the container. Applies only in `gallery`;`start`: Scroll to the container
|
|
737
|
+
* start;`end`: Scroll to the container end.
|
|
738
738
|
*/
|
|
739
739
|
destination: Type<DivActionScrollDestination>;
|
|
740
740
|
/**
|
|
@@ -749,10 +749,10 @@ interface DivActionScrollToProps {
|
|
|
749
749
|
*/
|
|
750
750
|
animated?: Type<boolean | DivExpression>;
|
|
751
751
|
/**
|
|
752
|
-
* Defines the scrolling end position
|
|
753
|
-
*
|
|
754
|
-
* start of the container. Applies only in
|
|
755
|
-
* start
|
|
752
|
+
* Defines the scrolling end position:`index`: Scroll to the element with the index provided in
|
|
753
|
+
* `value``offset`: Scroll to the position specified in `value` and measured in `dp` from the
|
|
754
|
+
* start of the container. Applies only in `gallery`;`start`: Scroll to the container
|
|
755
|
+
* start;`end`: Scroll to the container end.
|
|
756
756
|
*/
|
|
757
757
|
destination: Type<DivActionScrollDestination>;
|
|
758
758
|
/**
|
|
@@ -1158,7 +1158,7 @@ interface IDivBase {
|
|
|
1158
1158
|
/**
|
|
1159
1159
|
* Declaration of animators that change variable values over time.
|
|
1160
1160
|
*
|
|
1161
|
-
* Platforms: android, ios
|
|
1161
|
+
* Platforms: android, ios, web
|
|
1162
1162
|
*/
|
|
1163
1163
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
1164
1164
|
/**
|
|
@@ -1680,7 +1680,7 @@ declare class DivContainer<T extends DivContainerProps = DivContainerProps> {
|
|
|
1680
1680
|
/**
|
|
1681
1681
|
* Declaration of animators that change variable values over time.
|
|
1682
1682
|
*
|
|
1683
|
-
* Platforms: android, ios
|
|
1683
|
+
* Platforms: android, ios, web
|
|
1684
1684
|
*/
|
|
1685
1685
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
1686
1686
|
/**
|
|
@@ -1981,7 +1981,7 @@ interface DivContainerPropsBase {
|
|
|
1981
1981
|
/**
|
|
1982
1982
|
* Declaration of animators that change variable values over time.
|
|
1983
1983
|
*
|
|
1984
|
-
* Platforms: android, ios
|
|
1984
|
+
* Platforms: android, ios, web
|
|
1985
1985
|
*/
|
|
1986
1986
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
1987
1987
|
/**
|
|
@@ -2371,7 +2371,7 @@ declare class DivCustom<T extends DivCustomProps = DivCustomProps> {
|
|
|
2371
2371
|
/**
|
|
2372
2372
|
* Declaration of animators that change variable values over time.
|
|
2373
2373
|
*
|
|
2374
|
-
* Platforms: android, ios
|
|
2374
|
+
* Platforms: android, ios, web
|
|
2375
2375
|
*/
|
|
2376
2376
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
2377
2377
|
/**
|
|
@@ -2567,7 +2567,7 @@ interface DivCustomProps {
|
|
|
2567
2567
|
/**
|
|
2568
2568
|
* Declaration of animators that change variable values over time.
|
|
2569
2569
|
*
|
|
2570
|
-
* Platforms: android, ios
|
|
2570
|
+
* Platforms: android, ios, web
|
|
2571
2571
|
*/
|
|
2572
2572
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
2573
2573
|
/**
|
|
@@ -3181,7 +3181,7 @@ declare class DivGallery<T extends DivGalleryProps = DivGalleryProps> {
|
|
|
3181
3181
|
/**
|
|
3182
3182
|
* Declaration of animators that change variable values over time.
|
|
3183
3183
|
*
|
|
3184
|
-
* Platforms: android, ios
|
|
3184
|
+
* Platforms: android, ios, web
|
|
3185
3185
|
*/
|
|
3186
3186
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
3187
3187
|
/**
|
|
@@ -3442,7 +3442,7 @@ interface DivGalleryProps {
|
|
|
3442
3442
|
/**
|
|
3443
3443
|
* Declaration of animators that change variable values over time.
|
|
3444
3444
|
*
|
|
3445
|
-
* Platforms: android, ios
|
|
3445
|
+
* Platforms: android, ios, web
|
|
3446
3446
|
*/
|
|
3447
3447
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
3448
3448
|
/**
|
|
@@ -3727,7 +3727,7 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
|
|
|
3727
3727
|
/**
|
|
3728
3728
|
* Declaration of animators that change variable values over time.
|
|
3729
3729
|
*
|
|
3730
|
-
* Platforms: android, ios
|
|
3730
|
+
* Platforms: android, ios, web
|
|
3731
3731
|
*/
|
|
3732
3732
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
3733
3733
|
/**
|
|
@@ -4006,7 +4006,7 @@ interface DivGifImageProps {
|
|
|
4006
4006
|
/**
|
|
4007
4007
|
* Declaration of animators that change variable values over time.
|
|
4008
4008
|
*
|
|
4009
|
-
* Platforms: android, ios
|
|
4009
|
+
* Platforms: android, ios, web
|
|
4010
4010
|
*/
|
|
4011
4011
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
4012
4012
|
/**
|
|
@@ -4290,7 +4290,7 @@ declare class DivGrid<T extends DivGridProps = DivGridProps> {
|
|
|
4290
4290
|
/**
|
|
4291
4291
|
* Declaration of animators that change variable values over time.
|
|
4292
4292
|
*
|
|
4293
|
-
* Platforms: android, ios
|
|
4293
|
+
* Platforms: android, ios, web
|
|
4294
4294
|
*/
|
|
4295
4295
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
4296
4296
|
/**
|
|
@@ -4544,7 +4544,7 @@ interface DivGridProps {
|
|
|
4544
4544
|
/**
|
|
4545
4545
|
* Declaration of animators that change variable values over time.
|
|
4546
4546
|
*
|
|
4547
|
-
* Platforms: android, ios
|
|
4547
|
+
* Platforms: android, ios, web
|
|
4548
4548
|
*/
|
|
4549
4549
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
4550
4550
|
/**
|
|
@@ -4803,7 +4803,7 @@ declare class DivImage<T extends DivImageProps = DivImageProps> {
|
|
|
4803
4803
|
/**
|
|
4804
4804
|
* Declaration of animators that change variable values over time.
|
|
4805
4805
|
*
|
|
4806
|
-
* Platforms: android, ios
|
|
4806
|
+
* Platforms: android, ios, web
|
|
4807
4807
|
*/
|
|
4808
4808
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
4809
4809
|
/**
|
|
@@ -5108,7 +5108,7 @@ interface DivImageProps {
|
|
|
5108
5108
|
/**
|
|
5109
5109
|
* Declaration of animators that change variable values over time.
|
|
5110
5110
|
*
|
|
5111
|
-
* Platforms: android, ios
|
|
5111
|
+
* Platforms: android, ios, web
|
|
5112
5112
|
*/
|
|
5113
5113
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
5114
5114
|
/**
|
|
@@ -5498,7 +5498,7 @@ declare class DivIndicator<T extends DivIndicatorProps = DivIndicatorProps> {
|
|
|
5498
5498
|
/**
|
|
5499
5499
|
* Declaration of animators that change variable values over time.
|
|
5500
5500
|
*
|
|
5501
|
-
* Platforms: android, ios
|
|
5501
|
+
* Platforms: android, ios, web
|
|
5502
5502
|
*/
|
|
5503
5503
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
5504
5504
|
/**
|
|
@@ -5750,7 +5750,7 @@ interface DivIndicatorProps {
|
|
|
5750
5750
|
/**
|
|
5751
5751
|
* Declaration of animators that change variable values over time.
|
|
5752
5752
|
*
|
|
5753
|
-
* Platforms: android, ios
|
|
5753
|
+
* Platforms: android, ios, web
|
|
5754
5754
|
*/
|
|
5755
5755
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
5756
5756
|
/**
|
|
@@ -5999,7 +5999,7 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
|
|
|
5999
5999
|
/**
|
|
6000
6000
|
* Declaration of animators that change variable values over time.
|
|
6001
6001
|
*
|
|
6002
|
-
* Platforms: android, ios
|
|
6002
|
+
* Platforms: android, ios, web
|
|
6003
6003
|
*/
|
|
6004
6004
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
6005
6005
|
/**
|
|
@@ -6031,13 +6031,13 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
|
|
|
6031
6031
|
/**
|
|
6032
6032
|
* Actions when pressing the 'Enter' key. Actions (if any) override the default behavior.
|
|
6033
6033
|
*
|
|
6034
|
-
* Platforms: ios
|
|
6034
|
+
* Platforms: ios, android, web
|
|
6035
6035
|
*/
|
|
6036
6036
|
enter_key_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
6037
6037
|
/**
|
|
6038
6038
|
* 'Enter' key type.
|
|
6039
6039
|
*
|
|
6040
|
-
* Platforms: ios
|
|
6040
|
+
* Platforms: ios, android, web
|
|
6041
6041
|
*/
|
|
6042
6042
|
enter_key_type?: Type<DivInputEnterKeyType | DivExpression>;
|
|
6043
6043
|
/**
|
|
@@ -6256,7 +6256,7 @@ declare class DivInput<T extends DivInputProps = DivInputProps> {
|
|
|
6256
6256
|
/**
|
|
6257
6257
|
* Validator that checks that the field value meets the specified conditions.
|
|
6258
6258
|
*
|
|
6259
|
-
* Platforms: android, ios
|
|
6259
|
+
* Platforms: android, ios, web
|
|
6260
6260
|
*/
|
|
6261
6261
|
validators?: Type<NonEmptyArray<DivInputValidator>>;
|
|
6262
6262
|
/**
|
|
@@ -6317,7 +6317,7 @@ interface DivInputProps {
|
|
|
6317
6317
|
/**
|
|
6318
6318
|
* Declaration of animators that change variable values over time.
|
|
6319
6319
|
*
|
|
6320
|
-
* Platforms: android, ios
|
|
6320
|
+
* Platforms: android, ios, web
|
|
6321
6321
|
*/
|
|
6322
6322
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
6323
6323
|
/**
|
|
@@ -6349,13 +6349,13 @@ interface DivInputProps {
|
|
|
6349
6349
|
/**
|
|
6350
6350
|
* Actions when pressing the 'Enter' key. Actions (if any) override the default behavior.
|
|
6351
6351
|
*
|
|
6352
|
-
* Platforms: ios
|
|
6352
|
+
* Platforms: ios, android, web
|
|
6353
6353
|
*/
|
|
6354
6354
|
enter_key_actions?: Type<NonEmptyArray<IDivAction>>;
|
|
6355
6355
|
/**
|
|
6356
6356
|
* 'Enter' key type.
|
|
6357
6357
|
*
|
|
6358
|
-
* Platforms: ios
|
|
6358
|
+
* Platforms: ios, android, web
|
|
6359
6359
|
*/
|
|
6360
6360
|
enter_key_type?: Type<DivInputEnterKeyType | DivExpression>;
|
|
6361
6361
|
/**
|
|
@@ -6574,7 +6574,7 @@ interface DivInputProps {
|
|
|
6574
6574
|
/**
|
|
6575
6575
|
* Validator that checks that the field value meets the specified conditions.
|
|
6576
6576
|
*
|
|
6577
|
-
* Platforms: android, ios
|
|
6577
|
+
* Platforms: android, ios, web
|
|
6578
6578
|
*/
|
|
6579
6579
|
validators?: Type<NonEmptyArray<DivInputValidator>>;
|
|
6580
6580
|
/**
|
|
@@ -7223,7 +7223,7 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
7223
7223
|
/**
|
|
7224
7224
|
* Declaration of animators that change variable values over time.
|
|
7225
7225
|
*
|
|
7226
|
-
* Platforms: android, ios
|
|
7226
|
+
* Platforms: android, ios, web
|
|
7227
7227
|
*/
|
|
7228
7228
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
7229
7229
|
/**
|
|
@@ -7243,7 +7243,7 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
7243
7243
|
/**
|
|
7244
7244
|
* Ordinal number of the pager element that will be opened by default.
|
|
7245
7245
|
*
|
|
7246
|
-
* Platforms: android, ios
|
|
7246
|
+
* Platforms: android, ios, web
|
|
7247
7247
|
*/
|
|
7248
7248
|
default_item?: Type<number | DivExpression>;
|
|
7249
7249
|
/**
|
|
@@ -7464,7 +7464,7 @@ interface DivPagerProps {
|
|
|
7464
7464
|
/**
|
|
7465
7465
|
* Declaration of animators that change variable values over time.
|
|
7466
7466
|
*
|
|
7467
|
-
* Platforms: android, ios
|
|
7467
|
+
* Platforms: android, ios, web
|
|
7468
7468
|
*/
|
|
7469
7469
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
7470
7470
|
/**
|
|
@@ -7484,7 +7484,7 @@ interface DivPagerProps {
|
|
|
7484
7484
|
/**
|
|
7485
7485
|
* Ordinal number of the pager element that will be opened by default.
|
|
7486
7486
|
*
|
|
7487
|
-
* Platforms: android, ios
|
|
7487
|
+
* Platforms: android, ios, web
|
|
7488
7488
|
*/
|
|
7489
7489
|
default_item?: Type<number | DivExpression>;
|
|
7490
7490
|
/**
|
|
@@ -8083,7 +8083,7 @@ declare class DivSelect<T extends DivSelectProps = DivSelectProps> {
|
|
|
8083
8083
|
/**
|
|
8084
8084
|
* Declaration of animators that change variable values over time.
|
|
8085
8085
|
*
|
|
8086
|
-
* Platforms: android, ios
|
|
8086
|
+
* Platforms: android, ios, web
|
|
8087
8087
|
*/
|
|
8088
8088
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
8089
8089
|
/**
|
|
@@ -8319,7 +8319,7 @@ interface DivSelectProps {
|
|
|
8319
8319
|
/**
|
|
8320
8320
|
* Declaration of animators that change variable values over time.
|
|
8321
8321
|
*
|
|
8322
|
-
* Platforms: android, ios
|
|
8322
|
+
* Platforms: android, ios, web
|
|
8323
8323
|
*/
|
|
8324
8324
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
8325
8325
|
/**
|
|
@@ -8588,7 +8588,7 @@ declare class DivSeparator<T extends DivSeparatorProps = DivSeparatorProps> {
|
|
|
8588
8588
|
/**
|
|
8589
8589
|
* Declaration of animators that change variable values over time.
|
|
8590
8590
|
*
|
|
8591
|
-
* Platforms: android, ios
|
|
8591
|
+
* Platforms: android, ios, web
|
|
8592
8592
|
*/
|
|
8593
8593
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
8594
8594
|
/**
|
|
@@ -8830,7 +8830,7 @@ interface DivSeparatorProps {
|
|
|
8830
8830
|
/**
|
|
8831
8831
|
* Declaration of animators that change variable values over time.
|
|
8832
8832
|
*
|
|
8833
|
-
* Platforms: android, ios
|
|
8833
|
+
* Platforms: android, ios, web
|
|
8834
8834
|
*/
|
|
8835
8835
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
8836
8836
|
/**
|
|
@@ -9250,7 +9250,7 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
|
|
|
9250
9250
|
/**
|
|
9251
9251
|
* Declaration of animators that change variable values over time.
|
|
9252
9252
|
*
|
|
9253
|
-
* Platforms: android, ios
|
|
9253
|
+
* Platforms: android, ios, web
|
|
9254
9254
|
*/
|
|
9255
9255
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
9256
9256
|
/**
|
|
@@ -9494,7 +9494,7 @@ interface DivSliderProps {
|
|
|
9494
9494
|
/**
|
|
9495
9495
|
* Declaration of animators that change variable values over time.
|
|
9496
9496
|
*
|
|
9497
|
-
* Platforms: android, ios
|
|
9497
|
+
* Platforms: android, ios, web
|
|
9498
9498
|
*/
|
|
9499
9499
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
9500
9500
|
/**
|
|
@@ -9812,7 +9812,7 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
|
|
|
9812
9812
|
/**
|
|
9813
9813
|
* Declaration of animators that change variable values over time.
|
|
9814
9814
|
*
|
|
9815
|
-
* Platforms: android, ios
|
|
9815
|
+
* Platforms: android, ios, web
|
|
9816
9816
|
*/
|
|
9817
9817
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
9818
9818
|
/**
|
|
@@ -9823,6 +9823,12 @@ declare class DivState<T extends DivStateProps = DivStateProps> {
|
|
|
9823
9823
|
* Element stroke.
|
|
9824
9824
|
*/
|
|
9825
9825
|
border?: Type<IDivBorder>;
|
|
9826
|
+
/**
|
|
9827
|
+
* Enables the bounding of child elements by the parent's borders.
|
|
9828
|
+
*
|
|
9829
|
+
* Platforms: android
|
|
9830
|
+
*/
|
|
9831
|
+
clip_to_bounds?: Type<IntBoolean | DivExpression>;
|
|
9826
9832
|
/**
|
|
9827
9833
|
* Merges cells in a column of the [grid](div-grid.md) element.
|
|
9828
9834
|
*
|
|
@@ -10024,7 +10030,7 @@ interface DivStateProps {
|
|
|
10024
10030
|
/**
|
|
10025
10031
|
* Declaration of animators that change variable values over time.
|
|
10026
10032
|
*
|
|
10027
|
-
* Platforms: android, ios
|
|
10033
|
+
* Platforms: android, ios, web
|
|
10028
10034
|
*/
|
|
10029
10035
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
10030
10036
|
/**
|
|
@@ -10035,6 +10041,12 @@ interface DivStateProps {
|
|
|
10035
10041
|
* Element stroke.
|
|
10036
10042
|
*/
|
|
10037
10043
|
border?: Type<IDivBorder>;
|
|
10044
|
+
/**
|
|
10045
|
+
* Enables the bounding of child elements by the parent's borders.
|
|
10046
|
+
*
|
|
10047
|
+
* Platforms: android
|
|
10048
|
+
*/
|
|
10049
|
+
clip_to_bounds?: Type<IntBoolean | DivExpression>;
|
|
10038
10050
|
/**
|
|
10039
10051
|
* Merges cells in a column of the [grid](div-grid.md) element.
|
|
10040
10052
|
*
|
|
@@ -10318,7 +10330,7 @@ declare class DivSwitch<T extends DivSwitchProps = DivSwitchProps> {
|
|
|
10318
10330
|
/**
|
|
10319
10331
|
* Declaration of animators that change variable values over time.
|
|
10320
10332
|
*
|
|
10321
|
-
* Platforms: android, ios
|
|
10333
|
+
* Platforms: android, ios, web
|
|
10322
10334
|
*/
|
|
10323
10335
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
10324
10336
|
/**
|
|
@@ -10391,7 +10403,7 @@ declare class DivSwitch<T extends DivSwitchProps = DivSwitchProps> {
|
|
|
10391
10403
|
* Color of the toggle in the enabled state. If the color is omitted:
|
|
10392
10404
|
: iOS standard system color
|
|
10393
10405
|
* is used
|
|
10394
|
-
: the color specified in
|
|
10406
|
+
: the color specified in `Div2Context` on Android is used.
|
|
10395
10407
|
*/
|
|
10396
10408
|
on_color?: Type<string | DivExpression>;
|
|
10397
10409
|
/**
|
|
@@ -10517,7 +10529,7 @@ interface DivSwitchProps {
|
|
|
10517
10529
|
/**
|
|
10518
10530
|
* Declaration of animators that change variable values over time.
|
|
10519
10531
|
*
|
|
10520
|
-
* Platforms: android, ios
|
|
10532
|
+
* Platforms: android, ios, web
|
|
10521
10533
|
*/
|
|
10522
10534
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
10523
10535
|
/**
|
|
@@ -10590,7 +10602,7 @@ interface DivSwitchProps {
|
|
|
10590
10602
|
* Color of the toggle in the enabled state. If the color is omitted:
|
|
10591
10603
|
: iOS standard system color
|
|
10592
10604
|
* is used
|
|
10593
|
-
: the color specified in
|
|
10605
|
+
: the color specified in `Div2Context` on Android is used.
|
|
10594
10606
|
*/
|
|
10595
10607
|
on_color?: Type<string | DivExpression>;
|
|
10596
10608
|
/**
|
|
@@ -10722,7 +10734,7 @@ declare class DivTabs<T extends DivTabsProps = DivTabsProps> {
|
|
|
10722
10734
|
/**
|
|
10723
10735
|
* Declaration of animators that change variable values over time.
|
|
10724
10736
|
*
|
|
10725
|
-
* Platforms: android, ios
|
|
10737
|
+
* Platforms: android, ios, web
|
|
10726
10738
|
*/
|
|
10727
10739
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
10728
10740
|
/**
|
|
@@ -10964,7 +10976,7 @@ interface DivTabsProps {
|
|
|
10964
10976
|
/**
|
|
10965
10977
|
* Declaration of animators that change variable values over time.
|
|
10966
10978
|
*
|
|
10967
|
-
* Platforms: android, ios
|
|
10979
|
+
* Platforms: android, ios, web
|
|
10968
10980
|
*/
|
|
10969
10981
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
10970
10982
|
/**
|
|
@@ -11348,7 +11360,7 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
11348
11360
|
/**
|
|
11349
11361
|
* Declaration of animators that change variable values over time.
|
|
11350
11362
|
*
|
|
11351
|
-
* Platforms: android, ios
|
|
11363
|
+
* Platforms: android, ios, web
|
|
11352
11364
|
*/
|
|
11353
11365
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
11354
11366
|
/**
|
|
@@ -11595,7 +11607,7 @@ declare class DivText<T extends DivTextProps = DivTextProps> {
|
|
|
11595
11607
|
text_shadow?: Type<IDivShadow>;
|
|
11596
11608
|
/**
|
|
11597
11609
|
* Limit the text width to the maximum line width. Applies only when the width is set to
|
|
11598
|
-
*
|
|
11610
|
+
* `wrap_content`, `constrained=true`, and `max_size` is specified.
|
|
11599
11611
|
*
|
|
11600
11612
|
* Platforms: android, ios
|
|
11601
11613
|
*/
|
|
@@ -11726,7 +11738,7 @@ interface DivTextProps {
|
|
|
11726
11738
|
/**
|
|
11727
11739
|
* Declaration of animators that change variable values over time.
|
|
11728
11740
|
*
|
|
11729
|
-
* Platforms: android, ios
|
|
11741
|
+
* Platforms: android, ios, web
|
|
11730
11742
|
*/
|
|
11731
11743
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
11732
11744
|
/**
|
|
@@ -11973,7 +11985,7 @@ interface DivTextProps {
|
|
|
11973
11985
|
text_shadow?: Type<IDivShadow>;
|
|
11974
11986
|
/**
|
|
11975
11987
|
* Limit the text width to the maximum line width. Applies only when the width is set to
|
|
11976
|
-
*
|
|
11988
|
+
* `wrap_content`, `constrained=true`, and `max_size` is specified.
|
|
11977
11989
|
*
|
|
11978
11990
|
* Platforms: android, ios
|
|
11979
11991
|
*/
|
|
@@ -12112,6 +12124,17 @@ interface IDivTextImage {
|
|
|
12112
12124
|
* Image height.
|
|
12113
12125
|
*/
|
|
12114
12126
|
height?: Type<DivFixedSize>;
|
|
12127
|
+
/**
|
|
12128
|
+
* Defines direction in `start` parameter:
|
|
12129
|
+
`normal` - regular indexation for strings ([0, 1, 2,
|
|
12130
|
+
* ..., N]). Use to insert an image by index relative to the begging of a string.
|
|
12131
|
+
`reversed` -
|
|
12132
|
+
* indexation from the end towards the begging of a string ([N, ..., 2, 1, 0]). Use to insert an
|
|
12133
|
+
* image by index relative to the end of a string.
|
|
12134
|
+
*
|
|
12135
|
+
* Platforms: not supported
|
|
12136
|
+
*/
|
|
12137
|
+
indexing_direction?: Type<ImageIndexingDirection | DivExpression>;
|
|
12115
12138
|
/**
|
|
12116
12139
|
* Background image must be loaded before the display.
|
|
12117
12140
|
*
|
|
@@ -12142,6 +12165,7 @@ interface IDivTextImage {
|
|
|
12142
12165
|
*/
|
|
12143
12166
|
width?: Type<DivFixedSize>;
|
|
12144
12167
|
}
|
|
12168
|
+
declare type ImageIndexingDirection = 'normal' | 'reversed';
|
|
12145
12169
|
interface IImageAccessibility {
|
|
12146
12170
|
/**
|
|
12147
12171
|
* Element description. It is used as the main description for screen reading applications.
|
|
@@ -12439,7 +12463,7 @@ declare class DivVideo<T extends DivVideoProps = DivVideoProps> {
|
|
|
12439
12463
|
/**
|
|
12440
12464
|
* Declaration of animators that change variable values over time.
|
|
12441
12465
|
*
|
|
12442
|
-
* Platforms: android, ios
|
|
12466
|
+
* Platforms: android, ios, web
|
|
12443
12467
|
*/
|
|
12444
12468
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
12445
12469
|
/**
|
|
@@ -12688,7 +12712,7 @@ interface DivVideoProps {
|
|
|
12688
12712
|
/**
|
|
12689
12713
|
* Declaration of animators that change variable values over time.
|
|
12690
12714
|
*
|
|
12691
|
-
* Platforms: android, ios
|
|
12715
|
+
* Platforms: android, ios, web
|
|
12692
12716
|
*/
|
|
12693
12717
|
animators?: Type<NonEmptyArray<DivAnimator>>;
|
|
12694
12718
|
/**
|
|
@@ -13195,21 +13219,21 @@ interface NumberVariableProps {
|
|
|
13195
13219
|
}
|
|
13196
13220
|
|
|
13197
13221
|
/**
|
|
13198
|
-
* Specifies the position measured in
|
|
13199
|
-
* position. Only applies in
|
|
13222
|
+
* Specifies the position measured in `dp` from the container start as the scrolling end
|
|
13223
|
+
* position. Only applies in `gallery`.
|
|
13200
13224
|
*/
|
|
13201
13225
|
declare class OffsetDestination<T extends OffsetDestinationProps = OffsetDestinationProps> {
|
|
13202
13226
|
readonly _props?: Exact<OffsetDestinationProps, T>;
|
|
13203
13227
|
readonly type = "offset";
|
|
13204
13228
|
/**
|
|
13205
|
-
* Position measured in
|
|
13229
|
+
* Position measured in `dp`.
|
|
13206
13230
|
*/
|
|
13207
13231
|
value: Type<number | DivExpression>;
|
|
13208
13232
|
constructor(props: Exact<OffsetDestinationProps, T>);
|
|
13209
13233
|
}
|
|
13210
13234
|
interface OffsetDestinationProps {
|
|
13211
13235
|
/**
|
|
13212
|
-
* Position measured in
|
|
13236
|
+
* Position measured in `dp`.
|
|
13213
13237
|
*/
|
|
13214
13238
|
value: Type<number | DivExpression>;
|
|
13215
13239
|
}
|
|
@@ -13454,4 +13478,4 @@ declare function rewriteTemplateVersions<T extends ITemplates>(templates: T, res
|
|
|
13454
13478
|
};
|
|
13455
13479
|
};
|
|
13456
13480
|
|
|
13457
|
-
export { AccessibilityType, ArrayValue, ArrayValueProps, ArrayVariable, ArrayVariableProps, BooleanValue, BooleanValueProps, BooleanVariable, BooleanVariableProps, ColorValue, ColorValueProps, ColorVariable, ColorVariableProps, ContentText, ContentTextProps, ContentUrl, ContentUrlProps, DelimiterStyleOrientation, DictValue, DictValueProps, DictVariable, DictVariableProps, Div, DivAccessibilityMode, DivAccessibilityType, DivActionAnimatorStart, DivActionAnimatorStartProps, DivActionAnimatorStop, DivActionAnimatorStopProps, DivActionArrayInsertValue, DivActionArrayInsertValueProps, DivActionArrayRemoveValue, DivActionArrayRemoveValueProps, DivActionArraySetValue, DivActionArraySetValueProps, DivActionClearFocus, DivActionClearFocusProps, DivActionCopyToClipboard, DivActionCopyToClipboardContent, DivActionCopyToClipboardProps, DivActionDictSetValue, DivActionDictSetValueProps, DivActionDownload, DivActionDownloadProps, DivActionFocusElement, DivActionFocusElementProps, DivActionHideTooltip, DivActionHideTooltipProps, DivActionScrollBy, DivActionScrollByOverflow, DivActionScrollByProps, DivActionScrollDestination, DivActionScrollTo, DivActionScrollToProps, DivActionSetState, DivActionSetStateProps, DivActionSetStoredValue, DivActionSetStoredValueProps, DivActionSetVariable, DivActionSetVariableProps, DivActionShowTooltip, DivActionShowTooltipProps, DivActionSubmit, DivActionSubmitProps, DivActionTarget, DivActionTimer, DivActionTimerAction, DivActionTimerProps, DivActionTyped, DivActionVideo, DivActionVideoAction, DivActionVideoProps, DivAlignmentHorizontal, DivAlignmentVertical, DivAnimationDirection, DivAnimationInterpolator, DivAnimationName, DivAnimator, DivAppearanceSetTransition, DivAppearanceSetTransitionProps, DivAppearanceTransition, DivBackground, DivBlendMode, DivBlur, DivBlurProps, DivChangeBoundsTransition, DivChangeBoundsTransitionProps, DivChangeSetTransition, DivChangeSetTransitionProps, DivChangeTransition, DivCircleShape, DivCircleShapeProps, DivCloudBackground, DivCloudBackgroundProps, DivColorAnimator, DivColorAnimatorProps, DivContainer, DivContainerLayoutMode, DivContainerOrientation, DivContainerProps, DivContainerProps0, DivContainerProps1, DivContainerPropsBase, DivContentAlignmentHorizontal, DivContentAlignmentVertical, DivCount, DivCurrencyInputMask, DivCurrencyInputMaskProps, DivCustom, DivCustomProps, DivDefaultIndicatorItemPlacement, DivDefaultIndicatorItemPlacementProps, DivDrawable, DivEvaluableType, DivExpression, DivFadeTransition, DivFadeTransitionProps, DivFilter, DivFilterRtlMirror, DivFilterRtlMirrorProps, DivFixedCount, DivFixedCountProps, DivFixedLengthInputMask, DivFixedLengthInputMaskProps, DivFixedSize, DivFixedSizeProps, DivFontWeight, DivGallery, DivGalleryCrossContentAlignment, DivGalleryOrientation, DivGalleryProps, DivGalleryScrollMode, DivGalleryScrollbar, DivGifImage, DivGifImageProps, DivGradientBackground, DivGrid, DivGridProps, DivImage, DivImageBackground, DivImageBackgroundProps, DivImageProps, DivImageScale, DivIndicator, DivIndicatorAnimation, DivIndicatorItemPlacement, DivIndicatorProps, DivInfinityCount, DivInfinityCountProps, DivInput, DivInputAutocapitalization, DivInputEnterKeyType, DivInputFilter, DivInputFilterExpression, DivInputFilterExpressionProps, DivInputFilterRegex, DivInputFilterRegexProps, DivInputKeyboardType, DivInputMask, DivInputProps, DivInputValidator, DivInputValidatorExpression, DivInputValidatorExpressionProps, DivInputValidatorRegex, DivInputValidatorRegexProps, DivLineStyle, DivLinearGradient, DivLinearGradientProps, DivMatchParentSize, DivMatchParentSizeProps, DivNeighbourPageSize, DivNeighbourPageSizeProps, DivNinePatchBackground, DivNinePatchBackgroundProps, DivNumberAnimator, DivNumberAnimatorProps, DivPageContentSize, DivPageContentSizeAlignment, DivPageContentSizeProps, DivPageSize, DivPageSizeProps, DivPageTransformation, DivPageTransformationOverlap, DivPageTransformationOverlapProps, DivPageTransformationSlide, DivPageTransformationSlideProps, DivPager, DivPagerLayoutMode, DivPagerOrientation, DivPagerProps, DivPatchMode, DivPercentageSize, DivPercentageSizeProps, DivPhoneInputMask, DivPhoneInputMaskProps, DivPivot, DivPivotFixed, DivPivotFixedProps, DivPivotPercentage, DivPivotPercentageProps, DivRadialGradient, DivRadialGradientCenter, DivRadialGradientFixedCenter, DivRadialGradientFixedCenterProps, DivRadialGradientProps, DivRadialGradientRadius, DivRadialGradientRelativeCenter, DivRadialGradientRelativeCenterProps, DivRadialGradientRelativeRadius, DivRadialGradientRelativeRadiusProps, DivRadialGradientRelativeRadiusValue, DivRoundedRectangleShape, DivRoundedRectangleShapeProps, DivScaleTransition, DivScaleTransitionProps, DivSelect, DivSelectProps, DivSeparator, DivSeparatorProps, DivShape, DivShapeDrawable, DivShapeDrawableProps, DivSize, DivSizeUnit, DivSlideTransition, DivSlideTransitionEdge, DivSlideTransitionProps, DivSlider, DivSliderProps, DivSolidBackground, DivSolidBackgroundProps, DivState, DivStateProps, DivStretchIndicatorItemPlacement, DivStretchIndicatorItemPlacementProps, DivSwitch, DivSwitchProps, DivTabs, DivTabsProps, DivText, DivTextAlignmentVertical, DivTextGradient, DivTextProps, DivTextRangeBackground, DivTextTruncate, DivTooltipPosition, DivTransitionSelector, DivTransitionTrigger, DivTriggerMode, DivTypedValue, DivVariable, DivVideo, DivVideoProps, DivVideoScale, DivVideoSource, DivVideoSourceProps, DivVideoSourceResolution, DivVideoSourceResolutionProps, DivVisibility, DivWrapContentSize, DivWrapContentSizeProps, EndDestination, EndDestinationProps, Exact, IDivAbsoluteEdgeInsets, IDivAccessibility, IDivAction, IDivActionMenuItem, IDivActionSubmitRequest, IDivAnimation, IDivAnimatorBase, IDivAspect, IDivBase, IDivBorder, IDivCollectionItemBuilder, IDivCollectionItemBuilderPrototype, IDivContainerSeparator, IDivCornersRadius, IDivData, IDivDataState, IDivDimension, IDivDisappearAction, IDivDownloadCallbacks, IDivEdgeInsets, IDivExtension, IDivFixedLengthInputMaskPatternElement, IDivFocus, IDivFocusNextFocusIds, IDivFunction, IDivFunctionArgument, IDivInputMaskBase, IDivInputNativeInterface, IDivInputValidatorBase, IDivLayoutProvider, IDivPatch, IDivPatchChange, IDivPoint, IDivSelectOption, IDivSeparatorDelimiterStyle, IDivShadow, IDivSightAction, IDivSliderRange, IDivSliderTextStyle, IDivStateState, IDivStroke, IDivTabsItem, IDivTabsTabTitleDelimiter, IDivTabsTabTitleStyle, IDivTextEllipsis, IDivTextImage, IDivTextRange, IDivTextRangeBorder, IDivTimer, IDivTooltip, IDivTransform, IDivTransitionBase, IDivTrigger, IDivVisibilityAction, IDivWrapContentSizeConstraintSize, IImageAccessibility, IRequestHeader, ITemplates, 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 };
|
|
13481
|
+
export { AccessibilityType, ArrayValue, ArrayValueProps, ArrayVariable, ArrayVariableProps, BooleanValue, BooleanValueProps, BooleanVariable, BooleanVariableProps, ColorValue, ColorValueProps, ColorVariable, ColorVariableProps, ContentText, ContentTextProps, ContentUrl, ContentUrlProps, DelimiterStyleOrientation, DictValue, DictValueProps, DictVariable, DictVariableProps, Div, DivAccessibilityMode, DivAccessibilityType, DivActionAnimatorStart, DivActionAnimatorStartProps, DivActionAnimatorStop, DivActionAnimatorStopProps, DivActionArrayInsertValue, DivActionArrayInsertValueProps, DivActionArrayRemoveValue, DivActionArrayRemoveValueProps, DivActionArraySetValue, DivActionArraySetValueProps, DivActionClearFocus, DivActionClearFocusProps, DivActionCopyToClipboard, DivActionCopyToClipboardContent, DivActionCopyToClipboardProps, DivActionDictSetValue, DivActionDictSetValueProps, DivActionDownload, DivActionDownloadProps, DivActionFocusElement, DivActionFocusElementProps, DivActionHideTooltip, DivActionHideTooltipProps, DivActionScrollBy, DivActionScrollByOverflow, DivActionScrollByProps, DivActionScrollDestination, DivActionScrollTo, DivActionScrollToProps, DivActionSetState, DivActionSetStateProps, DivActionSetStoredValue, DivActionSetStoredValueProps, DivActionSetVariable, DivActionSetVariableProps, DivActionShowTooltip, DivActionShowTooltipProps, DivActionSubmit, DivActionSubmitProps, DivActionTarget, DivActionTimer, DivActionTimerAction, DivActionTimerProps, DivActionTyped, DivActionVideo, DivActionVideoAction, DivActionVideoProps, DivAlignmentHorizontal, DivAlignmentVertical, DivAnimationDirection, DivAnimationInterpolator, DivAnimationName, DivAnimator, DivAppearanceSetTransition, DivAppearanceSetTransitionProps, DivAppearanceTransition, DivBackground, DivBlendMode, DivBlur, DivBlurProps, DivChangeBoundsTransition, DivChangeBoundsTransitionProps, DivChangeSetTransition, DivChangeSetTransitionProps, DivChangeTransition, DivCircleShape, DivCircleShapeProps, DivCloudBackground, DivCloudBackgroundProps, DivColorAnimator, DivColorAnimatorProps, DivContainer, DivContainerLayoutMode, DivContainerOrientation, DivContainerProps, DivContainerProps0, DivContainerProps1, DivContainerPropsBase, DivContentAlignmentHorizontal, DivContentAlignmentVertical, DivCount, DivCurrencyInputMask, DivCurrencyInputMaskProps, DivCustom, DivCustomProps, DivDefaultIndicatorItemPlacement, DivDefaultIndicatorItemPlacementProps, DivDrawable, DivEvaluableType, DivExpression, DivFadeTransition, DivFadeTransitionProps, DivFilter, DivFilterRtlMirror, DivFilterRtlMirrorProps, DivFixedCount, DivFixedCountProps, DivFixedLengthInputMask, DivFixedLengthInputMaskProps, DivFixedSize, DivFixedSizeProps, DivFontWeight, DivGallery, DivGalleryCrossContentAlignment, DivGalleryOrientation, DivGalleryProps, DivGalleryScrollMode, DivGalleryScrollbar, DivGifImage, DivGifImageProps, DivGradientBackground, DivGrid, DivGridProps, DivImage, DivImageBackground, DivImageBackgroundProps, DivImageProps, DivImageScale, DivIndicator, DivIndicatorAnimation, DivIndicatorItemPlacement, DivIndicatorProps, DivInfinityCount, DivInfinityCountProps, DivInput, DivInputAutocapitalization, DivInputEnterKeyType, DivInputFilter, DivInputFilterExpression, DivInputFilterExpressionProps, DivInputFilterRegex, DivInputFilterRegexProps, DivInputKeyboardType, DivInputMask, DivInputProps, DivInputValidator, DivInputValidatorExpression, DivInputValidatorExpressionProps, DivInputValidatorRegex, DivInputValidatorRegexProps, DivLineStyle, DivLinearGradient, DivLinearGradientProps, DivMatchParentSize, DivMatchParentSizeProps, DivNeighbourPageSize, DivNeighbourPageSizeProps, DivNinePatchBackground, DivNinePatchBackgroundProps, DivNumberAnimator, DivNumberAnimatorProps, DivPageContentSize, DivPageContentSizeAlignment, DivPageContentSizeProps, DivPageSize, DivPageSizeProps, DivPageTransformation, DivPageTransformationOverlap, DivPageTransformationOverlapProps, DivPageTransformationSlide, DivPageTransformationSlideProps, DivPager, DivPagerLayoutMode, DivPagerOrientation, DivPagerProps, DivPatchMode, DivPercentageSize, DivPercentageSizeProps, DivPhoneInputMask, DivPhoneInputMaskProps, DivPivot, DivPivotFixed, DivPivotFixedProps, DivPivotPercentage, DivPivotPercentageProps, DivRadialGradient, DivRadialGradientCenter, DivRadialGradientFixedCenter, DivRadialGradientFixedCenterProps, DivRadialGradientProps, DivRadialGradientRadius, DivRadialGradientRelativeCenter, DivRadialGradientRelativeCenterProps, DivRadialGradientRelativeRadius, DivRadialGradientRelativeRadiusProps, DivRadialGradientRelativeRadiusValue, DivRoundedRectangleShape, DivRoundedRectangleShapeProps, DivScaleTransition, DivScaleTransitionProps, DivSelect, DivSelectProps, DivSeparator, DivSeparatorProps, DivShape, DivShapeDrawable, DivShapeDrawableProps, DivSize, DivSizeUnit, DivSlideTransition, DivSlideTransitionEdge, DivSlideTransitionProps, DivSlider, DivSliderProps, DivSolidBackground, DivSolidBackgroundProps, DivState, DivStateProps, DivStretchIndicatorItemPlacement, DivStretchIndicatorItemPlacementProps, DivSwitch, DivSwitchProps, DivTabs, DivTabsProps, DivText, DivTextAlignmentVertical, DivTextGradient, DivTextProps, DivTextRangeBackground, DivTextTruncate, DivTooltipPosition, DivTransitionSelector, DivTransitionTrigger, DivTriggerMode, DivTypedValue, DivVariable, DivVideo, DivVideoProps, DivVideoScale, DivVideoSource, DivVideoSourceProps, DivVideoSourceResolution, DivVideoSourceResolutionProps, DivVisibility, DivWrapContentSize, DivWrapContentSizeProps, EndDestination, EndDestinationProps, Exact, IDivAbsoluteEdgeInsets, IDivAccessibility, IDivAction, IDivActionMenuItem, IDivActionSubmitRequest, IDivAnimation, IDivAnimatorBase, IDivAspect, IDivBase, IDivBorder, IDivCollectionItemBuilder, IDivCollectionItemBuilderPrototype, IDivContainerSeparator, IDivCornersRadius, IDivData, IDivDataState, IDivDimension, IDivDisappearAction, IDivDownloadCallbacks, IDivEdgeInsets, IDivExtension, IDivFixedLengthInputMaskPatternElement, IDivFocus, IDivFocusNextFocusIds, IDivFunction, IDivFunctionArgument, IDivInputMaskBase, IDivInputNativeInterface, IDivInputValidatorBase, IDivLayoutProvider, IDivPatch, IDivPatchChange, IDivPoint, IDivSelectOption, IDivSeparatorDelimiterStyle, IDivShadow, IDivSightAction, IDivSliderRange, IDivSliderTextStyle, IDivStateState, IDivStroke, IDivTabsItem, IDivTabsTabTitleDelimiter, IDivTabsTabTitleStyle, IDivTextEllipsis, IDivTextImage, IDivTextRange, IDivTextRangeBorder, IDivTimer, IDivTooltip, IDivTransform, IDivTransitionBase, IDivTrigger, IDivVisibilityAction, IDivWrapContentSizeConstraintSize, IImageAccessibility, IRequestHeader, ITemplates, ImageIndexingDirection, IndexDestination, IndexDestinationProps, IntBoolean, IntegerValue, IntegerValueProps, IntegerVariable, IntegerVariableProps, NonEmptyArray, NumberValue, NumberValueProps, NumberVariable, NumberVariableProps, OffsetDestination, OffsetDestinationProps, RequestMethod, SafeDivExpression, StartDestination, StartDestinationProps, StringValue, StringValueProps, StringVariable, StringVariableProps, TabTitleStyleAnimationType, TemplateBlock, TemplateHelper, TemplatePropertyReference, TemplateResolvedAction, ThelperWithMemo, Type, UrlValue, UrlValueProps, UrlVariable, UrlVariableProps, copyTemplates, divCard, escapeCard, escapeExpression, expression, fixed, getTemplateHash, matchParent, reference, rewriteNames, rewriteRefs, rewriteTemplateVersions, runResolveDeps, template, templateHelper, templatesDepsMap, thelperVersion, thelperWithMemo, treeWalkDFS, weighted, wrapContent };
|
package/dist/jsonbuilder.js
CHANGED
|
@@ -239,7 +239,7 @@ class DivActionHideTooltip {
|
|
|
239
239
|
|
|
240
240
|
// Generated code. Do not modify.
|
|
241
241
|
/**
|
|
242
|
-
* Scrolls the container by
|
|
242
|
+
* Scrolls the container by `item_count` or `offset` starting from the current position. If both
|
|
243
243
|
* values are specified, the action will be combined. For scrolling back, use negative values.
|
|
244
244
|
*/
|
|
245
245
|
class DivActionScrollBy {
|
|
@@ -255,7 +255,7 @@ class DivActionScrollBy {
|
|
|
255
255
|
|
|
256
256
|
// Generated code. Do not modify.
|
|
257
257
|
/**
|
|
258
|
-
* Scrolls to a position or switches to the container element specified by the
|
|
258
|
+
* Scrolls to a position or switches to the container element specified by the `destination`
|
|
259
259
|
* parameter.
|
|
260
260
|
*/
|
|
261
261
|
class DivActionScrollTo {
|
|
@@ -1583,6 +1583,7 @@ class DivState {
|
|
|
1583
1583
|
this.animators = props.animators;
|
|
1584
1584
|
this.background = props.background;
|
|
1585
1585
|
this.border = props.border;
|
|
1586
|
+
this.clip_to_bounds = props.clip_to_bounds;
|
|
1586
1587
|
this.column_span = props.column_span;
|
|
1587
1588
|
this.default_state_id = props.default_state_id;
|
|
1588
1589
|
this.disappear_actions = props.disappear_actions;
|
|
@@ -1959,8 +1960,8 @@ class NumberVariable {
|
|
|
1959
1960
|
|
|
1960
1961
|
// Generated code. Do not modify.
|
|
1961
1962
|
/**
|
|
1962
|
-
* Specifies the position measured in
|
|
1963
|
-
* position. Only applies in
|
|
1963
|
+
* Specifies the position measured in `dp` from the container start as the scrolling end
|
|
1964
|
+
* position. Only applies in `gallery`.
|
|
1964
1965
|
*/
|
|
1965
1966
|
class OffsetDestination {
|
|
1966
1967
|
constructor(props) {
|