synapse-react-client 2.1.11 → 2.1.15
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/assets/mui_components/ContentCopy.d.ts +4 -0
- package/dist/assets/mui_components/ContentCopy.js +13 -0
- package/dist/assets/mui_components/ContentCopy.js.map +1 -0
- package/dist/containers/DirectDownload.d.ts +1 -1
- package/dist/containers/DirectDownload.js +6 -2
- package/dist/containers/DirectDownload.js.map +1 -1
- package/dist/containers/EntityLink.d.ts +1 -0
- package/dist/containers/EntityLink.js +3 -3
- package/dist/containers/EntityLink.js.map +1 -1
- package/dist/containers/IconSvg.js +3 -0
- package/dist/containers/IconSvg.js.map +1 -1
- package/dist/containers/download_list_v2/DownloadCartPage.js +2 -2
- package/dist/containers/download_list_v2/DownloadCartPage.js.map +1 -1
- package/dist/containers/download_list_v2/DownloadListTable.js +56 -22
- package/dist/containers/download_list_v2/DownloadListTable.js.map +1 -1
- package/dist/containers/entity_finder/EntityFinder.js +2 -2
- package/dist/containers/entity_finder/EntityFinder.js.map +1 -1
- package/dist/containers/entity_finder/tree/TreeNode.d.ts +3 -2
- package/dist/containers/entity_finder/tree/TreeNode.js +17 -16
- package/dist/containers/entity_finder/tree/TreeNode.js.map +1 -1
- package/dist/containers/entity_finder/tree/TreeView.d.ts +2 -2
- package/dist/containers/entity_finder/tree/TreeView.js +4 -4
- package/dist/containers/entity_finder/tree/TreeView.js.map +1 -1
- package/dist/containers/synapse_table_functions/SynapseTableCell.d.ts +3 -0
- package/dist/containers/synapse_table_functions/SynapseTableCell.js +10 -1
- package/dist/containers/synapse_table_functions/SynapseTableCell.js.map +1 -1
- package/dist/containers/table/SynapseTable.d.ts +1 -1
- package/dist/containers/table/SynapseTable.js +5 -5
- package/dist/containers/table/SynapseTable.js.map +1 -1
- package/dist/containers/table/datasets/DatasetItemsEditor.js +10 -5
- package/dist/containers/table/datasets/DatasetItemsEditor.js.map +1 -1
- package/dist/containers/widgets/query-filter/QueryFilter.js +1 -1
- package/dist/containers/widgets/query-filter/QueryFilter.js.map +1 -1
- package/dist/style/base/_icons.scss +1 -1
- package/dist/style/components/_download-cart-page.scss +4 -0
- package/dist/style/components/_download-list-v2.scss +1 -1
- package/dist/style/components/entity_finder/_breadcrumbs.scss +7 -7
- package/dist/style/components/entity_finder/_tree-node-browse.scss +16 -6
- package/dist/style/main.css +59 -5
- package/dist/umd/synapse-react-client.development.css +53 -5
- package/dist/umd/synapse-react-client.development.css.map +2 -2
- package/dist/umd/synapse-react-client.development.js +1089 -997
- package/dist/umd/synapse-react-client.development.js.map +3 -3
- package/dist/umd/synapse-react-client.production.min.css +1 -1
- package/dist/umd/synapse-react-client.production.min.js +76 -75
- package/dist/utils/hooks/SynapseAPI/useEntity.d.ts +2 -1
- package/dist/utils/hooks/SynapseAPI/useEntity.js +6 -1
- package/dist/utils/hooks/SynapseAPI/useEntity.js.map +1 -1
- package/package.json +1 -1
package/dist/style/main.css
CHANGED
|
@@ -15877,10 +15877,10 @@ main * a.ignoreLink:not(.btn):visited.disabled:hover, main * a.ignoreLink:not(.b
|
|
|
15877
15877
|
fill: white;
|
|
15878
15878
|
}
|
|
15879
15879
|
|
|
15880
|
-
.SRC-Sort-Icon-Inactive {
|
|
15880
|
+
.SRC-Sort-Icon-Inactive, .Content-Copy-Icon {
|
|
15881
15881
|
padding: 2px;
|
|
15882
15882
|
}
|
|
15883
|
-
.SRC-Sort-Icon-Inactive path {
|
|
15883
|
+
.SRC-Sort-Icon-Inactive path, .Content-Copy-Icon path {
|
|
15884
15884
|
fill: #407ba0;
|
|
15885
15885
|
}
|
|
15886
15886
|
|
|
@@ -20851,6 +20851,10 @@ button:hover .SRC-column-light-theme .SRC-light-column {
|
|
|
20851
20851
|
border-radius: 2px;
|
|
20852
20852
|
}
|
|
20853
20853
|
|
|
20854
|
+
/*
|
|
20855
|
+
@param $color string e.g. #eee or red
|
|
20856
|
+
@param $width unit e.g. 15%
|
|
20857
|
+
*/
|
|
20854
20858
|
.EntityFinderReflexContainer {
|
|
20855
20859
|
width: 100%;
|
|
20856
20860
|
}
|
|
@@ -20961,13 +20965,38 @@ button:hover .SRC-column-light-theme .SRC-light-column {
|
|
|
20961
20965
|
|
|
20962
20966
|
.TreeView.BrowseTree .Node.BrowseNode .NodeContent {
|
|
20963
20967
|
grid-template-columns: [toggle] 20px [name] auto;
|
|
20964
|
-
font-size: small;
|
|
20965
20968
|
padding: 5px 10px 5px 20px;
|
|
20966
20969
|
}
|
|
20967
20970
|
.TreeView.BrowseTree .Node.BrowseNode .NodeContent .ExpandButton {
|
|
20968
20971
|
font-size: 15px;
|
|
20969
20972
|
}
|
|
20970
|
-
.TreeView.BrowseTree .Node
|
|
20973
|
+
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .NodeContent > .EntityName {
|
|
20974
|
+
color: #407ba0;
|
|
20975
|
+
text-decoration: none;
|
|
20976
|
+
font-weight: 700;
|
|
20977
|
+
letter-spacing: 0.5px;
|
|
20978
|
+
font-weight: normal;
|
|
20979
|
+
}
|
|
20980
|
+
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .NodeContent > .EntityName:hover {
|
|
20981
|
+
text-decoration: underline;
|
|
20982
|
+
text-underline-offset: 4px;
|
|
20983
|
+
text-decoration-thickness: 2px;
|
|
20984
|
+
text-decoration-color: #2a678d;
|
|
20985
|
+
}
|
|
20986
|
+
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .NodeContent > .EntityName.disabled {
|
|
20987
|
+
color: #aeb5bc;
|
|
20988
|
+
}
|
|
20989
|
+
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .NodeContent > .EntityName.disabled:hover {
|
|
20990
|
+
text-decoration: underline;
|
|
20991
|
+
text-underline-offset: 4px;
|
|
20992
|
+
text-decoration-thickness: 1px;
|
|
20993
|
+
text-decoration-color: #d6d6d6;
|
|
20994
|
+
cursor: default;
|
|
20995
|
+
}
|
|
20996
|
+
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .NodeContent > .EntityName:hover {
|
|
20997
|
+
text-underline-offset: 2px;
|
|
20998
|
+
}
|
|
20999
|
+
.TreeView.BrowseTree .Node.BrowseNode[aria-disabled=false][aria-selected=true] > .NodeContent > .EntityName > span {
|
|
20971
21000
|
font-weight: bold;
|
|
20972
21001
|
}
|
|
20973
21002
|
|
|
@@ -21138,6 +21167,10 @@ button:hover .SRC-column-light-theme .SRC-light-column {
|
|
|
21138
21167
|
border-radius: 2px;
|
|
21139
21168
|
}
|
|
21140
21169
|
|
|
21170
|
+
/*
|
|
21171
|
+
@param $color string e.g. #eee or red
|
|
21172
|
+
@param $width unit e.g. 15%
|
|
21173
|
+
*/
|
|
21141
21174
|
.EntityFinderReflexContainer {
|
|
21142
21175
|
width: 100%;
|
|
21143
21176
|
}
|
|
@@ -21257,9 +21290,26 @@ button:hover .SRC-column-light-theme .SRC-light-column {
|
|
|
21257
21290
|
}
|
|
21258
21291
|
.Breadcrumbs .BreadcrumbItem {
|
|
21259
21292
|
color: #407ba0;
|
|
21293
|
+
text-decoration: none;
|
|
21294
|
+
font-weight: 700;
|
|
21295
|
+
letter-spacing: 0.5px;
|
|
21296
|
+
font-weight: normal;
|
|
21260
21297
|
}
|
|
21261
21298
|
.Breadcrumbs .BreadcrumbItem:hover {
|
|
21262
21299
|
text-decoration: underline;
|
|
21300
|
+
text-underline-offset: 4px;
|
|
21301
|
+
text-decoration-thickness: 2px;
|
|
21302
|
+
text-decoration-color: #2a678d;
|
|
21303
|
+
}
|
|
21304
|
+
.Breadcrumbs .BreadcrumbItem.disabled {
|
|
21305
|
+
color: #aeb5bc;
|
|
21306
|
+
}
|
|
21307
|
+
.Breadcrumbs .BreadcrumbItem.disabled:hover {
|
|
21308
|
+
text-decoration: underline;
|
|
21309
|
+
text-underline-offset: 4px;
|
|
21310
|
+
text-decoration-thickness: 1px;
|
|
21311
|
+
text-decoration-color: #d6d6d6;
|
|
21312
|
+
cursor: default;
|
|
21263
21313
|
}
|
|
21264
21314
|
.Breadcrumbs .BreadcrumbItem.Current {
|
|
21265
21315
|
color: unset;
|
|
@@ -21392,7 +21442,7 @@ table.DownloadListTableV2 .ineligibileIcon {
|
|
|
21392
21442
|
table.DownloadListTableV2 .ineligibileIcon svg {
|
|
21393
21443
|
width: 18px;
|
|
21394
21444
|
}
|
|
21395
|
-
table.DownloadListTableV2 .ineligibleForPackagingTd {
|
|
21445
|
+
table.DownloadListTableV2 td.ineligibleForPackagingTd:first-child {
|
|
21396
21446
|
background-color: #F9F5E7;
|
|
21397
21447
|
}
|
|
21398
21448
|
table.DownloadListTableV2 thead:first-child > tr:first-child > th {
|
|
@@ -21728,6 +21778,10 @@ table.DownloadListTableV2 td {
|
|
|
21728
21778
|
.DownloadCartPage .DownloadListTabContent .subSectionOverview .headlineWithHelp {
|
|
21729
21779
|
display: flex;
|
|
21730
21780
|
column-gap: 10px;
|
|
21781
|
+
align-items: top;
|
|
21782
|
+
}
|
|
21783
|
+
.DownloadCartPage .DownloadListTabContent .subSectionOverview .headlineWithHelp .PopoverContainer {
|
|
21784
|
+
height: 100%;
|
|
21731
21785
|
}
|
|
21732
21786
|
.DownloadCartPage__explore-all {
|
|
21733
21787
|
text-align: center;
|
|
@@ -16223,10 +16223,12 @@ main .bootstrap-4-backport a.ignoreLink:not(.btn):link.disabled:hover,
|
|
|
16223
16223
|
.SRC-Sort-Icon-Active path {
|
|
16224
16224
|
fill: white;
|
|
16225
16225
|
}
|
|
16226
|
-
.SRC-Sort-Icon-Inactive
|
|
16226
|
+
.SRC-Sort-Icon-Inactive,
|
|
16227
|
+
.Content-Copy-Icon {
|
|
16227
16228
|
padding: 2px;
|
|
16228
16229
|
}
|
|
16229
|
-
.SRC-Sort-Icon-Inactive path
|
|
16230
|
+
.SRC-Sort-Icon-Inactive path,
|
|
16231
|
+
.Content-Copy-Icon path {
|
|
16230
16232
|
fill: #407ba0;
|
|
16231
16233
|
}
|
|
16232
16234
|
svg.HelpButton {
|
|
@@ -21148,13 +21150,38 @@ button:hover .SRC-column-light-theme .SRC-light-column {
|
|
|
21148
21150
|
}
|
|
21149
21151
|
.TreeView.BrowseTree .Node.BrowseNode .NodeContent {
|
|
21150
21152
|
grid-template-columns: [toggle] 20px [name] auto;
|
|
21151
|
-
font-size: small;
|
|
21152
21153
|
padding: 5px 10px 5px 20px;
|
|
21153
21154
|
}
|
|
21154
21155
|
.TreeView.BrowseTree .Node.BrowseNode .NodeContent .ExpandButton {
|
|
21155
21156
|
font-size: 15px;
|
|
21156
21157
|
}
|
|
21157
|
-
.TreeView.BrowseTree .Node
|
|
21158
|
+
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .NodeContent > .EntityName {
|
|
21159
|
+
color: #407ba0;
|
|
21160
|
+
text-decoration: none;
|
|
21161
|
+
font-weight: 700;
|
|
21162
|
+
letter-spacing: 0.5px;
|
|
21163
|
+
font-weight: normal;
|
|
21164
|
+
}
|
|
21165
|
+
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .NodeContent > .EntityName:hover {
|
|
21166
|
+
text-decoration: underline;
|
|
21167
|
+
text-underline-offset: 4px;
|
|
21168
|
+
text-decoration-thickness: 2px;
|
|
21169
|
+
text-decoration-color: #2a678d;
|
|
21170
|
+
}
|
|
21171
|
+
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .NodeContent > .EntityName.disabled {
|
|
21172
|
+
color: #aeb5bc;
|
|
21173
|
+
}
|
|
21174
|
+
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .NodeContent > .EntityName.disabled:hover {
|
|
21175
|
+
text-decoration: underline;
|
|
21176
|
+
text-underline-offset: 4px;
|
|
21177
|
+
text-decoration-thickness: 1px;
|
|
21178
|
+
text-decoration-color: #d6d6d6;
|
|
21179
|
+
cursor: default;
|
|
21180
|
+
}
|
|
21181
|
+
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .NodeContent > .EntityName:hover {
|
|
21182
|
+
text-underline-offset: 2px;
|
|
21183
|
+
}
|
|
21184
|
+
.TreeView.BrowseTree .Node.BrowseNode[aria-disabled=false][aria-selected=true] > .NodeContent > .EntityName > span {
|
|
21158
21185
|
font-weight: bold;
|
|
21159
21186
|
}
|
|
21160
21187
|
.terms-conditions .view-terms a,
|
|
@@ -21406,9 +21433,26 @@ button:hover .SRC-column-light-theme .SRC-light-column {
|
|
|
21406
21433
|
}
|
|
21407
21434
|
.Breadcrumbs .BreadcrumbItem {
|
|
21408
21435
|
color: #407ba0;
|
|
21436
|
+
text-decoration: none;
|
|
21437
|
+
font-weight: 700;
|
|
21438
|
+
letter-spacing: 0.5px;
|
|
21439
|
+
font-weight: normal;
|
|
21409
21440
|
}
|
|
21410
21441
|
.Breadcrumbs .BreadcrumbItem:hover {
|
|
21411
21442
|
text-decoration: underline;
|
|
21443
|
+
text-underline-offset: 4px;
|
|
21444
|
+
text-decoration-thickness: 2px;
|
|
21445
|
+
text-decoration-color: #2a678d;
|
|
21446
|
+
}
|
|
21447
|
+
.Breadcrumbs .BreadcrumbItem.disabled {
|
|
21448
|
+
color: #aeb5bc;
|
|
21449
|
+
}
|
|
21450
|
+
.Breadcrumbs .BreadcrumbItem.disabled:hover {
|
|
21451
|
+
text-decoration: underline;
|
|
21452
|
+
text-underline-offset: 4px;
|
|
21453
|
+
text-decoration-thickness: 1px;
|
|
21454
|
+
text-decoration-color: #d6d6d6;
|
|
21455
|
+
cursor: default;
|
|
21412
21456
|
}
|
|
21413
21457
|
.Breadcrumbs .BreadcrumbItem.Current {
|
|
21414
21458
|
color: unset;
|
|
@@ -21533,7 +21577,7 @@ table.DownloadListTableV2 .ineligibileIcon {
|
|
|
21533
21577
|
table.DownloadListTableV2 .ineligibileIcon svg {
|
|
21534
21578
|
width: 18px;
|
|
21535
21579
|
}
|
|
21536
|
-
table.DownloadListTableV2 .ineligibleForPackagingTd {
|
|
21580
|
+
table.DownloadListTableV2 td.ineligibleForPackagingTd:first-child {
|
|
21537
21581
|
background-color: #F9F5E7;
|
|
21538
21582
|
}
|
|
21539
21583
|
table.DownloadListTableV2 thead:first-child > tr:first-child > th {
|
|
@@ -21853,6 +21897,10 @@ table.DownloadListTableV2 td {
|
|
|
21853
21897
|
.DownloadCartPage .DownloadListTabContent .subSectionOverview .headlineWithHelp {
|
|
21854
21898
|
display: flex;
|
|
21855
21899
|
column-gap: 10px;
|
|
21900
|
+
align-items: top;
|
|
21901
|
+
}
|
|
21902
|
+
.DownloadCartPage .DownloadListTabContent .subSectionOverview .headlineWithHelp .PopoverContainer {
|
|
21903
|
+
height: 100%;
|
|
21856
21904
|
}
|
|
21857
21905
|
.DownloadCartPage__explore-all {
|
|
21858
21906
|
text-align: center;
|