synapse-react-client 2.1.16 → 2.1.17
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/themed_icons/SqlEditorIcon.d.ts +2 -0
- package/dist/assets/themed_icons/SqlEditorIcon.js +9 -0
- package/dist/assets/themed_icons/SqlEditorIcon.js.map +1 -0
- package/dist/assets/themed_icons/index.d.ts +2 -1
- package/dist/assets/themed_icons/index.js +3 -1
- package/dist/assets/themed_icons/index.js.map +1 -1
- package/dist/containers/FullTextSearch.js +4 -4
- package/dist/containers/FullTextSearch.js.map +1 -1
- package/dist/containers/Login.js +4 -4
- package/dist/containers/Login.js.map +1 -1
- package/dist/containers/QueryWrapper.d.ts +5 -0
- package/dist/containers/QueryWrapper.js +31 -7
- package/dist/containers/QueryWrapper.js.map +1 -1
- package/dist/containers/SearchV2.js +7 -7
- package/dist/containers/SearchV2.js.map +1 -1
- package/dist/containers/SqlEditor.d.ts +7 -0
- package/dist/containers/SqlEditor.js +50 -0
- package/dist/containers/SqlEditor.js.map +1 -0
- package/dist/containers/TotalQueryResults.js +14 -11
- package/dist/containers/TotalQueryResults.js.map +1 -1
- package/dist/containers/entity_finder/EntityFinder.js +1 -1
- package/dist/containers/query_wrapper_plot_nav/QueryWrapperPlotNav.d.ts +7 -0
- package/dist/containers/query_wrapper_plot_nav/QueryWrapperPlotNav.js +23 -12
- package/dist/containers/query_wrapper_plot_nav/QueryWrapperPlotNav.js.map +1 -1
- package/dist/containers/row_renderers/utils/Icon.js +1 -0
- package/dist/containers/row_renderers/utils/Icon.js.map +1 -1
- package/dist/containers/table/SearchResultsNotFound.js +2 -2
- package/dist/containers/table/SearchResultsNotFound.js.map +1 -1
- package/dist/containers/table/StandaloneQueryWrapper.js +2 -0
- package/dist/containers/table/StandaloneQueryWrapper.js.map +1 -1
- package/dist/containers/table/SynapseTable.js +11 -5
- package/dist/containers/table/SynapseTable.js.map +1 -1
- package/dist/containers/table/TopLevelControls.d.ts +1 -0
- package/dist/containers/table/TopLevelControls.js +10 -3
- package/dist/containers/table/TopLevelControls.js.map +1 -1
- package/dist/containers/widgets/facet-nav/FacetNavPanel.js +3 -2
- package/dist/containers/widgets/facet-nav/FacetNavPanel.js.map +1 -1
- package/dist/style/components/_all.scss +1 -1
- package/dist/style/components/_query-wrapper-plot-nav.scss +24 -12
- package/dist/style/components/{_searchv2.scss → _query-wrapper-text-input.scss} +2 -2
- package/dist/style/main.css +35 -24
- package/dist/umd/synapse-react-client.development.css +64 -25
- package/dist/umd/synapse-react-client.development.css.map +3 -3
- package/dist/umd/synapse-react-client.development.js +9588 -2498
- 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 +86 -85
- package/dist/umd.index.d.ts +1 -0
- package/dist/umd.index.js +2 -0
- package/dist/umd.index.js.map +1 -1
- package/dist/utils/SynapseConstants.d.ts +1 -0
- package/dist/utils/SynapseConstants.js +2 -1
- package/dist/utils/SynapseConstants.js.map +1 -1
- package/dist/utils/functions/queryUtils.d.ts +3 -1
- package/dist/utils/functions/queryUtils.js +9 -1
- package/dist/utils/functions/queryUtils.js.map +1 -1
- package/dist/utils/functions/unCamelCase.js +4 -1
- package/dist/utils/functions/unCamelCase.js.map +1 -1
- package/package.json +1 -1
|
@@ -4,14 +4,22 @@
|
|
|
4
4
|
@media (min-width: map-get(SRC.$breakpoints, 'medium')) {
|
|
5
5
|
.SRC-wrapper {
|
|
6
6
|
display: grid;
|
|
7
|
-
grid-template-columns:
|
|
8
|
-
padding-right:
|
|
9
|
-
|
|
7
|
+
grid-template-columns: 25% 10px 75%;
|
|
8
|
+
padding-right: 15px;
|
|
9
|
+
|
|
10
10
|
// by default, children take up the full row
|
|
11
11
|
> * {
|
|
12
|
-
grid-column:
|
|
12
|
+
grid-column: 1 / span 3;
|
|
13
13
|
}
|
|
14
|
-
|
|
14
|
+
&.has-facets{
|
|
15
|
+
padding-right: 120px;
|
|
16
|
+
grid-template-columns: 60px 10px 25% 10px 75%;
|
|
17
|
+
> * {
|
|
18
|
+
grid-column: 3 / span 3;
|
|
19
|
+
}
|
|
20
|
+
}
|
|
21
|
+
}
|
|
22
|
+
.SRC-wrapper {
|
|
15
23
|
.QueryFilterToggleButton {
|
|
16
24
|
position: relative;
|
|
17
25
|
left: -23px;
|
|
@@ -44,20 +52,22 @@
|
|
|
44
52
|
.download-confirmation {
|
|
45
53
|
grid-row: 2 / span 1;
|
|
46
54
|
}
|
|
47
|
-
.
|
|
55
|
+
.QueryWrapperTextInput {
|
|
48
56
|
grid-row: 3 / span 1;
|
|
49
57
|
margin-bottom: 10px;
|
|
50
58
|
}
|
|
51
59
|
.TotalQueryResults {
|
|
52
60
|
grid-row: 4 / span 1;
|
|
53
61
|
}
|
|
54
|
-
|
|
55
|
-
.FacetNav {
|
|
62
|
+
.ErrorBannerWrapper {
|
|
56
63
|
grid-row: 5 / span 1;
|
|
57
64
|
}
|
|
58
|
-
.
|
|
65
|
+
.FacetNav {
|
|
59
66
|
grid-row: 6 / span 1;
|
|
60
67
|
}
|
|
68
|
+
.FilterAndView {
|
|
69
|
+
grid-row: 7 / span 1;
|
|
70
|
+
}
|
|
61
71
|
|
|
62
72
|
// column (depends on if we are showing facet filters)
|
|
63
73
|
.isShowingFacetFilters {
|
|
@@ -75,7 +85,8 @@
|
|
|
75
85
|
&.TotalQueryResults,
|
|
76
86
|
&.FilterAndView,
|
|
77
87
|
&.TopLevelControls,
|
|
78
|
-
&.
|
|
88
|
+
&.QueryWrapperTextInput,
|
|
89
|
+
&.ErrorBannerWrapper {
|
|
79
90
|
grid-column: 5 / span 1;
|
|
80
91
|
}
|
|
81
92
|
}
|
|
@@ -96,7 +107,8 @@
|
|
|
96
107
|
.FacetNav,
|
|
97
108
|
.FilterAndView,
|
|
98
109
|
.TopLevelControls,
|
|
99
|
-
.
|
|
110
|
+
.QueryWrapperTextInput,
|
|
111
|
+
.ErrorBannerWrapper {
|
|
100
112
|
margin-left: 30px;
|
|
101
113
|
}
|
|
102
114
|
}
|
|
@@ -109,7 +121,7 @@
|
|
|
109
121
|
}
|
|
110
122
|
}
|
|
111
123
|
|
|
112
|
-
.
|
|
124
|
+
.QueryWrapperTextInput {
|
|
113
125
|
// PORTALS-1856: z-index greater than the Show All Graphs button (500)
|
|
114
126
|
z-index: 600;
|
|
115
127
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@use '../abstracts/variables' as SRC;
|
|
2
2
|
|
|
3
|
-
.
|
|
3
|
+
.QueryWrapperTextInput {
|
|
4
4
|
&__searchbar {
|
|
5
5
|
height: 50px;
|
|
6
6
|
background: #f9f9f9;
|
|
@@ -78,7 +78,7 @@
|
|
|
78
78
|
width: 100%;
|
|
79
79
|
}
|
|
80
80
|
|
|
81
|
-
&__column-select.
|
|
81
|
+
&__column-select.QueryWrapperTextInput__animate_height {
|
|
82
82
|
overflow: scroll;
|
|
83
83
|
}
|
|
84
84
|
|
package/dist/style/main.css
CHANGED
|
@@ -17863,10 +17863,17 @@ img.iconImg.SRC-datasetIcon {
|
|
|
17863
17863
|
@media (min-width: 768px) {
|
|
17864
17864
|
.QueryWrapperPlotNav .SRC-wrapper {
|
|
17865
17865
|
display: grid;
|
|
17866
|
-
grid-template-columns:
|
|
17867
|
-
padding-right:
|
|
17866
|
+
grid-template-columns: 25% 10px 75%;
|
|
17867
|
+
padding-right: 15px;
|
|
17868
17868
|
}
|
|
17869
17869
|
.QueryWrapperPlotNav .SRC-wrapper > * {
|
|
17870
|
+
grid-column: 1/span 3;
|
|
17871
|
+
}
|
|
17872
|
+
.QueryWrapperPlotNav .SRC-wrapper.has-facets {
|
|
17873
|
+
padding-right: 120px;
|
|
17874
|
+
grid-template-columns: 60px 10px 25% 10px 75%;
|
|
17875
|
+
}
|
|
17876
|
+
.QueryWrapperPlotNav .SRC-wrapper.has-facets > * {
|
|
17870
17877
|
grid-column: 3/span 3;
|
|
17871
17878
|
}
|
|
17872
17879
|
.QueryWrapperPlotNav .SRC-wrapper .QueryFilterToggleButton {
|
|
@@ -17900,19 +17907,22 @@ img.iconImg.SRC-datasetIcon {
|
|
|
17900
17907
|
.QueryWrapperPlotNav .SRC-wrapper .download-confirmation {
|
|
17901
17908
|
grid-row: 2/span 1;
|
|
17902
17909
|
}
|
|
17903
|
-
.QueryWrapperPlotNav .SRC-wrapper .
|
|
17910
|
+
.QueryWrapperPlotNav .SRC-wrapper .QueryWrapperTextInput {
|
|
17904
17911
|
grid-row: 3/span 1;
|
|
17905
17912
|
margin-bottom: 10px;
|
|
17906
17913
|
}
|
|
17907
17914
|
.QueryWrapperPlotNav .SRC-wrapper .TotalQueryResults {
|
|
17908
17915
|
grid-row: 4/span 1;
|
|
17909
17916
|
}
|
|
17910
|
-
.QueryWrapperPlotNav .SRC-wrapper .
|
|
17917
|
+
.QueryWrapperPlotNav .SRC-wrapper .ErrorBannerWrapper {
|
|
17911
17918
|
grid-row: 5/span 1;
|
|
17912
17919
|
}
|
|
17913
|
-
.QueryWrapperPlotNav .SRC-wrapper .
|
|
17920
|
+
.QueryWrapperPlotNav .SRC-wrapper .FacetNav {
|
|
17914
17921
|
grid-row: 6/span 1;
|
|
17915
17922
|
}
|
|
17923
|
+
.QueryWrapperPlotNav .SRC-wrapper .FilterAndView {
|
|
17924
|
+
grid-row: 7/span 1;
|
|
17925
|
+
}
|
|
17916
17926
|
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.QueryFilter {
|
|
17917
17927
|
grid-column: 1/span 3;
|
|
17918
17928
|
}
|
|
@@ -17922,7 +17932,7 @@ img.iconImg.SRC-datasetIcon {
|
|
|
17922
17932
|
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.QueryFilterToggleButton svg {
|
|
17923
17933
|
margin-left: 2px;
|
|
17924
17934
|
}
|
|
17925
|
-
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.download-confirmation, .QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.FacetNav, .QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.TotalQueryResults, .QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.FilterAndView, .QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.TopLevelControls, .QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.
|
|
17935
|
+
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.download-confirmation, .QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.FacetNav, .QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.TotalQueryResults, .QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.FilterAndView, .QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.TopLevelControls, .QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.QueryWrapperTextInput, .QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.ErrorBannerWrapper {
|
|
17926
17936
|
grid-column: 5/span 1;
|
|
17927
17937
|
}
|
|
17928
17938
|
.QueryWrapperPlotNav .SRC-wrapper .isHidingFacetFilters.QueryFilter {
|
|
@@ -17939,7 +17949,8 @@ img.iconImg.SRC-datasetIcon {
|
|
|
17939
17949
|
.QueryWrapperPlotNav .FacetNav,
|
|
17940
17950
|
.QueryWrapperPlotNav .FilterAndView,
|
|
17941
17951
|
.QueryWrapperPlotNav .TopLevelControls,
|
|
17942
|
-
.QueryWrapperPlotNav .
|
|
17952
|
+
.QueryWrapperPlotNav .QueryWrapperTextInput,
|
|
17953
|
+
.QueryWrapperPlotNav .ErrorBannerWrapper {
|
|
17943
17954
|
margin-left: 30px;
|
|
17944
17955
|
}
|
|
17945
17956
|
}
|
|
@@ -17948,7 +17959,7 @@ img.iconImg.SRC-datasetIcon {
|
|
|
17948
17959
|
display: none;
|
|
17949
17960
|
}
|
|
17950
17961
|
}
|
|
17951
|
-
.QueryWrapperPlotNav .
|
|
17962
|
+
.QueryWrapperPlotNav .QueryWrapperTextInput {
|
|
17952
17963
|
z-index: 600;
|
|
17953
17964
|
}
|
|
17954
17965
|
.QueryWrapperPlotNav .TotalQueryResults {
|
|
@@ -18017,19 +18028,19 @@ img.iconImg.SRC-datasetIcon {
|
|
|
18017
18028
|
border-radius: 2px;
|
|
18018
18029
|
}
|
|
18019
18030
|
|
|
18020
|
-
.
|
|
18031
|
+
.QueryWrapperTextInput__searchbar {
|
|
18021
18032
|
height: 50px;
|
|
18022
18033
|
background: #f9f9f9;
|
|
18023
18034
|
border: 1px solid #dddddf;
|
|
18024
18035
|
display: flex;
|
|
18025
18036
|
align-items: center;
|
|
18026
18037
|
}
|
|
18027
|
-
.
|
|
18038
|
+
.QueryWrapperTextInput__searchbar:focus-within {
|
|
18028
18039
|
outline-color: #407ba0;
|
|
18029
18040
|
outline-style: auto;
|
|
18030
18041
|
outline-width: 5px;
|
|
18031
18042
|
}
|
|
18032
|
-
.
|
|
18043
|
+
.QueryWrapperTextInput__searchbar__searchicon {
|
|
18033
18044
|
color: #dcdcdc;
|
|
18034
18045
|
margin-left: 10px;
|
|
18035
18046
|
font-size: 17px;
|
|
@@ -18037,7 +18048,7 @@ img.iconImg.SRC-datasetIcon {
|
|
|
18037
18048
|
flex-grow: 0;
|
|
18038
18049
|
flex-shrink: 0;
|
|
18039
18050
|
}
|
|
18040
|
-
.
|
|
18051
|
+
.QueryWrapperTextInput__searchbar input {
|
|
18041
18052
|
flex: 1;
|
|
18042
18053
|
margin-left: 10px;
|
|
18043
18054
|
width: fit-content;
|
|
@@ -18046,21 +18057,21 @@ img.iconImg.SRC-datasetIcon {
|
|
|
18046
18057
|
border: none;
|
|
18047
18058
|
background: #f9f9f9;
|
|
18048
18059
|
}
|
|
18049
|
-
.
|
|
18060
|
+
.QueryWrapperTextInput__searchbar input:focus {
|
|
18050
18061
|
outline-width: 0px;
|
|
18051
18062
|
outline: none;
|
|
18052
18063
|
}
|
|
18053
|
-
.
|
|
18064
|
+
.QueryWrapperTextInput__searchbar__clearbutton {
|
|
18054
18065
|
flex: 1;
|
|
18055
18066
|
flex-grow: 0;
|
|
18056
18067
|
flex-shrink: 0;
|
|
18057
18068
|
}
|
|
18058
|
-
.
|
|
18069
|
+
.QueryWrapperTextInput__form-container {
|
|
18059
18070
|
position: relative;
|
|
18060
18071
|
width: 100%;
|
|
18061
18072
|
margin-top: 5px;
|
|
18062
18073
|
}
|
|
18063
|
-
.
|
|
18074
|
+
.QueryWrapperTextInput__column-select {
|
|
18064
18075
|
background: #ffffff;
|
|
18065
18076
|
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
|
|
18066
18077
|
color: #515359;
|
|
@@ -18070,7 +18081,7 @@ img.iconImg.SRC-datasetIcon {
|
|
|
18070
18081
|
z-index: 5;
|
|
18071
18082
|
width: inherit;
|
|
18072
18083
|
}
|
|
18073
|
-
.
|
|
18084
|
+
.QueryWrapperTextInput__animate_height {
|
|
18074
18085
|
max-height: 0;
|
|
18075
18086
|
overflow-y: hidden;
|
|
18076
18087
|
-webkit-transition: max-height 0.3s ease-in-out;
|
|
@@ -18078,28 +18089,28 @@ img.iconImg.SRC-datasetIcon {
|
|
|
18078
18089
|
-o-transition: max-height 0.3s ease-in-out;
|
|
18079
18090
|
transition: max-height 0.3s ease-in-out;
|
|
18080
18091
|
}
|
|
18081
|
-
.
|
|
18092
|
+
.QueryWrapperTextInput__animate_dropdown-enter-done {
|
|
18082
18093
|
max-height: 300px;
|
|
18083
18094
|
}
|
|
18084
|
-
.
|
|
18095
|
+
.QueryWrapperTextInput__animate_dropdown-exit-done {
|
|
18085
18096
|
max-height: 0;
|
|
18086
18097
|
}
|
|
18087
|
-
.
|
|
18098
|
+
.QueryWrapperTextInput__dropdown_pos {
|
|
18088
18099
|
position: relative;
|
|
18089
18100
|
width: 100%;
|
|
18090
18101
|
}
|
|
18091
|
-
.
|
|
18102
|
+
.QueryWrapperTextInput__column-select.QueryWrapperTextInput__animate_height {
|
|
18092
18103
|
overflow: scroll;
|
|
18093
18104
|
}
|
|
18094
|
-
.
|
|
18105
|
+
.QueryWrapperTextInput__animate_dropdown-exit-active, .QueryWrapperTextInput__animate_dropdown-enter-done {
|
|
18095
18106
|
padding-left: 30px;
|
|
18096
18107
|
padding-top: 15px;
|
|
18097
18108
|
padding-bottom: 5px;
|
|
18098
18109
|
}
|
|
18099
|
-
.
|
|
18110
|
+
.QueryWrapperTextInput__animate_dropdown-exit-done {
|
|
18100
18111
|
padding: 0;
|
|
18101
18112
|
}
|
|
18102
|
-
.
|
|
18113
|
+
.QueryWrapperTextInput .radio {
|
|
18103
18114
|
padding: 4px 0;
|
|
18104
18115
|
}
|
|
18105
18116
|
|
|
@@ -18119,10 +18119,17 @@ img.iconImg.SRC-datasetIcon {
|
|
|
18119
18119
|
@media (min-width: 768px) {
|
|
18120
18120
|
.QueryWrapperPlotNav .SRC-wrapper {
|
|
18121
18121
|
display: grid;
|
|
18122
|
-
grid-template-columns:
|
|
18123
|
-
padding-right:
|
|
18122
|
+
grid-template-columns: 25% 10px 75%;
|
|
18123
|
+
padding-right: 15px;
|
|
18124
18124
|
}
|
|
18125
18125
|
.QueryWrapperPlotNav .SRC-wrapper > * {
|
|
18126
|
+
grid-column: 1/span 3;
|
|
18127
|
+
}
|
|
18128
|
+
.QueryWrapperPlotNav .SRC-wrapper.has-facets {
|
|
18129
|
+
padding-right: 120px;
|
|
18130
|
+
grid-template-columns: 60px 10px 25% 10px 75%;
|
|
18131
|
+
}
|
|
18132
|
+
.QueryWrapperPlotNav .SRC-wrapper.has-facets > * {
|
|
18126
18133
|
grid-column: 3/span 3;
|
|
18127
18134
|
}
|
|
18128
18135
|
.QueryWrapperPlotNav .SRC-wrapper .QueryFilterToggleButton {
|
|
@@ -18156,19 +18163,22 @@ img.iconImg.SRC-datasetIcon {
|
|
|
18156
18163
|
.QueryWrapperPlotNav .SRC-wrapper .download-confirmation {
|
|
18157
18164
|
grid-row: 2/span 1;
|
|
18158
18165
|
}
|
|
18159
|
-
.QueryWrapperPlotNav .SRC-wrapper .
|
|
18166
|
+
.QueryWrapperPlotNav .SRC-wrapper .QueryWrapperTextInput {
|
|
18160
18167
|
grid-row: 3/span 1;
|
|
18161
18168
|
margin-bottom: 10px;
|
|
18162
18169
|
}
|
|
18163
18170
|
.QueryWrapperPlotNav .SRC-wrapper .TotalQueryResults {
|
|
18164
18171
|
grid-row: 4/span 1;
|
|
18165
18172
|
}
|
|
18166
|
-
.QueryWrapperPlotNav .SRC-wrapper .
|
|
18173
|
+
.QueryWrapperPlotNav .SRC-wrapper .ErrorBannerWrapper {
|
|
18167
18174
|
grid-row: 5/span 1;
|
|
18168
18175
|
}
|
|
18169
|
-
.QueryWrapperPlotNav .SRC-wrapper .
|
|
18176
|
+
.QueryWrapperPlotNav .SRC-wrapper .FacetNav {
|
|
18170
18177
|
grid-row: 6/span 1;
|
|
18171
18178
|
}
|
|
18179
|
+
.QueryWrapperPlotNav .SRC-wrapper .FilterAndView {
|
|
18180
|
+
grid-row: 7/span 1;
|
|
18181
|
+
}
|
|
18172
18182
|
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.QueryFilter {
|
|
18173
18183
|
grid-column: 1/span 3;
|
|
18174
18184
|
}
|
|
@@ -18183,7 +18193,8 @@ img.iconImg.SRC-datasetIcon {
|
|
|
18183
18193
|
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.TotalQueryResults,
|
|
18184
18194
|
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.FilterAndView,
|
|
18185
18195
|
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.TopLevelControls,
|
|
18186
|
-
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.
|
|
18196
|
+
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.QueryWrapperTextInput,
|
|
18197
|
+
.QueryWrapperPlotNav .SRC-wrapper .isShowingFacetFilters.ErrorBannerWrapper {
|
|
18187
18198
|
grid-column: 5/span 1;
|
|
18188
18199
|
}
|
|
18189
18200
|
.QueryWrapperPlotNav .SRC-wrapper .isHidingFacetFilters.QueryFilter {
|
|
@@ -18200,7 +18211,8 @@ img.iconImg.SRC-datasetIcon {
|
|
|
18200
18211
|
.QueryWrapperPlotNav .FacetNav,
|
|
18201
18212
|
.QueryWrapperPlotNav .FilterAndView,
|
|
18202
18213
|
.QueryWrapperPlotNav .TopLevelControls,
|
|
18203
|
-
.QueryWrapperPlotNav .
|
|
18214
|
+
.QueryWrapperPlotNav .QueryWrapperTextInput,
|
|
18215
|
+
.QueryWrapperPlotNav .ErrorBannerWrapper {
|
|
18204
18216
|
margin-left: 30px;
|
|
18205
18217
|
}
|
|
18206
18218
|
}
|
|
@@ -18209,7 +18221,7 @@ img.iconImg.SRC-datasetIcon {
|
|
|
18209
18221
|
display: none;
|
|
18210
18222
|
}
|
|
18211
18223
|
}
|
|
18212
|
-
.QueryWrapperPlotNav .
|
|
18224
|
+
.QueryWrapperPlotNav .QueryWrapperTextInput {
|
|
18213
18225
|
z-index: 600;
|
|
18214
18226
|
}
|
|
18215
18227
|
.QueryWrapperPlotNav .TotalQueryResults {
|
|
@@ -18277,19 +18289,19 @@ img.iconImg.SRC-datasetIcon {
|
|
|
18277
18289
|
box-shadow: none;
|
|
18278
18290
|
border-radius: 2px;
|
|
18279
18291
|
}
|
|
18280
|
-
.
|
|
18292
|
+
.QueryWrapperTextInput__searchbar {
|
|
18281
18293
|
height: 50px;
|
|
18282
18294
|
background: #f9f9f9;
|
|
18283
18295
|
border: 1px solid #dddddf;
|
|
18284
18296
|
display: flex;
|
|
18285
18297
|
align-items: center;
|
|
18286
18298
|
}
|
|
18287
|
-
.
|
|
18299
|
+
.QueryWrapperTextInput__searchbar:focus-within {
|
|
18288
18300
|
outline-color: #407ba0;
|
|
18289
18301
|
outline-style: auto;
|
|
18290
18302
|
outline-width: 5px;
|
|
18291
18303
|
}
|
|
18292
|
-
.
|
|
18304
|
+
.QueryWrapperTextInput__searchbar__searchicon {
|
|
18293
18305
|
color: #dcdcdc;
|
|
18294
18306
|
margin-left: 10px;
|
|
18295
18307
|
font-size: 17px;
|
|
@@ -18297,7 +18309,7 @@ img.iconImg.SRC-datasetIcon {
|
|
|
18297
18309
|
flex-grow: 0;
|
|
18298
18310
|
flex-shrink: 0;
|
|
18299
18311
|
}
|
|
18300
|
-
.
|
|
18312
|
+
.QueryWrapperTextInput__searchbar input {
|
|
18301
18313
|
flex: 1;
|
|
18302
18314
|
margin-left: 10px;
|
|
18303
18315
|
width: fit-content;
|
|
@@ -18306,21 +18318,21 @@ img.iconImg.SRC-datasetIcon {
|
|
|
18306
18318
|
border: none;
|
|
18307
18319
|
background: #f9f9f9;
|
|
18308
18320
|
}
|
|
18309
|
-
.
|
|
18321
|
+
.QueryWrapperTextInput__searchbar input:focus {
|
|
18310
18322
|
outline-width: 0px;
|
|
18311
18323
|
outline: none;
|
|
18312
18324
|
}
|
|
18313
|
-
.
|
|
18325
|
+
.QueryWrapperTextInput__searchbar__clearbutton {
|
|
18314
18326
|
flex: 1;
|
|
18315
18327
|
flex-grow: 0;
|
|
18316
18328
|
flex-shrink: 0;
|
|
18317
18329
|
}
|
|
18318
|
-
.
|
|
18330
|
+
.QueryWrapperTextInput__form-container {
|
|
18319
18331
|
position: relative;
|
|
18320
18332
|
width: 100%;
|
|
18321
18333
|
margin-top: 5px;
|
|
18322
18334
|
}
|
|
18323
|
-
.
|
|
18335
|
+
.QueryWrapperTextInput__column-select {
|
|
18324
18336
|
background: #ffffff;
|
|
18325
18337
|
box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
|
|
18326
18338
|
color: #515359;
|
|
@@ -18330,7 +18342,7 @@ img.iconImg.SRC-datasetIcon {
|
|
|
18330
18342
|
z-index: 5;
|
|
18331
18343
|
width: inherit;
|
|
18332
18344
|
}
|
|
18333
|
-
.
|
|
18345
|
+
.QueryWrapperTextInput__animate_height {
|
|
18334
18346
|
max-height: 0;
|
|
18335
18347
|
overflow-y: hidden;
|
|
18336
18348
|
-webkit-transition: max-height 0.3s ease-in-out;
|
|
@@ -18338,29 +18350,29 @@ img.iconImg.SRC-datasetIcon {
|
|
|
18338
18350
|
-o-transition: max-height 0.3s ease-in-out;
|
|
18339
18351
|
transition: max-height 0.3s ease-in-out;
|
|
18340
18352
|
}
|
|
18341
|
-
.
|
|
18353
|
+
.QueryWrapperTextInput__animate_dropdown-enter-done {
|
|
18342
18354
|
max-height: 300px;
|
|
18343
18355
|
}
|
|
18344
|
-
.
|
|
18356
|
+
.QueryWrapperTextInput__animate_dropdown-exit-done {
|
|
18345
18357
|
max-height: 0;
|
|
18346
18358
|
}
|
|
18347
|
-
.
|
|
18359
|
+
.QueryWrapperTextInput__dropdown_pos {
|
|
18348
18360
|
position: relative;
|
|
18349
18361
|
width: 100%;
|
|
18350
18362
|
}
|
|
18351
|
-
.
|
|
18363
|
+
.QueryWrapperTextInput__column-select.QueryWrapperTextInput__animate_height {
|
|
18352
18364
|
overflow: scroll;
|
|
18353
18365
|
}
|
|
18354
|
-
.
|
|
18355
|
-
.
|
|
18366
|
+
.QueryWrapperTextInput__animate_dropdown-exit-active,
|
|
18367
|
+
.QueryWrapperTextInput__animate_dropdown-enter-done {
|
|
18356
18368
|
padding-left: 30px;
|
|
18357
18369
|
padding-top: 15px;
|
|
18358
18370
|
padding-bottom: 5px;
|
|
18359
18371
|
}
|
|
18360
|
-
.
|
|
18372
|
+
.QueryWrapperTextInput__animate_dropdown-exit-done {
|
|
18361
18373
|
padding: 0;
|
|
18362
18374
|
}
|
|
18363
|
-
.
|
|
18375
|
+
.QueryWrapperTextInput .radio {
|
|
18364
18376
|
padding: 4px 0;
|
|
18365
18377
|
}
|
|
18366
18378
|
.page-progress button,
|
|
@@ -23479,6 +23491,33 @@ body.reflex-row-resize {
|
|
|
23479
23491
|
border-right: 8px solid #e4e4e4;
|
|
23480
23492
|
border-left: 8px solid #e4e4e4;
|
|
23481
23493
|
}
|
|
23494
|
+
|
|
23495
|
+
/* sass-plugin-0:/home/runner/work/Synapse-React-Client/Synapse-React-Client/src/lib/style/components/query_filter/_facet-filter-header.scss */
|
|
23496
|
+
.FacetFilterHeader {
|
|
23497
|
+
display: flex;
|
|
23498
|
+
justify-content: space-between;
|
|
23499
|
+
border-bottom: 1px solid #dcdcdc;
|
|
23500
|
+
}
|
|
23501
|
+
.FacetFilterHeader__label {
|
|
23502
|
+
font-weight: bold;
|
|
23503
|
+
}
|
|
23504
|
+
.FacetFilterHeader__collapseToggleBtn {
|
|
23505
|
+
margin: 0;
|
|
23506
|
+
padding: 0;
|
|
23507
|
+
line-height: 14px;
|
|
23508
|
+
font-size: 18px;
|
|
23509
|
+
color: #407ba0 !important;
|
|
23510
|
+
}
|
|
23511
|
+
.FacetFilterHeader__collapseToggleBtn:hover {
|
|
23512
|
+
color: #407ba0 !important;
|
|
23513
|
+
text-decoration: underline;
|
|
23514
|
+
}
|
|
23515
|
+
.FacetFilterHeader__collapseToggleBtn .icon-plus,
|
|
23516
|
+
.FacetFilterHeader__collapseToggleBtn .icon-minus {
|
|
23517
|
+
width: 14px;
|
|
23518
|
+
height: 14px;
|
|
23519
|
+
vertical-align: text-top;
|
|
23520
|
+
}
|
|
23482
23521
|
/*!
|
|
23483
23522
|
* https://github.com/arqex/react-datetime
|
|
23484
23523
|
*/
|