legalesign-document-viewer-react 0.2.17 → 0.2.19
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.
|
@@ -349,7 +349,8 @@ export const LsParticipantCard = /*@__PURE__*/ createComponent({
|
|
|
349
349
|
events: {
|
|
350
350
|
onMutate: 'mutate',
|
|
351
351
|
onUpdate: 'update',
|
|
352
|
-
onOpened: 'opened'
|
|
352
|
+
onOpened: 'opened',
|
|
353
|
+
onAddParticipant: 'addParticipant'
|
|
353
354
|
},
|
|
354
355
|
defineCustomElement: defineLsParticipantCard
|
|
355
356
|
});
|
|
@@ -160,6 +160,10 @@ export type LsParticipantCardEvents = {
|
|
|
160
160
|
onMutate: EventName<LsParticipantCardCustomEvent<LSMutateEvent[]>>;
|
|
161
161
|
onUpdate: EventName<LsParticipantCardCustomEvent<LSMutateEvent[]>>;
|
|
162
162
|
onOpened: EventName<LsParticipantCardCustomEvent<LSApiRole>>;
|
|
163
|
+
onAddParticipant: EventName<LsParticipantCardCustomEvent<{
|
|
164
|
+
type: LSApiRoleType;
|
|
165
|
+
parent?: string | null;
|
|
166
|
+
}>>;
|
|
163
167
|
};
|
|
164
168
|
export declare const LsParticipantCard: StencilReactComponent<LsParticipantCardElement, LsParticipantCardEvents>;
|
|
165
169
|
export type LsParticipantManagerEvents = {
|
|
@@ -490,7 +490,8 @@ export const LsNumberInput: StencilReactComponent<LsNumberInputElement, LsNumber
|
|
|
490
490
|
export type LsParticipantCardEvents = {
|
|
491
491
|
onMutate: EventName<LsParticipantCardCustomEvent<LSMutateEvent[]>>,
|
|
492
492
|
onUpdate: EventName<LsParticipantCardCustomEvent<LSMutateEvent[]>>,
|
|
493
|
-
onOpened: EventName<LsParticipantCardCustomEvent<LSApiRole
|
|
493
|
+
onOpened: EventName<LsParticipantCardCustomEvent<LSApiRole>>,
|
|
494
|
+
onAddParticipant: EventName<LsParticipantCardCustomEvent<{ type: LSApiRoleType; parent?: string | null }>>
|
|
494
495
|
};
|
|
495
496
|
|
|
496
497
|
export const LsParticipantCard: StencilReactComponent<LsParticipantCardElement, LsParticipantCardEvents> = /*@__PURE__*/ createComponent<LsParticipantCardElement, LsParticipantCardEvents>({
|
|
@@ -501,7 +502,8 @@ export const LsParticipantCard: StencilReactComponent<LsParticipantCardElement,
|
|
|
501
502
|
events: {
|
|
502
503
|
onMutate: 'mutate',
|
|
503
504
|
onUpdate: 'update',
|
|
504
|
-
onOpened: 'opened'
|
|
505
|
+
onOpened: 'opened',
|
|
506
|
+
onAddParticipant: 'addParticipant'
|
|
505
507
|
} as LsParticipantCardEvents,
|
|
506
508
|
defineCustomElement: defineLsParticipantCard
|
|
507
509
|
});
|
|
@@ -509,7 +511,7 @@ export const LsParticipantCard: StencilReactComponent<LsParticipantCardElement,
|
|
|
509
511
|
export type LsParticipantManagerEvents = {
|
|
510
512
|
onMutate: EventName<LsParticipantManagerCustomEvent<LSMutateEvent[]>>,
|
|
511
513
|
onUpdate: EventName<LsParticipantManagerCustomEvent<LSMutateEvent[]>>,
|
|
512
|
-
onAddParticipant: EventName<LsParticipantManagerCustomEvent<{ type: LSApiRoleType
|
|
514
|
+
onAddParticipant: EventName<LsParticipantManagerCustomEvent<{ type: LSApiRoleType; parent?: string | null }>>
|
|
513
515
|
};
|
|
514
516
|
|
|
515
517
|
export const LsParticipantManager: StencilReactComponent<LsParticipantManagerElement, LsParticipantManagerEvents> = /*@__PURE__*/ createComponent<LsParticipantManagerElement, LsParticipantManagerEvents>({
|
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.19",
|
|
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.19"
|
|
54
54
|
},
|
|
55
55
|
"pnpm": {
|
|
56
56
|
"overrides": {
|