-
sidebar_color
- For sidebar color there are 4 options given below: Values are in string."theme_style_appearance": { "value": [ "theme-default" ] }, choices: 'sidebar-white', 'sidebar-dark', 'sidebar-color', 'sidebar-transparent', 'sidebar-glass'
-
sidebar_type
- For sidebar type there are 3 options given below: Values are in array."sidebar_type": { "value": [] }, choices: 'sidebar-hover', 'sidebar-mini', 'sidebar-boxed', 'sidebar-soft'
-
sidebar_menu_style
- For sidebar menu-style there are 5 options given below: Values are in string.code class="language-markup">"sidebar_menu_style": { "value": "left-bordered" }, choices: 'navs-rounded', 'navs-rounded-all', 'navs-pills', 'navs-pill-all', 'left-bordered', 'navs-full-width'
- To get the current value of the following you can use:
sidebar_color
const sidebarColor = useSelector(SettingSelector.sidebar_color)
sidebar_type
const sidebarType = useSelector(SettingSelector.sidebar_type)
sidebar_menu_style
const sidebarMenuStyle = useSelector(SettingSelector.sidebar_menu_style)
- To use action you can use dispatch to update state.js.
sidebar_color
dispatch(sidebar_color(value))
sidebar_type
dispatch(sidebar_type(value))
sidebar_menu_style
dispatch(sidebar_menu_style(value))