legalesign-document-viewer-react 0.10.4 → 0.10.6

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.
@@ -1,6 +1,7 @@
1
1
  'use client';
2
2
  import { createComponent } from '@stencil/react-output-target/runtime';
3
3
  import { LsAddNewButton as LsAddNewButtonElement, defineCustomElement as defineLsAddNewButton } from "legalesign-document-viewer/dist/components/ls-add-new-button.js";
4
+ import { LsAssigneeSelect as LsAssigneeSelectElement, defineCustomElement as defineLsAssigneeSelect } from "legalesign-document-viewer/dist/components/ls-assignee-select.js";
4
5
  import { LsBadge as LsBadgeElement, defineCustomElement as defineLsBadge } from "legalesign-document-viewer/dist/components/ls-badge.js";
5
6
  import { LsBanner as LsBannerElement, defineCustomElement as defineLsBanner } from "legalesign-document-viewer/dist/components/ls-banner.js";
6
7
  import { LsButton as LsButtonElement, defineCustomElement as defineLsButton } from "legalesign-document-viewer/dist/components/ls-button.js";
@@ -25,13 +26,13 @@ import { LsFieldFormat as LsFieldFormatElement, defineCustomElement as defineLsF
25
26
  import { LsFieldPlacement as LsFieldPlacementElement, defineCustomElement as defineLsFieldPlacement } from "legalesign-document-viewer/dist/components/ls-field-placement.js";
26
27
  import { LsFieldPropertiesAdvanced as LsFieldPropertiesAdvancedElement, defineCustomElement as defineLsFieldPropertiesAdvanced } from "legalesign-document-viewer/dist/components/ls-field-properties-advanced.js";
27
28
  import { LsFieldPropertiesAutosign as LsFieldPropertiesAutosignElement, defineCustomElement as defineLsFieldPropertiesAutosign } from "legalesign-document-viewer/dist/components/ls-field-properties-autosign.js";
29
+ import { LsFieldPropertiesCheckbox as LsFieldPropertiesCheckboxElement, defineCustomElement as defineLsFieldPropertiesCheckbox } from "legalesign-document-viewer/dist/components/ls-field-properties-checkbox.js";
28
30
  import { LsFieldPropertiesContainer as LsFieldPropertiesContainerElement, defineCustomElement as defineLsFieldPropertiesContainer } from "legalesign-document-viewer/dist/components/ls-field-properties-container.js";
29
31
  import { LsFieldPropertiesDate as LsFieldPropertiesDateElement, defineCustomElement as defineLsFieldPropertiesDate } from "legalesign-document-viewer/dist/components/ls-field-properties-date.js";
30
32
  import { LsFieldPropertiesDropdown as LsFieldPropertiesDropdownElement, defineCustomElement as defineLsFieldPropertiesDropdown } from "legalesign-document-viewer/dist/components/ls-field-properties-dropdown.js";
31
33
  import { LsFieldPropertiesEmail as LsFieldPropertiesEmailElement, defineCustomElement as defineLsFieldPropertiesEmail } from "legalesign-document-viewer/dist/components/ls-field-properties-email.js";
32
34
  import { LsFieldPropertiesFile as LsFieldPropertiesFileElement, defineCustomElement as defineLsFieldPropertiesFile } from "legalesign-document-viewer/dist/components/ls-field-properties-file.js";
33
35
  import { LsFieldPropertiesGeneral as LsFieldPropertiesGeneralElement, defineCustomElement as defineLsFieldPropertiesGeneral } from "legalesign-document-viewer/dist/components/ls-field-properties-general.js";
34
- import { LsFieldPropertiesImage as LsFieldPropertiesImageElement, defineCustomElement as defineLsFieldPropertiesImage } from "legalesign-document-viewer/dist/components/ls-field-properties-image.js";
35
36
  import { LsFieldPropertiesMultiple as LsFieldPropertiesMultipleElement, defineCustomElement as defineLsFieldPropertiesMultiple } from "legalesign-document-viewer/dist/components/ls-field-properties-multiple.js";
36
37
  import { LsFieldPropertiesNumber as LsFieldPropertiesNumberElement, defineCustomElement as defineLsFieldPropertiesNumber } from "legalesign-document-viewer/dist/components/ls-field-properties-number.js";
37
38
  import { LsFieldPropertiesSignature as LsFieldPropertiesSignatureElement, defineCustomElement as defineLsFieldPropertiesSignature } from "legalesign-document-viewer/dist/components/ls-field-properties-signature.js";
@@ -39,6 +40,7 @@ import { LsFieldPropertiesText as LsFieldPropertiesTextElement, defineCustomElem
39
40
  import { LsFieldProperties as LsFieldPropertiesElement, defineCustomElement as defineLsFieldProperties } from "legalesign-document-viewer/dist/components/ls-field-properties.js";
40
41
  import { LsFieldSize as LsFieldSizeElement, defineCustomElement as defineLsFieldSize } from "legalesign-document-viewer/dist/components/ls-field-size.js";
41
42
  import { LsFieldTypeDisplay as LsFieldTypeDisplayElement, defineCustomElement as defineLsFieldTypeDisplay } from "legalesign-document-viewer/dist/components/ls-field-type-display.js";
43
+ import { LsFieldTypeSelect as LsFieldTypeSelectElement, defineCustomElement as defineLsFieldTypeSelect } from "legalesign-document-viewer/dist/components/ls-field-type-select.js";
42
44
  import { LsFormfield as LsFormfieldElement, defineCustomElement as defineLsFormfield } from "legalesign-document-viewer/dist/components/ls-formfield.js";
43
45
  import { LsHeaderBar as LsHeaderBarElement, defineCustomElement as defineLsHeaderBar } from "legalesign-document-viewer/dist/components/ls-header-bar.js";
44
46
  import { LsHelperBar as LsHelperBarElement, defineCustomElement as defineLsHelperBar } from "legalesign-document-viewer/dist/components/ls-helper-bar.js";
@@ -90,6 +92,14 @@ export const LsAddNewButton = /*@__PURE__*/ createComponent({
90
92
  events: {},
91
93
  defineCustomElement: defineLsAddNewButton
92
94
  });
95
+ export const LsAssigneeSelect = /*@__PURE__*/ createComponent({
96
+ tagName: 'ls-assignee-select',
97
+ elementClass: LsAssigneeSelectElement,
98
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
99
+ react: React,
100
+ events: { onAssigneeChange: 'assigneeChange' },
101
+ defineCustomElement: defineLsAssigneeSelect
102
+ });
93
103
  export const LsBadge = /*@__PURE__*/ createComponent({
94
104
  tagName: 'ls-badge',
95
105
  elementClass: LsBadgeElement,
@@ -317,6 +327,14 @@ export const LsFieldPropertiesAutosign = /*@__PURE__*/ createComponent({
317
327
  events: {},
318
328
  defineCustomElement: defineLsFieldPropertiesAutosign
319
329
  });
330
+ export const LsFieldPropertiesCheckbox = /*@__PURE__*/ createComponent({
331
+ tagName: 'ls-field-properties-checkbox',
332
+ elementClass: LsFieldPropertiesCheckboxElement,
333
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
334
+ react: React,
335
+ events: {},
336
+ defineCustomElement: defineLsFieldPropertiesCheckbox
337
+ });
320
338
  export const LsFieldPropertiesContainer = /*@__PURE__*/ createComponent({
321
339
  tagName: 'ls-field-properties-container',
322
340
  elementClass: LsFieldPropertiesContainerElement,
@@ -365,14 +383,6 @@ export const LsFieldPropertiesGeneral = /*@__PURE__*/ createComponent({
365
383
  events: {},
366
384
  defineCustomElement: defineLsFieldPropertiesGeneral
367
385
  });
368
- export const LsFieldPropertiesImage = /*@__PURE__*/ createComponent({
369
- tagName: 'ls-field-properties-image',
370
- elementClass: LsFieldPropertiesImageElement,
371
- // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
372
- react: React,
373
- events: {},
374
- defineCustomElement: defineLsFieldPropertiesImage
375
- });
376
386
  export const LsFieldPropertiesMultiple = /*@__PURE__*/ createComponent({
377
387
  tagName: 'ls-field-properties-multiple',
378
388
  elementClass: LsFieldPropertiesMultipleElement,
@@ -424,6 +434,14 @@ export const LsFieldTypeDisplay = /*@__PURE__*/ createComponent({
424
434
  events: {},
425
435
  defineCustomElement: defineLsFieldTypeDisplay
426
436
  });
437
+ export const LsFieldTypeSelect = /*@__PURE__*/ createComponent({
438
+ tagName: 'ls-field-type-select',
439
+ elementClass: LsFieldTypeSelectElement,
440
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
441
+ react: React,
442
+ events: { onFieldTypeChange: 'fieldTypeChange' },
443
+ defineCustomElement: defineLsFieldTypeSelect
444
+ });
427
445
  export const LsFormfield = /*@__PURE__*/ createComponent({
428
446
  tagName: 'ls-formfield',
429
447
  elementClass: LsFormfieldElement,
@@ -5,6 +5,7 @@
5
5
  import type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';
6
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 } from "legalesign-document-viewer";
7
7
  import { LsAddNewButton as LsAddNewButtonElement } from "legalesign-document-viewer/dist/components/ls-add-new-button.js";
8
+ import { LsAssigneeSelect as LsAssigneeSelectElement } from "legalesign-document-viewer/dist/components/ls-assignee-select.js";
8
9
  import { LsBadge as LsBadgeElement } from "legalesign-document-viewer/dist/components/ls-badge.js";
9
10
  import { LsBanner as LsBannerElement } from "legalesign-document-viewer/dist/components/ls-banner.js";
10
11
  import { LsButton as LsButtonElement } from "legalesign-document-viewer/dist/components/ls-button.js";
@@ -29,13 +30,13 @@ import { LsFieldFormat as LsFieldFormatElement } from "legalesign-document-viewe
29
30
  import { LsFieldPlacement as LsFieldPlacementElement } from "legalesign-document-viewer/dist/components/ls-field-placement.js";
30
31
  import { LsFieldPropertiesAdvanced as LsFieldPropertiesAdvancedElement } from "legalesign-document-viewer/dist/components/ls-field-properties-advanced.js";
31
32
  import { LsFieldPropertiesAutosign as LsFieldPropertiesAutosignElement } from "legalesign-document-viewer/dist/components/ls-field-properties-autosign.js";
33
+ import { LsFieldPropertiesCheckbox as LsFieldPropertiesCheckboxElement } from "legalesign-document-viewer/dist/components/ls-field-properties-checkbox.js";
32
34
  import { LsFieldPropertiesContainer as LsFieldPropertiesContainerElement } from "legalesign-document-viewer/dist/components/ls-field-properties-container.js";
33
35
  import { LsFieldPropertiesDate as LsFieldPropertiesDateElement } from "legalesign-document-viewer/dist/components/ls-field-properties-date.js";
34
36
  import { LsFieldPropertiesDropdown as LsFieldPropertiesDropdownElement } from "legalesign-document-viewer/dist/components/ls-field-properties-dropdown.js";
35
37
  import { LsFieldPropertiesEmail as LsFieldPropertiesEmailElement } from "legalesign-document-viewer/dist/components/ls-field-properties-email.js";
36
38
  import { LsFieldPropertiesFile as LsFieldPropertiesFileElement } from "legalesign-document-viewer/dist/components/ls-field-properties-file.js";
37
39
  import { LsFieldPropertiesGeneral as LsFieldPropertiesGeneralElement } from "legalesign-document-viewer/dist/components/ls-field-properties-general.js";
38
- import { LsFieldPropertiesImage as LsFieldPropertiesImageElement } from "legalesign-document-viewer/dist/components/ls-field-properties-image.js";
39
40
  import { LsFieldPropertiesMultiple as LsFieldPropertiesMultipleElement } from "legalesign-document-viewer/dist/components/ls-field-properties-multiple.js";
40
41
  import { LsFieldPropertiesNumber as LsFieldPropertiesNumberElement } from "legalesign-document-viewer/dist/components/ls-field-properties-number.js";
41
42
  import { LsFieldPropertiesSignature as LsFieldPropertiesSignatureElement } from "legalesign-document-viewer/dist/components/ls-field-properties-signature.js";
@@ -43,6 +44,7 @@ import { LsFieldPropertiesText as LsFieldPropertiesTextElement } from "legalesig
43
44
  import { LsFieldProperties as LsFieldPropertiesElement } from "legalesign-document-viewer/dist/components/ls-field-properties.js";
44
45
  import { LsFieldSize as LsFieldSizeElement } from "legalesign-document-viewer/dist/components/ls-field-size.js";
45
46
  import { LsFieldTypeDisplay as LsFieldTypeDisplayElement } from "legalesign-document-viewer/dist/components/ls-field-type-display.js";
47
+ import { LsFieldTypeSelect as LsFieldTypeSelectElement } from "legalesign-document-viewer/dist/components/ls-field-type-select.js";
46
48
  import { LsFormfield as LsFormfieldElement } from "legalesign-document-viewer/dist/components/ls-formfield.js";
47
49
  import { LsHeaderBar as LsHeaderBarElement } from "legalesign-document-viewer/dist/components/ls-header-bar.js";
48
50
  import { LsHelperBar as LsHelperBarElement } from "legalesign-document-viewer/dist/components/ls-helper-bar.js";
@@ -87,6 +89,10 @@ import { LsValidationTag as LsValidationTagElement } from "legalesign-document-v
87
89
  import { TestItem as TestItemElement } from "legalesign-document-viewer/dist/components/test-item.js";
88
90
  export type LsAddNewButtonEvents = NonNullable<unknown>;
89
91
  export declare const LsAddNewButton: StencilReactComponent<LsAddNewButtonElement, LsAddNewButtonEvents>;
92
+ export type LsAssigneeSelectEvents = {
93
+ onAssigneeChange: EventName<CustomEvent<number>>;
94
+ };
95
+ export declare const LsAssigneeSelect: StencilReactComponent<LsAssigneeSelectElement, LsAssigneeSelectEvents>;
90
96
  export type LsBadgeEvents = NonNullable<unknown>;
91
97
  export declare const LsBadge: StencilReactComponent<LsBadgeElement, LsBadgeEvents>;
92
98
  export type LsBannerEvents = NonNullable<unknown>;
@@ -189,6 +195,8 @@ export type LsFieldPropertiesAdvancedEvents = {
189
195
  export declare const LsFieldPropertiesAdvanced: StencilReactComponent<LsFieldPropertiesAdvancedElement, LsFieldPropertiesAdvancedEvents>;
190
196
  export type LsFieldPropertiesAutosignEvents = NonNullable<unknown>;
191
197
  export declare const LsFieldPropertiesAutosign: StencilReactComponent<LsFieldPropertiesAutosignElement, LsFieldPropertiesAutosignEvents>;
198
+ export type LsFieldPropertiesCheckboxEvents = NonNullable<unknown>;
199
+ export declare const LsFieldPropertiesCheckbox: StencilReactComponent<LsFieldPropertiesCheckboxElement, LsFieldPropertiesCheckboxEvents>;
192
200
  export type LsFieldPropertiesContainerEvents = NonNullable<unknown>;
193
201
  export declare const LsFieldPropertiesContainer: StencilReactComponent<LsFieldPropertiesContainerElement, LsFieldPropertiesContainerEvents>;
194
202
  export type LsFieldPropertiesDateEvents = NonNullable<unknown>;
@@ -201,8 +209,6 @@ export type LsFieldPropertiesFileEvents = NonNullable<unknown>;
201
209
  export declare const LsFieldPropertiesFile: StencilReactComponent<LsFieldPropertiesFileElement, LsFieldPropertiesFileEvents>;
202
210
  export type LsFieldPropertiesGeneralEvents = NonNullable<unknown>;
203
211
  export declare const LsFieldPropertiesGeneral: StencilReactComponent<LsFieldPropertiesGeneralElement, LsFieldPropertiesGeneralEvents>;
204
- export type LsFieldPropertiesImageEvents = NonNullable<unknown>;
205
- export declare const LsFieldPropertiesImage: StencilReactComponent<LsFieldPropertiesImageElement, LsFieldPropertiesImageEvents>;
206
212
  export type LsFieldPropertiesMultipleEvents = {
207
213
  onMutate: EventName<LsFieldPropertiesMultipleCustomEvent<LSMutateEvent[]>>;
208
214
  onUpdate: EventName<LsFieldPropertiesMultipleCustomEvent<LSMutateEvent[]>>;
@@ -220,6 +226,10 @@ export type LsFieldSizeEvents = {
220
226
  export declare const LsFieldSize: StencilReactComponent<LsFieldSizeElement, LsFieldSizeEvents>;
221
227
  export type LsFieldTypeDisplayEvents = NonNullable<unknown>;
222
228
  export declare const LsFieldTypeDisplay: StencilReactComponent<LsFieldTypeDisplayElement, LsFieldTypeDisplayEvents>;
229
+ export type LsFieldTypeSelectEvents = {
230
+ onFieldTypeChange: EventName<CustomEvent<string>>;
231
+ };
232
+ export declare const LsFieldTypeSelect: StencilReactComponent<LsFieldTypeSelectElement, LsFieldTypeSelectEvents>;
223
233
  export type LsFormfieldEvents = {
224
234
  onTextChange: EventName<CustomEvent<{
225
235
  name: string;
@@ -11,6 +11,7 @@ import type { EventName, StencilReactComponent } from '@stencil/react-output-tar
11
11
  import { createComponent } from '@stencil/react-output-target/runtime';
12
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 } 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
+ import { LsAssigneeSelect as LsAssigneeSelectElement, defineCustomElement as defineLsAssigneeSelect } from "legalesign-document-viewer/dist/components/ls-assignee-select.js";
14
15
  import { LsBadge as LsBadgeElement, defineCustomElement as defineLsBadge } from "legalesign-document-viewer/dist/components/ls-badge.js";
15
16
  import { LsBanner as LsBannerElement, defineCustomElement as defineLsBanner } from "legalesign-document-viewer/dist/components/ls-banner.js";
16
17
  import { LsButton as LsButtonElement, defineCustomElement as defineLsButton } from "legalesign-document-viewer/dist/components/ls-button.js";
@@ -35,13 +36,13 @@ import { LsFieldFormat as LsFieldFormatElement, defineCustomElement as defineLsF
35
36
  import { LsFieldPlacement as LsFieldPlacementElement, defineCustomElement as defineLsFieldPlacement } from "legalesign-document-viewer/dist/components/ls-field-placement.js";
36
37
  import { LsFieldPropertiesAdvanced as LsFieldPropertiesAdvancedElement, defineCustomElement as defineLsFieldPropertiesAdvanced } from "legalesign-document-viewer/dist/components/ls-field-properties-advanced.js";
37
38
  import { LsFieldPropertiesAutosign as LsFieldPropertiesAutosignElement, defineCustomElement as defineLsFieldPropertiesAutosign } from "legalesign-document-viewer/dist/components/ls-field-properties-autosign.js";
39
+ import { LsFieldPropertiesCheckbox as LsFieldPropertiesCheckboxElement, defineCustomElement as defineLsFieldPropertiesCheckbox } from "legalesign-document-viewer/dist/components/ls-field-properties-checkbox.js";
38
40
  import { LsFieldPropertiesContainer as LsFieldPropertiesContainerElement, defineCustomElement as defineLsFieldPropertiesContainer } from "legalesign-document-viewer/dist/components/ls-field-properties-container.js";
39
41
  import { LsFieldPropertiesDate as LsFieldPropertiesDateElement, defineCustomElement as defineLsFieldPropertiesDate } from "legalesign-document-viewer/dist/components/ls-field-properties-date.js";
40
42
  import { LsFieldPropertiesDropdown as LsFieldPropertiesDropdownElement, defineCustomElement as defineLsFieldPropertiesDropdown } from "legalesign-document-viewer/dist/components/ls-field-properties-dropdown.js";
41
43
  import { LsFieldPropertiesEmail as LsFieldPropertiesEmailElement, defineCustomElement as defineLsFieldPropertiesEmail } from "legalesign-document-viewer/dist/components/ls-field-properties-email.js";
42
44
  import { LsFieldPropertiesFile as LsFieldPropertiesFileElement, defineCustomElement as defineLsFieldPropertiesFile } from "legalesign-document-viewer/dist/components/ls-field-properties-file.js";
43
45
  import { LsFieldPropertiesGeneral as LsFieldPropertiesGeneralElement, defineCustomElement as defineLsFieldPropertiesGeneral } from "legalesign-document-viewer/dist/components/ls-field-properties-general.js";
44
- import { LsFieldPropertiesImage as LsFieldPropertiesImageElement, defineCustomElement as defineLsFieldPropertiesImage } from "legalesign-document-viewer/dist/components/ls-field-properties-image.js";
45
46
  import { LsFieldPropertiesMultiple as LsFieldPropertiesMultipleElement, defineCustomElement as defineLsFieldPropertiesMultiple } from "legalesign-document-viewer/dist/components/ls-field-properties-multiple.js";
46
47
  import { LsFieldPropertiesNumber as LsFieldPropertiesNumberElement, defineCustomElement as defineLsFieldPropertiesNumber } from "legalesign-document-viewer/dist/components/ls-field-properties-number.js";
47
48
  import { LsFieldPropertiesSignature as LsFieldPropertiesSignatureElement, defineCustomElement as defineLsFieldPropertiesSignature } from "legalesign-document-viewer/dist/components/ls-field-properties-signature.js";
@@ -49,6 +50,7 @@ import { LsFieldPropertiesText as LsFieldPropertiesTextElement, defineCustomElem
49
50
  import { LsFieldProperties as LsFieldPropertiesElement, defineCustomElement as defineLsFieldProperties } from "legalesign-document-viewer/dist/components/ls-field-properties.js";
50
51
  import { LsFieldSize as LsFieldSizeElement, defineCustomElement as defineLsFieldSize } from "legalesign-document-viewer/dist/components/ls-field-size.js";
51
52
  import { LsFieldTypeDisplay as LsFieldTypeDisplayElement, defineCustomElement as defineLsFieldTypeDisplay } from "legalesign-document-viewer/dist/components/ls-field-type-display.js";
53
+ import { LsFieldTypeSelect as LsFieldTypeSelectElement, defineCustomElement as defineLsFieldTypeSelect } from "legalesign-document-viewer/dist/components/ls-field-type-select.js";
52
54
  import { LsFormfield as LsFormfieldElement, defineCustomElement as defineLsFormfield } from "legalesign-document-viewer/dist/components/ls-formfield.js";
53
55
  import { LsHeaderBar as LsHeaderBarElement, defineCustomElement as defineLsHeaderBar } from "legalesign-document-viewer/dist/components/ls-header-bar.js";
54
56
  import { LsHelperBar as LsHelperBarElement, defineCustomElement as defineLsHelperBar } from "legalesign-document-viewer/dist/components/ls-helper-bar.js";
@@ -104,6 +106,17 @@ export const LsAddNewButton: StencilReactComponent<LsAddNewButtonElement, LsAddN
104
106
  defineCustomElement: defineLsAddNewButton
105
107
  });
106
108
 
109
+ export type LsAssigneeSelectEvents = { onAssigneeChange: EventName<CustomEvent<number>> };
110
+
111
+ export const LsAssigneeSelect: StencilReactComponent<LsAssigneeSelectElement, LsAssigneeSelectEvents> = /*@__PURE__*/ createComponent<LsAssigneeSelectElement, LsAssigneeSelectEvents>({
112
+ tagName: 'ls-assignee-select',
113
+ elementClass: LsAssigneeSelectElement,
114
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
115
+ react: React,
116
+ events: { onAssigneeChange: 'assigneeChange' } as LsAssigneeSelectEvents,
117
+ defineCustomElement: defineLsAssigneeSelect
118
+ });
119
+
107
120
  export type LsBadgeEvents = NonNullable<unknown>;
108
121
 
109
122
  export const LsBadge: StencilReactComponent<LsBadgeElement, LsBadgeEvents> = /*@__PURE__*/ createComponent<LsBadgeElement, LsBadgeEvents>({
@@ -433,6 +446,17 @@ export const LsFieldPropertiesAutosign: StencilReactComponent<LsFieldPropertiesA
433
446
  defineCustomElement: defineLsFieldPropertiesAutosign
434
447
  });
435
448
 
449
+ export type LsFieldPropertiesCheckboxEvents = NonNullable<unknown>;
450
+
451
+ export const LsFieldPropertiesCheckbox: StencilReactComponent<LsFieldPropertiesCheckboxElement, LsFieldPropertiesCheckboxEvents> = /*@__PURE__*/ createComponent<LsFieldPropertiesCheckboxElement, LsFieldPropertiesCheckboxEvents>({
452
+ tagName: 'ls-field-properties-checkbox',
453
+ elementClass: LsFieldPropertiesCheckboxElement,
454
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
455
+ react: React,
456
+ events: {} as LsFieldPropertiesCheckboxEvents,
457
+ defineCustomElement: defineLsFieldPropertiesCheckbox
458
+ });
459
+
436
460
  export type LsFieldPropertiesContainerEvents = NonNullable<unknown>;
437
461
 
438
462
  export const LsFieldPropertiesContainer: StencilReactComponent<LsFieldPropertiesContainerElement, LsFieldPropertiesContainerEvents> = /*@__PURE__*/ createComponent<LsFieldPropertiesContainerElement, LsFieldPropertiesContainerEvents>({
@@ -499,17 +523,6 @@ export const LsFieldPropertiesGeneral: StencilReactComponent<LsFieldPropertiesGe
499
523
  defineCustomElement: defineLsFieldPropertiesGeneral
500
524
  });
501
525
 
502
- export type LsFieldPropertiesImageEvents = NonNullable<unknown>;
503
-
504
- export const LsFieldPropertiesImage: StencilReactComponent<LsFieldPropertiesImageElement, LsFieldPropertiesImageEvents> = /*@__PURE__*/ createComponent<LsFieldPropertiesImageElement, LsFieldPropertiesImageEvents>({
505
- tagName: 'ls-field-properties-image',
506
- elementClass: LsFieldPropertiesImageElement,
507
- // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
508
- react: React,
509
- events: {} as LsFieldPropertiesImageEvents,
510
- defineCustomElement: defineLsFieldPropertiesImage
511
- });
512
-
513
526
  export type LsFieldPropertiesMultipleEvents = {
514
527
  onMutate: EventName<LsFieldPropertiesMultipleCustomEvent<LSMutateEvent[]>>,
515
528
  onUpdate: EventName<LsFieldPropertiesMultipleCustomEvent<LSMutateEvent[]>>
@@ -582,6 +595,17 @@ export const LsFieldTypeDisplay: StencilReactComponent<LsFieldTypeDisplayElement
582
595
  defineCustomElement: defineLsFieldTypeDisplay
583
596
  });
584
597
 
598
+ export type LsFieldTypeSelectEvents = { onFieldTypeChange: EventName<CustomEvent<string>> };
599
+
600
+ export const LsFieldTypeSelect: StencilReactComponent<LsFieldTypeSelectElement, LsFieldTypeSelectEvents> = /*@__PURE__*/ createComponent<LsFieldTypeSelectElement, LsFieldTypeSelectEvents>({
601
+ tagName: 'ls-field-type-select',
602
+ elementClass: LsFieldTypeSelectElement,
603
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
604
+ react: React,
605
+ events: { onFieldTypeChange: 'fieldTypeChange' } as LsFieldTypeSelectEvents,
606
+ defineCustomElement: defineLsFieldTypeSelect
607
+ });
608
+
585
609
  export type LsFormfieldEvents = {
586
610
  onTextChange: EventName<CustomEvent<{ name: string; value: string }>>,
587
611
  onNumberChange: EventName<CustomEvent<{ name: string; value: number }>>,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "legalesign-document-viewer-react",
3
- "version": "0.10.4",
3
+ "version": "0.10.6",
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": "^0.10.4"
48
+ "legalesign-document-viewer": "^0.10.6"
49
49
  },
50
50
  "repository": {
51
51
  "type": "git",