synapse-react-client 3.3.6 → 3.3.8
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/dist/index.cjs +24 -21
- package/dist/index.d.ts +71 -3
- package/dist/index.js +11714 -11069
- package/dist/style/base/_core.scss +0 -43
- package/dist/style/components/_query-wrapper-plot-nav.scss +1 -0
- package/dist/umd/synapse-react-client.development.css +1 -36
- package/dist/umd/synapse-react-client.development.js +2288 -1391
- package/dist/umd/synapse-react-client.production.min.css +1 -1
- package/dist/umd/synapse-react-client.production.min.js +196 -193
- package/package.json +1 -1
|
@@ -632,53 +632,10 @@ hr ~ .QueryWrapperPlotNav {
|
|
|
632
632
|
|
|
633
633
|
.SynapseTable {
|
|
634
634
|
min-height: 400px;
|
|
635
|
-
th {
|
|
636
|
-
position: relative;
|
|
637
|
-
background: map.get(SRC.$colors, 'gray-100') padding-box;
|
|
638
|
-
border-right: 1px solid map.get(SRC.$colors, 'gray-400');
|
|
639
|
-
}
|
|
640
|
-
td,
|
|
641
|
-
th {
|
|
642
|
-
& > * {
|
|
643
|
-
padding: 8px 10px;
|
|
644
|
-
}
|
|
645
|
-
}
|
|
646
|
-
|
|
647
|
-
tr:nth-of-type(2n) {
|
|
648
|
-
background-color: #fbfbfc;
|
|
649
|
-
}
|
|
650
635
|
|
|
651
636
|
tbody > tr > td {
|
|
652
637
|
vertical-align: top;
|
|
653
638
|
}
|
|
654
|
-
|
|
655
|
-
.resizer {
|
|
656
|
-
position: absolute;
|
|
657
|
-
right: 0;
|
|
658
|
-
top: 0;
|
|
659
|
-
height: 100%;
|
|
660
|
-
width: 3px;
|
|
661
|
-
padding: 0px;
|
|
662
|
-
background: rgba(0, 0, 0, 0.5);
|
|
663
|
-
cursor: col-resize;
|
|
664
|
-
user-select: none;
|
|
665
|
-
touch-action: none;
|
|
666
|
-
}
|
|
667
|
-
|
|
668
|
-
.resizer.isResizing {
|
|
669
|
-
background: SRC.$primary-action-color;
|
|
670
|
-
opacity: 1;
|
|
671
|
-
}
|
|
672
|
-
|
|
673
|
-
@media (hover: hover) {
|
|
674
|
-
.resizer {
|
|
675
|
-
opacity: 0;
|
|
676
|
-
}
|
|
677
|
-
|
|
678
|
-
*:hover > .resizer {
|
|
679
|
-
opacity: 1;
|
|
680
|
-
}
|
|
681
|
-
}
|
|
682
639
|
}
|
|
683
640
|
|
|
684
641
|
.table > tbody > tr > td {
|
|
@@ -15333,45 +15333,9 @@ hr ~ .QueryWrapperPlotNav {
|
|
|
15333
15333
|
.SynapseTable {
|
|
15334
15334
|
min-height: 400px;
|
|
15335
15335
|
}
|
|
15336
|
-
.SynapseTable th {
|
|
15337
|
-
position: relative;
|
|
15338
|
-
background: #fbfbfc padding-box;
|
|
15339
|
-
border-right: 1px solid #dfe2e6;
|
|
15340
|
-
}
|
|
15341
|
-
.SynapseTable td > *,
|
|
15342
|
-
.SynapseTable th > * {
|
|
15343
|
-
padding: 8px 10px;
|
|
15344
|
-
}
|
|
15345
|
-
.SynapseTable tr:nth-of-type(2n) {
|
|
15346
|
-
background-color: #fbfbfc;
|
|
15347
|
-
}
|
|
15348
15336
|
.SynapseTable tbody > tr > td {
|
|
15349
15337
|
vertical-align: top;
|
|
15350
15338
|
}
|
|
15351
|
-
.SynapseTable .resizer {
|
|
15352
|
-
position: absolute;
|
|
15353
|
-
right: 0;
|
|
15354
|
-
top: 0;
|
|
15355
|
-
height: 100%;
|
|
15356
|
-
width: 3px;
|
|
15357
|
-
padding: 0px;
|
|
15358
|
-
background: rgba(0, 0, 0, 0.5);
|
|
15359
|
-
cursor: col-resize;
|
|
15360
|
-
user-select: none;
|
|
15361
|
-
touch-action: none;
|
|
15362
|
-
}
|
|
15363
|
-
.SynapseTable .resizer.isResizing {
|
|
15364
|
-
background: rgb(64, 123, 160);
|
|
15365
|
-
opacity: 1;
|
|
15366
|
-
}
|
|
15367
|
-
@media (hover: hover) {
|
|
15368
|
-
.SynapseTable .resizer {
|
|
15369
|
-
opacity: 0;
|
|
15370
|
-
}
|
|
15371
|
-
.SynapseTable *:hover > .resizer {
|
|
15372
|
-
opacity: 1;
|
|
15373
|
-
}
|
|
15374
|
-
}
|
|
15375
15339
|
|
|
15376
15340
|
.table > tbody > tr > td {
|
|
15377
15341
|
vertical-align: top;
|
|
@@ -17736,6 +17700,7 @@ svg.HelpButton {
|
|
|
17736
17700
|
.QueryWrapperPlotNav {
|
|
17737
17701
|
display: grid;
|
|
17738
17702
|
position: relative;
|
|
17703
|
+
grid-template-columns: 100%;
|
|
17739
17704
|
}
|
|
17740
17705
|
@media (min-width: 768px) {
|
|
17741
17706
|
.QueryWrapperPlotNav {
|