Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 620 Bytes

README.md

File metadata and controls

25 lines (22 loc) · 620 Bytes

Optional Components

optional is an option to ignore "add_quotes", "prefix", "suffix", and "validator" when a text box is empty.

optional

{
    "gui": {
        "command": "echo %-%",
        "components": [
            {
                "type": "text",
                "label": "Text box",
                "optional": true,
                "prefix": "-pre=",
                "suffix": " -suf",
                "validator": {
                    "regex": ".+"
                }
            }
        ]
    }
}