@abi-software/map-side-bar 1.5.4 → 1.6.0

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