@divkitframework/divkit 13.0.0 → 14.0.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": "13.0.0",
3
+ "version": "14.0.0",
4
4
  "description": "DivKit for the web",
5
5
  "keywords": [
6
6
  "server-driven-ui",
@@ -134,6 +134,7 @@ export interface DivkitInstance {
134
134
  getVariable(name: string): string | number | undefined;
135
135
  /** @deprecated */
136
136
  setVariable(name: string, value: string | number): void;
137
+ setTheme(theme: Theme): void;
137
138
  }
138
139
 
139
140
  export type Platform = 'desktop' | 'touch' | 'auto';