New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

seqviz

Package Overview
Dependencies
Maintainers
1
Versions
148
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

seqviz - npm Package Compare versions

Comparing version

to
2.0.2

46

CHANGELOG.md

@@ -9,1 +9,47 @@ # Changelog

## [Unreleased]
## [2.0.2]
### Added
- Add this Changelog
## [2.0.1]
### Fixed
- Change demo's seqviz dependency to `latest`
## [2.0.0]
### Changed
- Refactor direction property, in annotations, translations, searchResults, to -1, 0, 1, from "REVERSE", "NONE", and "FORWARD", respectively
- the string enums are still supported, but they're no longer the default
- Change the `row` property of searchResults to `direction` (either 1 or -1, for FWD or REV). Example below of a `searchResults` object from `options.onSearch()`:
```json
{
"searchResults": [
{
"start": 728,
"end": 733,
"direction": 1,
"index": 0
},
{
"start": 1788,
"end": 1793,
"direction": -1,
"index": 1
}
],
"searchIndex": 0
}
```
- Overhaul the README.md to match the changes above and add examples of translations, annotations, functions
### Removed
- Remove the `showAnnotations` options/prop. To avoid rendering `annotations`, we ask users to simply not provide `options.annotations` to the viewer

2

package.json
{
"name": "seqviz",
"version": "2.0.1",
"version": "2.0.2",
"private": false,

@@ -5,0 +5,0 @@ "description": "DNA sequence viewer supporting custom, GenBank, FASTA, NCBI accession, and iGEM part input",

@@ -11,3 +11,3 @@ <div align="center">

**Latest Production Build:** <!-- exec-bash(cmd:echo `date`) -->Mon Dec 16 15:39:40 EST 2019<!-- /exec-bash -->
**Latest Production Build:** <!-- exec-bash(cmd:echo `date`) -->Mon Dec 16 15:49:01 EST 2019<!-- /exec-bash -->

@@ -84,3 +84,3 @@ **Maintained by:** <!-- pkg-author(cmd:) -->[Lattice Automation](https://latticeautomation.com/)<!-- /pkg-author -->

```html
<script src="https://cdn.latticeautomation.com/libs/seqviz/2.0.1/seqviz.min.js"></script>
<script src="https://cdn.latticeautomation.com/libs/seqviz/2.0.2/seqviz.min.js"></script>
```

@@ -87,0 +87,0 @@ <!-- /cdn-example -->

Sorry, the diff of this file is too big to display