legalesign-document-viewer-react 0.9.8 → 0.9.15

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.
@@ -35,6 +35,7 @@ import { LsHelperBar as LsHelperBarElement, defineCustomElement as defineLsHelpe
35
35
  import { LsIcon as LsIconElement, defineCustomElement as defineLsIcon } from "legalesign-document-viewer/dist/components/ls-icon.js";
36
36
  import { LsInputWrapper as LsInputWrapperElement, defineCustomElement as defineLsInputWrapper } from "legalesign-document-viewer/dist/components/ls-input-wrapper.js";
37
37
  import { LsKeyboardShortcuts as LsKeyboardShortcutsElement, defineCustomElement as defineLsKeyboardShortcuts } from "legalesign-document-viewer/dist/components/ls-keyboard-shortcuts.js";
38
+ import { LsLeftBar as LsLeftBarElement, defineCustomElement as defineLsLeftBar } from "legalesign-document-viewer/dist/components/ls-left-bar.js";
38
39
  import { LsNumberInput as LsNumberInputElement, defineCustomElement as defineLsNumberInput } from "legalesign-document-viewer/dist/components/ls-number-input.js";
39
40
  import { LsPageLoader as LsPageLoaderElement, defineCustomElement as defineLsPageLoader } from "legalesign-document-viewer/dist/components/ls-page-loader.js";
40
41
  import { LsParticipantCard as LsParticipantCardElement, defineCustomElement as defineLsParticipantCard } from "legalesign-document-viewer/dist/components/ls-participant-card.js";
@@ -366,6 +367,17 @@ export const LsKeyboardShortcuts = /*@__PURE__*/ createComponent({
366
367
  events: {},
367
368
  defineCustomElement: defineLsKeyboardShortcuts
368
369
  });
370
+ export const LsLeftBar = /*@__PURE__*/ createComponent({
371
+ tagName: 'ls-left-bar',
372
+ elementClass: LsLeftBarElement,
373
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
374
+ react: React,
375
+ events: {
376
+ onManagerChange: 'managerChange',
377
+ onClearSelected: 'clearSelected'
378
+ },
379
+ defineCustomElement: defineLsLeftBar
380
+ });
369
381
  export const LsNumberInput = /*@__PURE__*/ createComponent({
370
382
  tagName: 'ls-number-input',
371
383
  elementClass: LsNumberInputElement,
@@ -39,6 +39,7 @@ import { LsHelperBar as LsHelperBarElement } from "legalesign-document-viewer/di
39
39
  import { LsIcon as LsIconElement } from "legalesign-document-viewer/dist/components/ls-icon.js";
40
40
  import { LsInputWrapper as LsInputWrapperElement } from "legalesign-document-viewer/dist/components/ls-input-wrapper.js";
41
41
  import { LsKeyboardShortcuts as LsKeyboardShortcutsElement } from "legalesign-document-viewer/dist/components/ls-keyboard-shortcuts.js";
42
+ import { LsLeftBar as LsLeftBarElement } from "legalesign-document-viewer/dist/components/ls-left-bar.js";
42
43
  import { LsNumberInput as LsNumberInputElement } from "legalesign-document-viewer/dist/components/ls-number-input.js";
43
44
  import { LsPageLoader as LsPageLoaderElement } from "legalesign-document-viewer/dist/components/ls-page-loader.js";
44
45
  import { LsParticipantCard as LsParticipantCardElement } from "legalesign-document-viewer/dist/components/ls-participant-card.js";
@@ -183,6 +184,11 @@ export type LsInputWrapperEvents = NonNullable<unknown>;
183
184
  export declare const LsInputWrapper: StencilReactComponent<LsInputWrapperElement, LsInputWrapperEvents>;
184
185
  export type LsKeyboardShortcutsEvents = NonNullable<unknown>;
185
186
  export declare const LsKeyboardShortcuts: StencilReactComponent<LsKeyboardShortcutsElement, LsKeyboardShortcutsEvents>;
187
+ export type LsLeftBarEvents = {
188
+ onManagerChange: EventName<CustomEvent<string>>;
189
+ onClearSelected: EventName<CustomEvent<void>>;
190
+ };
191
+ export declare const LsLeftBar: StencilReactComponent<LsLeftBarElement, LsLeftBarEvents>;
186
192
  export type LsNumberInputEvents = NonNullable<unknown>;
187
193
  export declare const LsNumberInput: StencilReactComponent<LsNumberInputElement, LsNumberInputEvents>;
188
194
  export type LsPageLoaderEvents = NonNullable<unknown>;
@@ -45,6 +45,7 @@ import { LsHelperBar as LsHelperBarElement, defineCustomElement as defineLsHelpe
45
45
  import { LsIcon as LsIconElement, defineCustomElement as defineLsIcon } from "legalesign-document-viewer/dist/components/ls-icon.js";
46
46
  import { LsInputWrapper as LsInputWrapperElement, defineCustomElement as defineLsInputWrapper } from "legalesign-document-viewer/dist/components/ls-input-wrapper.js";
47
47
  import { LsKeyboardShortcuts as LsKeyboardShortcutsElement, defineCustomElement as defineLsKeyboardShortcuts } from "legalesign-document-viewer/dist/components/ls-keyboard-shortcuts.js";
48
+ import { LsLeftBar as LsLeftBarElement, defineCustomElement as defineLsLeftBar } from "legalesign-document-viewer/dist/components/ls-left-bar.js";
48
49
  import { LsNumberInput as LsNumberInputElement, defineCustomElement as defineLsNumberInput } from "legalesign-document-viewer/dist/components/ls-number-input.js";
49
50
  import { LsPageLoader as LsPageLoaderElement, defineCustomElement as defineLsPageLoader } from "legalesign-document-viewer/dist/components/ls-page-loader.js";
50
51
  import { LsParticipantCard as LsParticipantCardElement, defineCustomElement as defineLsParticipantCard } from "legalesign-document-viewer/dist/components/ls-participant-card.js";
@@ -512,6 +513,23 @@ export const LsKeyboardShortcuts: StencilReactComponent<LsKeyboardShortcutsEleme
512
513
  defineCustomElement: defineLsKeyboardShortcuts
513
514
  });
514
515
 
516
+ export type LsLeftBarEvents = {
517
+ onManagerChange: EventName<CustomEvent<string>>,
518
+ onClearSelected: EventName<CustomEvent<void>>
519
+ };
520
+
521
+ export const LsLeftBar: StencilReactComponent<LsLeftBarElement, LsLeftBarEvents> = /*@__PURE__*/ createComponent<LsLeftBarElement, LsLeftBarEvents>({
522
+ tagName: 'ls-left-bar',
523
+ elementClass: LsLeftBarElement,
524
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
525
+ react: React,
526
+ events: {
527
+ onManagerChange: 'managerChange',
528
+ onClearSelected: 'clearSelected'
529
+ } as LsLeftBarEvents,
530
+ defineCustomElement: defineLsLeftBar
531
+ });
532
+
515
533
  export type LsNumberInputEvents = NonNullable<unknown>;
516
534
 
517
535
  export const LsNumberInput: StencilReactComponent<LsNumberInputElement, LsNumberInputEvents> = /*@__PURE__*/ createComponent<LsNumberInputElement, LsNumberInputEvents>({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "legalesign-document-viewer-react",
3
- "version": "0.9.8",
3
+ "version": "0.9.15",
4
4
  "description": "Legalesign React Editor / Viewers",
5
5
  "keywords": [
6
6
  "stencilJS",
@@ -26,12 +26,6 @@
26
26
  "exclude": [
27
27
  "node_modules"
28
28
  ],
29
- "scripts": {
30
- "build": "pnpm run tsc",
31
- "tsc": "tsc -p . --outDir ./dist",
32
- "getiton": "pnpm install legalesign-document-viewer@latest",
33
- "publish": "npm publish --scope=public"
34
- },
35
29
  "publishConfig": {
36
30
  "access": "public"
37
31
  },
@@ -50,11 +44,15 @@
50
44
  },
51
45
  "dependencies": {
52
46
  "@stencil/react-output-target": "^1.2.0",
53
- "legalesign-document-viewer": "^0.9.8"
47
+ "legalesign-document-viewer": "^0.9.15"
54
48
  },
55
- "pnpm": {
56
- "overrides": {
57
- "legalesign-document-viewer": "link:../../../Library/pnpm/global/5/node_modules/legalesign-document-viewer"
58
- }
49
+ "repository": {
50
+ "type": "git",
51
+ "url": "https://github.com/legalesign/ls-document-viewer.git"
52
+ },
53
+ "scripts": {
54
+ "build": "pnpm run tsc",
55
+ "tsc": "tsc -p . --outDir ./dist",
56
+ "getiton": "pnpm install legalesign-document-viewer@latest"
59
57
  }
60
- }
58
+ }