@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 CHANGED
@@ -15,10 +15,10 @@
15
15
  "@typescript-eslint"
16
16
  ],
17
17
  "rules": {
18
- "indent": ["error", 2, {"SwitchCase": 1}],
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 Unkown monomers breaking grid rendering.
18
+ * Fix Unknown monomers breaking grid rendering.
6
19
 
7
20
  ## 2.1.28 (2024-02-19)
8
21