@datagrok/helm 2.4.3 → 2.4.4

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.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@datagrok/helm",
3
3
  "friendlyName": "Helm",
4
- "version": "2.4.3",
4
+ "version": "2.4.4",
5
5
  "author": {
6
6
  "name": "Oleksandra Serhiienko",
7
7
  "email": "oserhiienko@datagrok.ai"
@@ -16,18 +16,18 @@
16
16
  "css/helm.css"
17
17
  ],
18
18
  "dependencies": {
19
- "@datagrok-libraries/bio": "^5.42.10",
19
+ "@datagrok-libraries/bio": "^5.42.11",
20
20
  "@datagrok-libraries/chem-meta": "^1.2.5",
21
- "@datagrok-libraries/utils": "^4.2.19",
21
+ "@datagrok-libraries/utils": "^4.2.29",
22
22
  "cash-dom": "^8.1.1",
23
- "datagrok-api": "^1.20.1",
23
+ "datagrok-api": "^1.20.0",
24
24
  "dayjs": "^1.10.6",
25
25
  "rxjs": "^6.5.5",
26
26
  "wu": "latest"
27
27
  },
28
28
  "devDependencies": {
29
- "@datagrok-libraries/helm-web-editor": "^1.1.9",
30
- "@datagrok-libraries/js-draw-lite": "^0.0.7",
29
+ "@datagrok-libraries/helm-web-editor": "^1.1.10",
30
+ "@datagrok-libraries/js-draw-lite": "^0.0.8",
31
31
  "@datagrok/bio": "^2.14.1",
32
32
  "@datagrok/chem": "^1.9.2",
33
33
  "@types/node": "17.0.45",
package/src/package.ts CHANGED
@@ -4,7 +4,6 @@ import * as ui from 'datagrok-api/ui';
4
4
  import * as DG from 'datagrok-api/dg';
5
5
 
6
6
  import $ from 'cash-dom';
7
- import {Unsubscribable} from 'rxjs';
8
7
 
9
8
  import {testEvent} from '@datagrok-libraries/utils/src/test';
10
9
  import {errorToConsole} from '@datagrok-libraries/utils/src/to-console';
@@ -28,7 +27,7 @@ import {getRS} from './utils/get-monomer-dummy';
28
27
  // Do not import anything than types from @datagrok/helm-web-editor/src/types
29
28
  import type {JSDraw2Module, OrgHelmModule, ScilModule} from './types';
30
29
 
31
- export const _package = new HelmPackage({debug: true});
30
+ export const _package = new HelmPackage(/*{debug: true}/**/);
32
31
 
33
32
  /*
34
33
  Loading modules:
@@ -111,7 +111,7 @@ export class HelmGridCellRendererBack extends CellRendererBackAsyncBase<HelmProp
111
111
  }
112
112
 
113
113
  onMouseMove(gridCell: DG.GridCell, e: MouseEvent): void {
114
- if (gridCell.tableRowIndex === null) return;
114
+ if (gridCell.tableRowIndex === null || !this._auxList) return;
115
115
  const aux = this._auxList[gridCell.tableRowIndex];
116
116
  if (!aux) return;
117
117