@teselagen/ove 0.3.47 → 0.3.49
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/index.cjs.js +2259 -1826
- package/index.es.js +2259 -1826
- package/index.umd.js +2424 -1928
- package/package.json +4 -4
- package/src/CircularView/Labels/index.js +6 -2
- package/src/CircularView/drawAnnotations.js +7 -1
- package/src/withEditorInteractions/index.js +0 -1
- package/style.css +7 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@teselagen/ove",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.49",
|
|
4
4
|
"main": "./src/index.js",
|
|
5
5
|
"exports": {
|
|
6
6
|
".": {
|
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
"node": "16.20.2"
|
|
14
14
|
},
|
|
15
15
|
"dependencies": {
|
|
16
|
-
"@teselagen/sequence-utils": "0.3.
|
|
16
|
+
"@teselagen/sequence-utils": "0.3.10",
|
|
17
17
|
"@teselagen/range-utils": "0.3.7",
|
|
18
|
-
"@teselagen/ui": "0.3.
|
|
18
|
+
"@teselagen/ui": "0.3.37",
|
|
19
19
|
"@teselagen/file-utils": "0.3.9",
|
|
20
20
|
"@teselagen/bounce-loader": "0.3.11",
|
|
21
|
-
"@teselagen/bio-parsers": "0.4.
|
|
21
|
+
"@teselagen/bio-parsers": "0.4.2",
|
|
22
22
|
"@blueprintjs/core": "3.52.0",
|
|
23
23
|
"@blueprintjs/datetime": "3.23.19",
|
|
24
24
|
"@blueprintjs/icons": "3.33.0",
|
|
@@ -356,7 +356,9 @@ const DrawLabelGroup = withHover(function ({
|
|
|
356
356
|
} else {
|
|
357
357
|
//DRAW A SINGLE LABEL
|
|
358
358
|
content = [
|
|
359
|
-
|
|
359
|
+
<g hidden style={{ display: "none" }} key="labeltitle">
|
|
360
|
+
{label.title || label.text}
|
|
361
|
+
</g>,
|
|
360
362
|
<text
|
|
361
363
|
key="text"
|
|
362
364
|
data-title={label.title || label.text}
|
|
@@ -466,7 +468,9 @@ const DrawGroupInnerLabel = withHover(
|
|
|
466
468
|
{...{ onMouseOver }}
|
|
467
469
|
className={className}
|
|
468
470
|
>
|
|
469
|
-
{
|
|
471
|
+
<g hidden style={{ display: "none" }}>
|
|
472
|
+
{label.title}
|
|
473
|
+
</g>
|
|
470
474
|
{label.text}
|
|
471
475
|
</tspan>
|
|
472
476
|
);
|
|
@@ -380,7 +380,8 @@ function DrawAnnotationInner({
|
|
|
380
380
|
return (
|
|
381
381
|
<g
|
|
382
382
|
transform={transform}
|
|
383
|
-
data-title={noTitle ? null : titleText}
|
|
383
|
+
// data-title={noTitle ? null : titleText}
|
|
384
|
+
title={noTitle ? null : titleText}
|
|
384
385
|
{...avoidOverlapWith}
|
|
385
386
|
key={
|
|
386
387
|
isNotLocation
|
|
@@ -389,6 +390,11 @@ function DrawAnnotationInner({
|
|
|
389
390
|
}
|
|
390
391
|
{...sharedProps}
|
|
391
392
|
>
|
|
393
|
+
{noTitle ? null : (
|
|
394
|
+
<g hidden style={{ display: "none" }}>
|
|
395
|
+
{titleText}
|
|
396
|
+
</g>
|
|
397
|
+
)}
|
|
392
398
|
<Annotation
|
|
393
399
|
{...(passAnnotation && { annotation })}
|
|
394
400
|
annotationType={annotationType}
|
|
@@ -240,7 +240,6 @@ function VectorInteractionHOC(Component /* options */) {
|
|
|
240
240
|
topLevelSeqData: sequenceData,
|
|
241
241
|
provideNewIdsForAnnotations: true,
|
|
242
242
|
annotationsAsObjects: true,
|
|
243
|
-
removeUnwantedChars: true,
|
|
244
243
|
noCdsTranslations: true
|
|
245
244
|
});
|
|
246
245
|
if (!seqDataToInsert.sequence.length)
|
package/style.css
CHANGED
|
@@ -9372,8 +9372,13 @@ button:not(:disabled):active {
|
|
|
9372
9372
|
|
|
9373
9373
|
.tg-filter-menu-button.tg-active-filter,
|
|
9374
9374
|
.tg-sort-arrow-container .bp3-icon.active,
|
|
9375
|
-
|
|
9376
|
-
.tg-react-table-column-header:hover
|
|
9375
|
+
body:not(.drag-active)
|
|
9376
|
+
.tg-react-table-column-header:hover
|
|
9377
|
+
.tg-sort-arrow-container
|
|
9378
|
+
.bp3-icon,
|
|
9379
|
+
body:not(.drag-active)
|
|
9380
|
+
.tg-react-table-column-header:hover
|
|
9381
|
+
.tg-filter-menu-button,
|
|
9377
9382
|
.tg-filter-menu-button.tg-active-filter,
|
|
9378
9383
|
.tg-react-table-column-header .bp3-popover-open .tg-filter-menu-button {
|
|
9379
9384
|
display: block !important;
|
|
@@ -9742,7 +9747,6 @@ button:not(:disabled):active {
|
|
|
9742
9747
|
display: flex;
|
|
9743
9748
|
flex-direction: column;
|
|
9744
9749
|
}
|
|
9745
|
-
|
|
9746
9750
|
.tg-flex-form-content .bp3-form-content {
|
|
9747
9751
|
display: flex;
|
|
9748
9752
|
}
|