@divkitframework/jsonbuilder 28.12.0 → 28.13.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 +20 -0
- package/package.json +1 -1
package/dist/jsonbuilder.d.ts
CHANGED
|
@@ -326,6 +326,11 @@ interface IDivAction {
|
|
|
326
326
|
* Callbacks that are called after [data loading](../../interaction.dita#loading-data).
|
|
327
327
|
*/
|
|
328
328
|
download_callbacks?: Type<IDivDownloadCallbacks>;
|
|
329
|
+
/**
|
|
330
|
+
* This parameter allows you to disable the action for any reason. When an action is disabled, it
|
|
331
|
+
* stops responding to the event associated with it (click, change in visibility, etc.).
|
|
332
|
+
*/
|
|
333
|
+
is_enabled?: Type<IntBoolean | DivExpression>;
|
|
329
334
|
/**
|
|
330
335
|
* Logging ID.
|
|
331
336
|
*/
|
|
@@ -1562,6 +1567,11 @@ interface IDivDisappearAction {
|
|
|
1562
1567
|
* Callbacks that are called after [data loading](../../interaction.dita#loading-data).
|
|
1563
1568
|
*/
|
|
1564
1569
|
download_callbacks?: Type<IDivDownloadCallbacks>;
|
|
1570
|
+
/**
|
|
1571
|
+
* This parameter allows you to disable the action for any reason. When an action is disabled, it
|
|
1572
|
+
* stops responding to the event associated with it (click, change in visibility, etc.).
|
|
1573
|
+
*/
|
|
1574
|
+
is_enabled?: Type<IntBoolean | DivExpression>;
|
|
1565
1575
|
/**
|
|
1566
1576
|
* Logging ID.
|
|
1567
1577
|
*/
|
|
@@ -5788,6 +5798,11 @@ interface IDivSightAction {
|
|
|
5788
5798
|
* Callbacks that are called after [data loading](../../interaction.dita#loading-data).
|
|
5789
5799
|
*/
|
|
5790
5800
|
download_callbacks?: Type<IDivDownloadCallbacks>;
|
|
5801
|
+
/**
|
|
5802
|
+
* This parameter allows you to disable the action for any reason. When an action is disabled, it
|
|
5803
|
+
* stops responding to the event associated with it (click, change in visibility, etc.).
|
|
5804
|
+
*/
|
|
5805
|
+
is_enabled?: Type<IntBoolean | DivExpression>;
|
|
5791
5806
|
/**
|
|
5792
5807
|
* Logging ID.
|
|
5793
5808
|
*/
|
|
@@ -8280,6 +8295,11 @@ interface IDivVisibilityAction {
|
|
|
8280
8295
|
* Callbacks that are called after [data loading](../../interaction.dita#loading-data).
|
|
8281
8296
|
*/
|
|
8282
8297
|
download_callbacks?: Type<IDivDownloadCallbacks>;
|
|
8298
|
+
/**
|
|
8299
|
+
* This parameter allows you to disable the action for any reason. When an action is disabled, it
|
|
8300
|
+
* stops responding to the event associated with it (click, change in visibility, etc.).
|
|
8301
|
+
*/
|
|
8302
|
+
is_enabled?: Type<IntBoolean | DivExpression>;
|
|
8283
8303
|
/**
|
|
8284
8304
|
* Logging ID.
|
|
8285
8305
|
*/
|