@bento-core/query-bar 1.0.1-ccdihub.11 → 1.0.1-ccdihub.12
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/generators/styles.js +33 -12
- package/package.json +1 -1
- package/src/generators/styles.js +33 -12
|
@@ -111,47 +111,68 @@ var _default = () => ({
|
|
|
111
111
|
facetSectionFilesBackground: {
|
|
112
112
|
backgroundColor: '#F5C3F1'
|
|
113
113
|
},
|
|
114
|
-
|
|
114
|
+
facetSectionDiagnosis: {
|
|
115
115
|
color: '#357288'
|
|
116
116
|
},
|
|
117
|
-
|
|
117
|
+
facetSectionDiagnosisBackground: {
|
|
118
118
|
backgroundColor: '#E4ECE9',
|
|
119
119
|
border: '1px solid #646464'
|
|
120
120
|
},
|
|
121
|
-
|
|
121
|
+
facetSectionDemographics: {
|
|
122
122
|
color: '#8C3F8D'
|
|
123
123
|
},
|
|
124
|
-
|
|
124
|
+
facetSectionDemographicsBackground: {
|
|
125
125
|
backgroundColor: '#E1C9E140',
|
|
126
126
|
border: '1px solid #646464'
|
|
127
127
|
},
|
|
128
|
-
|
|
128
|
+
facetSectionTreatment: {
|
|
129
|
+
color: '#4555AB'
|
|
130
|
+
},
|
|
131
|
+
facetSectionTreatmentBackground: {
|
|
132
|
+
backgroundColor: '#4555AB30',
|
|
133
|
+
border: '1px solid #646464'
|
|
134
|
+
},
|
|
135
|
+
facetSectionTreatmentresponse: {
|
|
129
136
|
color: '#907642'
|
|
130
137
|
},
|
|
131
|
-
|
|
138
|
+
facetSectionTreatmentresponseBackground: {
|
|
132
139
|
backgroundColor: '#F0DFBD40',
|
|
133
140
|
border: '1px solid #646464'
|
|
134
141
|
},
|
|
135
|
-
|
|
142
|
+
facetSectionSurvival: {
|
|
136
143
|
color: '#A85348'
|
|
137
144
|
},
|
|
138
|
-
|
|
145
|
+
facetSectionSurvivalBackground: {
|
|
139
146
|
backgroundColor: '#F8D7D240',
|
|
140
147
|
border: '1px solid #646464'
|
|
141
148
|
},
|
|
142
|
-
|
|
149
|
+
facetSectionSamples: {
|
|
143
150
|
color: '#1F6BBF'
|
|
144
151
|
},
|
|
145
|
-
|
|
152
|
+
facetSectionSamplesBackground: {
|
|
146
153
|
backgroundColor: '#CEDEF040',
|
|
147
154
|
border: '1px solid #646464'
|
|
148
155
|
},
|
|
149
|
-
|
|
156
|
+
facetSectionDatacategory: {
|
|
150
157
|
color: '#14A773'
|
|
151
158
|
},
|
|
152
|
-
|
|
159
|
+
facetSectionDatacategoryBackground: {
|
|
153
160
|
backgroundColor: '#DDEAE540',
|
|
154
161
|
border: '1px solid #646464'
|
|
162
|
+
},
|
|
163
|
+
facetSectionStudy: {
|
|
164
|
+
color: '#357288'
|
|
165
|
+
},
|
|
166
|
+
facetSectionStudyBackground: {
|
|
167
|
+
backgroundColor: '#E4ECE9',
|
|
168
|
+
border: '1px solid #646464'
|
|
169
|
+
},
|
|
170
|
+
facetSectionSequencinglibrary: {
|
|
171
|
+
color: '#8C3F8D'
|
|
172
|
+
},
|
|
173
|
+
facetSectionSequencinglibraryBackground: {
|
|
174
|
+
backgroundColor: '#E1C9E140',
|
|
175
|
+
border: '1px solid #646464'
|
|
155
176
|
}
|
|
156
177
|
});
|
|
157
178
|
exports.default = _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bento-core/query-bar",
|
|
3
|
-
"version": "1.0.1-ccdihub.
|
|
3
|
+
"version": "1.0.1-ccdihub.12",
|
|
4
4
|
"description": "This package provides the Query Bar component that displays the current Facet Search and Local Find filters on the Dashboard/Explore page. It also provides the direct ability to reset all or some of the filters with the click of a button. It is designed to be implemented directly with the:",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"scripts": {
|
package/src/generators/styles.js
CHANGED
|
@@ -105,46 +105,67 @@ export default () => ({
|
|
|
105
105
|
facetSectionFilesBackground: {
|
|
106
106
|
backgroundColor: '#F5C3F1',
|
|
107
107
|
},
|
|
108
|
-
|
|
108
|
+
facetSectionDiagnosis: {
|
|
109
109
|
color: '#357288',
|
|
110
110
|
},
|
|
111
|
-
|
|
111
|
+
facetSectionDiagnosisBackground: {
|
|
112
112
|
backgroundColor: '#E4ECE9',
|
|
113
113
|
border: '1px solid #646464',
|
|
114
114
|
},
|
|
115
|
-
|
|
115
|
+
facetSectionDemographics: {
|
|
116
116
|
color: '#8C3F8D',
|
|
117
117
|
},
|
|
118
|
-
|
|
118
|
+
facetSectionDemographicsBackground: {
|
|
119
119
|
backgroundColor: '#E1C9E140',
|
|
120
120
|
border: '1px solid #646464',
|
|
121
121
|
},
|
|
122
|
-
|
|
122
|
+
facetSectionTreatment: {
|
|
123
|
+
color: '#4555AB',
|
|
124
|
+
},
|
|
125
|
+
facetSectionTreatmentBackground: {
|
|
126
|
+
backgroundColor: '#4555AB30',
|
|
127
|
+
border: '1px solid #646464',
|
|
128
|
+
},
|
|
129
|
+
facetSectionTreatmentresponse: {
|
|
123
130
|
color: '#907642',
|
|
124
131
|
},
|
|
125
|
-
|
|
132
|
+
facetSectionTreatmentresponseBackground: {
|
|
126
133
|
backgroundColor: '#F0DFBD40',
|
|
127
134
|
border: '1px solid #646464',
|
|
128
135
|
},
|
|
129
|
-
|
|
136
|
+
facetSectionSurvival: {
|
|
130
137
|
color: '#A85348',
|
|
131
138
|
},
|
|
132
|
-
|
|
139
|
+
facetSectionSurvivalBackground: {
|
|
133
140
|
backgroundColor: '#F8D7D240',
|
|
134
141
|
border: '1px solid #646464',
|
|
135
142
|
},
|
|
136
|
-
|
|
143
|
+
facetSectionSamples: {
|
|
137
144
|
color: '#1F6BBF',
|
|
138
145
|
},
|
|
139
|
-
|
|
146
|
+
facetSectionSamplesBackground: {
|
|
140
147
|
backgroundColor: '#CEDEF040',
|
|
141
148
|
border: '1px solid #646464',
|
|
142
149
|
},
|
|
143
|
-
|
|
150
|
+
facetSectionDatacategory: {
|
|
144
151
|
color: '#14A773',
|
|
145
152
|
},
|
|
146
|
-
|
|
153
|
+
facetSectionDatacategoryBackground: {
|
|
147
154
|
backgroundColor: '#DDEAE540',
|
|
148
155
|
border: '1px solid #646464',
|
|
149
156
|
},
|
|
157
|
+
facetSectionStudy: {
|
|
158
|
+
color: '#357288',
|
|
159
|
+
},
|
|
160
|
+
facetSectionStudyBackground: {
|
|
161
|
+
backgroundColor: '#E4ECE9',
|
|
162
|
+
border: '1px solid #646464',
|
|
163
|
+
},
|
|
164
|
+
facetSectionSequencinglibrary: {
|
|
165
|
+
color: '#8C3F8D',
|
|
166
|
+
},
|
|
167
|
+
facetSectionSequencinglibraryBackground: {
|
|
168
|
+
backgroundColor: '#E1C9E140',
|
|
169
|
+
border: '1px solid #646464',
|
|
170
|
+
},
|
|
150
171
|
});
|