synapse-react-client 2.0.57 → 2.0.58
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/containers/EntityBadgeIcons.d.ts +3 -2
- package/dist/containers/EntityBadgeIcons.js +12 -12
- package/dist/containers/EntityBadgeIcons.js.map +1 -1
- package/dist/containers/FluidModal.d.ts +23 -0
- package/dist/containers/FluidModal.js +36 -0
- package/dist/containers/FluidModal.js.map +1 -0
- package/dist/containers/IconSvg.js +2 -0
- package/dist/containers/IconSvg.js.map +1 -1
- package/dist/containers/download_list_v2/AvailableForDownloadTable.d.ts +5 -1
- package/dist/containers/download_list_v2/AvailableForDownloadTable.js +4 -3
- package/dist/containers/download_list_v2/AvailableForDownloadTable.js.map +1 -1
- package/dist/containers/download_list_v2/DownloadCartPage.js +2 -1
- package/dist/containers/download_list_v2/DownloadCartPage.js.map +1 -1
- package/dist/containers/download_list_v2/DownloadListActionsRequired.js +1 -1
- package/dist/containers/download_list_v2/DownloadListActionsRequired.js.map +1 -1
- package/dist/containers/download_list_v2/DownloadListTable.js +5 -6
- package/dist/containers/download_list_v2/DownloadListTable.js.map +1 -1
- package/dist/containers/download_list_v2/MeetAccessRequirementCard.d.ts +1 -1
- package/dist/containers/download_list_v2/MeetAccessRequirementCard.js +4 -4
- package/dist/containers/download_list_v2/MeetAccessRequirementCard.js.map +1 -1
- package/dist/containers/download_list_v2/RequestDownloadCard.js +4 -5
- package/dist/containers/download_list_v2/RequestDownloadCard.js.map +1 -1
- package/dist/containers/entity_finder/EntityFinderModal.d.ts +14 -0
- package/dist/containers/entity_finder/EntityFinderModal.js +24 -0
- package/dist/containers/entity_finder/EntityFinderModal.js.map +1 -0
- package/dist/containers/entity_finder/details/view/DetailsView.d.ts +2 -0
- package/dist/containers/entity_finder/details/view/DetailsView.js +14 -12
- package/dist/containers/entity_finder/details/view/DetailsView.js.map +1 -1
- package/dist/containers/entity_finder/details/view/DetailsViewTableRenderers.d.ts +60 -13
- package/dist/containers/entity_finder/details/view/DetailsViewTableRenderers.js +137 -13
- package/dist/containers/entity_finder/details/view/DetailsViewTableRenderers.js.map +1 -1
- package/dist/containers/table/datasets/DatasetItemsEditor.d.ts +13 -0
- package/dist/containers/table/datasets/DatasetItemsEditor.js +264 -0
- package/dist/containers/table/datasets/DatasetItemsEditor.js.map +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/rollup.index.d.ts +3 -1
- package/dist/rollup.index.js +3 -1
- package/dist/rollup.index.js.map +1 -1
- package/dist/style/bootstrap4_backports/_overrides.scss +0 -1
- package/dist/style/components/_all.scss +3 -2
- package/dist/style/components/_dataset-editor.scss +75 -0
- package/dist/style/components/_fluid-modal.scss +42 -0
- package/dist/style/main.css +332 -1
- package/dist/umd/synapse-react-client.production.min.js +15 -15
- package/dist/umd/synapse-react-client.production.styles.css +332 -1
- package/dist/utils/functions/TooltipUtils.d.ts +7 -0
- package/dist/utils/functions/TooltipUtils.js +16 -0
- package/dist/utils/functions/TooltipUtils.js.map +1 -0
- package/dist/utils/hooks/SynapseAPI/useEntity.d.ts +1 -0
- package/dist/utils/hooks/SynapseAPI/useEntity.js +25 -1
- package/dist/utils/hooks/SynapseAPI/useEntity.js.map +1 -1
- package/dist/utils/hooks/useSet.d.ts +14 -0
- package/dist/utils/hooks/useSet.js +42 -0
- package/dist/utils/hooks/useSet.js.map +1 -0
- package/dist/utils/hooks/useTraceUpdate.d.ts +1 -0
- package/dist/utils/hooks/useTraceUpdate.js +22 -0
- package/dist/utils/hooks/useTraceUpdate.js.map +1 -0
- package/package.json +1 -1
package/dist/style/main.css
CHANGED
|
@@ -9990,7 +9990,6 @@ html:not(#synapse\.org) .modal-content {
|
|
|
9990
9990
|
padding: 5px 30px;
|
|
9991
9991
|
}
|
|
9992
9992
|
html:not(#synapse\.org) .modal-content .modal-header {
|
|
9993
|
-
align-items: center;
|
|
9994
9993
|
padding: 10px 0px;
|
|
9995
9994
|
}
|
|
9996
9995
|
html:not(#synapse\.org) .modal-content .modal-header button.close {
|
|
@@ -22179,4 +22178,336 @@ button:hover .SRC-column-light-theme .SRC-light-column {
|
|
|
22179
22178
|
padding-top: 15px;
|
|
22180
22179
|
}
|
|
22181
22180
|
|
|
22181
|
+
.terms-conditions .view-terms a,
|
|
22182
|
+
.terms-conditions .view-terms a:active:focus, .page-progress button,
|
|
22183
|
+
.page-progress button:active,
|
|
22184
|
+
.page-progress button:focus,
|
|
22185
|
+
.page-progress button:active:focus {
|
|
22186
|
+
border: 0;
|
|
22187
|
+
outline: none;
|
|
22188
|
+
box-shadow: none;
|
|
22189
|
+
border-radius: 2px;
|
|
22190
|
+
}
|
|
22191
|
+
|
|
22192
|
+
/*
|
|
22193
|
+
@param $color string e.g. #eee or red
|
|
22194
|
+
@param $width unit e.g. 15%
|
|
22195
|
+
*/
|
|
22196
|
+
.DatasetEditor {
|
|
22197
|
+
border: 1px solid #eaecee;
|
|
22198
|
+
}
|
|
22199
|
+
.DatasetEditor .DatasetEditorTopBottomPanel {
|
|
22200
|
+
display: flex;
|
|
22201
|
+
justify-content: flex-end;
|
|
22202
|
+
gap: 7px;
|
|
22203
|
+
width: 100%;
|
|
22204
|
+
height: 70px;
|
|
22205
|
+
background: #f9f9f9;
|
|
22206
|
+
align-items: center;
|
|
22207
|
+
padding: 15px 20px;
|
|
22208
|
+
}
|
|
22209
|
+
.DatasetEditor .DatasetEditorTopBottomPanel .ItemCount {
|
|
22210
|
+
margin-right: auto;
|
|
22211
|
+
}
|
|
22212
|
+
.DatasetEditor .DatasetEditorTopBottomPanel .ItemCount p {
|
|
22213
|
+
margin-bottom: 0;
|
|
22214
|
+
}
|
|
22215
|
+
.DatasetEditor .DatasetEditorTableContainer {
|
|
22216
|
+
width: 100%;
|
|
22217
|
+
overflow-x: auto;
|
|
22218
|
+
}
|
|
22219
|
+
.DatasetEditor .DatasetEditorTableContainer .DatasetEditorTable p {
|
|
22220
|
+
margin-bottom: unset;
|
|
22221
|
+
}
|
|
22222
|
+
.DatasetEditor .DatasetItemsEditorSkeleton {
|
|
22223
|
+
margin: 15px;
|
|
22224
|
+
}
|
|
22225
|
+
.DatasetEditor .NoItemsPlaceholder {
|
|
22226
|
+
height: 350px;
|
|
22227
|
+
display: flex;
|
|
22228
|
+
justify-content: center;
|
|
22229
|
+
align-items: center;
|
|
22230
|
+
flex-direction: column;
|
|
22231
|
+
}
|
|
22232
|
+
.DatasetEditor .NoItemsPlaceholder .AddItemsButton {
|
|
22233
|
+
width: 150px;
|
|
22234
|
+
}
|
|
22235
|
+
.DatasetEditor .NoItemsPlaceholder .AddItemsButton span {
|
|
22236
|
+
margin: 5px;
|
|
22237
|
+
}
|
|
22238
|
+
.DatasetEditor select.form-control {
|
|
22239
|
+
margin-bottom: 0px;
|
|
22240
|
+
width: 130px;
|
|
22241
|
+
}
|
|
22242
|
+
|
|
22243
|
+
.EntityNameWithIconRenderer {
|
|
22244
|
+
text-overflow: ellipsis;
|
|
22245
|
+
white-space: nowrap;
|
|
22246
|
+
}
|
|
22247
|
+
|
|
22248
|
+
.EntityErrorRenderer {
|
|
22249
|
+
color: #cc9f00;
|
|
22250
|
+
}
|
|
22251
|
+
.EntityErrorRenderer svg {
|
|
22252
|
+
font-size: large;
|
|
22253
|
+
}
|
|
22254
|
+
|
|
22255
|
+
.DatasetEditorTable {
|
|
22256
|
+
box-shadow: 0 2px 4px 0 #eeeeee;
|
|
22257
|
+
background-color: #ffffff;
|
|
22258
|
+
position: relative;
|
|
22259
|
+
box-sizing: border-box;
|
|
22260
|
+
font-size: 14px;
|
|
22261
|
+
}
|
|
22262
|
+
.DatasetEditorTable--disabled {
|
|
22263
|
+
opacity: 0.7;
|
|
22264
|
+
pointer-events: none;
|
|
22265
|
+
}
|
|
22266
|
+
.DatasetEditorTable--dynamic .DatasetEditorTable__row {
|
|
22267
|
+
overflow: hidden;
|
|
22268
|
+
align-items: stretch;
|
|
22269
|
+
}
|
|
22270
|
+
.DatasetEditorTable:not(.DatasetEditorTable--dynamic) .DatasetEditorTable__row-cell-text,
|
|
22271
|
+
.DatasetEditorTable .DatasetEditorTable__row--frozen .DatasetEditorTable__row-cell-text {
|
|
22272
|
+
overflow: hidden;
|
|
22273
|
+
text-overflow: ellipsis;
|
|
22274
|
+
white-space: nowrap;
|
|
22275
|
+
}
|
|
22276
|
+
.DatasetEditorTable__table {
|
|
22277
|
+
background-color: #ffffff;
|
|
22278
|
+
position: absolute;
|
|
22279
|
+
top: 0;
|
|
22280
|
+
display: flex;
|
|
22281
|
+
flex-direction: column-reverse;
|
|
22282
|
+
}
|
|
22283
|
+
.DatasetEditorTable__table-main {
|
|
22284
|
+
outline: 1px solid #eeeeee;
|
|
22285
|
+
left: 0;
|
|
22286
|
+
}
|
|
22287
|
+
.DatasetEditorTable__table-main .DatasetEditorTable__header-cell:first-child, .DatasetEditorTable__table-main .DatasetEditorTable__row-cell:first-child {
|
|
22288
|
+
padding-left: 5px;
|
|
22289
|
+
}
|
|
22290
|
+
.DatasetEditorTable__table-main .DatasetEditorTable__header-cell:last-child, .DatasetEditorTable__table-main .DatasetEditorTable__row-cell:last-child {
|
|
22291
|
+
padding-right: 15px;
|
|
22292
|
+
}
|
|
22293
|
+
.DatasetEditorTable__table-main .DatasetEditorTable__header {
|
|
22294
|
+
background-color: #f1f3f5;
|
|
22295
|
+
}
|
|
22296
|
+
.DatasetEditorTable__table-frozen-left .DatasetEditorTable__header,
|
|
22297
|
+
.DatasetEditorTable__table-frozen-left .DatasetEditorTable__body, .DatasetEditorTable__table-frozen-right .DatasetEditorTable__header,
|
|
22298
|
+
.DatasetEditorTable__table-frozen-right .DatasetEditorTable__body {
|
|
22299
|
+
overflow: hidden !important;
|
|
22300
|
+
}
|
|
22301
|
+
.DatasetEditorTable__table-frozen-left {
|
|
22302
|
+
box-shadow: 2px 0 4px 0 #eeeeee;
|
|
22303
|
+
top: 0;
|
|
22304
|
+
left: 0;
|
|
22305
|
+
}
|
|
22306
|
+
.DatasetEditorTable__table-frozen-left .DatasetEditorTable__header-cell:first-child, .DatasetEditorTable__table-frozen-left .DatasetEditorTable__row-cell:first-child {
|
|
22307
|
+
padding-left: 5px;
|
|
22308
|
+
}
|
|
22309
|
+
.DatasetEditorTable__table-frozen-left .DatasetEditorTable__header-row,
|
|
22310
|
+
.DatasetEditorTable__table-frozen-left .DatasetEditorTable__row {
|
|
22311
|
+
padding-right: 0 !important;
|
|
22312
|
+
}
|
|
22313
|
+
.DatasetEditorTable__table-frozen-left .DatasetEditorTable__body {
|
|
22314
|
+
overflow-y: auto !important;
|
|
22315
|
+
}
|
|
22316
|
+
.DatasetEditorTable__table-frozen-right {
|
|
22317
|
+
box-shadow: -2px 0 4px 0 #eeeeee;
|
|
22318
|
+
top: 0;
|
|
22319
|
+
right: 0;
|
|
22320
|
+
}
|
|
22321
|
+
.DatasetEditorTable__table-frozen-right .DatasetEditorTable__header-cell:last-child, .DatasetEditorTable__table-frozen-right .DatasetEditorTable__row-cell:last-child {
|
|
22322
|
+
padding-right: 15px;
|
|
22323
|
+
}
|
|
22324
|
+
.DatasetEditorTable__table-frozen-right .DatasetEditorTable__header-row,
|
|
22325
|
+
.DatasetEditorTable__table-frozen-right .DatasetEditorTable__row {
|
|
22326
|
+
padding-left: 0 !important;
|
|
22327
|
+
}
|
|
22328
|
+
.DatasetEditorTable__table-frozen-right .DatasetEditorTable__body {
|
|
22329
|
+
overflow-y: auto !important;
|
|
22330
|
+
}
|
|
22331
|
+
.DatasetEditorTable__header {
|
|
22332
|
+
overflow: hidden !important;
|
|
22333
|
+
}
|
|
22334
|
+
.DatasetEditorTable .DatasetEditorTable__header,
|
|
22335
|
+
.DatasetEditorTable .DatasetEditorTable__body {
|
|
22336
|
+
outline: none;
|
|
22337
|
+
}
|
|
22338
|
+
.DatasetEditorTable__header-row, .DatasetEditorTable__row {
|
|
22339
|
+
display: flex;
|
|
22340
|
+
align-items: center;
|
|
22341
|
+
border-bottom: 1px solid #eeeeee;
|
|
22342
|
+
box-sizing: border-box;
|
|
22343
|
+
}
|
|
22344
|
+
.DatasetEditorTable__header-row {
|
|
22345
|
+
background-color: #f1f3f5;
|
|
22346
|
+
font-weight: 700;
|
|
22347
|
+
}
|
|
22348
|
+
.DatasetEditorTable__row {
|
|
22349
|
+
background-color: #ffffff;
|
|
22350
|
+
}
|
|
22351
|
+
.DatasetEditorTable__row:hover, .DatasetEditorTable__row--hovered {
|
|
22352
|
+
background-color: unset;
|
|
22353
|
+
}
|
|
22354
|
+
.DatasetEditorTable__row-expanded {
|
|
22355
|
+
border-bottom: 1px solid #eeeeee;
|
|
22356
|
+
}
|
|
22357
|
+
.DatasetEditorTable__header-cell, .DatasetEditorTable__row-cell {
|
|
22358
|
+
min-width: 0;
|
|
22359
|
+
height: 100%;
|
|
22360
|
+
display: flex;
|
|
22361
|
+
align-items: center;
|
|
22362
|
+
padding: 0 7.5px;
|
|
22363
|
+
box-sizing: border-box;
|
|
22364
|
+
}
|
|
22365
|
+
.DatasetEditorTable__header-cell--align-center, .DatasetEditorTable__row-cell--align-center {
|
|
22366
|
+
justify-content: center;
|
|
22367
|
+
text-align: center;
|
|
22368
|
+
}
|
|
22369
|
+
.DatasetEditorTable__header-cell--align-right, .DatasetEditorTable__row-cell--align-right {
|
|
22370
|
+
justify-content: flex-end;
|
|
22371
|
+
text-align: right;
|
|
22372
|
+
}
|
|
22373
|
+
.DatasetEditorTable__header-cell {
|
|
22374
|
+
position: relative;
|
|
22375
|
+
cursor: default;
|
|
22376
|
+
}
|
|
22377
|
+
.DatasetEditorTable__header-cell:hover .DatasetEditorTable__column-resizer {
|
|
22378
|
+
visibility: visible;
|
|
22379
|
+
opacity: 0.5;
|
|
22380
|
+
}
|
|
22381
|
+
.DatasetEditorTable__header-cell:hover .DatasetEditorTable__column-resizer:hover {
|
|
22382
|
+
opacity: 1;
|
|
22383
|
+
}
|
|
22384
|
+
.DatasetEditorTable__header-cell .DatasetEditorTable__sort-indicator {
|
|
22385
|
+
display: none;
|
|
22386
|
+
}
|
|
22387
|
+
.DatasetEditorTable__header-cell--sortable:hover {
|
|
22388
|
+
background-color: #f3f3f3;
|
|
22389
|
+
cursor: pointer;
|
|
22390
|
+
}
|
|
22391
|
+
.DatasetEditorTable__header-cell--sortable:not(.DatasetEditorTable__header-cell--sorting):hover .DatasetEditorTable__sort-indicator {
|
|
22392
|
+
display: block;
|
|
22393
|
+
color: #888888;
|
|
22394
|
+
}
|
|
22395
|
+
.DatasetEditorTable__header-cell--sorting .DatasetEditorTable__sort-indicator, .DatasetEditorTable__header-cell--sorting:hover .DatasetEditorTable__sort-indicator {
|
|
22396
|
+
display: block;
|
|
22397
|
+
}
|
|
22398
|
+
.DatasetEditorTable__header-cell--resizing .DatasetEditorTable__column-resizer {
|
|
22399
|
+
visibility: visible;
|
|
22400
|
+
opacity: 1;
|
|
22401
|
+
}
|
|
22402
|
+
.DatasetEditorTable__header-cell--resizing .DatasetEditorTable__column-resizer::after {
|
|
22403
|
+
position: absolute;
|
|
22404
|
+
left: 0;
|
|
22405
|
+
right: 0;
|
|
22406
|
+
top: 0;
|
|
22407
|
+
bottom: 0;
|
|
22408
|
+
overflow: hidden;
|
|
22409
|
+
content: "";
|
|
22410
|
+
left: -9999px;
|
|
22411
|
+
}
|
|
22412
|
+
.DatasetEditorTable__header-cell-text {
|
|
22413
|
+
overflow: hidden;
|
|
22414
|
+
text-overflow: ellipsis;
|
|
22415
|
+
white-space: normal;
|
|
22416
|
+
}
|
|
22417
|
+
.DatasetEditorTable__header-row--resizing .DatasetEditorTable__header-cell {
|
|
22418
|
+
background-color: transparent;
|
|
22419
|
+
cursor: col-resize;
|
|
22420
|
+
}
|
|
22421
|
+
.DatasetEditorTable__header-row--resizing .DatasetEditorTable__header-cell:not(.DatasetEditorTable__header-cell--sorting) .DatasetEditorTable__sort-indicator {
|
|
22422
|
+
display: none;
|
|
22423
|
+
}
|
|
22424
|
+
.DatasetEditorTable__header-row--resizing .DatasetEditorTable__header-cell:not(.DatasetEditorTable__header-cell--resizing) .DatasetEditorTable__column-resizer {
|
|
22425
|
+
visibility: hidden;
|
|
22426
|
+
}
|
|
22427
|
+
.DatasetEditorTable__column-resizer {
|
|
22428
|
+
width: 3px;
|
|
22429
|
+
visibility: hidden;
|
|
22430
|
+
background-color: #cccccc;
|
|
22431
|
+
}
|
|
22432
|
+
.DatasetEditorTable__column-resizer:hover {
|
|
22433
|
+
visibility: visible;
|
|
22434
|
+
opacity: 1;
|
|
22435
|
+
}
|
|
22436
|
+
.DatasetEditorTable__footer {
|
|
22437
|
+
position: absolute;
|
|
22438
|
+
left: 0;
|
|
22439
|
+
right: 0;
|
|
22440
|
+
bottom: 0;
|
|
22441
|
+
overflow: hidden;
|
|
22442
|
+
background-color: #ffffff;
|
|
22443
|
+
}
|
|
22444
|
+
.DatasetEditorTable__resizing-line {
|
|
22445
|
+
cursor: col-resize;
|
|
22446
|
+
position: absolute;
|
|
22447
|
+
top: 0;
|
|
22448
|
+
background-color: #cccccc;
|
|
22449
|
+
width: 3px;
|
|
22450
|
+
transform: translateX(-100%);
|
|
22451
|
+
}
|
|
22452
|
+
.DatasetEditorTable__empty-layer {
|
|
22453
|
+
position: absolute;
|
|
22454
|
+
left: 0;
|
|
22455
|
+
right: 0;
|
|
22456
|
+
top: 0;
|
|
22457
|
+
bottom: 0;
|
|
22458
|
+
overflow: hidden;
|
|
22459
|
+
background-color: #ffffff;
|
|
22460
|
+
}
|
|
22461
|
+
.DatasetEditorTable__overlay {
|
|
22462
|
+
position: absolute;
|
|
22463
|
+
left: 0;
|
|
22464
|
+
right: 0;
|
|
22465
|
+
top: 0;
|
|
22466
|
+
bottom: 0;
|
|
22467
|
+
overflow: hidden;
|
|
22468
|
+
pointer-events: none;
|
|
22469
|
+
}
|
|
22470
|
+
.DatasetEditorTable__overlay > * {
|
|
22471
|
+
pointer-events: auto;
|
|
22472
|
+
}
|
|
22473
|
+
|
|
22474
|
+
.FluidModal .modal-dialog {
|
|
22475
|
+
width: auto;
|
|
22476
|
+
max-width: 90vw;
|
|
22477
|
+
}
|
|
22478
|
+
@media (max-height: 500px) {
|
|
22479
|
+
.FluidModal .modal-dialog {
|
|
22480
|
+
margin: 3vh auto;
|
|
22481
|
+
margin-bottom: 0px;
|
|
22482
|
+
}
|
|
22483
|
+
}
|
|
22484
|
+
.FluidModal .modal-dialog .modal-content {
|
|
22485
|
+
border-radius: 0px;
|
|
22486
|
+
min-height: 300px;
|
|
22487
|
+
}
|
|
22488
|
+
.FluidModal .modal-dialog .modal-content .modal-header {
|
|
22489
|
+
min-height: 50px;
|
|
22490
|
+
max-height: 65px;
|
|
22491
|
+
height: 8vh;
|
|
22492
|
+
margin: 15px 0px 5px;
|
|
22493
|
+
}
|
|
22494
|
+
.FluidModal .modal-dialog .modal-content .modal-body {
|
|
22495
|
+
max-height: 70vh;
|
|
22496
|
+
overflow-y: auto;
|
|
22497
|
+
}
|
|
22498
|
+
@media (max-height: 600px) {
|
|
22499
|
+
.FluidModal .modal-dialog .modal-content .modal-body {
|
|
22500
|
+
max-height: 65vh;
|
|
22501
|
+
}
|
|
22502
|
+
}
|
|
22503
|
+
.FluidModal .modal-dialog .modal-content .modal-footer {
|
|
22504
|
+
min-height: 45px;
|
|
22505
|
+
max-height: 60px;
|
|
22506
|
+
height: 6vh;
|
|
22507
|
+
margin-bottom: 15px;
|
|
22508
|
+
}
|
|
22509
|
+
.FluidModal .modal-dialog .modal-content .modal-footer .btn {
|
|
22510
|
+
margin-bottom: 0;
|
|
22511
|
+
}
|
|
22512
|
+
|
|
22182
22513
|
/*# sourceMappingURL=main.css.map */
|