feat(map): refine sector inspector styling

This commit is contained in:
Codex
2026-08-06 12:10:26 +03:00
parent d4827009d4
commit e8729401fd
11 changed files with 437 additions and 26 deletions
+5
View File
@@ -492,6 +492,11 @@ const mapPageSettingsPatchInputSchema = {
volumeMinimumHeightMeters: { type: "number", minimum: -1000, maximum: 10000 },
volumeMaximumHeightMeters: { type: "number", minimum: -1000, maximum: 10000 },
volumeBandHeightMeters: { type: "number", minimum: 1, maximum: 10000 },
selectionFillColor: { type: "string", pattern: "^#[0-9A-Fa-f]{6}$" },
selectionFillOpacityPercent: { type: "number", minimum: 0, maximum: 100 },
selectionOutlineColor: { type: "string", pattern: "^#[0-9A-Fa-f]{6}$" },
selectionOutlineWidthPx: { type: "number", minimum: 1, maximum: 12 },
selectionOutlineOpacityPercent: { type: "number", minimum: 0, maximum: 100 },
},
},
},