@datagrok/bio 2.16.2 → 2.16.3
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 +6 -0
- 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 +2 -2
- package/src/utils/monomer-lib/library-file-manager/file-manager.ts +1 -1
- package/src/viewers/web-logo-viewer.ts +1 -0
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"name": "Aleksandr Tanas",
|
|
6
6
|
"email": "atanas@datagrok.ai"
|
|
7
7
|
},
|
|
8
|
-
"version": "2.16.
|
|
8
|
+
"version": "2.16.3",
|
|
9
9
|
"description": "Bioinformatics support (import/export of sequences, conversion, visualization, analysis). [See more](https://github.com/datagrok-ai/public/blob/master/packages/Bio/README.md) for details.",
|
|
10
10
|
"repository": {
|
|
11
11
|
"type": "git",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"@typescript-eslint/eslint-plugin": "^8.8.1",
|
|
69
69
|
"@typescript-eslint/parser": "^8.8.1",
|
|
70
70
|
"datagrok-tools": "latest",
|
|
71
|
-
"eslint": "^
|
|
71
|
+
"eslint": "^8.57.1",
|
|
72
72
|
"eslint-config-google": "^0.14.0",
|
|
73
73
|
"eslint-plugin-rxjs": "^5.0.3",
|
|
74
74
|
"source-map-loader": "^5.0.0",
|
|
@@ -264,7 +264,7 @@ export class MonomerLibFileManager implements IMonomerLibFileManager {
|
|
|
264
264
|
this.logger.debug(`${logPrefix}, start`);
|
|
265
265
|
|
|
266
266
|
const libPaths = await grok.dapi.files.list(LIB_PATH)
|
|
267
|
-
.then((l) => l.map((fi) => fi.fullPath));
|
|
267
|
+
.then((l) => l.filter((f) => f.isFile).map((fi) => fi.fullPath));
|
|
268
268
|
|
|
269
269
|
const checkForUi = false;
|
|
270
270
|
const existingLibPaths: string[] = [];
|
|
@@ -548,6 +548,7 @@ export class WebLogoViewer extends DG.JsViewer implements IWebLogoViewer {
|
|
|
548
548
|
style: {
|
|
549
549
|
display: 'flex',
|
|
550
550
|
flexDirection: 'row',
|
|
551
|
+
flexGrow: 0,
|
|
551
552
|
/** For alignContent to have an effect */ flexWrap: 'wrap',
|
|
552
553
|
/* backgroundColor: '#EEFFEE' */
|
|
553
554
|
}
|