@bobfrankston/msger 0.1.391 → 0.1.392
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/msger-native/bin/msgernative.exe +0 -0
- package/package.json +1 -1
- package/shower.d.ts +5 -1
|
Binary file
|
package/package.json
CHANGED
package/shower.d.ts
CHANGED
|
@@ -28,7 +28,11 @@ export interface MessageBoxOptions {
|
|
|
28
28
|
zoom?: number; /** Initial zoom level as percentage (100=100%, 150=150%, 50=50%, etc.) */
|
|
29
29
|
autoSize?: boolean; /** Automatically resize window to fit content (default: false) */
|
|
30
30
|
alwaysOnTop?: boolean; /** Keep window on top of other windows (default: false) */
|
|
31
|
-
focusOnCreate?: boolean;
|
|
31
|
+
focusOnCreate?: boolean;
|
|
32
|
+
contextMenuItems?: Array<{
|
|
33
|
+
id: string;
|
|
34
|
+
label: string;
|
|
35
|
+
}>; /** App items appended to the NATIVE right-click menu (spell suggestions preserved). Selection calls window.__msgerContextCommand(id) in the page. Windows only. */ /** Force the window to the foreground on creation. Needed when a BACKGROUND process (daemon) spawns the window — otherwise it shows without activation and lands behind the caller's focused window (default: false) */
|
|
32
36
|
buttons?: string[]; /** Array of button labels to display (default: ['OK']) */
|
|
33
37
|
defaultValue?: string; /** Default value for input field when allowInput is true */
|
|
34
38
|
inputPlaceholder?: string; /** Placeholder text (gray hint) shown in input field */
|