tauri-remote-ui 0.27.0 → 0.28.0

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 CHANGED
@@ -13,7 +13,7 @@
13
13
  - **Seamless E2E Testing:** Use existing web automation/testing tools.
14
14
  - **Automatic Transport Switching:** IPC for WebView, WebSocket for browsers—handled transparently.
15
15
  - **Customizable Security:** Control and secure remote access as needed.
16
- - **Future Compatibility For Test Migration:** When [CEF-RS](https://github.com/cef-rs/cef) becomes available, the same E2E tests (e.g., written with Playwright or similar tools that use the Chromium debug port) will work seamlessly in debug mode, ensuring long-term support for modern testing workflows.
16
+ - **Future Compatibility For Test Migration:** When [CEF-RS](https://github.com/tauri-apps/cef-rs) becomes available, the same E2E tests (e.g., written with Playwright or similar tools that use the Chromium debug port) will work seamlessly in debug mode, ensuring long-term support for modern testing workflows.
17
17
 
18
18
  ## Completed Features
19
19
 
@@ -4,6 +4,7 @@
4
4
  * This module handles listening to events from the Tauri application via WebSocket
5
5
  */
6
6
  import { EventCallback, EventName, Options, UnlistenFn } from '@tauri-apps/api/event';
7
+ export type { UnlistenFn } from '@tauri-apps/api/event';
7
8
  /**
8
9
  * Listen to events from the Tauri application
9
10
  * Falls back to WebSocket if Tauri Event API is not available
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tauri-remote-ui",
3
3
  "license": "MIT",
4
- "version": "0.27.0",
4
+ "version": "0.28.0",
5
5
  "author": "DraviaVemal",
6
6
  "description": "A Tauri plugin that exposes the application's UI to a web browser, allowing full interaction while the native app continues running. This enables end-to-end UI testing using existing web-based testing tools without requiring modifications to the app itself.",
7
7
  "type": "module",