Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[suggestion] Add dropdown lists and checkboxes on savers options #202

Open
jmfergeau opened this issue Apr 11, 2024 · 0 comments
Open

[suggestion] Add dropdown lists and checkboxes on savers options #202

jmfergeau opened this issue Apr 11, 2024 · 0 comments

Comments

@jmfergeau
Copy link

jmfergeau commented Apr 11, 2024

For now, you can only use text fields and sliders to set custom options for savers. It would be great to add dropdown lists and checkboxes on the savers options too.

something like this :

"options":[
    {
      "name": "Dropdown option",
      "type": "dropdown",
      "description": "Choose something in the list",
      "dropdownEntries": [
          "An entry",
          "Another one",
          "And another one..."
      ],
      "default": "An entry"
    }
  ]

Or for dropdownEntries, maybe something bigger for more control like :

"dropdownEntries": {
    "An entry": "firstoption",
    "Another one": "secondoption",
    "And another one...": "thirdoption"
    },

And for checkboxes, something like :

"options":[
    {
      "name": "checkbox option",
      "type": "checkbox",
      "description": "Will do something if checked",
      "default": "false"
    }
  ]

I unno, it's suggestions, feel free to inspire ^^

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant