@milaboratories/pl-model-common 1.17.0 → 1.18.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": "@milaboratories/pl-model-common",
3
- "version": "1.17.0",
3
+ "version": "1.18.0",
4
4
  "description": "Platforma SDK Model",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.js",
@@ -26,7 +26,7 @@
26
26
  "typescript": "~5.6.3",
27
27
  "vite": "^6.3.5",
28
28
  "vitest": "^2.1.9",
29
- "@milaboratories/build-configs": "1.0.4",
29
+ "@milaboratories/build-configs": "1.0.5",
30
30
  "@platforma-sdk/eslint-config": "1.0.3"
31
31
  },
32
32
  "scripts": {
package/src/drivers/ls.ts CHANGED
@@ -121,6 +121,9 @@ export interface LsDriver {
121
121
  * components, that handle file Drag&Drop.
122
122
  * */
123
123
  fileToImportHandle(file: FileLike): Promise<ImportFileHandle>;
124
+
125
+ /** Saves currently opened block webview as a PDF. */
126
+ exportToPdf?(): Promise<void>;
124
127
  }
125
128
 
126
129
  /** Gets a file path from an import handle. */