@abi-software/map-side-bar 1.5.0 → 1.5.2

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.
Files changed (37) hide show
  1. package/CHANGELOG.md +228 -228
  2. package/LICENSE +201 -201
  3. package/README.md +146 -146
  4. package/babel.config.js +14 -14
  5. package/dist/map-side-bar.common.js +423 -182
  6. package/dist/map-side-bar.common.js.map +1 -1
  7. package/dist/map-side-bar.css +1 -1
  8. package/dist/map-side-bar.umd.js +423 -182
  9. package/dist/map-side-bar.umd.js.map +1 -1
  10. package/dist/map-side-bar.umd.min.js +1 -1
  11. package/dist/map-side-bar.umd.min.js.map +1 -1
  12. package/package-lock.json +14536 -14536
  13. package/package.json +75 -75
  14. package/public/index.html +17 -17
  15. package/src/App.vue +164 -164
  16. package/src/algolia/algolia.js +188 -188
  17. package/src/algolia/utils.js +69 -69
  18. package/src/assets/_variables.scss +43 -43
  19. package/src/assets/styles.scss +7 -7
  20. package/src/components/BadgesGroup.vue +144 -144
  21. package/src/components/Cascader.vue +49 -49
  22. package/src/components/ContextCard.vue +397 -397
  23. package/src/components/DatasetCard.vue +328 -328
  24. package/src/components/EventBus.js +3 -3
  25. package/src/components/ImageGallery.vue +531 -531
  26. package/src/components/SearchFilters.vue +586 -587
  27. package/src/components/SearchHistory.vue +146 -0
  28. package/src/components/SideBar.vue +235 -232
  29. package/src/components/SidebarContent.vue +564 -554
  30. package/src/components/Tabs.vue +78 -78
  31. package/src/components/hardcoded-context-info.js +79 -79
  32. package/src/components/index.js +8 -8
  33. package/src/components/species-map.js +8 -8
  34. package/src/main.js +8 -8
  35. package/src/mixins/S3Bucket.vue +31 -31
  36. package/static.json +6 -6
  37. package/vue.config.js +19 -19
