legalesign-document-viewer-react 0.2.9 → 0.2.10
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.
|
@@ -31,6 +31,7 @@ import { LsFormfield as LsFormfieldElement, defineCustomElement as defineLsFormf
|
|
|
31
31
|
import { LsIcon as LsIconElement, defineCustomElement as defineLsIcon } from "legalesign-document-viewer/dist/components/ls-icon.js";
|
|
32
32
|
import { LsInputWrapper as LsInputWrapperElement, defineCustomElement as defineLsInputWrapper } from "legalesign-document-viewer/dist/components/ls-input-wrapper.js";
|
|
33
33
|
import { LsNumberInput as LsNumberInputElement, defineCustomElement as defineLsNumberInput } from "legalesign-document-viewer/dist/components/ls-number-input.js";
|
|
34
|
+
import { LsParticipantCard as LsParticipantCardElement, defineCustomElement as defineLsParticipantCard } from "legalesign-document-viewer/dist/components/ls-participant-card.js";
|
|
34
35
|
import { LsParticipantManager as LsParticipantManagerElement, defineCustomElement as defineLsParticipantManager } from "legalesign-document-viewer/dist/components/ls-participant-manager.js";
|
|
35
36
|
import { LsParticipantSelect as LsParticipantSelectElement, defineCustomElement as defineLsParticipantSelect } from "legalesign-document-viewer/dist/components/ls-participant-select.js";
|
|
36
37
|
import { LsPropsSection as LsPropsSectionElement, defineCustomElement as defineLsPropsSection } from "legalesign-document-viewer/dist/components/ls-props-section.js";
|
|
@@ -321,6 +322,17 @@ export const LsNumberInput = /*@__PURE__*/ createComponent({
|
|
|
321
322
|
events: {},
|
|
322
323
|
defineCustomElement: defineLsNumberInput
|
|
323
324
|
});
|
|
325
|
+
export const LsParticipantCard = /*@__PURE__*/ createComponent({
|
|
326
|
+
tagName: 'ls-participant-card',
|
|
327
|
+
elementClass: LsParticipantCardElement,
|
|
328
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
329
|
+
react: React,
|
|
330
|
+
events: {
|
|
331
|
+
onMutate: 'mutate',
|
|
332
|
+
onUpdate: 'update'
|
|
333
|
+
},
|
|
334
|
+
defineCustomElement: defineLsParticipantCard
|
|
335
|
+
});
|
|
324
336
|
export const LsParticipantManager = /*@__PURE__*/ createComponent({
|
|
325
337
|
tagName: 'ls-participant-manager',
|
|
326
338
|
elementClass: LsParticipantManagerElement,
|
|
@@ -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 LSMutateEvent, type LsDocumentViewerCustomEvent, type LsFieldAlignmentCustomEvent, type LsFieldDimensionsCustomEvent, type LsFieldDistributeCustomEvent, type LsFieldFooterCustomEvent, type LsFieldFormatCustomEvent, type LsFieldPlacementCustomEvent, type LsFieldPropertiesAdvancedCustomEvent, type LsFieldSizeCustomEvent, type LsParticipantManagerCustomEvent, type LsParticipantSelectCustomEvent, type LsToolbarCustomEvent } from "legalesign-document-viewer";
|
|
6
|
+
import { type LSApiElement, type LSMutateEvent, type LsDocumentViewerCustomEvent, type LsFieldAlignmentCustomEvent, 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";
|
|
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";
|
|
@@ -35,6 +35,7 @@ import { LsFormfield as LsFormfieldElement } from "legalesign-document-viewer/di
|
|
|
35
35
|
import { LsIcon as LsIconElement } from "legalesign-document-viewer/dist/components/ls-icon.js";
|
|
36
36
|
import { LsInputWrapper as LsInputWrapperElement } from "legalesign-document-viewer/dist/components/ls-input-wrapper.js";
|
|
37
37
|
import { LsNumberInput as LsNumberInputElement } from "legalesign-document-viewer/dist/components/ls-number-input.js";
|
|
38
|
+
import { LsParticipantCard as LsParticipantCardElement } from "legalesign-document-viewer/dist/components/ls-participant-card.js";
|
|
38
39
|
import { LsParticipantManager as LsParticipantManagerElement } from "legalesign-document-viewer/dist/components/ls-participant-manager.js";
|
|
39
40
|
import { LsParticipantSelect as LsParticipantSelectElement } from "legalesign-document-viewer/dist/components/ls-participant-select.js";
|
|
40
41
|
import { LsPropsSection as LsPropsSectionElement } from "legalesign-document-viewer/dist/components/ls-props-section.js";
|
|
@@ -140,6 +141,11 @@ export type LsInputWrapperEvents = NonNullable<unknown>;
|
|
|
140
141
|
export declare const LsInputWrapper: StencilReactComponent<LsInputWrapperElement, LsInputWrapperEvents>;
|
|
141
142
|
export type LsNumberInputEvents = NonNullable<unknown>;
|
|
142
143
|
export declare const LsNumberInput: StencilReactComponent<LsNumberInputElement, LsNumberInputEvents>;
|
|
144
|
+
export type LsParticipantCardEvents = {
|
|
145
|
+
onMutate: EventName<LsParticipantCardCustomEvent<LSMutateEvent[]>>;
|
|
146
|
+
onUpdate: EventName<LsParticipantCardCustomEvent<LSMutateEvent[]>>;
|
|
147
|
+
};
|
|
148
|
+
export declare const LsParticipantCard: StencilReactComponent<LsParticipantCardElement, LsParticipantCardEvents>;
|
|
143
149
|
export type LsParticipantManagerEvents = {
|
|
144
150
|
onMutate: EventName<LsParticipantManagerCustomEvent<LSMutateEvent[]>>;
|
|
145
151
|
onUpdate: EventName<LsParticipantManagerCustomEvent<LSMutateEvent[]>>;
|
|
@@ -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 LSMutateEvent, type LsDocumentViewerCustomEvent, type LsFieldAlignmentCustomEvent, type LsFieldDimensionsCustomEvent, type LsFieldDistributeCustomEvent, type LsFieldFooterCustomEvent, type LsFieldFormatCustomEvent, type LsFieldPlacementCustomEvent, type LsFieldPropertiesAdvancedCustomEvent, type LsFieldSizeCustomEvent, type LsParticipantManagerCustomEvent, type LsParticipantSelectCustomEvent, type LsToolbarCustomEvent } from "legalesign-document-viewer";
|
|
12
|
+
import { type LSApiElement, type LSMutateEvent, type LsDocumentViewerCustomEvent, type LsFieldAlignmentCustomEvent, 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";
|
|
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";
|
|
@@ -41,6 +41,7 @@ import { LsFormfield as LsFormfieldElement, defineCustomElement as defineLsFormf
|
|
|
41
41
|
import { LsIcon as LsIconElement, defineCustomElement as defineLsIcon } from "legalesign-document-viewer/dist/components/ls-icon.js";
|
|
42
42
|
import { LsInputWrapper as LsInputWrapperElement, defineCustomElement as defineLsInputWrapper } from "legalesign-document-viewer/dist/components/ls-input-wrapper.js";
|
|
43
43
|
import { LsNumberInput as LsNumberInputElement, defineCustomElement as defineLsNumberInput } from "legalesign-document-viewer/dist/components/ls-number-input.js";
|
|
44
|
+
import { LsParticipantCard as LsParticipantCardElement, defineCustomElement as defineLsParticipantCard } from "legalesign-document-viewer/dist/components/ls-participant-card.js";
|
|
44
45
|
import { LsParticipantManager as LsParticipantManagerElement, defineCustomElement as defineLsParticipantManager } from "legalesign-document-viewer/dist/components/ls-participant-manager.js";
|
|
45
46
|
import { LsParticipantSelect as LsParticipantSelectElement, defineCustomElement as defineLsParticipantSelect } from "legalesign-document-viewer/dist/components/ls-participant-select.js";
|
|
46
47
|
import { LsPropsSection as LsPropsSectionElement, defineCustomElement as defineLsPropsSection } from "legalesign-document-viewer/dist/components/ls-props-section.js";
|
|
@@ -455,6 +456,23 @@ export const LsNumberInput: StencilReactComponent<LsNumberInputElement, LsNumber
|
|
|
455
456
|
defineCustomElement: defineLsNumberInput
|
|
456
457
|
});
|
|
457
458
|
|
|
459
|
+
export type LsParticipantCardEvents = {
|
|
460
|
+
onMutate: EventName<LsParticipantCardCustomEvent<LSMutateEvent[]>>,
|
|
461
|
+
onUpdate: EventName<LsParticipantCardCustomEvent<LSMutateEvent[]>>
|
|
462
|
+
};
|
|
463
|
+
|
|
464
|
+
export const LsParticipantCard: StencilReactComponent<LsParticipantCardElement, LsParticipantCardEvents> = /*@__PURE__*/ createComponent<LsParticipantCardElement, LsParticipantCardEvents>({
|
|
465
|
+
tagName: 'ls-participant-card',
|
|
466
|
+
elementClass: LsParticipantCardElement,
|
|
467
|
+
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
468
|
+
react: React,
|
|
469
|
+
events: {
|
|
470
|
+
onMutate: 'mutate',
|
|
471
|
+
onUpdate: 'update'
|
|
472
|
+
} as LsParticipantCardEvents,
|
|
473
|
+
defineCustomElement: defineLsParticipantCard
|
|
474
|
+
});
|
|
475
|
+
|
|
458
476
|
export type LsParticipantManagerEvents = {
|
|
459
477
|
onMutate: EventName<LsParticipantManagerCustomEvent<LSMutateEvent[]>>,
|
|
460
478
|
onUpdate: EventName<LsParticipantManagerCustomEvent<LSMutateEvent[]>>
|
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.10",
|
|
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.10"
|
|
54
54
|
},
|
|
55
55
|
"pnpm": {
|
|
56
56
|
"overrides": {
|