@jbrowse/plugin-variants 4.1.3 → 4.1.5

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.
Files changed (41) hide show
  1. package/esm/ChordVariantDisplay/models/configSchema.d.ts +2 -2
  2. package/esm/LDDisplay/SharedLDConfigSchema.d.ts +3 -3
  3. package/esm/LDDisplay/components/LDDisplayComponent.js +3 -1
  4. package/esm/LDDisplay/components/LinesConnectingMatrixToGenomicPosition.d.ts +0 -9
  5. package/esm/LDDisplay/components/LinesConnectingMatrixToGenomicPosition.js +3 -29
  6. package/esm/LDDisplay/components/VariantLabels.d.ts +5 -0
  7. package/esm/LDDisplay/components/VariantLabels.js +27 -0
  8. package/esm/LDDisplay/components/Wrapper.d.ts +8 -0
  9. package/esm/LDDisplay/components/Wrapper.js +16 -0
  10. package/esm/LDDisplay/configSchema1.d.ts +6 -6
  11. package/esm/LDDisplay/configSchema2.d.ts +6 -6
  12. package/esm/LDDisplay/renderSvg.js +3 -1
  13. package/esm/LDRenderer/configSchema.d.ts +2 -2
  14. package/esm/LDTrack/configSchema.d.ts +8 -8
  15. package/esm/LinearVariantDisplay/configSchema.d.ts +3 -3
  16. package/esm/LinearVariantDisplay/model.d.ts +18 -8
  17. package/esm/MultiLinearVariantDisplay/configSchema.d.ts +6 -6
  18. package/esm/MultiLinearVariantDisplay/model.d.ts +72 -18
  19. package/esm/MultiLinearVariantMatrixDisplay/configSchema.d.ts +5 -5
  20. package/esm/MultiLinearVariantMatrixDisplay/model.d.ts +76 -20
  21. package/esm/MultiLinearVariantMatrixRenderer/configSchema.d.ts +1 -1
  22. package/esm/MultiLinearVariantRenderer/configSchema.d.ts +1 -1
  23. package/esm/PlinkLDAdapter/configSchema.d.ts +2 -2
  24. package/esm/PlinkLDAdapter/configSchemaTabix.d.ts +4 -4
  25. package/esm/SplitVcfTabixAdapter/configSchema.d.ts +2 -2
  26. package/esm/StructuralVariantChordRenderer/configSchema.d.ts +2 -2
  27. package/esm/VariantFeatureWidget/configSchema.d.ts +1 -1
  28. package/esm/VariantFeatureWidget/stateModelFactory.d.ts +2 -2
  29. package/esm/VariantTrack/configSchema.d.ts +8 -8
  30. package/esm/VcfAdapter/configSchema.d.ts +2 -2
  31. package/esm/VcfTabixAdapter/configSchema.d.ts +4 -4
  32. package/esm/shared/MultiVariantBaseModel.d.ts +76 -20
  33. package/esm/shared/MultiVariantBaseModel.js +53 -3
  34. package/esm/shared/SharedVariantConfigSchema.d.ts +3 -3
  35. package/esm/shared/components/RectBg.js +3 -1
  36. package/esm/shared/components/TreeSidebar.js +38 -5
  37. package/esm/shared/components/types.d.ts +2 -0
  38. package/esm/shared/constants.d.ts +1 -0
  39. package/esm/shared/constants.js +1 -0
  40. package/esm/shared/makeSidebarSvg.js +3 -2
  41. package/package.json +8 -8
@@ -35,6 +35,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
35
35
  statusMessage?: string;
36
36
  reactElement?: React.ReactElement;
37
37
  isRenderingPending?: boolean;
38
+ displayHeight?: number;
38
39
  };
39
40
  }) => import("react/jsx-runtime").JSX.Element;
40
41
  renderProps: any;
@@ -53,10 +54,11 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
53
54
  beforeDestroy(): void;
