synapse-react-client 2.1.20 → 2.1.23
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/ChangePassword.d.ts +3 -0
- package/dist/containers/ChangePassword.js +88 -0
- package/dist/containers/ChangePassword.js.map +1 -0
- package/dist/containers/FileUpload.d.ts +1 -1
- package/dist/containers/FileUpload.js.map +1 -1
- package/dist/containers/FluidModal.d.ts +2 -0
- package/dist/containers/FluidModal.js +6 -1
- package/dist/containers/FluidModal.js.map +1 -1
- package/dist/containers/LoadingScreen.d.ts +7 -1
- package/dist/containers/LoadingScreen.js +15 -4
- package/dist/containers/LoadingScreen.js.map +1 -1
- package/dist/containers/ToastMessage.d.ts +1 -1
- package/dist/containers/access_requirement_list/managedACTAccess/RequestDataAccessStep2.d.ts +1 -7
- package/dist/containers/access_requirement_list/managedACTAccess/RequestDataAccessStep2.js.map +1 -1
- package/dist/containers/entity/annotations/AdditionalPropertiesSchemaField.d.ts +1 -1
- package/dist/containers/entity_finder/EntityFinder.d.ts +1 -1
- package/dist/containers/entity_finder/EntityFinder.js +4 -4
- package/dist/containers/entity_finder/EntityFinder.js.map +1 -1
- package/dist/containers/entity_finder/EntityFinderModal.d.ts +2 -0
- package/dist/containers/entity_finder/EntityFinderModal.js +1 -1
- package/dist/containers/entity_finder/EntityFinderModal.js.map +1 -1
- package/dist/containers/entity_finder/details/configurations/EntityChildrenDetails.js +6 -4
- package/dist/containers/entity_finder/details/configurations/EntityChildrenDetails.js.map +1 -1
- package/dist/containers/entity_finder/details/view/DetailsView.d.ts +5 -1
- package/dist/containers/entity_finder/details/view/DetailsView.js +9 -2
- package/dist/containers/entity_finder/details/view/DetailsView.js.map +1 -1
- package/dist/containers/entity_finder/tree/{TreeView.d.ts → EntityTree.d.ts} +4 -4
- package/dist/containers/entity_finder/tree/{TreeView.js → EntityTree.js} +43 -30
- package/dist/containers/entity_finder/tree/EntityTree.js.map +1 -0
- package/dist/containers/entity_finder/tree/VirtualizedTree.d.ts +89 -0
- package/dist/containers/entity_finder/tree/VirtualizedTree.js +379 -0
- package/dist/containers/entity_finder/tree/VirtualizedTree.js.map +1 -0
- package/dist/containers/table/datasets/DatasetItemsEditor.js +5 -2
- package/dist/containers/table/datasets/DatasetItemsEditor.js.map +1 -1
- package/dist/containers/widgets/facet-nav/FacetNav.js +3 -1
- package/dist/containers/widgets/facet-nav/FacetNav.js.map +1 -1
- package/dist/containers/widgets/query-filter/QueryFilter.js +4 -0
- package/dist/containers/widgets/query-filter/QueryFilter.js.map +1 -1
- package/dist/index.d.ts +3 -3
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/style/abstracts/_variables.scss +14 -0
- package/dist/style/components/_bar-loader.scss +11 -2
- package/dist/style/components/_spinner.scss +2 -2
- package/dist/style/components/entity_finder/_tree-node-browse.scss +5 -10
- package/dist/style/components/entity_finder/_tree-node-select.scss +17 -23
- package/dist/style/components/entity_finder/_tree-view.scss +17 -20
- package/dist/style/main.css +42 -27
- package/dist/umd/synapse-react-client.development.css +67 -27
- package/dist/umd/synapse-react-client.development.css.map +3 -3
- package/dist/umd/synapse-react-client.development.js +7787 -1156
- 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 +106 -79
- package/dist/umd.index.d.ts +2 -1
- package/dist/umd.index.js +2 -0
- package/dist/umd.index.js.map +1 -1
- package/dist/utils/APIConstants.d.ts +1 -0
- package/dist/utils/APIConstants.js +2 -1
- package/dist/utils/APIConstants.js.map +1 -1
- package/dist/utils/SynapseClient.d.ts +18 -3
- package/dist/utils/SynapseClient.js +37 -6
- package/dist/utils/SynapseClient.js.map +1 -1
- package/dist/utils/functions/EntityTypeUtils.js +8 -1
- package/dist/utils/functions/EntityTypeUtils.js.map +1 -1
- package/dist/utils/functions/facetUtils.d.ts +1 -25
- package/dist/utils/functions/facetUtils.js +4 -51
- package/dist/utils/functions/facetUtils.js.map +1 -1
- package/dist/utils/functions/queryUtils.d.ts +1 -0
- package/dist/utils/functions/queryUtils.js +7 -1
- package/dist/utils/functions/queryUtils.js.map +1 -1
- package/dist/utils/hooks/SynapseAPI/useGetEntityChildren.js +3 -3
- package/dist/utils/hooks/SynapseAPI/useGetEntityChildren.js.map +1 -1
- package/dist/utils/synapseTypes/ChangePasswordRequests.d.ts +25 -0
- package/dist/utils/synapseTypes/ChangePasswordRequests.js +3 -0
- package/dist/utils/synapseTypes/ChangePasswordRequests.js.map +1 -0
- package/dist/utils/synapseTypes/FileUploadComplete.d.ts +6 -0
- package/dist/utils/synapseTypes/VerificationSubmission.d.ts +22 -5
- package/dist/utils/synapseTypes/VerificationSubmission.js +8 -0
- package/dist/utils/synapseTypes/VerificationSubmission.js.map +1 -1
- package/dist/utils/types/Writable.d.ts +8 -0
- package/dist/utils/types/Writable.js +3 -0
- package/dist/utils/types/Writable.js.map +1 -0
- package/dist/utils/typography/Typography.styles.d.ts +1 -1
- package/package.json +6 -1
- package/dist/containers/Facets.d.ts +0 -43
- package/dist/containers/Facets.js +0 -199
- package/dist/containers/Facets.js.map +0 -1
- package/dist/containers/entity_finder/tree/TreeNode.d.ts +0 -25
- package/dist/containers/entity_finder/tree/TreeNode.js +0 -89
- package/dist/containers/entity_finder/tree/TreeNode.js.map +0 -1
- package/dist/containers/entity_finder/tree/TreeView.js.map +0 -1
package/dist/index.js
CHANGED
|
@@ -5,7 +5,6 @@ var tslib_1 = require("tslib");
|
|
|
5
5
|
require("regenerator-runtime/runtime");
|
|
6
6
|
require("react-app-polyfill/ie11");
|
|
7
7
|
require("react-app-polyfill/stable");
|
|
8
|
-
var Facets_1 = require("./containers/Facets");
|
|
9
8
|
var MarkdownSynapse_1 = (0, tslib_1.__importDefault)(require("./containers/MarkdownSynapse"));
|
|
10
9
|
var QueryWrapper_1 = (0, tslib_1.__importDefault)(require("./containers/QueryWrapper"));
|
|
11
10
|
var QueryWrapperPlotNav_1 = (0, tslib_1.__importDefault)(require("./containers/query_wrapper_plot_nav/QueryWrapperPlotNav"));
|
|
@@ -32,6 +31,7 @@ var RssFeedCards_1 = (0, tslib_1.__importDefault)(require("./containers/RssFeedC
|
|
|
32
31
|
var TableFeedCards_1 = (0, tslib_1.__importDefault)(require("./containers/TableFeedCards"));
|
|
33
32
|
var ThemesPlot_1 = (0, tslib_1.__importDefault)(require("./containers/widgets/themes-plot/ThemesPlot"));
|
|
34
33
|
var UpsetPlot_1 = (0, tslib_1.__importDefault)(require("./containers/UpsetPlot"));
|
|
34
|
+
var FileUpload_1 = (0, tslib_1.__importDefault)(require("./containers/FileUpload"));
|
|
35
35
|
var SynapsePlot_1 = (0, tslib_1.__importDefault)(require("./containers/widgets/SynapsePlot"));
|
|
36
36
|
var UserCardListRotate_1 = (0, tslib_1.__importDefault)(require("./containers/UserCardListRotate"));
|
|
37
37
|
var SubsectionRowRenderer_1 = (0, tslib_1.__importDefault)(require("./containers/SubsectionRowRenderer"));
|
|
@@ -48,6 +48,7 @@ var ExperimentalMode_1 = (0, tslib_1.__importDefault)(require("./containers/Expe
|
|
|
48
48
|
var EntityBadgeIcons_1 = require("./containers/EntityBadgeIcons");
|
|
49
49
|
var ProgrammaticTableDownload_1 = (0, tslib_1.__importDefault)(require("./containers/table/table-top/ProgrammaticTableDownload"));
|
|
50
50
|
var UserProfileLinks_1 = (0, tslib_1.__importDefault)(require("./containers/user_profile_links/UserProfileLinks"));
|
|
51
|
+
var ChangePassword_1 = (0, tslib_1.__importDefault)(require("./containers/ChangePassword"));
|
|
51
52
|
var SynapseContext_1 = require("./utils/SynapseContext");
|
|
52
53
|
var MarkdownPopover_1 = require("./containers/MarkdownPopover");
|
|
53
54
|
// we exclude this from main.scss because react doesn't like importing an svg
|
|
@@ -71,7 +72,6 @@ var SynapseContext = {
|
|
|
71
72
|
};
|
|
72
73
|
exports.SynapseContext = SynapseContext;
|
|
73
74
|
var SynapseComponents = {
|
|
74
|
-
Facets: Facets_1.Facets,
|
|
75
75
|
Login: Login_1.default,
|
|
76
76
|
CardContainer: CardContainer_1.default,
|
|
77
77
|
QueryWrapper: QueryWrapper_1.default,
|
|
@@ -122,6 +122,8 @@ var SynapseComponents = {
|
|
|
122
122
|
FeaturedToolsList: FeaturedToolsList_1.default,
|
|
123
123
|
SubsectionRowRenderer: SubsectionRowRenderer_1.default,
|
|
124
124
|
ProgrammaticTableDownload: ProgrammaticTableDownload_1.default,
|
|
125
|
+
ChangePassword: ChangePassword_1.default,
|
|
126
|
+
FileUpload: FileUpload_1.default
|
|
125
127
|
};
|
|
126
128
|
exports.SynapseComponents = SynapseComponents;
|
|
127
129
|
//# sourceMappingURL=index.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/lib/index.ts"],"names":[],"mappings":";;;;AAAA,uCAAoC;AACpC,mCAAgC;AAChC,qCAAkC;AAClC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/lib/index.ts"],"names":[],"mappings":";;;;AAAA,uCAAoC;AACpC,mCAAgC;AAChC,qCAAkC;AAClC,8FAA0D;AAC1D,wFAAoD;AACpD,6HAAyF;AACzF,8FAA0D;AAC1D,kFAA8C;AAC9C,8FAA0D;AAC1D,kHAA8E;AAC9E,gFAA4C;AAC5C,0EAAsC;AACtC,oFAAgD;AAChD,oFAAgD;AAChD,0FAAsD;AACtD,8EAA4E;AAC5E,yHAAqF;AACrF,yIAAqG;AACrG,oGAAgE;AAChE,0FAAsD;AACtD,sGAAkE;AAClE,gHAA4E;AAC5E,0FAAsD;AACtD,mGAA+D;AAC/D,sGAAkE;AAClE,wFAAoD;AACpD,4FAAwD;AACxD,wGAAoE;AACpE,kFAA8C;AAC9C,oFAAgD;AAChD,8FAA0D;AAC1D,oGAAgE;AAChE,0GAAsE;AACtE,wHAAoF;AACpF,2HAAuF;AACvF,qHAAiF;AACjF,oEAAkE;AAClE,4FAAwD;AACxD,oGAAgE;AAChE,wFAAoD;AACpD,sIAAkG;AAClG,sGAAkE;AAClE,gGAA4D;AAC5D,kEAAgE;AAChE,kIAA8F;AAC9F,mHAA+E;AAC/E,4FAAwD;AACxD,yDAI+B;AAC/B,gEAA8D;AAE9D,6EAA6E;AAC7E,0BAA0B;AAC1B,4CAAyC;AACzC,iCAAyD;AAsEjC,iGAtEf,wBAAgB,OAsEe;AAA/B,8FAtEkB,qBAAa,OAsElB;AArEtB,gFAA8E;AAC9E,4FAA0F;AAC1F,mFAAiF;AACjF,6GAAyE;AACzE,4FAAwD;AACxD,0DAA+E;AAC/E,0FAAsD;AA+DuB,qBA/DtE,oBAAU,CA+DsE;AA7DvF,IAAM,cAAc,GAAG;IACrB,sBAAsB,yCAAA;IACtB,sBAAsB,yCAAA;IACtB,iBAAiB,oCAAA;CAClB,CAAA;AAyD4D,wCAAc;AAvD3E,IAAM,iBAAiB,GAAG;IACxB,KAAK,iBAAA;IACL,aAAa,yBAAA;IACb,YAAY,wBAAA;IACZ,eAAe,2BAAA;IACf,sBAAsB,kCAAA;IACtB,YAAY,wBAAA;IACZ,kBAAkB,8BAAA;IAClB,UAAU,sBAAA;IACV,QAAQ,oBAAA;IACR,UAAU,sBAAA;IACV,QAAQ,EAAE,yBAAe;IACzB,aAAa,yBAAA;IACb,kBAAkB,8BAAA;IAClB,0BAA0B,sCAAA;IAC1B,SAAS,qBAAA;IACT,iBAAiB,6BAAA;IACjB,UAAU,sBAAA;IACV,YAAY,wBAAA;IACZ,mBAAmB,+BAAA;IACnB,sBAAsB,iDAAA;IACtB,QAAQ,oBAAA;IACR,KAAK,iBAAA;IACL,SAAS,qBAAA;IACT,SAAS,qBAAA;IACT,WAAW,uBAAA;IACX,YAAY,wBAAA;IACZ,cAAc,0BAAA;IACd,kBAAkB,8BAAA;IAClB,gBAAgB,4BAAA;IAChB,kBAAkB,8BAAA;IAClB,cAAc,iCAAA;IACd,oBAAoB,6CAAA;IACpB,iBAAiB,uCAAA;IACjB,cAAc,0BAAA;IACd,kBAAkB,8BAAA;IAClB,YAAY,wBAAA;IACZ,mBAAmB,+BAAA;IACnB,YAAY,wBAAA;IACZ,gBAAgB,4BAAA;IAChB,gBAAgB,qCAAA;IAChB,gBAAgB,qCAAA;IAChB,cAAc,0BAAA;IACd,cAAc,EAAE,wBAAc;IAC9B,qBAAqB,sCAAA;IACrB,YAAY,6BAAA;IACZ,gBAAgB,4BAAA;IAChB,eAAe,mCAAA;IACf,iBAAiB,6BAAA;IACjB,qBAAqB,iCAAA;IACrB,yBAAyB,qCAAA;IACzB,cAAc,0BAAA;IACd,UAAU,sBAAA;CACX,CAAA;AAEyC,8CAAiB"}
|
|
@@ -38,6 +38,8 @@ $text-color-disabled: #bbbbbc !default;
|
|
|
38
38
|
$secondary-action-color: #469285 !default;
|
|
39
39
|
$secondary-action-color-dark: #5660e5 !default;
|
|
40
40
|
|
|
41
|
+
$tertiary-action-color: #F1D285 !default;
|
|
42
|
+
|
|
41
43
|
$gray-formtext: #515359 !default;
|
|
42
44
|
$gray-regular: #515359 !default;
|
|
43
45
|
$gray-deemphasized: #ababac !default;
|
|
@@ -97,6 +99,18 @@ $secondary-color-palette: (
|
|
|
97
99
|
900: adjust-color($secondary-action-color, $saturation: 24%, $lightness: -18%),
|
|
98
100
|
) !default;
|
|
99
101
|
|
|
102
|
+
$tertiary-color-palette: (
|
|
103
|
+
100: adjust-color($tertiary-action-color, $saturation: -25%, $lightness: 50%),
|
|
104
|
+
200: adjust-color($tertiary-action-color, $saturation: -13%, $lightness: 20%),
|
|
105
|
+
300: adjust-color($tertiary-action-color, $saturation: -3%, $lightness: 10%),
|
|
106
|
+
400: adjust-color($tertiary-action-color, $saturation: -1%, $lightness: 5%),
|
|
107
|
+
500: $tertiary-action-color,
|
|
108
|
+
600: adjust-color($tertiary-action-color, $saturation: 5%, $lightness: -4%),
|
|
109
|
+
700: adjust-color($tertiary-action-color, $saturation: 11%, $lightness: -8%),
|
|
110
|
+
800: adjust-color($tertiary-action-color, $saturation: 18%, $lightness: -10%),
|
|
111
|
+
900: adjust-color($tertiary-action-color, $saturation: 24%, $lightness: -18%),
|
|
112
|
+
) !default;
|
|
113
|
+
|
|
100
114
|
/// Breakpoints map
|
|
101
115
|
/// @prop {String} keys - Keys are identifiers mapped to a given length
|
|
102
116
|
/// @prop {Map} values - Values are actual breakpoints expressed in pixels
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
@use '../abstracts/variables' as SRC;
|
|
2
|
+
@use 'sass:map';
|
|
3
|
+
|
|
1
4
|
.bar-loader {
|
|
2
5
|
display: flex;
|
|
3
6
|
justify-content: center;
|
|
@@ -5,10 +8,16 @@
|
|
|
5
8
|
height: 30px;
|
|
6
9
|
width: 100%;
|
|
7
10
|
.bar-background-color {
|
|
8
|
-
background-color:
|
|
11
|
+
background-color: map.get(SRC.$colors, 'gray-400');
|
|
9
12
|
}
|
|
10
13
|
.bar-color {
|
|
11
|
-
background-color:
|
|
14
|
+
background-color: map.get(SRC.$tertiary-color-palette, 400);
|
|
15
|
+
}
|
|
16
|
+
.MuiLinearProgress-determinate {
|
|
17
|
+
margin-bottom: 20px;
|
|
18
|
+
border-radius: 6px;
|
|
19
|
+
height: 10px;
|
|
20
|
+
width: 180px;
|
|
12
21
|
}
|
|
13
22
|
> div {
|
|
14
23
|
width: 30%;
|
|
@@ -11,13 +11,13 @@
|
|
|
11
11
|
position: relative;
|
|
12
12
|
width: 20px;
|
|
13
13
|
height: 20px;
|
|
14
|
-
background-image: url('
|
|
14
|
+
background-image: url('https://s3.amazonaws.com/static.synapse.org/images/synapse-logo.svg');
|
|
15
15
|
animation: spinner 1s linear infinite;
|
|
16
16
|
background-size: 20px 20px;
|
|
17
17
|
background-repeat: no-repeat;
|
|
18
18
|
|
|
19
19
|
&.white {
|
|
20
|
-
background-image: url('
|
|
20
|
+
background-image: url('https://s3.amazonaws.com/static.synapse.org/images/synapse-logo-white.svg');
|
|
21
21
|
}
|
|
22
22
|
+ .spinner__text {
|
|
23
23
|
margin-left: 5px;
|
|
@@ -5,17 +5,13 @@
|
|
|
5
5
|
|
|
6
6
|
.TreeView.BrowseTree {
|
|
7
7
|
.Node.BrowseNode {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
font-size: 15px;
|
|
13
|
-
}
|
|
8
|
+
grid-template-columns: [toggle] 20px [name] auto;
|
|
9
|
+
padding: 0px 10px;
|
|
10
|
+
.ExpandButton {
|
|
11
|
+
font-size: 18px;
|
|
14
12
|
}
|
|
15
13
|
}
|
|
16
|
-
.Node[aria-disabled='false'][aria-selected='false']
|
|
17
|
-
> .NodeContent
|
|
18
|
-
> .EntityName {
|
|
14
|
+
.Node[aria-disabled='false'][aria-selected='false'] > .EntityName {
|
|
19
15
|
@include SrcMixins.normalLink();
|
|
20
16
|
font-weight: normal;
|
|
21
17
|
|
|
@@ -26,7 +22,6 @@
|
|
|
26
22
|
}
|
|
27
23
|
|
|
28
24
|
.Node.BrowseNode[aria-disabled='false'][aria-selected='true']
|
|
29
|
-
> .NodeContent
|
|
30
25
|
> .EntityName
|
|
31
26
|
> span {
|
|
32
27
|
font-weight: bold;
|
|
@@ -13,37 +13,31 @@
|
|
|
13
13
|
.Tree {
|
|
14
14
|
.Node.SelectNode {
|
|
15
15
|
border-top: 1px solid white;
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
}
|
|
16
|
+
grid-template-columns: [toggle] 15px [icon] 27px [name] auto [badge] auto;
|
|
17
|
+
padding: 16px 20px;
|
|
18
|
+
.ExpandButton {
|
|
19
|
+
font-size: large;
|
|
20
|
+
color: unset;
|
|
21
|
+
}
|
|
23
22
|
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
}
|
|
23
|
+
.EntityIcon {
|
|
24
|
+
text-align: center;
|
|
25
|
+
grid-column: icon / span 1;
|
|
26
|
+
margin-bottom: 3px;
|
|
29
27
|
}
|
|
30
28
|
}
|
|
31
29
|
.Node.SelectNode[aria-selected='true'] {
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
color: rgb(255, 255, 255);
|
|
37
|
-
}
|
|
30
|
+
background: $-selected-background-color;
|
|
31
|
+
color: $-selected-color;
|
|
32
|
+
> .ExpandButton {
|
|
33
|
+
color: rgb(255, 255, 255);
|
|
38
34
|
}
|
|
39
|
-
|
|
35
|
+
&:hover {
|
|
40
36
|
@include -hover($-selected-hover-background-color);
|
|
41
37
|
}
|
|
42
38
|
}
|
|
43
39
|
}
|
|
44
|
-
.Node[aria-disabled='false'] {
|
|
45
|
-
|
|
46
|
-
@include -hover();
|
|
47
|
-
}
|
|
40
|
+
.Node[aria-disabled='false']:hover {
|
|
41
|
+
@include -hover();
|
|
48
42
|
}
|
|
49
43
|
}
|
|
@@ -21,28 +21,25 @@
|
|
|
21
21
|
// Other classes may override for specific components
|
|
22
22
|
// See _tree-node-*.scss files
|
|
23
23
|
.Node {
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
.EntityName {
|
|
38
|
-
white-space: nowrap;
|
|
39
|
-
overflow: hidden;
|
|
40
|
-
text-overflow: ellipsis;
|
|
41
|
-
}
|
|
24
|
+
transition: background-color 200ms ease-in;
|
|
25
|
+
width: 100%;
|
|
26
|
+
align-items: center;
|
|
27
|
+
display: inline-grid;
|
|
28
|
+
align-items: center;
|
|
29
|
+
// grid-template-columns are defined in `tree-node-browse` and `tree-node-select` files
|
|
30
|
+
.ExpandButton {
|
|
31
|
+
grid-column: toggle / span 1;
|
|
32
|
+
text-align: center;
|
|
33
|
+
color: SRC.$primary-action-color-active;
|
|
34
|
+
cursor: pointer;
|
|
42
35
|
}
|
|
43
36
|
|
|
44
|
-
.
|
|
45
|
-
|
|
37
|
+
.EntityName {
|
|
38
|
+
grid-column: name / span 1;
|
|
39
|
+
white-space: nowrap;
|
|
40
|
+
overflow-y: visible;
|
|
41
|
+
overflow-x: clip;
|
|
42
|
+
text-overflow: ellipsis;
|
|
46
43
|
}
|
|
47
44
|
}
|
|
48
45
|
|
package/dist/style/main.css
CHANGED
|
@@ -19078,6 +19078,17 @@ button:hover .SRC-column-light-theme .SRC-light-column {
|
|
|
19078
19078
|
padding-top: 10px;
|
|
19079
19079
|
}
|
|
19080
19080
|
|
|
19081
|
+
.page-progress button,
|
|
19082
|
+
.page-progress button:active,
|
|
19083
|
+
.page-progress button:focus,
|
|
19084
|
+
.page-progress button:active:focus, .terms-conditions .view-terms a,
|
|
19085
|
+
.terms-conditions .view-terms a:active:focus {
|
|
19086
|
+
border: 0;
|
|
19087
|
+
outline: none;
|
|
19088
|
+
box-shadow: none;
|
|
19089
|
+
border-radius: 2px;
|
|
19090
|
+
}
|
|
19091
|
+
|
|
19081
19092
|
.bar-loader {
|
|
19082
19093
|
display: flex;
|
|
19083
19094
|
justify-content: center;
|
|
@@ -19086,10 +19097,16 @@ button:hover .SRC-column-light-theme .SRC-light-column {
|
|
|
19086
19097
|
width: 100%;
|
|
19087
19098
|
}
|
|
19088
19099
|
.bar-loader .bar-background-color {
|
|
19089
|
-
background-color:
|
|
19100
|
+
background-color: #dfe2e6;
|
|
19090
19101
|
}
|
|
19091
19102
|
.bar-loader .bar-color {
|
|
19092
|
-
background-color: #
|
|
19103
|
+
background-color: #f3da9c;
|
|
19104
|
+
}
|
|
19105
|
+
.bar-loader .MuiLinearProgress-determinate {
|
|
19106
|
+
margin-bottom: 20px;
|
|
19107
|
+
border-radius: 6px;
|
|
19108
|
+
height: 10px;
|
|
19109
|
+
width: 180px;
|
|
19093
19110
|
}
|
|
19094
19111
|
.bar-loader > div {
|
|
19095
19112
|
width: 30%;
|
|
@@ -21015,26 +21032,26 @@ button:hover .SRC-column-light-theme .SRC-light-column {
|
|
|
21015
21032
|
height: 455px;
|
|
21016
21033
|
overflow: auto;
|
|
21017
21034
|
}
|
|
21018
|
-
.TreeView .Tree .Node
|
|
21035
|
+
.TreeView .Tree .Node {
|
|
21019
21036
|
transition: background-color 200ms ease-in;
|
|
21020
21037
|
width: 100%;
|
|
21021
21038
|
align-items: center;
|
|
21022
21039
|
display: inline-grid;
|
|
21040
|
+
align-items: center;
|
|
21023
21041
|
}
|
|
21024
|
-
.TreeView .Tree .Node .
|
|
21042
|
+
.TreeView .Tree .Node .ExpandButton {
|
|
21025
21043
|
grid-column: toggle/span 1;
|
|
21026
21044
|
text-align: center;
|
|
21027
21045
|
color: #0888d8;
|
|
21028
21046
|
cursor: pointer;
|
|
21029
21047
|
}
|
|
21030
|
-
.TreeView .Tree .Node .
|
|
21048
|
+
.TreeView .Tree .Node .EntityName {
|
|
21049
|
+
grid-column: name/span 1;
|
|
21031
21050
|
white-space: nowrap;
|
|
21032
|
-
overflow:
|
|
21051
|
+
overflow-y: visible;
|
|
21052
|
+
overflow-x: clip;
|
|
21033
21053
|
text-overflow: ellipsis;
|
|
21034
21054
|
}
|
|
21035
|
-
.TreeView .Tree .Node .NodeChildren[aria-hidden=true] {
|
|
21036
|
-
display: none;
|
|
21037
|
-
}
|
|
21038
21055
|
.TreeView .Tree .Node[aria-disabled=true] {
|
|
21039
21056
|
opacity: 0.5;
|
|
21040
21057
|
}
|
|
@@ -21190,40 +21207,40 @@ button:hover .SRC-column-light-theme .SRC-light-column {
|
|
|
21190
21207
|
background-color: transparent;
|
|
21191
21208
|
}
|
|
21192
21209
|
|
|
21193
|
-
.TreeView.BrowseTree .Node.BrowseNode
|
|
21210
|
+
.TreeView.BrowseTree .Node.BrowseNode {
|
|
21194
21211
|
grid-template-columns: [toggle] 20px [name] auto;
|
|
21195
|
-
padding:
|
|
21212
|
+
padding: 0px 10px;
|
|
21196
21213
|
}
|
|
21197
|
-
.TreeView.BrowseTree .Node.BrowseNode .
|
|
21198
|
-
font-size:
|
|
21214
|
+
.TreeView.BrowseTree .Node.BrowseNode .ExpandButton {
|
|
21215
|
+
font-size: 18px;
|
|
21199
21216
|
}
|
|
21200
|
-
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .
|
|
21217
|
+
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .EntityName {
|
|
21201
21218
|
color: #407ba0;
|
|
21202
21219
|
text-decoration: none;
|
|
21203
21220
|
font-weight: 700;
|
|
21204
21221
|
letter-spacing: 0.5px;
|
|
21205
21222
|
font-weight: normal;
|
|
21206
21223
|
}
|
|
21207
|
-
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .
|
|
21224
|
+
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .EntityName:hover {
|
|
21208
21225
|
text-decoration: underline;
|
|
21209
21226
|
text-underline-offset: 4px;
|
|
21210
21227
|
text-decoration-thickness: 2px;
|
|
21211
21228
|
text-decoration-color: #2a678d;
|
|
21212
21229
|
}
|
|
21213
|
-
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .
|
|
21230
|
+
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .EntityName.disabled {
|
|
21214
21231
|
color: #aeb5bc;
|
|
21215
21232
|
}
|
|
21216
|
-
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .
|
|
21233
|
+
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .EntityName.disabled:hover {
|
|
21217
21234
|
text-decoration: underline;
|
|
21218
21235
|
text-underline-offset: 4px;
|
|
21219
21236
|
text-decoration-thickness: 1px;
|
|
21220
21237
|
text-decoration-color: #d6d6d6;
|
|
21221
21238
|
cursor: default;
|
|
21222
21239
|
}
|
|
21223
|
-
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .
|
|
21240
|
+
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .EntityName:hover {
|
|
21224
21241
|
text-underline-offset: 2px;
|
|
21225
21242
|
}
|
|
21226
|
-
.TreeView.BrowseTree .Node.BrowseNode[aria-disabled=false][aria-selected=true] > .
|
|
21243
|
+
.TreeView.BrowseTree .Node.BrowseNode[aria-disabled=false][aria-selected=true] > .EntityName > span {
|
|
21227
21244
|
font-weight: bold;
|
|
21228
21245
|
}
|
|
21229
21246
|
|
|
@@ -21355,31 +21372,29 @@ button:hover .SRC-column-light-theme .SRC-light-column {
|
|
|
21355
21372
|
}
|
|
21356
21373
|
.TreeView.SelectTree .Tree .Node.SelectNode {
|
|
21357
21374
|
border-top: 1px solid white;
|
|
21358
|
-
}
|
|
21359
|
-
.TreeView.SelectTree .Tree .Node.SelectNode .NodeContent {
|
|
21360
21375
|
grid-template-columns: [toggle] 15px [icon] 27px [name] auto [badge] auto;
|
|
21361
21376
|
padding: 16px 20px;
|
|
21362
21377
|
}
|
|
21363
|
-
.TreeView.SelectTree .Tree .Node.SelectNode .
|
|
21378
|
+
.TreeView.SelectTree .Tree .Node.SelectNode .ExpandButton {
|
|
21364
21379
|
font-size: large;
|
|
21365
21380
|
color: unset;
|
|
21366
21381
|
}
|
|
21367
|
-
.TreeView.SelectTree .Tree .Node.SelectNode .
|
|
21382
|
+
.TreeView.SelectTree .Tree .Node.SelectNode .EntityIcon {
|
|
21368
21383
|
text-align: center;
|
|
21369
21384
|
grid-column: icon/span 1;
|
|
21370
21385
|
margin-bottom: 3px;
|
|
21371
21386
|
}
|
|
21372
|
-
.TreeView.SelectTree .Tree .Node.SelectNode[aria-selected=true]
|
|
21387
|
+
.TreeView.SelectTree .Tree .Node.SelectNode[aria-selected=true] {
|
|
21373
21388
|
background: #0888d8;
|
|
21374
21389
|
color: white;
|
|
21375
21390
|
}
|
|
21376
|
-
.TreeView.SelectTree .Tree .Node.SelectNode[aria-selected=true] > .
|
|
21391
|
+
.TreeView.SelectTree .Tree .Node.SelectNode[aria-selected=true] > .ExpandButton {
|
|
21377
21392
|
color: white;
|
|
21378
21393
|
}
|
|
21379
|
-
.TreeView.SelectTree .Tree .Node.SelectNode[aria-selected=true]
|
|
21394
|
+
.TreeView.SelectTree .Tree .Node.SelectNode[aria-selected=true]:hover {
|
|
21380
21395
|
background-color: #0778bf;
|
|
21381
21396
|
}
|
|
21382
|
-
.TreeView.SelectTree .Node[aria-disabled=false]
|
|
21397
|
+
.TreeView.SelectTree .Node[aria-disabled=false]:hover {
|
|
21383
21398
|
background-color: rgba(8, 136, 216, 0.2);
|
|
21384
21399
|
}
|
|
21385
21400
|
|
|
@@ -19135,6 +19135,17 @@ button:hover .SRC-column-light-theme .SRC-light-column {
|
|
|
19135
19135
|
padding: 15px;
|
|
19136
19136
|
padding-top: 10px;
|
|
19137
19137
|
}
|
|
19138
|
+
.page-progress button,
|
|
19139
|
+
.page-progress button:active,
|
|
19140
|
+
.page-progress button:focus,
|
|
19141
|
+
.page-progress button:active:focus,
|
|
19142
|
+
.terms-conditions .view-terms a,
|
|
19143
|
+
.terms-conditions .view-terms a:active:focus {
|
|
19144
|
+
border: 0;
|
|
19145
|
+
outline: none;
|
|
19146
|
+
box-shadow: none;
|
|
19147
|
+
border-radius: 2px;
|
|
19148
|
+
}
|
|
19138
19149
|
.bar-loader {
|
|
19139
19150
|
display: flex;
|
|
19140
19151
|
justify-content: center;
|
|
@@ -19143,10 +19154,16 @@ button:hover .SRC-column-light-theme .SRC-light-column {
|
|
|
19143
19154
|
width: 100%;
|
|
19144
19155
|
}
|
|
19145
19156
|
.bar-loader .bar-background-color {
|
|
19146
|
-
background-color:
|
|
19157
|
+
background-color: #dfe2e6;
|
|
19147
19158
|
}
|
|
19148
19159
|
.bar-loader .bar-color {
|
|
19149
|
-
background-color: #
|
|
19160
|
+
background-color: #f3da9c;
|
|
19161
|
+
}
|
|
19162
|
+
.bar-loader .MuiLinearProgress-determinate {
|
|
19163
|
+
margin-bottom: 20px;
|
|
19164
|
+
border-radius: 6px;
|
|
19165
|
+
height: 10px;
|
|
19166
|
+
width: 180px;
|
|
19150
19167
|
}
|
|
19151
19168
|
.bar-loader > div {
|
|
19152
19169
|
width: 30%;
|
|
@@ -21018,26 +21035,26 @@ button:hover .SRC-column-light-theme .SRC-light-column {
|
|
|
21018
21035
|
height: 455px;
|
|
21019
21036
|
overflow: auto;
|
|
21020
21037
|
}
|
|
21021
|
-
.TreeView .Tree .Node
|
|
21038
|
+
.TreeView .Tree .Node {
|
|
21022
21039
|
transition: background-color 200ms ease-in;
|
|
21023
21040
|
width: 100%;
|
|
21024
21041
|
align-items: center;
|
|
21025
21042
|
display: inline-grid;
|
|
21043
|
+
align-items: center;
|
|
21026
21044
|
}
|
|
21027
|
-
.TreeView .Tree .Node .
|
|
21045
|
+
.TreeView .Tree .Node .ExpandButton {
|
|
21028
21046
|
grid-column: toggle/span 1;
|
|
21029
21047
|
text-align: center;
|
|
21030
21048
|
color: #0888d8;
|
|
21031
21049
|
cursor: pointer;
|
|
21032
21050
|
}
|
|
21033
|
-
.TreeView .Tree .Node .
|
|
21051
|
+
.TreeView .Tree .Node .EntityName {
|
|
21052
|
+
grid-column: name/span 1;
|
|
21034
21053
|
white-space: nowrap;
|
|
21035
|
-
overflow:
|
|
21054
|
+
overflow-y: visible;
|
|
21055
|
+
overflow-x: clip;
|
|
21036
21056
|
text-overflow: ellipsis;
|
|
21037
21057
|
}
|
|
21038
|
-
.TreeView .Tree .Node .NodeChildren[aria-hidden=true] {
|
|
21039
|
-
display: none;
|
|
21040
|
-
}
|
|
21041
21058
|
.TreeView .Tree .Node[aria-disabled=true] {
|
|
21042
21059
|
opacity: 0.5;
|
|
21043
21060
|
}
|
|
@@ -21170,40 +21187,40 @@ button:hover .SRC-column-light-theme .SRC-light-column {
|
|
|
21170
21187
|
border-right: none;
|
|
21171
21188
|
background-color: transparent;
|
|
21172
21189
|
}
|
|
21173
|
-
.TreeView.BrowseTree .Node.BrowseNode
|
|
21190
|
+
.TreeView.BrowseTree .Node.BrowseNode {
|
|
21174
21191
|
grid-template-columns: [toggle] 20px [name] auto;
|
|
21175
|
-
padding:
|
|
21192
|
+
padding: 0px 10px;
|
|
21176
21193
|
}
|
|
21177
|
-
.TreeView.BrowseTree .Node.BrowseNode .
|
|
21178
|
-
font-size:
|
|
21194
|
+
.TreeView.BrowseTree .Node.BrowseNode .ExpandButton {
|
|
21195
|
+
font-size: 18px;
|
|
21179
21196
|
}
|
|
21180
|
-
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .
|
|
21197
|
+
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .EntityName {
|
|
21181
21198
|
color: #407ba0;
|
|
21182
21199
|
text-decoration: none;
|
|
21183
21200
|
font-weight: 700;
|
|
21184
21201
|
letter-spacing: 0.5px;
|
|
21185
21202
|
font-weight: normal;
|
|
21186
21203
|
}
|
|
21187
|
-
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .
|
|
21204
|
+
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .EntityName:hover {
|
|
21188
21205
|
text-decoration: underline;
|
|
21189
21206
|
text-underline-offset: 4px;
|
|
21190
21207
|
text-decoration-thickness: 2px;
|
|
21191
21208
|
text-decoration-color: #2a678d;
|
|
21192
21209
|
}
|
|
21193
|
-
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .
|
|
21210
|
+
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .EntityName.disabled {
|
|
21194
21211
|
color: #aeb5bc;
|
|
21195
21212
|
}
|
|
21196
|
-
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .
|
|
21213
|
+
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .EntityName.disabled:hover {
|
|
21197
21214
|
text-decoration: underline;
|
|
21198
21215
|
text-underline-offset: 4px;
|
|
21199
21216
|
text-decoration-thickness: 1px;
|
|
21200
21217
|
text-decoration-color: #d6d6d6;
|
|
21201
21218
|
cursor: default;
|
|
21202
21219
|
}
|
|
21203
|
-
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .
|
|
21220
|
+
.TreeView.BrowseTree .Node[aria-disabled=false][aria-selected=false] > .EntityName:hover {
|
|
21204
21221
|
text-underline-offset: 2px;
|
|
21205
21222
|
}
|
|
21206
|
-
.TreeView.BrowseTree .Node.BrowseNode[aria-disabled=false][aria-selected=true] > .
|
|
21223
|
+
.TreeView.BrowseTree .Node.BrowseNode[aria-disabled=false][aria-selected=true] > .EntityName > span {
|
|
21207
21224
|
font-weight: bold;
|
|
21208
21225
|
}
|
|
21209
21226
|
.terms-conditions .view-terms a,
|
|
@@ -21316,31 +21333,29 @@ button:hover .SRC-column-light-theme .SRC-light-column {
|
|
|
21316
21333
|
}
|
|
21317
21334
|
.TreeView.SelectTree .Tree .Node.SelectNode {
|
|
21318
21335
|
border-top: 1px solid white;
|
|
21319
|
-
}
|
|
21320
|
-
.TreeView.SelectTree .Tree .Node.SelectNode .NodeContent {
|
|
21321
21336
|
grid-template-columns: [toggle] 15px [icon] 27px [name] auto [badge] auto;
|
|
21322
21337
|
padding: 16px 20px;
|
|
21323
21338
|
}
|
|
21324
|
-
.TreeView.SelectTree .Tree .Node.SelectNode .
|
|
21339
|
+
.TreeView.SelectTree .Tree .Node.SelectNode .ExpandButton {
|
|
21325
21340
|
font-size: large;
|
|
21326
21341
|
color: unset;
|
|
21327
21342
|
}
|
|
21328
|
-
.TreeView.SelectTree .Tree .Node.SelectNode .
|
|
21343
|
+
.TreeView.SelectTree .Tree .Node.SelectNode .EntityIcon {
|
|
21329
21344
|
text-align: center;
|
|
21330
21345
|
grid-column: icon/span 1;
|
|
21331
21346
|
margin-bottom: 3px;
|
|
21332
21347
|
}
|
|
21333
|
-
.TreeView.SelectTree .Tree .Node.SelectNode[aria-selected=true]
|
|
21348
|
+
.TreeView.SelectTree .Tree .Node.SelectNode[aria-selected=true] {
|
|
21334
21349
|
background: #0888d8;
|
|
21335
21350
|
color: white;
|
|
21336
21351
|
}
|
|
21337
|
-
.TreeView.SelectTree .Tree .Node.SelectNode[aria-selected=true] > .
|
|
21352
|
+
.TreeView.SelectTree .Tree .Node.SelectNode[aria-selected=true] > .ExpandButton {
|
|
21338
21353
|
color: white;
|
|
21339
21354
|
}
|
|
21340
|
-
.TreeView.SelectTree .Tree .Node.SelectNode[aria-selected=true]
|
|
21355
|
+
.TreeView.SelectTree .Tree .Node.SelectNode[aria-selected=true]:hover {
|
|
21341
21356
|
background-color: #0778bf;
|
|
21342
21357
|
}
|
|
21343
|
-
.TreeView.SelectTree .Node[aria-disabled=false]
|
|
21358
|
+
.TreeView.SelectTree .Node[aria-disabled=false]:hover {
|
|
21344
21359
|
background-color: rgba(8, 136, 216, 0.2);
|
|
21345
21360
|
}
|
|
21346
21361
|
.terms-conditions .view-terms a,
|
|
@@ -22974,6 +22989,31 @@ table.DownloadListTableV2 td {
|
|
|
22974
22989
|
margin-bottom: 0;
|
|
22975
22990
|
}
|
|
22976
22991
|
|
|
22992
|
+
/* sass-plugin-0:/home/runner/work/Synapse-React-Client/Synapse-React-Client/src/lib/style/components/_spinner.scss */
|
|
22993
|
+
@keyframes spinner {
|
|
22994
|
+
to {
|
|
22995
|
+
transform: rotate(360deg);
|
|
22996
|
+
}
|
|
22997
|
+
}
|
|
22998
|
+
.spinner {
|
|
22999
|
+
box-sizing: border-box;
|
|
23000
|
+
display: inline-block;
|
|
23001
|
+
margin: auto;
|
|
23002
|
+
position: relative;
|
|
23003
|
+
width: 20px;
|
|
23004
|
+
height: 20px;
|
|
23005
|
+
background-image: url(https://s3.amazonaws.com/static.synapse.org/images/synapse-logo.svg);
|
|
23006
|
+
animation: spinner 1s linear infinite;
|
|
23007
|
+
background-size: 20px 20px;
|
|
23008
|
+
background-repeat: no-repeat;
|
|
23009
|
+
}
|
|
23010
|
+
.spinner.white {
|
|
23011
|
+
background-image: url(https://s3.amazonaws.com/static.synapse.org/images/synapse-logo-white.svg);
|
|
23012
|
+
}
|
|
23013
|
+
.spinner + .spinner__text {
|
|
23014
|
+
margin-left: 5px;
|
|
23015
|
+
}
|
|
23016
|
+
|
|
22977
23017
|
/* sass-plugin-0:/home/runner/work/Synapse-React-Client/Synapse-React-Client/node_modules/@brainhubeu/react-carousel/lib/style.css */
|
|
22978
23018
|
.BrainhubCarouselItem {
|
|
22979
23019
|
display: flex;
|