designertool 0.29.0 → 0.31.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/README.md +0 -15
- package/dist/components/share/GoogleMap.vue.d.ts +1 -1
- package/dist/config.d.ts +1 -0
- package/dist/converter/index.d.ts +4 -0
- package/dist/converter/test.d.ts +1 -0
- package/dist/designertool.js +4034 -3974
- package/dist/stores/canvas-store.d.ts +2 -0
- package/dist/stores/config-store.d.ts +1 -0
- package/dist/stores/global-store.d.ts +2 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -1,22 +1,7 @@
|
|
|
1
1
|
<h1 align="center">Postcard Designer Tool</h1>
|
|
2
2
|
|
|
3
|
-
## Links
|
|
4
|
-
|
|
5
|
-
- [Repo](https://github.com/webgurus-eu/dmm-designer-web 'dmm-designer-web Repo')
|
|
6
|
-
|
|
7
|
-
- [Live](<Homepage url> 'Live View')
|
|
8
|
-
|
|
9
|
-
- [API](https://dev-designer.directmailmanager.com/api 'API')
|
|
10
|
-
|
|
11
3
|
## User Guide
|
|
12
4
|
|
|
13
|
-
To use the package in your project, before installing you need to first create an .npmrc file using the following details:
|
|
14
|
-
|
|
15
|
-
```sh
|
|
16
|
-
@webgurus-eu:registry=https://npm.pkg.github.com
|
|
17
|
-
//npm.pkg.github.com/:_authToken=${NPM_TOKEN}
|
|
18
|
-
```
|
|
19
|
-
|
|
20
5
|
Install the package in your application:
|
|
21
6
|
|
|
22
7
|
```sh
|
|
@@ -66,8 +66,8 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
66
66
|
};
|
|
67
67
|
}>> & Readonly<{}>, {
|
|
68
68
|
zoom: number;
|
|
69
|
-
streetView: boolean;
|
|
70
69
|
fromLocation: string;
|
|
70
|
+
streetView: boolean;
|
|
71
71
|
directions: boolean;
|
|
72
72
|
latitude: number;
|
|
73
73
|
longitude: number;
|
package/dist/config.d.ts
CHANGED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|