legalesign-document-viewer-react 0.3.0 → 0.3.1

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.
@@ -32,6 +32,7 @@ import { LsFormfield as LsFormfieldElement, defineCustomElement as defineLsFormf
32
32
  import { LsIcon as LsIconElement, defineCustomElement as defineLsIcon } from "legalesign-document-viewer/dist/components/ls-icon.js";
33
33
  import { LsInputWrapper as LsInputWrapperElement, defineCustomElement as defineLsInputWrapper } from "legalesign-document-viewer/dist/components/ls-input-wrapper.js";
34
34
  import { LsNumberInput as LsNumberInputElement, defineCustomElement as defineLsNumberInput } from "legalesign-document-viewer/dist/components/ls-number-input.js";
35
+ import { LsPageLoader as LsPageLoaderElement, defineCustomElement as defineLsPageLoader } from "legalesign-document-viewer/dist/components/ls-page-loader.js";
35
36
  import { LsParticipantCard as LsParticipantCardElement, defineCustomElement as defineLsParticipantCard } from "legalesign-document-viewer/dist/components/ls-participant-card.js";
36
37
  import { LsParticipantManager as LsParticipantManagerElement, defineCustomElement as defineLsParticipantManager } from "legalesign-document-viewer/dist/components/ls-participant-manager.js";
37
38
  import { LsParticipantSelect as LsParticipantSelectElement, defineCustomElement as defineLsParticipantSelect } from "legalesign-document-viewer/dist/components/ls-participant-select.js";
@@ -44,6 +45,7 @@ import { LsTextareaInput as LsTextareaInputElement, defineCustomElement as defin
44
45
  import { LsToggle as LsToggleElement, defineCustomElement as defineLsToggle } from "legalesign-document-viewer/dist/components/ls-toggle.js";
45
46
  import { LsToolbar as LsToolbarElement, defineCustomElement as defineLsToolbar } from "legalesign-document-viewer/dist/components/ls-toolbar.js";
46
47
  import { LsToolboxField as LsToolboxFieldElement, defineCustomElement as defineLsToolboxField } from "legalesign-document-viewer/dist/components/ls-toolbox-field.js";
48
+ import { LsTooltip as LsTooltipElement, defineCustomElement as defineLsTooltip } from "legalesign-document-viewer/dist/components/ls-tooltip.js";
47
49
  import { LsValidationTag as LsValidationTagElement, defineCustomElement as defineLsValidationTag } from "legalesign-document-viewer/dist/components/ls-validation-tag.js";
48
50
  import React from 'react';
49
51
  export const LsDocumentOptions = /*@__PURE__*/ createComponent({
@@ -149,7 +151,8 @@ export const LsFieldFooter = /*@__PURE__*/ createComponent({
149
151
  react: React,
150
152
  events: {
151
153
  onMutate: 'mutate',
152
- onUpdate: 'update'
154
+ onUpdate: 'update',
155
+ onSelectFields: 'selectFields'
153
156
  },
154
157
  defineCustomElement: defineLsFieldFooter
155
158
  });
@@ -263,7 +266,10 @@ export const LsFieldPropertiesMultiple = /*@__PURE__*/ createComponent({
263
266
  elementClass: LsFieldPropertiesMultipleElement,
264
267
  // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
265
268
  react: React,
266
- events: {},
269
+ events: {
270
+ onMutate: 'mutate',
271
+ onUpdate: 'update'
272
+ },
267
273
  defineCustomElement: defineLsFieldPropertiesMultiple
268
274
  });
269
275
  export const LsFieldPropertiesNumber = /*@__PURE__*/ createComponent({
@@ -341,6 +347,14 @@ export const LsNumberInput = /*@__PURE__*/ createComponent({
341
347
  events: {},
342
348
  defineCustomElement: defineLsNumberInput
343
349
  });
350
+ export const LsPageLoader = /*@__PURE__*/ createComponent({
351
+ tagName: 'ls-page-loader',
352
+ elementClass: LsPageLoaderElement,
353
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
354
+ react: React,
355
+ events: {},
356
+ defineCustomElement: defineLsPageLoader
357
+ });
344
358
  export const LsParticipantCard = /*@__PURE__*/ createComponent({
345
359
  tagName: 'ls-participant-card',
346
360
  elementClass: LsParticipantCardElement,
@@ -449,9 +463,17 @@ export const LsToolboxField = /*@__PURE__*/ createComponent({
449
463
  elementClass: LsToolboxFieldElement,
450
464
  // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
451
465
  react: React,
452
- events: {},
466
+ events: { onSelected: 'selected' },
453
467
  defineCustomElement: defineLsToolboxField
454
468
  });
469
+ export const LsTooltip = /*@__PURE__*/ createComponent({
470
+ tagName: 'ls-tooltip',
471
+ elementClass: LsTooltipElement,
472
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
473
+ react: React,
474
+ events: {},
475
+ defineCustomElement: defineLsTooltip
476
+ });
455
477
  export const LsValidationTag = /*@__PURE__*/ createComponent({
456
478
  tagName: 'ls-validation-tag',
457
479
  elementClass: LsValidationTagElement,
@@ -3,7 +3,7 @@
3
3
  * Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
4
4
  */
5
5
  import type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';
6
- import { type LSApiElement, type LSApiRole, type LSApiRoleType, type LSMutateEvent, type LsDocumentOptionsCustomEvent, type LsDocumentViewerCustomEvent, type LsEditorFieldCustomEvent, type LsFieldAlignmentCustomEvent, type LsFieldContentCustomEvent, type LsFieldDimensionsCustomEvent, type LsFieldDistributeCustomEvent, type LsFieldFooterCustomEvent, type LsFieldFormatCustomEvent, type LsFieldPlacementCustomEvent, type LsFieldPropertiesAdvancedCustomEvent, type LsFieldSizeCustomEvent, type LsParticipantCardCustomEvent, type LsParticipantManagerCustomEvent, type LsParticipantSelectCustomEvent, type LsToolbarCustomEvent } from "legalesign-document-viewer";
6
+ import { type LSApiElement, type LSApiRole, type LSApiRoleType, type LSMutateEvent, type LsDocumentOptionsCustomEvent, type LsDocumentViewerCustomEvent, type LsEditorFieldCustomEvent, type LsFieldAlignmentCustomEvent, type LsFieldContentCustomEvent, type LsFieldDimensionsCustomEvent, type LsFieldDistributeCustomEvent, type LsFieldFooterCustomEvent, type LsFieldFormatCustomEvent, type LsFieldPlacementCustomEvent, type LsFieldPropertiesAdvancedCustomEvent, type LsFieldPropertiesMultipleCustomEvent, type LsFieldSizeCustomEvent, type LsParticipantCardCustomEvent, type LsParticipantManagerCustomEvent, type LsParticipantSelectCustomEvent, type LsToolbarCustomEvent } from "legalesign-document-viewer";
7
7
  import { LsDocumentOptions as LsDocumentOptionsElement } from "legalesign-document-viewer/dist/components/ls-document-options.js";
8
8
  import { LsDocumentViewer as LsDocumentViewerElement } from "legalesign-document-viewer/dist/components/ls-document-viewer.js";
9
9
  import { LsEditorField as LsEditorFieldElement } from "legalesign-document-viewer/dist/components/ls-editor-field.js";
@@ -36,6 +36,7 @@ import { LsFormfield as LsFormfieldElement } from "legalesign-document-viewer/di
36
36
  import { LsIcon as LsIconElement } from "legalesign-document-viewer/dist/components/ls-icon.js";
37
37
  import { LsInputWrapper as LsInputWrapperElement } from "legalesign-document-viewer/dist/components/ls-input-wrapper.js";
38
38
  import { LsNumberInput as LsNumberInputElement } from "legalesign-document-viewer/dist/components/ls-number-input.js";
39
+ import { LsPageLoader as LsPageLoaderElement } from "legalesign-document-viewer/dist/components/ls-page-loader.js";
39
40
  import { LsParticipantCard as LsParticipantCardElement } from "legalesign-document-viewer/dist/components/ls-participant-card.js";
40
41
  import { LsParticipantManager as LsParticipantManagerElement } from "legalesign-document-viewer/dist/components/ls-participant-manager.js";
41
42
  import { LsParticipantSelect as LsParticipantSelectElement } from "legalesign-document-viewer/dist/components/ls-participant-select.js";
@@ -48,6 +49,7 @@ import { LsTextareaInput as LsTextareaInputElement } from "legalesign-document-v
48
49
  import { LsToggle as LsToggleElement } from "legalesign-document-viewer/dist/components/ls-toggle.js";
49
50
  import { LsToolbar as LsToolbarElement } from "legalesign-document-viewer/dist/components/ls-toolbar.js";
50
51
  import { LsToolboxField as LsToolboxFieldElement } from "legalesign-document-viewer/dist/components/ls-toolbox-field.js";
52
+ import { LsTooltip as LsTooltipElement } from "legalesign-document-viewer/dist/components/ls-tooltip.js";
51
53
  import { LsValidationTag as LsValidationTagElement } from "legalesign-document-viewer/dist/components/ls-validation-tag.js";
52
54
  export type LsDocumentOptionsEvents = {
53
55
  onMutate: EventName<LsDocumentOptionsCustomEvent<LSMutateEvent[]>>;
@@ -96,6 +98,7 @@ export declare const LsFieldDistribute: StencilReactComponent<LsFieldDistributeE
96
98
  export type LsFieldFooterEvents = {
97
99
  onMutate: EventName<LsFieldFooterCustomEvent<LSMutateEvent[]>>;
98
100
  onUpdate: EventName<LsFieldFooterCustomEvent<LSMutateEvent[]>>;
101
+ onSelectFields: EventName<LsFieldFooterCustomEvent<LSApiElement[]>>;
99
102
  };
100
103
  export declare const LsFieldFooter: StencilReactComponent<LsFieldFooterElement, LsFieldFooterEvents>;
101
104
  export type LsFieldFormatEvents = {
@@ -131,7 +134,10 @@ export type LsFieldPropertiesGeneralEvents = NonNullable<unknown>;
131
134
  export declare const LsFieldPropertiesGeneral: StencilReactComponent<LsFieldPropertiesGeneralElement, LsFieldPropertiesGeneralEvents>;
132
135
  export type LsFieldPropertiesImageEvents = NonNullable<unknown>;
133
136
  export declare const LsFieldPropertiesImage: StencilReactComponent<LsFieldPropertiesImageElement, LsFieldPropertiesImageEvents>;
134
- export type LsFieldPropertiesMultipleEvents = NonNullable<unknown>;
137
+ export type LsFieldPropertiesMultipleEvents = {
138
+ onMutate: EventName<LsFieldPropertiesMultipleCustomEvent<LSMutateEvent[]>>;
139
+ onUpdate: EventName<LsFieldPropertiesMultipleCustomEvent<LSMutateEvent[]>>;
140
+ };
135
141
  export declare const LsFieldPropertiesMultiple: StencilReactComponent<LsFieldPropertiesMultipleElement, LsFieldPropertiesMultipleEvents>;
136
142
  export type LsFieldPropertiesNumberEvents = NonNullable<unknown>;
137
143
  export declare const LsFieldPropertiesNumber: StencilReactComponent<LsFieldPropertiesNumberElement, LsFieldPropertiesNumberEvents>;
@@ -156,6 +162,8 @@ export type LsInputWrapperEvents = NonNullable<unknown>;
156
162
  export declare const LsInputWrapper: StencilReactComponent<LsInputWrapperElement, LsInputWrapperEvents>;
157
163
  export type LsNumberInputEvents = NonNullable<unknown>;
158
164
  export declare const LsNumberInput: StencilReactComponent<LsNumberInputElement, LsNumberInputEvents>;
165
+ export type LsPageLoaderEvents = NonNullable<unknown>;
166
+ export declare const LsPageLoader: StencilReactComponent<LsPageLoaderElement, LsPageLoaderEvents>;
159
167
  export type LsParticipantCardEvents = {
160
168
  onMutate: EventName<LsParticipantCardCustomEvent<LSMutateEvent[]>>;
161
169
  onUpdate: EventName<LsParticipantCardCustomEvent<LSMutateEvent[]>>;
@@ -206,7 +214,11 @@ export type LsToolbarEvents = {
206
214
  onUpdate: EventName<LsToolbarCustomEvent<LSMutateEvent[]>>;
207
215
  };
208
216
  export declare const LsToolbar: StencilReactComponent<LsToolbarElement, LsToolbarEvents>;
209
- export type LsToolboxFieldEvents = NonNullable<unknown>;
217
+ export type LsToolboxFieldEvents = {
218
+ onSelected: EventName<CustomEvent<any>>;
219
+ };
210
220
  export declare const LsToolboxField: StencilReactComponent<LsToolboxFieldElement, LsToolboxFieldEvents>;
221
+ export type LsTooltipEvents = NonNullable<unknown>;
222
+ export declare const LsTooltip: StencilReactComponent<LsTooltipElement, LsTooltipEvents>;
211
223
  export type LsValidationTagEvents = NonNullable<unknown>;
212
224
  export declare const LsValidationTag: StencilReactComponent<LsValidationTagElement, LsValidationTagEvents>;
@@ -9,7 +9,7 @@
9
9
 
10
10
  import type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';
11
11
  import { createComponent } from '@stencil/react-output-target/runtime';
12
- import { type LSApiElement, type LSApiRole, type LSApiRoleType, type LSMutateEvent, type LsDocumentOptionsCustomEvent, type LsDocumentViewerCustomEvent, type LsEditorFieldCustomEvent, type LsFieldAlignmentCustomEvent, type LsFieldContentCustomEvent, type LsFieldDimensionsCustomEvent, type LsFieldDistributeCustomEvent, type LsFieldFooterCustomEvent, type LsFieldFormatCustomEvent, type LsFieldPlacementCustomEvent, type LsFieldPropertiesAdvancedCustomEvent, type LsFieldSizeCustomEvent, type LsParticipantCardCustomEvent, type LsParticipantManagerCustomEvent, type LsParticipantSelectCustomEvent, type LsToolbarCustomEvent } from "legalesign-document-viewer";
12
+ import { type LSApiElement, type LSApiRole, type LSApiRoleType, type LSMutateEvent, type LsDocumentOptionsCustomEvent, type LsDocumentViewerCustomEvent, type LsEditorFieldCustomEvent, type LsFieldAlignmentCustomEvent, type LsFieldContentCustomEvent, type LsFieldDimensionsCustomEvent, type LsFieldDistributeCustomEvent, type LsFieldFooterCustomEvent, type LsFieldFormatCustomEvent, type LsFieldPlacementCustomEvent, type LsFieldPropertiesAdvancedCustomEvent, type LsFieldPropertiesMultipleCustomEvent, type LsFieldSizeCustomEvent, type LsParticipantCardCustomEvent, type LsParticipantManagerCustomEvent, type LsParticipantSelectCustomEvent, type LsToolbarCustomEvent } from "legalesign-document-viewer";
13
13
  import { LsDocumentOptions as LsDocumentOptionsElement, defineCustomElement as defineLsDocumentOptions } from "legalesign-document-viewer/dist/components/ls-document-options.js";
14
14
  import { LsDocumentViewer as LsDocumentViewerElement, defineCustomElement as defineLsDocumentViewer } from "legalesign-document-viewer/dist/components/ls-document-viewer.js";
15
15
  import { LsEditorField as LsEditorFieldElement, defineCustomElement as defineLsEditorField } from "legalesign-document-viewer/dist/components/ls-editor-field.js";
@@ -42,6 +42,7 @@ import { LsFormfield as LsFormfieldElement, defineCustomElement as defineLsFormf
42
42
  import { LsIcon as LsIconElement, defineCustomElement as defineLsIcon } from "legalesign-document-viewer/dist/components/ls-icon.js";
43
43
  import { LsInputWrapper as LsInputWrapperElement, defineCustomElement as defineLsInputWrapper } from "legalesign-document-viewer/dist/components/ls-input-wrapper.js";
44
44
  import { LsNumberInput as LsNumberInputElement, defineCustomElement as defineLsNumberInput } from "legalesign-document-viewer/dist/components/ls-number-input.js";
45
+ import { LsPageLoader as LsPageLoaderElement, defineCustomElement as defineLsPageLoader } from "legalesign-document-viewer/dist/components/ls-page-loader.js";
45
46
  import { LsParticipantCard as LsParticipantCardElement, defineCustomElement as defineLsParticipantCard } from "legalesign-document-viewer/dist/components/ls-participant-card.js";
46
47
  import { LsParticipantManager as LsParticipantManagerElement, defineCustomElement as defineLsParticipantManager } from "legalesign-document-viewer/dist/components/ls-participant-manager.js";
47
48
  import { LsParticipantSelect as LsParticipantSelectElement, defineCustomElement as defineLsParticipantSelect } from "legalesign-document-viewer/dist/components/ls-participant-select.js";
@@ -54,6 +55,7 @@ import { LsTextareaInput as LsTextareaInputElement, defineCustomElement as defin
54
55
  import { LsToggle as LsToggleElement, defineCustomElement as defineLsToggle } from "legalesign-document-viewer/dist/components/ls-toggle.js";
55
56
  import { LsToolbar as LsToolbarElement, defineCustomElement as defineLsToolbar } from "legalesign-document-viewer/dist/components/ls-toolbar.js";
56
57
  import { LsToolboxField as LsToolboxFieldElement, defineCustomElement as defineLsToolboxField } from "legalesign-document-viewer/dist/components/ls-toolbox-field.js";
58
+ import { LsTooltip as LsTooltipElement, defineCustomElement as defineLsTooltip } from "legalesign-document-viewer/dist/components/ls-tooltip.js";
57
59
  import { LsValidationTag as LsValidationTagElement, defineCustomElement as defineLsValidationTag } from "legalesign-document-viewer/dist/components/ls-validation-tag.js";
58
60
  import React from 'react';
59
61
 
@@ -206,7 +208,8 @@ export const LsFieldDistribute: StencilReactComponent<LsFieldDistributeElement,
206
208
 
207
209
  export type LsFieldFooterEvents = {
208
210
  onMutate: EventName<LsFieldFooterCustomEvent<LSMutateEvent[]>>,
209
- onUpdate: EventName<LsFieldFooterCustomEvent<LSMutateEvent[]>>
211
+ onUpdate: EventName<LsFieldFooterCustomEvent<LSMutateEvent[]>>,
212
+ onSelectFields: EventName<LsFieldFooterCustomEvent<LSApiElement[]>>
210
213
  };
211
214
 
212
215
  export const LsFieldFooter: StencilReactComponent<LsFieldFooterElement, LsFieldFooterEvents> = /*@__PURE__*/ createComponent<LsFieldFooterElement, LsFieldFooterEvents>({
@@ -216,7 +219,8 @@ export const LsFieldFooter: StencilReactComponent<LsFieldFooterElement, LsFieldF
216
219
  react: React,
217
220
  events: {
218
221
  onMutate: 'mutate',
219
- onUpdate: 'update'
222
+ onUpdate: 'update',
223
+ onSelectFields: 'selectFields'
220
224
  } as LsFieldFooterEvents,
221
225
  defineCustomElement: defineLsFieldFooter
222
226
  });
@@ -371,14 +375,20 @@ export const LsFieldPropertiesImage: StencilReactComponent<LsFieldPropertiesImag
371
375
  defineCustomElement: defineLsFieldPropertiesImage
372
376
  });
373
377
 
374
- export type LsFieldPropertiesMultipleEvents = NonNullable<unknown>;
378
+ export type LsFieldPropertiesMultipleEvents = {
379
+ onMutate: EventName<LsFieldPropertiesMultipleCustomEvent<LSMutateEvent[]>>,
380
+ onUpdate: EventName<LsFieldPropertiesMultipleCustomEvent<LSMutateEvent[]>>
381
+ };
375
382
 
376
383
  export const LsFieldPropertiesMultiple: StencilReactComponent<LsFieldPropertiesMultipleElement, LsFieldPropertiesMultipleEvents> = /*@__PURE__*/ createComponent<LsFieldPropertiesMultipleElement, LsFieldPropertiesMultipleEvents>({
377
384
  tagName: 'ls-field-properties-multiple',
378
385
  elementClass: LsFieldPropertiesMultipleElement,
379
386
  // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
380
387
  react: React,
381
- events: {} as LsFieldPropertiesMultipleEvents,
388
+ events: {
389
+ onMutate: 'mutate',
390
+ onUpdate: 'update'
391
+ } as LsFieldPropertiesMultipleEvents,
382
392
  defineCustomElement: defineLsFieldPropertiesMultiple
383
393
  });
384
394
 
@@ -487,6 +497,17 @@ export const LsNumberInput: StencilReactComponent<LsNumberInputElement, LsNumber
487
497
  defineCustomElement: defineLsNumberInput
488
498
  });
489
499
 
500
+ export type LsPageLoaderEvents = NonNullable<unknown>;
501
+
502
+ export const LsPageLoader: StencilReactComponent<LsPageLoaderElement, LsPageLoaderEvents> = /*@__PURE__*/ createComponent<LsPageLoaderElement, LsPageLoaderEvents>({
503
+ tagName: 'ls-page-loader',
504
+ elementClass: LsPageLoaderElement,
505
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
506
+ react: React,
507
+ events: {} as LsPageLoaderEvents,
508
+ defineCustomElement: defineLsPageLoader
509
+ });
510
+
490
511
  export type LsParticipantCardEvents = {
491
512
  onMutate: EventName<LsParticipantCardCustomEvent<LSMutateEvent[]>>,
492
513
  onUpdate: EventName<LsParticipantCardCustomEvent<LSMutateEvent[]>>,
@@ -638,17 +659,28 @@ export const LsToolbar: StencilReactComponent<LsToolbarElement, LsToolbarEvents>
638
659
  defineCustomElement: defineLsToolbar
639
660
  });
640
661
 
641
- export type LsToolboxFieldEvents = NonNullable<unknown>;
662
+ export type LsToolboxFieldEvents = { onSelected: EventName<CustomEvent<any>> };
642
663
 
643
664
  export const LsToolboxField: StencilReactComponent<LsToolboxFieldElement, LsToolboxFieldEvents> = /*@__PURE__*/ createComponent<LsToolboxFieldElement, LsToolboxFieldEvents>({
644
665
  tagName: 'ls-toolbox-field',
645
666
  elementClass: LsToolboxFieldElement,
646
667
  // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
647
668
  react: React,
648
- events: {} as LsToolboxFieldEvents,
669
+ events: { onSelected: 'selected' } as LsToolboxFieldEvents,
649
670
  defineCustomElement: defineLsToolboxField
650
671
  });
651
672
 
673
+ export type LsTooltipEvents = NonNullable<unknown>;
674
+
675
+ export const LsTooltip: StencilReactComponent<LsTooltipElement, LsTooltipEvents> = /*@__PURE__*/ createComponent<LsTooltipElement, LsTooltipEvents>({
676
+ tagName: 'ls-tooltip',
677
+ elementClass: LsTooltipElement,
678
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
679
+ react: React,
680
+ events: {} as LsTooltipEvents,
681
+ defineCustomElement: defineLsTooltip
682
+ });
683
+
652
684
  export type LsValidationTagEvents = NonNullable<unknown>;
653
685
 
654
686
  export const LsValidationTag: StencilReactComponent<LsValidationTagElement, LsValidationTagEvents> = /*@__PURE__*/ createComponent<LsValidationTagElement, LsValidationTagEvents>({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "legalesign-document-viewer-react",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Legalesign React Editor / Viewers",
5
5
  "keywords": [
6
6
  "stencilJS",
@@ -50,7 +50,7 @@
50
50
  },
51
51
  "dependencies": {
52
52
  "@stencil/react-output-target": "^1.2.0",
53
- "legalesign-document-viewer": "^0.3.0"
53
+ "legalesign-document-viewer": "^0.3.1"
54
54
  },
55
55
  "pnpm": {
56
56
  "overrides": {