@mittwald/flow-remote-react-renderer 0.2.0-alpha.12 → 0.2.0-alpha.120

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.
Files changed (56) hide show
  1. package/dist/js/RemoteRenderer.mjs +16 -0
  2. package/dist/js/RemoteRenderer.mjs.map +1 -0
  3. package/dist/js/RemoteRendererClient.mjs +94 -0
  4. package/dist/js/RemoteRendererClient.mjs.map +1 -0
  5. package/dist/js/auto-generated/index.mjs +126 -0
  6. package/dist/js/auto-generated/index.mjs.map +1 -0
  7. package/dist/js/components/Form.mjs +22 -0
  8. package/dist/js/components/Form.mjs.map +1 -0
  9. package/dist/js/components/lib/getFormDataObject.mjs +7 -0
  10. package/dist/js/components/lib/getFormDataObject.mjs.map +1 -0
  11. package/dist/js/components.mjs +26 -0
  12. package/dist/js/components.mjs.map +1 -0
  13. package/dist/js/hooks/useAwaiter.mjs +26 -0
  14. package/dist/js/hooks/useAwaiter.mjs.map +1 -0
  15. package/dist/js/hooks/useIsMounted.mjs +14 -0
  16. package/dist/js/hooks/useIsMounted.mjs.map +1 -0
  17. package/dist/js/hooks/useMergedComponents.mjs +24 -0
  18. package/dist/js/hooks/useMergedComponents.mjs.map +1 -0
  19. package/dist/js/index.mjs +7 -0
  20. package/dist/js/index.mjs.map +1 -0
  21. package/dist/js/lib/createFlowRemoteComponentRenderer.mjs +36 -0
  22. package/dist/js/lib/createFlowRemoteComponentRenderer.mjs.map +1 -0
  23. package/dist/js/lib/elementFactory.mjs +19 -0
  24. package/dist/js/lib/elementFactory.mjs.map +1 -0
  25. package/dist/js/lib/mapAttributeToReactProperty.mjs +14 -0
  26. package/dist/js/lib/mapAttributeToReactProperty.mjs.map +1 -0
  27. package/dist/js/lib/propClassifiers.mjs +13 -0
  28. package/dist/js/lib/propClassifiers.mjs.map +1 -0
  29. package/dist/types/RemoteRenderer.d.ts +3 -7
  30. package/dist/types/RemoteRenderer.d.ts.map +1 -1
  31. package/dist/types/RemoteRendererClient.d.ts +12 -0
  32. package/dist/types/RemoteRendererClient.d.ts.map +1 -0
  33. package/dist/types/auto-generated/index.d.ts +111 -96
  34. package/dist/types/auto-generated/index.d.ts.map +1 -1
  35. package/dist/types/components/lib/getFormDataObject.d.ts.map +1 -1
  36. package/dist/types/components.d.ts +117 -101
  37. package/dist/types/components.d.ts.map +1 -1
  38. package/dist/types/hooks/useAwaiter.d.ts +9 -0
  39. package/dist/types/hooks/useAwaiter.d.ts.map +1 -0
  40. package/dist/types/hooks/useIsMounted.d.ts +2 -0
  41. package/dist/types/hooks/useIsMounted.d.ts.map +1 -0
  42. package/dist/types/hooks/useMergedComponents.d.ts +5 -0
  43. package/dist/types/hooks/useMergedComponents.d.ts.map +1 -0
  44. package/dist/types/lib/createFlowRemoteComponentRenderer.d.ts +2 -2
  45. package/dist/types/lib/createFlowRemoteComponentRenderer.d.ts.map +1 -1
  46. package/dist/types/lib/elementFactory.d.ts.map +1 -1
  47. package/dist/types/lib/mapAttributeToReactProperty.d.ts.map +1 -1
  48. package/dist/types/lib/propClassifiers.d.ts.map +1 -1
  49. package/dist/types/lib/stringChildrenExtractor.d.ts.map +1 -1
  50. package/dist/types/lib/types.d.ts +1 -1
  51. package/dist/types/lib/types.d.ts.map +1 -1
  52. package/package.json +30 -27
  53. package/dist/index.js +0 -751
  54. package/dist/polyfill.js +0 -2
  55. package/dist/types/polyfill.d.ts +0 -1
  56. package/dist/types/polyfill.d.ts.map +0 -1
