feat(decodes): NEW STATE — badge and filter

The WAS gap made visible: a worked-states set joins the cluster status cache
(distinct states over the three US entities), the status entries carry a
NewState flag wherever the state resolves (log county first, ULS licence
second), and the decode panel gains the badge in its status column plus the
filter chip alongside NEW/BAND/MODE/GRID. Colour from the shared marker
palette, so the cluster can adopt it later without a second hue.
This commit is contained in:
2026-08-30 20:44:58 +02:00
parent 81ff6a9b0e
commit 52e98a71f4
8 changed files with 61 additions and 12 deletions
+2
View File
@@ -3957,6 +3957,7 @@ export namespace main {
new_county: boolean;
county?: string;
state?: string;
new_state: boolean;
new_pota: boolean;
grid?: string;
new_grid: boolean;
@@ -3983,6 +3984,7 @@ export namespace main {
this.new_county = source["new_county"];
this.county = source["county"];
this.state = source["state"];
this.new_state = source["new_state"];
this.new_pota = source["new_pota"];
this.grid = source["grid"];
this.new_grid = source["new_grid"];