@divkitframework/divkit 28.10.0 → 28.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@divkitframework/divkit",
3
- "version": "28.10.0",
3
+ "version": "28.12.0",
4
4
  "description": "DivKit for the web",
5
5
  "keywords": [
6
6
  "server-driven-ui",
@@ -177,8 +177,13 @@ export interface ActionCopyToClipboard {
177
177
  content: CopyToClipboardContent;
178
178
  }
179
179
 
180
+ export interface ActionFocusElement {
181
+ type: 'focus_element';
182
+ element_id: string;
183
+ }
184
+
180
185
  export type TypedAction = ActionSetVariable | ActionArrayRemoveValue | ActionArrayInsertValue |
181
- ActionCopyToClipboard;
186
+ ActionCopyToClipboard | ActionFocusElement;
182
187
 
183
188
  export interface Action {
184
189
  log_id: string;