@divkitframework/jsonbuilder 30.11.0 → 30.12.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 +10 -2
- package/package.json +1 -1
package/dist/jsonbuilder.d.ts
CHANGED
|
@@ -4663,11 +4663,11 @@ interface IDivLayoutProvider {
|
|
|
4663
4663
|
/**
|
|
4664
4664
|
* Variable name to store element height.
|
|
4665
4665
|
*/
|
|
4666
|
-
height_variable_name?: Type<string
|
|
4666
|
+
height_variable_name?: Type<string>;
|
|
4667
4667
|
/**
|
|
4668
4668
|
* Variable name to store element width.
|
|
4669
4669
|
*/
|
|
4670
|
-
width_variable_name?: Type<string
|
|
4670
|
+
width_variable_name?: Type<string>;
|
|
4671
4671
|
}
|
|
4672
4672
|
|
|
4673
4673
|
declare type DivLineStyle = 'none' | 'single';
|
|
@@ -5324,6 +5324,14 @@ interface IDivPatch {
|
|
|
5324
5324
|
* there are errors, they are reported.
|
|
5325
5325
|
*/
|
|
5326
5326
|
mode?: DivPatchMode | DivExpression;
|
|
5327
|
+
/**
|
|
5328
|
+
* Actions after applying patch.
|
|
5329
|
+
*/
|
|
5330
|
+
on_applied_actions?: NonEmptyArray<IDivAction>;
|
|
5331
|
+
/**
|
|
5332
|
+
* Actions after an error applying patch in transactional mode.
|
|
5333
|
+
*/
|
|
5334
|
+
on_failed_actions?: NonEmptyArray<IDivAction>;
|
|
5327
5335
|
}
|
|
5328
5336
|
declare type DivPatchMode = 'transactional' | 'partial';
|
|
5329
5337
|
interface IDivPatchChange {
|