@softwarity/geojson-editor 1.0.18 → 1.0.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -47,6 +47,7 @@ export interface LineMeta {
47
47
  isHidden: boolean;
48
48
  isCollapsed: boolean;
49
49
  featureKey: string | null;
50
+ hasError: boolean;
50
51
  }
51
52
 
52
53
  /** Visible line data */
@@ -68,15 +69,10 @@ export interface NodeRangeInfo {
68
69
  startLine: number;
69
70
  endLine: number;
70
71
  nodeKey?: string;
72
+ uniqueKey?: string; // nodeKey:occurrence - stable identifier across rebuilds
71
73
  isRootFeature?: boolean;
72
74
  }
73
75
 
74
- /** Collapsible range info */
75
- export interface CollapsibleRange extends NodeRangeInfo {
76
- nodeId: string;
77
- openBracket: string;
78
- }
79
-
80
76
  /** Editor state snapshot for undo/redo */
81
77
  export interface EditorSnapshot {
82
78
  lines: string[];
@@ -91,12 +87,6 @@ export interface BracketCount {
91
87
  close: number;
92
88
  }
93
89
 
94
- /** Context stack item */
95
- export interface ContextStackItem {
96
- context: string;
97
- isArray: boolean;
98
- }
99
-
100
90
  /** Collapsed zone context for keydown handlers */
101
91
  export interface CollapsedZoneContext {
102
92
  inCollapsedZone: CollapsedNodeInfo | null;