@bobfrankston/msger 0.1.347 → 0.1.349

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
@@ -409,6 +409,15 @@ interface MessageBoxResult {
409
409
  closed?: boolean; // True if closed programmatically via handle.close()
410
410
  dismissed?: boolean; // True if user pressed Escape
411
411
  timeout?: boolean; // True if closed due to timeout
412
+ bounds?: { // Virtual-desktop window geometry at close (pixels).
413
+ // x,y are single-plane coords across all monitors — NOT
414
+ // monitor-relative + screen index. Feed straight back into
415
+ // `-pos bounds.x,bounds.y`. See msgcommon/README.md.
416
+ x: number;
417
+ y: number;
418
+ width: number;
419
+ height: number;
420
+ };
412
421
  debug?: { // Debug info (if debug option was true)
413
422
  html: string; // Generated HTML content
414
423
  width: number; // Window width
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/msger",
3
- "version": "0.1.347",
3
+ "version": "0.1.349",
4
4
  "description": "Fast, lightweight, cross-platform message box - Rust-powered alternative to msgview",
5
5
  "type": "module",
6
6
  "main": "./index.js",