|
| 1 | +import { PreferencePaneId } from '@/__mocks__/@standardnotes/snjs' |
1 | 2 | import { PreferencesMenuItem } from './PreferencesMenuItem' |
2 | 3 |
|
3 | 4 | export const PREFERENCES_MENU_ITEMS: PreferencesMenuItem[] = [ |
4 | | - { id: 'whats-new', label: "What's New", icon: 'asterisk', order: 0 }, |
5 | | - { id: 'account', label: 'Account', icon: 'user', order: 1 }, |
6 | | - { id: 'general', label: 'General', icon: 'settings', order: 3 }, |
7 | | - { id: 'security', label: 'Security', icon: 'security', order: 4 }, |
8 | | - { id: 'backups', label: 'Backups', icon: 'restore', order: 5 }, |
9 | | - { id: 'appearance', label: 'Appearance', icon: 'themes', order: 6 }, |
10 | | - { id: 'listed', label: 'Listed', icon: 'listed', order: 7 }, |
11 | | - { id: 'shortcuts', label: 'Shortcuts', icon: 'keyboard', order: 8 }, |
12 | | - { id: 'plugins', label: 'Plugins', icon: 'dashboard', order: 8 }, |
13 | | - { id: 'accessibility', label: 'Accessibility', icon: 'accessibility', order: 9 }, |
14 | | - { id: 'get-free-month', label: 'Get a free month', icon: 'star', order: 10 }, |
15 | | - { id: 'help-feedback', label: 'Help & feedback', icon: 'help', order: 11 }, |
| 5 | + { id: PreferencePaneId.WhatsNew, label: "What's New", icon: 'asterisk', order: 0 }, |
| 6 | + { id: PreferencePaneId.Account, label: 'Account', icon: 'user', order: 1 }, |
| 7 | + { id: PreferencePaneId.General, label: 'General', icon: 'settings', order: 3 }, |
| 8 | + { id: PreferencePaneId.Security, label: 'Security', icon: 'security', order: 4 }, |
| 9 | + { id: PreferencePaneId.Backups, label: 'Backups', icon: 'restore', order: 5 }, |
| 10 | + { id: PreferencePaneId.Appearance, label: 'Appearance', icon: 'themes', order: 6 }, |
| 11 | + { id: PreferencePaneId.Listed, label: 'Listed', icon: 'listed', order: 7 }, |
| 12 | + { id: PreferencePaneId.Shortcuts, label: 'Shortcuts', icon: 'keyboard', order: 8 }, |
| 13 | + { id: PreferencePaneId.Plugins, label: 'Plugins', icon: 'dashboard', order: 8 }, |
| 14 | + { id: PreferencePaneId.Accessibility, label: 'Accessibility', icon: 'accessibility', order: 9 }, |
| 15 | + { id: PreferencePaneId.GetFreeMonth, label: 'Get a free month', icon: 'star', order: 10 }, |
| 16 | + { id: PreferencePaneId.HelpFeedback, label: 'Help & feedback', icon: 'help', order: 11 }, |
16 | 17 | ] |
17 | 18 |
|
18 | 19 | export const READY_PREFERENCES_MENU_ITEMS: PreferencesMenuItem[] = [ |
19 | | - { id: 'whats-new', label: "What's New", icon: 'asterisk', order: 0 }, |
20 | | - { id: 'account', label: 'Account', icon: 'user', order: 1 }, |
21 | | - { id: 'general', label: 'General', icon: 'settings', order: 3 }, |
22 | | - { id: 'security', label: 'Security', icon: 'security', order: 4 }, |
23 | | - { id: 'backups', label: 'Backups', icon: 'restore', order: 5 }, |
24 | | - { id: 'appearance', label: 'Appearance', icon: 'themes', order: 6 }, |
25 | | - { id: 'listed', label: 'Listed', icon: 'listed', order: 7 }, |
26 | | - { id: 'plugins', label: 'Plugins', icon: 'dashboard', order: 8 }, |
27 | | - { id: 'help-feedback', label: 'Help & feedback', icon: 'help', order: 11 }, |
| 20 | + { id: PreferencePaneId.WhatsNew, label: "What's New", icon: 'asterisk', order: 0 }, |
| 21 | + { id: PreferencePaneId.Account, label: 'Account', icon: 'user', order: 1 }, |
| 22 | + { id: PreferencePaneId.General, label: 'General', icon: 'settings', order: 3 }, |
| 23 | + { id: PreferencePaneId.Security, label: 'Security', icon: 'security', order: 4 }, |
| 24 | + { id: PreferencePaneId.Backups, label: 'Backups', icon: 'restore', order: 5 }, |
| 25 | + { id: PreferencePaneId.Appearance, label: 'Appearance', icon: 'themes', order: 6 }, |
| 26 | + { id: PreferencePaneId.Listed, label: 'Listed', icon: 'listed', order: 7 }, |
| 27 | + { id: PreferencePaneId.Plugins, label: 'Plugins', icon: 'dashboard', order: 8 }, |
| 28 | + { id: PreferencePaneId.HelpFeedback, label: 'Help & feedback', icon: 'help', order: 11 }, |
28 | 29 | ] |
0 commit comments