@vertexvis/viewer-react 1.0.0-testing.1 → 1.0.0-testing.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bundle.cjs.js +43 -60
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +43 -60
- package/dist/bundle.esm.js.map +1 -1
- package/dist/bundle.server.cjs.js +16 -0
- package/dist/bundle.server.cjs.js.map +1 -0
- package/dist/bundle.server.esm.js +3 -0
- package/dist/bundle.server.esm.js.map +1 -0
- package/dist/index.server.d.ts +1 -0
- package/package.json +23 -4
package/dist/bundle.esm.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
'use client';
|
|
2
|
+
import { createComponent } from '@stencil/react-output-target/runtime';
|
|
2
3
|
import React from 'react';
|
|
3
4
|
import { VertexSceneTreeNotificationBanner as VertexSceneTreeNotificationBanner$1, defineCustomElement as defineCustomElement$1 } from '@vertexvis/viewer/dist/components/vertex-scene-tree-notification-banner.js';
|
|
4
5
|
import { VertexSceneTreeSearch as VertexSceneTreeSearch$1, defineCustomElement as defineCustomElement$2 } from '@vertexvis/viewer/dist/components/vertex-scene-tree-search.js';
|
|
@@ -43,25 +44,7 @@ import { VertexViewerViewCube as VertexViewerViewCube$1, defineCustomElement as
|
|
|
43
44
|
import { VertexViewerWalkModeTool as VertexViewerWalkModeTool$1, defineCustomElement as defineCustomElement$F } from '@vertexvis/viewer/dist/components/vertex-viewer-walk-mode-tool.js';
|
|
44
45
|
import { VertexViewer as VertexViewer$1, defineCustomElement as defineCustomElement$a } from '@vertexvis/viewer/dist/components/vertex-viewer.js';
|
|
45
46
|
|
|
46
|
-
|
|
47
|
-
* @license
|
|
48
|
-
* Copyright 2018 Google LLC
|
|
49
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
50
|
-
*/
|
|
51
|
-
const e=new Set(["children","localName","ref","style","className"]),n=new WeakMap,t=(e,t,o,l,a)=>{const s=a?.[t];void 0===s?(e[t]=o,null==o&&t in HTMLElement.prototype&&e.removeAttribute(t)):o!==l&&((e,t,o)=>{let l=n.get(e);void 0===l&&n.set(e,l=new Map);let a=l.get(t);void 0!==o?void 0===a?(l.set(t,a={handleEvent:o}),e.addEventListener(t,a)):a.handleEvent=o:void 0!==a&&(l.delete(t),e.removeEventListener(t,a));})(e,s,o);},o=({react:n,tagName:o,elementClass:l,events:a,displayName:s})=>{const c=new Set(Object.keys(a??{})),r=n.forwardRef(((s,r)=>{const i=n.useRef(new Map),d=n.useRef(null),f={},u={};for(const[n,t]of Object.entries(s))e.has(n)?f["className"===n?"class":n]=t:c.has(n)||n in l.prototype?u[n]=t:f[n]=t;return n.useLayoutEffect((()=>{if(null===d.current)return;const e=new Map;for(const n in u)t(d.current,n,s[n],i.current.get(n),a),i.current.delete(n),e.set(n,s[n]);for(const[e,n]of i.current)t(d.current,e,void 0,n,a);i.current=e;})),n.useLayoutEffect((()=>{d.current?.removeAttribute("defer-hydration");}),[]),f.suppressHydrationWarning=!0,n.createElement(o,{...f,ref:n.useCallback((e=>{d.current=e,"function"==typeof r?r(e):null!==r&&(r.current=e);}),[r])})}));return r.displayName=s??l.name,r};
|
|
52
|
-
|
|
53
|
-
const r = ({
|
|
54
|
-
defineCustomElement: e,
|
|
55
|
-
tagName: o$1,
|
|
56
|
-
transformTag: n,
|
|
57
|
-
...t
|
|
58
|
-
}) => {
|
|
59
|
-
typeof e < "u" && e();
|
|
60
|
-
const a = n ? n(o$1) : o$1;
|
|
61
|
-
return o({ ...t, tagName: a });
|
|
62
|
-
};
|
|
63
|
-
|
|
64
|
-
const VertexSceneTree = /*@__PURE__*/ r({
|
|
47
|
+
const VertexSceneTree = /*@__PURE__*/ createComponent({
|
|
65
48
|
tagName: 'vertex-scene-tree',
|
|
66
49
|
elementClass: VertexSceneTree$1,
|
|
67
50
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -72,7 +55,7 @@ const VertexSceneTree = /*@__PURE__*/ r({
|
|
|
72
55
|
},
|
|
73
56
|
defineCustomElement: defineCustomElement
|
|
74
57
|
});
|
|
75
|
-
const VertexSceneTreeNotificationBanner = /*@__PURE__*/
|
|
58
|
+
const VertexSceneTreeNotificationBanner = /*@__PURE__*/ createComponent({
|
|
76
59
|
tagName: 'vertex-scene-tree-notification-banner',
|
|
77
60
|
elementClass: VertexSceneTreeNotificationBanner$1,
|
|
78
61
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -80,7 +63,7 @@ const VertexSceneTreeNotificationBanner = /*@__PURE__*/ r({
|
|
|
80
63
|
events: { onAction: 'action' },
|
|
81
64
|
defineCustomElement: defineCustomElement$1
|
|
82
65
|
});
|
|
83
|
-
const VertexSceneTreeSearch = /*@__PURE__*/
|
|
66
|
+
const VertexSceneTreeSearch = /*@__PURE__*/ createComponent({
|
|
84
67
|
tagName: 'vertex-scene-tree-search',
|
|
85
68
|
elementClass: VertexSceneTreeSearch$1,
|
|
86
69
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -91,7 +74,7 @@ const VertexSceneTreeSearch = /*@__PURE__*/ r({
|
|
|
91
74
|
},
|
|
92
75
|
defineCustomElement: defineCustomElement$2
|
|
93
76
|
});
|
|
94
|
-
const VertexSceneTreeTableCell = /*@__PURE__*/
|
|
77
|
+
const VertexSceneTreeTableCell = /*@__PURE__*/ createComponent({
|
|
95
78
|
tagName: 'vertex-scene-tree-table-cell',
|
|
96
79
|
elementClass: VertexSceneTreeTableCell$1,
|
|
97
80
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -105,7 +88,7 @@ const VertexSceneTreeTableCell = /*@__PURE__*/ r({
|
|
|
105
88
|
},
|
|
106
89
|
defineCustomElement: defineCustomElement$3
|
|
107
90
|
});
|
|
108
|
-
const VertexSceneTreeTableColumn = /*@__PURE__*/
|
|
91
|
+
const VertexSceneTreeTableColumn = /*@__PURE__*/ createComponent({
|
|
109
92
|
tagName: 'vertex-scene-tree-table-column',
|
|
110
93
|
elementClass: VertexSceneTreeTableColumn$1,
|
|
111
94
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -113,7 +96,7 @@ const VertexSceneTreeTableColumn = /*@__PURE__*/ r({
|
|
|
113
96
|
events: {},
|
|
114
97
|
defineCustomElement: defineCustomElement$4
|
|
115
98
|
});
|
|
116
|
-
const VertexSceneTreeTableHeader = /*@__PURE__*/
|
|
99
|
+
const VertexSceneTreeTableHeader = /*@__PURE__*/ createComponent({
|
|
117
100
|
tagName: 'vertex-scene-tree-table-header',
|
|
118
101
|
elementClass: VertexSceneTreeTableHeader$1,
|
|
119
102
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -121,7 +104,7 @@ const VertexSceneTreeTableHeader = /*@__PURE__*/ r({
|
|
|
121
104
|
events: {},
|
|
122
105
|
defineCustomElement: defineCustomElement$5
|
|
123
106
|
});
|
|
124
|
-
const VertexSceneTreeTableLayout = /*@__PURE__*/
|
|
107
|
+
const VertexSceneTreeTableLayout = /*@__PURE__*/ createComponent({
|
|
125
108
|
tagName: 'vertex-scene-tree-table-layout',
|
|
126
109
|
elementClass: VertexSceneTreeTableLayout$1,
|
|
127
110
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -129,7 +112,7 @@ const VertexSceneTreeTableLayout = /*@__PURE__*/ r({
|
|
|
129
112
|
events: { onColumnsResized: 'columnsResized' },
|
|
130
113
|
defineCustomElement: defineCustomElement$6
|
|
131
114
|
});
|
|
132
|
-
const VertexSceneTreeTableResizeDivider = /*@__PURE__*/
|
|
115
|
+
const VertexSceneTreeTableResizeDivider = /*@__PURE__*/ createComponent({
|
|
133
116
|
tagName: 'vertex-scene-tree-table-resize-divider',
|
|
134
117
|
elementClass: VertexSceneTreeTableResizeDivider$1,
|
|
135
118
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -137,7 +120,7 @@ const VertexSceneTreeTableResizeDivider = /*@__PURE__*/ r({
|
|
|
137
120
|
events: {},
|
|
138
121
|
defineCustomElement: defineCustomElement$7
|
|
139
122
|
});
|
|
140
|
-
const VertexSceneTreeToolbar = /*@__PURE__*/
|
|
123
|
+
const VertexSceneTreeToolbar = /*@__PURE__*/ createComponent({
|
|
141
124
|
tagName: 'vertex-scene-tree-toolbar',
|
|
142
125
|
elementClass: VertexSceneTreeToolbar$1,
|
|
143
126
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -145,7 +128,7 @@ const VertexSceneTreeToolbar = /*@__PURE__*/ r({
|
|
|
145
128
|
events: {},
|
|
146
129
|
defineCustomElement: defineCustomElement$8
|
|
147
130
|
});
|
|
148
|
-
const VertexSceneTreeToolbarGroup = /*@__PURE__*/
|
|
131
|
+
const VertexSceneTreeToolbarGroup = /*@__PURE__*/ createComponent({
|
|
149
132
|
tagName: 'vertex-scene-tree-toolbar-group',
|
|
150
133
|
elementClass: VertexSceneTreeToolbarGroup$1,
|
|
151
134
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -153,7 +136,7 @@ const VertexSceneTreeToolbarGroup = /*@__PURE__*/ r({
|
|
|
153
136
|
events: {},
|
|
154
137
|
defineCustomElement: defineCustomElement$9
|
|
155
138
|
});
|
|
156
|
-
const VertexViewer = /*@__PURE__*/
|
|
139
|
+
const VertexViewer = /*@__PURE__*/ createComponent({
|
|
157
140
|
tagName: 'vertex-viewer',
|
|
158
141
|
elementClass: VertexViewer$1,
|
|
159
142
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -176,7 +159,7 @@ const VertexViewer = /*@__PURE__*/ r({
|
|
|
176
159
|
},
|
|
177
160
|
defineCustomElement: defineCustomElement$a
|
|
178
161
|
});
|
|
179
|
-
const VertexViewerAnnotationCallout = /*@__PURE__*/
|
|
162
|
+
const VertexViewerAnnotationCallout = /*@__PURE__*/ createComponent({
|
|
180
163
|
tagName: 'vertex-viewer-annotation-callout',
|
|
181
164
|
elementClass: VertexViewerAnnotationCallout$1,
|
|
182
165
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -184,7 +167,7 @@ const VertexViewerAnnotationCallout = /*@__PURE__*/ r({
|
|
|
184
167
|
events: {},
|
|
185
168
|
defineCustomElement: defineCustomElement$b
|
|
186
169
|
});
|
|
187
|
-
const VertexViewerBoxQueryTool = /*@__PURE__*/
|
|
170
|
+
const VertexViewerBoxQueryTool = /*@__PURE__*/ createComponent({
|
|
188
171
|
tagName: 'vertex-viewer-box-query-tool',
|
|
189
172
|
elementClass: VertexViewerBoxQueryTool$1,
|
|
190
173
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -192,7 +175,7 @@ const VertexViewerBoxQueryTool = /*@__PURE__*/ r({
|
|
|
192
175
|
events: { onControllerChanged: 'controllerChanged' },
|
|
193
176
|
defineCustomElement: defineCustomElement$c
|
|
194
177
|
});
|
|
195
|
-
const VertexViewerButton = /*@__PURE__*/
|
|
178
|
+
const VertexViewerButton = /*@__PURE__*/ createComponent({
|
|
196
179
|
tagName: 'vertex-viewer-button',
|
|
197
180
|
elementClass: VertexViewerButton$1,
|
|
198
181
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -200,7 +183,7 @@ const VertexViewerButton = /*@__PURE__*/ r({
|
|
|
200
183
|
events: {},
|
|
201
184
|
defineCustomElement: defineCustomElement$d
|
|
202
185
|
});
|
|
203
|
-
const VertexViewerDefaultToolbar = /*@__PURE__*/
|
|
186
|
+
const VertexViewerDefaultToolbar = /*@__PURE__*/ createComponent({
|
|
204
187
|
tagName: 'vertex-viewer-default-toolbar',
|
|
205
188
|
elementClass: VertexViewerDefaultToolbar$1,
|
|
206
189
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -208,7 +191,7 @@ const VertexViewerDefaultToolbar = /*@__PURE__*/ r({
|
|
|
208
191
|
events: {},
|
|
209
192
|
defineCustomElement: defineCustomElement$e
|
|
210
193
|
});
|
|
211
|
-
const VertexViewerDomElement = /*@__PURE__*/
|
|
194
|
+
const VertexViewerDomElement = /*@__PURE__*/ createComponent({
|
|
212
195
|
tagName: 'vertex-viewer-dom-element',
|
|
213
196
|
elementClass: VertexViewerDomElement$1,
|
|
214
197
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -220,7 +203,7 @@ const VertexViewerDomElement = /*@__PURE__*/ r({
|
|
|
220
203
|
},
|
|
221
204
|
defineCustomElement: defineCustomElement$f
|
|
222
205
|
});
|
|
223
|
-
const VertexViewerDomGroup = /*@__PURE__*/
|
|
206
|
+
const VertexViewerDomGroup = /*@__PURE__*/ createComponent({
|
|
224
207
|
tagName: 'vertex-viewer-dom-group',
|
|
225
208
|
elementClass: VertexViewerDomGroup$1,
|
|
226
209
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -228,7 +211,7 @@ const VertexViewerDomGroup = /*@__PURE__*/ r({
|
|
|
228
211
|
events: { onPropertyChange: 'propertyChange' },
|
|
229
212
|
defineCustomElement: defineCustomElement$g
|
|
230
213
|
});
|
|
231
|
-
const VertexViewerDomRenderer = /*@__PURE__*/
|
|
214
|
+
const VertexViewerDomRenderer = /*@__PURE__*/ createComponent({
|
|
232
215
|
tagName: 'vertex-viewer-dom-renderer',
|
|
233
216
|
elementClass: VertexViewerDomRenderer$1,
|
|
234
217
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -236,7 +219,7 @@ const VertexViewerDomRenderer = /*@__PURE__*/ r({
|
|
|
236
219
|
events: {},
|
|
237
220
|
defineCustomElement: defineCustomElement$h
|
|
238
221
|
});
|
|
239
|
-
const VertexViewerHitResultIndicator = /*@__PURE__*/
|
|
222
|
+
const VertexViewerHitResultIndicator = /*@__PURE__*/ createComponent({
|
|
240
223
|
tagName: 'vertex-viewer-hit-result-indicator',
|
|
241
224
|
elementClass: VertexViewerHitResultIndicator$1,
|
|
242
225
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -244,7 +227,7 @@ const VertexViewerHitResultIndicator = /*@__PURE__*/ r({
|
|
|
244
227
|
events: {},
|
|
245
228
|
defineCustomElement: defineCustomElement$i
|
|
246
229
|
});
|
|
247
|
-
const VertexViewerIcon = /*@__PURE__*/
|
|
230
|
+
const VertexViewerIcon = /*@__PURE__*/ createComponent({
|
|
248
231
|
tagName: 'vertex-viewer-icon',
|
|
249
232
|
elementClass: VertexViewerIcon$1,
|
|
250
233
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -252,7 +235,7 @@ const VertexViewerIcon = /*@__PURE__*/ r({
|
|
|
252
235
|
events: {},
|
|
253
236
|
defineCustomElement: defineCustomElement$j
|
|
254
237
|
});
|
|
255
|
-
const VertexViewerLayer = /*@__PURE__*/
|
|
238
|
+
const VertexViewerLayer = /*@__PURE__*/ createComponent({
|
|
256
239
|
tagName: 'vertex-viewer-layer',
|
|
257
240
|
elementClass: VertexViewerLayer$1,
|
|
258
241
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -260,7 +243,7 @@ const VertexViewerLayer = /*@__PURE__*/ r({
|
|
|
260
243
|
events: {},
|
|
261
244
|
defineCustomElement: defineCustomElement$k
|
|
262
245
|
});
|
|
263
|
-
const VertexViewerMarkup = /*@__PURE__*/
|
|
246
|
+
const VertexViewerMarkup = /*@__PURE__*/ createComponent({
|
|
264
247
|
tagName: 'vertex-viewer-markup',
|
|
265
248
|
elementClass: VertexViewerMarkup$1,
|
|
266
249
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -273,7 +256,7 @@ const VertexViewerMarkup = /*@__PURE__*/ r({
|
|
|
273
256
|
},
|
|
274
257
|
defineCustomElement: defineCustomElement$l
|
|
275
258
|
});
|
|
276
|
-
const VertexViewerMarkupArrow = /*@__PURE__*/
|
|
259
|
+
const VertexViewerMarkupArrow = /*@__PURE__*/ createComponent({
|
|
277
260
|
tagName: 'vertex-viewer-markup-arrow',
|
|
278
261
|
elementClass: VertexViewerMarkupArrow$1,
|
|
279
262
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -285,7 +268,7 @@ const VertexViewerMarkupArrow = /*@__PURE__*/ r({
|
|
|
285
268
|
},
|
|
286
269
|
defineCustomElement: defineCustomElement$m
|
|
287
270
|
});
|
|
288
|
-
const VertexViewerMarkupCircle = /*@__PURE__*/
|
|
271
|
+
const VertexViewerMarkupCircle = /*@__PURE__*/ createComponent({
|
|
289
272
|
tagName: 'vertex-viewer-markup-circle',
|
|
290
273
|
elementClass: VertexViewerMarkupCircle$1,
|
|
291
274
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -297,7 +280,7 @@ const VertexViewerMarkupCircle = /*@__PURE__*/ r({
|
|
|
297
280
|
},
|
|
298
281
|
defineCustomElement: defineCustomElement$n
|
|
299
282
|
});
|
|
300
|
-
const VertexViewerMarkupFreeform = /*@__PURE__*/
|
|
283
|
+
const VertexViewerMarkupFreeform = /*@__PURE__*/ createComponent({
|
|
301
284
|
tagName: 'vertex-viewer-markup-freeform',
|
|
302
285
|
elementClass: VertexViewerMarkupFreeform$1,
|
|
303
286
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -309,7 +292,7 @@ const VertexViewerMarkupFreeform = /*@__PURE__*/ r({
|
|
|
309
292
|
},
|
|
310
293
|
defineCustomElement: defineCustomElement$o
|
|
311
294
|
});
|
|
312
|
-
const VertexViewerMarkupTool = /*@__PURE__*/
|
|
295
|
+
const VertexViewerMarkupTool = /*@__PURE__*/ createComponent({
|
|
313
296
|
tagName: 'vertex-viewer-markup-tool',
|
|
314
297
|
elementClass: VertexViewerMarkupTool$1,
|
|
315
298
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -320,7 +303,7 @@ const VertexViewerMarkupTool = /*@__PURE__*/ r({
|
|
|
320
303
|
},
|
|
321
304
|
defineCustomElement: defineCustomElement$p
|
|
322
305
|
});
|
|
323
|
-
const VertexViewerMeasurementDetails = /*@__PURE__*/
|
|
306
|
+
const VertexViewerMeasurementDetails = /*@__PURE__*/ createComponent({
|
|
324
307
|
tagName: 'vertex-viewer-measurement-details',
|
|
325
308
|
elementClass: VertexViewerMeasurementDetails$1,
|
|
326
309
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -328,7 +311,7 @@ const VertexViewerMeasurementDetails = /*@__PURE__*/ r({
|
|
|
328
311
|
events: {},
|
|
329
312
|
defineCustomElement: defineCustomElement$q
|
|
330
313
|
});
|
|
331
|
-
const VertexViewerMeasurementDistance = /*@__PURE__*/
|
|
314
|
+
const VertexViewerMeasurementDistance = /*@__PURE__*/ createComponent({
|
|
332
315
|
tagName: 'vertex-viewer-measurement-distance',
|
|
333
316
|
elementClass: VertexViewerMeasurementDistance$1,
|
|
334
317
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -339,7 +322,7 @@ const VertexViewerMeasurementDistance = /*@__PURE__*/ r({
|
|
|
339
322
|
},
|
|
340
323
|
defineCustomElement: defineCustomElement$r
|
|
341
324
|
});
|
|
342
|
-
const VertexViewerMeasurementLine = /*@__PURE__*/
|
|
325
|
+
const VertexViewerMeasurementLine = /*@__PURE__*/ createComponent({
|
|
343
326
|
tagName: 'vertex-viewer-measurement-line',
|
|
344
327
|
elementClass: VertexViewerMeasurementLine$1,
|
|
345
328
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -347,7 +330,7 @@ const VertexViewerMeasurementLine = /*@__PURE__*/ r({
|
|
|
347
330
|
events: {},
|
|
348
331
|
defineCustomElement: defineCustomElement$s
|
|
349
332
|
});
|
|
350
|
-
const VertexViewerMeasurementOverlays = /*@__PURE__*/
|
|
333
|
+
const VertexViewerMeasurementOverlays = /*@__PURE__*/ createComponent({
|
|
351
334
|
tagName: 'vertex-viewer-measurement-overlays',
|
|
352
335
|
elementClass: VertexViewerMeasurementOverlays$1,
|
|
353
336
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -355,7 +338,7 @@ const VertexViewerMeasurementOverlays = /*@__PURE__*/ r({
|
|
|
355
338
|
events: {},
|
|
356
339
|
defineCustomElement: defineCustomElement$t
|
|
357
340
|
});
|
|
358
|
-
const VertexViewerMeasurementPrecise = /*@__PURE__*/
|
|
341
|
+
const VertexViewerMeasurementPrecise = /*@__PURE__*/ createComponent({
|
|
359
342
|
tagName: 'vertex-viewer-measurement-precise',
|
|
360
343
|
elementClass: VertexViewerMeasurementPrecise$1,
|
|
361
344
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -363,7 +346,7 @@ const VertexViewerMeasurementPrecise = /*@__PURE__*/ r({
|
|
|
363
346
|
events: {},
|
|
364
347
|
defineCustomElement: defineCustomElement$u
|
|
365
348
|
});
|
|
366
|
-
const VertexViewerPinGroup = /*@__PURE__*/
|
|
349
|
+
const VertexViewerPinGroup = /*@__PURE__*/ createComponent({
|
|
367
350
|
tagName: 'vertex-viewer-pin-group',
|
|
368
351
|
elementClass: VertexViewerPinGroup$1,
|
|
369
352
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -371,7 +354,7 @@ const VertexViewerPinGroup = /*@__PURE__*/ r({
|
|
|
371
354
|
events: {},
|
|
372
355
|
defineCustomElement: defineCustomElement$v
|
|
373
356
|
});
|
|
374
|
-
const VertexViewerPinLabel = /*@__PURE__*/
|
|
357
|
+
const VertexViewerPinLabel = /*@__PURE__*/ createComponent({
|
|
375
358
|
tagName: 'vertex-viewer-pin-label',
|
|
376
359
|
elementClass: VertexViewerPinLabel$1,
|
|
377
360
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -382,7 +365,7 @@ const VertexViewerPinLabel = /*@__PURE__*/ r({
|
|
|
382
365
|
},
|
|
383
366
|
defineCustomElement: defineCustomElement$w
|
|
384
367
|
});
|
|
385
|
-
const VertexViewerPinLabelLine = /*@__PURE__*/
|
|
368
|
+
const VertexViewerPinLabelLine = /*@__PURE__*/ createComponent({
|
|
386
369
|
tagName: 'vertex-viewer-pin-label-line',
|
|
387
370
|
elementClass: VertexViewerPinLabelLine$1,
|
|
388
371
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -390,7 +373,7 @@ const VertexViewerPinLabelLine = /*@__PURE__*/ r({
|
|
|
390
373
|
events: {},
|
|
391
374
|
defineCustomElement: defineCustomElement$x
|
|
392
375
|
});
|
|
393
|
-
const VertexViewerPinTool = /*@__PURE__*/
|
|
376
|
+
const VertexViewerPinTool = /*@__PURE__*/ createComponent({
|
|
394
377
|
tagName: 'vertex-viewer-pin-tool',
|
|
395
378
|
elementClass: VertexViewerPinTool$1,
|
|
396
379
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -398,7 +381,7 @@ const VertexViewerPinTool = /*@__PURE__*/ r({
|
|
|
398
381
|
events: {},
|
|
399
382
|
defineCustomElement: defineCustomElement$y
|
|
400
383
|
});
|
|
401
|
-
const VertexViewerSpinner = /*@__PURE__*/
|
|
384
|
+
const VertexViewerSpinner = /*@__PURE__*/ createComponent({
|
|
402
385
|
tagName: 'vertex-viewer-spinner',
|
|
403
386
|
elementClass: VertexViewerSpinner$1,
|
|
404
387
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -406,7 +389,7 @@ const VertexViewerSpinner = /*@__PURE__*/ r({
|
|
|
406
389
|
events: {},
|
|
407
390
|
defineCustomElement: defineCustomElement$z
|
|
408
391
|
});
|
|
409
|
-
const VertexViewerTeleportTool = /*@__PURE__*/
|
|
392
|
+
const VertexViewerTeleportTool = /*@__PURE__*/ createComponent({
|
|
410
393
|
tagName: 'vertex-viewer-teleport-tool',
|
|
411
394
|
elementClass: VertexViewerTeleportTool$1,
|
|
412
395
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -414,7 +397,7 @@ const VertexViewerTeleportTool = /*@__PURE__*/ r({
|
|
|
414
397
|
events: { onControllerChanged: 'controllerChanged' },
|
|
415
398
|
defineCustomElement: defineCustomElement$A
|
|
416
399
|
});
|
|
417
|
-
const VertexViewerToolbar = /*@__PURE__*/
|
|
400
|
+
const VertexViewerToolbar = /*@__PURE__*/ createComponent({
|
|
418
401
|
tagName: 'vertex-viewer-toolbar',
|
|
419
402
|
elementClass: VertexViewerToolbar$1,
|
|
420
403
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -422,7 +405,7 @@ const VertexViewerToolbar = /*@__PURE__*/ r({
|
|
|
422
405
|
events: {},
|
|
423
406
|
defineCustomElement: defineCustomElement$B
|
|
424
407
|
});
|
|
425
|
-
const VertexViewerToolbarGroup = /*@__PURE__*/
|
|
408
|
+
const VertexViewerToolbarGroup = /*@__PURE__*/ createComponent({
|
|
426
409
|
tagName: 'vertex-viewer-toolbar-group',
|
|
427
410
|
elementClass: VertexViewerToolbarGroup$1,
|
|
428
411
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -430,7 +413,7 @@ const VertexViewerToolbarGroup = /*@__PURE__*/ r({
|
|
|
430
413
|
events: {},
|
|
431
414
|
defineCustomElement: defineCustomElement$C
|
|
432
415
|
});
|
|
433
|
-
const VertexViewerTransformWidget = /*@__PURE__*/
|
|
416
|
+
const VertexViewerTransformWidget = /*@__PURE__*/ createComponent({
|
|
434
417
|
tagName: 'vertex-viewer-transform-widget',
|
|
435
418
|
elementClass: VertexViewerTransformWidget$1,
|
|
436
419
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -443,7 +426,7 @@ const VertexViewerTransformWidget = /*@__PURE__*/ r({
|
|
|
443
426
|
},
|
|
444
427
|
defineCustomElement: defineCustomElement$D
|
|
445
428
|
});
|
|
446
|
-
const VertexViewerViewCube = /*@__PURE__*/
|
|
429
|
+
const VertexViewerViewCube = /*@__PURE__*/ createComponent({
|
|
447
430
|
tagName: 'vertex-viewer-view-cube',
|
|
448
431
|
elementClass: VertexViewerViewCube$1,
|
|
449
432
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|
|
@@ -451,7 +434,7 @@ const VertexViewerViewCube = /*@__PURE__*/ r({
|
|
|
451
434
|
events: {},
|
|
452
435
|
defineCustomElement: defineCustomElement$E
|
|
453
436
|
});
|
|
454
|
-
const VertexViewerWalkModeTool = /*@__PURE__*/
|
|
437
|
+
const VertexViewerWalkModeTool = /*@__PURE__*/ createComponent({
|
|
455
438
|
tagName: 'vertex-viewer-walk-mode-tool',
|
|
456
439
|
elementClass: VertexViewerWalkModeTool$1,
|
|
457
440
|
// @ts-ignore - ignore potential React type mismatches between the Stencil Output Target and your project.
|