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,3 +1,218 @@
|
|
|
1
|
-
<!
|
|
2
|
-
|
|
3
|
-
|
|
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>registerCustomElements | 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="../modules/host.html">host</a></li>
|
|
83
|
+
<li><a href="" aria-current="page">registerCustomElements</a></li>
|
|
84
|
+
</ul>
|
|
85
|
+
<h1>Function registerCustomElements</h1>
|
|
86
|
+
</div>
|
|
87
|
+
<section class="tsd-panel">
|
|
88
|
+
<ul class="tsd-signatures">
|
|
89
|
+
<li class="">
|
|
90
|
+
<div
|
|
91
|
+
class="tsd-signature tsd-anchor-link"
|
|
92
|
+
id="registercustomelements"
|
|
93
|
+
>
|
|
94
|
+
<span class="tsd-kind-call-signature"
|
|
95
|
+
>registerCustomElements</span
|
|
96
|
+
><span class="tsd-signature-symbol">()</span
|
|
97
|
+
><span class="tsd-signature-symbol">:</span>
|
|
98
|
+
<span class="tsd-signature-type">void</span
|
|
99
|
+
><a
|
|
100
|
+
href="#registercustomelements"
|
|
101
|
+
aria-label="Permalink"
|
|
102
|
+
class="tsd-anchor-icon"
|
|
103
|
+
><svg viewBox="0 0 24 24" aria-hidden="true">
|
|
104
|
+
<use href="../assets/icons.svg#icon-anchor"></use></svg
|
|
105
|
+
></a>
|
|
106
|
+
</div>
|
|
107
|
+
<div class="tsd-description">
|
|
108
|
+
<div class="tsd-comment tsd-typography">
|
|
109
|
+
<p>
|
|
110
|
+
Registers custom elements used by the host application when
|
|
111
|
+
hosting the coordinated client UI fragments.
|
|
112
|
+
</p>
|
|
113
|
+
</div>
|
|
114
|
+
<h4 class="tsd-returns-title">
|
|
115
|
+
Returns <span class="tsd-signature-type">void</span>
|
|
116
|
+
</h4>
|
|
117
|
+
<aside class="tsd-sources">
|
|
118
|
+
<ul>
|
|
119
|
+
<li>
|
|
120
|
+
Defined in
|
|
121
|
+
<a
|
|
122
|
+
href="https://github.com/purecloudlabs/iframe-coordinator/blob/c66985bfb186111ea5faaed3c49c76f23c1e0800/packages/iframe-coordinator/src/host.ts#L17"
|
|
123
|
+
>host.ts:17</a
|
|
124
|
+
>
|
|
125
|
+
</li>
|
|
126
|
+
</ul>
|
|
127
|
+
</aside>
|
|
128
|
+
</div>
|
|
129
|
+
</li>
|
|
130
|
+
</ul>
|
|
131
|
+
</section>
|
|
132
|
+
</div>
|
|
133
|
+
<div class="col-sidebar">
|
|
134
|
+
<div class="page-menu">
|
|
135
|
+
<div class="tsd-navigation settings">
|
|
136
|
+
<details class="tsd-accordion">
|
|
137
|
+
<summary class="tsd-accordion-summary">
|
|
138
|
+
<svg
|
|
139
|
+
width="20"
|
|
140
|
+
height="20"
|
|
141
|
+
viewBox="0 0 24 24"
|
|
142
|
+
fill="none"
|
|
143
|
+
aria-hidden="true"
|
|
144
|
+
>
|
|
145
|
+
<use href="../assets/icons.svg#icon-chevronDown"></use>
|
|
146
|
+
</svg>
|
|
147
|
+
<h3>Settings</h3>
|
|
148
|
+
</summary>
|
|
149
|
+
<div class="tsd-accordion-details">
|
|
150
|
+
<div class="tsd-filter-visibility">
|
|
151
|
+
<span class="settings-label">Member Visibility</span>
|
|
152
|
+
<ul id="tsd-filter-options">
|
|
153
|
+
<li class="tsd-filter-item">
|
|
154
|
+
<label class="tsd-filter-input"
|
|
155
|
+
><input
|
|
156
|
+
type="checkbox"
|
|
157
|
+
id="tsd-filter-inherited"
|
|
158
|
+
name="inherited"
|
|
159
|
+
checked
|
|
160
|
+
/><svg
|
|
161
|
+
width="32"
|
|
162
|
+
height="32"
|
|
163
|
+
viewBox="0 0 32 32"
|
|
164
|
+
aria-hidden="true"
|
|
165
|
+
>
|
|
166
|
+
<rect
|
|
167
|
+
class="tsd-checkbox-background"
|
|
168
|
+
width="30"
|
|
169
|
+
height="30"
|
|
170
|
+
x="1"
|
|
171
|
+
y="1"
|
|
172
|
+
rx="6"
|
|
173
|
+
fill="none"
|
|
174
|
+
></rect>
|
|
175
|
+
<path
|
|
176
|
+
class="tsd-checkbox-checkmark"
|
|
177
|
+
d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25"
|
|
178
|
+
stroke="none"
|
|
179
|
+
stroke-width="3.5"
|
|
180
|
+
stroke-linejoin="round"
|
|
181
|
+
fill="none"
|
|
182
|
+
></path></svg
|
|
183
|
+
><span>Inherited</span></label
|
|
184
|
+
>
|
|
185
|
+
</li>
|
|
186
|
+
</ul>
|
|
187
|
+
</div>
|
|
188
|
+
<div class="tsd-theme-toggle">
|
|
189
|
+
<label class="settings-label" for="tsd-theme">Theme</label
|
|
190
|
+
><select id="tsd-theme">
|
|
191
|
+
<option value="os">OS</option>
|
|
192
|
+
<option value="light">Light</option>
|
|
193
|
+
<option value="dark">Dark</option>
|
|
194
|
+
</select>
|
|
195
|
+
</div>
|
|
196
|
+
</div>
|
|
197
|
+
</details>
|
|
198
|
+
</div>
|
|
199
|
+
</div>
|
|
200
|
+
<div class="site-menu">
|
|
201
|
+
<nav class="tsd-navigation">
|
|
202
|
+
<a href="../modules.html">iframe-coordinator - v6.5.1</a>
|
|
203
|
+
<ul class="tsd-small-nested-navigation" id="tsd-nav-container">
|
|
204
|
+
<li>Loading...</li>
|
|
205
|
+
</ul>
|
|
206
|
+
</nav>
|
|
207
|
+
</div>
|
|
208
|
+
</div>
|
|
209
|
+
</div>
|
|
210
|
+
<footer>
|
|
211
|
+
<p class="tsd-generator">
|
|
212
|
+
Generated using
|
|
213
|
+
<a href="https://typedoc.org/" target="_blank">TypeDoc</a>
|
|
214
|
+
</p>
|
|
215
|
+
</footer>
|
|
216
|
+
<div class="overlay"></div>
|
|
217
|
+
</body>
|
|
218
|
+
</html>
|
|
@@ -1 +1,168 @@
|
|
|
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>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"><h1>iframe-coordinator - v6.5.1</h1></div>
|
|
81
|
+
<h2>Hierarchy Summary</h2>
|
|
82
|
+
</div>
|
|
83
|
+
<div class="col-sidebar">
|
|
84
|
+
<div class="page-menu">
|
|
85
|
+
<div class="tsd-navigation settings">
|
|
86
|
+
<details class="tsd-accordion">
|
|
87
|
+
<summary class="tsd-accordion-summary">
|
|
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
|
+
<h3>Settings</h3>
|
|
98
|
+
</summary>
|
|
99
|
+
<div class="tsd-accordion-details">
|
|
100
|
+
<div class="tsd-filter-visibility">
|
|
101
|
+
<span class="settings-label">Member Visibility</span>
|
|
102
|
+
<ul id="tsd-filter-options">
|
|
103
|
+
<li class="tsd-filter-item">
|
|
104
|
+
<label class="tsd-filter-input"
|
|
105
|
+
><input
|
|
106
|
+
type="checkbox"
|
|
107
|
+
id="tsd-filter-inherited"
|
|
108
|
+
name="inherited"
|
|
109
|
+
checked
|
|
110
|
+
/><svg
|
|
111
|
+
width="32"
|
|
112
|
+
height="32"
|
|
113
|
+
viewBox="0 0 32 32"
|
|
114
|
+
aria-hidden="true"
|
|
115
|
+
>
|
|
116
|
+
<rect
|
|
117
|
+
class="tsd-checkbox-background"
|
|
118
|
+
width="30"
|
|
119
|
+
height="30"
|
|
120
|
+
x="1"
|
|
121
|
+
y="1"
|
|
122
|
+
rx="6"
|
|
123
|
+
fill="none"
|
|
124
|
+
></rect>
|
|
125
|
+
<path
|
|
126
|
+
class="tsd-checkbox-checkmark"
|
|
127
|
+
d="M8.35422 16.8214L13.2143 21.75L24.6458 10.25"
|
|
128
|
+
stroke="none"
|
|
129
|
+
stroke-width="3.5"
|
|
130
|
+
stroke-linejoin="round"
|
|
131
|
+
fill="none"
|
|
132
|
+
></path></svg
|
|
133
|
+
><span>Inherited</span></label
|
|
134
|
+
>
|
|
135
|
+
</li>
|
|
136
|
+
</ul>
|
|
137
|
+
</div>
|
|
138
|
+
<div class="tsd-theme-toggle">
|
|
139
|
+
<label class="settings-label" for="tsd-theme">Theme</label
|
|
140
|
+
><select id="tsd-theme">
|
|
141
|
+
<option value="os">OS</option>
|
|
142
|
+
<option value="light">Light</option>
|
|
143
|
+
<option value="dark">Dark</option>
|
|
144
|
+
</select>
|
|
145
|
+
</div>
|
|
146
|
+
</div>
|
|
147
|
+
</details>
|
|
148
|
+
</div>
|
|
149
|
+
</div>
|
|
150
|
+
<div class="site-menu">
|
|
151
|
+
<nav class="tsd-navigation">
|
|
152
|
+
<a href="modules.html">iframe-coordinator - v6.5.1</a>
|
|
153
|
+
<ul class="tsd-small-nested-navigation" id="tsd-nav-container">
|
|
154
|
+
<li>Loading...</li>
|
|
155
|
+
</ul>
|
|
156
|
+
</nav>
|
|
157
|
+
</div>
|
|
158
|
+
</div>
|
|
159
|
+
</div>
|
|
160
|
+
<footer>
|
|
161
|
+
<p class="tsd-generator">
|
|
162
|
+
Generated using
|
|
163
|
+
<a href="https://typedoc.org/" target="_blank">TypeDoc</a>
|
|
164
|
+
</p>
|
|
165
|
+
</footer>
|
|
166
|
+
<div class="overlay"></div>
|
|
167
|
+
</body>
|
|
168
|
+
</html>
|