package/CHANGELOG.md CHANGED
@@ -1,228 +1,228 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file.
4
-
5
- The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
6
- and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
-
8
- Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
9
-
10
- ## [v1.5.0](https://github.com/alan-wu/map-sidebar/compare/v1.4.1-beta.1...v1.5.0)
11
-
12
- ### Merged
13
-
14
- - Mapintegrated context cards [`#60`](https://github.com/alan-wu/map-sidebar/pull/60)
15
- - Add method for retrieving Algolia facets (for dynamic markers) [`#59`](https://github.com/alan-wu/map-sidebar/pull/59)
16
-
17
- ### Commits
18
-
19
- - Merge the label and uberon emits into one object [`739fc6a`](https://github.com/alan-wu/map-sidebar/commit/739fc6ae0c9c9cce81e04c68e8a8ec8769b0f745)
20
- - Add another emit for facet labels [`b666715`](https://github.com/alan-wu/map-sidebar/commit/b6667150a22c487718ba497e3609c9ae2baa5967)
21
- - Remove the context card variables from sidebarcontent [`75fa839`](https://github.com/alan-wu/map-sidebar/commit/75fa839a2a82d8d8b90ce01637c01230beb96bfd)
22
-
23
- ## [v1.4.1-beta.1](https://github.com/alan-wu/map-sidebar/compare/v1.4.1-beta.0...v1.4.1-beta.1) - 2023-06-13
24
-
25
- ### Commits
26
-
27
- - Revert changes in dependencies. [`f39600a`](https://github.com/alan-wu/map-sidebar/commit/f39600ab2068cf2f06f514a8650950a558087333)
28
-
29
- ## [v1.4.1-beta.0](https://github.com/alan-wu/map-sidebar/compare/v1.4.0...v1.4.1-beta.0) - 2023-06-13
30
-
31
- ### Commits
32
-
33
- - Update dependencies. [`48bbd2e`](https://github.com/alan-wu/map-sidebar/commit/48bbd2e0a4f5fec0ad820ea3fef9deafb0ca5afe)
34
-
35
- ## [v1.4.0](https://github.com/alan-wu/map-sidebar/compare/v1.3.39-beta.0...v1.4.0) - 2023-06-12
36
-
37
- ### Commits
38
-
39
- - Update package. [`1b2c4b8`](https://github.com/alan-wu/map-sidebar/commit/1b2c4b848375ecf089f1a8e5ff5d8204e1243a3c)
40
- - Update packages. [`e1a3924`](https://github.com/alan-wu/map-sidebar/commit/e1a3924a11421c35cff3efd1fcb4bb56707bf8af)
41
- - Upgrade to vue 2.6.14 [`e0e8822`](https://github.com/alan-wu/map-sidebar/commit/e0e88228d96ec96b466aa93cf7223503a867a980)
42
-
43
- ## [v1.3.39-beta.0](https://github.com/alan-wu/map-sidebar/compare/v1.3.38...v1.3.39-beta.0) - 2023-06-12
44
-
45
- ### Merged
46
-
47
- - Update vue to 2.7.14 [`#57`](https://github.com/alan-wu/map-sidebar/pull/57)
48
- - Fix an issue with JSON parse on plotAnnotation. [`#58`](https://github.com/alan-wu/map-sidebar/pull/58)
49
- - Support scss. [`#56`](https://github.com/alan-wu/map-sidebar/pull/56)
50
-
51
- ### Commits
52
-
53
- - Add autochangelog to release command. [`c57a6a0`](https://github.com/alan-wu/map-sidebar/commit/c57a6a020c4d3582e2e784e7b808286b22cdeedc)
54
- - Add new commands for version release. [`fc0e579`](https://github.com/alan-wu/map-sidebar/commit/fc0e579517a4cf83dee3f5aa1201c7369d2bc53a)
55
- - Downgrade version. [`8f55e01`](https://github.com/alan-wu/map-sidebar/commit/8f55e01f95e05bf11bdf2c8f8c4746f8e81bac93)
56
-
57
- ## [v1.3.38](https://github.com/alan-wu/map-sidebar/compare/v1.3.37...v1.3.38) - 2023-04-10
58
-
59
- ### Commits
60
-
61
- - Replace css with scss. [`5970c81`](https://github.com/alan-wu/map-sidebar/commit/5970c818d705adf468e8bd62c6713fb886a74fa1)
62
- - Update to use the latest gallery which supports scss. [`1ec6529`](https://github.com/alan-wu/map-sidebar/commit/1ec652935bbd88797f1e46777e217e7a10c1788f)
63
-
64
- ## [v1.3.37](https://github.com/alan-wu/map-sidebar/compare/v1.3.36...v1.3.37) - 2023-04-10
65
-
66
- ### Commits
67
-
68
- - Version 1.3.37 release. [`17c88e6`](https://github.com/alan-wu/map-sidebar/commit/17c88e6fbbfd9ad7bdd589290fdf84fd28f2fbf9)
69
-
70
- ## [v1.3.36](https://github.com/alan-wu/map-sidebar/compare/v1.3.34...v1.3.36) - 2023-03-23
71
-
72
- ### Merged
73
-
74
- - Support S3 bucket for all related resources [`#55`](https://github.com/alan-wu/map-sidebar/pull/55)
75
- - Sidebar feedback sprint 27 [`#54`](https://github.com/alan-wu/map-sidebar/pull/54)
76
- - Refactoring [`#53`](https://github.com/alan-wu/map-sidebar/pull/53)
77
-
78
- ### Commits
79
-
80
- - Add a mixin for getting s3 information. Support s3 bucket with context card. [`7c9617d`](https://github.com/alan-wu/map-sidebar/commit/7c9617deae781987eab584d8cae08fbdf5044465)
81
- - Switch to using algolia 'type' facet [`861ee60`](https://github.com/alan-wu/map-sidebar/commit/861ee600e43ef9f371a671a257182dd8c6473e69)
82
- - Add s3 bucket information [`dc139dd`](https://github.com/alan-wu/map-sidebar/commit/dc139ddb685b4c2f1a40826ce8170e9baff6ffe0)
83
-
84
- ## [v1.3.34](https://github.com/alan-wu/map-sidebar/compare/v1.3.33...v1.3.34) - 2023-02-02
85
-
86
- ### Merged
87
-
88
- - Fix a bug caused by retracted datasets. [`#52`](https://github.com/alan-wu/map-sidebar/pull/52)
89
-
90
- ### Commits
91
-
92
- - Remove unused variables and make sure search is performed correctly when the app is mounted. [`bcc1ec1`](https://github.com/alan-wu/map-sidebar/commit/bcc1ec1e89a9ff1ab012b07f2a22f48c0365ac2d)
93
- - increment version to 1.3.34. [`b0126a1`](https://github.com/alan-wu/map-sidebar/commit/b0126a1a30a35c0caa6ec8bc5a460f18ec273663)
94
- - Update .gitignore [`89cfe13`](https://github.com/alan-wu/map-sidebar/commit/89cfe1341627f151f29a227768377d37a8eec9fa)
95
-
96
- ## [v1.3.33](https://github.com/alan-wu/map-sidebar/compare/v1.3.18...v1.3.33) - 2022-12-15
97
-
98
- ### Merged
99
-
100
- - Change Biolucida Images badge to Images and add a Dataset badge. [`#51`](https://github.com/alan-wu/map-sidebar/pull/51)
101
- - Tab color change [`#50`](https://github.com/alan-wu/map-sidebar/pull/50)
102
- - Switch to using markdown and checking for XSS [`#48`](https://github.com/alan-wu/map-sidebar/pull/48)
103
- - remove hardcoded root url [`#46`](https://github.com/alan-wu/map-sidebar/pull/46)
104
- - Context card source fix [`#45`](https://github.com/alan-wu/map-sidebar/pull/45)
105
- - Fix a bug causing filters are not set when the cascader is yet ready. [`#44`](https://github.com/alan-wu/map-sidebar/pull/44)
106
-
107
- ### Commits
108
-
109
- - Switch to using js-xss for sanatization [`f2ee30e`](https://github.com/alan-wu/map-sidebar/commit/f2ee30e338bfc626c6262dde244e8fe2f0d47a6c)
110
- - Add sidebar data input formatting to the readme [`3006ec0`](https://github.com/alan-wu/map-sidebar/commit/3006ec020e4b11432d9d79a1acbca6db59c19ebd)
111
- - Create link to the datasetsDetails filePath page [`3af21cb`](https://github.com/alan-wu/map-sidebar/commit/3af21cb457b71a63048d863b2ad70f3bfe04dcf7)
112
-
113
- ## [v1.3.18](https://github.com/alan-wu/map-sidebar/compare/v1.3.1...v1.3.18) - 2022-07-22
114
-
115
- ### Merged
116
-
117
- - Facets check [`#43`](https://github.com/alan-wu/map-sidebar/pull/43)
118
- - Remove unused hardcoded keywords [`#42`](https://github.com/alan-wu/map-sidebar/pull/42)
119
- - Fix css error, add comments [`#41`](https://github.com/alan-wu/map-sidebar/pull/41)
120
- - Keyword search [`#40`](https://github.com/alan-wu/map-sidebar/pull/40)
121
- - Keyword search typo fixes [`#39`](https://github.com/alan-wu/map-sidebar/pull/39)
122
- - Add keyword search [`#38`](https://github.com/alan-wu/map-sidebar/pull/38)
123
- - Add scrollbar for content overflow on context card [`#37`](https://github.com/alan-wu/map-sidebar/pull/37)
124
- - Dynamic components [`#36`](https://github.com/alan-wu/map-sidebar/pull/36)
125
-
126
- ### Commits
127
-
128
- - Remove markerLevels.js (not needed) [`bd76e9a`](https://github.com/alan-wu/map-sidebar/commit/bd76e9aabf01adc09bb1cf77ed33c7c3094a750c)
129
- - Add missing file [`4e98a6e`](https://github.com/alan-wu/map-sidebar/commit/4e98a6ecb62b5ded440d27c3b9213aa304b6bb2b)
130
- - Add anatomy to the keywords, reformat document [`0f8e867`](https://github.com/alan-wu/map-sidebar/commit/0f8e867a932d74378c07702746656cbc06eaebf5)
131
-
132
- ## [v1.3.1](https://github.com/alan-wu/map-sidebar/compare/v1.3.0...v1.3.1) - 2022-06-09
133
-
134
- ### Merged
135
-
136
- - Fix for context card banners [`#35`](https://github.com/alan-wu/map-sidebar/pull/35)
137
-
138
- ### Commits
139
-
140
- - Update gallery. [`06241ae`](https://github.com/alan-wu/map-sidebar/commit/06241aec4646306d534c9bb3b7faa71720f82217)
141
- - Fix incorrect view url on the context card. [`637d5e0`](https://github.com/alan-wu/map-sidebar/commit/637d5e0d2bfc58ea2dda4c5bc3b68b75f2b8e522)
142
- - Set a height for dataset card to avoid resizing. [`35b8fc7`](https://github.com/alan-wu/map-sidebar/commit/35b8fc741d49d5f9d5d4ef2e0ac8219d9051769b)
143
-
144
- ## [v1.3.0](https://github.com/alan-wu/map-sidebar/compare/v1.2.0-beta.11...v1.3.0) - 2022-05-27
145
-
146
- ### Merged
147
-
148
- - Image gallery on sidebar [`#34`](https://github.com/alan-wu/map-sidebar/pull/34)
149
-
150
- ### Commits
151
-
152
- - Increment version to 1.3.0 [`415916c`](https://github.com/alan-wu/map-sidebar/commit/415916c5ddf0257df5a9b447cf2a37050d2d2765)
153
- - Set maximum number of downloads in paralle. [`f0d88f4`](https://github.com/alan-wu/map-sidebar/commit/f0d88f413cfbc1aadf4a2c77e3a580efb2ae758b)
154
- - Support parallel cards loading. Add missing contextual information. [`feb9140`](https://github.com/alan-wu/map-sidebar/commit/feb91406da756ea4b979126ed96b8d84f5b73a7d)
155
-
156
- ## [v1.2.0-beta.11](https://github.com/alan-wu/map-sidebar/compare/v1.2.0-beta.10...v1.2.0-beta.11) - 2022-05-23
157
-
158
- ### Commits
159
-
160
- - Update to gallery 0.3.0-beta.5 [`76f64a1`](https://github.com/alan-wu/map-sidebar/commit/76f64a1737072e370e659d7219fad6988728179d)
161
-
162
- ## [v1.2.0-beta.10](https://github.com/alan-wu/map-sidebar/compare/1.1.3-fix-0...v1.2.0-beta.10) - 2022-05-18
163
-
164
- ### Merged
165
-
166
- - Updated the way to detect a simulation dataset [`#33`](https://github.com/alan-wu/map-sidebar/pull/33)
167
- - Fix package number being out of date [`#32`](https://github.com/alan-wu/map-sidebar/pull/32)
168
- - Now populate cards from algolia, then add scicrunch data [`#31`](https://github.com/alan-wu/map-sidebar/pull/31)
169
- - Contex cards via scicrunch [`#30`](https://github.com/alan-wu/map-sidebar/pull/30)
170
- - Add hardcoded data and ability to display samples: [`#29`](https://github.com/alan-wu/map-sidebar/pull/29)
171
- - Contex cards via scicrunch - finishing touches [`#28`](https://github.com/alan-wu/map-sidebar/pull/28)
172
- - Context cards via scicrunch [`#27`](https://github.com/alan-wu/map-sidebar/pull/27)
173
- - Fix facets not being passed in emit [`#26`](https://github.com/alan-wu/map-sidebar/pull/26)
174
- - Fix an issue the auto merge caused [`#25`](https://github.com/alan-wu/map-sidebar/pull/25)
175
- - Switch to using dois for finding datasets as opposed to discover ids [`#24`](https://github.com/alan-wu/map-sidebar/pull/24)
176
- - Use the latest version of svg which fix a problem with icons on sparc-app. [`#23`](https://github.com/alan-wu/map-sidebar/pull/23)
177
- - Algolia search [`#22`](https://github.com/alan-wu/map-sidebar/pull/22)
178
- - Fix sample size text. [`#21`](https://github.com/alan-wu/map-sidebar/pull/21)
179
- - Fix facet not set correctly with open search [`#20`](https://github.com/alan-wu/map-sidebar/pull/20)
180
-
181
- ### Commits
182
-
183
- - Initial supports for image gallery. [`1a178bd`](https://github.com/alan-wu/map-sidebar/commit/1a178bd86c64b378bd8dbf25574aaa02efe97acf)
184
- - Initial commit of gallery. [`4f9e96a`](https://github.com/alan-wu/map-sidebar/commit/4f9e96a586a3f1e760331b5c35442552eb2d75bd)
185
- - Add badges buttons for image gallery filtering. [`a3c2958`](https://github.com/alan-wu/map-sidebar/commit/a3c29580871ff3355ef8897b3e9b4f7b04ae6143)
186
-
187
- ## [1.1.3-fix-0](https://github.com/alan-wu/map-sidebar/compare/1.0.12...1.1.3-fix-0) - 2022-01-28
188
-
189
- ### Merged
190
-
191
- - Integrated features [`#19`](https://github.com/alan-wu/map-sidebar/pull/19)
192
- - Add published year [`#6`](https://github.com/alan-wu/map-sidebar/pull/6)
193
- - Remove setinterval, use cascader callback [`#4`](https://github.com/alan-wu/map-sidebar/pull/4)
194
- - Make labels in sidebar cascader clickable [`#3`](https://github.com/alan-wu/map-sidebar/pull/3)
195
-
196
- ### Commits
197
-
198
- - Updated package-lock.json. [`6cc7a9c`](https://github.com/alan-wu/map-sidebar/commit/6cc7a9cd7092ece505585979fb807ee552597290)
199
- - Merged in simulation branch changes. [`dfb6245`](https://github.com/alan-wu/map-sidebar/commit/dfb6245221cb0d0d93a980703f173077975f7506)
200
- - Updates to package-lock.json. [`e401cfc`](https://github.com/alan-wu/map-sidebar/commit/e401cfc3718cf3db65608feb5763fc497fb396ca)
201
-
202
- ## 1.0.12 - 2021-07-15
203
-
204
- ### Merged
205
-
206
- - Filters and other fixes [`#18`](https://github.com/alan-wu/map-sidebar/pull/18)
207
- - Emit event [`#17`](https://github.com/alan-wu/map-sidebar/pull/17)
208
- - Add check for organ labels [`#15`](https://github.com/alan-wu/map-sidebar/pull/15)
209
- - Add neuron search [`#14`](https://github.com/alan-wu/map-sidebar/pull/14)
210
- - Tehsurfer add neuron search [`#1`](https://github.com/alan-wu/map-sidebar/pull/1)
211
- - Fix label 'Genotype' being wrong [`#13`](https://github.com/alan-wu/map-sidebar/pull/13)
212
- - Fix a bug when there is less than 2 contributors. [`#11`](https://github.com/alan-wu/map-sidebar/pull/11)
213
- - Change endpoint to pennsieve. [`#10`](https://github.com/alan-wu/map-sidebar/pull/10)
214
- - Fix sidebar not searching on load [`#9`](https://github.com/alan-wu/map-sidebar/pull/9)
215
- - Give the mockup label more meaningful name. [`#8`](https://github.com/alan-wu/map-sidebar/pull/8)
216
- - small clean up [`#7`](https://github.com/alan-wu/map-sidebar/pull/7)
217
- - Fix search displaying result from previous search input. [`#5`](https://github.com/alan-wu/map-sidebar/pull/5)
218
- - Fix sizing with information card [`#4`](https://github.com/alan-wu/map-sidebar/pull/4)
219
- - Fix images and css breaking mapintegratedvuer [`#3`](https://github.com/alan-wu/map-sidebar/pull/3)
220
- - Merge in upstream changes. [`#1`](https://github.com/alan-wu/map-sidebar/pull/1)
221
- - Added tabs and context cards to sidebar [`#2`](https://github.com/alan-wu/map-sidebar/pull/2)
222
- - Tidy up for releases. [`#1`](https://github.com/alan-wu/map-sidebar/pull/1)
223
-
224
- ### Commits
225
-
226
- - Create map-sidebar repo [`ce887ae`](https://github.com/alan-wu/map-sidebar/commit/ce887aec6cef1cc7ee4786117624c8f143ee4411)
227
- - Change version to 1.0.0. [`a431eed`](https://github.com/alan-wu/map-sidebar/commit/a431eede106aa604be063ab3c71c8382d5b04757)
228
- - Clean up and small improvements. [`98d19cd`](https://github.com/alan-wu/map-sidebar/commit/98d19cdb59476b0d7ceb3e725ef14d18b61e67ca)
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
6
+ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+
8
+ Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
9
+
10
+ ## [v1.5.0](https://github.com/alan-wu/map-sidebar/compare/v1.4.1-beta.1...v1.5.0)
11
+
12
+ ### Merged
13
+
14
+ - Mapintegrated context cards [`#60`](https://github.com/alan-wu/map-sidebar/pull/60)
15
+ - Add method for retrieving Algolia facets (for dynamic markers) [`#59`](https://github.com/alan-wu/map-sidebar/pull/59)
16
+
17
+ ### Commits
18
+
19
+ - Merge the label and uberon emits into one object [`739fc6a`](https://github.com/alan-wu/map-sidebar/commit/739fc6ae0c9c9cce81e04c68e8a8ec8769b0f745)
20
+ - Add another emit for facet labels [`b666715`](https://github.com/alan-wu/map-sidebar/commit/b6667150a22c487718ba497e3609c9ae2baa5967)
21
+ - Remove the context card variables from sidebarcontent [`75fa839`](https://github.com/alan-wu/map-sidebar/commit/75fa839a2a82d8d8b90ce01637c01230beb96bfd)
22
+
23
+ ## [v1.4.1-beta.1](https://github.com/alan-wu/map-sidebar/compare/v1.4.1-beta.0...v1.4.1-beta.1) - 2023-06-13
24
+
25
+ ### Commits
26
+
27
+ - Revert changes in dependencies. [`f39600a`](https://github.com/alan-wu/map-sidebar/commit/f39600ab2068cf2f06f514a8650950a558087333)
28
+
29
+ ## [v1.4.1-beta.0](https://github.com/alan-wu/map-sidebar/compare/v1.4.0...v1.4.1-beta.0) - 2023-06-13
30
+
31
+ ### Commits
32
+
33
+ - Update dependencies. [`48bbd2e`](https://github.com/alan-wu/map-sidebar/commit/48bbd2e0a4f5fec0ad820ea3fef9deafb0ca5afe)
34
+
35
+ ## [v1.4.0](https://github.com/alan-wu/map-sidebar/compare/v1.3.39-beta.0...v1.4.0) - 2023-06-12
36
+
37
+ ### Commits
38
+
39
+ - Update package. [`1b2c4b8`](https://github.com/alan-wu/map-sidebar/commit/1b2c4b848375ecf089f1a8e5ff5d8204e1243a3c)
40
+ - Update packages. [`e1a3924`](https://github.com/alan-wu/map-sidebar/commit/e1a3924a11421c35cff3efd1fcb4bb56707bf8af)
41
+ - Upgrade to vue 2.6.14 [`e0e8822`](https://github.com/alan-wu/map-sidebar/commit/e0e88228d96ec96b466aa93cf7223503a867a980)
42
+
43
+ ## [v1.3.39-beta.0](https://github.com/alan-wu/map-sidebar/compare/v1.3.38...v1.3.39-beta.0) - 2023-06-12
44
+
45
+ ### Merged
46
+
47
+ - Update vue to 2.7.14 [`#57`](https://github.com/alan-wu/map-sidebar/pull/57)
48
+ - Fix an issue with JSON parse on plotAnnotation. [`#58`](https://github.com/alan-wu/map-sidebar/pull/58)
49
+ - Support scss. [`#56`](https://github.com/alan-wu/map-sidebar/pull/56)
50
+
51
+ ### Commits
52
+
53
+ - Add autochangelog to release command. [`c57a6a0`](https://github.com/alan-wu/map-sidebar/commit/c57a6a020c4d3582e2e784e7b808286b22cdeedc)
54
+ - Add new commands for version release. [`fc0e579`](https://github.com/alan-wu/map-sidebar/commit/fc0e579517a4cf83dee3f5aa1201c7369d2bc53a)
55
+ - Downgrade version. [`8f55e01`](https://github.com/alan-wu/map-sidebar/commit/8f55e01f95e05bf11bdf2c8f8c4746f8e81bac93)
56
+
57
+ ## [v1.3.38](https://github.com/alan-wu/map-sidebar/compare/v1.3.37...v1.3.38) - 2023-04-10
58
+
59
+ ### Commits
60
+
61
+ - Replace css with scss. [`5970c81`](https://github.com/alan-wu/map-sidebar/commit/5970c818d705adf468e8bd62c6713fb886a74fa1)
62
+ - Update to use the latest gallery which supports scss. [`1ec6529`](https://github.com/alan-wu/map-sidebar/commit/1ec652935bbd88797f1e46777e217e7a10c1788f)
63
+
64
+ ## [v1.3.37](https://github.com/alan-wu/map-sidebar/compare/v1.3.36...v1.3.37) - 2023-04-10
65
+
66
+ ### Commits
67
+
68
+ - Version 1.3.37 release. [`17c88e6`](https://github.com/alan-wu/map-sidebar/commit/17c88e6fbbfd9ad7bdd589290fdf84fd28f2fbf9)
69
+
70
+ ## [v1.3.36](https://github.com/alan-wu/map-sidebar/compare/v1.3.34...v1.3.36) - 2023-03-23
71
+
72
+ ### Merged
73
+
74
+ - Support S3 bucket for all related resources [`#55`](https://github.com/alan-wu/map-sidebar/pull/55)
75
+ - Sidebar feedback sprint 27 [`#54`](https://github.com/alan-wu/map-sidebar/pull/54)
76
+ - Refactoring [`#53`](https://github.com/alan-wu/map-sidebar/pull/53)
77
+
78
+ ### Commits
79
+
80
+ - Add a mixin for getting s3 information. Support s3 bucket with context card. [`7c9617d`](https://github.com/alan-wu/map-sidebar/commit/7c9617deae781987eab584d8cae08fbdf5044465)
81
+ - Switch to using algolia 'type' facet [`861ee60`](https://github.com/alan-wu/map-sidebar/commit/861ee600e43ef9f371a671a257182dd8c6473e69)
82
+ - Add s3 bucket information [`dc139dd`](https://github.com/alan-wu/map-sidebar/commit/dc139ddb685b4c2f1a40826ce8170e9baff6ffe0)
83
+
84
+ ## [v1.3.34](https://github.com/alan-wu/map-sidebar/compare/v1.3.33...v1.3.34) - 2023-02-02
85
+
86
+ ### Merged
87
+
88
+ - Fix a bug caused by retracted datasets. [`#52`](https://github.com/alan-wu/map-sidebar/pull/52)
89
+
90
+ ### Commits
91
+
92
+ - Remove unused variables and make sure search is performed correctly when the app is mounted. [`bcc1ec1`](https://github.com/alan-wu/map-sidebar/commit/bcc1ec1e89a9ff1ab012b07f2a22f48c0365ac2d)
93
+ - increment version to 1.3.34. [`b0126a1`](https://github.com/alan-wu/map-sidebar/commit/b0126a1a30a35c0caa6ec8bc5a460f18ec273663)
94
+ - Update .gitignore [`89cfe13`](https://github.com/alan-wu/map-sidebar/commit/89cfe1341627f151f29a227768377d37a8eec9fa)
95
+
96
+ ## [v1.3.33](https://github.com/alan-wu/map-sidebar/compare/v1.3.18...v1.3.33) - 2022-12-15
97
+
98
+ ### Merged
99
+
100
+ - Change Biolucida Images badge to Images and add a Dataset badge. [`#51`](https://github.com/alan-wu/map-sidebar/pull/51)
101
+ - Tab color change [`#50`](https://github.com/alan-wu/map-sidebar/pull/50)
102
+ - Switch to using markdown and checking for XSS [`#48`](https://github.com/alan-wu/map-sidebar/pull/48)
103
+ - remove hardcoded root url [`#46`](https://github.com/alan-wu/map-sidebar/pull/46)
104
+ - Context card source fix [`#45`](https://github.com/alan-wu/map-sidebar/pull/45)
105
+ - Fix a bug causing filters are not set when the cascader is yet ready. [`#44`](https://github.com/alan-wu/map-sidebar/pull/44)
106
+
107
+ ### Commits
108
+
109
+ - Switch to using js-xss for sanatization [`f2ee30e`](https://github.com/alan-wu/map-sidebar/commit/f2ee30e338bfc626c6262dde244e8fe2f0d47a6c)
110
+ - Add sidebar data input formatting to the readme [`3006ec0`](https://github.com/alan-wu/map-sidebar/commit/3006ec020e4b11432d9d79a1acbca6db59c19ebd)
111
+ - Create link to the datasetsDetails filePath page [`3af21cb`](https://github.com/alan-wu/map-sidebar/commit/3af21cb457b71a63048d863b2ad70f3bfe04dcf7)
112
+
113
+ ## [v1.3.18](https://github.com/alan-wu/map-sidebar/compare/v1.3.1...v1.3.18) - 2022-07-22
114
+
115
+ ### Merged
116
+
117
+ - Facets check [`#43`](https://github.com/alan-wu/map-sidebar/pull/43)
118
+ - Remove unused hardcoded keywords [`#42`](https://github.com/alan-wu/map-sidebar/pull/42)
119
+ - Fix css error, add comments [`#41`](https://github.com/alan-wu/map-sidebar/pull/41)
120
+ - Keyword search [`#40`](https://github.com/alan-wu/map-sidebar/pull/40)
121
+ - Keyword search typo fixes [`#39`](https://github.com/alan-wu/map-sidebar/pull/39)
122
+ - Add keyword search [`#38`](https://github.com/alan-wu/map-sidebar/pull/38)
123
+ - Add scrollbar for content overflow on context card [`#37`](https://github.com/alan-wu/map-sidebar/pull/37)
124
+ - Dynamic components [`#36`](https://github.com/alan-wu/map-sidebar/pull/36)
125
+
126
+ ### Commits
127
+
128
+ - Remove markerLevels.js (not needed) [`bd76e9a`](https://github.com/alan-wu/map-sidebar/commit/bd76e9aabf01adc09bb1cf77ed33c7c3094a750c)
129
+ - Add missing file [`4e98a6e`](https://github.com/alan-wu/map-sidebar/commit/4e98a6ecb62b5ded440d27c3b9213aa304b6bb2b)
130
+ - Add anatomy to the keywords, reformat document [`0f8e867`](https://github.com/alan-wu/map-sidebar/commit/0f8e867a932d74378c07702746656cbc06eaebf5)
131
+
132
+ ## [v1.3.1](https://github.com/alan-wu/map-sidebar/compare/v1.3.0...v1.3.1) - 2022-06-09
133
+
134
+ ### Merged
135
+
136
+ - Fix for context card banners [`#35`](https://github.com/alan-wu/map-sidebar/pull/35)
137
+
138
+ ### Commits
139
+
140
+ - Update gallery. [`06241ae`](https://github.com/alan-wu/map-sidebar/commit/06241aec4646306d534c9bb3b7faa71720f82217)
141
+ - Fix incorrect view url on the context card. [`637d5e0`](https://github.com/alan-wu/map-sidebar/commit/637d5e0d2bfc58ea2dda4c5bc3b68b75f2b8e522)
142
+ - Set a height for dataset card to avoid resizing. [`35b8fc7`](https://github.com/alan-wu/map-sidebar/commit/35b8fc741d49d5f9d5d4ef2e0ac8219d9051769b)
143
+
144
+ ## [v1.3.0](https://github.com/alan-wu/map-sidebar/compare/v1.2.0-beta.11...v1.3.0) - 2022-05-27
145
+
146
+ ### Merged
147
+
148
+ - Image gallery on sidebar [`#34`](https://github.com/alan-wu/map-sidebar/pull/34)
149
+
150
+ ### Commits
151
+
152
+ - Increment version to 1.3.0 [`415916c`](https://github.com/alan-wu/map-sidebar/commit/415916c5ddf0257df5a9b447cf2a37050d2d2765)
153
+ - Set maximum number of downloads in paralle. [`f0d88f4`](https://github.com/alan-wu/map-sidebar/commit/f0d88f413cfbc1aadf4a2c77e3a580efb2ae758b)
154
+ - Support parallel cards loading. Add missing contextual information. [`feb9140`](https://github.com/alan-wu/map-sidebar/commit/feb91406da756ea4b979126ed96b8d84f5b73a7d)
155
+
156
+ ## [v1.2.0-beta.11](https://github.com/alan-wu/map-sidebar/compare/v1.2.0-beta.10...v1.2.0-beta.11) - 2022-05-23
157
+
158
+ ### Commits
159
+
160
+ - Update to gallery 0.3.0-beta.5 [`76f64a1`](https://github.com/alan-wu/map-sidebar/commit/76f64a1737072e370e659d7219fad6988728179d)
161
+
162
+ ## [v1.2.0-beta.10](https://github.com/alan-wu/map-sidebar/compare/1.1.3-fix-0...v1.2.0-beta.10) - 2022-05-18
163
+
164
+ ### Merged
165
+
166
+ - Updated the way to detect a simulation dataset [`#33`](https://github.com/alan-wu/map-sidebar/pull/33)
167
+ - Fix package number being out of date [`#32`](https://github.com/alan-wu/map-sidebar/pull/32)
168
+ - Now populate cards from algolia, then add scicrunch data [`#31`](https://github.com/alan-wu/map-sidebar/pull/31)
169
+ - Contex cards via scicrunch [`#30`](https://github.com/alan-wu/map-sidebar/pull/30)
170
+ - Add hardcoded data and ability to display samples: [`#29`](https://github.com/alan-wu/map-sidebar/pull/29)
171
+ - Contex cards via scicrunch - finishing touches [`#28`](https://github.com/alan-wu/map-sidebar/pull/28)
172
+ - Context cards via scicrunch [`#27`](https://github.com/alan-wu/map-sidebar/pull/27)
173
+ - Fix facets not being passed in emit [`#26`](https://github.com/alan-wu/map-sidebar/pull/26)
174
+ - Fix an issue the auto merge caused [`#25`](https://github.com/alan-wu/map-sidebar/pull/25)
175
+ - Switch to using dois for finding datasets as opposed to discover ids [`#24`](https://github.com/alan-wu/map-sidebar/pull/24)
176
+ - Use the latest version of svg which fix a problem with icons on sparc-app. [`#23`](https://github.com/alan-wu/map-sidebar/pull/23)
177
+ - Algolia search [`#22`](https://github.com/alan-wu/map-sidebar/pull/22)
178
+ - Fix sample size text. [`#21`](https://github.com/alan-wu/map-sidebar/pull/21)
179
+ - Fix facet not set correctly with open search [`#20`](https://github.com/alan-wu/map-sidebar/pull/20)
180
+
181
+ ### Commits
182
+
183
+ - Initial supports for image gallery. [`1a178bd`](https://github.com/alan-wu/map-sidebar/commit/1a178bd86c64b378bd8dbf25574aaa02efe97acf)
184
+ - Initial commit of gallery. [`4f9e96a`](https://github.com/alan-wu/map-sidebar/commit/4f9e96a586a3f1e760331b5c35442552eb2d75bd)
185
+ - Add badges buttons for image gallery filtering. [`a3c2958`](https://github.com/alan-wu/map-sidebar/commit/a3c29580871ff3355ef8897b3e9b4f7b04ae6143)
186
+
187
+ ## [1.1.3-fix-0](https://github.com/alan-wu/map-sidebar/compare/1.0.12...1.1.3-fix-0) - 2022-01-28
188
+
189
+ ### Merged
190
+
191
+ - Integrated features [`#19`](https://github.com/alan-wu/map-sidebar/pull/19)
192
+ - Add published year [`#6`](https://github.com/alan-wu/map-sidebar/pull/6)
193
+ - Remove setinterval, use cascader callback [`#4`](https://github.com/alan-wu/map-sidebar/pull/4)
194
+ - Make labels in sidebar cascader clickable [`#3`](https://github.com/alan-wu/map-sidebar/pull/3)
195
+
196
+ ### Commits
197
+
198
+ - Updated package-lock.json. [`6cc7a9c`](https://github.com/alan-wu/map-sidebar/commit/6cc7a9cd7092ece505585979fb807ee552597290)
199
+ - Merged in simulation branch changes. [`dfb6245`](https://github.com/alan-wu/map-sidebar/commit/dfb6245221cb0d0d93a980703f173077975f7506)
200
+ - Updates to package-lock.json. [`e401cfc`](https://github.com/alan-wu/map-sidebar/commit/e401cfc3718cf3db65608feb5763fc497fb396ca)
201
+
202
+ ## 1.0.12 - 2021-07-15
203
+
204
+ ### Merged
205
+
206
+ - Filters and other fixes [`#18`](https://github.com/alan-wu/map-sidebar/pull/18)
207
+ - Emit event [`#17`](https://github.com/alan-wu/map-sidebar/pull/17)
208
+ - Add check for organ labels [`#15`](https://github.com/alan-wu/map-sidebar/pull/15)
209
+ - Add neuron search [`#14`](https://github.com/alan-wu/map-sidebar/pull/14)
210
+ - Tehsurfer add neuron search [`#1`](https://github.com/alan-wu/map-sidebar/pull/1)
211
+ - Fix label 'Genotype' being wrong [`#13`](https://github.com/alan-wu/map-sidebar/pull/13)
212
+ - Fix a bug when there is less than 2 contributors. [`#11`](https://github.com/alan-wu/map-sidebar/pull/11)
213
+ - Change endpoint to pennsieve. [`#10`](https://github.com/alan-wu/map-sidebar/pull/10)
214
+ - Fix sidebar not searching on load [`#9`](https://github.com/alan-wu/map-sidebar/pull/9)
215
+ - Give the mockup label more meaningful name. [`#8`](https://github.com/alan-wu/map-sidebar/pull/8)
216
+ - small clean up [`#7`](https://github.com/alan-wu/map-sidebar/pull/7)
217
+ - Fix search displaying result from previous search input. [`#5`](https://github.com/alan-wu/map-sidebar/pull/5)
218
+ - Fix sizing with information card [`#4`](https://github.com/alan-wu/map-sidebar/pull/4)
219
+ - Fix images and css breaking mapintegratedvuer [`#3`](https://github.com/alan-wu/map-sidebar/pull/3)
220
+ - Merge in upstream changes. [`#1`](https://github.com/alan-wu/map-sidebar/pull/1)
221
+ - Added tabs and context cards to sidebar [`#2`](https://github.com/alan-wu/map-sidebar/pull/2)
222
+ - Tidy up for releases. [`#1`](https://github.com/alan-wu/map-sidebar/pull/1)
223
+
224
+ ### Commits
225
+
226
+ - Create map-sidebar repo [`ce887ae`](https://github.com/alan-wu/map-sidebar/commit/ce887aec6cef1cc7ee4786117624c8f143ee4411)
227
+ - Change version to 1.0.0. [`a431eed`](https://github.com/alan-wu/map-sidebar/commit/a431eede106aa604be063ab3c71c8382d5b04757)
228
+ - Clean up and small improvements. [`98d19cd`](https://github.com/alan-wu/map-sidebar/commit/98d19cdb59476b0d7ceb3e725ef14d18b61e67ca)