@datagrok/peptides 1.14.1 → 1.15.0
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 +18 -0
- package/dist/196.js +3 -0
- package/dist/196.js.LICENSE.txt +51 -0
- package/dist/209.js +2 -2
- package/dist/361.js +2 -0
- package/dist/381.js +2 -0
- package/dist/694.js +2 -0
- package/dist/831.js +2 -0
- package/dist/868.js +2 -0
- package/dist/package-test.js +3 -2
- package/dist/package-test.js.LICENSE.txt +51 -0
- package/dist/package.js +3 -2
- package/dist/package.js.LICENSE.txt +51 -0
- package/files/help/logo-summary-table.md +23 -0
- package/files/help/monomer-position.md +31 -0
- package/files/help/most-potent-residues.md +17 -0
- package/files/icons/ribbon/logo-summary-viewer.svg +8 -0
- package/files/icons/ribbon/peptide-sar-vertical-viewer.svg +10 -0
- package/files/icons/ribbon/peptide-sar-viewer.svg +11 -0
- package/package.json +4 -4
- package/src/model.ts +38 -3
- package/src/package-test.ts +5 -5
- package/src/tests/core.ts +6 -21
- package/src/tests/model.ts +3 -1
- package/src/tests/table-view.ts +3 -13
- package/src/tests/viewers.ts +7 -1
- package/src/tests/widgets.ts +9 -1
- package/src/utils/cell-renderer.ts +11 -6
- package/src/utils/constants.ts +1 -0
- package/src/utils/misc.ts +2 -1
- package/src/utils/types.ts +1 -0
- package/src/viewers/logo-summary.ts +7 -3
- package/src/viewers/sar-viewer.ts +20 -6
- package/src/widgets/peptides.ts +15 -4
- package/src/widgets/selection.ts +9 -0
- package/dist/521.js +0 -2
- package/dist/677.js +0 -2
- package/dist/729.js +0 -2
- package/dist/959.js +0 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# Peptides changelog
|
|
2
2
|
|
|
3
|
+
## 1.15.0 (2023-10-12)
|
|
4
|
+
|
|
5
|
+
### Features
|
|
6
|
+
|
|
7
|
+
* Added viewer help.
|
|
8
|
+
* Added Sequence Space viewer.
|
|
9
|
+
* Selection panel columns now inherti width from main table.
|
|
10
|
+
* Invarian Map cell values now rendered with contrast color relative to background.
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* Fixed WebLogo in header margin width.
|
|
15
|
+
* Widgets in Context panel will now fill all the available width.
|
|
16
|
+
* Fixed LST rows not resizable.
|
|
17
|
+
* Fixed selection inconsistency.
|
|
18
|
+
* Fixed Most Potent Residues keyboar navigation.
|
|
19
|
+
* Fixed analysis not starting when there are columns of the same name.
|
|
20
|
+
|
|
3
21
|
## 1.14.1 (2023-09-28)
|
|
4
22
|
|
|
5
23
|
### Bug Fixes
|