synapse-react-client 3.0.17 → 3.0.20
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/FullWidthAlert.js +10 -9
- package/dist/containers/FullWidthAlert.js.map +1 -1
- package/dist/containers/HasAccess.d.ts +2 -1
- package/dist/containers/HasAccess.js.map +1 -1
- package/dist/containers/IDUReport.d.ts +6 -0
- package/dist/containers/IDUReport.js +41 -0
- package/dist/containers/IDUReport.js.map +1 -0
- package/dist/containers/IDUReportSubmissionInfo.d.ts +7 -0
- package/dist/containers/IDUReportSubmissionInfo.js +50 -0
- package/dist/containers/IDUReportSubmissionInfo.js.map +1 -0
- package/dist/containers/IconSvg.d.ts +2 -1
- package/dist/containers/IconSvg.js +4 -0
- package/dist/containers/IconSvg.js.map +1 -1
- package/dist/containers/MarkdownSynapse.d.ts +1 -0
- package/dist/containers/MarkdownSynapse.js +6 -0
- package/dist/containers/MarkdownSynapse.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 +1 -1
- 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/user_profile_links/UserProfileLinks.js.map +1 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.js +0 -2
- package/dist/index.js.map +1 -1
- package/dist/style/abstracts/_mixins.scss +13 -8
- package/dist/style/components/_global-alert.scss +51 -2
- package/dist/style/components/_governance-dashboard.scss +56 -1
- package/dist/style/components/_submission-page.scss +5 -2
- package/dist/style/main.css +183 -27
- package/dist/umd/synapse-react-client.development.css +177 -27
- package/dist/umd/synapse-react-client.development.css.map +2 -2
- package/dist/umd/synapse-react-client.development.js +6839 -5550
- 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 +96 -96
- package/dist/umd.index.d.ts +2 -0
- package/dist/umd.index.js +2 -0
- package/dist/umd.index.js.map +1 -1
- package/dist/utils/SynapseClient.d.ts +9 -2
- package/dist/utils/SynapseClient.js +15 -2
- package/dist/utils/SynapseClient.js.map +1 -1
- package/dist/utils/SynapseConstants.d.ts +1 -1
- package/dist/utils/SynapseConstants.js +1 -1
- package/dist/utils/SynapseConstants.js.map +1 -1
- package/dist/utils/functions/getEndpoint.js.map +1 -1
- 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/useGetApprovedSubmissionInfo.d.ts +5 -0
- package/dist/utils/hooks/SynapseAPI/useGetApprovedSubmissionInfo.js +24 -0
- package/dist/utils/hooks/SynapseAPI/useGetApprovedSubmissionInfo.js.map +1 -0
- 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/dist/utils/synapseTypes/SubmissionInfo.d.ts +17 -0
- package/dist/utils/synapseTypes/SubmissionInfo.js +3 -0
- package/dist/utils/synapseTypes/SubmissionInfo.js.map +1 -0
- package/package.json +3 -4
- package/dist/containers/download_list/ShowDownload.d.ts +0 -13
- package/dist/containers/download_list/ShowDownload.js +0 -74
- package/dist/containers/download_list/ShowDownload.js.map +0 -1
|
@@ -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;
|
|
22669
22676
|
}
|
|
22670
|
-
.EntityMetadata .Tabs > *[aria-selected=
|
|
22671
|
-
|
|
22677
|
+
.EntityMetadata .Tabs > *[aria-selected=false],
|
|
22678
|
+
.EntityMetadata .Tabs > *[aria-current=false] {
|
|
22679
|
+
color: #878e95;
|
|
22680
|
+
border-bottom: 3px solid lightgray;
|
|
22681
|
+
}
|
|
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;
|
|
@@ -22915,6 +22927,16 @@ table.DownloadListTableV2 td {
|
|
|
22915
22927
|
.FullWidthAlert[role=alert] {
|
|
22916
22928
|
padding: 14px;
|
|
22917
22929
|
z-index: 500;
|
|
22930
|
+
color: #323131;
|
|
22931
|
+
-webkit-border-radius: 0px;
|
|
22932
|
+
-moz-border-radius: 0px;
|
|
22933
|
+
-ms-border-radius: 0px;
|
|
22934
|
+
border-radius: 0px;
|
|
22935
|
+
-o-border-radius: 0px;
|
|
22936
|
+
-khtml-border-radius: 0px;
|
|
22937
|
+
box-shadow: none;
|
|
22938
|
+
margin: 10px 0px;
|
|
22939
|
+
border: none;
|
|
22918
22940
|
}
|
|
22919
22941
|
.FullWidthAlert[role=alert].global {
|
|
22920
22942
|
width: 100%;
|
|
@@ -22923,9 +22945,40 @@ table.DownloadListTableV2 td {
|
|
|
22923
22945
|
left: 0px;
|
|
22924
22946
|
z-index: 2500;
|
|
22925
22947
|
}
|
|
22948
|
+
.FullWidthAlert[role=alert] .alert-link {
|
|
22949
|
+
color: inherit;
|
|
22950
|
+
}
|
|
22951
|
+
.FullWidthAlert[role=alert].alert-info {
|
|
22952
|
+
background: #d9ebf2;
|
|
22953
|
+
border-left: 10px solid #017FA5;
|
|
22954
|
+
}
|
|
22955
|
+
.FullWidthAlert[role=alert].alert-info .iconBackground {
|
|
22956
|
+
color: #017FA5;
|
|
22957
|
+
}
|
|
22958
|
+
.FullWidthAlert[role=alert].alert-danger {
|
|
22959
|
+
background: #f7e0dc;
|
|
22960
|
+
border-left: 10px solid #C13415;
|
|
22961
|
+
}
|
|
22962
|
+
.FullWidthAlert[role=alert].alert-danger .iconBackground {
|
|
22963
|
+
color: #C13415;
|
|
22964
|
+
}
|
|
22965
|
+
.FullWidthAlert[role=alert].alert-warning {
|
|
22966
|
+
background: #f8f1d9;
|
|
22967
|
+
border-left: 10px solid #CC9F00;
|
|
22968
|
+
}
|
|
22969
|
+
.FullWidthAlert[role=alert].alert-warning .iconBackground {
|
|
22970
|
+
color: #CC9F00;
|
|
22971
|
+
}
|
|
22972
|
+
.FullWidthAlert[role=alert].alert-success {
|
|
22973
|
+
background: #e0f1e0;
|
|
22974
|
+
border-left: 10px solid #32A330;
|
|
22975
|
+
}
|
|
22976
|
+
.FullWidthAlert[role=alert].alert-success .iconBackground {
|
|
22977
|
+
color: #32A330;
|
|
22978
|
+
}
|
|
22926
22979
|
.FullWidthAlert[role=alert] .gridContainer {
|
|
22927
22980
|
display: grid;
|
|
22928
|
-
grid-template-columns: 50px auto
|
|
22981
|
+
grid-template-columns: 50px auto 120px 170px;
|
|
22929
22982
|
column-gap: 10px;
|
|
22930
22983
|
align-items: center;
|
|
22931
22984
|
justify-items: start;
|
|
@@ -22951,6 +23004,7 @@ table.DownloadListTableV2 td {
|
|
|
22951
23004
|
grid-row: 1/span 1;
|
|
22952
23005
|
justify-self: end;
|
|
22953
23006
|
padding-bottom: 6px;
|
|
23007
|
+
color: #878e95;
|
|
22954
23008
|
}
|
|
22955
23009
|
@media (min-width: 992px) {
|
|
22956
23010
|
.FullWidthAlert[role=alert] .gridContainer {
|
|
@@ -23345,19 +23399,25 @@ table.DownloadListTableV2 td {
|
|
|
23345
23399
|
text-align: center;
|
|
23346
23400
|
flex-grow: 1;
|
|
23347
23401
|
padding: 5px 0px;
|
|
23348
|
-
transition: border-bottom
|
|
23402
|
+
transition: border-bottom 200ms ease-in;
|
|
23403
|
+
border-bottom: 3px solid transparent;
|
|
23404
|
+
}
|
|
23405
|
+
.UserProfileLinks .Tabs > *[aria-selected=false],
|
|
23406
|
+
.UserProfileLinks .Tabs > *[aria-current=false] {
|
|
23407
|
+
color: #878e95;
|
|
23408
|
+
border-bottom: 3px solid lightgray;
|
|
23349
23409
|
}
|
|
23350
|
-
.UserProfileLinks .Tabs >
|
|
23351
|
-
|
|
23410
|
+
.UserProfileLinks .Tabs > *:hover,
|
|
23411
|
+
.UserProfileLinks .Tabs > *[aria-selected=true],
|
|
23412
|
+
.UserProfileLinks .Tabs > *[aria-current=page] {
|
|
23413
|
+
border-color: #469285;
|
|
23352
23414
|
color: #22252a;
|
|
23353
23415
|
}
|
|
23354
|
-
.UserProfileLinks .Tabs >
|
|
23416
|
+
.UserProfileLinks .Tabs > *:hover svg,
|
|
23417
|
+
.UserProfileLinks .Tabs > *[aria-selected=true] svg,
|
|
23418
|
+
.UserProfileLinks .Tabs > *[aria-current=page] svg {
|
|
23355
23419
|
color: #469285;
|
|
23356
23420
|
}
|
|
23357
|
-
.UserProfileLinks .Tabs > *[aria-selected=false] {
|
|
23358
|
-
color: #878e95;
|
|
23359
|
-
border-bottom: 3px solid lightgray;
|
|
23360
|
-
}
|
|
23361
23421
|
.UserProfileLinks .Tabs .Tab {
|
|
23362
23422
|
padding-left: 10px;
|
|
23363
23423
|
}
|
|
@@ -24236,6 +24296,7 @@ input[type=radio] + span {
|
|
|
24236
24296
|
}
|
|
24237
24297
|
.SubmissionPage .SubmissionSummary {
|
|
24238
24298
|
margin-bottom: 15px;
|
|
24299
|
+
min-width: 320px;
|
|
24239
24300
|
}
|
|
24240
24301
|
.SubmissionPage .SubmissionSummary .SubmissionSummaryGrid {
|
|
24241
24302
|
display: grid;
|
|
@@ -24248,8 +24309,9 @@ input[type=radio] + span {
|
|
|
24248
24309
|
.SubmissionPage .SubmissionSummary .SubmissionSummaryGrid .Value {
|
|
24249
24310
|
grid-column: 2;
|
|
24250
24311
|
}
|
|
24251
|
-
.SubmissionPage .SubmissionSummary .SubmissionSummaryGrid
|
|
24252
|
-
|
|
24312
|
+
.SubmissionPage .SubmissionSummary .SubmissionSummaryGrid .DataAccessor {
|
|
24313
|
+
margin-top: 5px;
|
|
24314
|
+
margin-bottom: 3px;
|
|
24253
24315
|
}
|
|
24254
24316
|
.SubmissionPage ul {
|
|
24255
24317
|
padding-left: 25px;
|
|
@@ -24275,6 +24337,71 @@ input[type=radio] + span {
|
|
|
24275
24337
|
box-shadow: none;
|
|
24276
24338
|
border-radius: 2px;
|
|
24277
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
|
+
}
|
|
24278
24405
|
.AccessApprovalsTable,
|
|
24279
24406
|
.AccessSubmissionTable,
|
|
24280
24407
|
.AccessRequirementsTable {
|
|
@@ -24310,8 +24437,11 @@ input[type=radio] + span {
|
|
|
24310
24437
|
font-style: italic;
|
|
24311
24438
|
color: #878e95 !important;
|
|
24312
24439
|
}
|
|
24440
|
+
.AccessApprovalsTable .InlineLabel,
|
|
24313
24441
|
.AccessApprovalsTable .expired,
|
|
24442
|
+
.AccessSubmissionTable .InlineLabel,
|
|
24314
24443
|
.AccessSubmissionTable .expired,
|
|
24444
|
+
.AccessRequirementsTable .InlineLabel,
|
|
24315
24445
|
.AccessRequirementsTable .expired {
|
|
24316
24446
|
color: #878e95;
|
|
24317
24447
|
}
|
|
@@ -24321,6 +24451,26 @@ input[type=radio] + span {
|
|
|
24321
24451
|
color: #878e95;
|
|
24322
24452
|
font-style: italic;
|
|
24323
24453
|
}
|
|
24454
|
+
.AccessRequirementDashboard .InputPanel {
|
|
24455
|
+
display: grid;
|
|
24456
|
+
grid-template-columns: auto 265px auto;
|
|
24457
|
+
gap: 25px;
|
|
24458
|
+
}
|
|
24459
|
+
.AccessRequirementDashboard .InputPanel input {
|
|
24460
|
+
margin-bottom: 0;
|
|
24461
|
+
}
|
|
24462
|
+
.AccessRequirementDashboard .InputPanel .ProjectIdInputGroup {
|
|
24463
|
+
display: flex;
|
|
24464
|
+
gap: 5px;
|
|
24465
|
+
}
|
|
24466
|
+
.AccessRequirementDashboard .InputPanel .styled-svg-wrapper {
|
|
24467
|
+
position: absolute;
|
|
24468
|
+
right: 5px;
|
|
24469
|
+
z-index: 5;
|
|
24470
|
+
height: 100%;
|
|
24471
|
+
display: flex;
|
|
24472
|
+
align-items: center;
|
|
24473
|
+
}
|
|
24324
24474
|
|
|
24325
24475
|
/* sass-plugin-0:/home/runner/work/Synapse-React-Client/Synapse-React-Client/src/lib/style/components/_spinner.scss */
|
|
24326
24476
|
@keyframes spinner {
|