package/dist/index.js DELETED
@@ -1,751 +0,0 @@
1
- import { jsx as u, jsxs as x, Fragment as C } from "react/jsx-runtime";
2
- import { createRemoteComponentRenderer as f, RemoteReceiver as T, RemoteRootRenderer as v } from "@remote-dom/react/host";
3
- import { forwardRef as s, createElement as g, lazy as r, useMemo as h } from "react";
4
- import { isFunction as y, mapValues as S, toCamelCase as R, mapKeys as F, reduce as w } from "remeda";
5
- import { mapEventHandler as k, connectRemoteIframeRef as M } from "@mittwald/flow-remote-core";
6
- import P from "clsx";
7
- const c = (t) => Object.fromEntries(Array.from(t.entries())), B = s((t, o) => {
8
- const {
9
- action: l,
10
- onSubmit: i,
11
- ...a
12
- } = t;
13
- return /* @__PURE__ */ u("form", { ref: o, ...a, action: typeof l == "function" ? (n) => l(c(n)) : l, onSubmit: i ? (n) => {
14
- n.preventDefault(), i(c(new FormData(n.currentTarget)));
15
- } : void 0 });
16
- }), L = /on[A-Z].*/, A = (t, o) => !!t.match(L) && y(o), H = (t) => t === "style", I = (t) => t === "display: none !important;", N = (t, o) => A(o, t) ? k(t, o) : H(o) ? I(t) ? {
17
- display: "none"
18
- } : {} : t, e = (t) => {
19
- const o = s(function(i, a) {
20
- const m = S(i, (d, n) => N(d, n));
21
- return g(t, {
22
- ...m,
23
- ref: a
24
- });
25
- });
26
- return f(o);
27
- }, D = ["aria-", "data-"], E = (t) => D.some((o) => t.startsWith(o)) ? t : R(t), p = (t) => (o) => {
28
- const l = { ...o };
29
- return l.className = P(
30
- String(l.className),
31
- String(l.class)
32
- ), delete l.class, g(t, F(l, E));
33
- }, G = {
34
- "flr-accordion": e(
35
- r(
36
- () => import("@mittwald/flow-react-components/Accordion").then((t) => ({
37
- default: t.Accordion
38
- }))
39
- )
40
- ),
41
- "flr-action": e(
42
- r(
43
- () => import("@mittwald/flow-react-components/Action").then((t) => ({
44
- default: t.Action
45
- }))
46
- )
47
- ),
48
- "flr-action-group": e(
49
- r(
50
- () => import("@mittwald/flow-react-components/ActionGroup").then((t) => ({
51
- default: t.ActionGroup
52
- }))
53
- )
54
- ),
55
- "flr-alert": e(
56
- r(
57
- () => import("@mittwald/flow-react-components/Alert").then((t) => ({
58
- default: t.Alert
59
- }))
60
- )
61
- ),
62
- "flr-alert-badge": e(
63
- r(
64
- () => import("@mittwald/flow-react-components/AlertBadge").then((t) => ({
65
- default: t.AlertBadge
66
- }))
67
- )
68
- ),
69
- "flr-alert-icon": e(
70
- r(
71
- () => import("@mittwald/flow-react-components/AlertIcon").then((t) => ({
72
- default: t.AlertIcon
73
- }))
74
- )
75
- ),
76
- "flr-align": e(
77
- r(
78
- () => import("@mittwald/flow-react-components/Align").then((t) => ({
79
- default: t.Align
80
- }))
81
- )
82
- ),
83
- "flr-avatar": e(
84
- r(
85
- () => import("@mittwald/flow-react-components/Avatar").then((t) => ({
86
- default: t.Avatar
87
- }))
88
- )
89
- ),
90
- "flr-badge": e(
91
- r(
92
- () => import("@mittwald/flow-react-components/Badge").then((t) => ({
93
- default: t.Badge
94
- }))
95
- )
96
- ),
97
- "flr-breadcrumb": e(
98
- r(
99
- () => import("@mittwald/flow-react-components/Breadcrumb").then((t) => ({
100
- default: t.Breadcrumb
101
- }))
102
- )
103
- ),
104
- "flr-button": e(
105
- r(
106
- () => import("@mittwald/flow-react-components/Button").then((t) => ({
107
- default: t.Button
108
- }))
109
- )
110
- ),
111
- "flr-checkbox": e(
112
- r(
113
- () => import("@mittwald/flow-react-components/Checkbox").then((t) => ({
114
- default: t.Checkbox
115
- }))
116
- )
117
- ),
118
- "flr-checkbox-button": e(
119
- r(
120
- () => import("@mittwald/flow-react-components/CheckboxButton").then(
121
- (t) => ({ default: t.CheckboxButton })
122
- )
123
- )
124
- ),
125
- "flr-checkbox-group": e(
126
- r(
127
- () => import("@mittwald/flow-react-components/CheckboxGroup").then(
128
- (t) => ({ default: t.CheckboxGroup })
129
- )
130
- )
131
- ),
132
- "flr-code-block": e(
133
- r(
134
- () => import("@mittwald/flow-react-components/CodeBlock").then((t) => ({
135
- default: t.CodeBlock
136
- }))
137
- )
138
- ),
139
- "flr-column-layout": e(
140
- r(
141
- () => import("@mittwald/flow-react-components/ColumnLayout").then((t) => ({
142
- default: t.ColumnLayout
143
- }))
144
- )
145
- ),
146
- "flr-content": e(
147
- r(
148
- () => import("@mittwald/flow-react-components/Content").then((t) => ({
149
- default: t.Content
150
- }))
151
- )
152
- ),
153
- "flr-context-menu": e(
154
- r(
155
- () => import("@mittwald/flow-react-components/ContextMenu").then((t) => ({
156
- default: t.ContextMenu
157
- }))
158
- )
159
- ),
160
- "flr-context-menu-section": e(
161
- r(
162
- () => import("@mittwald/flow-react-components/ContextMenu").then((t) => ({
163
- default: t.ContextMenuSection
164
- }))
165
- )
166
- ),
167
- "flr-context-menu-trigger": e(
168
- r(
169
- () => import("@mittwald/flow-react-components/ContextMenu").then((t) => ({
170
- default: t.ContextMenuTrigger
171
- }))
172
- )
173
- ),
174
- "flr-contextual-help": e(
175
- r(
176
- () => import("@mittwald/flow-react-components/ContextualHelp").then(
177
- (t) => ({ default: t.ContextualHelp })
178
- )
179
- )
180
- ),
181
- "flr-contextual-help-trigger": e(
182
- r(
183
- () => import("@mittwald/flow-react-components/ContextualHelp").then(
184
- (t) => ({ default: t.ContextualHelpTrigger })
185
- )
186
- )
187
- ),
188
- "flr-copy-button": e(
189
- r(
190
- () => import("@mittwald/flow-react-components/CopyButton").then((t) => ({
191
- default: t.CopyButton
192
- }))
193
- )
194
- ),
195
- "flr-counter-badge": e(
196
- r(
197
- () => import("@mittwald/flow-react-components/CounterBadge").then((t) => ({
198
- default: t.CounterBadge
199
- }))
200
- )
201
- ),
202
- "flr-country-options": e(
203
- r(
204
- () => import("@mittwald/flow-react-components/Select").then((t) => ({
205
- default: t.CountryOptions
206
- }))
207
- )
208
- ),
209
- "flr-date-picker": e(
210
- r(
211
- () => import("@mittwald/flow-react-components/DatePicker").then((t) => ({
212
- default: t.DatePicker
213
- }))
214
- )
215
- ),
216
- "flr-date-range-picker": e(
217
- r(
218
- () => import("@mittwald/flow-react-components/DateRangePicker").then(
219
- (t) => ({ default: t.DateRangePicker })
220
- )
221
- )
222
- ),
223
- "flr-div": e(
224
- r(
225
- () => import("@mittwald/flow-react-components/Div").then((t) => ({
226
- default: t.Div
227
- }))
228
- )
229
- ),
230
- "flr-field-description": e(
231
- r(
232
- () => import("@mittwald/flow-react-components/FieldDescription").then(
233
- (t) => ({ default: t.FieldDescription })
234
- )
235
- )
236
- ),
237
- "flr-field-error": e(
238
- r(
239
- () => import("@mittwald/flow-react-components/FieldError").then((t) => ({
240
- default: t.FieldError
241
- }))
242
- )
243
- ),
244
- "flr-file-card": e(
245
- r(
246
- () => import("@mittwald/flow-react-components/FileCard").then((t) => ({
247
- default: t.FileCard
248
- }))
249
- )
250
- ),
251
- "flr-file-card-list": e(
252
- r(
253
- () => import("@mittwald/flow-react-components/FileCardList").then((t) => ({
254
- default: t.FileCardList
255
- }))
256
- )
257
- ),
258
- "flr-file-field": e(
259
- r(
260
- () => import("@mittwald/flow-react-components/FileField").then((t) => ({
261
- default: t.FileField
262
- }))
263
- )
264
- ),
265
- "flr-fragment": e(
266
- r(
267
- () => import("@mittwald/flow-react-components/Fragment").then((t) => ({
268
- default: t.Fragment
269
- }))
270
- )
271
- ),
272
- "flr-header": e(
273
- r(
274
- () => import("@mittwald/flow-react-components/Header").then((t) => ({
275
- default: t.Header
276
- }))
277
- )
278
- ),
279
- "flr-header-navigation": e(
280
- r(
281
- () => import("@mittwald/flow-react-components/HeaderNavigation").then(
282
- (t) => ({ default: t.HeaderNavigation })
283
- )
284
- )
285
- ),
286
- "flr-heading": e(
287
- r(
288
- () => import("@mittwald/flow-react-components/Heading").then((t) => ({
289
- default: t.Heading
290
- }))
291
- )
292
- ),
293
- "flr-icon": e(
294
- r(
295
- () => import("@mittwald/flow-react-components/Icon").then((t) => ({
296
- default: t.Icon
297
- }))
298
- )
299
- ),
300
- "flr-illustrated-message": e(
301
- r(
302
- () => import("@mittwald/flow-react-components/IllustratedMessage").then(
303
- (t) => ({ default: t.IllustratedMessage })
304
- )
305
- )
306
- ),
307
- "flr-image": e(
308
- r(
309
- () => import("@mittwald/flow-react-components/Image").then((t) => ({
310
- default: t.Image
311
- }))
312
- )
313
- ),
314
- "flr-initials": e(
315
- r(
316
- () => import("@mittwald/flow-react-components/Initials").then((t) => ({
317
- default: t.Initials
318
- }))
319
- )
320
- ),
321
- "flr-inline-code": e(
322
- r(
323
- () => import("@mittwald/flow-react-components/InlineCode").then((t) => ({
324
- default: t.InlineCode
325
- }))
326
- )
327
- ),
328
- "flr-items-grid-list": e(
329
- r(
330
- () => import("@mittwald/flow-react-components/List").then((t) => ({
331
- default: t.GridList
332
- }))
333
- )
334
- ),
335
- "flr-items-grid-list-item": e(
336
- r(
337
- () => import("@mittwald/flow-react-components/List").then((t) => ({
338
- default: t.GridListItem
339
- }))
340
- )
341
- ),
342
- "flr-label": e(
343
- r(
344
- () => import("@mittwald/flow-react-components/Label").then((t) => ({
345
- default: t.Label
346
- }))
347
- )
348
- ),
349
- "flr-labeled-value": e(
350
- r(
351
- () => import("@mittwald/flow-react-components/LabeledValue").then((t) => ({
352
- default: t.LabeledValue
353
- }))
354
- )
355
- ),
356
- "flr-layout-card": e(
357
- r(
358
- () => import("@mittwald/flow-react-components/LayoutCard").then((t) => ({
359
- default: t.LayoutCard
360
- }))
361
- )
362
- ),
363
- "flr-light-box": e(
364
- r(
365
- () => import("@mittwald/flow-react-components/LightBox").then((t) => ({
366
- default: t.LightBox
367
- }))
368
- )
369
- ),
370
- "flr-light-box-trigger": e(
371
- r(
372
- () => import("@mittwald/flow-react-components/LightBox").then((t) => ({
373
- default: t.LightBoxTrigger
374
- }))
375
- )
376
- ),
377
- "flr-link": e(
378
- r(
379
- () => import("@mittwald/flow-react-components/Link").then((t) => ({
380
- default: t.Link
381
- }))
382
- )
383
- ),
384
- "flr-list-empty-view": e(
385
- r(
386
- () => import("@mittwald/flow-react-components/List").then((t) => ({
387
- default: t.EmptyView
388
- }))
389
- )
390
- ),
391
- "flr-list-summary": e(
392
- r(
393
- () => import("@mittwald/flow-react-components/List").then((t) => ({
394
- default: t.ListSummary
395
- }))
396
- )
397
- ),
398
- "flr-loading-spinner": e(
399
- r(
400
- () => import("@mittwald/flow-react-components/LoadingSpinner").then(
401
- (t) => ({ default: t.LoadingSpinner })
402
- )
403
- )
404
- ),
405
- "flr-markdown": e(
406
- r(
407
- () => import("@mittwald/flow-react-components/Markdown").then((t) => ({
408
- default: t.Markdown
409
- }))
410
- )
411
- ),
412
- "flr-menu-item": e(
413
- r(
414
- () => import("@mittwald/flow-react-components/MenuItem").then((t) => ({
415
- default: t.MenuItem
416
- }))
417
- )
418
- ),
419
- "flr-message": e(
420
- r(
421
- () => import("@mittwald/flow-react-components/Message").then((t) => ({
422
- default: t.Message
423
- }))
424
- )
425
- ),
426
- "flr-modal": e(
427
- r(
428
- () => import("@mittwald/flow-react-components/Modal").then((t) => ({
429
- default: t.Modal
430
- }))
431
- )
432
- ),
433
- "flr-modal-trigger": e(
434
- r(
435
- () => import("@mittwald/flow-react-components/Modal").then((t) => ({
436
- default: t.ModalTrigger
437
- }))
438
- )
439
- ),
440
- "flr-navigation": e(
441
- r(
442
- () => import("@mittwald/flow-react-components/Navigation").then((t) => ({
443
- default: t.Navigation
444
- }))
445
- )
446
- ),
447
- "flr-navigation-group": e(
448
- r(
449
- () => import("@mittwald/flow-react-components/Navigation").then((t) => ({
450
- default: t.NavigationGroup
451
- }))
452
- )
453
- ),
454
- "flr-notification": e(
455
- r(
456
- () => import("@mittwald/flow-react-components/Notification").then((t) => ({
457
- default: t.Notification
458
- }))
459
- )
460
- ),
461
- "flr-notification-provider": e(
462
- r(
463
- () => import("@mittwald/flow-react-components/NotificationProvider").then(
464
- (t) => ({ default: t.NotificationProvider })
465
- )
466
- )
467
- ),
468
- "flr-number-field": e(
469
- r(
470
- () => import("@mittwald/flow-react-components/NumberField").then((t) => ({
471
- default: t.NumberField
472
- }))
473
- )
474
- ),
475
- "flr-option": e(
476
- r(
477
- () => import("@mittwald/flow-react-components/Select").then((t) => ({
478
- default: t.Option
479
- }))
480
- )
481
- ),
482
- "flr-popover": e(
483
- r(
484
- () => import("@mittwald/flow-react-components/Popover").then((t) => ({
485
- default: t.Popover
486
- }))
487
- )
488
- ),
489
- "flr-popover-trigger": e(
490
- r(
491
- () => import("@mittwald/flow-react-components/Popover").then((t) => ({
492
- default: t.PopoverTrigger
493
- }))
494
- )
495
- ),
496
- "flr-progress-bar": e(
497
- r(
498
- () => import("@mittwald/flow-react-components/ProgressBar").then((t) => ({
499
- default: t.ProgressBar
500
- }))
501
- )
502
- ),
503
- "flr-radio": e(
504
- r(
505
- () => import("@mittwald/flow-react-components/RadioGroup").then((t) => ({
506
- default: t.Radio
507
- }))
508
- )
509
- ),
510
- "flr-radio-button": e(
511
- r(
512
- () => import("@mittwald/flow-react-components/RadioGroup").then((t) => ({
513
- default: t.RadioButton
514
- }))
515
- )
516
- ),
517
- "flr-radio-group": e(
518
- r(
519
- () => import("@mittwald/flow-react-components/RadioGroup").then((t) => ({
520
- default: t.RadioGroup
521
- }))
522
- )
523
- ),
524
- "flr-search-field": e(
525
- r(
526
- () => import("@mittwald/flow-react-components/SearchField").then((t) => ({
527
- default: t.SearchField
528
- }))
529
- )
530
- ),
531
- "flr-section": e(
532
- r(
533
- () => import("@mittwald/flow-react-components/Section").then((t) => ({
534
- default: t.Section
535
- }))
536
- )
537
- ),
538
- "flr-segment": e(
539
- r(
540
- () => import("@mittwald/flow-react-components/SegmentedControl").then(
541
- (t) => ({ default: t.Segment })
542
- )
543
- )
544
- ),
545
- "flr-segmented-control": e(
546
- r(
547
- () => import("@mittwald/flow-react-components/SegmentedControl").then(
548
- (t) => ({ default: t.SegmentedControl })
549
- )
550
- )
551
- ),
552
- "flr-select": e(
553
- r(
554
- () => import("@mittwald/flow-react-components/Select").then((t) => ({
555
- default: t.Select
556
- }))
557
- )
558
- ),
559
- "flr-separator": e(
560
- r(
561
- () => import("@mittwald/flow-react-components/Separator").then((t) => ({
562
- default: t.Separator
563
- }))
564
- )
565
- ),
566
- "flr-skeleton": e(
567
- r(
568
- () => import("@mittwald/flow-react-components/Skeleton").then((t) => ({
569
- default: t.Skeleton
570
- }))
571
- )
572
- ),
573
- "flr-skeleton-text": e(
574
- r(
575
- () => import("@mittwald/flow-react-components/SkeletonText").then((t) => ({
576
- default: t.SkeletonText
577
- }))
578
- )
579
- ),
580
- "flr-slider": e(
581
- r(
582
- () => import("@mittwald/flow-react-components/Slider").then((t) => ({
583
- default: t.Slider
584
- }))
585
- )
586
- ),
587
- "flr-switch": e(
588
- r(
589
- () => import("@mittwald/flow-react-components/Switch").then((t) => ({
590
- default: t.Switch
591
- }))
592
- )
593
- ),
594
- "flr-tab": e(
595
- r(
596
- () => import("@mittwald/flow-react-components/Tabs").then((t) => ({
597
- default: t.Tab
598
- }))
599
- )
600
- ),
601
- "flr-tab-title": e(
602
- r(
603
- () => import("@mittwald/flow-react-components/Tabs").then((t) => ({
604
- default: t.TabTitle
605
- }))
606
- )
607
- ),
608
- "flr-table": e(
609
- r(
610
- () => import("@mittwald/flow-react-components/Table").then((t) => ({
611
- default: t.Table
612
- }))
613
- )
614
- ),
615
- "flr-table-body": e(
616
- r(
617
- () => import("@mittwald/flow-react-components/Table").then((t) => ({
618
- default: t.TableBody
619
- }))
620
- )
621
- ),
622
- "flr-table-cell": e(
623
- r(
624
- () => import("@mittwald/flow-react-components/Table").then((t) => ({
625
- default: t.TableCell
626
- }))
627
- )
628
- ),
629
- "flr-table-column": e(
630
- r(
631
- () => import("@mittwald/flow-react-components/Table").then((t) => ({
632
- default: t.TableColumn
633
- }))
634
- )
635
- ),
636
- "flr-table-footer-row": e(
637
- r(
638
- () => import("@mittwald/flow-react-components/Table").then((t) => ({
639
- default: t.TableFooterRow
640
- }))
641
- )
642
- ),
643
- "flr-table-header": e(
644
- r(
645
- () => import("@mittwald/flow-react-components/Table").then((t) => ({
646
- default: t.TableHeader
647
- }))
648
- )
649
- ),
650
- "flr-table-row": e(
651
- r(
652
- () => import("@mittwald/flow-react-components/Table").then((t) => ({
653
- default: t.TableRow
654
- }))
655
- )
656
- ),
657
- "flr-tabs": e(
658
- r(
659
- () => import("@mittwald/flow-react-components/Tabs").then((t) => ({
660
- default: t.Tabs
661
- }))
662
- )
663
- ),
664
- "flr-text": e(
665
- r(
666
- () => import("@mittwald/flow-react-components/Text").then((t) => ({
667
- default: t.Text
668
- }))
669
- )
670
- ),
671
- "flr-text-area": e(
672
- r(
673
- () => import("@mittwald/flow-react-components/TextArea").then((t) => ({
674
- default: t.TextArea
675
- }))
676
- )
677
- ),
678
- "flr-text-field": e(
679
- r(
680
- () => import("@mittwald/flow-react-components/TextField").then((t) => ({
681
- default: t.TextField
682
- }))
683
- )
684
- ),
685
- "flr-time-field": e(
686
- r(
687
- () => import("@mittwald/flow-react-components/TimeField").then((t) => ({
688
- default: t.TimeField
689
- }))
690
- )
691
- ),
692
- "flr-tooltip": e(
693
- r(
694
- () => import("@mittwald/flow-react-components/Tooltip").then((t) => ({
695
- default: t.Tooltip
696
- }))
697
- )
698
- ),
699
- "flr-tooltip-trigger": e(
700
- r(
701
- () => import("@mittwald/flow-react-components/Tooltip").then((t) => ({
702
- default: t.TooltipTrigger
703
- }))
704
- )
705
- )
706
- }, j = {
707
- svg: f(p("svg")),
708
- circle: f(p("circle")),
709
- g: f(p("g")),
710
- path: f(p("path"))
711
- }, O = {
712
- "flr-form": e(B)
713
- }, W = {
714
- ...j,
715
- ...O,
716
- ...G
717
- }, Q = (t) => {
718
- const { integrations: o = [], src: l, iframeStyle: i } = t, a = h(() => new T(), []), m = h(() => new Map(
719
- Object.entries(
720
- w(
721
- [...o, W],
722
- (n, b) => ({
723
- ...n,
724
- ...b
725
- }),
726
- {}
727
- )
728
- )
729
- ), [...o]), d = /* @__PURE__ */ u(
730
- "iframe",
731
- {
732
- ref: M(a.connection),
733
- src: l,
734
- style: i ?? {
735
- visibility: "hidden",
736
- height: 0,
737
- width: 0,
738
- border: "none",
739
- position: "absolute",
740
- marginLeft: "-9999px"
741
- }
742
- }
743
- );
744
- return /* @__PURE__ */ x(C, { children: [
745
- /* @__PURE__ */ u(v, { components: m, receiver: a }),
746
- d
747
- ] });
748
- };
749
- export {
750
- Q as RemoteRenderer
751
- };