Add JSON page routing support

This commit is contained in:
2026-01-18 17:15:39 +00:00
parent 6388880362
commit 7be52ffc1e
4 changed files with 78 additions and 7 deletions

View File

@@ -1,3 +1,4 @@
import { PageSchema } from './json-ui'
import { PropConfig } from './prop-config'
import { ResizableConfig } from './resizable-config'
@@ -6,7 +7,9 @@ export interface PageConfig {
title: string
icon: string
component?: string
schema?: string
type?: 'json' | 'component'
schemaPath?: string
schema?: PageSchema
enabled: boolean
isRoot?: boolean
toggleKey?: string