synapse-react-client 3.0.19 → 3.0.22
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/AccessRequestSubmissionTable.d.ts +14 -0
- package/dist/containers/AccessRequestSubmissionTable.js +90 -0
- package/dist/containers/AccessRequestSubmissionTable.js.map +1 -0
- package/dist/containers/EntityIdList.js +8 -5
- package/dist/containers/EntityIdList.js.map +1 -1
- package/dist/containers/EntityLink.js +3 -4
- package/dist/containers/EntityLink.js.map +1 -1
- package/dist/containers/ErrorPage.js +1 -1
- package/dist/containers/ErrorPage.js.map +1 -1
- package/dist/containers/FullWidthAlert.js +4 -3
- package/dist/containers/FullWidthAlert.js.map +1 -1
- package/dist/containers/IconSvg.d.ts +1 -1
- package/dist/containers/IconSvg.js +2 -0
- package/dist/containers/IconSvg.js.map +1 -1
- package/dist/containers/Login.d.ts +1 -1
- package/dist/containers/Login.js +1 -1
- package/dist/containers/QueryWrapper.js +10 -11
- package/dist/containers/QueryWrapper.js.map +1 -1
- package/dist/containers/SqlEditor.d.ts +6 -2
- package/dist/containers/SqlEditor.js +16 -9
- package/dist/containers/SqlEditor.js.map +1 -1
- package/dist/containers/SynapseNavDrawer.js +2 -2
- package/dist/containers/SynapseNavDrawer.js.map +1 -1
- package/dist/containers/UserOrTeamBadge.js +8 -25
- package/dist/containers/UserOrTeamBadge.js.map +1 -1
- package/dist/containers/UserSearchBoxV2.d.ts +13 -0
- package/dist/containers/UserSearchBoxV2.js +91 -0
- package/dist/containers/UserSearchBoxV2.js.map +1 -0
- package/dist/containers/dataaccess/AccessRequirementDashboard.d.ts +6 -0
- package/dist/containers/dataaccess/AccessRequirementDashboard.js +130 -0
- package/dist/containers/dataaccess/AccessRequirementDashboard.js.map +1 -0
- package/dist/containers/dataaccess/AccessRequirementTable.d.ts +10 -0
- package/dist/containers/dataaccess/AccessRequirementTable.js +89 -0
- package/dist/containers/dataaccess/AccessRequirementTable.js.map +1 -0
- package/dist/containers/dataaccess/ReviewerDashboard.d.ts +9 -0
- package/dist/containers/dataaccess/ReviewerDashboard.js +82 -0
- package/dist/containers/dataaccess/ReviewerDashboard.js.map +1 -0
- package/dist/containers/dataaccess/SubmissionPage.d.ts +11 -0
- package/dist/containers/dataaccess/SubmissionPage.js +176 -0
- package/dist/containers/dataaccess/SubmissionPage.js.map +1 -0
- package/dist/containers/synapse_table_functions/SynapseTableCell.js +4 -2
- package/dist/containers/synapse_table_functions/SynapseTableCell.js.map +1 -1
- package/dist/containers/table/SynapseTable.js +1 -1
- package/dist/style/abstracts/_mixins.scss +13 -8
- package/dist/style/components/_global-alert.scss +1 -1
- package/dist/style/components/_governance-dashboard.scss +29 -0
- package/dist/style/components/_submission-page.scss +1 -4
- package/dist/style/main.css +117 -28
- package/dist/umd/synapse-react-client.development.css +112 -28
- package/dist/umd/synapse-react-client.development.css.map +2 -2
- package/dist/umd/synapse-react-client.development.js +3307 -1832
- 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 +90 -90
- package/dist/umd.index.d.ts +4 -1
- package/dist/umd.index.js +7 -1
- package/dist/umd.index.js.map +1 -1
- package/dist/utils/SynapseClient.d.ts +6 -3
- package/dist/utils/SynapseClient.js +14 -3
- package/dist/utils/SynapseClient.js.map +1 -1
- package/dist/utils/SynapseConstants.d.ts +2 -1
- package/dist/utils/SynapseConstants.js +3 -2
- package/dist/utils/SynapseConstants.js.map +1 -1
- package/dist/utils/functions/getEndpoint.d.ts +1 -2
- package/dist/utils/hooks/SynapseAPI/dataaccess/useAccessSubmission.d.ts +5 -0
- package/dist/utils/hooks/SynapseAPI/dataaccess/useAccessSubmission.js +21 -0
- package/dist/utils/hooks/SynapseAPI/dataaccess/useAccessSubmission.js.map +1 -0
- package/dist/utils/hooks/SynapseAPI/dataaccess/useGetDataAccessSubmission.d.ts +5 -0
- package/dist/utils/hooks/SynapseAPI/dataaccess/useGetDataAccessSubmission.js +11 -0
- package/dist/utils/hooks/SynapseAPI/dataaccess/useGetDataAccessSubmission.js.map +1 -0
- package/dist/utils/hooks/SynapseAPI/entity/useEntity.d.ts +5 -0
- package/dist/utils/hooks/SynapseAPI/entity/useGetQueryResultBundle.js +5 -2
- package/dist/utils/hooks/SynapseAPI/entity/useGetQueryResultBundle.js.map +1 -1
- package/dist/utils/hooks/SynapseAPI/useUserBundle.d.ts +2 -1
- package/dist/utils/hooks/SynapseAPI/useUserBundle.js +17 -2
- package/dist/utils/hooks/SynapseAPI/useUserBundle.js.map +1 -1
- package/dist/utils/hooks/SynapseAPI/useUserGroupHeader.d.ts +5 -0
- package/dist/utils/hooks/SynapseAPI/useUserGroupHeader.js +28 -0
- package/dist/utils/hooks/SynapseAPI/useUserGroupHeader.js.map +1 -0
- package/dist/utils/hooks/useDebouncedEffect.d.ts +9 -0
- package/dist/utils/hooks/useDebouncedEffect.js +21 -0
- package/dist/utils/hooks/useDebouncedEffect.js.map +1 -0
- package/dist/utils/hooks/useGetInfoFromIds.d.ts +6 -0
- package/dist/utils/hooks/useGetInfoFromIds.js +6 -2
- package/dist/utils/hooks/useGetInfoFromIds.js.map +1 -1
- package/dist/utils/synapseTypes/AccessRequirement/Submission.d.ts +52 -0
- package/dist/utils/synapseTypes/AccessRequirement/Submission.js +3 -0
- package/dist/utils/synapseTypes/AccessRequirement/Submission.js.map +1 -0
- package/package.json +2 -2
|
@@ -18844,19 +18844,25 @@ button:hover .SRC-column-light-theme .SRC-light-column {
|
|
|
18844
18844
|
text-align: center;
|
|
18845
18845
|
flex-grow: 1;
|
|
18846
18846
|
padding: 5px 0px;
|
|
18847
|
-
transition: border-bottom
|
|
18847
|
+
transition: border-bottom 200ms ease-in;
|
|
18848
|
+
border-bottom: 3px solid transparent;
|
|
18848
18849
|
}
|
|
18849
|
-
.ProgrammaticOptions .Tabs > *[aria-selected=
|
|
18850
|
-
|
|
18850
|
+
.ProgrammaticOptions .Tabs > *[aria-selected=false],
|
|
18851
|
+
.ProgrammaticOptions .Tabs > *[aria-current=false] {
|
|
18852
|
+
color: #878e95;
|
|
18853
|
+
border-bottom: 3px solid lightgray;
|
|
18854
|
+
}
|
|
18855
|
+
.ProgrammaticOptions .Tabs > *:hover,
|
|
18856
|
+
.ProgrammaticOptions .Tabs > *[aria-selected=true],
|
|
18857
|
+
.ProgrammaticOptions .Tabs > *[aria-current=page] {
|
|
18858
|
+
border-color: #469285;
|
|
18851
18859
|
color: #22252a;
|
|
18852
18860
|
}
|
|
18853
|
-
.ProgrammaticOptions .Tabs >
|
|
18861
|
+
.ProgrammaticOptions .Tabs > *:hover svg,
|
|
18862
|
+
.ProgrammaticOptions .Tabs > *[aria-selected=true] svg,
|
|
18863
|
+
.ProgrammaticOptions .Tabs > *[aria-current=page] svg {
|
|
18854
18864
|
color: #469285;
|
|
18855
18865
|
}
|
|
18856
|
-
.ProgrammaticOptions .Tabs > *[aria-selected=false] {
|
|
18857
|
-
color: #878e95;
|
|
18858
|
-
border-bottom: 3px solid lightgray;
|
|
18859
|
-
}
|
|
18860
18866
|
.ProgrammaticOptions .TabContent {
|
|
18861
18867
|
padding-top: 20px;
|
|
18862
18868
|
min-height: 300px;
|
|
@@ -22665,19 +22671,25 @@ table.DownloadListTableV2 td {
|
|
|
22665
22671
|
text-align: center;
|
|
22666
22672
|
flex-grow: 1;
|
|
22667
22673
|
padding: 5px 0px;
|
|
22668
|
-
transition: border-bottom
|
|
22674
|
+
transition: border-bottom 200ms ease-in;
|
|
22675
|
+
border-bottom: 3px solid transparent;
|
|
22676
|
+
}
|
|
22677
|
+
.EntityMetadata .Tabs > *[aria-selected=false],
|
|
22678
|
+
.EntityMetadata .Tabs > *[aria-current=false] {
|
|
22679
|
+
color: #878e95;
|
|
22680
|
+
border-bottom: 3px solid lightgray;
|
|
22669
22681
|
}
|
|
22670
|
-
.EntityMetadata .Tabs >
|
|
22671
|
-
|
|
22682
|
+
.EntityMetadata .Tabs > *:hover,
|
|
22683
|
+
.EntityMetadata .Tabs > *[aria-selected=true],
|
|
22684
|
+
.EntityMetadata .Tabs > *[aria-current=page] {
|
|
22685
|
+
border-color: #469285;
|
|
22672
22686
|
color: #22252a;
|
|
22673
22687
|
}
|
|
22674
|
-
.EntityMetadata .Tabs >
|
|
22688
|
+
.EntityMetadata .Tabs > *:hover svg,
|
|
22689
|
+
.EntityMetadata .Tabs > *[aria-selected=true] svg,
|
|
22690
|
+
.EntityMetadata .Tabs > *[aria-current=page] svg {
|
|
22675
22691
|
color: #469285;
|
|
22676
22692
|
}
|
|
22677
|
-
.EntityMetadata .Tabs > *[aria-selected=false] {
|
|
22678
|
-
color: #878e95;
|
|
22679
|
-
border-bottom: 3px solid lightgray;
|
|
22680
|
-
}
|
|
22681
22693
|
.EntityMetadata .placeholder {
|
|
22682
22694
|
margin: 30px 0px;
|
|
22683
22695
|
text-align: center;
|
|
@@ -22966,7 +22978,7 @@ table.DownloadListTableV2 td {
|
|
|
22966
22978
|
}
|
|
22967
22979
|
.FullWidthAlert[role=alert] .gridContainer {
|
|
22968
22980
|
display: grid;
|
|
22969
|
-
grid-template-columns: 50px auto
|
|
22981
|
+
grid-template-columns: 50px auto 120px 170px;
|
|
22970
22982
|
column-gap: 10px;
|
|
22971
22983
|
align-items: center;
|
|
22972
22984
|
justify-items: start;
|
|
@@ -23387,19 +23399,25 @@ table.DownloadListTableV2 td {
|
|
|
23387
23399
|
text-align: center;
|
|
23388
23400
|
flex-grow: 1;
|
|
23389
23401
|
padding: 5px 0px;
|
|
23390
|
-
transition: border-bottom
|
|
23402
|
+
transition: border-bottom 200ms ease-in;
|
|
23403
|
+
border-bottom: 3px solid transparent;
|
|
23391
23404
|
}
|
|
23392
|
-
.UserProfileLinks .Tabs > *[aria-selected=
|
|
23393
|
-
|
|
23405
|
+
.UserProfileLinks .Tabs > *[aria-selected=false],
|
|
23406
|
+
.UserProfileLinks .Tabs > *[aria-current=false] {
|
|
23407
|
+
color: #878e95;
|
|
23408
|
+
border-bottom: 3px solid lightgray;
|
|
23409
|
+
}
|
|
23410
|
+
.UserProfileLinks .Tabs > *:hover,
|
|
23411
|
+
.UserProfileLinks .Tabs > *[aria-selected=true],
|
|
23412
|
+
.UserProfileLinks .Tabs > *[aria-current=page] {
|
|
23413
|
+
border-color: #469285;
|
|
23394
23414
|
color: #22252a;
|
|
23395
23415
|
}
|
|
23396
|
-
.UserProfileLinks .Tabs >
|
|
23416
|
+
.UserProfileLinks .Tabs > *:hover svg,
|
|
23417
|
+
.UserProfileLinks .Tabs > *[aria-selected=true] svg,
|
|
23418
|
+
.UserProfileLinks .Tabs > *[aria-current=page] svg {
|
|
23397
23419
|
color: #469285;
|
|
23398
23420
|
}
|
|
23399
|
-
.UserProfileLinks .Tabs > *[aria-selected=false] {
|
|
23400
|
-
color: #878e95;
|
|
23401
|
-
border-bottom: 3px solid lightgray;
|
|
23402
|
-
}
|
|
23403
23421
|
.UserProfileLinks .Tabs .Tab {
|
|
23404
23422
|
padding-left: 10px;
|
|
23405
23423
|
}
|
|
@@ -24278,6 +24296,7 @@ input[type=radio] + span {
|
|
|
24278
24296
|
}
|
|
24279
24297
|
.SubmissionPage .SubmissionSummary {
|
|
24280
24298
|
margin-bottom: 15px;
|
|
24299
|
+
min-width: 320px;
|
|
24281
24300
|
}
|
|
24282
24301
|
.SubmissionPage .SubmissionSummary .SubmissionSummaryGrid {
|
|
24283
24302
|
display: grid;
|
|
@@ -24290,9 +24309,6 @@ input[type=radio] + span {
|
|
|
24290
24309
|
.SubmissionPage .SubmissionSummary .SubmissionSummaryGrid .Value {
|
|
24291
24310
|
grid-column: 2;
|
|
24292
24311
|
}
|
|
24293
|
-
.SubmissionPage .SubmissionSummary .SubmissionSummaryGrid > * {
|
|
24294
|
-
white-space: nowrap;
|
|
24295
|
-
}
|
|
24296
24312
|
.SubmissionPage .SubmissionSummary .SubmissionSummaryGrid .DataAccessor {
|
|
24297
24313
|
margin-top: 5px;
|
|
24298
24314
|
margin-bottom: 3px;
|
|
@@ -24321,6 +24337,71 @@ input[type=radio] + span {
|
|
|
24321
24337
|
box-shadow: none;
|
|
24322
24338
|
border-radius: 2px;
|
|
24323
24339
|
}
|
|
24340
|
+
.ReviewerDashboard .Breadcrumb {
|
|
24341
|
+
display: flex;
|
|
24342
|
+
align-items: center;
|
|
24343
|
+
margin-bottom: 20px;
|
|
24344
|
+
}
|
|
24345
|
+
.ReviewerDashboard .Tabs {
|
|
24346
|
+
display: flex;
|
|
24347
|
+
justify-content: space-between;
|
|
24348
|
+
justify-content: flex-start;
|
|
24349
|
+
box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.05);
|
|
24350
|
+
}
|
|
24351
|
+
.ReviewerDashboard .Tabs > * {
|
|
24352
|
+
cursor: pointer;
|
|
24353
|
+
text-align: center;
|
|
24354
|
+
flex-grow: 1;
|
|
24355
|
+
padding: 5px 0px;
|
|
24356
|
+
transition: border-bottom 200ms ease-in;
|
|
24357
|
+
border-bottom: 3px solid transparent;
|
|
24358
|
+
}
|
|
24359
|
+
.ReviewerDashboard .Tabs > *[aria-selected=false],
|
|
24360
|
+
.ReviewerDashboard .Tabs > *[aria-current=false] {
|
|
24361
|
+
color: #878e95;
|
|
24362
|
+
border-bottom: 3px solid lightgray;
|
|
24363
|
+
}
|
|
24364
|
+
.ReviewerDashboard .Tabs > *:hover,
|
|
24365
|
+
.ReviewerDashboard .Tabs > *[aria-selected=true],
|
|
24366
|
+
.ReviewerDashboard .Tabs > *[aria-current=page] {
|
|
24367
|
+
border-color: #469285;
|
|
24368
|
+
color: #22252a;
|
|
24369
|
+
}
|
|
24370
|
+
.ReviewerDashboard .Tabs > *:hover svg,
|
|
24371
|
+
.ReviewerDashboard .Tabs > *[aria-selected=true] svg,
|
|
24372
|
+
.ReviewerDashboard .Tabs > *[aria-current=page] svg {
|
|
24373
|
+
color: #469285;
|
|
24374
|
+
}
|
|
24375
|
+
.ReviewerDashboard .Tabs .Tab {
|
|
24376
|
+
color: unset;
|
|
24377
|
+
text-decoration: unset;
|
|
24378
|
+
font-weight: unset;
|
|
24379
|
+
text-decoration: unset;
|
|
24380
|
+
letter-spacing: unset;
|
|
24381
|
+
flex-grow: 0;
|
|
24382
|
+
height: 45px;
|
|
24383
|
+
padding-left: 30px;
|
|
24384
|
+
padding-right: 30px;
|
|
24385
|
+
display: flex;
|
|
24386
|
+
align-items: center;
|
|
24387
|
+
}
|
|
24388
|
+
.ReviewerDashboard .Tabs .Tab:hover {
|
|
24389
|
+
text-decoration: unset;
|
|
24390
|
+
margin-bottom: unset;
|
|
24391
|
+
}
|
|
24392
|
+
.ReviewerDashboard .Tabs .Tab.disabled {
|
|
24393
|
+
color: #aeb5bc;
|
|
24394
|
+
}
|
|
24395
|
+
.ReviewerDashboard .Tabs .Tab.disabled:hover {
|
|
24396
|
+
text-decoration: underline;
|
|
24397
|
+
text-underline-offset: 4px;
|
|
24398
|
+
text-decoration-thickness: 1px;
|
|
24399
|
+
text-decoration-color: #d6d6d6;
|
|
24400
|
+
cursor: default;
|
|
24401
|
+
}
|
|
24402
|
+
.ReviewerDashboard .TabContentContainer {
|
|
24403
|
+
margin: 20px 30px;
|
|
24404
|
+
}
|
|
24324
24405
|
.AccessApprovalsTable,
|
|
24325
24406
|
.AccessSubmissionTable,
|
|
24326
24407
|
.AccessRequirementsTable {
|
|
@@ -24356,8 +24437,11 @@ input[type=radio] + span {
|
|
|
24356
24437
|
font-style: italic;
|
|
24357
24438
|
color: #878e95 !important;
|
|
24358
24439
|
}
|
|
24440
|
+
.AccessApprovalsTable .InlineLabel,
|
|
24359
24441
|
.AccessApprovalsTable .expired,
|
|
24442
|
+
.AccessSubmissionTable .InlineLabel,
|
|
24360
24443
|
.AccessSubmissionTable .expired,
|
|
24444
|
+
.AccessRequirementsTable .InlineLabel,
|
|
24361
24445
|
.AccessRequirementsTable .expired {
|
|
24362
24446
|
color: #878e95;
|
|
24363
24447
|
}
|