feat(network): add GroupNode component with resize, inline label, and group type colors

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
chihlasm
2026-04-13 20:13:03 +00:00
parent 764db79060
commit a4512dcf90
3 changed files with 93 additions and 1 deletions

View File

@@ -123,6 +123,12 @@ export interface DiagramImportResponse {
warnings: string[]
}
export interface GroupNodeData {
label: string
groupType: 'subnet' | 'vlan' | 'site' | 'dmz' | 'custom'
[key: string]: unknown
}
export interface DiagramExportResponse {
schemaVersion: number
name: string