@verdocs/web-sdk-react 5.3.4 → 5.4.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.
@@ -151,6 +151,13 @@ export type VerdocsDisclosureDialogEvents = {
151
151
  phone: string;
152
152
  message: string;
153
153
  }>>;
154
+ onDelegate: EventName<CustomEvent<{
155
+ first_name: string;
156
+ last_name: string;
157
+ email: string;
158
+ phone: string;
159
+ message: string;
160
+ }>>;
154
161
  onAccept: EventName<CustomEvent<{
155
162
  first_name: string;
156
163
  last_name: string;
@@ -80,7 +80,7 @@ import React from 'react';
80
80
  export const VerdocsAuth = /*@__PURE__*/ createComponent({
81
81
  tagName: 'verdocs-auth',
82
82
  elementClass: VerdocsAuthElement,
83
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
83
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
84
84
  react: React,
85
85
  events: {
86
86
  onAuthenticated: 'authenticated',
@@ -91,7 +91,7 @@ export const VerdocsAuth = /*@__PURE__*/ createComponent({
91
91
  export const VerdocsBuild = /*@__PURE__*/ createComponent({
92
92
  tagName: 'verdocs-build',
93
93
  elementClass: VerdocsBuildElement,
94
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
94
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
95
95
  react: React,
96
96
  events: {
97
97
  onCancel: 'cancel',
@@ -107,7 +107,7 @@ export const VerdocsBuild = /*@__PURE__*/ createComponent({
107
107
  export const VerdocsButton = /*@__PURE__*/ createComponent({
108
108
  tagName: 'verdocs-button',
109
109
  elementClass: VerdocsButtonElement,
110
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
110
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
111
111
  react: React,
112
112
  events: {},
113
113
  defineCustomElement: defineVerdocsButton
@@ -115,7 +115,7 @@ export const VerdocsButton = /*@__PURE__*/ createComponent({
115
115
  export const VerdocsButtonPanel = /*@__PURE__*/ createComponent({
116
116
  tagName: 'verdocs-button-panel',
117
117
  elementClass: VerdocsButtonPanelElement,
118
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
118
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
119
119
  react: React,
120
120
  events: {},
121
121
  defineCustomElement: defineVerdocsButtonPanel
@@ -123,7 +123,7 @@ export const VerdocsButtonPanel = /*@__PURE__*/ createComponent({
123
123
  export const VerdocsCheckbox = /*@__PURE__*/ createComponent({
124
124
  tagName: 'verdocs-checkbox',
125
125
  elementClass: VerdocsCheckboxElement,
126
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
126
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
127
127
  react: React,
128
128
  events: {},
129
129
  defineCustomElement: defineVerdocsCheckbox
@@ -131,7 +131,7 @@ export const VerdocsCheckbox = /*@__PURE__*/ createComponent({
131
131
  export const VerdocsComponentError = /*@__PURE__*/ createComponent({
132
132
  tagName: 'verdocs-component-error',
133
133
  elementClass: VerdocsComponentErrorElement,
134
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
134
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
135
135
  react: React,
136
136
  events: {},
137
137
  defineCustomElement: defineVerdocsComponentError
@@ -139,7 +139,7 @@ export const VerdocsComponentError = /*@__PURE__*/ createComponent({
139
139
  export const VerdocsContactPicker = /*@__PURE__*/ createComponent({
140
140
  tagName: 'verdocs-contact-picker',
141
141
  elementClass: VerdocsContactPickerElement,
142
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
142
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
143
143
  react: React,
144
144
  events: {
145
145
  onSearchContacts: 'searchContacts',
@@ -151,7 +151,7 @@ export const VerdocsContactPicker = /*@__PURE__*/ createComponent({
151
151
  export const VerdocsDateInput = /*@__PURE__*/ createComponent({
152
152
  tagName: 'verdocs-date-input',
153
153
  elementClass: VerdocsDateInputElement,
154
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
154
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
155
155
  react: React,
156
156
  events: {},
157
157
  defineCustomElement: defineVerdocsDateInput
@@ -159,7 +159,7 @@ export const VerdocsDateInput = /*@__PURE__*/ createComponent({
159
159
  export const VerdocsDelegateDialog = /*@__PURE__*/ createComponent({
160
160
  tagName: 'verdocs-delegate-dialog',
161
161
  elementClass: VerdocsDelegateDialogElement,
162
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
162
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
163
163
  react: React,
164
164
  events: {
165
165
  onExit: 'exit',
@@ -170,7 +170,7 @@ export const VerdocsDelegateDialog = /*@__PURE__*/ createComponent({
170
170
  export const VerdocsDialog = /*@__PURE__*/ createComponent({
171
171
  tagName: 'verdocs-dialog',
172
172
  elementClass: VerdocsDialogElement,
173
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
173
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
174
174
  react: React,
175
175
  events: { onExit: 'exit' },
176
176
  defineCustomElement: defineVerdocsDialog
@@ -178,10 +178,11 @@ export const VerdocsDialog = /*@__PURE__*/ createComponent({
178
178
  export const VerdocsDisclosureDialog = /*@__PURE__*/ createComponent({
179
179
  tagName: 'verdocs-disclosure-dialog',
180
180
  elementClass: VerdocsDisclosureDialogElement,
181
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
181
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
182
182
  react: React,
183
183
  events: {
184
184
  onDecline: 'decline',
185
+ onDelegate: 'delegate',
185
186
  onAccept: 'accept'
186
187
  },
187
188
  defineCustomElement: defineVerdocsDisclosureDialog
@@ -189,7 +190,7 @@ export const VerdocsDisclosureDialog = /*@__PURE__*/ createComponent({
189
190
  export const VerdocsDropdown = /*@__PURE__*/ createComponent({
190
191
  tagName: 'verdocs-dropdown',
191
192
  elementClass: VerdocsDropdownElement,
192
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
193
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
193
194
  react: React,
194
195
  events: { onOptionSelected: 'optionSelected' },
195
196
  defineCustomElement: defineVerdocsDropdown
@@ -197,7 +198,7 @@ export const VerdocsDropdown = /*@__PURE__*/ createComponent({
197
198
  export const VerdocsEnvelopeDocumentPage = /*@__PURE__*/ createComponent({
198
199
  tagName: 'verdocs-envelope-document-page',
199
200
  elementClass: VerdocsEnvelopeDocumentPageElement,
200
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
201
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
201
202
  react: React,
202
203
  events: { onPageRendered: 'pageRendered' },
203
204
  defineCustomElement: defineVerdocsEnvelopeDocumentPage
@@ -205,7 +206,7 @@ export const VerdocsEnvelopeDocumentPage = /*@__PURE__*/ createComponent({
205
206
  export const VerdocsEnvelopeRecipientLink = /*@__PURE__*/ createComponent({
206
207
  tagName: 'verdocs-envelope-recipient-link',
207
208
  elementClass: VerdocsEnvelopeRecipientLinkElement,
208
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
209
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
209
210
  react: React,
210
211
  events: {
211
212
  onNext: 'next',
@@ -216,7 +217,7 @@ export const VerdocsEnvelopeRecipientLink = /*@__PURE__*/ createComponent({
216
217
  export const VerdocsEnvelopeRecipientSummary = /*@__PURE__*/ createComponent({
217
218
  tagName: 'verdocs-envelope-recipient-summary',
218
219
  elementClass: VerdocsEnvelopeRecipientSummaryElement,
219
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
220
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
220
221
  react: React,
221
222
  events: {
222
223
  onAnother: 'another',
@@ -229,7 +230,7 @@ export const VerdocsEnvelopeRecipientSummary = /*@__PURE__*/ createComponent({
229
230
  export const VerdocsEnvelopeSidebar = /*@__PURE__*/ createComponent({
230
231
  tagName: 'verdocs-envelope-sidebar',
231
232
  elementClass: VerdocsEnvelopeSidebarElement,
232
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
233
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
233
234
  react: React,
234
235
  events: {
235
236
  onSdkError: 'sdkError',
@@ -242,7 +243,7 @@ export const VerdocsEnvelopeSidebar = /*@__PURE__*/ createComponent({
242
243
  export const VerdocsEnvelopeUpdateRecipient = /*@__PURE__*/ createComponent({
243
244
  tagName: 'verdocs-envelope-update-recipient',
244
245
  elementClass: VerdocsEnvelopeUpdateRecipientElement,
245
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
246
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
246
247
  react: React,
247
248
  events: {
248
249
  onNext: 'next',
@@ -253,7 +254,7 @@ export const VerdocsEnvelopeUpdateRecipient = /*@__PURE__*/ createComponent({
253
254
  export const VerdocsEnvelopesList = /*@__PURE__*/ createComponent({
254
255
  tagName: 'verdocs-envelopes-list',
255
256
  elementClass: VerdocsEnvelopesListElement,
256
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
257
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
257
258
  react: React,
258
259
  events: {
259
260
  onChangeView: 'changeView',
@@ -269,7 +270,7 @@ export const VerdocsEnvelopesList = /*@__PURE__*/ createComponent({
269
270
  export const VerdocsFieldAttachment = /*@__PURE__*/ createComponent({
270
271
  tagName: 'verdocs-field-attachment',
271
272
  elementClass: VerdocsFieldAttachmentElement,
272
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
273
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
273
274
  react: React,
274
275
  events: {
275
276
  onSettingsChanged: 'settingsChanged',
@@ -281,7 +282,7 @@ export const VerdocsFieldAttachment = /*@__PURE__*/ createComponent({
281
282
  export const VerdocsFieldCheckbox = /*@__PURE__*/ createComponent({
282
283
  tagName: 'verdocs-field-checkbox',
283
284
  elementClass: VerdocsFieldCheckboxElement,
284
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
285
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
285
286
  react: React,
286
287
  events: {
287
288
  onSettingsChanged: 'settingsChanged',
@@ -292,7 +293,7 @@ export const VerdocsFieldCheckbox = /*@__PURE__*/ createComponent({
292
293
  export const VerdocsFieldDate = /*@__PURE__*/ createComponent({
293
294
  tagName: 'verdocs-field-date',
294
295
  elementClass: VerdocsFieldDateElement,
295
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
296
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
296
297
  react: React,
297
298
  events: {
298
299
  onSettingsPress: 'settingsPress',
@@ -304,7 +305,7 @@ export const VerdocsFieldDate = /*@__PURE__*/ createComponent({
304
305
  export const VerdocsFieldDropdown = /*@__PURE__*/ createComponent({
305
306
  tagName: 'verdocs-field-dropdown',
306
307
  elementClass: VerdocsFieldDropdownElement,
307
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
308
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
308
309
  react: React,
309
310
  events: {
310
311
  onFieldChange: 'fieldChange',
@@ -316,7 +317,7 @@ export const VerdocsFieldDropdown = /*@__PURE__*/ createComponent({
316
317
  export const VerdocsFieldInitial = /*@__PURE__*/ createComponent({
317
318
  tagName: 'verdocs-field-initial',
318
319
  elementClass: VerdocsFieldInitialElement,
319
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
320
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
320
321
  react: React,
321
322
  events: {
322
323
  onAdopt: 'adopt',
@@ -331,7 +332,7 @@ export const VerdocsFieldInitial = /*@__PURE__*/ createComponent({
331
332
  export const VerdocsFieldPayment = /*@__PURE__*/ createComponent({
332
333
  tagName: 'verdocs-field-payment',
333
334
  elementClass: VerdocsFieldPaymentElement,
334
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
335
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
335
336
  react: React,
336
337
  events: {
337
338
  onSettingsChanged: 'settingsChanged',
@@ -342,7 +343,7 @@ export const VerdocsFieldPayment = /*@__PURE__*/ createComponent({
342
343
  export const VerdocsFieldRadio = /*@__PURE__*/ createComponent({
343
344
  tagName: 'verdocs-field-radio',
344
345
  elementClass: VerdocsFieldRadioElement,
345
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
346
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
346
347
  react: React,
347
348
  events: {
348
349
  onSettingsChanged: 'settingsChanged',
@@ -353,7 +354,7 @@ export const VerdocsFieldRadio = /*@__PURE__*/ createComponent({
353
354
  export const VerdocsFieldSignature = /*@__PURE__*/ createComponent({
354
355
  tagName: 'verdocs-field-signature',
355
356
  elementClass: VerdocsFieldSignatureElement,
356
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
357
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
357
358
  react: React,
358
359
  events: {
359
360
  onFieldChange: 'fieldChange',
@@ -366,7 +367,7 @@ export const VerdocsFieldSignature = /*@__PURE__*/ createComponent({
366
367
  export const VerdocsFieldTextarea = /*@__PURE__*/ createComponent({
367
368
  tagName: 'verdocs-field-textarea',
368
369
  elementClass: VerdocsFieldTextareaElement,
369
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
370
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
370
371
  react: React,
371
372
  events: {
372
373
  onSettingsChanged: 'settingsChanged',
@@ -377,7 +378,7 @@ export const VerdocsFieldTextarea = /*@__PURE__*/ createComponent({
377
378
  export const VerdocsFieldTextbox = /*@__PURE__*/ createComponent({
378
379
  tagName: 'verdocs-field-textbox',
379
380
  elementClass: VerdocsFieldTextboxElement,
380
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
381
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
381
382
  react: React,
382
383
  events: {
383
384
  onSettingsChanged: 'settingsChanged',
@@ -388,7 +389,7 @@ export const VerdocsFieldTextbox = /*@__PURE__*/ createComponent({
388
389
  export const VerdocsFieldTimestamp = /*@__PURE__*/ createComponent({
389
390
  tagName: 'verdocs-field-timestamp',
390
391
  elementClass: VerdocsFieldTimestampElement,
391
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
392
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
392
393
  react: React,
393
394
  events: {
394
395
  onSettingsChanged: 'settingsChanged',
@@ -399,7 +400,7 @@ export const VerdocsFieldTimestamp = /*@__PURE__*/ createComponent({
399
400
  export const VerdocsFileChooser = /*@__PURE__*/ createComponent({
400
401
  tagName: 'verdocs-file-chooser',
401
402
  elementClass: VerdocsFileChooserElement,
402
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
403
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
403
404
  react: React,
404
405
  events: { onFileSelected: 'fileSelected' },
405
406
  defineCustomElement: defineVerdocsFileChooser
@@ -407,7 +408,7 @@ export const VerdocsFileChooser = /*@__PURE__*/ createComponent({
407
408
  export const VerdocsHelpIcon = /*@__PURE__*/ createComponent({
408
409
  tagName: 'verdocs-help-icon',
409
410
  elementClass: VerdocsHelpIconElement,
410
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
411
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
411
412
  react: React,
412
413
  events: {},
413
414
  defineCustomElement: defineVerdocsHelpIcon
@@ -415,7 +416,7 @@ export const VerdocsHelpIcon = /*@__PURE__*/ createComponent({
415
416
  export const VerdocsInitialDialog = /*@__PURE__*/ createComponent({
416
417
  tagName: 'verdocs-initial-dialog',
417
418
  elementClass: VerdocsInitialDialogElement,
418
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
419
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
419
420
  react: React,
420
421
  events: {
421
422
  onNext: 'next',
@@ -426,7 +427,7 @@ export const VerdocsInitialDialog = /*@__PURE__*/ createComponent({
426
427
  export const VerdocsKbaDialog = /*@__PURE__*/ createComponent({
427
428
  tagName: 'verdocs-kba-dialog',
428
429
  elementClass: VerdocsKbaDialogElement,
429
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
430
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
430
431
  react: React,
431
432
  events: {
432
433
  onExit: 'exit',
@@ -438,7 +439,7 @@ export const VerdocsKbaDialog = /*@__PURE__*/ createComponent({
438
439
  export const VerdocsLoader = /*@__PURE__*/ createComponent({
439
440
  tagName: 'verdocs-loader',
440
441
  elementClass: VerdocsLoaderElement,
441
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
442
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
442
443
  react: React,
443
444
  events: {},
444
445
  defineCustomElement: defineVerdocsLoader
@@ -446,7 +447,7 @@ export const VerdocsLoader = /*@__PURE__*/ createComponent({
446
447
  export const VerdocsMenuPanel = /*@__PURE__*/ createComponent({
447
448
  tagName: 'verdocs-menu-panel',
448
449
  elementClass: VerdocsMenuPanelElement,
449
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
450
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
450
451
  react: React,
451
452
  events: { onClose: 'close' },
452
453
  defineCustomElement: defineVerdocsMenuPanel
@@ -454,7 +455,7 @@ export const VerdocsMenuPanel = /*@__PURE__*/ createComponent({
454
455
  export const VerdocsMultiselect = /*@__PURE__*/ createComponent({
455
456
  tagName: 'verdocs-multiselect',
456
457
  elementClass: VerdocsMultiselectElement,
457
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
458
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
458
459
  react: React,
459
460
  events: { onSelectionChanged: 'selectionChanged' },
460
461
  defineCustomElement: defineVerdocsMultiselect
@@ -462,7 +463,7 @@ export const VerdocsMultiselect = /*@__PURE__*/ createComponent({
462
463
  export const VerdocsOkDialog = /*@__PURE__*/ createComponent({
463
464
  tagName: 'verdocs-ok-dialog',
464
465
  elementClass: VerdocsOkDialogElement,
465
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
466
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
466
467
  react: React,
467
468
  events: {
468
469
  onNext: 'next',
@@ -473,7 +474,7 @@ export const VerdocsOkDialog = /*@__PURE__*/ createComponent({
473
474
  export const VerdocsOrganizationCard = /*@__PURE__*/ createComponent({
474
475
  tagName: 'verdocs-organization-card',
475
476
  elementClass: VerdocsOrganizationCardElement,
476
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
477
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
477
478
  react: React,
478
479
  events: {},
479
480
  defineCustomElement: defineVerdocsOrganizationCard
@@ -481,7 +482,7 @@ export const VerdocsOrganizationCard = /*@__PURE__*/ createComponent({
481
482
  export const VerdocsOtpDialog = /*@__PURE__*/ createComponent({
482
483
  tagName: 'verdocs-otp-dialog',
483
484
  elementClass: VerdocsOtpDialogElement,
484
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
485
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
485
486
  react: React,
486
487
  events: {
487
488
  onExit: 'exit',
@@ -492,7 +493,7 @@ export const VerdocsOtpDialog = /*@__PURE__*/ createComponent({
492
493
  export const VerdocsPagination = /*@__PURE__*/ createComponent({
493
494
  tagName: 'verdocs-pagination',
494
495
  elementClass: VerdocsPaginationElement,
495
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
496
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
496
497
  react: React,
497
498
  events: { onSelectPage: 'selectPage' },
498
499
  defineCustomElement: defineVerdocsPagination
@@ -500,7 +501,7 @@ export const VerdocsPagination = /*@__PURE__*/ createComponent({
500
501
  export const VerdocsPortal = /*@__PURE__*/ createComponent({
501
502
  tagName: 'verdocs-portal',
502
503
  elementClass: VerdocsPortalElement,
503
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
504
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
504
505
  react: React,
505
506
  events: { onClickAway: 'clickAway' },
506
507
  defineCustomElement: defineVerdocsPortal
@@ -508,7 +509,7 @@ export const VerdocsPortal = /*@__PURE__*/ createComponent({
508
509
  export const VerdocsPreview = /*@__PURE__*/ createComponent({
509
510
  tagName: 'verdocs-preview',
510
511
  elementClass: VerdocsPreviewElement,
511
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
512
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
512
513
  react: React,
513
514
  events: { onSdkError: 'sdkError' },
514
515
  defineCustomElement: defineVerdocsPreview
@@ -516,7 +517,7 @@ export const VerdocsPreview = /*@__PURE__*/ createComponent({
516
517
  export const VerdocsProgressBar = /*@__PURE__*/ createComponent({
517
518
  tagName: 'verdocs-progress-bar',
518
519
  elementClass: VerdocsProgressBarElement,
519
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
520
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
520
521
  react: React,
521
522
  events: {},
522
523
  defineCustomElement: defineVerdocsProgressBar
@@ -524,7 +525,7 @@ export const VerdocsProgressBar = /*@__PURE__*/ createComponent({
524
525
  export const VerdocsQuickFilter = /*@__PURE__*/ createComponent({
525
526
  tagName: 'verdocs-quick-filter',
526
527
  elementClass: VerdocsQuickFilterElement,
527
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
528
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
528
529
  react: React,
529
530
  events: { onOptionSelected: 'optionSelected' },
530
531
  defineCustomElement: defineVerdocsQuickFilter
@@ -532,7 +533,7 @@ export const VerdocsQuickFilter = /*@__PURE__*/ createComponent({
532
533
  export const VerdocsQuickFunctions = /*@__PURE__*/ createComponent({
533
534
  tagName: 'verdocs-quick-functions',
534
535
  elementClass: VerdocsQuickFunctionsElement,
535
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
536
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
536
537
  react: React,
537
538
  events: {
538
539
  onCreateTemplate: 'createTemplate',
@@ -543,7 +544,7 @@ export const VerdocsQuickFunctions = /*@__PURE__*/ createComponent({
543
544
  export const VerdocsRadioButton = /*@__PURE__*/ createComponent({
544
545
  tagName: 'verdocs-radio-button',
545
546
  elementClass: VerdocsRadioButtonElement,
546
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
547
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
547
548
  react: React,
548
549
  events: {},
549
550
  defineCustomElement: defineVerdocsRadioButton
@@ -551,7 +552,7 @@ export const VerdocsRadioButton = /*@__PURE__*/ createComponent({
551
552
  export const VerdocsSearchBox = /*@__PURE__*/ createComponent({
552
553
  tagName: 'verdocs-search-box',
553
554
  elementClass: VerdocsSearchBoxElement,
554
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
555
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
555
556
  react: React,
556
557
  events: {
557
558
  onSearchClicked: 'searchClicked',
@@ -563,7 +564,7 @@ export const VerdocsSearchBox = /*@__PURE__*/ createComponent({
563
564
  export const VerdocsSearchTabs = /*@__PURE__*/ createComponent({
564
565
  tagName: 'verdocs-search-tabs',
565
566
  elementClass: VerdocsSearchTabsElement,
566
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
567
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
567
568
  react: React,
568
569
  events: {},
569
570
  defineCustomElement: defineVerdocsSearchTabs
@@ -571,7 +572,7 @@ export const VerdocsSearchTabs = /*@__PURE__*/ createComponent({
571
572
  export const VerdocsSelectInput = /*@__PURE__*/ createComponent({
572
573
  tagName: 'verdocs-select-input',
573
574
  elementClass: VerdocsSelectInputElement,
574
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
575
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
575
576
  react: React,
576
577
  events: {},
577
578
  defineCustomElement: defineVerdocsSelectInput
@@ -579,7 +580,7 @@ export const VerdocsSelectInput = /*@__PURE__*/ createComponent({
579
580
  export const VerdocsSend = /*@__PURE__*/ createComponent({
580
581
  tagName: 'verdocs-send',
581
582
  elementClass: VerdocsSendElement,
582
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
583
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
583
584
  react: React,
584
585
  events: {
585
586
  onBeforeSend: 'beforeSend',
@@ -593,7 +594,7 @@ export const VerdocsSend = /*@__PURE__*/ createComponent({
593
594
  export const VerdocsSign = /*@__PURE__*/ createComponent({
594
595
  tagName: 'verdocs-sign',
595
596
  elementClass: VerdocsSignElement,
596
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
597
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
597
598
  react: React,
598
599
  events: {
599
600
  onSdkError: 'sdkError',
@@ -605,7 +606,7 @@ export const VerdocsSign = /*@__PURE__*/ createComponent({
605
606
  export const VerdocsSignatureDialog = /*@__PURE__*/ createComponent({
606
607
  tagName: 'verdocs-signature-dialog',
607
608
  elementClass: VerdocsSignatureDialogElement,
608
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
609
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
609
610
  react: React,
610
611
  events: {
611
612
  onNext: 'next',
@@ -616,7 +617,7 @@ export const VerdocsSignatureDialog = /*@__PURE__*/ createComponent({
616
617
  export const VerdocsSpinner = /*@__PURE__*/ createComponent({
617
618
  tagName: 'verdocs-spinner',
618
619
  elementClass: VerdocsSpinnerElement,
619
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
620
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
620
621
  react: React,
621
622
  events: {},
622
623
  defineCustomElement: defineVerdocsSpinner
@@ -624,7 +625,7 @@ export const VerdocsSpinner = /*@__PURE__*/ createComponent({
624
625
  export const VerdocsStatusIndicator = /*@__PURE__*/ createComponent({
625
626
  tagName: 'verdocs-status-indicator',
626
627
  elementClass: VerdocsStatusIndicatorElement,
627
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
628
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
628
629
  react: React,
629
630
  events: {},
630
631
  defineCustomElement: defineVerdocsStatusIndicator
@@ -632,7 +633,7 @@ export const VerdocsStatusIndicator = /*@__PURE__*/ createComponent({
632
633
  export const VerdocsSwitch = /*@__PURE__*/ createComponent({
633
634
  tagName: 'verdocs-switch',
634
635
  elementClass: VerdocsSwitchElement,
635
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
636
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
636
637
  react: React,
637
638
  events: { onCheckedChange: 'checkedChange' },
638
639
  defineCustomElement: defineVerdocsSwitch
@@ -640,7 +641,7 @@ export const VerdocsSwitch = /*@__PURE__*/ createComponent({
640
641
  export const VerdocsTable = /*@__PURE__*/ createComponent({
641
642
  tagName: 'verdocs-table',
642
643
  elementClass: VerdocsTableElement,
643
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
644
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
644
645
  react: React,
645
646
  events: {
646
647
  onColHeaderClick: 'colHeaderClick',
@@ -651,7 +652,7 @@ export const VerdocsTable = /*@__PURE__*/ createComponent({
651
652
  export const VerdocsTabs = /*@__PURE__*/ createComponent({
652
653
  tagName: 'verdocs-tabs',
653
654
  elementClass: VerdocsTabsElement,
654
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
655
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
655
656
  react: React,
656
657
  events: { onSelectTab: 'selectTab' },
657
658
  defineCustomElement: defineVerdocsTabs
@@ -659,7 +660,7 @@ export const VerdocsTabs = /*@__PURE__*/ createComponent({
659
660
  export const VerdocsTemplateAttachments = /*@__PURE__*/ createComponent({
660
661
  tagName: 'verdocs-template-attachments',
661
662
  elementClass: VerdocsTemplateAttachmentsElement,
662
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
663
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
663
664
  react: React,
664
665
  events: {
665
666
  onExit: 'exit',
@@ -672,7 +673,7 @@ export const VerdocsTemplateAttachments = /*@__PURE__*/ createComponent({
672
673
  export const VerdocsTemplateBuildTabs = /*@__PURE__*/ createComponent({
673
674
  tagName: 'verdocs-template-build-tabs',
674
675
  elementClass: VerdocsTemplateBuildTabsElement,
675
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
676
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
676
677
  react: React,
677
678
  events: {
678
679
  onSdkError: 'sdkError',
@@ -683,7 +684,7 @@ export const VerdocsTemplateBuildTabs = /*@__PURE__*/ createComponent({
683
684
  export const VerdocsTemplateCard = /*@__PURE__*/ createComponent({
684
685
  tagName: 'verdocs-template-card',
685
686
  elementClass: VerdocsTemplateCardElement,
686
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
687
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
687
688
  react: React,
688
689
  events: {},
689
690
  defineCustomElement: defineVerdocsTemplateCard
@@ -691,7 +692,7 @@ export const VerdocsTemplateCard = /*@__PURE__*/ createComponent({
691
692
  export const VerdocsTemplateCreate = /*@__PURE__*/ createComponent({
692
693
  tagName: 'verdocs-template-create',
693
694
  elementClass: VerdocsTemplateCreateElement,
694
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
695
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
695
696
  react: React,
696
697
  events: {
697
698
  onExit: 'exit',
@@ -704,7 +705,7 @@ export const VerdocsTemplateCreate = /*@__PURE__*/ createComponent({
704
705
  export const VerdocsTemplateDocumentPage = /*@__PURE__*/ createComponent({
705
706
  tagName: 'verdocs-template-document-page',
706
707
  elementClass: VerdocsTemplateDocumentPageElement,
707
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
708
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
708
709
  react: React,
709
710
  events: { onPageRendered: 'pageRendered' },
710
711
  defineCustomElement: defineVerdocsTemplateDocumentPage
@@ -712,7 +713,7 @@ export const VerdocsTemplateDocumentPage = /*@__PURE__*/ createComponent({
712
713
  export const VerdocsTemplateFieldProperties = /*@__PURE__*/ createComponent({
713
714
  tagName: 'verdocs-template-field-properties',
714
715
  elementClass: VerdocsTemplateFieldPropertiesElement,
715
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
716
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
716
717
  react: React,
717
718
  events: {
718
719
  onClose: 'close',
@@ -725,7 +726,7 @@ export const VerdocsTemplateFieldProperties = /*@__PURE__*/ createComponent({
725
726
  export const VerdocsTemplateFields = /*@__PURE__*/ createComponent({
726
727
  tagName: 'verdocs-template-fields',
727
728
  elementClass: VerdocsTemplateFieldsElement,
728
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
729
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
729
730
  react: React,
730
731
  events: {
731
732
  onSdkError: 'sdkError',
@@ -737,7 +738,7 @@ export const VerdocsTemplateFields = /*@__PURE__*/ createComponent({
737
738
  export const VerdocsTemplateRoleProperties = /*@__PURE__*/ createComponent({
738
739
  tagName: 'verdocs-template-role-properties',
739
740
  elementClass: VerdocsTemplateRolePropertiesElement,
740
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
741
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
741
742
  react: React,
742
743
  events: {
743
744
  onClose: 'close',
@@ -749,7 +750,7 @@ export const VerdocsTemplateRoleProperties = /*@__PURE__*/ createComponent({
749
750
  export const VerdocsTemplateRoles = /*@__PURE__*/ createComponent({
750
751
  tagName: 'verdocs-template-roles',
751
752
  elementClass: VerdocsTemplateRolesElement,
752
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
753
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
753
754
  react: React,
754
755
  events: {
755
756
  onNext: 'next',
@@ -762,7 +763,7 @@ export const VerdocsTemplateRoles = /*@__PURE__*/ createComponent({
762
763
  export const VerdocsTemplateSettings = /*@__PURE__*/ createComponent({
763
764
  tagName: 'verdocs-template-settings',
764
765
  elementClass: VerdocsTemplateSettingsElement,
765
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
766
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
766
767
  react: React,
767
768
  events: {
768
769
  onNext: 'next',
@@ -775,7 +776,7 @@ export const VerdocsTemplateSettings = /*@__PURE__*/ createComponent({
775
776
  export const VerdocsTemplateStar = /*@__PURE__*/ createComponent({
776
777
  tagName: 'verdocs-template-star',
777
778
  elementClass: VerdocsTemplateStarElement,
778
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
779
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
779
780
  react: React,
780
781
  events: {
781
782
  onStarChange: 'starChange',
@@ -786,7 +787,7 @@ export const VerdocsTemplateStar = /*@__PURE__*/ createComponent({
786
787
  export const VerdocsTemplateTags = /*@__PURE__*/ createComponent({
787
788
  tagName: 'verdocs-template-tags',
788
789
  elementClass: VerdocsTemplateTagsElement,
789
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
790
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
790
791
  react: React,
791
792
  events: {},
792
793
  defineCustomElement: defineVerdocsTemplateTags
@@ -794,7 +795,7 @@ export const VerdocsTemplateTags = /*@__PURE__*/ createComponent({
794
795
  export const VerdocsTemplatesList = /*@__PURE__*/ createComponent({
795
796
  tagName: 'verdocs-templates-list',
796
797
  elementClass: VerdocsTemplatesListElement,
797
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
798
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
798
799
  react: React,
799
800
  events: {
800
801
  onSdkError: 'sdkError',
@@ -813,7 +814,7 @@ export const VerdocsTemplatesList = /*@__PURE__*/ createComponent({
813
814
  export const VerdocsTextInput = /*@__PURE__*/ createComponent({
814
815
  tagName: 'verdocs-text-input',
815
816
  elementClass: VerdocsTextInputElement,
816
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
817
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
817
818
  react: React,
818
819
  events: {},
819
820
  defineCustomElement: defineVerdocsTextInput
@@ -821,7 +822,7 @@ export const VerdocsTextInput = /*@__PURE__*/ createComponent({
821
822
  export const VerdocsToggle = /*@__PURE__*/ createComponent({
822
823
  tagName: 'verdocs-toggle',
823
824
  elementClass: VerdocsToggleElement,
824
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
825
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
825
826
  react: React,
826
827
  events: {},
827
828
  defineCustomElement: defineVerdocsToggle
@@ -829,7 +830,7 @@ export const VerdocsToggle = /*@__PURE__*/ createComponent({
829
830
  export const VerdocsToggleButton = /*@__PURE__*/ createComponent({
830
831
  tagName: 'verdocs-toggle-button',
831
832
  elementClass: VerdocsToggleButtonElement,
832
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
833
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
833
834
  react: React,
834
835
  events: { onToggle: 'toggle' },
835
836
  defineCustomElement: defineVerdocsToggleButton
@@ -837,7 +838,7 @@ export const VerdocsToggleButton = /*@__PURE__*/ createComponent({
837
838
  export const VerdocsToolbarIcon = /*@__PURE__*/ createComponent({
838
839
  tagName: 'verdocs-toolbar-icon',
839
840
  elementClass: VerdocsToolbarIconElement,
840
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
841
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
841
842
  react: React,
842
843
  events: {},
843
844
  defineCustomElement: defineVerdocsToolbarIcon
@@ -845,7 +846,7 @@ export const VerdocsToolbarIcon = /*@__PURE__*/ createComponent({
845
846
  export const VerdocsUploadDialog = /*@__PURE__*/ createComponent({
846
847
  tagName: 'verdocs-upload-dialog',
847
848
  elementClass: VerdocsUploadDialogElement,
848
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
849
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
849
850
  react: React,
850
851
  events: {
851
852
  onExit: 'exit',
@@ -857,7 +858,7 @@ export const VerdocsUploadDialog = /*@__PURE__*/ createComponent({
857
858
  export const VerdocsView = /*@__PURE__*/ createComponent({
858
859
  tagName: 'verdocs-view',
859
860
  elementClass: VerdocsViewElement,
860
- // @ts-ignore - React type of Stencil Output Target may differ from the React version used in the Nuxt.js project, this can be ignored.
861
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
861
862
  react: React,
862
863
  events: {
863
864
  onSdkError: 'sdkError',
@@ -1 +1 @@
1
- {"version":3,"file":"components.js","sourceRoot":"","sources":["../src/components.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"components.js","sourceRoot":"","sources":["../src/components.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdocs/web-sdk-react",
3
- "version": "5.3.4",
3
+ "version": "5.4.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.3.4",
21
+ "@verdocs/web-sdk": "^5.4.1",
22
22
  "@stencil/react-output-target": "^1.0.2"
23
23
  },
24
24
  "peerDependencies": {