legalesign-document-viewer-react 0.2.8 → 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.
@@ -6,6 +6,7 @@ import { LsEditorField as LsEditorFieldElement, defineCustomElement as defineLsE
6
6
  import { LsEditorTable as LsEditorTableElement, defineCustomElement as defineLsEditorTable } from "legalesign-document-viewer/dist/components/ls-editor-table.js";
7
7
  import { LsFeatureColumn as LsFeatureColumnElement, defineCustomElement as defineLsFeatureColumn } from "legalesign-document-viewer/dist/components/ls-feature-column.js";
8
8
  import { LsFieldAlignment as LsFieldAlignmentElement, defineCustomElement as defineLsFieldAlignment } from "legalesign-document-viewer/dist/components/ls-field-alignment.js";
9
+ import { LsFieldContent as LsFieldContentElement, defineCustomElement as defineLsFieldContent } from "legalesign-document-viewer/dist/components/ls-field-content.js";
9
10
  import { LsFieldDimensions as LsFieldDimensionsElement, defineCustomElement as defineLsFieldDimensions } from "legalesign-document-viewer/dist/components/ls-field-dimensions.js";
10
11
  import { LsFieldDistribute as LsFieldDistributeElement, defineCustomElement as defineLsFieldDistribute } from "legalesign-document-viewer/dist/components/ls-field-distribute.js";
11
12
  import { LsFieldFooter as LsFieldFooterElement, defineCustomElement as defineLsFieldFooter } from "legalesign-document-viewer/dist/components/ls-field-footer.js";
@@ -13,6 +14,7 @@ import { LsFieldFormat as LsFieldFormatElement, defineCustomElement as defineLsF
13
14
  import { LsFieldPlacement as LsFieldPlacementElement, defineCustomElement as defineLsFieldPlacement } from "legalesign-document-viewer/dist/components/ls-field-placement.js";
14
15
  import { LsFieldPropertiesAdvanced as LsFieldPropertiesAdvancedElement, defineCustomElement as defineLsFieldPropertiesAdvanced } from "legalesign-document-viewer/dist/components/ls-field-properties-advanced.js";
15
16
  import { LsFieldPropertiesAutosign as LsFieldPropertiesAutosignElement, defineCustomElement as defineLsFieldPropertiesAutosign } from "legalesign-document-viewer/dist/components/ls-field-properties-autosign.js";
17
+ import { LsFieldPropertiesContainer as LsFieldPropertiesContainerElement, defineCustomElement as defineLsFieldPropertiesContainer } from "legalesign-document-viewer/dist/components/ls-field-properties-container.js";
16
18
  import { LsFieldPropertiesDate as LsFieldPropertiesDateElement, defineCustomElement as defineLsFieldPropertiesDate } from "legalesign-document-viewer/dist/components/ls-field-properties-date.js";
17
19
  import { LsFieldPropertiesEmail as LsFieldPropertiesEmailElement, defineCustomElement as defineLsFieldPropertiesEmail } from "legalesign-document-viewer/dist/components/ls-field-properties-email.js";
18
20
  import { LsFieldPropertiesFile as LsFieldPropertiesFileElement, defineCustomElement as defineLsFieldPropertiesFile } from "legalesign-document-viewer/dist/components/ls-field-properties-file.js";
@@ -24,11 +26,15 @@ import { LsFieldPropertiesSignature as LsFieldPropertiesSignatureElement, define
24
26
  import { LsFieldPropertiesText as LsFieldPropertiesTextElement, defineCustomElement as defineLsFieldPropertiesText } from "legalesign-document-viewer/dist/components/ls-field-properties-text.js";
25
27
  import { LsFieldProperties as LsFieldPropertiesElement, defineCustomElement as defineLsFieldProperties } from "legalesign-document-viewer/dist/components/ls-field-properties.js";
26
28
  import { LsFieldSize as LsFieldSizeElement, defineCustomElement as defineLsFieldSize } from "legalesign-document-viewer/dist/components/ls-field-size.js";
29
+ import { LsFieldTypeDisplay as LsFieldTypeDisplayElement, defineCustomElement as defineLsFieldTypeDisplay } from "legalesign-document-viewer/dist/components/ls-field-type-display.js";
27
30
  import { LsFormfield as LsFormfieldElement, defineCustomElement as defineLsFormfield } from "legalesign-document-viewer/dist/components/ls-formfield.js";
28
31
  import { LsIcon as LsIconElement, defineCustomElement as defineLsIcon } from "legalesign-document-viewer/dist/components/ls-icon.js";
32
+ import { LsInputWrapper as LsInputWrapperElement, defineCustomElement as defineLsInputWrapper } from "legalesign-document-viewer/dist/components/ls-input-wrapper.js";
29
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";
30
35
  import { LsParticipantManager as LsParticipantManagerElement, defineCustomElement as defineLsParticipantManager } from "legalesign-document-viewer/dist/components/ls-participant-manager.js";
31
36
  import { LsParticipantSelect as LsParticipantSelectElement, defineCustomElement as defineLsParticipantSelect } from "legalesign-document-viewer/dist/components/ls-participant-select.js";
37
+ import { LsPropsSection as LsPropsSectionElement, defineCustomElement as defineLsPropsSection } from "legalesign-document-viewer/dist/components/ls-props-section.js";
32
38
  import { LsRadioInput as LsRadioInputElement, defineCustomElement as defineLsRadioInput } from "legalesign-document-viewer/dist/components/ls-radio-input.js";
33
39
  import { LsSelectInput as LsSelectInputElement, defineCustomElement as defineLsSelectInput } from "legalesign-document-viewer/dist/components/ls-select-input.js";
34
40
  import { LsStatusbar as LsStatusbarElement, defineCustomElement as defineLsStatusbar } from "legalesign-document-viewer/dist/components/ls-statusbar.js";
@@ -95,6 +101,14 @@ export const LsFieldAlignment = /*@__PURE__*/ createComponent({
95
101
  },
96
102
  defineCustomElement: defineLsFieldAlignment
97
103
  });
104
+ export const LsFieldContent = /*@__PURE__*/ createComponent({
105
+ tagName: 'ls-field-content',
106
+ elementClass: LsFieldContentElement,
107
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
108
+ react: React,
109
+ events: {},
110
+ defineCustomElement: defineLsFieldContent
111
+ });
98
112
  export const LsFieldDimensions = /*@__PURE__*/ createComponent({
99
113
  tagName: 'ls-field-dimensions',
100
114
  elementClass: LsFieldDimensionsElement,
@@ -177,6 +191,14 @@ export const LsFieldPropertiesAutosign = /*@__PURE__*/ createComponent({
177
191
  events: {},
178
192
  defineCustomElement: defineLsFieldPropertiesAutosign
179
193
  });
194
+ export const LsFieldPropertiesContainer = /*@__PURE__*/ createComponent({
195
+ tagName: 'ls-field-properties-container',
196
+ elementClass: LsFieldPropertiesContainerElement,
197
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
198
+ react: React,
199
+ events: {},
200
+ defineCustomElement: defineLsFieldPropertiesContainer
201
+ });
180
202
  export const LsFieldPropertiesDate = /*@__PURE__*/ createComponent({
181
203
  tagName: 'ls-field-properties-date',
182
204
  elementClass: LsFieldPropertiesDateElement,
@@ -260,6 +282,14 @@ export const LsFieldSize = /*@__PURE__*/ createComponent({
260
282
  },
261
283
  defineCustomElement: defineLsFieldSize
262
284
  });
285
+ export const LsFieldTypeDisplay = /*@__PURE__*/ createComponent({
286
+ tagName: 'ls-field-type-display',
287
+ elementClass: LsFieldTypeDisplayElement,
288
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
289
+ react: React,
290
+ events: {},
291
+ defineCustomElement: defineLsFieldTypeDisplay
292
+ });
263
293
  export const LsFormfield = /*@__PURE__*/ createComponent({
264
294
  tagName: 'ls-formfield',
265
295
  elementClass: LsFormfieldElement,
@@ -276,6 +306,14 @@ export const LsIcon = /*@__PURE__*/ createComponent({
276
306
  events: {},
277
307
  defineCustomElement: defineLsIcon
278
308
  });
309
+ export const LsInputWrapper = /*@__PURE__*/ createComponent({
310
+ tagName: 'ls-input-wrapper',
311
+ elementClass: LsInputWrapperElement,
312
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
313
+ react: React,
314
+ events: {},
315
+ defineCustomElement: defineLsInputWrapper
316
+ });
279
317
  export const LsNumberInput = /*@__PURE__*/ createComponent({
280
318
  tagName: 'ls-number-input',
281
319
  elementClass: LsNumberInputElement,
@@ -284,6 +322,17 @@ export const LsNumberInput = /*@__PURE__*/ createComponent({
284
322
  events: {},
285
323
  defineCustomElement: defineLsNumberInput
286
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
+ });
287
336
  export const LsParticipantManager = /*@__PURE__*/ createComponent({
288
337
  tagName: 'ls-participant-manager',
289
338
  elementClass: LsParticipantManagerElement,
@@ -307,6 +356,14 @@ export const LsParticipantSelect = /*@__PURE__*/ createComponent({
307
356
  },
308
357
  defineCustomElement: defineLsParticipantSelect
309
358
  });
359
+ export const LsPropsSection = /*@__PURE__*/ createComponent({
360
+ tagName: 'ls-props-section',
361
+ elementClass: LsPropsSectionElement,
362
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
363
+ react: React,
364
+ events: {},
365
+ defineCustomElement: defineLsPropsSection
366
+ });
310
367
  export const LsRadioInput = /*@__PURE__*/ createComponent({
311
368
  tagName: 'ls-radio-input',
312
369
  elementClass: LsRadioInputElement,
@@ -3,13 +3,14 @@
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";
10
10
  import { LsEditorTable as LsEditorTableElement } from "legalesign-document-viewer/dist/components/ls-editor-table.js";
11
11
  import { LsFeatureColumn as LsFeatureColumnElement } from "legalesign-document-viewer/dist/components/ls-feature-column.js";
12
12
  import { LsFieldAlignment as LsFieldAlignmentElement } from "legalesign-document-viewer/dist/components/ls-field-alignment.js";
13
+ import { LsFieldContent as LsFieldContentElement } from "legalesign-document-viewer/dist/components/ls-field-content.js";
13
14
  import { LsFieldDimensions as LsFieldDimensionsElement } from "legalesign-document-viewer/dist/components/ls-field-dimensions.js";
14
15
  import { LsFieldDistribute as LsFieldDistributeElement } from "legalesign-document-viewer/dist/components/ls-field-distribute.js";
15
16
  import { LsFieldFooter as LsFieldFooterElement } from "legalesign-document-viewer/dist/components/ls-field-footer.js";
@@ -17,6 +18,7 @@ import { LsFieldFormat as LsFieldFormatElement } from "legalesign-document-viewe
17
18
  import { LsFieldPlacement as LsFieldPlacementElement } from "legalesign-document-viewer/dist/components/ls-field-placement.js";
18
19
  import { LsFieldPropertiesAdvanced as LsFieldPropertiesAdvancedElement } from "legalesign-document-viewer/dist/components/ls-field-properties-advanced.js";
19
20
  import { LsFieldPropertiesAutosign as LsFieldPropertiesAutosignElement } from "legalesign-document-viewer/dist/components/ls-field-properties-autosign.js";
21
+ import { LsFieldPropertiesContainer as LsFieldPropertiesContainerElement } from "legalesign-document-viewer/dist/components/ls-field-properties-container.js";
20
22
  import { LsFieldPropertiesDate as LsFieldPropertiesDateElement } from "legalesign-document-viewer/dist/components/ls-field-properties-date.js";
21
23
  import { LsFieldPropertiesEmail as LsFieldPropertiesEmailElement } from "legalesign-document-viewer/dist/components/ls-field-properties-email.js";
22
24
  import { LsFieldPropertiesFile as LsFieldPropertiesFileElement } from "legalesign-document-viewer/dist/components/ls-field-properties-file.js";
@@ -28,11 +30,15 @@ import { LsFieldPropertiesSignature as LsFieldPropertiesSignatureElement } from
28
30
  import { LsFieldPropertiesText as LsFieldPropertiesTextElement } from "legalesign-document-viewer/dist/components/ls-field-properties-text.js";
29
31
  import { LsFieldProperties as LsFieldPropertiesElement } from "legalesign-document-viewer/dist/components/ls-field-properties.js";
30
32
  import { LsFieldSize as LsFieldSizeElement } from "legalesign-document-viewer/dist/components/ls-field-size.js";
33
+ import { LsFieldTypeDisplay as LsFieldTypeDisplayElement } from "legalesign-document-viewer/dist/components/ls-field-type-display.js";
31
34
  import { LsFormfield as LsFormfieldElement } from "legalesign-document-viewer/dist/components/ls-formfield.js";
32
35
  import { LsIcon as LsIconElement } from "legalesign-document-viewer/dist/components/ls-icon.js";
36
+ import { LsInputWrapper as LsInputWrapperElement } from "legalesign-document-viewer/dist/components/ls-input-wrapper.js";
33
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";
34
39
  import { LsParticipantManager as LsParticipantManagerElement } from "legalesign-document-viewer/dist/components/ls-participant-manager.js";
35
40
  import { LsParticipantSelect as LsParticipantSelectElement } from "legalesign-document-viewer/dist/components/ls-participant-select.js";
41
+ import { LsPropsSection as LsPropsSectionElement } from "legalesign-document-viewer/dist/components/ls-props-section.js";
36
42
  import { LsRadioInput as LsRadioInputElement } from "legalesign-document-viewer/dist/components/ls-radio-input.js";
37
43
  import { LsSelectInput as LsSelectInputElement } from "legalesign-document-viewer/dist/components/ls-select-input.js";
38
44
  import { LsStatusbar as LsStatusbarElement } from "legalesign-document-viewer/dist/components/ls-statusbar.js";
@@ -64,6 +70,8 @@ export type LsFieldAlignmentEvents = {
64
70
  onUpdate: EventName<LsFieldAlignmentCustomEvent<LSMutateEvent[]>>;
65
71
  };
66
72
  export declare const LsFieldAlignment: StencilReactComponent<LsFieldAlignmentElement, LsFieldAlignmentEvents>;
73
+ export type LsFieldContentEvents = NonNullable<unknown>;
74
+ export declare const LsFieldContent: StencilReactComponent<LsFieldContentElement, LsFieldContentEvents>;
67
75
  export type LsFieldDimensionsEvents = {
68
76
  onMutate: EventName<LsFieldDimensionsCustomEvent<LSMutateEvent[]>>;
69
77
  onUpdate: EventName<LsFieldDimensionsCustomEvent<LSMutateEvent[]>>;
@@ -98,6 +106,8 @@ export type LsFieldPropertiesAdvancedEvents = {
98
106
  export declare const LsFieldPropertiesAdvanced: StencilReactComponent<LsFieldPropertiesAdvancedElement, LsFieldPropertiesAdvancedEvents>;
99
107
  export type LsFieldPropertiesAutosignEvents = NonNullable<unknown>;
100
108
  export declare const LsFieldPropertiesAutosign: StencilReactComponent<LsFieldPropertiesAutosignElement, LsFieldPropertiesAutosignEvents>;
109
+ export type LsFieldPropertiesContainerEvents = NonNullable<unknown>;
110
+ export declare const LsFieldPropertiesContainer: StencilReactComponent<LsFieldPropertiesContainerElement, LsFieldPropertiesContainerEvents>;
101
111
  export type LsFieldPropertiesDateEvents = NonNullable<unknown>;
102
112
  export declare const LsFieldPropertiesDate: StencilReactComponent<LsFieldPropertiesDateElement, LsFieldPropertiesDateEvents>;
103
113
  export type LsFieldPropertiesEmailEvents = NonNullable<unknown>;
@@ -121,12 +131,21 @@ export type LsFieldSizeEvents = {
121
131
  onUpdate: EventName<LsFieldSizeCustomEvent<LSMutateEvent[]>>;
122
132
  };
123
133
  export declare const LsFieldSize: StencilReactComponent<LsFieldSizeElement, LsFieldSizeEvents>;
134
+ export type LsFieldTypeDisplayEvents = NonNullable<unknown>;
135
+ export declare const LsFieldTypeDisplay: StencilReactComponent<LsFieldTypeDisplayElement, LsFieldTypeDisplayEvents>;
124
136
  export type LsFormfieldEvents = NonNullable<unknown>;
125
137
  export declare const LsFormfield: StencilReactComponent<LsFormfieldElement, LsFormfieldEvents>;
126
138
  export type LsIconEvents = NonNullable<unknown>;
127
139
  export declare const LsIcon: StencilReactComponent<LsIconElement, LsIconEvents>;
140
+ export type LsInputWrapperEvents = NonNullable<unknown>;
141
+ export declare const LsInputWrapper: StencilReactComponent<LsInputWrapperElement, LsInputWrapperEvents>;
128
142
  export type LsNumberInputEvents = NonNullable<unknown>;
129
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>;
130
149
  export type LsParticipantManagerEvents = {
131
150
  onMutate: EventName<LsParticipantManagerCustomEvent<LSMutateEvent[]>>;
132
151
  onUpdate: EventName<LsParticipantManagerCustomEvent<LSMutateEvent[]>>;
@@ -138,6 +157,8 @@ export type LsParticipantSelectEvents = {
138
157
  onRoleChange: EventName<CustomEvent<number>>;
139
158
  };
140
159
  export declare const LsParticipantSelect: StencilReactComponent<LsParticipantSelectElement, LsParticipantSelectEvents>;
160
+ export type LsPropsSectionEvents = NonNullable<unknown>;
161
+ export declare const LsPropsSection: StencilReactComponent<LsPropsSectionElement, LsPropsSectionEvents>;
141
162
  export type LsRadioInputEvents = NonNullable<unknown>;
142
163
  export declare const LsRadioInput: StencilReactComponent<LsRadioInputElement, LsRadioInputEvents>;
143
164
  export type LsSelectInputEvents = NonNullable<unknown>;
@@ -9,13 +9,14 @@
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";
16
16
  import { LsEditorTable as LsEditorTableElement, defineCustomElement as defineLsEditorTable } from "legalesign-document-viewer/dist/components/ls-editor-table.js";
17
17
  import { LsFeatureColumn as LsFeatureColumnElement, defineCustomElement as defineLsFeatureColumn } from "legalesign-document-viewer/dist/components/ls-feature-column.js";
18
18
  import { LsFieldAlignment as LsFieldAlignmentElement, defineCustomElement as defineLsFieldAlignment } from "legalesign-document-viewer/dist/components/ls-field-alignment.js";
19
+ import { LsFieldContent as LsFieldContentElement, defineCustomElement as defineLsFieldContent } from "legalesign-document-viewer/dist/components/ls-field-content.js";
19
20
  import { LsFieldDimensions as LsFieldDimensionsElement, defineCustomElement as defineLsFieldDimensions } from "legalesign-document-viewer/dist/components/ls-field-dimensions.js";
20
21
  import { LsFieldDistribute as LsFieldDistributeElement, defineCustomElement as defineLsFieldDistribute } from "legalesign-document-viewer/dist/components/ls-field-distribute.js";
21
22
  import { LsFieldFooter as LsFieldFooterElement, defineCustomElement as defineLsFieldFooter } from "legalesign-document-viewer/dist/components/ls-field-footer.js";
@@ -23,6 +24,7 @@ import { LsFieldFormat as LsFieldFormatElement, defineCustomElement as defineLsF
23
24
  import { LsFieldPlacement as LsFieldPlacementElement, defineCustomElement as defineLsFieldPlacement } from "legalesign-document-viewer/dist/components/ls-field-placement.js";
24
25
  import { LsFieldPropertiesAdvanced as LsFieldPropertiesAdvancedElement, defineCustomElement as defineLsFieldPropertiesAdvanced } from "legalesign-document-viewer/dist/components/ls-field-properties-advanced.js";
25
26
  import { LsFieldPropertiesAutosign as LsFieldPropertiesAutosignElement, defineCustomElement as defineLsFieldPropertiesAutosign } from "legalesign-document-viewer/dist/components/ls-field-properties-autosign.js";
27
+ import { LsFieldPropertiesContainer as LsFieldPropertiesContainerElement, defineCustomElement as defineLsFieldPropertiesContainer } from "legalesign-document-viewer/dist/components/ls-field-properties-container.js";
26
28
  import { LsFieldPropertiesDate as LsFieldPropertiesDateElement, defineCustomElement as defineLsFieldPropertiesDate } from "legalesign-document-viewer/dist/components/ls-field-properties-date.js";
27
29
  import { LsFieldPropertiesEmail as LsFieldPropertiesEmailElement, defineCustomElement as defineLsFieldPropertiesEmail } from "legalesign-document-viewer/dist/components/ls-field-properties-email.js";
28
30
  import { LsFieldPropertiesFile as LsFieldPropertiesFileElement, defineCustomElement as defineLsFieldPropertiesFile } from "legalesign-document-viewer/dist/components/ls-field-properties-file.js";
@@ -34,11 +36,15 @@ import { LsFieldPropertiesSignature as LsFieldPropertiesSignatureElement, define
34
36
  import { LsFieldPropertiesText as LsFieldPropertiesTextElement, defineCustomElement as defineLsFieldPropertiesText } from "legalesign-document-viewer/dist/components/ls-field-properties-text.js";
35
37
  import { LsFieldProperties as LsFieldPropertiesElement, defineCustomElement as defineLsFieldProperties } from "legalesign-document-viewer/dist/components/ls-field-properties.js";
36
38
  import { LsFieldSize as LsFieldSizeElement, defineCustomElement as defineLsFieldSize } from "legalesign-document-viewer/dist/components/ls-field-size.js";
39
+ import { LsFieldTypeDisplay as LsFieldTypeDisplayElement, defineCustomElement as defineLsFieldTypeDisplay } from "legalesign-document-viewer/dist/components/ls-field-type-display.js";
37
40
  import { LsFormfield as LsFormfieldElement, defineCustomElement as defineLsFormfield } from "legalesign-document-viewer/dist/components/ls-formfield.js";
38
41
  import { LsIcon as LsIconElement, defineCustomElement as defineLsIcon } from "legalesign-document-viewer/dist/components/ls-icon.js";
42
+ import { LsInputWrapper as LsInputWrapperElement, defineCustomElement as defineLsInputWrapper } from "legalesign-document-viewer/dist/components/ls-input-wrapper.js";
39
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";
40
45
  import { LsParticipantManager as LsParticipantManagerElement, defineCustomElement as defineLsParticipantManager } from "legalesign-document-viewer/dist/components/ls-participant-manager.js";
41
46
  import { LsParticipantSelect as LsParticipantSelectElement, defineCustomElement as defineLsParticipantSelect } from "legalesign-document-viewer/dist/components/ls-participant-select.js";
47
+ import { LsPropsSection as LsPropsSectionElement, defineCustomElement as defineLsPropsSection } from "legalesign-document-viewer/dist/components/ls-props-section.js";
42
48
  import { LsRadioInput as LsRadioInputElement, defineCustomElement as defineLsRadioInput } from "legalesign-document-viewer/dist/components/ls-radio-input.js";
43
49
  import { LsSelectInput as LsSelectInputElement, defineCustomElement as defineLsSelectInput } from "legalesign-document-viewer/dist/components/ls-select-input.js";
44
50
  import { LsStatusbar as LsStatusbarElement, defineCustomElement as defineLsStatusbar } from "legalesign-document-viewer/dist/components/ls-statusbar.js";
@@ -133,6 +139,17 @@ export const LsFieldAlignment: StencilReactComponent<LsFieldAlignmentElement, Ls
133
139
  defineCustomElement: defineLsFieldAlignment
134
140
  });
135
141
 
142
+ export type LsFieldContentEvents = NonNullable<unknown>;
143
+
144
+ export const LsFieldContent: StencilReactComponent<LsFieldContentElement, LsFieldContentEvents> = /*@__PURE__*/ createComponent<LsFieldContentElement, LsFieldContentEvents>({
145
+ tagName: 'ls-field-content',
146
+ elementClass: LsFieldContentElement,
147
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
148
+ react: React,
149
+ events: {} as LsFieldContentEvents,
150
+ defineCustomElement: defineLsFieldContent
151
+ });
152
+
136
153
  export type LsFieldDimensionsEvents = {
137
154
  onMutate: EventName<LsFieldDimensionsCustomEvent<LSMutateEvent[]>>,
138
155
  onUpdate: EventName<LsFieldDimensionsCustomEvent<LSMutateEvent[]>>
@@ -257,6 +274,17 @@ export const LsFieldPropertiesAutosign: StencilReactComponent<LsFieldPropertiesA
257
274
  defineCustomElement: defineLsFieldPropertiesAutosign
258
275
  });
259
276
 
277
+ export type LsFieldPropertiesContainerEvents = NonNullable<unknown>;
278
+
279
+ export const LsFieldPropertiesContainer: StencilReactComponent<LsFieldPropertiesContainerElement, LsFieldPropertiesContainerEvents> = /*@__PURE__*/ createComponent<LsFieldPropertiesContainerElement, LsFieldPropertiesContainerEvents>({
280
+ tagName: 'ls-field-properties-container',
281
+ elementClass: LsFieldPropertiesContainerElement,
282
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
283
+ react: React,
284
+ events: {} as LsFieldPropertiesContainerEvents,
285
+ defineCustomElement: defineLsFieldPropertiesContainer
286
+ });
287
+
260
288
  export type LsFieldPropertiesDateEvents = NonNullable<unknown>;
261
289
 
262
290
  export const LsFieldPropertiesDate: StencilReactComponent<LsFieldPropertiesDateElement, LsFieldPropertiesDateEvents> = /*@__PURE__*/ createComponent<LsFieldPropertiesDateElement, LsFieldPropertiesDateEvents>({
@@ -373,6 +401,17 @@ export const LsFieldSize: StencilReactComponent<LsFieldSizeElement, LsFieldSizeE
373
401
  defineCustomElement: defineLsFieldSize
374
402
  });
375
403
 
404
+ export type LsFieldTypeDisplayEvents = NonNullable<unknown>;
405
+
406
+ export const LsFieldTypeDisplay: StencilReactComponent<LsFieldTypeDisplayElement, LsFieldTypeDisplayEvents> = /*@__PURE__*/ createComponent<LsFieldTypeDisplayElement, LsFieldTypeDisplayEvents>({
407
+ tagName: 'ls-field-type-display',
408
+ elementClass: LsFieldTypeDisplayElement,
409
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
410
+ react: React,
411
+ events: {} as LsFieldTypeDisplayEvents,
412
+ defineCustomElement: defineLsFieldTypeDisplay
413
+ });
414
+
376
415
  export type LsFormfieldEvents = NonNullable<unknown>;
377
416
 
378
417
  export const LsFormfield: StencilReactComponent<LsFormfieldElement, LsFormfieldEvents> = /*@__PURE__*/ createComponent<LsFormfieldElement, LsFormfieldEvents>({
@@ -395,6 +434,17 @@ export const LsIcon: StencilReactComponent<LsIconElement, LsIconEvents> = /*@__P
395
434
  defineCustomElement: defineLsIcon
396
435
  });
397
436
 
437
+ export type LsInputWrapperEvents = NonNullable<unknown>;
438
+
439
+ export const LsInputWrapper: StencilReactComponent<LsInputWrapperElement, LsInputWrapperEvents> = /*@__PURE__*/ createComponent<LsInputWrapperElement, LsInputWrapperEvents>({
440
+ tagName: 'ls-input-wrapper',
441
+ elementClass: LsInputWrapperElement,
442
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
443
+ react: React,
444
+ events: {} as LsInputWrapperEvents,
445
+ defineCustomElement: defineLsInputWrapper
446
+ });
447
+
398
448
  export type LsNumberInputEvents = NonNullable<unknown>;
399
449
 
400
450
  export const LsNumberInput: StencilReactComponent<LsNumberInputElement, LsNumberInputEvents> = /*@__PURE__*/ createComponent<LsNumberInputElement, LsNumberInputEvents>({
@@ -406,6 +456,23 @@ export const LsNumberInput: StencilReactComponent<LsNumberInputElement, LsNumber
406
456
  defineCustomElement: defineLsNumberInput
407
457
  });
408
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
+
409
476
  export type LsParticipantManagerEvents = {
410
477
  onMutate: EventName<LsParticipantManagerCustomEvent<LSMutateEvent[]>>,
411
478
  onUpdate: EventName<LsParticipantManagerCustomEvent<LSMutateEvent[]>>
@@ -442,6 +509,17 @@ export const LsParticipantSelect: StencilReactComponent<LsParticipantSelectEleme
442
509
  defineCustomElement: defineLsParticipantSelect
443
510
  });
444
511
 
512
+ export type LsPropsSectionEvents = NonNullable<unknown>;
513
+
514
+ export const LsPropsSection: StencilReactComponent<LsPropsSectionElement, LsPropsSectionEvents> = /*@__PURE__*/ createComponent<LsPropsSectionElement, LsPropsSectionEvents>({
515
+ tagName: 'ls-props-section',
516
+ elementClass: LsPropsSectionElement,
517
+ // @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
518
+ react: React,
519
+ events: {} as LsPropsSectionEvents,
520
+ defineCustomElement: defineLsPropsSection
521
+ });
522
+
445
523
  export type LsRadioInputEvents = NonNullable<unknown>;
446
524
 
447
525
  export const LsRadioInput: StencilReactComponent<LsRadioInputElement, LsRadioInputEvents> = /*@__PURE__*/ createComponent<LsRadioInputElement, LsRadioInputEvents>({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "legalesign-document-viewer-react",
3
- "version": "0.2.8",
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.8"
53
+ "legalesign-document-viewer": "^0.2.10"
54
54
  },
55
55
  "pnpm": {
56
56
  "overrides": {