@capgo/inappbrowser 6.0.0 → 6.0.3
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/README.md +184 -44
- package/android/build.gradle +6 -6
- package/android/src/main/java/ee/forgr/capacitor_inappbrowser/InAppBrowserPlugin.java +230 -34
- package/android/src/main/java/ee/forgr/capacitor_inappbrowser/Options.java +104 -0
- package/android/src/main/java/ee/forgr/capacitor_inappbrowser/WebViewDialog.java +179 -9
- package/android/src/main/res/drawable/ic_refresh.xml +9 -0
- package/android/src/main/res/layout/tool_bar.xml +12 -3
- package/android/src/main/res/values/strings.xml +1 -0
- package/dist/docs.json +471 -49
- package/dist/esm/definitions.d.ts +121 -8
- package/dist/esm/definitions.js.map +1 -1
- package/dist/esm/web.d.ts +7 -2
- package/dist/esm/web.js +14 -2
- package/dist/esm/web.js.map +1 -1
- package/dist/plugin.cjs.js +14 -2
- package/dist/plugin.cjs.js.map +1 -1
- package/dist/plugin.js +14 -2
- package/dist/plugin.js.map +1 -1
- package/ios/Plugin/InAppBrowserPlugin.m +2 -1
- package/ios/Plugin/InAppBrowserPlugin.swift +140 -10
- package/ios/Plugin/WKWebViewController.swift +58 -20
- package/package.json +21 -23
package/dist/docs.json
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"methods": [
|
|
8
8
|
{
|
|
9
9
|
"name": "open",
|
|
10
|
-
"signature": "(options: OpenOptions) => any",
|
|
10
|
+
"signature": "(options: OpenOptions) => Promise<any>",
|
|
11
11
|
"parameters": [
|
|
12
12
|
{
|
|
13
13
|
"name": "options",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"type": "OpenOptions"
|
|
16
16
|
}
|
|
17
17
|
],
|
|
18
|
-
"returns": "any",
|
|
18
|
+
"returns": "Promise<any>",
|
|
19
19
|
"tags": [
|
|
20
20
|
{
|
|
21
21
|
"name": "since",
|
|
@@ -30,24 +30,60 @@
|
|
|
30
30
|
},
|
|
31
31
|
{
|
|
32
32
|
"name": "clearCookies",
|
|
33
|
-
"signature": "() => any",
|
|
34
|
-
"parameters": [
|
|
35
|
-
|
|
33
|
+
"signature": "(options: ClearCookieOptions) => Promise<any>",
|
|
34
|
+
"parameters": [
|
|
35
|
+
{
|
|
36
|
+
"name": "options",
|
|
37
|
+
"docs": "",
|
|
38
|
+
"type": "ClearCookieOptions"
|
|
39
|
+
}
|
|
40
|
+
],
|
|
41
|
+
"returns": "Promise<any>",
|
|
36
42
|
"tags": [
|
|
37
43
|
{
|
|
38
44
|
"name": "since",
|
|
39
45
|
"text": "0.5.0"
|
|
40
46
|
}
|
|
41
47
|
],
|
|
42
|
-
"docs": "Clear
|
|
43
|
-
"complexTypes": [
|
|
48
|
+
"docs": "Clear cookies of url",
|
|
49
|
+
"complexTypes": [
|
|
50
|
+
"ClearCookieOptions"
|
|
51
|
+
],
|
|
44
52
|
"slug": "clearcookies"
|
|
45
53
|
},
|
|
54
|
+
{
|
|
55
|
+
"name": "getCookies",
|
|
56
|
+
"signature": "(options: GetCookieOptions) => Promise<Record<string, string>>",
|
|
57
|
+
"parameters": [
|
|
58
|
+
{
|
|
59
|
+
"name": "options",
|
|
60
|
+
"docs": "The options, including the URL to get cookies for.",
|
|
61
|
+
"type": "GetCookieOptions"
|
|
62
|
+
}
|
|
63
|
+
],
|
|
64
|
+
"returns": "Promise<Record<string, string>>",
|
|
65
|
+
"tags": [
|
|
66
|
+
{
|
|
67
|
+
"name": "param",
|
|
68
|
+
"text": "options The options, including the URL to get cookies for."
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"name": "returns",
|
|
72
|
+
"text": "A promise that resolves with the cookies."
|
|
73
|
+
}
|
|
74
|
+
],
|
|
75
|
+
"docs": "Get cookies for a specific URL.",
|
|
76
|
+
"complexTypes": [
|
|
77
|
+
"Record",
|
|
78
|
+
"GetCookieOptions"
|
|
79
|
+
],
|
|
80
|
+
"slug": "getcookies"
|
|
81
|
+
},
|
|
46
82
|
{
|
|
47
83
|
"name": "close",
|
|
48
|
-
"signature": "() => any",
|
|
84
|
+
"signature": "() => Promise<any>",
|
|
49
85
|
"parameters": [],
|
|
50
|
-
"returns": "any",
|
|
86
|
+
"returns": "Promise<any>",
|
|
51
87
|
"tags": [],
|
|
52
88
|
"docs": "",
|
|
53
89
|
"complexTypes": [],
|
|
@@ -55,7 +91,7 @@
|
|
|
55
91
|
},
|
|
56
92
|
{
|
|
57
93
|
"name": "openWebView",
|
|
58
|
-
"signature": "(options: OpenWebViewOptions) => any",
|
|
94
|
+
"signature": "(options: OpenWebViewOptions) => Promise<any>",
|
|
59
95
|
"parameters": [
|
|
60
96
|
{
|
|
61
97
|
"name": "options",
|
|
@@ -63,7 +99,7 @@
|
|
|
63
99
|
"type": "OpenWebViewOptions"
|
|
64
100
|
}
|
|
65
101
|
],
|
|
66
|
-
"returns": "any",
|
|
102
|
+
"returns": "Promise<any>",
|
|
67
103
|
"tags": [
|
|
68
104
|
{
|
|
69
105
|
"name": "since",
|
|
@@ -76,9 +112,25 @@
|
|
|
76
112
|
],
|
|
77
113
|
"slug": "openwebview"
|
|
78
114
|
},
|
|
115
|
+
{
|
|
116
|
+
"name": "executeScript",
|
|
117
|
+
"signature": "({ code }: { code: string; }) => Promise<void>",
|
|
118
|
+
"parameters": [
|
|
119
|
+
{
|
|
120
|
+
"name": "__0",
|
|
121
|
+
"docs": "",
|
|
122
|
+
"type": "{ code: string; }"
|
|
123
|
+
}
|
|
124
|
+
],
|
|
125
|
+
"returns": "Promise<void>",
|
|
126
|
+
"tags": [],
|
|
127
|
+
"docs": "Injects JavaScript code into the InAppBrowser window.",
|
|
128
|
+
"complexTypes": [],
|
|
129
|
+
"slug": "executescript"
|
|
130
|
+
},
|
|
79
131
|
{
|
|
80
132
|
"name": "setUrl",
|
|
81
|
-
"signature": "(options: { url: string; }) => any",
|
|
133
|
+
"signature": "(options: { url: string; }) => Promise<any>",
|
|
82
134
|
"parameters": [
|
|
83
135
|
{
|
|
84
136
|
"name": "options",
|
|
@@ -86,7 +138,7 @@
|
|
|
86
138
|
"type": "{ url: string; }"
|
|
87
139
|
}
|
|
88
140
|
],
|
|
89
|
-
"returns": "any",
|
|
141
|
+
"returns": "Promise<any>",
|
|
90
142
|
"tags": [],
|
|
91
143
|
"docs": "",
|
|
92
144
|
"complexTypes": [],
|
|
@@ -94,7 +146,7 @@
|
|
|
94
146
|
},
|
|
95
147
|
{
|
|
96
148
|
"name": "addListener",
|
|
97
|
-
"signature": "(eventName: \"urlChangeEvent\", listenerFunc: UrlChangeListener) => Promise<PluginListenerHandle>
|
|
149
|
+
"signature": "(eventName: \"urlChangeEvent\", listenerFunc: UrlChangeListener) => Promise<PluginListenerHandle>",
|
|
98
150
|
"parameters": [
|
|
99
151
|
{
|
|
100
152
|
"name": "eventName",
|
|
@@ -107,23 +159,23 @@
|
|
|
107
159
|
"type": "UrlChangeListener"
|
|
108
160
|
}
|
|
109
161
|
],
|
|
110
|
-
"returns": "
|
|
162
|
+
"returns": "Promise<PluginListenerHandle>",
|
|
111
163
|
"tags": [
|
|
112
164
|
{
|
|
113
165
|
"name": "since",
|
|
114
166
|
"text": "0.0.1"
|
|
115
167
|
}
|
|
116
168
|
],
|
|
117
|
-
"docs": "Listen for url change",
|
|
169
|
+
"docs": "Listen for url change, only for openWebView",
|
|
118
170
|
"complexTypes": [
|
|
119
|
-
"
|
|
120
|
-
"
|
|
171
|
+
"PluginListenerHandle",
|
|
172
|
+
"UrlChangeListener"
|
|
121
173
|
],
|
|
122
|
-
"slug": "addlistenerurlchangeevent"
|
|
174
|
+
"slug": "addlistenerurlchangeevent-"
|
|
123
175
|
},
|
|
124
176
|
{
|
|
125
177
|
"name": "addListener",
|
|
126
|
-
"signature": "(eventName: \"closeEvent\", listenerFunc: UrlChangeListener) => Promise<PluginListenerHandle>
|
|
178
|
+
"signature": "(eventName: \"closeEvent\", listenerFunc: UrlChangeListener) => Promise<PluginListenerHandle>",
|
|
127
179
|
"parameters": [
|
|
128
180
|
{
|
|
129
181
|
"name": "eventName",
|
|
@@ -136,23 +188,23 @@
|
|
|
136
188
|
"type": "UrlChangeListener"
|
|
137
189
|
}
|
|
138
190
|
],
|
|
139
|
-
"returns": "
|
|
191
|
+
"returns": "Promise<PluginListenerHandle>",
|
|
140
192
|
"tags": [
|
|
141
193
|
{
|
|
142
194
|
"name": "since",
|
|
143
195
|
"text": "0.4.0"
|
|
144
196
|
}
|
|
145
197
|
],
|
|
146
|
-
"docs": "Listen for close click",
|
|
198
|
+
"docs": "Listen for close click only for openWebView",
|
|
147
199
|
"complexTypes": [
|
|
148
|
-
"
|
|
149
|
-
"
|
|
200
|
+
"PluginListenerHandle",
|
|
201
|
+
"UrlChangeListener"
|
|
150
202
|
],
|
|
151
|
-
"slug": "addlistenercloseevent"
|
|
203
|
+
"slug": "addlistenercloseevent-"
|
|
152
204
|
},
|
|
153
205
|
{
|
|
154
206
|
"name": "addListener",
|
|
155
|
-
"signature": "(eventName: \"confirmBtnClicked\", listenerFunc: ConfirmBtnListener) => Promise<PluginListenerHandle>
|
|
207
|
+
"signature": "(eventName: \"confirmBtnClicked\", listenerFunc: ConfirmBtnListener) => Promise<PluginListenerHandle>",
|
|
156
208
|
"parameters": [
|
|
157
209
|
{
|
|
158
210
|
"name": "eventName",
|
|
@@ -165,7 +217,7 @@
|
|
|
165
217
|
"type": "ConfirmBtnListener"
|
|
166
218
|
}
|
|
167
219
|
],
|
|
168
|
-
"returns": "
|
|
220
|
+
"returns": "Promise<PluginListenerHandle>",
|
|
169
221
|
"tags": [
|
|
170
222
|
{
|
|
171
223
|
"name": "since",
|
|
@@ -174,16 +226,16 @@
|
|
|
174
226
|
],
|
|
175
227
|
"docs": "Will be triggered when user clicks on confirm button when disclaimer is required, works only on iOS",
|
|
176
228
|
"complexTypes": [
|
|
177
|
-
"
|
|
178
|
-
"
|
|
229
|
+
"PluginListenerHandle",
|
|
230
|
+
"ConfirmBtnListener"
|
|
179
231
|
],
|
|
180
|
-
"slug": "addlistenerconfirmbtnclicked"
|
|
232
|
+
"slug": "addlistenerconfirmbtnclicked-"
|
|
181
233
|
},
|
|
182
234
|
{
|
|
183
235
|
"name": "removeAllListeners",
|
|
184
|
-
"signature": "() =>
|
|
236
|
+
"signature": "() => Promise<void>",
|
|
185
237
|
"parameters": [],
|
|
186
|
-
"returns": "
|
|
238
|
+
"returns": "Promise<void>",
|
|
187
239
|
"tags": [
|
|
188
240
|
{
|
|
189
241
|
"name": "since",
|
|
@@ -193,6 +245,21 @@
|
|
|
193
245
|
"docs": "Remove all listeners for this plugin.",
|
|
194
246
|
"complexTypes": [],
|
|
195
247
|
"slug": "removealllisteners"
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
"name": "reload",
|
|
251
|
+
"signature": "() => Promise<any>",
|
|
252
|
+
"parameters": [],
|
|
253
|
+
"returns": "Promise<any>",
|
|
254
|
+
"tags": [
|
|
255
|
+
{
|
|
256
|
+
"name": "since",
|
|
257
|
+
"text": "1.0.0"
|
|
258
|
+
}
|
|
259
|
+
],
|
|
260
|
+
"docs": "Reload the current web page.",
|
|
261
|
+
"complexTypes": [],
|
|
262
|
+
"slug": "reload"
|
|
196
263
|
}
|
|
197
264
|
],
|
|
198
265
|
"properties": []
|
|
@@ -260,6 +327,82 @@
|
|
|
260
327
|
"methods": [],
|
|
261
328
|
"properties": []
|
|
262
329
|
},
|
|
330
|
+
{
|
|
331
|
+
"name": "ClearCookieOptions",
|
|
332
|
+
"slug": "clearcookieoptions",
|
|
333
|
+
"docs": "",
|
|
334
|
+
"tags": [],
|
|
335
|
+
"methods": [],
|
|
336
|
+
"properties": [
|
|
337
|
+
{
|
|
338
|
+
"name": "url",
|
|
339
|
+
"tags": [],
|
|
340
|
+
"docs": "",
|
|
341
|
+
"complexTypes": [],
|
|
342
|
+
"type": "string"
|
|
343
|
+
},
|
|
344
|
+
{
|
|
345
|
+
"name": "cache",
|
|
346
|
+
"tags": [],
|
|
347
|
+
"docs": "",
|
|
348
|
+
"complexTypes": [],
|
|
349
|
+
"type": "boolean | undefined"
|
|
350
|
+
}
|
|
351
|
+
]
|
|
352
|
+
},
|
|
353
|
+
{
|
|
354
|
+
"name": "HttpCookie",
|
|
355
|
+
"slug": "httpcookie",
|
|
356
|
+
"docs": "",
|
|
357
|
+
"tags": [],
|
|
358
|
+
"methods": [],
|
|
359
|
+
"properties": [
|
|
360
|
+
{
|
|
361
|
+
"name": "url",
|
|
362
|
+
"tags": [],
|
|
363
|
+
"docs": "The URL of the cookie.",
|
|
364
|
+
"complexTypes": [],
|
|
365
|
+
"type": "string | undefined"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"name": "key",
|
|
369
|
+
"tags": [],
|
|
370
|
+
"docs": "The key of the cookie.",
|
|
371
|
+
"complexTypes": [],
|
|
372
|
+
"type": "string"
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"name": "value",
|
|
376
|
+
"tags": [],
|
|
377
|
+
"docs": "The value of the cookie.",
|
|
378
|
+
"complexTypes": [],
|
|
379
|
+
"type": "string"
|
|
380
|
+
}
|
|
381
|
+
]
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"name": "GetCookieOptions",
|
|
385
|
+
"slug": "getcookieoptions",
|
|
386
|
+
"docs": "",
|
|
387
|
+
"tags": [],
|
|
388
|
+
"methods": [],
|
|
389
|
+
"properties": [
|
|
390
|
+
{
|
|
391
|
+
"name": "url",
|
|
392
|
+
"tags": [],
|
|
393
|
+
"docs": "",
|
|
394
|
+
"complexTypes": [],
|
|
395
|
+
"type": "string"
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"name": "includeHttpOnly",
|
|
399
|
+
"tags": [],
|
|
400
|
+
"docs": "",
|
|
401
|
+
"complexTypes": [],
|
|
402
|
+
"type": "boolean | undefined"
|
|
403
|
+
}
|
|
404
|
+
]
|
|
405
|
+
},
|
|
263
406
|
{
|
|
264
407
|
"name": "OpenWebViewOptions",
|
|
265
408
|
"slug": "openwebviewoptions",
|
|
@@ -351,7 +494,7 @@
|
|
|
351
494
|
],
|
|
352
495
|
"docs": "Title of the browser",
|
|
353
496
|
"complexTypes": [],
|
|
354
|
-
"type": "string"
|
|
497
|
+
"type": "string | undefined"
|
|
355
498
|
},
|
|
356
499
|
{
|
|
357
500
|
"name": "backgroundColor",
|
|
@@ -371,6 +514,30 @@
|
|
|
371
514
|
],
|
|
372
515
|
"type": "BackgroundColor"
|
|
373
516
|
},
|
|
517
|
+
{
|
|
518
|
+
"name": "activeNativeNavigationForWebview",
|
|
519
|
+
"tags": [
|
|
520
|
+
{
|
|
521
|
+
"text": "false",
|
|
522
|
+
"name": "default"
|
|
523
|
+
}
|
|
524
|
+
],
|
|
525
|
+
"docs": "If true, active the native navigation within the webview, Android only",
|
|
526
|
+
"complexTypes": [],
|
|
527
|
+
"type": "boolean | undefined"
|
|
528
|
+
},
|
|
529
|
+
{
|
|
530
|
+
"name": "disableGoBackOnNativeApplication",
|
|
531
|
+
"tags": [
|
|
532
|
+
{
|
|
533
|
+
"text": "false",
|
|
534
|
+
"name": "default"
|
|
535
|
+
}
|
|
536
|
+
],
|
|
537
|
+
"docs": "Disable the possibility to go back on native application,\nusefull to force user to stay on the webview, Android only",
|
|
538
|
+
"complexTypes": [],
|
|
539
|
+
"type": "boolean | undefined"
|
|
540
|
+
},
|
|
374
541
|
{
|
|
375
542
|
"name": "isPresentAfterPageLoad",
|
|
376
543
|
"tags": [
|
|
@@ -386,6 +553,174 @@
|
|
|
386
553
|
"docs": "Open url in a new window fullscreen\n\nisPresentAfterPageLoad: if true, the browser will be presented after the page is loaded, if false, the browser will be presented immediately.",
|
|
387
554
|
"complexTypes": [],
|
|
388
555
|
"type": "boolean | undefined"
|
|
556
|
+
},
|
|
557
|
+
{
|
|
558
|
+
"name": "isInspectable",
|
|
559
|
+
"tags": [
|
|
560
|
+
{
|
|
561
|
+
"text": "false",
|
|
562
|
+
"name": "default"
|
|
563
|
+
}
|
|
564
|
+
],
|
|
565
|
+
"docs": "Whether the website in the webview is inspectable or not, ios only",
|
|
566
|
+
"complexTypes": [],
|
|
567
|
+
"type": "boolean | undefined"
|
|
568
|
+
},
|
|
569
|
+
{
|
|
570
|
+
"name": "isAnimated",
|
|
571
|
+
"tags": [
|
|
572
|
+
{
|
|
573
|
+
"text": "true",
|
|
574
|
+
"name": "default"
|
|
575
|
+
}
|
|
576
|
+
],
|
|
577
|
+
"docs": "Whether the webview opening is animated or not, ios only",
|
|
578
|
+
"complexTypes": [],
|
|
579
|
+
"type": "boolean | undefined"
|
|
580
|
+
},
|
|
581
|
+
{
|
|
582
|
+
"name": "showReloadButton",
|
|
583
|
+
"tags": [
|
|
584
|
+
{
|
|
585
|
+
"text": "1.0.15",
|
|
586
|
+
"name": "since"
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
"text": "false",
|
|
590
|
+
"name": "default"
|
|
591
|
+
}
|
|
592
|
+
],
|
|
593
|
+
"docs": "Shows a reload button that reloads the web page",
|
|
594
|
+
"complexTypes": [],
|
|
595
|
+
"type": "boolean | undefined"
|
|
596
|
+
},
|
|
597
|
+
{
|
|
598
|
+
"name": "closeModal",
|
|
599
|
+
"tags": [
|
|
600
|
+
{
|
|
601
|
+
"text": "1.1.0",
|
|
602
|
+
"name": "since"
|
|
603
|
+
},
|
|
604
|
+
{
|
|
605
|
+
"text": "false",
|
|
606
|
+
"name": "default"
|
|
607
|
+
}
|
|
608
|
+
],
|
|
609
|
+
"docs": "CloseModal: if true a confirm will be displayed when user clicks on close button, if false the browser will be closed immediately.",
|
|
610
|
+
"complexTypes": [],
|
|
611
|
+
"type": "boolean | undefined"
|
|
612
|
+
},
|
|
613
|
+
{
|
|
614
|
+
"name": "closeModalTitle",
|
|
615
|
+
"tags": [
|
|
616
|
+
{
|
|
617
|
+
"text": "1.1.0",
|
|
618
|
+
"name": "since"
|
|
619
|
+
},
|
|
620
|
+
{
|
|
621
|
+
"text": "'Close'",
|
|
622
|
+
"name": "default"
|
|
623
|
+
}
|
|
624
|
+
],
|
|
625
|
+
"docs": "CloseModalTitle: title of the confirm when user clicks on close button, only on IOS",
|
|
626
|
+
"complexTypes": [],
|
|
627
|
+
"type": "string | undefined"
|
|
628
|
+
},
|
|
629
|
+
{
|
|
630
|
+
"name": "closeModalDescription",
|
|
631
|
+
"tags": [
|
|
632
|
+
{
|
|
633
|
+
"text": "1.1.0",
|
|
634
|
+
"name": "since"
|
|
635
|
+
},
|
|
636
|
+
{
|
|
637
|
+
"text": "'Are you sure you want to close this window?'",
|
|
638
|
+
"name": "default"
|
|
639
|
+
}
|
|
640
|
+
],
|
|
641
|
+
"docs": "CloseModalDescription: description of the confirm when user clicks on close button, only on IOS",
|
|
642
|
+
"complexTypes": [],
|
|
643
|
+
"type": "string | undefined"
|
|
644
|
+
},
|
|
645
|
+
{
|
|
646
|
+
"name": "closeModalOk",
|
|
647
|
+
"tags": [
|
|
648
|
+
{
|
|
649
|
+
"text": "1.1.0",
|
|
650
|
+
"name": "since"
|
|
651
|
+
},
|
|
652
|
+
{
|
|
653
|
+
"text": "'Close'",
|
|
654
|
+
"name": "default"
|
|
655
|
+
}
|
|
656
|
+
],
|
|
657
|
+
"docs": "CloseModalOk: text of the confirm button when user clicks on close button, only on IOS",
|
|
658
|
+
"complexTypes": [],
|
|
659
|
+
"type": "string | undefined"
|
|
660
|
+
},
|
|
661
|
+
{
|
|
662
|
+
"name": "closeModalCancel",
|
|
663
|
+
"tags": [
|
|
664
|
+
{
|
|
665
|
+
"text": "1.1.0",
|
|
666
|
+
"name": "since"
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
"text": "'Cancel'",
|
|
670
|
+
"name": "default"
|
|
671
|
+
}
|
|
672
|
+
],
|
|
673
|
+
"docs": "CloseModalCancel: text of the cancel button when user clicks on close button, only on IOS",
|
|
674
|
+
"complexTypes": [],
|
|
675
|
+
"type": "string | undefined"
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"name": "visibleTitle",
|
|
679
|
+
"tags": [
|
|
680
|
+
{
|
|
681
|
+
"text": "1.2.5",
|
|
682
|
+
"name": "since"
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
"text": "true",
|
|
686
|
+
"name": "default"
|
|
687
|
+
}
|
|
688
|
+
],
|
|
689
|
+
"docs": "visibleTitle: if true the website title would be shown else shown empty",
|
|
690
|
+
"complexTypes": [],
|
|
691
|
+
"type": "boolean | undefined"
|
|
692
|
+
},
|
|
693
|
+
{
|
|
694
|
+
"name": "toolbarColor",
|
|
695
|
+
"tags": [
|
|
696
|
+
{
|
|
697
|
+
"text": "1.2.5",
|
|
698
|
+
"name": "since"
|
|
699
|
+
},
|
|
700
|
+
{
|
|
701
|
+
"text": "'#ffffff''",
|
|
702
|
+
"name": "default"
|
|
703
|
+
}
|
|
704
|
+
],
|
|
705
|
+
"docs": "toolbarColor: color of the toolbar in hex format",
|
|
706
|
+
"complexTypes": [],
|
|
707
|
+
"type": "string | undefined"
|
|
708
|
+
},
|
|
709
|
+
{
|
|
710
|
+
"name": "showArrow",
|
|
711
|
+
"tags": [
|
|
712
|
+
{
|
|
713
|
+
"text": "1.2.5",
|
|
714
|
+
"name": "since"
|
|
715
|
+
},
|
|
716
|
+
{
|
|
717
|
+
"text": "false",
|
|
718
|
+
"name": "default"
|
|
719
|
+
}
|
|
720
|
+
],
|
|
721
|
+
"docs": "showArrow: if true an arrow would be shown instead of cross for closing the window",
|
|
722
|
+
"complexTypes": [],
|
|
723
|
+
"type": "boolean | undefined"
|
|
389
724
|
}
|
|
390
725
|
]
|
|
391
726
|
},
|
|
@@ -426,6 +761,22 @@
|
|
|
426
761
|
}
|
|
427
762
|
]
|
|
428
763
|
},
|
|
764
|
+
{
|
|
765
|
+
"name": "PluginListenerHandle",
|
|
766
|
+
"slug": "pluginlistenerhandle",
|
|
767
|
+
"docs": "",
|
|
768
|
+
"tags": [],
|
|
769
|
+
"methods": [],
|
|
770
|
+
"properties": [
|
|
771
|
+
{
|
|
772
|
+
"name": "remove",
|
|
773
|
+
"tags": [],
|
|
774
|
+
"docs": "",
|
|
775
|
+
"complexTypes": [],
|
|
776
|
+
"type": "() => Promise<void>"
|
|
777
|
+
}
|
|
778
|
+
]
|
|
779
|
+
},
|
|
429
780
|
{
|
|
430
781
|
"name": "UrlEvent",
|
|
431
782
|
"slug": "urlevent",
|
|
@@ -447,22 +798,6 @@
|
|
|
447
798
|
}
|
|
448
799
|
]
|
|
449
800
|
},
|
|
450
|
-
{
|
|
451
|
-
"name": "PluginListenerHandle",
|
|
452
|
-
"slug": "pluginlistenerhandle",
|
|
453
|
-
"docs": "",
|
|
454
|
-
"tags": [],
|
|
455
|
-
"methods": [],
|
|
456
|
-
"properties": [
|
|
457
|
-
{
|
|
458
|
-
"name": "remove",
|
|
459
|
-
"tags": [],
|
|
460
|
-
"docs": "",
|
|
461
|
-
"complexTypes": [],
|
|
462
|
-
"type": "() => any"
|
|
463
|
-
}
|
|
464
|
-
]
|
|
465
|
-
},
|
|
466
801
|
{
|
|
467
802
|
"name": "BtnEvent",
|
|
468
803
|
"slug": "btnevent",
|
|
@@ -536,6 +871,93 @@
|
|
|
536
871
|
}
|
|
537
872
|
],
|
|
538
873
|
"typeAliases": [
|
|
874
|
+
{
|
|
875
|
+
"name": "ClearCookieOptions",
|
|
876
|
+
"slug": "clearcookieoptions",
|
|
877
|
+
"docs": "",
|
|
878
|
+
"types": [
|
|
879
|
+
{
|
|
880
|
+
"text": "Omit<HttpCookie, 'key' | 'value'>",
|
|
881
|
+
"complexTypes": [
|
|
882
|
+
"Omit",
|
|
883
|
+
"HttpCookie"
|
|
884
|
+
]
|
|
885
|
+
}
|
|
886
|
+
]
|
|
887
|
+
},
|
|
888
|
+
{
|
|
889
|
+
"name": "Omit",
|
|
890
|
+
"slug": "omit",
|
|
891
|
+
"docs": "Construct a type with the properties of T except for those in type K.",
|
|
892
|
+
"types": [
|
|
893
|
+
{
|
|
894
|
+
"text": "Pick<T, Exclude<keyof T, K>>",
|
|
895
|
+
"complexTypes": [
|
|
896
|
+
"Pick",
|
|
897
|
+
"T",
|
|
898
|
+
"Exclude",
|
|
899
|
+
"K"
|
|
900
|
+
]
|
|
901
|
+
}
|
|
902
|
+
]
|
|
903
|
+
},
|
|
904
|
+
{
|
|
905
|
+
"name": "Pick",
|
|
906
|
+
"slug": "pick",
|
|
907
|
+
"docs": "From T, pick a set of properties whose keys are in the union K",
|
|
908
|
+
"types": [
|
|
909
|
+
{
|
|
910
|
+
"text": "{\r\n [P in K]: T[P];\r\n}",
|
|
911
|
+
"complexTypes": [
|
|
912
|
+
"K",
|
|
913
|
+
"T",
|
|
914
|
+
"P"
|
|
915
|
+
]
|
|
916
|
+
}
|
|
917
|
+
]
|
|
918
|
+
},
|
|
919
|
+
{
|
|
920
|
+
"name": "Exclude",
|
|
921
|
+
"slug": "exclude",
|
|
922
|
+
"docs": "Exclude from T those types that are assignable to U",
|
|
923
|
+
"types": [
|
|
924
|
+
{
|
|
925
|
+
"text": "T extends U ? never : T",
|
|
926
|
+
"complexTypes": [
|
|
927
|
+
"T",
|
|
928
|
+
"U"
|
|
929
|
+
]
|
|
930
|
+
}
|
|
931
|
+
]
|
|
932
|
+
},
|
|
933
|
+
{
|
|
934
|
+
"name": "Record",
|
|
935
|
+
"slug": "record",
|
|
936
|
+
"docs": "Construct a type with a set of properties K of type T",
|
|
937
|
+
"types": [
|
|
938
|
+
{
|
|
939
|
+
"text": "{\r\n [P in K]: T;\r\n}",
|
|
940
|
+
"complexTypes": [
|
|
941
|
+
"K",
|
|
942
|
+
"T"
|
|
943
|
+
]
|
|
944
|
+
}
|
|
945
|
+
]
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
"name": "GetCookieOptions",
|
|
949
|
+
"slug": "getcookieoptions",
|
|
950
|
+
"docs": "",
|
|
951
|
+
"types": [
|
|
952
|
+
{
|
|
953
|
+
"text": "Omit<HttpCookie, 'key' | 'value'>",
|
|
954
|
+
"complexTypes": [
|
|
955
|
+
"Omit",
|
|
956
|
+
"HttpCookie"
|
|
957
|
+
]
|
|
958
|
+
}
|
|
959
|
+
]
|
|
960
|
+
},
|
|
539
961
|
{
|
|
540
962
|
"name": "UrlChangeListener",
|
|
541
963
|
"slug": "urlchangelistener",
|