iframe-coordinator-cli 6.4.0 → 6.5.1
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/assets/index-DEUCFuke.css +1 -0
- package/dist/assets/index-DejhDHus.js +57 -0
- package/dist/favicon.svg +1 -0
- package/dist/ifc-docs/assets/hierarchy.js +1 -1
- package/dist/ifc-docs/assets/highlight.css +130 -91
- package/dist/ifc-docs/assets/icons.js +20 -17
- package/dist/ifc-docs/assets/icons.svg +1 -1
- package/dist/ifc-docs/assets/main.js +2535 -5
- package/dist/ifc-docs/assets/navigation.js +2 -1
- package/dist/ifc-docs/assets/search.js +2 -1
- package/dist/ifc-docs/assets/style.css +1571 -1581
- package/dist/ifc-docs/classes/client.Client.html +2388 -99
- package/dist/ifc-docs/classes/client.WorkerClient.html +2164 -0
- package/dist/ifc-docs/classes/host.FrameRouterElement.html +850 -24
- package/dist/ifc-docs/classes/host.WorkerPool.html +879 -0
- package/dist/ifc-docs/documents/client-setup.html +579 -75
- package/dist/ifc-docs/functions/host.registerCustomElements.html +218 -3
- package/dist/ifc-docs/hierarchy.html +168 -1
- package/dist/ifc-docs/index.html +432 -31
- package/dist/ifc-docs/interfaces/client.ClientConfigOptions.html +331 -4
- package/dist/ifc-docs/interfaces/client.EventEmitter.html +752 -0
- package/dist/ifc-docs/interfaces/host.ClientConfig.html +399 -7
- package/dist/ifc-docs/interfaces/host.ClientRegistration.html +580 -24
- package/dist/ifc-docs/interfaces/host.RoutingMap.html +211 -4
- package/dist/ifc-docs/interfaces/host.WorkerAppData.html +388 -0
- package/dist/ifc-docs/interfaces/host.WorkerConfig.html +398 -0
- package/dist/ifc-docs/interfaces/host.WorkerItem.html +401 -0
- package/dist/ifc-docs/interfaces/host.WorkerRegistry.html +210 -0
- package/dist/ifc-docs/interfaces/messages.Breadcrumb.html +373 -0
- package/dist/ifc-docs/interfaces/messages.EnvData.html +510 -0
- package/dist/ifc-docs/interfaces/messages.KeyData.html +540 -0
- package/dist/ifc-docs/interfaces/messages.ModalRequest.html +381 -0
- package/dist/ifc-docs/interfaces/messages.NavRequest.html +390 -0
- package/dist/ifc-docs/interfaces/messages.Notification.html +435 -0
- package/dist/ifc-docs/interfaces/messages.PageMetadata.html +438 -0
- package/dist/ifc-docs/interfaces/messages.PromptOnLeave.html +390 -0
- package/dist/ifc-docs/interfaces/messages.Publication.html +443 -0
- package/dist/ifc-docs/modules/client.html +742 -2
- package/dist/ifc-docs/modules/host.html +647 -1
- package/dist/ifc-docs/modules/messages.html +462 -0
- package/dist/ifc-docs/modules.html +359 -1
- package/dist/ifc-docs/types/client.EnvDataHandler.html +239 -5
- package/dist/ifc-docs/types/client.EventHandler.html +247 -2
- package/dist/index.html +3 -3
- package/package.json +3 -4
- package/dist/assets/index-BLdxgMq2.css +0 -1
- package/dist/assets/index-IcxzuslN.js +0 -49
- package/dist/ifc-docs/classes/client.EventEmitter.html +0 -14
- package/dist/ifc-docs/interfaces/client.Breadcrumb.html +0 -6
- package/dist/ifc-docs/interfaces/client.EnvData.html +0 -11
- package/dist/ifc-docs/interfaces/client.KeyData.html +0 -12
- package/dist/ifc-docs/interfaces/client.ModalRequest.html +0 -6
- package/dist/ifc-docs/interfaces/client.NavRequest.html +0 -9
- package/dist/ifc-docs/interfaces/client.Notification.html +0 -9
- package/dist/ifc-docs/interfaces/client.PageMetadata.html +0 -8
- package/dist/ifc-docs/interfaces/client.PromptOnLeave.html +0 -9
- package/dist/ifc-docs/interfaces/client.Publication.html +0 -11
|
@@ -1 +1,647 @@
|
|
|
1
|
-
<!
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html class="default" lang="en" data-base="../">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta http-equiv="x-ua-compatible" content="IE=edge" />
|
|
6
|
+
<title>host | iframe-coordinator - v6.5.1</title>
|
|
7
|
+
<meta name="description" content="Documentation for iframe-coordinator" />
|
|
8
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
9
|
+
<link rel="stylesheet" href="../assets/style.css" />
|
|
10
|
+
<link rel="stylesheet" href="../assets/highlight.css" />
|
|
11
|
+
<script defer src="../assets/main.js"></script>
|
|
12
|
+
<script async src="../assets/icons.js" id="tsd-icons-script"></script>
|
|
13
|
+
<script async src="../assets/search.js" id="tsd-search-script"></script>
|
|
14
|
+
<script async src="../assets/navigation.js" id="tsd-nav-script"></script>
|
|
15
|
+
</head>
|
|
16
|
+
<body>
|
|
17
|
+
<script>
|
|
18
|
+
document.documentElement.dataset.theme =
|
|
19
|
+
localStorage.getItem("tsd-theme") || "os";
|
|
20
|
+
document.body.style.display = "none";
|
|
21
|
+
setTimeout(
|
|
22
|
+
() =>
|
|
23
|
+
window.app
|
|
24
|
+
? app.showPage()
|
|
25
|
+
: document.body.style.removeProperty("display"),
|
|
26
|
+
500,
|
|
27
|
+
);
|
|
28
|
+
</script>
|
|
29
|
+
<header class="tsd-page-toolbar">
|
|
30
|
+
<div class="tsd-toolbar-contents container">
|
|
31
|
+
<a href="../index.html" class="title">iframe-coordinator - v6.5.1</a>
|
|
32
|
+
<div id="tsd-toolbar-links"></div>
|
|
33
|
+
<button id="tsd-search-trigger" class="tsd-widget" aria-label="Search">
|
|
34
|
+
<svg
|
|
35
|
+
width="16"
|
|
36
|
+
height="16"
|
|
37
|
+
viewBox="0 0 16 16"
|
|
38
|
+
fill="none"
|
|
39
|
+
aria-hidden="true"
|
|
40
|
+
>
|
|
41
|
+
<use href="../assets/icons.svg#icon-search"></use>
|
|
42
|
+
</svg>
|
|
43
|
+
</button>
|
|
44
|
+
<dialog id="tsd-search" aria-label="Search">
|
|
45
|
+
<input
|
|
46
|
+
role="combobox"
|
|
47
|
+
id="tsd-search-input"
|
|
48
|
+
aria-controls="tsd-search-results"
|
|
49
|
+
aria-autocomplete="list"
|
|
50
|
+
aria-expanded="true"
|
|
51
|
+
autocapitalize="off"
|
|
52
|
+
autocomplete="off"
|
|
53
|
+
placeholder="Search the docs"
|
|
54
|
+
maxlength="100"
|
|
55
|
+
/>
|
|
56
|
+
<ul role="listbox" id="tsd-search-results"></ul>
|
|
57
|
+
<div id="tsd-search-status" aria-live="polite" aria-atomic="true">
|
|
58
|
+
<div>Preparing search index...</div>
|
|
59
|
+
</div>
|
|
60
|
+
</dialog>
|
|
61
|
+
<a
|
|
62
|
+
href="#"
|
|
63
|
+
class="tsd-widget menu"
|
|
64
|
+
id="tsd-toolbar-menu-trigger"
|
|
65
|
+
data-toggle="menu"
|
|
66
|
+
aria-label="Menu"
|
|
67
|
+
><svg
|
|
68
|
+
width="16"
|
|
69
|
+
height="16"
|
|
70
|
+
viewBox="0 0 16 16"
|
|
71
|
+
fill="none"
|
|
72
|
+
aria-hidden="true"
|
|
73
|
+
>
|
|
74
|
+
<use href="../assets/icons.svg#icon-menu"></use></svg
|
|
75
|
+
></a>
|
|
76
|
+
</div>
|
|
77
|
+
</header>
|
|
78
|
+
<div class="container container-main">
|
|
79
|
+
<div class="col-content">
|
|
80
|
+
<div class="tsd-page-title">
|
|
81
|
+
<ul class="tsd-breadcrumb" aria-label="Breadcrumb">
|
|
82
|
+
<li><a href="" aria-current="page">host</a></li>
|
|
83
|
+
</ul>
|
|
84
|
+
<h1>Module host</h1>
|
|
85
|
+
</div>
|
|
86
|
+
<details class="tsd-panel-group tsd-member-group tsd-accordion" open>
|
|
87
|
+
<summary class="tsd-accordion-summary" data-key="section-Classes">
|
|
88
|
+
<svg
|
|
89
|
+
width="20"
|
|
90
|
+
height="20"
|
|
91
|
+
viewBox="0 0 24 24"
|
|
92
|
+
fill="none"
|
|
93
|
+
aria-hidden="true"
|
|
94
|
+
>
|
|
95
|
+
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
96
|
+
</svg>
|
|
97
|
+
<h2>Classes</h2>
|
|
98
|
+
</summary>
|
|
99
|
+
<dl class="tsd-member-summaries">
|
|
100
|
+
<dt class="tsd-member-summary" id="framerouterelement">
|
|
101
|
+
<span class="tsd-member-summary-name"
|
|
102
|
+
><svg
|
|
103
|
+
class="tsd-kind-icon"
|
|
104
|
+
viewBox="0 0 24 24"
|
|
105
|
+
aria-label="Class"
|
|
106
|
+
>
|
|
107
|
+
<use href="../assets/icons.svg#icon-128"></use></svg
|
|
108
|
+
><a href="../classes/host.FrameRouterElement.html"
|
|
109
|
+
>FrameRouterElement</a
|
|
110
|
+
><a
|
|
111
|
+
href="#framerouterelement"
|
|
112
|
+
aria-label="Permalink"
|
|
113
|
+
class="tsd-anchor-icon"
|
|
114
|
+
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
115
|
+
<use href="../assets/icons.svg#icon-anchor"></use></svg></a
|
|
116
|
+
></span>
|
|
117
|
+
</dt>
|
|
118
|
+
<dd class="tsd-member-summary"></dd>
|
|
119
|
+
<dt class="tsd-member-summary" id="workerpool">
|
|
120
|
+
<span class="tsd-member-summary-name"
|
|
121
|
+
><svg
|
|
122
|
+
class="tsd-kind-icon"
|
|
123
|
+
viewBox="0 0 24 24"
|
|
124
|
+
aria-label="Class"
|
|
125
|
+
>
|
|
126
|
+
<use href="../assets/icons.svg#icon-128"></use></svg
|
|
127
|
+
><a href="../classes/host.WorkerPool.html">WorkerPool</a
|
|
128
|
+
><a
|
|
129
|
+
href="#workerpool"
|
|
130
|
+
aria-label="Permalink"
|
|
131
|
+
class="tsd-anchor-icon"
|
|
132
|
+
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
133
|
+
<use href="../assets/icons.svg#icon-anchor"></use></svg></a
|
|
134
|
+
></span>
|
|
135
|
+
</dt>
|
|
136
|
+
<dd class="tsd-member-summary"></dd>
|
|
137
|
+
</dl>
|
|
138
|
+
</details>
|
|
139
|
+
<details class="tsd-panel-group tsd-member-group tsd-accordion" open>
|
|
140
|
+
<summary class="tsd-accordion-summary" data-key="section-Interfaces">
|
|
141
|
+
<svg
|
|
142
|
+
width="20"
|
|
143
|
+
height="20"
|
|
144
|
+
viewBox="0 0 24 24"
|
|
145
|
+
fill="none"
|
|
146
|
+
aria-hidden="true"
|
|
147
|
+
>
|
|
148
|
+
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
149
|
+
</svg>
|
|
150
|
+
<h2>Interfaces</h2>
|
|
151
|
+
</summary>
|
|
152
|
+
<dl class="tsd-member-summaries">
|
|
153
|
+
<dt class="tsd-member-summary" id="clientconfig">
|
|
154
|
+
<span class="tsd-member-summary-name"
|
|
155
|
+
><svg
|
|
156
|
+
class="tsd-kind-icon"
|
|
157
|
+
viewBox="0 0 24 24"
|
|
158
|
+
aria-label="Interface"
|
|
159
|
+
>
|
|
160
|
+
<use href="../assets/icons.svg#icon-256"></use></svg
|
|
161
|
+
><a href="../interfaces/host.ClientConfig.html">ClientConfig</a
|
|
162
|
+
><a
|
|
163
|
+
href="#clientconfig"
|
|
164
|
+
aria-label="Permalink"
|
|
165
|
+
class="tsd-anchor-icon"
|
|
166
|
+
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
167
|
+
<use href="../assets/icons.svg#icon-anchor"></use></svg></a
|
|
168
|
+
></span>
|
|
169
|
+
</dt>
|
|
170
|
+
<dd class="tsd-member-summary"></dd>
|
|
171
|
+
<dt class="tsd-member-summary" id="clientregistration">
|
|
172
|
+
<span class="tsd-member-summary-name"
|
|
173
|
+
><svg
|
|
174
|
+
class="tsd-kind-icon"
|
|
175
|
+
viewBox="0 0 24 24"
|
|
176
|
+
aria-label="Interface"
|
|
177
|
+
>
|
|
178
|
+
<use href="../assets/icons.svg#icon-256"></use></svg
|
|
179
|
+
><a href="../interfaces/host.ClientRegistration.html"
|
|
180
|
+
>ClientRegistration</a
|
|
181
|
+
><a
|
|
182
|
+
href="#clientregistration"
|
|
183
|
+
aria-label="Permalink"
|
|
184
|
+
class="tsd-anchor-icon"
|
|
185
|
+
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
186
|
+
<use href="../assets/icons.svg#icon-anchor"></use></svg></a
|
|
187
|
+
></span>
|
|
188
|
+
</dt>
|
|
189
|
+
<dd class="tsd-member-summary"></dd>
|
|
190
|
+
<dt class="tsd-member-summary" id="routingmap">
|
|
191
|
+
<span class="tsd-member-summary-name"
|
|
192
|
+
><svg
|
|
193
|
+
class="tsd-kind-icon"
|
|
194
|
+
viewBox="0 0 24 24"
|
|
195
|
+
aria-label="Interface"
|
|
196
|
+
>
|
|
197
|
+
<use href="../assets/icons.svg#icon-256"></use></svg
|
|
198
|
+
><a href="../interfaces/host.RoutingMap.html">RoutingMap</a
|
|
199
|
+
><a
|
|
200
|
+
href="#routingmap"
|
|
201
|
+
aria-label="Permalink"
|
|
202
|
+
class="tsd-anchor-icon"
|
|
203
|
+
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
204
|
+
<use href="../assets/icons.svg#icon-anchor"></use></svg></a
|
|
205
|
+
></span>
|
|
206
|
+
</dt>
|
|
207
|
+
<dd class="tsd-member-summary"></dd>
|
|
208
|
+
<dt class="tsd-member-summary" id="workerappdata">
|
|
209
|
+
<span class="tsd-member-summary-name"
|
|
210
|
+
><svg
|
|
211
|
+
class="tsd-kind-icon"
|
|
212
|
+
viewBox="0 0 24 24"
|
|
213
|
+
aria-label="Interface"
|
|
214
|
+
>
|
|
215
|
+
<use href="../assets/icons.svg#icon-256"></use></svg
|
|
216
|
+
><a href="../interfaces/host.WorkerAppData.html"
|
|
217
|
+
>WorkerAppData</a
|
|
218
|
+
><a
|
|
219
|
+
href="#workerappdata"
|
|
220
|
+
aria-label="Permalink"
|
|
221
|
+
class="tsd-anchor-icon"
|
|
222
|
+
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
223
|
+
<use href="../assets/icons.svg#icon-anchor"></use></svg></a
|
|
224
|
+
></span>
|
|
225
|
+
</dt>
|
|
226
|
+
<dd class="tsd-member-summary"></dd>
|
|
227
|
+
<dt class="tsd-member-summary" id="workerconfig">
|
|
228
|
+
<span class="tsd-member-summary-name"
|
|
229
|
+
><svg
|
|
230
|
+
class="tsd-kind-icon"
|
|
231
|
+
viewBox="0 0 24 24"
|
|
232
|
+
aria-label="Interface"
|
|
233
|
+
>
|
|
234
|
+
<use href="../assets/icons.svg#icon-256"></use></svg
|
|
235
|
+
><a href="../interfaces/host.WorkerConfig.html">WorkerConfig</a
|
|
236
|
+
><a
|
|
237
|
+
href="#workerconfig"
|
|
238
|
+
aria-label="Permalink"
|
|
239
|
+
class="tsd-anchor-icon"
|
|
240
|
+
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
241
|
+
<use href="../assets/icons.svg#icon-anchor"></use></svg></a
|
|
242
|
+
></span>
|
|
243
|
+
</dt>
|
|
244
|
+
<dd class="tsd-member-summary"></dd>
|
|
245
|
+
<dt class="tsd-member-summary" id="workeritem">
|
|
246
|
+
<span class="tsd-member-summary-name"
|
|
247
|
+
><svg
|
|
248
|
+
class="tsd-kind-icon"
|
|
249
|
+
viewBox="0 0 24 24"
|
|
250
|
+
aria-label="Interface"
|
|
251
|
+
>
|
|
252
|
+
<use href="../assets/icons.svg#icon-256"></use></svg
|
|
253
|
+
><a href="../interfaces/host.WorkerItem.html">WorkerItem</a
|
|
254
|
+
><a
|
|
255
|
+
href="#workeritem"
|
|
256
|
+
aria-label="Permalink"
|
|
257
|
+
class="tsd-anchor-icon"
|
|
258
|
+
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
259
|
+
<use href="../assets/icons.svg#icon-anchor"></use></svg></a
|
|
260
|
+
></span>
|
|
261
|
+
</dt>
|
|
262
|
+
<dd class="tsd-member-summary"></dd>
|
|
263
|
+
<dt class="tsd-member-summary" id="workerregistry">
|
|
264
|
+
<span class="tsd-member-summary-name"
|
|
265
|
+
><svg
|
|
266
|
+
class="tsd-kind-icon"
|
|
267
|
+
viewBox="0 0 24 24"
|
|
268
|
+
aria-label="Interface"
|
|
269
|
+
>
|
|
270
|
+
<use href="../assets/icons.svg#icon-256"></use></svg
|
|
271
|
+
><a href="../interfaces/host.WorkerRegistry.html"
|
|
272
|
+
>WorkerRegistry</a
|
|
273
|
+
><a
|
|
274
|
+
href="#workerregistry"
|
|
275
|
+
aria-label="Permalink"
|
|
276
|
+
class="tsd-anchor-icon"
|
|
277
|
+
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
278
|
+
<use href="../assets/icons.svg#icon-anchor"></use></svg></a
|
|
279
|
+
></span>
|
|
280
|
+
</dt>
|
|
281
|
+
<dd class="tsd-member-summary"></dd>
|
|
282
|
+
</dl>
|
|
283
|
+
</details>
|
|
284
|
+
<details class="tsd-panel-group tsd-member-group tsd-accordion" open>
|
|
285
|
+
<summary class="tsd-accordion-summary" data-key="section-Functions">
|
|
286
|
+
<svg
|
|
287
|
+
width="20"
|
|
288
|
+
height="20"
|
|
289
|
+
viewBox="0 0 24 24"
|
|
290
|
+
fill="none"
|
|
291
|
+
aria-hidden="true"
|
|
292
|
+
>
|
|
293
|
+
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
294
|
+
</svg>
|
|
295
|
+
<h2>Functions</h2>
|
|
296
|
+
</summary>
|
|
297
|
+
<dl class="tsd-member-summaries">
|
|
298
|
+
<dt class="tsd-member-summary" id="registercustomelements">
|
|
299
|
+
<span class="tsd-member-summary-name"
|
|
300
|
+
><svg
|
|
301
|
+
class="tsd-kind-icon"
|
|
302
|
+
viewBox="0 0 24 24"
|
|
303
|
+
aria-label="Function"
|
|
304
|
+
>
|
|
305
|
+
<use href="../assets/icons.svg#icon-64"></use></svg
|
|
306
|
+
><a href="../functions/host.registerCustomElements.html"
|
|
307
|
+
>registerCustomElements</a
|
|
308
|
+
><a
|
|
309
|
+
href="#registercustomelements"
|
|
310
|
+
aria-label="Permalink"
|
|
311
|
+
class="tsd-anchor-icon"
|
|
312
|
+
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
313
|
+
<use href="../assets/icons.svg#icon-anchor"></use></svg></a
|
|
314
|
+
></span>
|
|
315
|
+
</dt>
|
|
316
|
+
<dd class="tsd-member-summary"></dd>
|
|
317
|
+
</dl>
|
|
318
|
+
</details>
|
|
319
|
+
<details class="tsd-panel-group tsd-member-group tsd-accordion" open>
|
|
320
|
+
<summary class="tsd-accordion-summary" data-key="section-References">
|
|
321
|
+
<svg
|
|
322
|
+
width="20"
|
|
323
|
+
height="20"
|
|
324
|
+
viewBox="0 0 24 24"
|
|
325
|
+
fill="none"
|
|
326
|
+
aria-hidden="true"
|
|
327
|
+
>
|
|
328
|
+
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
329
|
+
</svg>
|
|
330
|
+
<h2>References</h2>
|
|
331
|
+
</summary>
|
|
332
|
+
<dl class="tsd-member-summaries">
|
|
333
|
+
<dt class="tsd-member-summary" id="envdata">
|
|
334
|
+
<span class="tsd-member-summary-name"
|
|
335
|
+
><svg
|
|
336
|
+
class="tsd-kind-icon"
|
|
337
|
+
viewBox="0 0 24 24"
|
|
338
|
+
aria-label="Interface"
|
|
339
|
+
>
|
|
340
|
+
<use href="../assets/icons.svg#icon-256"></use></svg
|
|
341
|
+
><span>EnvData</span><span> → </span
|
|
342
|
+
><a href="../interfaces/messages.EnvData.html">EnvData</a
|
|
343
|
+
><a
|
|
344
|
+
href="#envdata"
|
|
345
|
+
aria-label="Permalink"
|
|
346
|
+
class="tsd-anchor-icon"
|
|
347
|
+
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
348
|
+
<use href="../assets/icons.svg#icon-anchor"></use></svg></a
|
|
349
|
+
></span>
|
|
350
|
+
</dt>
|
|
351
|
+
<dd class="tsd-member-summary"></dd>
|
|
352
|
+
<dt class="tsd-member-summary" id="keydata">
|
|
353
|
+
<span class="tsd-member-summary-name"
|
|
354
|
+
><svg
|
|
355
|
+
class="tsd-kind-icon"
|
|
356
|
+
viewBox="0 0 24 24"
|
|
357
|
+
aria-label="Interface"
|
|
358
|
+
>
|
|
359
|
+
<use href="../assets/icons.svg#icon-256"></use></svg
|
|
360
|
+
><span>KeyData</span><span> → </span
|
|
361
|
+
><a href="../interfaces/messages.KeyData.html">KeyData</a
|
|
362
|
+
><a
|
|
363
|
+
href="#keydata"
|
|
364
|
+
aria-label="Permalink"
|
|
365
|
+
class="tsd-anchor-icon"
|
|
366
|
+
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
367
|
+
<use href="../assets/icons.svg#icon-anchor"></use></svg></a
|
|
368
|
+
></span>
|
|
369
|
+
</dt>
|
|
370
|
+
<dd class="tsd-member-summary"></dd>
|
|
371
|
+
</dl>
|
|
372
|
+
</details>
|
|
373
|
+
</div>
|
|
374
|
+
<div class="col-sidebar">
|
|
375
|
+
<div class="page-menu">
|
|
376
|
+
<div class="tsd-navigation settings">
|
|
377
|
+
<details class="tsd-accordion">
|
|
378
|
+
<summary class="tsd-accordion-summary">
|
|
379
|
+
<svg
|
|
380
|
+
width="20"
|
|
381
|
+
height="20"
|
|
382
|
+
viewBox="0 0 24 24"
|
|
383
|
+
fill="none"
|
|
384
|
+
aria-hidden="true"
|
|
385
|
+
>
|
|
386
|
+
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
387
|
+
</svg>
|
|
388
|
+
<h3>Settings</h3>
|
|
389
|
+
</summary>
|
|
390
|
+
<div class="tsd-accordion-details">
|
|
391
|
+
<div class="tsd-filter-visibility">
|
|
392
|
+
<span class="settings-label">Member Visibility</span>
|
|
393
|
+
<ul id="tsd-filter-options">
|
|
394
|
+
<li class="tsd-filter-item">
|
|
395
|
+
<label class="tsd-filter-input"
|
|
396
|
+
><input
|
|
397
|
+
type="checkbox"
|
|
398
|
+
id="tsd-filter-inherited"
|
|
399
|
+
name="inherited"
|
|
400
|
+
checked
|
|
401
|
+
/><svg
|
|
402
|
+
width="32"
|
|
403
|
+
height="32"
|
|
404
|
+
viewBox="0 0 32 32"
|
|
405
|
+
aria-hidden="true"
|
|
406
|
+
>
|
|
407
|
+
<rect
|
|
408
|
+
class="tsd-checkbox-background"
|
|
409
|
+
width="30"
|
|
410
|
+
height="30"
|
|
411
|
+
x="1"
|
|
412
|
+
y="1"
|
|
413
|
+
rx="6"
|
|
414
|
+
fill="none"
|
|
415
|
+
></rect>
|
|
416
|
+
<path
|
|
417
|
+
class="tsd-checkbox-checkmark"
|
|
418
|
+
d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25"
|
|
419
|
+
stroke="none"
|
|
420
|
+
stroke-width="3.5"
|
|
421
|
+
stroke-linejoin="round"
|
|
422
|
+
fill="none"
|
|
423
|
+
></path></svg
|
|
424
|
+
><span>Inherited</span></label
|
|
425
|
+
>
|
|
426
|
+
</li>
|
|
427
|
+
</ul>
|
|
428
|
+
</div>
|
|
429
|
+
<div class="tsd-theme-toggle">
|
|
430
|
+
<label class="settings-label" for="tsd-theme">Theme</label
|
|
431
|
+
><select id="tsd-theme">
|
|
432
|
+
<option value="os">OS</option>
|
|
433
|
+
<option value="light">Light</option>
|
|
434
|
+
<option value="dark">Dark</option>
|
|
435
|
+
</select>
|
|
436
|
+
</div>
|
|
437
|
+
</div>
|
|
438
|
+
</details>
|
|
439
|
+
</div>
|
|
440
|
+
<details open class="tsd-accordion tsd-page-navigation">
|
|
441
|
+
<summary class="tsd-accordion-summary">
|
|
442
|
+
<svg
|
|
443
|
+
width="20"
|
|
444
|
+
height="20"
|
|
445
|
+
viewBox="0 0 24 24"
|
|
446
|
+
fill="none"
|
|
447
|
+
aria-hidden="true"
|
|
448
|
+
>
|
|
449
|
+
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
450
|
+
</svg>
|
|
451
|
+
<h3>On This Page</h3>
|
|
452
|
+
</summary>
|
|
453
|
+
<div class="tsd-accordion-details">
|
|
454
|
+
<details open class="tsd-accordion tsd-page-navigation-section">
|
|
455
|
+
<summary
|
|
456
|
+
class="tsd-accordion-summary"
|
|
457
|
+
data-key="section-Classes"
|
|
458
|
+
>
|
|
459
|
+
<svg
|
|
460
|
+
width="20"
|
|
461
|
+
height="20"
|
|
462
|
+
viewBox="0 0 24 24"
|
|
463
|
+
fill="none"
|
|
464
|
+
aria-hidden="true"
|
|
465
|
+
>
|
|
466
|
+
<use href="../assets/icons.svg#icon-chevronDown"></use></svg
|
|
467
|
+
>Classes
|
|
468
|
+
</summary>
|
|
469
|
+
<div>
|
|
470
|
+
<a href="#framerouterelement"
|
|
471
|
+
><svg
|
|
472
|
+
class="tsd-kind-icon"
|
|
473
|
+
viewBox="0 0 24 24"
|
|
474
|
+
aria-label="Class"
|
|
475
|
+
>
|
|
476
|
+
<use href="../assets/icons.svg#icon-128"></use></svg
|
|
477
|
+
><span>Frame<wbr />Router<wbr />Element</span></a
|
|
478
|
+
><a href="#workerpool"
|
|
479
|
+
><svg
|
|
480
|
+
class="tsd-kind-icon"
|
|
481
|
+
viewBox="0 0 24 24"
|
|
482
|
+
aria-label="Class"
|
|
483
|
+
>
|
|
484
|
+
<use href="../assets/icons.svg#icon-128"></use></svg
|
|
485
|
+
><span>Worker<wbr />Pool</span></a
|
|
486
|
+
>
|
|
487
|
+
</div>
|
|
488
|
+
</details>
|
|
489
|
+
<details open class="tsd-accordion tsd-page-navigation-section">
|
|
490
|
+
<summary
|
|
491
|
+
class="tsd-accordion-summary"
|
|
492
|
+
data-key="section-Interfaces"
|
|
493
|
+
>
|
|
494
|
+
<svg
|
|
495
|
+
width="20"
|
|
496
|
+
height="20"
|
|
497
|
+
viewBox="0 0 24 24"
|
|
498
|
+
fill="none"
|
|
499
|
+
aria-hidden="true"
|
|
500
|
+
>
|
|
501
|
+
<use href="../assets/icons.svg#icon-chevronDown"></use></svg
|
|
502
|
+
>Interfaces
|
|
503
|
+
</summary>
|
|
504
|
+
<div>
|
|
505
|
+
<a href="#clientconfig"
|
|
506
|
+
><svg
|
|
507
|
+
class="tsd-kind-icon"
|
|
508
|
+
viewBox="0 0 24 24"
|
|
509
|
+
aria-label="Interface"
|
|
510
|
+
>
|
|
511
|
+
<use href="../assets/icons.svg#icon-256"></use></svg
|
|
512
|
+
><span>Client<wbr />Config</span></a
|
|
513
|
+
><a href="#clientregistration"
|
|
514
|
+
><svg
|
|
515
|
+
class="tsd-kind-icon"
|
|
516
|
+
viewBox="0 0 24 24"
|
|
517
|
+
aria-label="Interface"
|
|
518
|
+
>
|
|
519
|
+
<use href="../assets/icons.svg#icon-256"></use></svg
|
|
520
|
+
><span>Client<wbr />Registration</span></a
|
|
521
|
+
><a href="#routingmap"
|
|
522
|
+
><svg
|
|
523
|
+
class="tsd-kind-icon"
|
|
524
|
+
viewBox="0 0 24 24"
|
|
525
|
+
aria-label="Interface"
|
|
526
|
+
>
|
|
527
|
+
<use href="../assets/icons.svg#icon-256"></use></svg
|
|
528
|
+
><span>Routing<wbr />Map</span></a
|
|
529
|
+
><a href="#workerappdata"
|
|
530
|
+
><svg
|
|
531
|
+
class="tsd-kind-icon"
|
|
532
|
+
viewBox="0 0 24 24"
|
|
533
|
+
aria-label="Interface"
|
|
534
|
+
>
|
|
535
|
+
<use href="../assets/icons.svg#icon-256"></use></svg
|
|
536
|
+
><span>Worker<wbr />App<wbr />Data</span></a
|
|
537
|
+
><a href="#workerconfig"
|
|
538
|
+
><svg
|
|
539
|
+
class="tsd-kind-icon"
|
|
540
|
+
viewBox="0 0 24 24"
|
|
541
|
+
aria-label="Interface"
|
|
542
|
+
>
|
|
543
|
+
<use href="../assets/icons.svg#icon-256"></use></svg
|
|
544
|
+
><span>Worker<wbr />Config</span></a
|
|
545
|
+
><a href="#workeritem"
|
|
546
|
+
><svg
|
|
547
|
+
class="tsd-kind-icon"
|
|
548
|
+
viewBox="0 0 24 24"
|
|
549
|
+
aria-label="Interface"
|
|
550
|
+
>
|
|
551
|
+
<use href="../assets/icons.svg#icon-256"></use></svg
|
|
552
|
+
><span>Worker<wbr />Item</span></a
|
|
553
|
+
><a href="#workerregistry"
|
|
554
|
+
><svg
|
|
555
|
+
class="tsd-kind-icon"
|
|
556
|
+
viewBox="0 0 24 24"
|
|
557
|
+
aria-label="Interface"
|
|
558
|
+
>
|
|
559
|
+
<use href="../assets/icons.svg#icon-256"></use></svg
|
|
560
|
+
><span>Worker<wbr />Registry</span></a
|
|
561
|
+
>
|
|
562
|
+
</div>
|
|
563
|
+
</details>
|
|
564
|
+
<details open class="tsd-accordion tsd-page-navigation-section">
|
|
565
|
+
<summary
|
|
566
|
+
class="tsd-accordion-summary"
|
|
567
|
+
data-key="section-Functions"
|
|
568
|
+
>
|
|
569
|
+
<svg
|
|
570
|
+
width="20"
|
|
571
|
+
height="20"
|
|
572
|
+
viewBox="0 0 24 24"
|
|
573
|
+
fill="none"
|
|
574
|
+
aria-hidden="true"
|
|
575
|
+
>
|
|
576
|
+
<use href="../assets/icons.svg#icon-chevronDown"></use></svg
|
|
577
|
+
>Functions
|
|
578
|
+
</summary>
|
|
579
|
+
<div>
|
|
580
|
+
<a href="#registercustomelements"
|
|
581
|
+
><svg
|
|
582
|
+
class="tsd-kind-icon"
|
|
583
|
+
viewBox="0 0 24 24"
|
|
584
|
+
aria-label="Function"
|
|
585
|
+
>
|
|
586
|
+
<use href="../assets/icons.svg#icon-64"></use></svg
|
|
587
|
+
><span>register<wbr />Custom<wbr />Elements</span></a
|
|
588
|
+
>
|
|
589
|
+
</div>
|
|
590
|
+
</details>
|
|
591
|
+
<details open class="tsd-accordion tsd-page-navigation-section">
|
|
592
|
+
<summary
|
|
593
|
+
class="tsd-accordion-summary"
|
|
594
|
+
data-key="section-References"
|
|
595
|
+
>
|
|
596
|
+
<svg
|
|
597
|
+
width="20"
|
|
598
|
+
height="20"
|
|
599
|
+
viewBox="0 0 24 24"
|
|
600
|
+
fill="none"
|
|
601
|
+
aria-hidden="true"
|
|
602
|
+
>
|
|
603
|
+
<use href="../assets/icons.svg#icon-chevronDown"></use></svg
|
|
604
|
+
>References
|
|
605
|
+
</summary>
|
|
606
|
+
<div>
|
|
607
|
+
<a href="#envdata"
|
|
608
|
+
><svg
|
|
609
|
+
class="tsd-kind-icon"
|
|
610
|
+
viewBox="0 0 24 24"
|
|
611
|
+
aria-label="Reference"
|
|
612
|
+
>
|
|
613
|
+
<use href="../assets/icons.svg#icon-4194304"></use></svg
|
|
614
|
+
><span>Env<wbr />Data</span></a
|
|
615
|
+
><a href="#keydata"
|
|
616
|
+
><svg
|
|
617
|
+
class="tsd-kind-icon"
|
|
618
|
+
viewBox="0 0 24 24"
|
|
619
|
+
aria-label="Reference"
|
|
620
|
+
>
|
|
621
|
+
<use href="../assets/icons.svg#icon-4194304"></use></svg
|
|
622
|
+
><span>Key<wbr />Data</span></a
|
|
623
|
+
>
|
|
624
|
+
</div>
|
|
625
|
+
</details>
|
|
626
|
+
</div>
|
|
627
|
+
</details>
|
|
628
|
+
</div>
|
|
629
|
+
<div class="site-menu">
|
|
630
|
+
<nav class="tsd-navigation">
|
|
631
|
+
<a href="../modules.html">iframe-coordinator - v6.5.1</a>
|
|
632
|
+
<ul class="tsd-small-nested-navigation" id="tsd-nav-container">
|
|
633
|
+
<li>Loading...</li>
|
|
634
|
+
</ul>
|
|
635
|
+
</nav>
|
|
636
|
+
</div>
|
|
637
|
+
</div>
|
|
638
|
+
</div>
|
|
639
|
+
<footer>
|
|
640
|
+
<p class="tsd-generator">
|
|
641
|
+
Generated using
|
|
642
|
+
<a href="https://typedoc.org/" target="_blank">TypeDoc</a>
|
|
643
|
+
</p>
|
|
644
|
+
</footer>
|
|
645
|
+
<div class="overlay"></div>
|
|
646
|
+
</body>
|
|
647
|
+
</html>
|