@bobfrankston/msger 0.1.347 → 0.1.348

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,12 @@ 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.
413
+ x: number;
414
+ y: number;
415
+ width: number;
416
+ height: number;
417
+ };
412
418
  debug?: { // Debug info (if debug option was true)
413
419
  html: string; // Generated HTML content
414
420
  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.348",
4
4
  "description": "Fast, lightweight, cross-platform message box - Rust-powered alternative to msgview",
5
5
  "type": "module",
6
6
  "main": "./index.js",