@divkitframework/jsonbuilder 31.4.0 → 31.5.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 +14 -6
- package/package.json +1 -1
package/dist/jsonbuilder.d.ts
CHANGED
|
@@ -938,7 +938,9 @@ interface DivActionSubmitProps {
|
|
|
938
938
|
*/
|
|
939
939
|
interface IDivActionSubmitRequest {
|
|
940
940
|
/**
|
|
941
|
-
* HTTP request headers.
|
|
941
|
+
* HTTP request headers. Please note that DivKit does not clean duplicate headers, which can lead
|
|
942
|
+
* to errors in request processing. Keep this in mind when assembling actions with complex
|
|
943
|
+
* json-builders.
|
|
942
944
|
*/
|
|
943
945
|
headers?: Type<NonEmptyArray<IRequestHeader>>;
|
|
944
946
|
/**
|
|
@@ -6754,7 +6756,7 @@ declare class DivLinearGradient<T extends DivLinearGradientProps = DivLinearGrad
|
|
|
6754
6756
|
* Colors and positions of gradient points. When using this parameter, the `colors` parameter is
|
|
6755
6757
|
* ignored.
|
|
6756
6758
|
*
|
|
6757
|
-
* Platforms: android, ios
|
|
6759
|
+
* Platforms: android, ios, web
|
|
6758
6760
|
*/
|
|
6759
6761
|
color_map?: Type<NonEmptyArray<IDivLinearGradientColorPoint>>;
|
|
6760
6762
|
/**
|
|
@@ -6772,7 +6774,7 @@ interface DivLinearGradientProps {
|
|
|
6772
6774
|
* Colors and positions of gradient points. When using this parameter, the `colors` parameter is
|
|
6773
6775
|
* ignored.
|
|
6774
6776
|
*
|
|
6775
|
-
* Platforms: android, ios
|
|
6777
|
+
* Platforms: android, ios, web
|
|
6776
6778
|
*/
|
|
6777
6779
|
color_map?: Type<NonEmptyArray<IDivLinearGradientColorPoint>>;
|
|
6778
6780
|
/**
|
|
@@ -7207,7 +7209,7 @@ declare class DivPager<T extends DivPagerProps = DivPagerProps> {
|
|
|
7207
7209
|
* bottom.</p><p>In vertical pager:`start` — alignment to the left of the card;`center` — to the
|
|
7208
7210
|
* center;`end` — to the right.
|
|
7209
7211
|
*
|
|
7210
|
-
* Platforms: android, ios
|
|
7212
|
+
* Platforms: android, ios, web
|
|
7211
7213
|
*/
|
|
7212
7214
|
cross_axis_alignment?: Type<DivPagerItemAlignment | DivExpression>;
|
|
7213
7215
|
/**
|
|
@@ -7465,7 +7467,7 @@ interface DivPagerProps {
|
|
|
7465
7467
|
* bottom.</p><p>In vertical pager:`start` — alignment to the left of the card;`center` — to the
|
|
7466
7468
|
* center;`end` — to the right.
|
|
7467
7469
|
*
|
|
7468
|
-
* Platforms: android, ios
|
|
7470
|
+
* Platforms: android, ios, web
|
|
7469
7471
|
*/
|
|
7470
7472
|
cross_axis_alignment?: Type<DivPagerItemAlignment | DivExpression>;
|
|
7471
7473
|
/**
|
|
@@ -12433,6 +12435,12 @@ interface IDivTooltip {
|
|
|
12433
12435
|
* Platforms: android, web
|
|
12434
12436
|
*/
|
|
12435
12437
|
animation_out?: Type<IDivAnimation>;
|
|
12438
|
+
/**
|
|
12439
|
+
* Description for accessibility of the background tap action for tooltip.
|
|
12440
|
+
*
|
|
12441
|
+
* Platforms: ios
|
|
12442
|
+
*/
|
|
12443
|
+
background_accessibility_description?: Type<string | DivExpression>;
|
|
12436
12444
|
/**
|
|
12437
12445
|
* Allows dismissing tooltip by tapping outside of it.
|
|
12438
12446
|
*
|
|
@@ -12456,7 +12464,7 @@ interface IDivTooltip {
|
|
|
12456
12464
|
/**
|
|
12457
12465
|
* Tooltip modes.
|
|
12458
12466
|
*
|
|
12459
|
-
* Platforms: android
|
|
12467
|
+
* Platforms: android, ios, web
|
|
12460
12468
|
*/
|
|
12461
12469
|
mode?: Type<DivTooltipMode>;
|
|
12462
12470
|
/**
|