54
55
  } & {
55
56
  readonly statusMessage: any;
57
+ readonly displayHeight: number | undefined;
56
58
  } & {
57
59
  afterAttach(): void;
58
60
  }, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
59
- configuration: import("node_modules/@jbrowse/core/src/configuration/configurationSchema.ts").ConfigurationSchemaType<{
61
+ configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
60
62
  maxFeatureScreenDensity: {
61
63
  type: string;
62
64
  description: string;
@@ -83,7 +85,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
83
85
  description: string;
84
86
  defaultValue: never[];
85
87
  };
86
- }, import("node_modules/@jbrowse/core/src/configuration/configurationSchema.ts").ConfigurationSchemaOptions<undefined, "displayId">>;
88
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
87
89
  showLegend: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
88
90
  showTooltips: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
89
91
  } & {
@@ -104,6 +106,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
104
106
  clusterTree: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<string>>;
105
107
  treeAreaWidth: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
106
108
  lineZoneHeight: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
109
+ subtreeFilter: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").IArrayType<import("@jbrowse/mobx-state-tree").ISimpleType<string>>>;
107
110
  } & {
108
111
  type: import("@jbrowse/mobx-state-tree").ISimpleType<"MultiLinearVariantDisplay">;
109
112
  }, {
@@ -394,6 +397,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
394
397
  statusMessage?: string;
395
398
  reactElement?: React.ReactElement;
396
399
  isRenderingPending?: boolean;
400
+ displayHeight?: number;
397
401
  };
398
402
  }) => import("react/jsx-runtime").JSX.Element;
399
403
  renderProps: any;
@@ -412,6 +416,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
412
416
  beforeDestroy(): void;
413
417
  } & {
414
418
  readonly statusMessage: any;
419
+ readonly displayHeight: number | undefined;
415
420
  } & {
416
421
  afterAttach(): void;
417
422
  }, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>> & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/mobx-state-tree").IMapType<import("@jbrowse/mobx-state-tree").IModelType<{
@@ -438,6 +443,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
438
443
  statusMessage?: string;
439
444
  reactElement?: React.ReactElement;
440
445
  isRenderingPending?: boolean;
446
+ displayHeight?: number;
441
447
  };
442
448
  }) => import("react/jsx-runtime").JSX.Element;
443
449
  renderProps: any;
@@ -456,6 +462,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
456
462
  beforeDestroy(): void;
457
463
  } & {
458
464
  readonly statusMessage: any;
465
+ readonly displayHeight: number | undefined;
459
466
  } & {
460
467
  afterAttach(): void;
461
468
  }, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>>;
@@ -469,7 +476,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
469
476
  [x: string]: any;
470
477
  } & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & any & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
471
478
  } & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
472
- } & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("node_modules/@jbrowse/core/src/configuration/configurationSchema.ts").ConfigurationSchemaType<{
479
+ } & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
473
480
  maxFeatureScreenDensity: {
474
481
  type: string;
475
482
  description: string;
@@ -496,7 +503,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
496
503
  description: string;
497
504
  defaultValue: never[];
498
505
  };
499
- }, import("node_modules/@jbrowse/core/src/configuration/configurationSchema.ts").ConfigurationSchemaOptions<undefined, "displayId">>>;
506
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>>;
500
507
  showLegend: boolean | undefined;
501
508
  showTooltips: boolean | undefined;
502
509
  } & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & {
@@ -786,6 +793,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
786
793
  statusMessage?: string;
787
794
  reactElement?: React.ReactElement;
788
795
  isRenderingPending?: boolean;
796
+ displayHeight?: number;
789
797
  };
790
798
  }) => import("react/jsx-runtime").JSX.Element;
791
799
  renderProps: any;
@@ -804,10 +812,11 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
804
812
  beforeDestroy(): void;
