Skip to content

Commit

Permalink
HWE: Public Mol.name attribute (bump JSDraw dependency version)
Browse files Browse the repository at this point in the history
  • Loading branch information
tanas80 committed Aug 27, 2024
1 parent 3ade909 commit 67370e1
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
4 changes: 4 additions & 0 deletions HELM/source/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# HELMWebEditor changelog

## 1.1.10 (2024-08-27)

Public Mol.name attribute (bump JSDraw dependency version)

## 1.1.9 (2024-08-19)

* Fix fill-in Helm tab while default
Expand Down
6 changes: 2 additions & 4 deletions HELM/source/helm/IO.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,6 @@ export class IO {
};
this.getHelm2(m, highlightselection, ret);

const t = typeof ret;

for (const k in ret.chains) {
const chain = ret.chains[k];
const a = chain[0];
Expand Down Expand Up @@ -343,7 +341,7 @@ export class IO {
return true;
}

getHelmString(ret, highlightselection) {
getHelmString(ret: HelmParseRetType, highlightselection) {
let s = "";
const keys = [];
for (const k in ret.sequences)
Expand All @@ -365,7 +363,7 @@ export class IO {
s += "$";
const groups = [];
for (let i = 0; i < ret.connections.length; ++i) {
const c = ret.connections[i];
const c: HelmParseConnectionType = ret.connections[i];
s += (++count > 1 ? "|" : "") + this.renderConnection(ret, c);
if ((c.ratio1 > 0 || c.ratio1 == "?") && (c.ratio2 > 0 || c.ratio1 == "?")) {
const s2 = c.c1 + ":" + c.ratio1 + "+" + c.c2 + ":" + c.ratio2;
Expand Down
4 changes: 2 additions & 2 deletions HELM/source/package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "@datagrok-libraries/helm-web-editor",
"friendlyName": "HELMWebEditor",
"version": "1.1.9",
"version": "1.1.10",
"description": "HELMWebEditor forked from Pistoia Alliance",
"dependencies": {
"@datagrok-libraries/js-draw-lite": "^0.0.7"
"@datagrok-libraries/js-draw-lite": "^0.0.8"
},
"devDependencies": {
"@types/node": "^18.11.18",
Expand Down

0 comments on commit 67370e1

Please sign in to comment.