@datagrok/bio 2.12.16 → 2.12.17
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/CHANGELOG.md +11 -0
- package/dist/package-test.js +2 -2
- package/dist/package-test.js.map +1 -1
- package/dist/package.js +3 -3
- package/dist/package.js.map +1 -1
- package/package.json +6 -6
- package/src/package.ts +15 -37
- package/src/tests/renderers-monomer-placer-tests.ts +1 -1
- package/src/utils/cell-renderer.ts +10 -28
- package/src/utils/{poly-tool/cyclized.ts → cyclized.ts} +3 -7
- package/src/utils/monomer-lib/monomer-lib.ts +14 -2
- package/src/widgets/bio-substructure-filter-helm.ts +5 -4
- package/src/widgets/bio-substructure-filter.ts +0 -1
- package/webpack.config.js +2 -0
- package/src/utils/poly-tool/const.ts +0 -40
- package/src/utils/poly-tool/csv-to-json-monomer-lib-converter.ts +0 -40
- package/src/utils/poly-tool/monomer-lib-handler.ts +0 -115
- package/src/utils/poly-tool/transformation.ts +0 -320
- package/src/utils/poly-tool/ui.ts +0 -59
- package/src/utils/poly-tool/utils.ts +0 -20
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# Bio changelog
|
|
2
2
|
|
|
3
|
+
## 2.12.17 (2024-05-01)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* Add MonomerLib.getSummary
|
|
8
|
+
* Use Pistoia typization
|
|
9
|
+
|
|
10
|
+
### Bug fixes
|
|
11
|
+
|
|
12
|
+
* Fix rendering on grid and without (row tooltip, scatter plot)
|
|
13
|
+
|
|
3
14
|
## 2.12.16 (2024-04-25)
|
|
4
15
|
|
|
5
16
|
Bio: Fix crushing substructure filter.
|