@datagrok/bio 2.11.21 → 2.11.22
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 +2 -0
- package/detectors.js +0 -13
- 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/package.json +1 -1
- package/src/utils/macromolecule-column-widget.ts +6 -1
- package/src/viewers/web-logo-viewer.ts +36 -37
package/CHANGELOG.md
CHANGED
|
@@ -43,6 +43,8 @@
|
|
|
43
43
|
* Fix WebLogoViewer for empty column (annotated).
|
|
44
44
|
* Fix WebLogoViewer and VdRegionsViewer deadlock.
|
|
45
45
|
* Fix Activity Cliffs error on Helm dataset
|
|
46
|
+
* Fix Macromolecule tooltip, context widget for detach
|
|
47
|
+
* Fix WebLogo optimize with postponed update positions
|
|
46
48
|
|
|
47
49
|
## 2.10.0 (2023-09-06)
|
|
48
50
|
|
package/detectors.js
CHANGED
|
@@ -49,19 +49,6 @@ class LoggerWrapper {
|
|
|
49
49
|
this.logger = logger;
|
|
50
50
|
this.componentName = componentName;
|
|
51
51
|
this.debugEnabled = false;
|
|
52
|
-
// @formatter:off
|
|
53
|
-
// TODO: Observe for package settings changed event
|
|
54
|
-
// grok.events.onPackageSettingsChanged.subscribe(() => {
|
|
55
|
-
// this.getLoggerSettings().then(() => { });
|
|
56
|
-
// });
|
|
57
|
-
this.getLoggerSettings().then(() => { });
|
|
58
|
-
// @formatter:on
|
|
59
|
-
}
|
|
60
|
-
|
|
61
|
-
async getLoggerSettings() {
|
|
62
|
-
await this.package.getProperties(); // TODO: workaround
|
|
63
|
-
const settings = await this.package.getProperties();
|
|
64
|
-
this.debugEnabled = settings['Debug'].includes(this.componentName);
|
|
65
52
|
}
|
|
66
53
|
|
|
67
54
|
debug(message, params) {
|