@weng-lab/genomebrowser-ui 0.4.0-beta.0 → 0.4.0-beta.2

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.
@@ -9,6 +9,6 @@ export declare const defaultColumns: GridColDef<GeneRowInfo>[];
9
9
  */
10
10
  export declare const defaultGroupingModel: string[];
11
11
  /**
12
- * Leaf field - the unique identifier
12
+ * Leaf field - the raw track ID (without folder prefix) used as the tree view leaf label
13
13
  */
14
- export declare const defaultLeafField = "id";
14
+ export declare const defaultLeafField = "trackId";
@@ -17,6 +17,8 @@ export type GeneTrackInfo = {
17
17
  */
18
18
  export type GeneRowInfo = {
19
19
  id: string;
20
+ /** The raw track ID without the folder prefix, used as the tree view leaf label */
21
+ trackId: string;
20
22
  displayName: string;
21
23
  versions: number[];
22
24
  };