@verdocs/web-sdk-react 5.1.1 → 5.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.
- package/dist/components.d.ts +4 -4
- package/package.json +2 -2
package/dist/components.d.ts
CHANGED
|
@@ -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 IAuthStatus, type IColumn, type IContactSearchEvent, type IContactSelectEvent, type
|
|
6
|
+
import { type IAuthStatus, type IColumn, type IContactSearchEvent, type IContactSelectEvent, type ICreateEnvelopeRecipientFromTemplate, type IDocumentPageInfo, type IEnvelope, type IFilterOption, type IMenuOption, type IRecipient, type IRole, type ISearchEvent, type ISelectedFile, type ISignerTokenResponse, type ITab, type ITemplate, type ITemplateField, type SDKError, type TContentType, type TEnvelopeStatus, type TVerdocsBuildStep, type VerdocsAuthCustomEvent, type VerdocsBuildCustomEvent, type VerdocsContactPickerCustomEvent, type VerdocsDropdownCustomEvent, type VerdocsEndpoint, type VerdocsEnvelopeDocumentPageCustomEvent, type VerdocsEnvelopeRecipientLinkCustomEvent, type VerdocsEnvelopeRecipientSummaryCustomEvent, type VerdocsEnvelopeSidebarCustomEvent, type VerdocsEnvelopeUpdateRecipientCustomEvent, type VerdocsEnvelopesListCustomEvent, type VerdocsFieldAttachmentCustomEvent, type VerdocsFieldCheckboxCustomEvent, type VerdocsFieldDateCustomEvent, type VerdocsFieldDropdownCustomEvent, type VerdocsFieldInitialCustomEvent, type VerdocsFieldPaymentCustomEvent, type VerdocsFieldRadioCustomEvent, type VerdocsFieldSignatureCustomEvent, type VerdocsFieldTextareaCustomEvent, type VerdocsFieldTextboxCustomEvent, type VerdocsFieldTimestampCustomEvent, type VerdocsFileChooserCustomEvent, type VerdocsKbaDialogCustomEvent, type VerdocsOtpDialogCustomEvent, type VerdocsPreviewCustomEvent, type VerdocsQuickFilterCustomEvent, type VerdocsSearchBoxCustomEvent, type VerdocsSendCustomEvent, type VerdocsSignCustomEvent, type VerdocsTableCustomEvent, type VerdocsTabsCustomEvent, type VerdocsTemplateAttachmentsCustomEvent, type VerdocsTemplateBuildTabsCustomEvent, type VerdocsTemplateCreateCustomEvent, type VerdocsTemplateDocumentPageCustomEvent, type VerdocsTemplateFieldPropertiesCustomEvent, type VerdocsTemplateFieldsCustomEvent, type VerdocsTemplateRolePropertiesCustomEvent, type VerdocsTemplateRolesCustomEvent, type VerdocsTemplateSettingsCustomEvent, type VerdocsTemplateStarCustomEvent, type VerdocsTemplatesListCustomEvent, type VerdocsUploadDialogCustomEvent, type VerdocsViewCustomEvent } from "@verdocs/web-sdk";
|
|
7
7
|
import { VerdocsAuth as VerdocsAuthElement } from "@verdocs/web-sdk/dist/components/verdocs-auth.js";
|
|
8
8
|
import { VerdocsBuild as VerdocsBuildElement } from "@verdocs/web-sdk/dist/components/verdocs-build.js";
|
|
9
9
|
import { VerdocsButtonPanel as VerdocsButtonPanelElement } from "@verdocs/web-sdk/dist/components/verdocs-button-panel.js";
|
|
@@ -88,7 +88,7 @@ export type VerdocsBuildEvents = {
|
|
|
88
88
|
onSdkError: EventName<VerdocsBuildCustomEvent<SDKError>>;
|
|
89
89
|
onStepChanged: EventName<VerdocsBuildCustomEvent<TVerdocsBuildStep>>;
|
|
90
90
|
onSend: EventName<VerdocsBuildCustomEvent<{
|
|
91
|
-
recipients:
|
|
91
|
+
recipients: ICreateEnvelopeRecipientFromTemplate[];
|
|
92
92
|
name: string;
|
|
93
93
|
template_id: string;
|
|
94
94
|
}>>;
|
|
@@ -401,13 +401,13 @@ export type VerdocsSelectInputEvents = NonNullable<unknown>;
|
|
|
401
401
|
export declare const VerdocsSelectInput: StencilReactComponent<VerdocsSelectInputElement, VerdocsSelectInputEvents>;
|
|
402
402
|
export type VerdocsSendEvents = {
|
|
403
403
|
onBeforeSend: EventName<VerdocsSendCustomEvent<{
|
|
404
|
-
recipients:
|
|
404
|
+
recipients: ICreateEnvelopeRecipientFromTemplate[];
|
|
405
405
|
name: string;
|
|
406
406
|
template_id: string;
|
|
407
407
|
template: ITemplate;
|
|
408
408
|
}>>;
|
|
409
409
|
onSend: EventName<VerdocsSendCustomEvent<{
|
|
410
|
-
recipients:
|
|
410
|
+
recipients: ICreateEnvelopeRecipientFromTemplate[];
|
|
411
411
|
name: string;
|
|
412
412
|
template_id: string;
|
|
413
413
|
envelope_id: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@verdocs/web-sdk-react",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.3.1",
|
|
4
4
|
"description": "Verdocs Web SDK for React",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"rollup": "rollup -c"
|
|
19
19
|
},
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@verdocs/web-sdk": "^5.
|
|
21
|
+
"@verdocs/web-sdk": "^5.3.1",
|
|
22
22
|
"@stencil/react-output-target": "^1.0.2"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|