@mittwald/flow-remote-react-renderer 0.2.0-alpha.9 → 0.2.0-alpha.91
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/js/RemoteRenderer.mjs +16 -0
- package/dist/js/RemoteRenderer.mjs.map +1 -0
- package/dist/js/RemoteRendererClient.mjs +75 -0
- package/dist/js/RemoteRendererClient.mjs.map +1 -0
- package/dist/js/auto-generated/index.mjs +116 -0
- package/dist/js/auto-generated/index.mjs.map +1 -0
- package/dist/js/components/Form.mjs +22 -0
- package/dist/js/components/Form.mjs.map +1 -0
- package/dist/js/components/lib/getFormDataObject.mjs +7 -0
- package/dist/js/components/lib/getFormDataObject.mjs.map +1 -0
- package/dist/js/components.mjs +26 -0
- package/dist/js/components.mjs.map +1 -0
- package/dist/js/hooks/useIsMounted.mjs +14 -0
- package/dist/js/hooks/useIsMounted.mjs.map +1 -0
- package/dist/js/index.mjs +7 -0
- package/dist/js/index.mjs.map +1 -0
- package/dist/js/lib/createFlowRemoteComponentRenderer.mjs +36 -0
- package/dist/js/lib/createFlowRemoteComponentRenderer.mjs.map +1 -0
- package/dist/js/lib/elementFactory.mjs +19 -0
- package/dist/js/lib/elementFactory.mjs.map +1 -0
- package/dist/js/lib/mapAttributeToReactProperty.mjs +14 -0
- package/dist/js/lib/mapAttributeToReactProperty.mjs.map +1 -0
- package/dist/js/lib/propClassifiers.mjs +13 -0
- package/dist/js/lib/propClassifiers.mjs.map +1 -0
- package/dist/types/RemoteRenderer.d.ts +4 -7
- package/dist/types/RemoteRenderer.d.ts.map +1 -0
- package/dist/types/RemoteRendererClient.d.ts +9 -0
- package/dist/types/RemoteRendererClient.d.ts.map +1 -0
- package/dist/types/auto-generated/index.d.ts +102 -109
- package/dist/types/auto-generated/index.d.ts.map +1 -0
- package/dist/types/components/Form.d.ts +1 -0
- package/dist/types/components/Form.d.ts.map +1 -0
- package/dist/types/components/lib/getFormDataObject.d.ts +1 -0
- package/dist/types/components/lib/getFormDataObject.d.ts.map +1 -0
- package/dist/types/components.d.ts +108 -114
- package/dist/types/components.d.ts.map +1 -0
- package/dist/types/hooks/useIsMounted.d.ts +2 -0
- package/dist/types/hooks/useIsMounted.d.ts.map +1 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.d.ts.map +1 -0
- package/dist/types/lib/createFlowRemoteComponentRenderer.d.ts +3 -2
- package/dist/types/lib/createFlowRemoteComponentRenderer.d.ts.map +1 -0
- package/dist/types/lib/elementFactory.d.ts +4 -2
- package/dist/types/lib/elementFactory.d.ts.map +1 -0
- package/dist/types/lib/mapAttributeToReactProperty.d.ts +2 -0
- package/dist/types/lib/mapAttributeToReactProperty.d.ts.map +1 -0
- package/dist/types/lib/propClassifiers.d.ts +3 -0
- package/dist/types/lib/propClassifiers.d.ts.map +1 -0
- package/dist/types/lib/stringChildrenExtractor.d.ts +1 -0
- package/dist/types/lib/stringChildrenExtractor.d.ts.map +1 -0
- package/dist/types/lib/types.d.ts +2 -1
- package/dist/types/lib/types.d.ts.map +1 -0
- package/package.json +34 -29
- package/dist/index.js +0 -770
- package/dist/polyfill.js +0 -2
- package/dist/types/lib/mapReactElementAttributes.d.ts +0 -6
- package/dist/types/lib/possibleStandardNames.d.ts +0 -495
- package/dist/types/polyfill.d.ts +0 -0
package/dist/index.js
DELETED
|
@@ -1,770 +0,0 @@
|
|
|
1
|
-
import { createRemoteComponentRenderer as c, RemoteReceiver as k, RemoteRootRenderer as y } from "@remote-dom/react/host";
|
|
2
|
-
import m, { forwardRef as g, createElement as u, useMemo as f } from "react";
|
|
3
|
-
import { isFunction as v, mapValues as x, reduce as b } from "remeda";
|
|
4
|
-
import { mapEventHandler as w, connectRemoteIframeRef as S } from "@mittwald/flow-remote-core";
|
|
5
|
-
import { Accordion as C } from "@mittwald/flow-react-components/Accordion";
|
|
6
|
-
import { Action as T } from "@mittwald/flow-react-components/Action";
|
|
7
|
-
import { ActionGroup as R } from "@mittwald/flow-react-components/ActionGroup";
|
|
8
|
-
import { Activity as P } from "@mittwald/flow-react-components/Activity";
|
|
9
|
-
import { Alert as F } from "@mittwald/flow-react-components/Alert";
|
|
10
|
-
import { AlertBadge as A } from "@mittwald/flow-react-components/AlertBadge";
|
|
11
|
-
import { AlertIcon as M } from "@mittwald/flow-react-components/AlertIcon";
|
|
12
|
-
import { Align as z } from "@mittwald/flow-react-components/Align";
|
|
13
|
-
import { Avatar as L } from "@mittwald/flow-react-components/Avatar";
|
|
14
|
-
import { Badge as O } from "@mittwald/flow-react-components/Badge";
|
|
15
|
-
import { Breadcrumb as H } from "@mittwald/flow-react-components/Breadcrumb";
|
|
16
|
-
import { Button as I } from "@mittwald/flow-react-components/Button";
|
|
17
|
-
import { Checkbox as B } from "@mittwald/flow-react-components/Checkbox";
|
|
18
|
-
import { CheckboxButton as E } from "@mittwald/flow-react-components/CheckboxButton";
|
|
19
|
-
import { CheckboxGroup as D } from "@mittwald/flow-react-components/CheckboxGroup";
|
|
20
|
-
import { CodeBlock as q } from "@mittwald/flow-react-components/CodeBlock";
|
|
21
|
-
import { ColumnLayout as N } from "@mittwald/flow-react-components/ColumnLayout";
|
|
22
|
-
import { Content as j } from "@mittwald/flow-react-components/Content";
|
|
23
|
-
import { ContextMenu as V, ContextMenuSection as X, ContextMenuTrigger as U } from "@mittwald/flow-react-components/ContextMenu";
|
|
24
|
-
import { ContextualHelp as W, ContextualHelpTrigger as Y } from "@mittwald/flow-react-components/ContextualHelp";
|
|
25
|
-
import { CopyButton as G } from "@mittwald/flow-react-components/CopyButton";
|
|
26
|
-
import { CounterBadge as K } from "@mittwald/flow-react-components/CounterBadge";
|
|
27
|
-
import { CountryOptions as $, Option as Z, Select as J } from "@mittwald/flow-react-components/Select";
|
|
28
|
-
import { DatePicker as Q } from "@mittwald/flow-react-components/DatePicker";
|
|
29
|
-
import { DateRangePicker as _ } from "@mittwald/flow-react-components/DateRangePicker";
|
|
30
|
-
import { FieldDescription as ee } from "@mittwald/flow-react-components/FieldDescription";
|
|
31
|
-
import { FieldError as te } from "@mittwald/flow-react-components/FieldError";
|
|
32
|
-
import { FileCard as re } from "@mittwald/flow-react-components/FileCard";
|
|
33
|
-
import { FileCardList as ie } from "@mittwald/flow-react-components/FileCardList";
|
|
34
|
-
import { FileField as oe } from "@mittwald/flow-react-components/FileField";
|
|
35
|
-
import { Fragment as ne } from "@mittwald/flow-react-components/Fragment";
|
|
36
|
-
import { Header as ae } from "@mittwald/flow-react-components/Header";
|
|
37
|
-
import { HeaderNavigation as le } from "@mittwald/flow-react-components/HeaderNavigation";
|
|
38
|
-
import { Heading as se } from "@mittwald/flow-react-components/Heading";
|
|
39
|
-
import { Icon as ce } from "@mittwald/flow-react-components/Icon";
|
|
40
|
-
import { IllustratedMessage as me } from "@mittwald/flow-react-components/IllustratedMessage";
|
|
41
|
-
import { Image as pe } from "@mittwald/flow-react-components/Image";
|
|
42
|
-
import { Initials as fe } from "@mittwald/flow-react-components/Initials";
|
|
43
|
-
import { InlineCode as de } from "@mittwald/flow-react-components/InlineCode";
|
|
44
|
-
import { Label as ge } from "@mittwald/flow-react-components/Label";
|
|
45
|
-
import { LabeledValue as ue } from "@mittwald/flow-react-components/LabeledValue";
|
|
46
|
-
import { LayoutCard as he } from "@mittwald/flow-react-components/LayoutCard";
|
|
47
|
-
import { LightBox as ke, LightBoxTrigger as ye } from "@mittwald/flow-react-components/LightBox";
|
|
48
|
-
import { Link as ve } from "@mittwald/flow-react-components/Link";
|
|
49
|
-
import { List as xe, ListItemView as be } from "@mittwald/flow-react-components/List";
|
|
50
|
-
import { ActiveFilterItem as we, ActiveFilterList as Se, FilterPickerMenuItem as Ce, FilterPicker as Te, Footer as Re, Header as Pe, ItemContainer as Fe, Items as Ae, List as Me, LoadNextBatchButton as ze, PaginationInfos as Le, SearchField as Oe, SortingPickerMenuItem as He, SortingPicker as Ie, ViewModeMenu as Be } from "@mittwald/flow-react-components/List/views";
|
|
51
|
-
import { LoadingSpinner as Ee } from "@mittwald/flow-react-components/LoadingSpinner";
|
|
52
|
-
import { Markdown as De } from "@mittwald/flow-react-components/Markdown";
|
|
53
|
-
import { MenuItem as qe } from "@mittwald/flow-react-components/MenuItem";
|
|
54
|
-
import { Message as Ne } from "@mittwald/flow-react-components/Message";
|
|
55
|
-
import { Modal as je, ModalTrigger as Ve } from "@mittwald/flow-react-components/Modal";
|
|
56
|
-
import { Navigation as Xe, NavigationGroup as Ue } from "@mittwald/flow-react-components/Navigation";
|
|
57
|
-
import { Notification as We } from "@mittwald/flow-react-components/Notification";
|
|
58
|
-
import { NotificationProvider as Ye } from "@mittwald/flow-react-components/NotificationProvider";
|
|
59
|
-
import { NumberField as Ge } from "@mittwald/flow-react-components/NumberField";
|
|
60
|
-
import { Popover as Ke, PopoverTrigger as $e } from "@mittwald/flow-react-components/Popover";
|
|
61
|
-
import { ProgressBar as Ze } from "@mittwald/flow-react-components/ProgressBar";
|
|
62
|
-
import { Radio as Je, RadioButton as Qe, RadioGroup as _e } from "@mittwald/flow-react-components/RadioGroup";
|
|
63
|
-
import { Content as et } from "@mittwald/flow-react-components/react-hook-form/Field/views";
|
|
64
|
-
import { SearchField as tt } from "@mittwald/flow-react-components/SearchField";
|
|
65
|
-
import { Section as rt } from "@mittwald/flow-react-components/Section";
|
|
66
|
-
import { Segment as it, SegmentedControl as ot } from "@mittwald/flow-react-components/SegmentedControl";
|
|
67
|
-
import { Separator as nt } from "@mittwald/flow-react-components/Separator";
|
|
68
|
-
import { Skeleton as at } from "@mittwald/flow-react-components/Skeleton";
|
|
69
|
-
import { SkeletonText as lt } from "@mittwald/flow-react-components/SkeletonText";
|
|
70
|
-
import { Slider as st } from "@mittwald/flow-react-components/Slider";
|
|
71
|
-
import { Tab as ct, TabTitle as mt, Tabs as pt } from "@mittwald/flow-react-components/Tabs";
|
|
72
|
-
import { Table as ft, TableBody as dt, TableCell as gt, TableColumn as ut, TableFooterRow as ht, TableHeader as kt, TableRow as yt } from "@mittwald/flow-react-components/Table";
|
|
73
|
-
import { Text as vt } from "@mittwald/flow-react-components/Text";
|
|
74
|
-
import { TextArea as xt } from "@mittwald/flow-react-components/TextArea";
|
|
75
|
-
import { TextField as bt } from "@mittwald/flow-react-components/TextField";
|
|
76
|
-
import { TimeField as wt } from "@mittwald/flow-react-components/TimeField";
|
|
77
|
-
import { Tooltip as St, TooltipTrigger as Ct } from "@mittwald/flow-react-components/Tooltip";
|
|
78
|
-
const d = (t) => Object.fromEntries(Array.from(t.entries())), Tt = g((t, r) => {
|
|
79
|
-
const {
|
|
80
|
-
action: i,
|
|
81
|
-
onSubmit: o,
|
|
82
|
-
...a
|
|
83
|
-
} = t, l = typeof i == "function" ? (n) => i(d(n)) : i, s = o ? (n) => {
|
|
84
|
-
n.preventDefault(), o(d(new FormData(n.currentTarget)));
|
|
85
|
-
} : void 0;
|
|
86
|
-
return /* @__PURE__ */ m.createElement("form", { ref: r, ...a, action: l, onSubmit: s });
|
|
87
|
-
}), Rt = /on[A-Z].*/, Pt = (t, r) => !!t.match(Rt) && v(r), Ft = (t, r) => Pt(r, t) ? w(t, r) : t, e = (t) => {
|
|
88
|
-
const r = g(function(o, a) {
|
|
89
|
-
const l = x(o, (s, n) => Ft(s, n));
|
|
90
|
-
return u(t, {
|
|
91
|
-
...l,
|
|
92
|
-
ref: a
|
|
93
|
-
});
|
|
94
|
-
});
|
|
95
|
-
return c(r);
|
|
96
|
-
}, At = {
|
|
97
|
-
// HTML
|
|
98
|
-
accept: "accept",
|
|
99
|
-
acceptcharset: "acceptCharset",
|
|
100
|
-
"accept-charset": "acceptCharset",
|
|
101
|
-
accesskey: "accessKey",
|
|
102
|
-
action: "action",
|
|
103
|
-
allowfullscreen: "allowFullScreen",
|
|
104
|
-
alt: "alt",
|
|
105
|
-
as: "as",
|
|
106
|
-
async: "async",
|
|
107
|
-
autocapitalize: "autoCapitalize",
|
|
108
|
-
autocomplete: "autoComplete",
|
|
109
|
-
autocorrect: "autoCorrect",
|
|
110
|
-
autofocus: "autoFocus",
|
|
111
|
-
autoplay: "autoPlay",
|
|
112
|
-
autosave: "autoSave",
|
|
113
|
-
capture: "capture",
|
|
114
|
-
cellpadding: "cellPadding",
|
|
115
|
-
cellspacing: "cellSpacing",
|
|
116
|
-
challenge: "challenge",
|
|
117
|
-
charset: "charSet",
|
|
118
|
-
checked: "checked",
|
|
119
|
-
children: "children",
|
|
120
|
-
cite: "cite",
|
|
121
|
-
class: "className",
|
|
122
|
-
classid: "classID",
|
|
123
|
-
classname: "className",
|
|
124
|
-
cols: "cols",
|
|
125
|
-
colspan: "colSpan",
|
|
126
|
-
content: "content",
|
|
127
|
-
contenteditable: "contentEditable",
|
|
128
|
-
contextmenu: "contextMenu",
|
|
129
|
-
controls: "controls",
|
|
130
|
-
controlslist: "controlsList",
|
|
131
|
-
coords: "coords",
|
|
132
|
-
crossorigin: "crossOrigin",
|
|
133
|
-
dangerouslysetinnerhtml: "dangerouslySetInnerHTML",
|
|
134
|
-
data: "data",
|
|
135
|
-
datetime: "dateTime",
|
|
136
|
-
default: "default",
|
|
137
|
-
defaultchecked: "defaultChecked",
|
|
138
|
-
defaultvalue: "defaultValue",
|
|
139
|
-
defer: "defer",
|
|
140
|
-
dir: "dir",
|
|
141
|
-
disabled: "disabled",
|
|
142
|
-
disablepictureinpicture: "disablePictureInPicture",
|
|
143
|
-
disableremoteplayback: "disableRemotePlayback",
|
|
144
|
-
download: "download",
|
|
145
|
-
draggable: "draggable",
|
|
146
|
-
enctype: "encType",
|
|
147
|
-
enterkeyhint: "enterKeyHint",
|
|
148
|
-
fetchpriority: "fetchPriority",
|
|
149
|
-
for: "htmlFor",
|
|
150
|
-
form: "form",
|
|
151
|
-
formmethod: "formMethod",
|
|
152
|
-
formaction: "formAction",
|
|
153
|
-
formenctype: "formEncType",
|
|
154
|
-
formnovalidate: "formNoValidate",
|
|
155
|
-
formtarget: "formTarget",
|
|
156
|
-
frameborder: "frameBorder",
|
|
157
|
-
headers: "headers",
|
|
158
|
-
height: "height",
|
|
159
|
-
hidden: "hidden",
|
|
160
|
-
high: "high",
|
|
161
|
-
href: "href",
|
|
162
|
-
hreflang: "hrefLang",
|
|
163
|
-
htmlfor: "htmlFor",
|
|
164
|
-
httpequiv: "httpEquiv",
|
|
165
|
-
"http-equiv": "httpEquiv",
|
|
166
|
-
icon: "icon",
|
|
167
|
-
id: "id",
|
|
168
|
-
imagesizes: "imageSizes",
|
|
169
|
-
imagesrcset: "imageSrcSet",
|
|
170
|
-
inert: "inert",
|
|
171
|
-
innerhtml: "innerHTML",
|
|
172
|
-
inputmode: "inputMode",
|
|
173
|
-
integrity: "integrity",
|
|
174
|
-
is: "is",
|
|
175
|
-
itemid: "itemID",
|
|
176
|
-
itemprop: "itemProp",
|
|
177
|
-
itemref: "itemRef",
|
|
178
|
-
itemscope: "itemScope",
|
|
179
|
-
itemtype: "itemType",
|
|
180
|
-
keyparams: "keyParams",
|
|
181
|
-
keytype: "keyType",
|
|
182
|
-
kind: "kind",
|
|
183
|
-
label: "label",
|
|
184
|
-
lang: "lang",
|
|
185
|
-
list: "list",
|
|
186
|
-
loop: "loop",
|
|
187
|
-
low: "low",
|
|
188
|
-
manifest: "manifest",
|
|
189
|
-
marginwidth: "marginWidth",
|
|
190
|
-
marginheight: "marginHeight",
|
|
191
|
-
max: "max",
|
|
192
|
-
maxlength: "maxLength",
|
|
193
|
-
media: "media",
|
|
194
|
-
mediagroup: "mediaGroup",
|
|
195
|
-
method: "method",
|
|
196
|
-
min: "min",
|
|
197
|
-
minlength: "minLength",
|
|
198
|
-
multiple: "multiple",
|
|
199
|
-
muted: "muted",
|
|
200
|
-
name: "name",
|
|
201
|
-
nomodule: "noModule",
|
|
202
|
-
nonce: "nonce",
|
|
203
|
-
novalidate: "noValidate",
|
|
204
|
-
open: "open",
|
|
205
|
-
optimum: "optimum",
|
|
206
|
-
pattern: "pattern",
|
|
207
|
-
placeholder: "placeholder",
|
|
208
|
-
playsinline: "playsInline",
|
|
209
|
-
poster: "poster",
|
|
210
|
-
preload: "preload",
|
|
211
|
-
profile: "profile",
|
|
212
|
-
radiogroup: "radioGroup",
|
|
213
|
-
readonly: "readOnly",
|
|
214
|
-
referrerpolicy: "referrerPolicy",
|
|
215
|
-
rel: "rel",
|
|
216
|
-
required: "required",
|
|
217
|
-
reversed: "reversed",
|
|
218
|
-
role: "role",
|
|
219
|
-
rows: "rows",
|
|
220
|
-
rowspan: "rowSpan",
|
|
221
|
-
sandbox: "sandbox",
|
|
222
|
-
scope: "scope",
|
|
223
|
-
scoped: "scoped",
|
|
224
|
-
scrolling: "scrolling",
|
|
225
|
-
seamless: "seamless",
|
|
226
|
-
selected: "selected",
|
|
227
|
-
shape: "shape",
|
|
228
|
-
size: "size",
|
|
229
|
-
sizes: "sizes",
|
|
230
|
-
span: "span",
|
|
231
|
-
spellcheck: "spellCheck",
|
|
232
|
-
src: "src",
|
|
233
|
-
srcdoc: "srcDoc",
|
|
234
|
-
srclang: "srcLang",
|
|
235
|
-
srcset: "srcSet",
|
|
236
|
-
start: "start",
|
|
237
|
-
step: "step",
|
|
238
|
-
style: "style",
|
|
239
|
-
summary: "summary",
|
|
240
|
-
tabindex: "tabIndex",
|
|
241
|
-
target: "target",
|
|
242
|
-
title: "title",
|
|
243
|
-
type: "type",
|
|
244
|
-
usemap: "useMap",
|
|
245
|
-
value: "value",
|
|
246
|
-
width: "width",
|
|
247
|
-
wmode: "wmode",
|
|
248
|
-
wrap: "wrap",
|
|
249
|
-
// SVG
|
|
250
|
-
about: "about",
|
|
251
|
-
accentheight: "accentHeight",
|
|
252
|
-
"accent-height": "accentHeight",
|
|
253
|
-
accumulate: "accumulate",
|
|
254
|
-
additive: "additive",
|
|
255
|
-
alignmentbaseline: "alignmentBaseline",
|
|
256
|
-
"alignment-baseline": "alignmentBaseline",
|
|
257
|
-
allowreorder: "allowReorder",
|
|
258
|
-
alphabetic: "alphabetic",
|
|
259
|
-
amplitude: "amplitude",
|
|
260
|
-
arabicform: "arabicForm",
|
|
261
|
-
"arabic-form": "arabicForm",
|
|
262
|
-
ascent: "ascent",
|
|
263
|
-
attributename: "attributeName",
|
|
264
|
-
attributetype: "attributeType",
|
|
265
|
-
autoreverse: "autoReverse",
|
|
266
|
-
azimuth: "azimuth",
|
|
267
|
-
basefrequency: "baseFrequency",
|
|
268
|
-
baselineshift: "baselineShift",
|
|
269
|
-
"baseline-shift": "baselineShift",
|
|
270
|
-
baseprofile: "baseProfile",
|
|
271
|
-
bbox: "bbox",
|
|
272
|
-
begin: "begin",
|
|
273
|
-
bias: "bias",
|
|
274
|
-
by: "by",
|
|
275
|
-
calcmode: "calcMode",
|
|
276
|
-
capheight: "capHeight",
|
|
277
|
-
"cap-height": "capHeight",
|
|
278
|
-
clip: "clip",
|
|
279
|
-
clippath: "clipPath",
|
|
280
|
-
"clip-path": "clipPath",
|
|
281
|
-
clippathunits: "clipPathUnits",
|
|
282
|
-
cliprule: "clipRule",
|
|
283
|
-
"clip-rule": "clipRule",
|
|
284
|
-
color: "color",
|
|
285
|
-
colorinterpolation: "colorInterpolation",
|
|
286
|
-
"color-interpolation": "colorInterpolation",
|
|
287
|
-
colorinterpolationfilters: "colorInterpolationFilters",
|
|
288
|
-
"color-interpolation-filters": "colorInterpolationFilters",
|
|
289
|
-
colorprofile: "colorProfile",
|
|
290
|
-
"color-profile": "colorProfile",
|
|
291
|
-
colorrendering: "colorRendering",
|
|
292
|
-
"color-rendering": "colorRendering",
|
|
293
|
-
contentscripttype: "contentScriptType",
|
|
294
|
-
contentstyletype: "contentStyleType",
|
|
295
|
-
cursor: "cursor",
|
|
296
|
-
cx: "cx",
|
|
297
|
-
cy: "cy",
|
|
298
|
-
d: "d",
|
|
299
|
-
datatype: "datatype",
|
|
300
|
-
decelerate: "decelerate",
|
|
301
|
-
descent: "descent",
|
|
302
|
-
diffuseconstant: "diffuseConstant",
|
|
303
|
-
direction: "direction",
|
|
304
|
-
display: "display",
|
|
305
|
-
divisor: "divisor",
|
|
306
|
-
dominantbaseline: "dominantBaseline",
|
|
307
|
-
"dominant-baseline": "dominantBaseline",
|
|
308
|
-
dur: "dur",
|
|
309
|
-
dx: "dx",
|
|
310
|
-
dy: "dy",
|
|
311
|
-
edgemode: "edgeMode",
|
|
312
|
-
elevation: "elevation",
|
|
313
|
-
enablebackground: "enableBackground",
|
|
314
|
-
"enable-background": "enableBackground",
|
|
315
|
-
end: "end",
|
|
316
|
-
exponent: "exponent",
|
|
317
|
-
externalresourcesrequired: "externalResourcesRequired",
|
|
318
|
-
fill: "fill",
|
|
319
|
-
fillopacity: "fillOpacity",
|
|
320
|
-
"fill-opacity": "fillOpacity",
|
|
321
|
-
fillrule: "fillRule",
|
|
322
|
-
"fill-rule": "fillRule",
|
|
323
|
-
filter: "filter",
|
|
324
|
-
filterres: "filterRes",
|
|
325
|
-
filterunits: "filterUnits",
|
|
326
|
-
floodopacity: "floodOpacity",
|
|
327
|
-
"flood-opacity": "floodOpacity",
|
|
328
|
-
floodcolor: "floodColor",
|
|
329
|
-
"flood-color": "floodColor",
|
|
330
|
-
focusable: "focusable",
|
|
331
|
-
fontfamily: "fontFamily",
|
|
332
|
-
"font-family": "fontFamily",
|
|
333
|
-
fontsize: "fontSize",
|
|
334
|
-
"font-size": "fontSize",
|
|
335
|
-
fontsizeadjust: "fontSizeAdjust",
|
|
336
|
-
"font-size-adjust": "fontSizeAdjust",
|
|
337
|
-
fontstretch: "fontStretch",
|
|
338
|
-
"font-stretch": "fontStretch",
|
|
339
|
-
fontstyle: "fontStyle",
|
|
340
|
-
"font-style": "fontStyle",
|
|
341
|
-
fontvariant: "fontVariant",
|
|
342
|
-
"font-variant": "fontVariant",
|
|
343
|
-
fontweight: "fontWeight",
|
|
344
|
-
"font-weight": "fontWeight",
|
|
345
|
-
format: "format",
|
|
346
|
-
from: "from",
|
|
347
|
-
fx: "fx",
|
|
348
|
-
fy: "fy",
|
|
349
|
-
g1: "g1",
|
|
350
|
-
g2: "g2",
|
|
351
|
-
glyphname: "glyphName",
|
|
352
|
-
"glyph-name": "glyphName",
|
|
353
|
-
glyphorientationhorizontal: "glyphOrientationHorizontal",
|
|
354
|
-
"glyph-orientation-horizontal": "glyphOrientationHorizontal",
|
|
355
|
-
glyphorientationvertical: "glyphOrientationVertical",
|
|
356
|
-
"glyph-orientation-vertical": "glyphOrientationVertical",
|
|
357
|
-
glyphref: "glyphRef",
|
|
358
|
-
gradienttransform: "gradientTransform",
|
|
359
|
-
gradientunits: "gradientUnits",
|
|
360
|
-
hanging: "hanging",
|
|
361
|
-
horizadvx: "horizAdvX",
|
|
362
|
-
"horiz-adv-x": "horizAdvX",
|
|
363
|
-
horizoriginx: "horizOriginX",
|
|
364
|
-
"horiz-origin-x": "horizOriginX",
|
|
365
|
-
ideographic: "ideographic",
|
|
366
|
-
imagerendering: "imageRendering",
|
|
367
|
-
"image-rendering": "imageRendering",
|
|
368
|
-
in2: "in2",
|
|
369
|
-
in: "in",
|
|
370
|
-
inlist: "inlist",
|
|
371
|
-
intercept: "intercept",
|
|
372
|
-
k1: "k1",
|
|
373
|
-
k2: "k2",
|
|
374
|
-
k3: "k3",
|
|
375
|
-
k4: "k4",
|
|
376
|
-
k: "k",
|
|
377
|
-
kernelmatrix: "kernelMatrix",
|
|
378
|
-
kernelunitlength: "kernelUnitLength",
|
|
379
|
-
kerning: "kerning",
|
|
380
|
-
keypoints: "keyPoints",
|
|
381
|
-
keysplines: "keySplines",
|
|
382
|
-
keytimes: "keyTimes",
|
|
383
|
-
lengthadjust: "lengthAdjust",
|
|
384
|
-
letterspacing: "letterSpacing",
|
|
385
|
-
"letter-spacing": "letterSpacing",
|
|
386
|
-
lightingcolor: "lightingColor",
|
|
387
|
-
"lighting-color": "lightingColor",
|
|
388
|
-
limitingconeangle: "limitingConeAngle",
|
|
389
|
-
local: "local",
|
|
390
|
-
markerend: "markerEnd",
|
|
391
|
-
"marker-end": "markerEnd",
|
|
392
|
-
markerheight: "markerHeight",
|
|
393
|
-
markermid: "markerMid",
|
|
394
|
-
"marker-mid": "markerMid",
|
|
395
|
-
markerstart: "markerStart",
|
|
396
|
-
"marker-start": "markerStart",
|
|
397
|
-
markerunits: "markerUnits",
|
|
398
|
-
markerwidth: "markerWidth",
|
|
399
|
-
mask: "mask",
|
|
400
|
-
maskcontentunits: "maskContentUnits",
|
|
401
|
-
maskunits: "maskUnits",
|
|
402
|
-
mathematical: "mathematical",
|
|
403
|
-
mode: "mode",
|
|
404
|
-
numoctaves: "numOctaves",
|
|
405
|
-
offset: "offset",
|
|
406
|
-
opacity: "opacity",
|
|
407
|
-
operator: "operator",
|
|
408
|
-
order: "order",
|
|
409
|
-
orient: "orient",
|
|
410
|
-
orientation: "orientation",
|
|
411
|
-
origin: "origin",
|
|
412
|
-
overflow: "overflow",
|
|
413
|
-
overlineposition: "overlinePosition",
|
|
414
|
-
"overline-position": "overlinePosition",
|
|
415
|
-
overlinethickness: "overlineThickness",
|
|
416
|
-
"overline-thickness": "overlineThickness",
|
|
417
|
-
paintorder: "paintOrder",
|
|
418
|
-
"paint-order": "paintOrder",
|
|
419
|
-
panose1: "panose1",
|
|
420
|
-
"panose-1": "panose1",
|
|
421
|
-
pathlength: "pathLength",
|
|
422
|
-
patterncontentunits: "patternContentUnits",
|
|
423
|
-
patterntransform: "patternTransform",
|
|
424
|
-
patternunits: "patternUnits",
|
|
425
|
-
pointerevents: "pointerEvents",
|
|
426
|
-
"pointer-events": "pointerEvents",
|
|
427
|
-
points: "points",
|
|
428
|
-
pointsatx: "pointsAtX",
|
|
429
|
-
pointsaty: "pointsAtY",
|
|
430
|
-
pointsatz: "pointsAtZ",
|
|
431
|
-
popover: "popover",
|
|
432
|
-
popovertarget: "popoverTarget",
|
|
433
|
-
popovertargetaction: "popoverTargetAction",
|
|
434
|
-
prefix: "prefix",
|
|
435
|
-
preservealpha: "preserveAlpha",
|
|
436
|
-
preserveaspectratio: "preserveAspectRatio",
|
|
437
|
-
primitiveunits: "primitiveUnits",
|
|
438
|
-
property: "property",
|
|
439
|
-
r: "r",
|
|
440
|
-
radius: "radius",
|
|
441
|
-
refx: "refX",
|
|
442
|
-
refy: "refY",
|
|
443
|
-
renderingintent: "renderingIntent",
|
|
444
|
-
"rendering-intent": "renderingIntent",
|
|
445
|
-
repeatcount: "repeatCount",
|
|
446
|
-
repeatdur: "repeatDur",
|
|
447
|
-
requiredextensions: "requiredExtensions",
|
|
448
|
-
requiredfeatures: "requiredFeatures",
|
|
449
|
-
resource: "resource",
|
|
450
|
-
restart: "restart",
|
|
451
|
-
result: "result",
|
|
452
|
-
results: "results",
|
|
453
|
-
rotate: "rotate",
|
|
454
|
-
rx: "rx",
|
|
455
|
-
ry: "ry",
|
|
456
|
-
scale: "scale",
|
|
457
|
-
security: "security",
|
|
458
|
-
seed: "seed",
|
|
459
|
-
shaperendering: "shapeRendering",
|
|
460
|
-
"shape-rendering": "shapeRendering",
|
|
461
|
-
slope: "slope",
|
|
462
|
-
spacing: "spacing",
|
|
463
|
-
specularconstant: "specularConstant",
|
|
464
|
-
specularexponent: "specularExponent",
|
|
465
|
-
speed: "speed",
|
|
466
|
-
spreadmethod: "spreadMethod",
|
|
467
|
-
startoffset: "startOffset",
|
|
468
|
-
stddeviation: "stdDeviation",
|
|
469
|
-
stemh: "stemh",
|
|
470
|
-
stemv: "stemv",
|
|
471
|
-
stitchtiles: "stitchTiles",
|
|
472
|
-
stopcolor: "stopColor",
|
|
473
|
-
"stop-color": "stopColor",
|
|
474
|
-
stopopacity: "stopOpacity",
|
|
475
|
-
"stop-opacity": "stopOpacity",
|
|
476
|
-
strikethroughposition: "strikethroughPosition",
|
|
477
|
-
"strikethrough-position": "strikethroughPosition",
|
|
478
|
-
strikethroughthickness: "strikethroughThickness",
|
|
479
|
-
"strikethrough-thickness": "strikethroughThickness",
|
|
480
|
-
string: "string",
|
|
481
|
-
stroke: "stroke",
|
|
482
|
-
strokedasharray: "strokeDasharray",
|
|
483
|
-
"stroke-dasharray": "strokeDasharray",
|
|
484
|
-
strokedashoffset: "strokeDashoffset",
|
|
485
|
-
"stroke-dashoffset": "strokeDashoffset",
|
|
486
|
-
strokelinecap: "strokeLinecap",
|
|
487
|
-
"stroke-linecap": "strokeLinecap",
|
|
488
|
-
strokelinejoin: "strokeLinejoin",
|
|
489
|
-
"stroke-linejoin": "strokeLinejoin",
|
|
490
|
-
strokemiterlimit: "strokeMiterlimit",
|
|
491
|
-
"stroke-miterlimit": "strokeMiterlimit",
|
|
492
|
-
strokewidth: "strokeWidth",
|
|
493
|
-
"stroke-width": "strokeWidth",
|
|
494
|
-
strokeopacity: "strokeOpacity",
|
|
495
|
-
"stroke-opacity": "strokeOpacity",
|
|
496
|
-
suppresscontenteditablewarning: "suppressContentEditableWarning",
|
|
497
|
-
suppresshydrationwarning: "suppressHydrationWarning",
|
|
498
|
-
surfacescale: "surfaceScale",
|
|
499
|
-
systemlanguage: "systemLanguage",
|
|
500
|
-
tablevalues: "tableValues",
|
|
501
|
-
targetx: "targetX",
|
|
502
|
-
targety: "targetY",
|
|
503
|
-
textanchor: "textAnchor",
|
|
504
|
-
"text-anchor": "textAnchor",
|
|
505
|
-
textdecoration: "textDecoration",
|
|
506
|
-
"text-decoration": "textDecoration",
|
|
507
|
-
textlength: "textLength",
|
|
508
|
-
textrendering: "textRendering",
|
|
509
|
-
"text-rendering": "textRendering",
|
|
510
|
-
to: "to",
|
|
511
|
-
transform: "transform",
|
|
512
|
-
transformorigin: "transformOrigin",
|
|
513
|
-
"transform-origin": "transformOrigin",
|
|
514
|
-
typeof: "typeof",
|
|
515
|
-
u1: "u1",
|
|
516
|
-
u2: "u2",
|
|
517
|
-
underlineposition: "underlinePosition",
|
|
518
|
-
"underline-position": "underlinePosition",
|
|
519
|
-
underlinethickness: "underlineThickness",
|
|
520
|
-
"underline-thickness": "underlineThickness",
|
|
521
|
-
unicode: "unicode",
|
|
522
|
-
unicodebidi: "unicodeBidi",
|
|
523
|
-
"unicode-bidi": "unicodeBidi",
|
|
524
|
-
unicoderange: "unicodeRange",
|
|
525
|
-
"unicode-range": "unicodeRange",
|
|
526
|
-
unitsperem: "unitsPerEm",
|
|
527
|
-
"units-per-em": "unitsPerEm",
|
|
528
|
-
unselectable: "unselectable",
|
|
529
|
-
valphabetic: "vAlphabetic",
|
|
530
|
-
"v-alphabetic": "vAlphabetic",
|
|
531
|
-
values: "values",
|
|
532
|
-
vectoreffect: "vectorEffect",
|
|
533
|
-
"vector-effect": "vectorEffect",
|
|
534
|
-
version: "version",
|
|
535
|
-
vertadvy: "vertAdvY",
|
|
536
|
-
"vert-adv-y": "vertAdvY",
|
|
537
|
-
vertoriginx: "vertOriginX",
|
|
538
|
-
"vert-origin-x": "vertOriginX",
|
|
539
|
-
vertoriginy: "vertOriginY",
|
|
540
|
-
"vert-origin-y": "vertOriginY",
|
|
541
|
-
vhanging: "vHanging",
|
|
542
|
-
"v-hanging": "vHanging",
|
|
543
|
-
videographic: "vIdeographic",
|
|
544
|
-
"v-ideographic": "vIdeographic",
|
|
545
|
-
viewbox: "viewBox",
|
|
546
|
-
viewtarget: "viewTarget",
|
|
547
|
-
visibility: "visibility",
|
|
548
|
-
vmathematical: "vMathematical",
|
|
549
|
-
"v-mathematical": "vMathematical",
|
|
550
|
-
vocab: "vocab",
|
|
551
|
-
widths: "widths",
|
|
552
|
-
wordspacing: "wordSpacing",
|
|
553
|
-
"word-spacing": "wordSpacing",
|
|
554
|
-
writingmode: "writingMode",
|
|
555
|
-
"writing-mode": "writingMode",
|
|
556
|
-
x1: "x1",
|
|
557
|
-
x2: "x2",
|
|
558
|
-
x: "x",
|
|
559
|
-
xchannelselector: "xChannelSelector",
|
|
560
|
-
xheight: "xHeight",
|
|
561
|
-
"x-height": "xHeight",
|
|
562
|
-
xlinkactuate: "xlinkActuate",
|
|
563
|
-
"xlink:actuate": "xlinkActuate",
|
|
564
|
-
xlinkarcrole: "xlinkArcrole",
|
|
565
|
-
"xlink:arcrole": "xlinkArcrole",
|
|
566
|
-
xlinkhref: "xlinkHref",
|
|
567
|
-
"xlink:href": "xlinkHref",
|
|
568
|
-
xlinkrole: "xlinkRole",
|
|
569
|
-
"xlink:role": "xlinkRole",
|
|
570
|
-
xlinkshow: "xlinkShow",
|
|
571
|
-
"xlink:show": "xlinkShow",
|
|
572
|
-
xlinktitle: "xlinkTitle",
|
|
573
|
-
"xlink:title": "xlinkTitle",
|
|
574
|
-
xlinktype: "xlinkType",
|
|
575
|
-
"xlink:type": "xlinkType",
|
|
576
|
-
xmlbase: "xmlBase",
|
|
577
|
-
"xml:base": "xmlBase",
|
|
578
|
-
xmllang: "xmlLang",
|
|
579
|
-
"xml:lang": "xmlLang",
|
|
580
|
-
xmlns: "xmlns",
|
|
581
|
-
"xml:space": "xmlSpace",
|
|
582
|
-
xmlnsxlink: "xmlnsXlink",
|
|
583
|
-
"xmlns:xlink": "xmlnsXlink",
|
|
584
|
-
xmlspace: "xmlSpace",
|
|
585
|
-
y1: "y1",
|
|
586
|
-
y2: "y2",
|
|
587
|
-
y: "y",
|
|
588
|
-
ychannelselector: "yChannelSelector",
|
|
589
|
-
z: "z",
|
|
590
|
-
zoomandpan: "zoomAndPan"
|
|
591
|
-
}, Mt = (t) => {
|
|
592
|
-
const r = {};
|
|
593
|
-
for (const i in t) {
|
|
594
|
-
const o = At[i];
|
|
595
|
-
o && o != i ? r[o] = t[i] : r[i] = t[i];
|
|
596
|
-
}
|
|
597
|
-
return r;
|
|
598
|
-
}, p = (t) => (r) => u(t, Mt(r)), zt = {
|
|
599
|
-
"flr-accordion": e(C),
|
|
600
|
-
"flr-action": e(T),
|
|
601
|
-
"flr-action-group": e(R),
|
|
602
|
-
"flr-activity": e(P),
|
|
603
|
-
"flr-alert": e(F),
|
|
604
|
-
"flr-alert-badge": e(A),
|
|
605
|
-
"flr-alert-icon": e(M),
|
|
606
|
-
"flr-align": e(z),
|
|
607
|
-
"flr-avatar": e(L),
|
|
608
|
-
"flr-badge": e(O),
|
|
609
|
-
"flr-breadcrumb": e(H),
|
|
610
|
-
"flr-button": e(I),
|
|
611
|
-
"flr-checkbox": e(B),
|
|
612
|
-
"flr-checkbox-button": e(E),
|
|
613
|
-
"flr-checkbox-group": e(D),
|
|
614
|
-
"flr-code-block": e(q),
|
|
615
|
-
"flr-column-layout": e(N),
|
|
616
|
-
"flr-content": e(j),
|
|
617
|
-
"flr-context-menu": e(V),
|
|
618
|
-
"flr-context-menu-section": e(X),
|
|
619
|
-
"flr-context-menu-trigger": e(U),
|
|
620
|
-
"flr-contextual-help": e(W),
|
|
621
|
-
"flr-contextual-help-trigger": e(
|
|
622
|
-
Y
|
|
623
|
-
),
|
|
624
|
-
"flr-copy-button": e(G),
|
|
625
|
-
"flr-counter-badge": e(K),
|
|
626
|
-
"flr-country-options": e($),
|
|
627
|
-
"flr-date-picker": e(Q),
|
|
628
|
-
"flr-date-range-picker": e(_),
|
|
629
|
-
"flr-field-description": e(ee),
|
|
630
|
-
"flr-field-error": e(te),
|
|
631
|
-
"flr-file-card": e(re),
|
|
632
|
-
"flr-file-card-list": e(ie),
|
|
633
|
-
"flr-file-field": e(oe),
|
|
634
|
-
"flr-fragment": e(ne),
|
|
635
|
-
"flr-header": e(ae),
|
|
636
|
-
"flr-header-navigation": e(le),
|
|
637
|
-
"flr-heading": e(se),
|
|
638
|
-
"flr-icon": e(ce),
|
|
639
|
-
"flr-illustrated-message": e(me),
|
|
640
|
-
"flr-image": e(pe),
|
|
641
|
-
"flr-initials": e(fe),
|
|
642
|
-
"flr-inline-code": e(de),
|
|
643
|
-
"flr-label": e(ge),
|
|
644
|
-
"flr-labeled-value": e(ue),
|
|
645
|
-
"flr-layout-card": e(he),
|
|
646
|
-
"flr-light-box": e(ke),
|
|
647
|
-
"flr-light-box-trigger": e(ye),
|
|
648
|
-
"flr-link": e(ve),
|
|
649
|
-
"flr-list": e(xe),
|
|
650
|
-
"flr-list-active-filter-item-view": e(
|
|
651
|
-
we
|
|
652
|
-
),
|
|
653
|
-
"flr-list-active-filter-list-view": e(
|
|
654
|
-
Se
|
|
655
|
-
),
|
|
656
|
-
"flr-list-filter-picker-menu-item-view": e(
|
|
657
|
-
Ce
|
|
658
|
-
),
|
|
659
|
-
"flr-list-filter-picker-view": e(Te),
|
|
660
|
-
"flr-list-footer-view": e(Re),
|
|
661
|
-
"flr-list-header-view": e(Pe),
|
|
662
|
-
"flr-list-item-container-view": e(
|
|
663
|
-
Fe
|
|
664
|
-
),
|
|
665
|
-
"flr-list-item-view": e(be),
|
|
666
|
-
"flr-list-items-view": e(Ae),
|
|
667
|
-
"flr-list-list-view": e(Me),
|
|
668
|
-
"flr-list-load-next-batch-button-view": e(
|
|
669
|
-
ze
|
|
670
|
-
),
|
|
671
|
-
"flr-list-pagination-infos-view": e(
|
|
672
|
-
Le
|
|
673
|
-
),
|
|
674
|
-
"flr-list-search-field-view": e(Oe),
|
|
675
|
-
"flr-list-sorting-picker-menu-item-view": e(
|
|
676
|
-
He
|
|
677
|
-
),
|
|
678
|
-
"flr-list-sorting-picker-view": e(
|
|
679
|
-
Ie
|
|
680
|
-
),
|
|
681
|
-
"flr-list-view-mode-menu-view": e(Be),
|
|
682
|
-
"flr-loading-spinner": e(Ee),
|
|
683
|
-
"flr-markdown": e(De),
|
|
684
|
-
"flr-menu-item": e(qe),
|
|
685
|
-
"flr-message": e(Ne),
|
|
686
|
-
"flr-modal": e(je),
|
|
687
|
-
"flr-modal-trigger": e(Ve),
|
|
688
|
-
"flr-navigation": e(Xe),
|
|
689
|
-
"flr-navigation-group": e(Ue),
|
|
690
|
-
"flr-notification": e(We),
|
|
691
|
-
"flr-notification-provider": e(Ye),
|
|
692
|
-
"flr-number-field": e(Ge),
|
|
693
|
-
"flr-option": e(Z),
|
|
694
|
-
"flr-popover": e(Ke),
|
|
695
|
-
"flr-popover-trigger": e($e),
|
|
696
|
-
"flr-progress-bar": e(Ze),
|
|
697
|
-
"flr-radio": e(Je),
|
|
698
|
-
"flr-radio-button": e(Qe),
|
|
699
|
-
"flr-radio-group": e(_e),
|
|
700
|
-
"flr-react-hook-form-field-content-view": e(
|
|
701
|
-
et
|
|
702
|
-
),
|
|
703
|
-
"flr-search-field": e(tt),
|
|
704
|
-
"flr-section": e(rt),
|
|
705
|
-
"flr-segment": e(it),
|
|
706
|
-
"flr-segmented-control": e(ot),
|
|
707
|
-
"flr-select": e(J),
|
|
708
|
-
"flr-separator": e(nt),
|
|
709
|
-
"flr-skeleton": e(at),
|
|
710
|
-
"flr-skeleton-text": e(lt),
|
|
711
|
-
"flr-slider": e(st),
|
|
712
|
-
"flr-tab": e(ct),
|
|
713
|
-
"flr-tab-title": e(mt),
|
|
714
|
-
"flr-table": e(ft),
|
|
715
|
-
"flr-table-body": e(dt),
|
|
716
|
-
"flr-table-cell": e(gt),
|
|
717
|
-
"flr-table-column": e(ut),
|
|
718
|
-
"flr-table-footer-row": e(ht),
|
|
719
|
-
"flr-table-header": e(kt),
|
|
720
|
-
"flr-table-row": e(yt),
|
|
721
|
-
"flr-tabs": e(pt),
|
|
722
|
-
"flr-text": e(vt),
|
|
723
|
-
"flr-text-area": e(xt),
|
|
724
|
-
"flr-text-field": e(bt),
|
|
725
|
-
"flr-time-field": e(wt),
|
|
726
|
-
"flr-tooltip": e(St),
|
|
727
|
-
"flr-tooltip-trigger": e(Ct)
|
|
728
|
-
}, Lt = {
|
|
729
|
-
svg: c(p("svg")),
|
|
730
|
-
circle: c(p("circle")),
|
|
731
|
-
g: c(p("g")),
|
|
732
|
-
path: c(p("path"))
|
|
733
|
-
}, Ot = {
|
|
734
|
-
"flr-form": e(Tt)
|
|
735
|
-
}, Ht = {
|
|
736
|
-
...Lt,
|
|
737
|
-
...Ot,
|
|
738
|
-
...zt
|
|
739
|
-
}, oi = (t) => {
|
|
740
|
-
const { integrations: r = [], src: i, iframeStyle: o } = t, a = f(() => new k(), []), l = f(() => new Map(
|
|
741
|
-
Object.entries(
|
|
742
|
-
b(
|
|
743
|
-
[...r, Ht],
|
|
744
|
-
(n, h) => ({
|
|
745
|
-
...n,
|
|
746
|
-
...h
|
|
747
|
-
}),
|
|
748
|
-
{}
|
|
749
|
-
)
|
|
750
|
-
)
|
|
751
|
-
), [...r]), s = /* @__PURE__ */ m.createElement(
|
|
752
|
-
"iframe",
|
|
753
|
-
{
|
|
754
|
-
ref: S(a.connection),
|
|
755
|
-
src: i,
|
|
756
|
-
style: o ?? {
|
|
757
|
-
visibility: "hidden",
|
|
758
|
-
height: 0,
|
|
759
|
-
width: 0,
|
|
760
|
-
border: "none",
|
|
761
|
-
position: "absolute",
|
|
762
|
-
marginLeft: "-9999px"
|
|
763
|
-
}
|
|
764
|
-
}
|
|
765
|
-
);
|
|
766
|
-
return /* @__PURE__ */ m.createElement(m.Fragment, null, /* @__PURE__ */ m.createElement(y, { components: l, receiver: a }), s);
|
|
767
|
-
};
|
|
768
|
-
export {
|
|
769
|
-
oi as RemoteRenderer
|
|
770
|
-
};
|