805
813
  } & {
806
814
  readonly statusMessage: any;
815
+ readonly displayHeight: number | undefined;
807
816
  } & {
808
817
  afterAttach(): void;
809
818
  }, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
810
- configuration: import("node_modules/@jbrowse/core/src/configuration/configurationSchema.ts").ConfigurationSchemaType<{
819
+ configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
811
820
  maxFeatureScreenDensity: {
812
821
  type: string;
813
822
  description: string;
@@ -834,7 +843,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
834
843
  description: string;
835
844
  defaultValue: never[];
836
845
  };
837
- }, import("node_modules/@jbrowse/core/src/configuration/configurationSchema.ts").ConfigurationSchemaOptions<undefined, "displayId">>;
846
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
838
847
  showLegend: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
839
848
  showTooltips: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
840
849
  }, {
@@ -1144,6 +1153,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
1144
1153
  setMafFilter(arg: number): void;
1145
1154
  setShowSidebarLabels(arg: boolean): void;
1146
1155
  setShowTree(arg: boolean): void;
1156
+ setSubtreeFilter(names?: string[]): void;
1147
1157
  setPhasedMode(arg: string): void;
1148
1158
  setAutoHeight(auto: boolean): void;
1149
1159
  setHasPhased(arg: boolean): void;
@@ -1189,6 +1199,13 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
1189
1199
  disabled: boolean;
1190
1200
  onClick: () => void;
1191
1201
  helpText?: undefined;
1202
+ } | {
1203
+ label: string;
1204
+ onClick: () => void;
1205
+ type?: undefined;
1206
+ checked?: undefined;
1207
+ disabled?: undefined;
1208
+ helpText?: undefined;
1192
1209
  } | {
1193
1210
  label: string;
1194
1211
  helpText: string;
@@ -1308,6 +1325,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
1308
1325
  statusMessage?: string;
1309
1326
  reactElement?: React.ReactElement;
1310
1327
  isRenderingPending?: boolean;
1328
+ displayHeight?: number;
1311
1329
  };
1312
1330
  }) => import("react/jsx-runtime").JSX.Element;
1313
1331
  renderProps: any;
@@ -1326,6 +1344,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
1326
1344
  beforeDestroy(): void;
1327
1345
  } & {
1328
1346
  readonly statusMessage: any;
1347
+ readonly displayHeight: number | undefined;
1329
1348
  } & {
1330
1349
  afterAttach(): void;
1331
1350
  }, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>> & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/mobx-state-tree").IMapType<import("@jbrowse/mobx-state-tree").IModelType<{
@@ -1352,6 +1371,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
1352
1371
  statusMessage?: string;
1353
1372
  reactElement?: React.ReactElement;
1354
1373
  isRenderingPending?: boolean;
1374
+ displayHeight?: number;
1355
1375
  };
1356
1376
  }) => import("react/jsx-runtime").JSX.Element;
1357
1377
  renderProps: any;
@@ -1370,6 +1390,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
1370
1390
  beforeDestroy(): void;
1371
1391
  } & {
1372
1392
  readonly statusMessage: any;
1393
+ readonly displayHeight: number | undefined;
1373
1394
  } & {
1374
1395
  afterAttach(): void;
1375
1396
  }, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>>;
@@ -1383,7 +1404,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
1383
1404
  [x: string]: any;
1384
1405
  } & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & any & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
1385
1406
  } & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
1386
- } & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("node_modules/@jbrowse/core/src/configuration/configurationSchema.ts").ConfigurationSchemaType<{
1407
+ } & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
1387
1408
  maxFeatureScreenDensity: {
1388
1409
  type: string;
1389
1410
  description: string;
@@ -1410,7 +1431,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
1410
1431
  description: string;
1411
1432
  defaultValue: never[];
1412
1433
  };
