@divkitframework/jsonbuilder 31.6.0 → 31.7.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/README.md +1 -1
- package/dist/jsonbuilder.d.ts +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
## Example
|
|
9
9
|
|
|
10
10
|
```typescript
|
|
11
|
-
import { divCard, DivContainer, DivText, reference, rewritRefs, template, templateHelper } from '@divkitframework/jsonbuilder';
|
|
11
|
+
import { divCard, DivContainer, DivText, reference, rewritRefs, template, templateHelper, rewriteRefs } from '@divkitframework/jsonbuilder';
|
|
12
12
|
|
|
13
13
|
const templates = {
|
|
14
14
|
sampleBlock: new DivContainer({
|
package/dist/jsonbuilder.d.ts
CHANGED
|
@@ -9312,7 +9312,7 @@ declare class DivSlider<T extends DivSliderProps = DivSliderProps> {
|
|
|
9312
9312
|
/**
|
|
9313
9313
|
* Section style.
|
|
9314
9314
|
*
|
|
9315
|
-
* Platforms: android, ios
|
|
9315
|
+
* Platforms: android, ios, web
|
|
9316
9316
|
*/
|
|
9317
9317
|
ranges?: Type<NonEmptyArray<IDivSliderRange>>;
|
|
9318
9318
|
/**
|
|
@@ -9558,7 +9558,7 @@ interface DivSliderProps {
|
|
|
9558
9558
|
/**
|
|
9559
9559
|
* Section style.
|
|
9560
9560
|
*
|
|
9561
|
-
* Platforms: android, ios
|
|
9561
|
+
* Platforms: android, ios, web
|
|
9562
9562
|
*/
|
|
9563
9563
|
ranges?: Type<NonEmptyArray<IDivSliderRange>>;
|
|
9564
9564
|
/**
|
|
@@ -12425,14 +12425,14 @@ interface IDivTooltip {
|
|
|
12425
12425
|
* Tooltip appearance animation. By default, the tooltip will be appearing gradually with an
|
|
12426
12426
|
* offset from the anchor point by 10 dp.
|
|
12427
12427
|
*
|
|
12428
|
-
* Platforms: android, web
|
|
12428
|
+
* Platforms: android, ios, web
|
|
12429
12429
|
*/
|
|
12430
12430
|
animation_in?: Type<IDivAnimation>;
|
|
12431
12431
|
/**
|
|
12432
12432
|
* Tooltip disappearance animation. By default, the tooltip will disappear gradually with an
|
|
12433
12433
|
* offset from the anchor point by 10 dp.
|
|
12434
12434
|
*
|
|
12435
|
-
* Platforms: android, web
|
|
12435
|
+
* Platforms: android, ios, web
|
|
12436
12436
|
*/
|
|
12437
12437
|
animation_out?: Type<IDivAnimation>;
|
|
12438
12438
|
/**
|