legalesign-document-viewer-react 1.0.13 → 1.0.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 { LsFieldPropertiesFile as LsFieldPropertiesFileElement, defineCustomElem
|
|
|
35
35
|
import { LsFieldPropertiesGeneral as LsFieldPropertiesGeneralElement, defineCustomElement as defineLsFieldPropertiesGeneral } from "legalesign-document-viewer/dist/components/ls-field-properties-general.js";
|
|
36
36
|
import { LsFieldPropertiesMultiple as LsFieldPropertiesMultipleElement, defineCustomElement as defineLsFieldPropertiesMultiple } from "legalesign-document-viewer/dist/components/ls-field-properties-multiple.js";
|
|
37
37
|
import { LsFieldPropertiesNumber as LsFieldPropertiesNumberElement, defineCustomElement as defineLsFieldPropertiesNumber } from "legalesign-document-viewer/dist/components/ls-field-properties-number.js";
|
|
38
|
+
import { LsFieldPropertiesRegex as LsFieldPropertiesRegexElement, defineCustomElement as defineLsFieldPropertiesRegex } from "legalesign-document-viewer/dist/components/ls-field-properties-regex.js";
|
|
38
39
|
import { LsFieldPropertiesSignature as LsFieldPropertiesSignatureElement, defineCustomElement as defineLsFieldPropertiesSignature } from "legalesign-document-viewer/dist/components/ls-field-properties-signature.js";
|
|
39
40
|
import { LsFieldPropertiesText as LsFieldPropertiesTextElement, defineCustomElement as defineLsFieldPropertiesText } from "legalesign-document-viewer/dist/components/ls-field-properties-text.js";
|
|
40
41
|
import { LsFieldProperties as LsFieldPropertiesElement, defineCustomElement as defineLsFieldProperties } from "legalesign-document-viewer/dist/components/ls-field-properties.js";
|
|
@@ -403,6 +404,17 @@ export const LsFieldPropertiesNumber = /*@__PURE__*/ createComponent({
|
|
|
403
404
|
events: {},
|
|
404
405
|
defineCustomElement: defineLsFieldPropertiesNumber
|
|
405
406
|
});
|
|
407
|
+
export const LsFieldPropertiesRegex = /*@__PURE__*/ createComponent({
|
|
408
|
+
tagName: 'ls-field-properties-regex',
|
|
409
|
+
elementClass: LsFieldPropertiesRegexElement,
|
|
410
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
411
|
+
react: React,
|
|
412
|
+
events: {
|
|
413
|
+
onMutate: 'mutate',
|
|
414
|
+
onUpdate: 'update'
|
|
415
|
+
},
|
|
416
|
+
defineCustomElement: defineLsFieldPropertiesRegex
|
|
417
|
+
});
|
|
406
418
|
export const LsFieldPropertiesSignature = /*@__PURE__*/ createComponent({
|
|
407
419
|
tagName: 'ls-field-properties-signature',
|
|
408
420
|
elementClass: LsFieldPropertiesSignatureElement,
|
|
@@ -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 IToolboxField, type LSApiElement, type LSApiRole, type LSApiRoleType, type LSApiTemplate, 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 LsRecipientCardCustomEvent, type LsTitleInputCustomEvent, type LsToolbarCustomEvent, type LsToolboxFieldCustomEvent, type LsValidationManagerCustomEvent, type LsValidationTagCustomEvent, type ValidationError } from "legalesign-document-viewer";
|
|
6
|
+
import { type IToolboxField, type LSApiElement, type LSApiRole, type LSApiRoleType, type LSApiTemplate, 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 LsFieldPropertiesRegexCustomEvent, type LsFieldSizeCustomEvent, type LsParticipantCardCustomEvent, type LsParticipantManagerCustomEvent, type LsParticipantSelectCustomEvent, type LsRecipientCardCustomEvent, type LsTitleInputCustomEvent, type LsToolbarCustomEvent, type LsToolboxFieldCustomEvent, type LsValidationManagerCustomEvent, type LsValidationTagCustomEvent, type ValidationError } from "legalesign-document-viewer";
|
|
7
7
|
import { LsAddNewButton as LsAddNewButtonElement } from "legalesign-document-viewer/dist/components/ls-add-new-button.js";
|
|
8
8
|
import { LsAssigneeSelect as LsAssigneeSelectElement } from "legalesign-document-viewer/dist/components/ls-assignee-select.js";
|
|
9
9
|
import { LsBadge as LsBadgeElement } from "legalesign-document-viewer/dist/components/ls-badge.js";
|
|
@@ -39,6 +39,7 @@ import { LsFieldPropertiesFile as LsFieldPropertiesFileElement } from "legalesig
|
|
|
39
39
|
import { LsFieldPropertiesGeneral as LsFieldPropertiesGeneralElement } from "legalesign-document-viewer/dist/components/ls-field-properties-general.js";
|
|
40
40
|
import { LsFieldPropertiesMultiple as LsFieldPropertiesMultipleElement } from "legalesign-document-viewer/dist/components/ls-field-properties-multiple.js";
|
|
41
41
|
import { LsFieldPropertiesNumber as LsFieldPropertiesNumberElement } from "legalesign-document-viewer/dist/components/ls-field-properties-number.js";
|
|
42
|
+
import { LsFieldPropertiesRegex as LsFieldPropertiesRegexElement } from "legalesign-document-viewer/dist/components/ls-field-properties-regex.js";
|
|
42
43
|
import { LsFieldPropertiesSignature as LsFieldPropertiesSignatureElement } from "legalesign-document-viewer/dist/components/ls-field-properties-signature.js";
|
|
43
44
|
import { LsFieldPropertiesText as LsFieldPropertiesTextElement } from "legalesign-document-viewer/dist/components/ls-field-properties-text.js";
|
|
44
45
|
import { LsFieldProperties as LsFieldPropertiesElement } from "legalesign-document-viewer/dist/components/ls-field-properties.js";
|
|
@@ -218,6 +219,11 @@ export type LsFieldPropertiesMultipleEvents = {
|
|
|
218
219
|
export declare const LsFieldPropertiesMultiple: StencilReactComponent<LsFieldPropertiesMultipleElement, LsFieldPropertiesMultipleEvents>;
|
|
219
220
|
export type LsFieldPropertiesNumberEvents = NonNullable<unknown>;
|
|
220
221
|
export declare const LsFieldPropertiesNumber: StencilReactComponent<LsFieldPropertiesNumberElement, LsFieldPropertiesNumberEvents>;
|
|
222
|
+
export type LsFieldPropertiesRegexEvents = {
|
|
223
|
+
onMutate: EventName<LsFieldPropertiesRegexCustomEvent<LSMutateEvent[]>>;
|
|
224
|
+
onUpdate: EventName<LsFieldPropertiesRegexCustomEvent<LSMutateEvent[]>>;
|
|
225
|
+
};
|
|
226
|
+
export declare const LsFieldPropertiesRegex: StencilReactComponent<LsFieldPropertiesRegexElement, LsFieldPropertiesRegexEvents>;
|
|
221
227
|
export type LsFieldPropertiesSignatureEvents = NonNullable<unknown>;
|
|
222
228
|
export declare const LsFieldPropertiesSignature: StencilReactComponent<LsFieldPropertiesSignatureElement, LsFieldPropertiesSignatureEvents>;
|
|
223
229
|
export type LsFieldPropertiesTextEvents = NonNullable<unknown>;
|
|
@@ -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 IToolboxField, type LSApiElement, type LSApiRole, type LSApiRoleType, type LSApiTemplate, 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 LsRecipientCardCustomEvent, type LsTitleInputCustomEvent, type LsToolbarCustomEvent, type LsToolboxFieldCustomEvent, type LsValidationManagerCustomEvent, type LsValidationTagCustomEvent, type ValidationError } from "legalesign-document-viewer";
|
|
12
|
+
import { type IToolboxField, type LSApiElement, type LSApiRole, type LSApiRoleType, type LSApiTemplate, 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 LsFieldPropertiesRegexCustomEvent, type LsFieldSizeCustomEvent, type LsParticipantCardCustomEvent, type LsParticipantManagerCustomEvent, type LsParticipantSelectCustomEvent, type LsRecipientCardCustomEvent, type LsTitleInputCustomEvent, type LsToolbarCustomEvent, type LsToolboxFieldCustomEvent, type LsValidationManagerCustomEvent, type LsValidationTagCustomEvent, type ValidationError } from "legalesign-document-viewer";
|
|
13
13
|
import { LsAddNewButton as LsAddNewButtonElement, defineCustomElement as defineLsAddNewButton } from "legalesign-document-viewer/dist/components/ls-add-new-button.js";
|
|
14
14
|
import { LsAssigneeSelect as LsAssigneeSelectElement, defineCustomElement as defineLsAssigneeSelect } from "legalesign-document-viewer/dist/components/ls-assignee-select.js";
|
|
15
15
|
import { LsBadge as LsBadgeElement, defineCustomElement as defineLsBadge } from "legalesign-document-viewer/dist/components/ls-badge.js";
|
|
@@ -45,6 +45,7 @@ import { LsFieldPropertiesFile as LsFieldPropertiesFileElement, defineCustomElem
|
|
|
45
45
|
import { LsFieldPropertiesGeneral as LsFieldPropertiesGeneralElement, defineCustomElement as defineLsFieldPropertiesGeneral } from "legalesign-document-viewer/dist/components/ls-field-properties-general.js";
|
|
46
46
|
import { LsFieldPropertiesMultiple as LsFieldPropertiesMultipleElement, defineCustomElement as defineLsFieldPropertiesMultiple } from "legalesign-document-viewer/dist/components/ls-field-properties-multiple.js";
|
|
47
47
|
import { LsFieldPropertiesNumber as LsFieldPropertiesNumberElement, defineCustomElement as defineLsFieldPropertiesNumber } from "legalesign-document-viewer/dist/components/ls-field-properties-number.js";
|
|
48
|
+
import { LsFieldPropertiesRegex as LsFieldPropertiesRegexElement, defineCustomElement as defineLsFieldPropertiesRegex } from "legalesign-document-viewer/dist/components/ls-field-properties-regex.js";
|
|
48
49
|
import { LsFieldPropertiesSignature as LsFieldPropertiesSignatureElement, defineCustomElement as defineLsFieldPropertiesSignature } from "legalesign-document-viewer/dist/components/ls-field-properties-signature.js";
|
|
49
50
|
import { LsFieldPropertiesText as LsFieldPropertiesTextElement, defineCustomElement as defineLsFieldPropertiesText } from "legalesign-document-viewer/dist/components/ls-field-properties-text.js";
|
|
50
51
|
import { LsFieldProperties as LsFieldPropertiesElement, defineCustomElement as defineLsFieldProperties } from "legalesign-document-viewer/dist/components/ls-field-properties.js";
|
|
@@ -552,6 +553,23 @@ export const LsFieldPropertiesNumber: StencilReactComponent<LsFieldPropertiesNum
|
|
|
552
553
|
defineCustomElement: defineLsFieldPropertiesNumber
|
|
553
554
|
});
|
|
554
555
|
|
|
556
|
+
export type LsFieldPropertiesRegexEvents = {
|
|
557
|
+
onMutate: EventName<LsFieldPropertiesRegexCustomEvent<LSMutateEvent[]>>,
|
|
558
|
+
onUpdate: EventName<LsFieldPropertiesRegexCustomEvent<LSMutateEvent[]>>
|
|
559
|
+
};
|
|
560
|
+
|
|
561
|
+
export const LsFieldPropertiesRegex: StencilReactComponent<LsFieldPropertiesRegexElement, LsFieldPropertiesRegexEvents> = /*@__PURE__*/ createComponent<LsFieldPropertiesRegexElement, LsFieldPropertiesRegexEvents>({
|
|
562
|
+
tagName: 'ls-field-properties-regex',
|
|
563
|
+
elementClass: LsFieldPropertiesRegexElement,
|
|
564
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
565
|
+
react: React,
|
|
566
|
+
events: {
|
|
567
|
+
onMutate: 'mutate',
|
|
568
|
+
onUpdate: 'update'
|
|
569
|
+
} as LsFieldPropertiesRegexEvents,
|
|
570
|
+
defineCustomElement: defineLsFieldPropertiesRegex
|
|
571
|
+
});
|
|
572
|
+
|
|
555
573
|
export type LsFieldPropertiesSignatureEvents = NonNullable<unknown>;
|
|
556
574
|
|
|
557
575
|
export const LsFieldPropertiesSignature: StencilReactComponent<LsFieldPropertiesSignatureElement, LsFieldPropertiesSignatureEvents> = /*@__PURE__*/ createComponent<LsFieldPropertiesSignatureElement, LsFieldPropertiesSignatureEvents>({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "legalesign-document-viewer-react",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.15",
|
|
4
4
|
"description": "Legalesign React Editor / Viewers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"stencilJS",
|
|
@@ -45,7 +45,7 @@
|
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
47
|
"@stencil/react-output-target": "^1.2.0",
|
|
48
|
-
"legalesign-document-viewer": "^1.0.
|
|
48
|
+
"legalesign-document-viewer": "^1.0.15"
|
|
49
49
|
},
|
|
50
50
|
"repository": {
|
|
51
51
|
"type": "git",
|