@datagrok/helm 2.1.29 → 2.1.31
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/.eslintrc.json +2 -2
- package/CHANGELOG.md +14 -1
- package/dist/package-test.js +1 -1
- package/dist/package-test.js.map +1 -1
- package/dist/package.js +1 -1
- package/dist/package.js.map +1 -1
- package/files/tests/sample_HELM-missedInLib.csv +1 -1
- package/package.json +6 -5
- package/src/cell-renderer.ts +64 -69
- package/src/helm-monomer-placer.ts +1 -0
- package/src/package.ts +17 -15
- package/src/tests/findMonomers-tests.ts +3 -2
- package/src/tests/get-molfiles.ts +3 -2
- package/src/tests/properties-widget-tests.ts +2 -2
- package/src/utils/index.ts +18 -8
- package/src/widgets/properties-widget.ts +8 -7
package/.eslintrc.json
CHANGED
|
@@ -15,10 +15,10 @@
|
|
|
15
15
|
"@typescript-eslint"
|
|
16
16
|
],
|
|
17
17
|
"rules": {
|
|
18
|
-
"indent": ["error", 2, {"SwitchCase":
|
|
18
|
+
"indent": ["error", 2, {"SwitchCase": 0}],
|
|
19
19
|
"max-len": ["error", 120],
|
|
20
20
|
"no-unused-vars": "off",
|
|
21
|
-
"@typescript-eslint/no-unused-vars": "warn",
|
|
21
|
+
"@typescript-eslint/no-unused-vars": ["warn", { "varsIgnorePattern": "^(_|ui$|grok$|DG$)", "argsIgnorePattern": "^_"}],
|
|
22
22
|
"require-jsdoc": "off",
|
|
23
23
|
"valid-jsdoc": "warn",
|
|
24
24
|
"spaced-comment": "off",
|
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,21 @@
|
|
|
1
1
|
# Helm changelog
|
|
2
2
|
|
|
3
|
+
## 2.1.31 (2024-03-30)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* #2707: Add original and canonical to monomer
|
|
8
|
+
* Bump dependencies versions
|
|
9
|
+
|
|
10
|
+
## 2.1.30 (2024-03-13)
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
|
|
14
|
+
* Add tooltip for sequence with missed monomers
|
|
15
|
+
|
|
3
16
|
## 2.1.29 (2024-02-21)
|
|
4
17
|
|
|
5
|
-
* Fix
|
|
18
|
+
* Fix Unknown monomers breaking grid rendering.
|
|
6
19
|
|
|
7
20
|
## 2.1.28 (2024-02-19)
|
|
8
21
|
|