feat: first cut at menu editor
This commit is contained in:
@@ -10,6 +10,7 @@ export type EditorRoute =
|
||||
| 'tags'
|
||||
| 'chat'
|
||||
| 'import'
|
||||
| 'menu-editor'
|
||||
| 'metadata-diff'
|
||||
| 'git-diff'
|
||||
| 'documentation'
|
||||
@@ -23,6 +24,7 @@ export const EDITOR_TAB_ROUTE_REGISTRY: Record<TabType, Exclude<EditorRoute, 'da
|
||||
tags: 'tags',
|
||||
chat: 'chat',
|
||||
import: 'import',
|
||||
'menu-editor': 'menu-editor',
|
||||
'metadata-diff': 'metadata-diff',
|
||||
'git-diff': 'git-diff',
|
||||
documentation: 'documentation',
|
||||
|
||||
@@ -4,6 +4,7 @@ export type SingletonToolTabKey =
|
||||
| 'settings'
|
||||
| 'tags'
|
||||
| 'style'
|
||||
| 'menu-editor'
|
||||
| 'documentation'
|
||||
| 'metadata-diff'
|
||||
| 'site-validation';
|
||||
@@ -22,6 +23,7 @@ const SINGLETON_TOOL_TAB_REGISTRY: Record<SingletonToolTabKey, CanonicalTabSpec>
|
||||
settings: { type: 'settings', id: 'settings', isTransient: false },
|
||||
tags: { type: 'tags', id: 'tags', isTransient: false },
|
||||
style: { type: 'style', id: 'style', isTransient: false },
|
||||
'menu-editor': { type: 'menu-editor', id: 'menu-editor', isTransient: false },
|
||||
documentation: { type: 'documentation', id: 'documentation', isTransient: false },
|
||||
'metadata-diff': { type: 'metadata-diff', id: 'metadata-diff', isTransient: false },
|
||||
'site-validation': { type: 'site-validation', id: 'site-validation', isTransient: false },
|
||||
|
||||
Reference in New Issue
Block a user