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 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
@@ -29,6 +29,7 @@ declare const _default: {
29
29
  front: boolean;
30
30
  back: boolean;
31
31
  };
32
+ initial_html: undefined | string;
32
33
  htmlButtonBehaviour: string;
33
34
  onHtmlButtonClick: (html: any) => void;
34
35
  merge_variables: ({
@@ -0,0 +1,4 @@
1
+ /**
2
+ * Converts old format HTML (with CSS classes) to new format HTML (with inline styles)
3
+ */
4
+ export declare function convertOldToNewFormat(oldHtml: string): string;
@@ -0,0 +1 @@
1
+ export {};