1413
- }, import("node_modules/@jbrowse/core/src/configuration/configurationSchema.ts").ConfigurationSchemaOptions<undefined, "displayId">> & AnyConfigurationSchemaType> & {
1434
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">> & AnyConfigurationSchemaType> & {
1414
1435
  setSubschema(slotName: string, data: Record<string, unknown>): Record<string, unknown> | ({
1415
1436
  [x: string]: any;
1416
1437
  } & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & any & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
@@ -1429,6 +1450,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
1429
1450
  clusterTree: string | undefined;
1430
1451
  treeAreaWidth: number;
1431
1452
  lineZoneHeight: number;
1453
+ subtreeFilter: (import("@jbrowse/mobx-state-tree").IMSTArray<import("@jbrowse/mobx-state-tree").ISimpleType<string>> & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").IArrayType<import("@jbrowse/mobx-state-tree").ISimpleType<string>>>>) | undefined;
1432
1454
  } & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & {
1433
1455
  rendererTypeName: string;
1434
1456
  error: unknown;
@@ -1717,6 +1739,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
1717
1739
  statusMessage?: string;
1718
1740
  reactElement?: React.ReactElement;
1719
1741
  isRenderingPending?: boolean;
1742
+ displayHeight?: number;
1720
1743
  };
1721
1744
  }) => import("react/jsx-runtime").JSX.Element;
1722
1745
  renderProps: any;
@@ -1735,6 +1758,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
1735
1758
  beforeDestroy(): void;
1736
1759
  } & {
1737
1760
  readonly statusMessage: any;
1761
+ readonly displayHeight: number | undefined;
1738
1762
  } & {
1739
1763
  afterAttach(): void;
1740
1764
  }, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>> & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/mobx-state-tree").IMapType<import("@jbrowse/mobx-state-tree").IModelType<{
@@ -1761,6 +1785,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
1761
1785
  statusMessage?: string;
1762
1786
  reactElement?: React.ReactElement;
1763
1787
  isRenderingPending?: boolean;
1788
+ displayHeight?: number;
1764
1789
  };
1765
1790
  }) => import("react/jsx-runtime").JSX.Element;
1766
1791
  renderProps: any;
@@ -1779,6 +1804,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
1779
1804
  beforeDestroy(): void;
1780
1805
  } & {
1781
1806
  readonly statusMessage: any;
1807
+ readonly displayHeight: number | undefined;
1782
1808
  } & {
1783
1809
  afterAttach(): void;
1784
1810
  }, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>>;
@@ -1792,7 +1818,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
1792
1818
  [x: string]: any;
1793
1819
  } & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & any & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
1794
1820
  } & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
1795
- } & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("node_modules/@jbrowse/core/src/configuration/configurationSchema.ts").ConfigurationSchemaType<{
1821
+ } & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
1796
1822
  maxFeatureScreenDensity: {
1797
1823
  type: string;
1798
1824
  description: string;
@@ -1819,7 +1845,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
1819
1845
  description: string;
1820
1846
  defaultValue: never[];
1821
1847
  };
1822
- }, import("node_modules/@jbrowse/core/src/configuration/configurationSchema.ts").ConfigurationSchemaOptions<undefined, "displayId">>>;
1848
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>>;
1823
1849
  showLegend: boolean | undefined;
1824
1850
  showTooltips: boolean | undefined;
1825
1851
  } & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & {
@@ -2109,6 +2135,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
2109
2135
  statusMessage?: string;
2110
2136
  reactElement?: React.ReactElement;
2111
2137
  isRenderingPending?: boolean;
2138
+ displayHeight?: number;
2112
2139
  };
2113
2140
  }) => import("react/jsx-runtime").JSX.Element;
2114
2141
  renderProps: any;
@@ -2127,10 +2154,11 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
2127
2154
  beforeDestroy(): void;
2128
2155
  } & {
2129
2156
  readonly statusMessage: any;
2157
+ readonly displayHeight: number | undefined;
2130
2158
  } & {
2131
2159
  afterAttach(): void;
2132
2160
  }, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
