docs(config): add missing window configs

This commit is contained in:
Lucas Nogueira 2021-06-17 11:30:31 -03:00
parent 1c97a151c1
commit 1886a9885e
No known key found for this signature in database
GPG Key ID: 2714B66BCFB01F7F

View File

@ -259,15 +259,17 @@ It's composed of the following properties:
{ property: "minWidth", type: "number", description: `The minimum window width.` },
{ property: "minHeight", type: "number", description: `The minimum window height.` },
{ property: "maxWidth", type: "number", description: `The maximum window width.` },
{ property: "minHeight", type: "number", description: `The minimum window height.` },
{ property: "maxHeight", type: "number", description: `The maximum window height.` },
{ property: "resizable", optional: true, type: "boolean", description: `Whether the window is resizable or not..` },
{ property: "title", type: "string", description: `Window title.` },
{ property: "fullscreen", optional: true, type: "boolean", description: `Whether the window starts as fullscreen or not.` },
{ property: "focus", optional: true, type: "boolean", description: `Whether the window will be initially hidden or focused.` },
{ property: "transparent", optional: true, type: "boolean", description: `Whether the window is transparent or not.` },
{ property: "maximized", optional: true, type: "boolean", description: `Whether the window is maximized or not.` },
{ property: "visible", optional: true, type: "boolean", description: `Whether the window is visible or not.` },
{ property: "decorations", optional: true, type: "boolean", description: `Whether the window should have borders and bars.` },
{ property: "alwaysOnTop", optional: true, type: "boolean", description: `Whether the window should always be on top of other windows.` },
{ property: "skipTaskbar", optional: true, type: "boolean", description: `Whether or not the window icon should be added to the taskbar.` },
]}/>
</Array>
},