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