@mittwald/flow-remote-react-renderer 0.2.0-alpha.19 → 0.2.0-alpha.191

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