legalesign-document-viewer 0.0.8 → 0.0.9

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.
@@ -1 +1,2 @@
1
+ import { RoleColor } from "../../types/RoleColor";
1
2
  export declare const defaultRolePalette: RoleColor[];
@@ -3,6 +3,7 @@ import { LSApiElement } from '../../types/LSApiElement';
3
3
  import 'pdfjs-dist/web/pdf_viewer';
4
4
  import { LSApiTemplate } from '../../types/LSApiTemplate';
5
5
  import { LSMutateEvent } from '../../types/LSMutateEvent';
6
+ import { RoleColor } from '../../types/RoleColor';
6
7
  /**
7
8
  * The Legalesign page viewer converted to stencil. To use pass the standard
8
9
  * Template information from GraphQL (see Readme).
@@ -6,12 +6,14 @@
6
6
  */
7
7
  import { HTMLStencilElement, JSXBase } from "./stencil-public-runtime";
8
8
  import { LSApiTemplate } from "./types/LSApiTemplate";
9
+ import { RoleColor } from "./types/RoleColor";
9
10
  import { LSApiElement } from "./types/LSApiElement";
10
11
  import { LSMutateEvent } from "./types/LSMutateEvent";
11
12
  import { LSApiElement as LSApiElement1, LSApiTemplate as LSApiTemplate1, LsDocumentViewer as LsDocumentViewer1, LSMutateEvent as LSMutateEvent1 } from "./components";
12
13
  import { LsDocumentViewer } from "./components/ls-document-viewer/ls-document-viewer";
13
14
  import { Icon } from "./types/Icon";
14
15
  export { LSApiTemplate } from "./types/LSApiTemplate";
16
+ export { RoleColor } from "./types/RoleColor";
15
17
  export { LSApiElement } from "./types/LSApiElement";
16
18
  export { LSMutateEvent } from "./types/LSMutateEvent";
17
19
  export { LSApiElement as LSApiElement1, LSApiTemplate as LSApiTemplate1, LsDocumentViewer as LsDocumentViewer1, LSMutateEvent as LSMutateEvent1 } from "./components";
@@ -1,4 +1,4 @@
1
- type RoleColor = {
1
+ export type RoleColor = {
2
2
  primary: string;
3
3
  faded: string;
4
4
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "legalesign-document-viewer",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "description": "Legalesign Document Editor/Viewer",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.js",