@capgo/inappbrowser 7.22.0 → 7.22.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 +13 -13
- package/android/src/main/java/ee/forgr/capacitor_inappbrowser/InAppBrowserPlugin.java +769 -954
- package/android/src/main/java/ee/forgr/capacitor_inappbrowser/Options.java +383 -409
- package/android/src/main/java/ee/forgr/capacitor_inappbrowser/WebViewCallbacks.java +7 -7
- package/android/src/main/java/ee/forgr/capacitor_inappbrowser/WebViewDialog.java +2565 -3135
- package/dist/docs.json +13 -13
- package/dist/esm/definitions.d.ts +10 -10
- package/dist/esm/definitions.js.map +1 -1
- package/dist/esm/index.d.ts +2 -2
- package/dist/esm/index.js +4 -4
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/web.d.ts +2 -2
- package/dist/esm/web.js +12 -12
- package/dist/esm/web.js.map +1 -1
- package/dist/plugin.cjs.js +12 -12
- package/dist/plugin.cjs.js.map +1 -1
- package/dist/plugin.js +12 -12
- package/dist/plugin.js.map +1 -1
- package/ios/Sources/InAppBrowserPlugin/InAppBrowserPlugin.swift +1 -1
- package/ios/Sources/InAppBrowserPlugin/WKWebViewController.swift +1 -1
- package/package.json +2 -2
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
package ee.forgr.capacitor_inappbrowser;
|
|
2
2
|
|
|
3
3
|
public interface WebViewCallbacks {
|
|
4
|
-
|
|
4
|
+
public void urlChangeEvent(String url);
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
public void closeEvent(String url);
|
|
7
7
|
|
|
8
|
-
|
|
8
|
+
public void pageLoaded();
|
|
9
9
|
|
|
10
|
-
|
|
10
|
+
public void pageLoadError();
|
|
11
11
|
|
|
12
|
-
|
|
12
|
+
public void javascriptCallback(String message);
|
|
13
13
|
|
|
14
|
-
|
|
14
|
+
public void buttonNearDoneClicked();
|
|
15
15
|
|
|
16
|
-
|
|
16
|
+
public void confirmBtnClicked(String url);
|
|
17
17
|
}
|