@sigx/lynx-webview 0.4.2 → 0.4.4
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 +1 -1
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -164,4 +164,4 @@ lynx.createSelectorQuery().select('#my-webview').invoke({
|
|
|
164
164
|
|
|
165
165
|
## Reference app
|
|
166
166
|
|
|
167
|
-
`examples/showcase/src/screens/TripGuide.tsx` is a real-app integration: each trip's destination ("Lisbon, May 2026" → `Lisbon`) drives a Wikivoyage URL loaded in a WebView, with an `onLoad` loading overlay, an `onError` retry surface, and a bottom toolbar wiring Back / Forward / Reload via `WebViewMethods` so the user can navigate Wikivoyage internal links without leaving the screen. Reachable from `TripDetail` via the `Guide` header button.
|
|
167
|
+
[`examples/showcase/src/screens/TripGuide.tsx`](https://github.com/signalxjs/lynx/blob/main/examples/showcase/src/screens/TripGuide.tsx) is a real-app integration: each trip's destination ("Lisbon, May 2026" → `Lisbon`) drives a Wikivoyage URL loaded in a WebView, with an `onLoad` loading overlay, an `onError` retry surface, and a bottom toolbar wiring Back / Forward / Reload via `WebViewMethods` so the user can navigate Wikivoyage internal links without leaving the screen. Reachable from `TripDetail` via the `Guide` header button.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sigx/lynx-webview",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.4",
|
|
4
4
|
"description": "Native WebView component for sigx-lynx (WKWebView on iOS, android.webkit.WebView on Android).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -23,13 +23,13 @@
|
|
|
23
23
|
"LICENSE"
|
|
24
24
|
],
|
|
25
25
|
"peerDependencies": {
|
|
26
|
-
"@sigx/lynx": "^0.4.
|
|
26
|
+
"@sigx/lynx": "^0.4.4"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
29
29
|
"@typescript/native-preview": "7.0.0-dev.20260521.1",
|
|
30
30
|
"typescript": "^6.0.3",
|
|
31
31
|
"vitest": "^4.1.7",
|
|
32
|
-
"@sigx/lynx": "^0.4.
|
|
32
|
+
"@sigx/lynx": "^0.4.4"
|
|
33
33
|
},
|
|
34
34
|
"author": "Andreas Ekdahl",
|
|
35
35
|
"license": "MIT",
|