Releases: Lattice-Automation/seqviz
Releases · Lattice-Automation/seqviz
3.9.1
3.9.0
What's Changed
- Add selectAllEvent keyboard listener event (default is ctrl+A) by @Eng-Elias in #223
New Contributors
- @Eng-Elias made their first contribution in #223
Full Changelog: 3.8.11...3.9.0
3.8.11
3.8.10
What's Changed
- hide complement in circular viewer when showComplement is turned off by @bugzpodder in #218
Full Changelog: 3.8.8...3.8.10
3.8.8
What's Changed
- scroll to selection for managed states by @bugzpodder in #214
Full Changelog: 3.8.7...3.8.8
3.8.7
3.8.6
3.8.3
What's Changed
- Move to css-in-js approach by @jjtimmons in #198
before
import dynamic from "next/dynamic";
import * as React from "react";
const App = dynamic(() => import("../lib/App"), {
ssr: false,
});
after
import * as React from "react";
import App from "../lib/App";
export default () => <App />;
Full Changelog: 3.8.2...3.8.3
3.8.2
3.8.1
What's Changed
- clicking on sequence of circular viewer scrolls the linear viewer by @bugzpodder in #208
- keyboard presses are fixed -- eg clicking up/down/right/left moves the sequence cursor to that sequence by @bugzpodder in #209
Full Changelog: 3.8.0...3.8.1