jvs-draw 1.1.22 → 1.1.23
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/index.d.ts +3 -1
- package/dist/jvs-draw.es.js +2 -0
- package/dist/jvs-draw.umd.js +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import { default as JvsDraw } from './App.vue';
|
|
2
2
|
import { setConfig, globalConfig, JvsDrawConfig } from './config';
|
|
3
|
+
import { exportToImage as exportImage } from './utils/export';
|
|
4
|
+
import { exportToSVG as exportSVG } from './utils/exportSVG';
|
|
3
5
|
import { saveDesign, getDesignById } from './api/design';
|
|
4
6
|
export type { DesignSaveDTO } from './api/design';
|
|
5
|
-
export { JvsDraw, setConfig, saveDesign, getDesignById, type JvsDrawConfig, globalConfig };
|
|
7
|
+
export { JvsDraw, setConfig, saveDesign, getDesignById, type JvsDrawConfig, globalConfig, exportImage, exportSVG };
|
|
6
8
|
export default JvsDraw;
|
package/dist/jvs-draw.es.js
CHANGED
|
@@ -459367,6 +459367,8 @@ JvsDraw.install = function(e1, n1) {
|
|
|
459367
459367
|
export {
|
|
459368
459368
|
JvsDraw,
|
|
459369
459369
|
JvsDraw as default,
|
|
459370
|
+
exportToImage as exportImage,
|
|
459371
|
+
exportToSVG as exportSVG,
|
|
459370
459372
|
getDesignById,
|
|
459371
459373
|
globalConfig,
|
|
459372
459374
|
saveDesign,
|