@divkitframework/jsonbuilder 32.29.0 → 32.30.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 -2
- package/package.json +1 -1
package/dist/jsonbuilder.d.ts
CHANGED
|
@@ -4036,7 +4036,7 @@ declare class DivGifImage<T extends DivGifImageProps = DivGifImageProps> {
|
|
|
4036
4036
|
* Direct URL to an image for loading preview. When both `preview` and `preview_url` are used,
|
|
4037
4037
|
* `preview` will be used.
|
|
4038
4038
|
*
|
|
4039
|
-
* Platforms: android
|
|
4039
|
+
* Platforms: android, web
|
|
4040
4040
|
*/
|
|
4041
4041
|
preview_url?: Type<string | DivExpression>;
|
|
4042
4042
|
/**
|
|
@@ -4333,7 +4333,7 @@ interface DivGifImageProps {
|
|
|
4333
4333
|
* Direct URL to an image for loading preview. When both `preview` and `preview_url` are used,
|
|
4334
4334
|
* `preview` will be used.
|
|
4335
4335
|
*
|
|
4336
|
-
* Platforms: android
|
|
4336
|
+
* Platforms: android, web
|
|
4337
4337
|
*/
|
|
4338
4338
|
preview_url?: Type<string | DivExpression>;
|
|
4339
4339
|
/**
|
|
@@ -13204,6 +13204,12 @@ interface IDivTooltip {
|
|
|
13204
13204
|
* Platforms: ios, web
|
|
13205
13205
|
*/
|
|
13206
13206
|
background_accessibility_description?: Type<string | DivExpression>;
|
|
13207
|
+
/**
|
|
13208
|
+
* An element that will be brought to the top of the substrate.
|
|
13209
|
+
*
|
|
13210
|
+
* Platforms: not supported
|
|
13211
|
+
*/
|
|
13212
|
+
bring_to_top_id?: Type<string>;
|
|
13207
13213
|
/**
|
|
13208
13214
|
* Allows dismissing tooltip by tapping outside of it.
|
|
13209
13215
|
*
|
|
@@ -13238,6 +13244,12 @@ interface IDivTooltip {
|
|
|
13238
13244
|
* The position of a tooltip relative to an element it belongs to.
|
|
13239
13245
|
*/
|
|
13240
13246
|
position: Type<DivTooltipPosition | DivExpression>;
|
|
13247
|
+
/**
|
|
13248
|
+
* An element that will be used as a substrate for the tooltip.
|
|
13249
|
+
*
|
|
13250
|
+
* Platforms: web
|
|
13251
|
+
*/
|
|
13252
|
+
substrate_div?: Type<Div>;
|
|
13241
13253
|
/**
|
|
13242
13254
|
* Specifies actions triggered by tapping outside the tooltip.
|
|
13243
13255
|
*
|