2133
- configuration: import("node_modules/@jbrowse/core/src/configuration/configurationSchema.ts").ConfigurationSchemaType<{
2161
+ configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
2134
2162
  maxFeatureScreenDensity: {
2135
2163
  type: string;
2136
2164
  description: string;
@@ -2157,7 +2185,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
2157
2185
  description: string;
2158
2186
  defaultValue: never[];
2159
2187
  };
2160
- }, import("node_modules/@jbrowse/core/src/configuration/configurationSchema.ts").ConfigurationSchemaOptions<undefined, "displayId">>;
2188
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
2161
2189
  showLegend: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
2162
2190
  showTooltips: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
2163
2191
  }, {
@@ -2467,6 +2495,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
2467
2495
  setMafFilter(arg: number): void;
2468
2496
  setShowSidebarLabels(arg: boolean): void;
2469
2497
  setShowTree(arg: boolean): void;
2498
+ setSubtreeFilter(names?: string[]): void;
2470
2499
  setPhasedMode(arg: string): void;
2471
2500
  setAutoHeight(auto: boolean): void;
2472
2501
  setHasPhased(arg: boolean): void;
@@ -2512,6 +2541,13 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
2512
2541
  disabled: boolean;
2513
2542
  onClick: () => void;
2514
2543
  helpText?: undefined;
2544
+ } | {
2545
+ label: string;
2546
+ onClick: () => void;
2547
+ type?: undefined;
2548
+ checked?: undefined;
2549
+ disabled?: undefined;
2550
+ helpText?: undefined;
2515
2551
  } | {
2516
2552
  label: string;
2517
2553
  helpText: string;
@@ -2631,6 +2667,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
2631
2667
  statusMessage?: string;
2632
2668
  reactElement?: React.ReactElement;
2633
2669
  isRenderingPending?: boolean;
2670
+ displayHeight?: number;
2634
2671
  };
2635
2672
  }) => import("react/jsx-runtime").JSX.Element;
2636
2673
  renderProps: any;
@@ -2649,10 +2686,11 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
2649
2686
  beforeDestroy(): void;
2650
2687
  } & {
2651
2688
  readonly statusMessage: any;
2689
+ readonly displayHeight: number | undefined;
2652
2690
  } & {
2653
2691
  afterAttach(): void;
2654
2692
  }, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
2655
- configuration: import("node_modules/@jbrowse/core/src/configuration/configurationSchema.ts").ConfigurationSchemaType<{
2693
+ configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
2656
2694
  maxFeatureScreenDensity: {
2657
2695
  type: string;
2658
2696
  description: string;
@@ -2679,7 +2717,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
2679
2717
  description: string;
2680
2718
  defaultValue: never[];
2681
2719
  };
2682
- }, import("node_modules/@jbrowse/core/src/configuration/configurationSchema.ts").ConfigurationSchemaOptions<undefined, "displayId">>;
2720
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
2683
2721
  showLegend: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
2684
2722
  showTooltips: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
2685
2723
  } & {
@@ -2700,6 +2738,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
2700
2738
  clusterTree: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<string>>;
2701
2739
  treeAreaWidth: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
2702
2740
  lineZoneHeight: import("@jbrowse/mobx-state-tree").IOptionalIType<import("@jbrowse/mobx-state-tree").ISimpleType<number>, [undefined]>;
2741
+ subtreeFilter: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").IArrayType<import("@jbrowse/mobx-state-tree").ISimpleType<string>>>;
2703
2742
  }, {
2704
2743
  rendererTypeName: string;
2705
2744
  error: unknown;
@@ -2988,6 +3027,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
2988
3027
  statusMessage?: string;
2989
3028
  reactElement?: React.ReactElement;
2990
3029
  isRenderingPending?: boolean;
3030
+ displayHeight?: number;
2991
3031
  };
2992
3032
  }) => import("react/jsx-runtime").JSX.Element;
