legalesign-document-viewer-react 0.0.8 → 0.0.9
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,15 +1,5 @@
|
|
|
1
1
|
'use client';
|
|
2
|
-
|
|
3
|
-
/**
|
|
4
|
-
* This file was automatically generated by the Stencil React Output Target.
|
|
5
|
-
* Changes to this file may cause incorrect behavior and will be lost if the code is regenerated.
|
|
6
|
-
*/
|
|
7
|
-
|
|
8
|
-
/* eslint-disable */
|
|
9
|
-
|
|
10
|
-
import type { EventName, StencilReactComponent } from '@stencil/react-output-target/runtime';
|
|
11
2
|
import { createComponent } from '@stencil/react-output-target/runtime';
|
|
12
|
-
import { type LSApiElement, type LSMutateEvent, type LsDocumentViewerCustomEvent, type LsFieldAlignmentCustomEvent, type LsFieldDimensionsCustomEvent, type LsFieldDistributeCustomEvent, type LsFieldFormatCustomEvent, type LsFieldSizeCustomEvent, type LsParticipantManagerCustomEvent } from "legalesign-document-viewer";
|
|
13
3
|
import { LsDocumentOptions as LsDocumentOptionsElement, defineCustomElement as defineLsDocumentOptions } from "legalesign-document-viewer/dist/components/ls-document-options.js";
|
|
14
4
|
import { LsDocumentViewer as LsDocumentViewerElement, defineCustomElement as defineLsDocumentViewer } from "legalesign-document-viewer/dist/components/ls-document-viewer.js";
|
|
15
5
|
import { LsEditorField as LsEditorFieldElement, defineCustomElement as defineLsEditorField } from "legalesign-document-viewer/dist/components/ls-editor-field.js";
|
|
@@ -40,27 +30,15 @@ import { LsTextareaInput as LsTextareaInputElement, defineCustomElement as defin
|
|
|
40
30
|
import { LsToolbar as LsToolbarElement, defineCustomElement as defineLsToolbar } from "legalesign-document-viewer/dist/components/ls-toolbar.js";
|
|
41
31
|
import { LsToolboxField as LsToolboxFieldElement, defineCustomElement as defineLsToolboxField } from "legalesign-document-viewer/dist/components/ls-toolbox-field.js";
|
|
42
32
|
import React from 'react';
|
|
43
|
-
|
|
44
|
-
export type LsDocumentOptionsEvents = NonNullable<unknown>;
|
|
45
|
-
|
|
46
|
-
export const LsDocumentOptions: StencilReactComponent<LsDocumentOptionsElement, LsDocumentOptionsEvents> = /*@__PURE__*/ createComponent<LsDocumentOptionsElement, LsDocumentOptionsEvents>({
|
|
33
|
+
export const LsDocumentOptions = /*@__PURE__*/ createComponent({
|
|
47
34
|
tagName: 'ls-document-options',
|
|
48
35
|
elementClass: LsDocumentOptionsElement,
|
|
49
36
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
50
37
|
react: React,
|
|
51
|
-
events: {}
|
|
38
|
+
events: {},
|
|
52
39
|
defineCustomElement: defineLsDocumentOptions
|
|
53
40
|
});
|
|
54
|
-
|
|
55
|
-
export type LsDocumentViewerEvents = {
|
|
56
|
-
onPageRendered: EventName<CustomEvent<number>>,
|
|
57
|
-
onPageChange: EventName<CustomEvent<number>>,
|
|
58
|
-
onSelectFields: EventName<LsDocumentViewerCustomEvent<LSApiElement[]>>,
|
|
59
|
-
onMutate: EventName<LsDocumentViewerCustomEvent<LSMutateEvent[]>>,
|
|
60
|
-
onUpdate: EventName<LsDocumentViewerCustomEvent<LSMutateEvent[]>>
|
|
61
|
-
};
|
|
62
|
-
|
|
63
|
-
export const LsDocumentViewer: StencilReactComponent<LsDocumentViewerElement, LsDocumentViewerEvents> = /*@__PURE__*/ createComponent<LsDocumentViewerElement, LsDocumentViewerEvents>({
|
|
41
|
+
export const LsDocumentViewer = /*@__PURE__*/ createComponent({
|
|
64
42
|
tagName: 'ls-document-viewer',
|
|
65
43
|
elementClass: LsDocumentViewerElement,
|
|
66
44
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -71,49 +49,34 @@ export const LsDocumentViewer: StencilReactComponent<LsDocumentViewerElement, Ls
|
|
|
71
49
|
onSelectFields: 'selectFields',
|
|
72
50
|
onMutate: 'mutate',
|
|
73
51
|
onUpdate: 'update'
|
|
74
|
-
}
|
|
52
|
+
},
|
|
75
53
|
defineCustomElement: defineLsDocumentViewer
|
|
76
54
|
});
|
|
77
|
-
|
|
78
|
-
export type LsEditorFieldEvents = NonNullable<unknown>;
|
|
79
|
-
|
|
80
|
-
export const LsEditorField: StencilReactComponent<LsEditorFieldElement, LsEditorFieldEvents> = /*@__PURE__*/ createComponent<LsEditorFieldElement, LsEditorFieldEvents>({
|
|
55
|
+
export const LsEditorField = /*@__PURE__*/ createComponent({
|
|
81
56
|
tagName: 'ls-editor-field',
|
|
82
57
|
elementClass: LsEditorFieldElement,
|
|
83
58
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
84
59
|
react: React,
|
|
85
|
-
events: {}
|
|
60
|
+
events: {},
|
|
86
61
|
defineCustomElement: defineLsEditorField
|
|
87
62
|
});
|
|
88
|
-
|
|
89
|
-
export type LsEditorTableEvents = NonNullable<unknown>;
|
|
90
|
-
|
|
91
|
-
export const LsEditorTable: StencilReactComponent<LsEditorTableElement, LsEditorTableEvents> = /*@__PURE__*/ createComponent<LsEditorTableElement, LsEditorTableEvents>({
|
|
63
|
+
export const LsEditorTable = /*@__PURE__*/ createComponent({
|
|
92
64
|
tagName: 'ls-editor-table',
|
|
93
65
|
elementClass: LsEditorTableElement,
|
|
94
66
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
95
67
|
react: React,
|
|
96
|
-
events: {}
|
|
68
|
+
events: {},
|
|
97
69
|
defineCustomElement: defineLsEditorTable
|
|
98
70
|
});
|
|
99
|
-
|
|
100
|
-
export type LsFeatureColumnEvents = { onManage: EventName<CustomEvent<'document' | 'toolbox' | 'participant'>> };
|
|
101
|
-
|
|
102
|
-
export const LsFeatureColumn: StencilReactComponent<LsFeatureColumnElement, LsFeatureColumnEvents> = /*@__PURE__*/ createComponent<LsFeatureColumnElement, LsFeatureColumnEvents>({
|
|
71
|
+
export const LsFeatureColumn = /*@__PURE__*/ createComponent({
|
|
103
72
|
tagName: 'ls-feature-column',
|
|
104
73
|
elementClass: LsFeatureColumnElement,
|
|
105
74
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
106
75
|
react: React,
|
|
107
|
-
events: { onManage: 'manage' }
|
|
76
|
+
events: { onManage: 'manage' },
|
|
108
77
|
defineCustomElement: defineLsFeatureColumn
|
|
109
78
|
});
|
|
110
|
-
|
|
111
|
-
export type LsFieldAlignmentEvents = {
|
|
112
|
-
onMutate: EventName<LsFieldAlignmentCustomEvent<LSMutateEvent[]>>,
|
|
113
|
-
onUpdate: EventName<LsFieldAlignmentCustomEvent<LSMutateEvent[]>>
|
|
114
|
-
};
|
|
115
|
-
|
|
116
|
-
export const LsFieldAlignment: StencilReactComponent<LsFieldAlignmentElement, LsFieldAlignmentEvents> = /*@__PURE__*/ createComponent<LsFieldAlignmentElement, LsFieldAlignmentEvents>({
|
|
79
|
+
export const LsFieldAlignment = /*@__PURE__*/ createComponent({
|
|
117
80
|
tagName: 'ls-field-alignment',
|
|
118
81
|
elementClass: LsFieldAlignmentElement,
|
|
119
82
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -121,16 +84,10 @@ export const LsFieldAlignment: StencilReactComponent<LsFieldAlignmentElement, Ls
|
|
|
121
84
|
events: {
|
|
122
85
|
onMutate: 'mutate',
|
|
123
86
|
onUpdate: 'update'
|
|
124
|
-
}
|
|
87
|
+
},
|
|
125
88
|
defineCustomElement: defineLsFieldAlignment
|
|
126
89
|
});
|
|
127
|
-
|
|
128
|
-
export type LsFieldDimensionsEvents = {
|
|
129
|
-
onMutate: EventName<LsFieldDimensionsCustomEvent<LSMutateEvent[]>>,
|
|
130
|
-
onUpdate: EventName<LsFieldDimensionsCustomEvent<LSMutateEvent[]>>
|
|
131
|
-
};
|
|
132
|
-
|
|
133
|
-
export const LsFieldDimensions: StencilReactComponent<LsFieldDimensionsElement, LsFieldDimensionsEvents> = /*@__PURE__*/ createComponent<LsFieldDimensionsElement, LsFieldDimensionsEvents>({
|
|
90
|
+
export const LsFieldDimensions = /*@__PURE__*/ createComponent({
|
|
134
91
|
tagName: 'ls-field-dimensions',
|
|
135
92
|
elementClass: LsFieldDimensionsElement,
|
|
136
93
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -138,16 +95,10 @@ export const LsFieldDimensions: StencilReactComponent<LsFieldDimensionsElement,
|
|
|
138
95
|
events: {
|
|
139
96
|
onMutate: 'mutate',
|
|
140
97
|
onUpdate: 'update'
|
|
141
|
-
}
|
|
98
|
+
},
|
|
142
99
|
defineCustomElement: defineLsFieldDimensions
|
|
143
100
|
});
|
|
144
|
-
|
|
145
|
-
export type LsFieldDistributeEvents = {
|
|
146
|
-
onMutate: EventName<LsFieldDistributeCustomEvent<LSMutateEvent[]>>,
|
|
147
|
-
onUpdate: EventName<LsFieldDistributeCustomEvent<LSMutateEvent[]>>
|
|
148
|
-
};
|
|
149
|
-
|
|
150
|
-
export const LsFieldDistribute: StencilReactComponent<LsFieldDistributeElement, LsFieldDistributeEvents> = /*@__PURE__*/ createComponent<LsFieldDistributeElement, LsFieldDistributeEvents>({
|
|
101
|
+
export const LsFieldDistribute = /*@__PURE__*/ createComponent({
|
|
151
102
|
tagName: 'ls-field-distribute',
|
|
152
103
|
elementClass: LsFieldDistributeElement,
|
|
153
104
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -155,16 +106,10 @@ export const LsFieldDistribute: StencilReactComponent<LsFieldDistributeElement,
|
|
|
155
106
|
events: {
|
|
156
107
|
onMutate: 'mutate',
|
|
157
108
|
onUpdate: 'update'
|
|
158
|
-
}
|
|
109
|
+
},
|
|
159
110
|
defineCustomElement: defineLsFieldDistribute
|
|
160
111
|
});
|
|
161
|
-
|
|
162
|
-
export type LsFieldFormatEvents = {
|
|
163
|
-
onMutate: EventName<LsFieldFormatCustomEvent<LSMutateEvent[]>>,
|
|
164
|
-
onUpdate: EventName<LsFieldFormatCustomEvent<LSMutateEvent[]>>
|
|
165
|
-
};
|
|
166
|
-
|
|
167
|
-
export const LsFieldFormat: StencilReactComponent<LsFieldFormatElement, LsFieldFormatEvents> = /*@__PURE__*/ createComponent<LsFieldFormatElement, LsFieldFormatEvents>({
|
|
112
|
+
export const LsFieldFormat = /*@__PURE__*/ createComponent({
|
|
168
113
|
tagName: 'ls-field-format',
|
|
169
114
|
elementClass: LsFieldFormatElement,
|
|
170
115
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -172,93 +117,66 @@ export const LsFieldFormat: StencilReactComponent<LsFieldFormatElement, LsFieldF
|
|
|
172
117
|
events: {
|
|
173
118
|
onMutate: 'mutate',
|
|
174
119
|
onUpdate: 'update'
|
|
175
|
-
}
|
|
120
|
+
},
|
|
176
121
|
defineCustomElement: defineLsFieldFormat
|
|
177
122
|
});
|
|
178
|
-
|
|
179
|
-
export type LsFieldPropertiesEvents = NonNullable<unknown>;
|
|
180
|
-
|
|
181
|
-
export const LsFieldProperties: StencilReactComponent<LsFieldPropertiesElement, LsFieldPropertiesEvents> = /*@__PURE__*/ createComponent<LsFieldPropertiesElement, LsFieldPropertiesEvents>({
|
|
123
|
+
export const LsFieldProperties = /*@__PURE__*/ createComponent({
|
|
182
124
|
tagName: 'ls-field-properties',
|
|
183
125
|
elementClass: LsFieldPropertiesElement,
|
|
184
126
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
185
127
|
react: React,
|
|
186
|
-
events: {}
|
|
128
|
+
events: {},
|
|
187
129
|
defineCustomElement: defineLsFieldProperties
|
|
188
130
|
});
|
|
189
|
-
|
|
190
|
-
export type LsFieldPropertiesDateEvents = NonNullable<unknown>;
|
|
191
|
-
|
|
192
|
-
export const LsFieldPropertiesDate: StencilReactComponent<LsFieldPropertiesDateElement, LsFieldPropertiesDateEvents> = /*@__PURE__*/ createComponent<LsFieldPropertiesDateElement, LsFieldPropertiesDateEvents>({
|
|
131
|
+
export const LsFieldPropertiesDate = /*@__PURE__*/ createComponent({
|
|
193
132
|
tagName: 'ls-field-properties-date',
|
|
194
133
|
elementClass: LsFieldPropertiesDateElement,
|
|
195
134
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
196
135
|
react: React,
|
|
197
|
-
events: {}
|
|
136
|
+
events: {},
|
|
198
137
|
defineCustomElement: defineLsFieldPropertiesDate
|
|
199
138
|
});
|
|
200
|
-
|
|
201
|
-
export type LsFieldPropertiesGeneralEvents = NonNullable<unknown>;
|
|
202
|
-
|
|
203
|
-
export const LsFieldPropertiesGeneral: StencilReactComponent<LsFieldPropertiesGeneralElement, LsFieldPropertiesGeneralEvents> = /*@__PURE__*/ createComponent<LsFieldPropertiesGeneralElement, LsFieldPropertiesGeneralEvents>({
|
|
139
|
+
export const LsFieldPropertiesGeneral = /*@__PURE__*/ createComponent({
|
|
204
140
|
tagName: 'ls-field-properties-general',
|
|
205
141
|
elementClass: LsFieldPropertiesGeneralElement,
|
|
206
142
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
207
143
|
react: React,
|
|
208
|
-
events: {}
|
|
144
|
+
events: {},
|
|
209
145
|
defineCustomElement: defineLsFieldPropertiesGeneral
|
|
210
146
|
});
|
|
211
|
-
|
|
212
|
-
export type LsFieldPropertiesMultipleEvents = NonNullable<unknown>;
|
|
213
|
-
|
|
214
|
-
export const LsFieldPropertiesMultiple: StencilReactComponent<LsFieldPropertiesMultipleElement, LsFieldPropertiesMultipleEvents> = /*@__PURE__*/ createComponent<LsFieldPropertiesMultipleElement, LsFieldPropertiesMultipleEvents>({
|
|
147
|
+
export const LsFieldPropertiesMultiple = /*@__PURE__*/ createComponent({
|
|
215
148
|
tagName: 'ls-field-properties-multiple',
|
|
216
149
|
elementClass: LsFieldPropertiesMultipleElement,
|
|
217
150
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
218
151
|
react: React,
|
|
219
|
-
events: {}
|
|
152
|
+
events: {},
|
|
220
153
|
defineCustomElement: defineLsFieldPropertiesMultiple
|
|
221
154
|
});
|
|
222
|
-
|
|
223
|
-
export type LsFieldPropertiesNumberEvents = NonNullable<unknown>;
|
|
224
|
-
|
|
225
|
-
export const LsFieldPropertiesNumber: StencilReactComponent<LsFieldPropertiesNumberElement, LsFieldPropertiesNumberEvents> = /*@__PURE__*/ createComponent<LsFieldPropertiesNumberElement, LsFieldPropertiesNumberEvents>({
|
|
155
|
+
export const LsFieldPropertiesNumber = /*@__PURE__*/ createComponent({
|
|
226
156
|
tagName: 'ls-field-properties-number',
|
|
227
157
|
elementClass: LsFieldPropertiesNumberElement,
|
|
228
158
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
229
159
|
react: React,
|
|
230
|
-
events: {}
|
|
160
|
+
events: {},
|
|
231
161
|
defineCustomElement: defineLsFieldPropertiesNumber
|
|
232
162
|
});
|
|
233
|
-
|
|
234
|
-
export type LsFieldPropertiesSignatureEvents = NonNullable<unknown>;
|
|
235
|
-
|
|
236
|
-
export const LsFieldPropertiesSignature: StencilReactComponent<LsFieldPropertiesSignatureElement, LsFieldPropertiesSignatureEvents> = /*@__PURE__*/ createComponent<LsFieldPropertiesSignatureElement, LsFieldPropertiesSignatureEvents>({
|
|
163
|
+
export const LsFieldPropertiesSignature = /*@__PURE__*/ createComponent({
|
|
237
164
|
tagName: 'ls-field-properties-signature',
|
|
238
165
|
elementClass: LsFieldPropertiesSignatureElement,
|
|
239
166
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
240
167
|
react: React,
|
|
241
|
-
events: {}
|
|
168
|
+
events: {},
|
|
242
169
|
defineCustomElement: defineLsFieldPropertiesSignature
|
|
243
170
|
});
|
|
244
|
-
|
|
245
|
-
export type LsFieldPropertiesTextEvents = NonNullable<unknown>;
|
|
246
|
-
|
|
247
|
-
export const LsFieldPropertiesText: StencilReactComponent<LsFieldPropertiesTextElement, LsFieldPropertiesTextEvents> = /*@__PURE__*/ createComponent<LsFieldPropertiesTextElement, LsFieldPropertiesTextEvents>({
|
|
171
|
+
export const LsFieldPropertiesText = /*@__PURE__*/ createComponent({
|
|
248
172
|
tagName: 'ls-field-properties-text',
|
|
249
173
|
elementClass: LsFieldPropertiesTextElement,
|
|
250
174
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
251
175
|
react: React,
|
|
252
|
-
events: {}
|
|
176
|
+
events: {},
|
|
253
177
|
defineCustomElement: defineLsFieldPropertiesText
|
|
254
178
|
});
|
|
255
|
-
|
|
256
|
-
export type LsFieldSizeEvents = {
|
|
257
|
-
onMutate: EventName<LsFieldSizeCustomEvent<LSMutateEvent[]>>,
|
|
258
|
-
onUpdate: EventName<LsFieldSizeCustomEvent<LSMutateEvent[]>>
|
|
259
|
-
};
|
|
260
|
-
|
|
261
|
-
export const LsFieldSize: StencilReactComponent<LsFieldSizeElement, LsFieldSizeEvents> = /*@__PURE__*/ createComponent<LsFieldSizeElement, LsFieldSizeEvents>({
|
|
179
|
+
export const LsFieldSize = /*@__PURE__*/ createComponent({
|
|
262
180
|
tagName: 'ls-field-size',
|
|
263
181
|
elementClass: LsFieldSizeElement,
|
|
264
182
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -266,49 +184,34 @@ export const LsFieldSize: StencilReactComponent<LsFieldSizeElement, LsFieldSizeE
|
|
|
266
184
|
events: {
|
|
267
185
|
onMutate: 'mutate',
|
|
268
186
|
onUpdate: 'update'
|
|
269
|
-
}
|
|
187
|
+
},
|
|
270
188
|
defineCustomElement: defineLsFieldSize
|
|
271
189
|
});
|
|
272
|
-
|
|
273
|
-
export type LsFormfieldEvents = NonNullable<unknown>;
|
|
274
|
-
|
|
275
|
-
export const LsFormfield: StencilReactComponent<LsFormfieldElement, LsFormfieldEvents> = /*@__PURE__*/ createComponent<LsFormfieldElement, LsFormfieldEvents>({
|
|
190
|
+
export const LsFormfield = /*@__PURE__*/ createComponent({
|
|
276
191
|
tagName: 'ls-formfield',
|
|
277
192
|
elementClass: LsFormfieldElement,
|
|
278
193
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
279
194
|
react: React,
|
|
280
|
-
events: {}
|
|
195
|
+
events: {},
|
|
281
196
|
defineCustomElement: defineLsFormfield
|
|
282
197
|
});
|
|
283
|
-
|
|
284
|
-
export type LsIconEvents = NonNullable<unknown>;
|
|
285
|
-
|
|
286
|
-
export const LsIcon: StencilReactComponent<LsIconElement, LsIconEvents> = /*@__PURE__*/ createComponent<LsIconElement, LsIconEvents>({
|
|
198
|
+
export const LsIcon = /*@__PURE__*/ createComponent({
|
|
287
199
|
tagName: 'ls-icon',
|
|
288
200
|
elementClass: LsIconElement,
|
|
289
201
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
290
202
|
react: React,
|
|
291
|
-
events: {}
|
|
203
|
+
events: {},
|
|
292
204
|
defineCustomElement: defineLsIcon
|
|
293
205
|
});
|
|
294
|
-
|
|
295
|
-
export type LsNumberInputEvents = NonNullable<unknown>;
|
|
296
|
-
|
|
297
|
-
export const LsNumberInput: StencilReactComponent<LsNumberInputElement, LsNumberInputEvents> = /*@__PURE__*/ createComponent<LsNumberInputElement, LsNumberInputEvents>({
|
|
206
|
+
export const LsNumberInput = /*@__PURE__*/ createComponent({
|
|
298
207
|
tagName: 'ls-number-input',
|
|
299
208
|
elementClass: LsNumberInputElement,
|
|
300
209
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
301
210
|
react: React,
|
|
302
|
-
events: {}
|
|
211
|
+
events: {},
|
|
303
212
|
defineCustomElement: defineLsNumberInput
|
|
304
213
|
});
|
|
305
|
-
|
|
306
|
-
export type LsParticipantManagerEvents = {
|
|
307
|
-
onMutate: EventName<LsParticipantManagerCustomEvent<LSMutateEvent[]>>,
|
|
308
|
-
onUpdate: EventName<LsParticipantManagerCustomEvent<LSMutateEvent[]>>
|
|
309
|
-
};
|
|
310
|
-
|
|
311
|
-
export const LsParticipantManager: StencilReactComponent<LsParticipantManagerElement, LsParticipantManagerEvents> = /*@__PURE__*/ createComponent<LsParticipantManagerElement, LsParticipantManagerEvents>({
|
|
214
|
+
export const LsParticipantManager = /*@__PURE__*/ createComponent({
|
|
312
215
|
tagName: 'ls-participant-manager',
|
|
313
216
|
elementClass: LsParticipantManagerElement,
|
|
314
217
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -316,94 +219,70 @@ export const LsParticipantManager: StencilReactComponent<LsParticipantManagerEle
|
|
|
316
219
|
events: {
|
|
317
220
|
onMutate: 'mutate',
|
|
318
221
|
onUpdate: 'update'
|
|
319
|
-
}
|
|
222
|
+
},
|
|
320
223
|
defineCustomElement: defineLsParticipantManager
|
|
321
224
|
});
|
|
322
|
-
|
|
323
|
-
export type LsParticipantSelectEvents = NonNullable<unknown>;
|
|
324
|
-
|
|
325
|
-
export const LsParticipantSelect: StencilReactComponent<LsParticipantSelectElement, LsParticipantSelectEvents> = /*@__PURE__*/ createComponent<LsParticipantSelectElement, LsParticipantSelectEvents>({
|
|
225
|
+
export const LsParticipantSelect = /*@__PURE__*/ createComponent({
|
|
326
226
|
tagName: 'ls-participant-select',
|
|
327
227
|
elementClass: LsParticipantSelectElement,
|
|
328
228
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
329
229
|
react: React,
|
|
330
|
-
events: {}
|
|
230
|
+
events: {},
|
|
331
231
|
defineCustomElement: defineLsParticipantSelect
|
|
332
232
|
});
|
|
333
|
-
|
|
334
|
-
export type LsRadioInputEvents = NonNullable<unknown>;
|
|
335
|
-
|
|
336
|
-
export const LsRadioInput: StencilReactComponent<LsRadioInputElement, LsRadioInputEvents> = /*@__PURE__*/ createComponent<LsRadioInputElement, LsRadioInputEvents>({
|
|
233
|
+
export const LsRadioInput = /*@__PURE__*/ createComponent({
|
|
337
234
|
tagName: 'ls-radio-input',
|
|
338
235
|
elementClass: LsRadioInputElement,
|
|
339
236
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
340
237
|
react: React,
|
|
341
|
-
events: {}
|
|
238
|
+
events: {},
|
|
342
239
|
defineCustomElement: defineLsRadioInput
|
|
343
240
|
});
|
|
344
|
-
|
|
345
|
-
export type LsSelectInputEvents = NonNullable<unknown>;
|
|
346
|
-
|
|
347
|
-
export const LsSelectInput: StencilReactComponent<LsSelectInputElement, LsSelectInputEvents> = /*@__PURE__*/ createComponent<LsSelectInputElement, LsSelectInputEvents>({
|
|
241
|
+
export const LsSelectInput = /*@__PURE__*/ createComponent({
|
|
348
242
|
tagName: 'ls-select-input',
|
|
349
243
|
elementClass: LsSelectInputElement,
|
|
350
244
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
351
245
|
react: React,
|
|
352
|
-
events: {}
|
|
246
|
+
events: {},
|
|
353
247
|
defineCustomElement: defineLsSelectInput
|
|
354
248
|
});
|
|
355
|
-
|
|
356
|
-
export type LsStatusbarEvents = NonNullable<unknown>;
|
|
357
|
-
|
|
358
|
-
export const LsStatusbar: StencilReactComponent<LsStatusbarElement, LsStatusbarEvents> = /*@__PURE__*/ createComponent<LsStatusbarElement, LsStatusbarEvents>({
|
|
249
|
+
export const LsStatusbar = /*@__PURE__*/ createComponent({
|
|
359
250
|
tagName: 'ls-statusbar',
|
|
360
251
|
elementClass: LsStatusbarElement,
|
|
361
252
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
362
253
|
react: React,
|
|
363
|
-
events: {}
|
|
254
|
+
events: {},
|
|
364
255
|
defineCustomElement: defineLsStatusbar
|
|
365
256
|
});
|
|
366
|
-
|
|
367
|
-
export type LsTextInputEvents = NonNullable<unknown>;
|
|
368
|
-
|
|
369
|
-
export const LsTextInput: StencilReactComponent<LsTextInputElement, LsTextInputEvents> = /*@__PURE__*/ createComponent<LsTextInputElement, LsTextInputEvents>({
|
|
257
|
+
export const LsTextInput = /*@__PURE__*/ createComponent({
|
|
370
258
|
tagName: 'ls-text-input',
|
|
371
259
|
elementClass: LsTextInputElement,
|
|
372
260
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
373
261
|
react: React,
|
|
374
|
-
events: {}
|
|
262
|
+
events: {},
|
|
375
263
|
defineCustomElement: defineLsTextInput
|
|
376
264
|
});
|
|
377
|
-
|
|
378
|
-
export type LsTextareaInputEvents = NonNullable<unknown>;
|
|
379
|
-
|
|
380
|
-
export const LsTextareaInput: StencilReactComponent<LsTextareaInputElement, LsTextareaInputEvents> = /*@__PURE__*/ createComponent<LsTextareaInputElement, LsTextareaInputEvents>({
|
|
265
|
+
export const LsTextareaInput = /*@__PURE__*/ createComponent({
|
|
381
266
|
tagName: 'ls-textarea-input',
|
|
382
267
|
elementClass: LsTextareaInputElement,
|
|
383
268
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
384
269
|
react: React,
|
|
385
|
-
events: {}
|
|
270
|
+
events: {},
|
|
386
271
|
defineCustomElement: defineLsTextareaInput
|
|
387
272
|
});
|
|
388
|
-
|
|
389
|
-
export type LsToolbarEvents = NonNullable<unknown>;
|
|
390
|
-
|
|
391
|
-
export const LsToolbar: StencilReactComponent<LsToolbarElement, LsToolbarEvents> = /*@__PURE__*/ createComponent<LsToolbarElement, LsToolbarEvents>({
|
|
273
|
+
export const LsToolbar = /*@__PURE__*/ createComponent({
|
|
392
274
|
tagName: 'ls-toolbar',
|
|
393
275
|
elementClass: LsToolbarElement,
|
|
394
276
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
395
277
|
react: React,
|
|
396
|
-
events: {}
|
|
278
|
+
events: {},
|
|
397
279
|
defineCustomElement: defineLsToolbar
|
|
398
280
|
});
|
|
399
|
-
|
|
400
|
-
export type LsToolboxFieldEvents = NonNullable<unknown>;
|
|
401
|
-
|
|
402
|
-
export const LsToolboxField: StencilReactComponent<LsToolboxFieldElement, LsToolboxFieldEvents> = /*@__PURE__*/ createComponent<LsToolboxFieldElement, LsToolboxFieldEvents>({
|
|
281
|
+
export const LsToolboxField = /*@__PURE__*/ createComponent({
|
|
403
282
|
tagName: 'ls-toolbox-field',
|
|
404
283
|
elementClass: LsToolboxFieldElement,
|
|
405
284
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
406
285
|
react: React,
|
|
407
|
-
events: {}
|
|
286
|
+
events: {},
|
|
408
287
|
defineCustomElement: defineLsToolboxField
|
|
409
288
|
});
|
package/dist/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './components/stencil-generated/components';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "legalesign-document-viewer-react",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.9",
|
|
4
4
|
"description": "Legalesign React Editor / Viewers",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"stencilJS",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"lib": "lib"
|
|
19
19
|
},
|
|
20
20
|
"files": [
|
|
21
|
-
"
|
|
21
|
+
"dist"
|
|
22
22
|
],
|
|
23
23
|
"include": ["lib"],
|
|
24
24
|
"exclude": ["node_modules"],
|
package/lib/index.ts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export * from './components/stencil-generated/components';
|