@@ -42,7 +42,7 @@ import {
4242 resolveMenuLayoutMode ,
4343} from "./shared.js" ;
4444
45- export const DASHBOARD_DISPLAY_OPTIONS : DashboardDisplaySettingOption [ ] = [
45+ const DASHBOARD_DISPLAY_OPTIONS : DashboardDisplaySettingOption [ ] = [
4646 {
4747 key : "menuShowStatusBadge" ,
4848 label : "Show Status Badges" ,
@@ -95,7 +95,7 @@ export const DASHBOARD_DISPLAY_OPTIONS: DashboardDisplaySettingOption[] = [
9595 } ,
9696] ;
9797
98- export const STATUSLINE_FIELD_OPTIONS : Array < {
98+ const STATUSLINE_FIELD_OPTIONS : Array < {
9999 key : DashboardStatuslineField ;
100100 label : string ;
101101 description : string ;
@@ -117,21 +117,21 @@ export const STATUSLINE_FIELD_OPTIONS: Array<{
117117 } ,
118118] ;
119119
120- export const AUTO_RETURN_OPTIONS_MS = [ 1_000 , 2_000 , 4_000 ] as const ;
121- export const MENU_QUOTA_TTL_OPTIONS_MS = [
120+ const AUTO_RETURN_OPTIONS_MS = [ 1_000 , 2_000 , 4_000 ] as const ;
121+ const MENU_QUOTA_TTL_OPTIONS_MS = [
122122 60_000 ,
123123 5 * 60_000 ,
124124 10 * 60_000 ,
125125] as const ;
126- export const THEME_PRESET_OPTIONS : DashboardThemePreset [ ] = [ "green" , "blue" ] ;
127- export const ACCENT_COLOR_OPTIONS : DashboardAccentColor [ ] = [
126+ const THEME_PRESET_OPTIONS : DashboardThemePreset [ ] = [ "green" , "blue" ] ;
127+ const ACCENT_COLOR_OPTIONS : DashboardAccentColor [ ] = [
128128 "green" ,
129129 "cyan" ,
130130 "blue" ,
131131 "yellow" ,
132132] ;
133133
134- export const ACCOUNT_LIST_PANEL_KEYS = [
134+ const ACCOUNT_LIST_PANEL_KEYS = [
135135 "menuShowStatusBadge" ,
136136 "menuShowCurrentBadge" ,
137137 "menuShowLastUsed" ,
@@ -147,7 +147,7 @@ export const ACCOUNT_LIST_PANEL_KEYS = [
147147 "menuLayoutMode" ,
148148] as const satisfies readonly DashboardSettingKey [ ] ;
149149
150- export const STATUSLINE_PANEL_KEYS = [
150+ const STATUSLINE_PANEL_KEYS = [
151151 "menuStatuslineFields" ,
152152] as const satisfies readonly DashboardSettingKey [ ] ;
153153export const BEHAVIOR_PANEL_KEYS = [
0 commit comments