@bobfrankston/msger 0.1.348 → 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.
Files changed (2) hide show
  1. package/README.md +4 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -409,7 +409,10 @@ 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?: { // Screen-relative window geometry at close (pixels). See msgcommon README.
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.
413
416
  x: number;
414
417
  y: number;
415
418
  width: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/msger",
3
- "version": "0.1.348",
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",