comty/packages/app/constants/settingsList.json
2022-01-03 18:35:25 +01:00

81 lines
2.4 KiB
JSON

[
{
"id": "persistent_session",
"group": "general",
"type": "Switch",
"icon": "Key",
"title": "Save Session",
"title_i18n": "settings_general_persitentSession",
"description": "The application will save the session and no expire it.",
"description_i18n": "settings_general_persitentSession_description"
},
{
"id": "language",
"group": "general",
"type": "Select",
"icon": "MdTranslate",
"title": "Language",
"title_i18n": "settings_general_language"
},
{
"id": "edit_sidebar",
"group": "sidebar",
"type": "Button",
"icon": "Edit",
"title": "Edit Sidebar",
"title_i18n": "settings_sidebar_edit",
"emitEvent": "edit_sidebar",
"noStorage": true
},
{
"id": "collapseOnLooseFocus",
"group": "sidebar",
"type": "Switch",
"title": "Auto Collapse",
"description": "Collapse the sidebar when loose focus",
"title_i18n": "settings_sidebar_autoCollapse",
"description_i18n": "settings_sidebar_autoCollapse_description"
},
{
"id": "reduceAnimations",
"group": "aspect",
"type": "Switch",
"icon": "MdOutlineAnimation",
"title": "Reduce animation",
"title_i18n": "settings_aspect_reduceAnimation",
"experimental": true
},
{
"id": "darkMode",
"group": "aspect",
"type": "Switch",
"icon": "Moon",
"title": "Dark Mode",
"title_i18n": "settings_aspect_darkMode",
"emitEvent": "darkMode",
"experimental": true
},
{
"id": "primaryColor",
"group": "aspect",
"type": "SliderColorPicker",
"title": "Primary color",
"description": "Change primary color of the application.",
"title_i18n": "settings_aspect_primaryColor",
"description_i18n": "settings_aspect_primaryColor_description",
"emitEvent": "modifyTheme",
"updateValueKey": "primaryColor"
},
{
"id": "resetTheme",
"group": "aspect",
"type": "Button",
"title": "Reset theme",
"title_i18n": "settings_aspect_resetTheme",
"props": {
"children": "Default Theme"
},
"emitEvent": "resetTheme",
"noStorage": true
}
]