@weng-lab/genomebrowser 1.7.2-beta.3 → 1.7.3

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.
@@ -6,4 +6,5 @@ export interface Highlight {
6
6
  end: number;
7
7
  };
8
8
  color: string;
9
+ opacity?: number;
9
10
  }
@@ -1,2 +1,2 @@
1
1
  import { LDProps } from './types';
2
- export default function LD({ id, data, height, color, dimensions, show, showScore, onClick, onHover, onLeave, tooltip }: LDProps): import("react/jsx-runtime").JSX.Element;
2
+ export default function LD({ id, data, height, color, dimensions, show, showScore, onClick, onHover, onLeave, tooltip, }: LDProps): import("react/jsx-runtime").JSX.Element;
@@ -1,7 +1,9 @@
1
1
  import { default as React } from 'react';
2
- declare function SwapTrack({ id, children, setSwapping, }: {
2
+ declare function SwapTrack({ id, children, setSwapping, height, width, }: {
3
3
  id: string;
4
4
  children: React.ReactNode;
5
5
  setSwapping: (swapping: boolean) => void;
6
+ height: number;
7
+ width: number;
6
8
  }): import("react/jsx-runtime").JSX.Element;
7
9
  export default SwapTrack;