2993
3033
  renderProps: any;
@@ -3006,6 +3046,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
3006
3046
  beforeDestroy(): void;
3007
3047
  } & {
3008
3048
  readonly statusMessage: any;
3049
+ readonly displayHeight: number | undefined;
3009
3050
  } & {
3010
3051
  afterAttach(): void;
3011
3052
  }, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>> & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/mobx-state-tree").IMapType<import("@jbrowse/mobx-state-tree").IModelType<{
@@ -3032,6 +3073,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
3032
3073
  statusMessage?: string;
3033
3074
  reactElement?: React.ReactElement;
3034
3075
  isRenderingPending?: boolean;
3076
+ displayHeight?: number;
3035
3077
  };
3036
3078
  }) => import("react/jsx-runtime").JSX.Element;
3037
3079
  renderProps: any;
@@ -3050,6 +3092,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
3050
3092
  beforeDestroy(): void;
3051
3093
  } & {
3052
3094
  readonly statusMessage: any;
3095
+ readonly displayHeight: number | undefined;
3053
3096
  } & {
3054
3097
  afterAttach(): void;
3055
3098
  }, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>>;
@@ -3063,7 +3106,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
3063
3106
  [x: string]: any;
3064
3107
  } & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & any & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
3065
3108
  } & import("@jbrowse/mobx-state-tree").IStateTreeNode<AnyConfigurationSchemaType>);
3066
- } & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("node_modules/@jbrowse/core/src/configuration/configurationSchema.ts").ConfigurationSchemaType<{
3109
+ } & import("@jbrowse/mobx-state-tree").IStateTreeNode<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
3067
3110
  maxFeatureScreenDensity: {
3068
3111
  type: string;
3069
3112
  description: string;
@@ -3090,7 +3133,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
3090
3133
  description: string;
3091
3134
  defaultValue: never[];
3092
3135
  };
3093
- }, import("node_modules/@jbrowse/core/src/configuration/configurationSchema.ts").ConfigurationSchemaOptions<undefined, "displayId">>>;
3136
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>>;
3094
3137
  showLegend: boolean | undefined;
3095
3138
  showTooltips: boolean | undefined;
3096
3139
  } & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & {
@@ -3380,6 +3423,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
3380
3423
  statusMessage?: string;
3381
3424
  reactElement?: React.ReactElement;
3382
3425
  isRenderingPending?: boolean;
3426
+ displayHeight?: number;
3383
3427
  };
3384
3428
  }) => import("react/jsx-runtime").JSX.Element;
3385
3429
  renderProps: any;
@@ -3398,10 +3442,11 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
3398
3442
  beforeDestroy(): void;
3399
3443
  } & {
3400
3444
  readonly statusMessage: any;
3445
+ readonly displayHeight: number | undefined;
3401
3446
  } & {
3402
3447
  afterAttach(): void;
3403
3448
  }, import("@jbrowse/mobx-state-tree")._NotCustomized, import("@jbrowse/mobx-state-tree")._NotCustomized>>;
3404
- configuration: import("node_modules/@jbrowse/core/src/configuration/configurationSchema.ts").ConfigurationSchemaType<{
3449
+ configuration: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
3405
3450
  maxFeatureScreenDensity: {
3406
3451
  type: string;
3407
3452
  description: string;
@@ -3428,7 +3473,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
3428
3473
  description: string;
3429
3474
  defaultValue: never[];
3430
3475
  };
3431
- }, import("node_modules/@jbrowse/core/src/configuration/configurationSchema.ts").ConfigurationSchemaOptions<undefined, "displayId">>;
3476
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>;
3432
3477
  showLegend: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
3433
3478
  showTooltips: import("@jbrowse/mobx-state-tree").IMaybe<import("@jbrowse/mobx-state-tree").ISimpleType<boolean>>;
