legalesign-document-viewer-react 0.2.12 → 0.2.13
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.
|
@@ -43,6 +43,7 @@ import { LsTextareaInput as LsTextareaInputElement, defineCustomElement as defin
|
|
|
43
43
|
import { LsToggle as LsToggleElement, defineCustomElement as defineLsToggle } from "legalesign-document-viewer/dist/components/ls-toggle.js";
|
|
44
44
|
import { LsToolbar as LsToolbarElement, defineCustomElement as defineLsToolbar } from "legalesign-document-viewer/dist/components/ls-toolbar.js";
|
|
45
45
|
import { LsToolboxField as LsToolboxFieldElement, defineCustomElement as defineLsToolboxField } from "legalesign-document-viewer/dist/components/ls-toolbox-field.js";
|
|
46
|
+
import { LsValidationTag as LsValidationTagElement, defineCustomElement as defineLsValidationTag } from "legalesign-document-viewer/dist/components/ls-validation-tag.js";
|
|
46
47
|
import React from 'react';
|
|
47
48
|
export const LsDocumentOptions = /*@__PURE__*/ createComponent({
|
|
48
49
|
tagName: 'ls-document-options',
|
|
@@ -438,3 +439,11 @@ export const LsToolboxField = /*@__PURE__*/ createComponent({
|
|
|
438
439
|
events: {},
|
|
439
440
|
defineCustomElement: defineLsToolboxField
|
|
440
441
|
});
|
|
442
|
+
export const LsValidationTag = /*@__PURE__*/ createComponent({
|
|
443
|
+
tagName: 'ls-validation-tag',
|
|
444
|
+
elementClass: LsValidationTagElement,
|
|
445
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
446
|
+
react: React,
|
|
447
|
+
events: {},
|
|
448
|
+
defineCustomElement: defineLsValidationTag
|
|
449
|
+
});
|
|
@@ -47,6 +47,7 @@ import { LsTextareaInput as LsTextareaInputElement } from "legalesign-document-v
|
|
|
47
47
|
import { LsToggle as LsToggleElement } from "legalesign-document-viewer/dist/components/ls-toggle.js";
|
|
48
48
|
import { LsToolbar as LsToolbarElement } from "legalesign-document-viewer/dist/components/ls-toolbar.js";
|
|
49
49
|
import { LsToolboxField as LsToolboxFieldElement } from "legalesign-document-viewer/dist/components/ls-toolbox-field.js";
|
|
50
|
+
import { LsValidationTag as LsValidationTagElement } from "legalesign-document-viewer/dist/components/ls-validation-tag.js";
|
|
50
51
|
export type LsDocumentOptionsEvents = {
|
|
51
52
|
onMutate: EventName<LsDocumentOptionsCustomEvent<LSMutateEvent[]>>;
|
|
52
53
|
onUpdate: EventName<LsDocumentOptionsCustomEvent<LSMutateEvent[]>>;
|
|
@@ -191,3 +192,5 @@ export type LsToolbarEvents = {
|
|
|
191
192
|
export declare const LsToolbar: StencilReactComponent<LsToolbarElement, LsToolbarEvents>;
|
|
192
193
|
export type LsToolboxFieldEvents = NonNullable<unknown>;
|
|
193
194
|
export declare const LsToolboxField: StencilReactComponent<LsToolboxFieldElement, LsToolboxFieldEvents>;
|
|
195
|
+
export type LsValidationTagEvents = NonNullable<unknown>;
|
|
196
|
+
export declare const LsValidationTag: StencilReactComponent<LsValidationTagElement, LsValidationTagEvents>;
|
|
@@ -53,6 +53,7 @@ import { LsTextareaInput as LsTextareaInputElement, defineCustomElement as defin
|
|
|
53
53
|
import { LsToggle as LsToggleElement, defineCustomElement as defineLsToggle } from "legalesign-document-viewer/dist/components/ls-toggle.js";
|
|
54
54
|
import { LsToolbar as LsToolbarElement, defineCustomElement as defineLsToolbar } from "legalesign-document-viewer/dist/components/ls-toolbar.js";
|
|
55
55
|
import { LsToolboxField as LsToolboxFieldElement, defineCustomElement as defineLsToolboxField } from "legalesign-document-viewer/dist/components/ls-toolbox-field.js";
|
|
56
|
+
import { LsValidationTag as LsValidationTagElement, defineCustomElement as defineLsValidationTag } from "legalesign-document-viewer/dist/components/ls-validation-tag.js";
|
|
56
57
|
import React from 'react';
|
|
57
58
|
|
|
58
59
|
export type LsDocumentOptionsEvents = {
|
|
@@ -627,3 +628,14 @@ export const LsToolboxField: StencilReactComponent<LsToolboxFieldElement, LsTool
|
|
|
627
628
|
events: {} as LsToolboxFieldEvents,
|
|
628
629
|
defineCustomElement: defineLsToolboxField
|
|
629
630
|
});
|
|
631
|
+
|
|
632
|
+
export type LsValidationTagEvents = NonNullable<unknown>;
|
|
633
|
+
|
|
634
|
+
export const LsValidationTag: StencilReactComponent<LsValidationTagElement, LsValidationTagEvents> = /*@__PURE__*/ createComponent<LsValidationTagElement, LsValidationTagEvents>({
|
|
635
|
+
tagName: 'ls-validation-tag',
|
|
636
|
+
elementClass: LsValidationTagElement,
|
|
637
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
638
|
+
react: React,
|
|
639
|
+
events: {} as LsValidationTagEvents,
|
|
640
|
+
defineCustomElement: defineLsValidationTag
|
|
641
|
+
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "legalesign-document-viewer-react",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.13",
|
|
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.2.
|
|
53
|
+
"legalesign-document-viewer": "^0.2.13"
|
|
54
54
|
},
|
|
55
55
|
"pnpm": {
|
|
56
56
|
"overrides": {
|