3434
3479
  }, {
@@ -3738,6 +3783,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
3738
3783
  setMafFilter(arg: number): void;
3739
3784
  setShowSidebarLabels(arg: boolean): void;
3740
3785
  setShowTree(arg: boolean): void;
3786
+ setSubtreeFilter(names?: string[]): void;
3741
3787
  setPhasedMode(arg: string): void;
3742
3788
  setAutoHeight(auto: boolean): void;
3743
3789
  setHasPhased(arg: boolean): void;
@@ -3783,6 +3829,13 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
3783
3829
  disabled: boolean;
3784
3830
  onClick: () => void;
3785
3831
  helpText?: undefined;
3832
+ } | {
3833
+ label: string;
3834
+ onClick: () => void;
3835
+ type?: undefined;
3836
+ checked?: undefined;
3837
+ disabled?: undefined;
3838
+ helpText?: undefined;
3786
3839
  } | {
3787
3840
  label: string;
3788
3841
  helpText: string;
@@ -3911,6 +3964,7 @@ export declare function stateModelFactory(configSchema: AnyConfigurationSchemaTy
3911
3964
  clusterTree: string | undefined;
3912
3965
  treeAreaWidth: number;
3913
3966
  lineZoneHeight: number;
3967
+ subtreeFilter: string[] | undefined;
3914
3968
  } & import("@jbrowse/mobx-state-tree/dist/internal").NonEmptyObject & import("@jbrowse/mobx-state-tree")._NotCustomized>;
3915
3969
  export type MultiLinearVariantDisplayStateModel = ReturnType<typeof stateModelFactory>;
3916
3970
  export type MultiLinearVariantDisplayModel = Instance<MultiLinearVariantDisplayStateModel>;
@@ -1,6 +1,6 @@
1
1
  import type PluginManager from '@jbrowse/core/PluginManager';
2
- export default function configSchemaF(pluginManager: PluginManager): import("node_modules/@jbrowse/core/src/configuration/configurationSchema.ts").ConfigurationSchemaType<{
3
- renderer: import("node_modules/@jbrowse/core/src/configuration/configurationSchema.ts").ConfigurationSchemaType<{}, import("node_modules/@jbrowse/core/src/configuration/configurationSchema.ts").ConfigurationSchemaOptions<undefined, undefined>>;
2
+ export default function configSchemaF(pluginManager: PluginManager): import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
3
+ renderer: import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{}, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, undefined>>;
4
4
  height: {
5
5
  type: string;
6
6
  defaultValue: number;
@@ -30,9 +30,9 @@ export default function configSchemaF(pluginManager: PluginManager): import("nod
30
30
  type: string;
31
31
  defaultValue: string;
32
32
  };
33
- }, import("node_modules/@jbrowse/core/src/configuration/configurationSchema.ts").ConfigurationSchemaOptions<import("node_modules/@jbrowse/core/src/configuration/configurationSchema.ts").ConfigurationSchemaType<{
33
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
34
34
  renderer: import("@jbrowse/mobx-state-tree").IAnyModelType;
35
- }, import("node_modules/@jbrowse/core/src/configuration/configurationSchema.ts").ConfigurationSchemaOptions<import("node_modules/@jbrowse/core/src/configuration/configurationSchema.ts").ConfigurationSchemaType<{
35
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaType<{
36
36
  maxFeatureScreenDensity: {
37
37
  type: string;
38
38
  description: string;
@@ -59,4 +59,4 @@ export default function configSchemaF(pluginManager: PluginManager): import("nod
59
59
  description: string;
60
60
  defaultValue: never[];
61
61
  };
62
- }, import("node_modules/@jbrowse/core/src/configuration/configurationSchema.ts").ConfigurationSchemaOptions<undefined, "displayId">>, undefined>>, undefined>>;
62
+ }, import("@jbrowse/core/configuration/configurationSchema").ConfigurationSchemaOptions<undefined, "displayId">>, undefined>>, undefined>>;