@openneuro/app 4.1.2 → 4.2.3

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 (568) hide show
  1. package/package.json +9 -18
  2. package/src/scripts/common/forms/warn-button.jsx +1 -1
  3. package/src/scripts/{redesign.tsx → index.tsx} +4 -4
  4. package/src/scripts/pages/citation-page.tsx +41 -0
  5. package/src/scripts/refactor_2021/admin/admin.jsx +1 -1
  6. package/src/scripts/refactor_2021/admin/flagged-files.jsx +2 -1
  7. package/src/scripts/refactor_2021/admin/user-tools.tsx +3 -5
  8. package/src/scripts/refactor_2021/admin/users.jsx +7 -10
  9. package/src/scripts/{authentication → refactor_2021/authentication}/__tests__/profile.spec.js +1 -1
  10. package/src/scripts/refactor_2021/containers/footer.tsx +1 -3
  11. package/src/scripts/{datalad/dataset → refactor_2021/dataset/comments}/__tests__/__snapshots__/comment.spec.jsx.snap +0 -8
  12. package/src/scripts/refactor_2021/dataset/comments/__tests__/__snapshots__/comments.spec.jsx.snap +129 -0
  13. package/src/scripts/{datalad/dataset → refactor_2021/dataset/comments}/__tests__/comment.spec.jsx +0 -0
  14. package/src/scripts/{datalad/dataset → refactor_2021/dataset/comments}/__tests__/comments.spec.jsx +0 -0
  15. package/src/scripts/refactor_2021/dataset/dataset-routes.jsx +14 -4
  16. package/src/scripts/{datalad → refactor_2021/dataset}/download/__tests__/__snapshots__/download-command-line.spec.jsx.snap +0 -0
  17. package/src/scripts/{datalad → refactor_2021/dataset}/download/__tests__/__snapshots__/download-link.spec.jsx.snap +645 -105
  18. package/src/scripts/{datalad → refactor_2021/dataset}/download/__tests__/__snapshots__/shell-example.spec.jsx.snap +6 -3
  19. package/src/scripts/{datalad → refactor_2021/dataset}/download/__tests__/download-command-line.spec.jsx +0 -0
  20. package/src/scripts/{datalad → refactor_2021/dataset}/download/__tests__/download-link.spec.jsx +0 -0
  21. package/src/scripts/{datalad → refactor_2021/dataset}/download/__tests__/download-native.spec.js +0 -0
  22. package/src/scripts/{datalad → refactor_2021/dataset}/download/__tests__/shell-example.spec.jsx +0 -0
  23. package/src/scripts/refactor_2021/dataset/download/download-datalad.jsx +45 -10
  24. package/src/scripts/refactor_2021/dataset/draft-container.tsx +13 -22
  25. package/src/scripts/refactor_2021/dataset/files/file-tree.jsx +3 -2
  26. package/src/scripts/refactor_2021/dataset/fragments/__tests__/__snapshots__/cancel-button.spec.tsx.snap +10 -0
  27. package/src/scripts/refactor_2021/dataset/fragments/__tests__/__snapshots__/edit-button.spec.tsx.snap +10 -0
  28. package/src/scripts/refactor_2021/dataset/fragments/__tests__/__snapshots__/edit-list.spec.jsx.snap +24 -0
  29. package/src/scripts/refactor_2021/dataset/fragments/__tests__/__snapshots__/save-button.spec.tsx.snap +10 -0
  30. package/src/scripts/{datalad/fragments/__tests__/__snapshots__/select-input.spec.jsx.snap → refactor_2021/dataset/fragments/__tests__/__snapshots__/select-input.spec.tsx.snap} +0 -0
  31. package/src/scripts/{datalad/fragments/__tests__/cancel-button.spec.jsx → refactor_2021/dataset/fragments/__tests__/cancel-button.spec.tsx} +2 -2
  32. package/src/scripts/{datalad → refactor_2021/dataset}/fragments/__tests__/dataset-citation.spec.jsx +0 -0
  33. package/src/scripts/{datalad/fragments/__tests__/edit-button.spec.jsx → refactor_2021/dataset/fragments/__tests__/edit-button.spec.tsx} +2 -2
  34. package/src/scripts/refactor_2021/dataset/fragments/__tests__/edit-list.spec.jsx +27 -0
  35. package/src/scripts/{datalad/fragments/__tests__/save-button.spec.jsx → refactor_2021/dataset/fragments/__tests__/save-button.spec.tsx} +2 -2
  36. package/src/scripts/{datalad/fragments/__tests__/select-input.spec.jsx → refactor_2021/dataset/fragments/__tests__/select-input.spec.tsx} +0 -0
  37. package/src/scripts/refactor_2021/dataset/mutations/__tests__/__snapshots__/delete.spec.jsx.snap +50 -0
  38. package/src/scripts/{datalad → refactor_2021/dataset}/mutations/__tests__/__snapshots__/description.spec.jsx.snap +0 -0
  39. package/src/scripts/refactor_2021/dataset/mutations/__tests__/__snapshots__/update-permissions.spec.jsx.snap +27 -0
  40. package/src/scripts/{datalad → refactor_2021/dataset}/mutations/__tests__/cache-id.spec.js +0 -0
  41. package/src/scripts/{datalad → refactor_2021/dataset}/mutations/__tests__/delete.spec.jsx +8 -8
  42. package/src/scripts/{datalad → refactor_2021/dataset}/mutations/__tests__/description.spec.jsx +0 -0
  43. package/src/scripts/{datalad/mutations/__tests__/remove-permissions.spec.jsx → refactor_2021/dataset/mutations/__tests__/remove-permissions.spec.tsx} +1 -1
  44. package/src/scripts/refactor_2021/dataset/mutations/__tests__/update-permissions.spec.jsx +28 -0
  45. package/src/scripts/refactor_2021/dataset/mutations/update-file.jsx +2 -2
  46. package/src/scripts/refactor_2021/dataset/routes/download-dataset.tsx +76 -0
  47. package/src/scripts/refactor_2021/dataset/snapshot-container.tsx +4 -2
  48. package/src/scripts/refactor_2021/routes.tsx +1 -1
  49. package/src/scripts/refactor_2021/search/__tests__/search-params-ctx.spec.tsx +20 -0
  50. package/src/scripts/refactor_2021/search/initial-search-params.tsx +7 -7
  51. package/src/scripts/refactor_2021/search/inputs/__tests__/sort-by-select.spec.tsx +83 -0
  52. package/src/scripts/refactor_2021/search/inputs/index.ts +2 -2
  53. package/src/scripts/refactor_2021/search/inputs/{gender-radios.tsx → sex-radios.tsx} +10 -10
  54. package/src/scripts/refactor_2021/search/inputs/sort-by-select.tsx +38 -8
  55. package/src/scripts/refactor_2021/search/search-container.tsx +3 -3
  56. package/src/scripts/refactor_2021/search/search-params-ctx.tsx +3 -3
  57. package/src/scripts/refactor_2021/search/use-search-results.tsx +4 -3
  58. package/src/scripts/refactor_2021/user/api.jsx +11 -6
  59. package/src/server.jsx +1 -5
  60. package/src/ssr.ts +0 -1
  61. package/src/sass/_bootstrap-compass.scss +0 -9
  62. package/src/sass/_bootstrap-mincer.scss +0 -19
  63. package/src/sass/_bootstrap-sprockets.scss +0 -9
  64. package/src/sass/_bootstrap.scss +0 -50
  65. package/src/sass/animate/_attention-seekers/_bounce.scss +0 -15
  66. package/src/sass/animate/_attention-seekers/_flash.scss +0 -14
  67. package/src/sass/animate/_attention-seekers/_pulse.scss +0 -17
  68. package/src/sass/animate/_attention-seekers/_rubberBand.scss +0 -19
  69. package/src/sass/animate/_attention-seekers/_shake.scss +0 -15
  70. package/src/sass/animate/_attention-seekers/_swing.scss +0 -19
  71. package/src/sass/animate/_attention-seekers/_tada.scss +0 -17
  72. package/src/sass/animate/_attention-seekers/_wobble.scss +0 -21
  73. package/src/sass/animate/_attention-seekers/attention-seekers.scss +0 -12
  74. package/src/sass/animate/_bouncing-entrances/_bounceIn.scss +0 -26
  75. package/src/sass/animate/_bouncing-entrances/_bounceInDown.scss +0 -26
  76. package/src/sass/animate/_bouncing-entrances/_bounceInLeft.scss +0 -26
  77. package/src/sass/animate/_bouncing-entrances/_bounceInRight.scss +0 -26
  78. package/src/sass/animate/_bouncing-entrances/_bounceInUp.scss +0 -26
  79. package/src/sass/animate/_bouncing-entrances/bouncing-entrances.scss +0 -9
  80. package/src/sass/animate/_bouncing-exits/_bounceOut.scss +0 -26
  81. package/src/sass/animate/_bouncing-exits/_bounceOutDown.scss +0 -23
  82. package/src/sass/animate/_bouncing-exits/_bounceOutLeft.scss +0 -23
  83. package/src/sass/animate/_bouncing-exits/_bounceOutRight.scss +0 -23
  84. package/src/sass/animate/_bouncing-exits/_bounceOutUp.scss +0 -23
  85. package/src/sass/animate/_bouncing-exits/bouncing-exits.scss +0 -4
  86. package/src/sass/animate/_fading-entrances/_fadeIn.scss +0 -14
  87. package/src/sass/animate/_fading-entrances/_fadeInDown.scss +0 -20
  88. package/src/sass/animate/_fading-entrances/_fadeInDownBig.scss +0 -20
  89. package/src/sass/animate/_fading-entrances/_fadeInLeft.scss +0 -20
  90. package/src/sass/animate/_fading-entrances/_fadeInLeftBig.scss +0 -20
  91. package/src/sass/animate/_fading-entrances/_fadeInRight.scss +0 -20
  92. package/src/sass/animate/_fading-entrances/_fadeInRightBig.scss +0 -20
  93. package/src/sass/animate/_fading-entrances/_fadeInUp.scss +0 -19
  94. package/src/sass/animate/_fading-entrances/_fadeInUpBig.scss +0 -20
  95. package/src/sass/animate/_fading-entrances/fading-entrances.scss +0 -5
  96. package/src/sass/animate/_fading-exits/_fadeOut.scss +0 -14
  97. package/src/sass/animate/_fading-exits/_fadeOutDown.scss +0 -20
  98. package/src/sass/animate/_fading-exits/_fadeOutDownBig.scss +0 -20
  99. package/src/sass/animate/_fading-exits/_fadeOutLeft.scss +0 -20
  100. package/src/sass/animate/_fading-exits/_fadeOutLeftBig.scss +0 -20
  101. package/src/sass/animate/_fading-exits/_fadeOutRight.scss +0 -20
  102. package/src/sass/animate/_fading-exits/_fadeOutRightBig.scss +0 -20
  103. package/src/sass/animate/_fading-exits/_fadeOutUp.scss +0 -20
  104. package/src/sass/animate/_fading-exits/_fadeOutUpBig.scss +0 -20
  105. package/src/sass/animate/_fading-exits/fading-exits.scss +0 -5
  106. package/src/sass/animate/_flippers/_flip.scss +0 -33
  107. package/src/sass/animate/_flippers/_flipInX.scss +0 -26
  108. package/src/sass/animate/_flippers/_flipInY.scss +0 -26
  109. package/src/sass/animate/_flippers/_flipOutX.scss +0 -20
  110. package/src/sass/animate/_flippers/_flipOutY.scss +0 -20
  111. package/src/sass/animate/_flippers/flippers.scss +0 -8
  112. package/src/sass/animate/_lightspeed/_lightSpeedIn.scss +0 -29
  113. package/src/sass/animate/_lightspeed/_lightSpeedOut.scss +0 -21
  114. package/src/sass/animate/_lightspeed/lightspeed.scss +0 -3
  115. package/src/sass/animate/_properties.scss +0 -119
  116. package/src/sass/animate/_rotating-entrances/_rotateIn.scss +0 -22
  117. package/src/sass/animate/_rotating-entrances/_rotateInDownLeft.scss +0 -22
  118. package/src/sass/animate/_rotating-entrances/_rotateInDownRight.scss +0 -22
  119. package/src/sass/animate/_rotating-entrances/_rotateInUpLeft.scss +0 -22
  120. package/src/sass/animate/_rotating-entrances/_rotateInUpRight.scss +0 -22
  121. package/src/sass/animate/_rotating-entrances/rotating-entrances.scss +0 -8
  122. package/src/sass/animate/_rotating-exits/_rotateOut.scss +0 -22
  123. package/src/sass/animate/_rotating-exits/_rotateOutDownLeft.scss +0 -22
  124. package/src/sass/animate/_rotating-exits/_rotateOutDownRight.scss +0 -22
  125. package/src/sass/animate/_rotating-exits/_rotateOutUpLeft.scss +0 -22
  126. package/src/sass/animate/_rotating-exits/_rotateOutUpRight.scss +0 -22
  127. package/src/sass/animate/_rotating-exits/rotating-exits.scss +0 -8
  128. package/src/sass/animate/_sliding-entrances/_slideInDown.scss +0 -19
  129. package/src/sass/animate/_sliding-entrances/_slideInLeft.scss +0 -19
  130. package/src/sass/animate/_sliding-entrances/_slideInRight.scss +0 -42
  131. package/src/sass/animate/_sliding-entrances/_slideInUp.scss +0 -19
  132. package/src/sass/animate/_sliding-entrances/sliding-entrances.scss +0 -7
  133. package/src/sass/animate/_sliding-exits/_slideOutDown.scss +0 -19
  134. package/src/sass/animate/_sliding-exits/_slideOutLeft.scss +0 -19
  135. package/src/sass/animate/_sliding-exits/_slideOutRight.scss +0 -19
  136. package/src/sass/animate/_sliding-exits/_slideOutUp.scss +0 -19
  137. package/src/sass/animate/_sliding-exits/sliding-exits.scss +0 -7
  138. package/src/sass/animate/_specials/_hinge.scss +0 -37
  139. package/src/sass/animate/_specials/_rollIn.scss +0 -20
  140. package/src/sass/animate/_specials/_rollOut.scss +0 -22
  141. package/src/sass/animate/_specials/specials.scss +0 -6
  142. package/src/sass/animate/_zooming-entrances/_zoomIn.scss +0 -19
  143. package/src/sass/animate/_zooming-entrances/_zoomInDown.scss +0 -22
  144. package/src/sass/animate/_zooming-entrances/_zoomInLeft.scss +0 -22
  145. package/src/sass/animate/_zooming-entrances/_zoomInRight.scss +0 -22
  146. package/src/sass/animate/_zooming-entrances/_zoomInUp.scss +0 -22
  147. package/src/sass/animate/_zooming-entrances/zooming-entrances.scss +0 -4
  148. package/src/sass/animate/_zooming-exits/_zoomOut.scss +0 -22
  149. package/src/sass/animate/_zooming-exits/_zoomOutDown.scss +0 -23
  150. package/src/sass/animate/_zooming-exits/_zoomOutLeft.scss +0 -21
  151. package/src/sass/animate/_zooming-exits/_zoomOutRight.scss +0 -21
  152. package/src/sass/animate/_zooming-exits/_zoomOutUp.scss +0 -23
  153. package/src/sass/animate/_zooming-exits/zooming-exits.scss +0 -4
  154. package/src/sass/animate/animate.css +0 -7497
  155. package/src/sass/animate/animate.css.map +0 -7
  156. package/src/sass/animate/animate.min.css +0 -2
  157. package/src/sass/animate/animate.min.css.map +0 -7
  158. package/src/sass/animate/animate.scss +0 -30
  159. package/src/sass/animate/bower.json +0 -22
  160. package/src/sass/bootstrap/_alerts.scss +0 -70
  161. package/src/sass/bootstrap/_badges.scss +0 -68
  162. package/src/sass/bootstrap/_breadcrumbs.scss +0 -26
  163. package/src/sass/bootstrap/_button-groups.scss +0 -243
  164. package/src/sass/bootstrap/_buttons.scss +0 -160
  165. package/src/sass/bootstrap/_carousel.scss +0 -269
  166. package/src/sass/bootstrap/_close.scss +0 -36
  167. package/src/sass/bootstrap/_code.scss +0 -69
  168. package/src/sass/bootstrap/_component-animations.scss +0 -37
  169. package/src/sass/bootstrap/_dropdowns.scss +0 -223
  170. package/src/sass/bootstrap/_forms.scss +0 -613
  171. package/src/sass/bootstrap/_grid.scss +0 -84
  172. package/src/sass/bootstrap/_input-groups.scss +0 -166
  173. package/src/sass/bootstrap/_jumbotron.scss +0 -50
  174. package/src/sass/bootstrap/_labels.scss +0 -66
  175. package/src/sass/bootstrap/_list-group.scss +0 -124
  176. package/src/sass/bootstrap/_media.scss +0 -61
  177. package/src/sass/bootstrap/_mixins.scss +0 -39
  178. package/src/sass/bootstrap/_modals.scss +0 -150
  179. package/src/sass/bootstrap/_navbar.scss +0 -647
  180. package/src/sass/bootstrap/_navs.scss +0 -243
  181. package/src/sass/bootstrap/_normalize.scss +0 -427
  182. package/src/sass/bootstrap/_pager.scss +0 -54
  183. package/src/sass/bootstrap/_pagination.scss +0 -88
  184. package/src/sass/bootstrap/_panels.scss +0 -265
  185. package/src/sass/bootstrap/_popovers.scss +0 -135
  186. package/src/sass/bootstrap/_print.scss +0 -107
  187. package/src/sass/bootstrap/_progress-bars.scss +0 -87
  188. package/src/sass/bootstrap/_responsive-embed.scss +0 -35
  189. package/src/sass/bootstrap/_responsive-utilities.scss +0 -177
  190. package/src/sass/bootstrap/_scaffolding.scss +0 -162
  191. package/src/sass/bootstrap/_tables.scss +0 -234
  192. package/src/sass/bootstrap/_theme.scss +0 -273
  193. package/src/sass/bootstrap/_thumbnails.scss +0 -38
  194. package/src/sass/bootstrap/_tooltip.scss +0 -102
  195. package/src/sass/bootstrap/_type.scss +0 -298
  196. package/src/sass/bootstrap/_utilities.scss +0 -55
  197. package/src/sass/bootstrap/_variables.scss +0 -866
  198. package/src/sass/bootstrap/_wells.scss +0 -29
  199. package/src/sass/bootstrap/float-label.scss +0 -70
  200. package/src/sass/bootstrap/mixins/_alerts.scss +0 -14
  201. package/src/sass/bootstrap/mixins/_background-variant.scss +0 -11
  202. package/src/sass/bootstrap/mixins/_border-radius.scss +0 -18
  203. package/src/sass/bootstrap/mixins/_buttons.scss +0 -52
  204. package/src/sass/bootstrap/mixins/_center-block.scss +0 -7
  205. package/src/sass/bootstrap/mixins/_clearfix.scss +0 -22
  206. package/src/sass/bootstrap/mixins/_forms.scss +0 -88
  207. package/src/sass/bootstrap/mixins/_gradients.scss +0 -58
  208. package/src/sass/bootstrap/mixins/_grid-framework.scss +0 -81
  209. package/src/sass/bootstrap/mixins/_grid.scss +0 -122
  210. package/src/sass/bootstrap/mixins/_hide-text.scss +0 -21
  211. package/src/sass/bootstrap/mixins/_image.scss +0 -33
  212. package/src/sass/bootstrap/mixins/_labels.scss +0 -12
  213. package/src/sass/bootstrap/mixins/_list-group.scss +0 -31
  214. package/src/sass/bootstrap/mixins/_nav-divider.scss +0 -10
  215. package/src/sass/bootstrap/mixins/_nav-vertical-align.scss +0 -9
  216. package/src/sass/bootstrap/mixins/_opacity.scss +0 -8
  217. package/src/sass/bootstrap/mixins/_pagination.scss +0 -23
  218. package/src/sass/bootstrap/mixins/_panels.scss +0 -24
  219. package/src/sass/bootstrap/mixins/_progress-bar.scss +0 -10
  220. package/src/sass/bootstrap/mixins/_reset-filter.scss +0 -8
  221. package/src/sass/bootstrap/mixins/_resize.scss +0 -6
  222. package/src/sass/bootstrap/mixins/_responsive-visibility.scss +0 -21
  223. package/src/sass/bootstrap/mixins/_size.scss +0 -10
  224. package/src/sass/bootstrap/mixins/_tab-focus.scss +0 -9
  225. package/src/sass/bootstrap/mixins/_table-row.scss +0 -28
  226. package/src/sass/bootstrap/mixins/_text-emphasis.scss +0 -11
  227. package/src/sass/bootstrap/mixins/_text-overflow.scss +0 -8
  228. package/src/sass/bootstrap/mixins/_vendor-prefixes.scss +0 -222
  229. package/src/sass/crn_app/_admin.admin.scss +0 -205
  230. package/src/sass/crn_app/_admin.graphs.scss +0 -51
  231. package/src/sass/crn_app/_admin.tools.scss +0 -24
  232. package/src/sass/crn_app/_api.scss +0 -65
  233. package/src/sass/crn_app/_bootstrap.overrides.scss +0 -54
  234. package/src/sass/crn_app/_colors.scss +0 -88
  235. package/src/sass/crn_app/_common.click-to-edit.scss +0 -187
  236. package/src/sass/crn_app/_common.modals.scss +0 -686
  237. package/src/sass/crn_app/_common.pagination.scss +0 -41
  238. package/src/sass/crn_app/_common.papaya.scss +0 -348
  239. package/src/sass/crn_app/_common.progress-bar.scss +0 -26
  240. package/src/sass/crn_app/_common.spinner.scss +0 -63
  241. package/src/sass/crn_app/_common.status.scss +0 -103
  242. package/src/sass/crn_app/_common.tooltip.scss +0 -22
  243. package/src/sass/crn_app/_common.typeahead.scss +0 -31
  244. package/src/sass/crn_app/_common.variables.scss +0 -16
  245. package/src/sass/crn_app/_dashboard.datasets.scss +0 -588
  246. package/src/sass/crn_app/_dataset.comments.scss +0 -201
  247. package/src/sass/crn_app/_dataset.dataset.scss +0 -161
  248. package/src/sass/crn_app/_dataset.file-tree.scss +0 -277
  249. package/src/sass/crn_app/_dataset.jobs.scss +0 -701
  250. package/src/sass/crn_app/_dataset.sidebar.scss +0 -265
  251. package/src/sass/crn_app/_dataset.tools.scss +0 -118
  252. package/src/sass/crn_app/_elements-wrappers.scss +0 -870
  253. package/src/sass/crn_app/_faq.scss +0 -37
  254. package/src/sass/crn_app/_frontPage.scss +0 -569
  255. package/src/sass/crn_app/_nav.navbar.scss +0 -387
  256. package/src/sass/crn_app/_theme.scss +0 -87
  257. package/src/sass/crn_app/_upload.upload.scss +0 -393
  258. package/src/sass/crn_app/_upload.validation.scss +0 -210
  259. package/src/sass/draft/draft.scss +0 -11
  260. package/src/sass/draft/rich-editor.scss +0 -73
  261. package/src/sass/font-awesome/_animated.scss +0 -34
  262. package/src/sass/font-awesome/_bordered-pulled.scss +0 -25
  263. package/src/sass/font-awesome/_core.scss +0 -12
  264. package/src/sass/font-awesome/_fixed-width.scss +0 -6
  265. package/src/sass/font-awesome/_font-awesome.scss +0 -17
  266. package/src/sass/font-awesome/_icons.scss +0 -697
  267. package/src/sass/font-awesome/_larger.scss +0 -13
  268. package/src/sass/font-awesome/_list.scss +0 -19
  269. package/src/sass/font-awesome/_mixins.scss +0 -26
  270. package/src/sass/font-awesome/_path.scss +0 -15
  271. package/src/sass/font-awesome/_rotated-flipped.scss +0 -20
  272. package/src/sass/font-awesome/_stacked.scss +0 -20
  273. package/src/sass/font-awesome/_variables.scss +0 -713
  274. package/src/sass/main.scss +0 -317
  275. package/src/sass/pre-refactor-with-wrapper-main.scss +0 -1549
  276. package/src/scripts/admin/__tests__/__snapshots__/exports.spec.jsx.snap +0 -112
  277. package/src/scripts/admin/__tests__/exports.spec.jsx +0 -15
  278. package/src/scripts/admin/__tests__/users.spec.jsx +0 -15
  279. package/src/scripts/admin/admin.jsx +0 -53
  280. package/src/scripts/admin/flagged-files.jsx +0 -178
  281. package/src/scripts/admin/user-fragment.ts +0 -14
  282. package/src/scripts/admin/user-tools.tsx +0 -83
  283. package/src/scripts/admin/users.jsx +0 -224
  284. package/src/scripts/authentication/admin-user.jsx +0 -23
  285. package/src/scripts/authentication/buttons.jsx +0 -26
  286. package/src/scripts/authentication/globus-button.jsx +0 -39
  287. package/src/scripts/authentication/google-button.jsx +0 -32
  288. package/src/scripts/authentication/logged-in.jsx +0 -12
  289. package/src/scripts/authentication/logged-out.jsx +0 -12
  290. package/src/scripts/authentication/loginCheck.js +0 -7
  291. package/src/scripts/authentication/orcid-button.jsx +0 -32
  292. package/src/scripts/authentication/withProfile.jsx +0 -22
  293. package/src/scripts/classic.tsx +0 -18
  294. package/src/scripts/common/forms/file-select.tsx +0 -71
  295. package/src/scripts/common/partials/__tests__/__snapshots__/footer.spec.jsx.snap +0 -42
  296. package/src/scripts/common/partials/__tests__/__snapshots__/metric.spec.jsx.snap +0 -101
  297. package/src/scripts/common/partials/__tests__/footer.spec.jsx +0 -10
  298. package/src/scripts/common/partials/__tests__/metric.spec.jsx +0 -31
  299. package/src/scripts/common/partials/footer.jsx +0 -40
  300. package/src/scripts/common/partials/login.jsx +0 -99
  301. package/src/scripts/common/partials/metric.jsx +0 -73
  302. package/src/scripts/common/partials/spinner.jsx +0 -34
  303. package/src/scripts/common/partials/status.jsx +0 -96
  304. package/src/scripts/common/partials/timeout.jsx +0 -47
  305. package/src/scripts/common/partials/tooltip.jsx +0 -36
  306. package/src/scripts/components/__tests__/dropdown-button.spec.tsx +0 -49
  307. package/src/scripts/components/dropdown-button.tsx +0 -42
  308. package/src/scripts/components/feature-toggle.tsx +0 -19
  309. package/src/scripts/components/panel-group.tsx +0 -24
  310. package/src/scripts/components/panel.tsx +0 -42
  311. package/src/scripts/datalad/__tests__/snapshotVersion.spec.js +0 -21
  312. package/src/scripts/datalad/comments/__tests__/comment-editor.spec.jsx +0 -19
  313. package/src/scripts/datalad/comments/block-style-controls.jsx +0 -46
  314. package/src/scripts/datalad/comments/comment-editor.jsx +0 -79
  315. package/src/scripts/datalad/comments/inline-style-controls.jsx +0 -34
  316. package/src/scripts/datalad/comments/style-button.jsx +0 -28
  317. package/src/scripts/datalad/dashboard/__tests__/__snapshots__/dashboard.spec.jsx.snap +0 -163
  318. package/src/scripts/datalad/dashboard/__tests__/dashboard.spec.jsx +0 -21
  319. package/src/scripts/datalad/dashboard/dashboard.jsx +0 -54
  320. package/src/scripts/datalad/dashboard/datasets/__tests__/__snapshots__/dataset-filter.spec.jsx.snap +0 -20
  321. package/src/scripts/datalad/dashboard/datasets/__tests__/__snapshots__/dataset-row-skeleton.spec.jsx.snap +0 -13
  322. package/src/scripts/datalad/dashboard/datasets/__tests__/__snapshots__/dataset-row.spec.jsx.snap +0 -65
  323. package/src/scripts/datalad/dashboard/datasets/__tests__/__snapshots__/dataset-sorter.spec.jsx.snap +0 -14
  324. package/src/scripts/datalad/dashboard/datasets/__tests__/__snapshots__/dataset-virtual-scroller.spec.jsx.snap +0 -17
  325. package/src/scripts/datalad/dashboard/datasets/__tests__/__snapshots__/uploaded.spec.jsx.snap +0 -27
  326. package/src/scripts/datalad/dashboard/datasets/__tests__/dataset-filter.spec.jsx +0 -67
  327. package/src/scripts/datalad/dashboard/datasets/__tests__/dataset-query.spec.jsx +0 -72
  328. package/src/scripts/datalad/dashboard/datasets/__tests__/dataset-row-skeleton.spec.jsx +0 -9
  329. package/src/scripts/datalad/dashboard/datasets/__tests__/dataset-row.spec.jsx +0 -53
  330. package/src/scripts/datalad/dashboard/datasets/__tests__/dataset-sorter.spec.jsx +0 -69
  331. package/src/scripts/datalad/dashboard/datasets/__tests__/dataset-virtual-scroller.spec.jsx +0 -65
  332. package/src/scripts/datalad/dashboard/datasets/__tests__/uploaded.spec.jsx +0 -17
  333. package/src/scripts/datalad/dashboard/datasets/dataset-filter.jsx +0 -78
  334. package/src/scripts/datalad/dashboard/datasets/dataset-query.jsx +0 -102
  335. package/src/scripts/datalad/dashboard/datasets/dataset-row-error-boundary.jsx +0 -52
  336. package/src/scripts/datalad/dashboard/datasets/dataset-row-skeleton.jsx +0 -10
  337. package/src/scripts/datalad/dashboard/datasets/dataset-row.jsx +0 -58
  338. package/src/scripts/datalad/dashboard/datasets/dataset-sorter.jsx +0 -148
  339. package/src/scripts/datalad/dashboard/datasets/dataset-statuses.jsx +0 -44
  340. package/src/scripts/datalad/dashboard/datasets/dataset-tab.jsx +0 -192
  341. package/src/scripts/datalad/dashboard/datasets/dataset-virtual-scroller.jsx +0 -126
  342. package/src/scripts/datalad/dashboard/datasets/row-height.jsx +0 -7
  343. package/src/scripts/datalad/dashboard/datasets/uploaded.jsx +0 -33
  344. package/src/scripts/datalad/dataset/__tests__/__snapshots__/comments.spec.jsx.snap +0 -137
  345. package/src/scripts/datalad/dataset/__tests__/__snapshots__/dataset-page.spec.jsx.snap +0 -69
  346. package/src/scripts/datalad/dataset/__tests__/__snapshots__/dataset-query.spec.jsx.snap +0 -15
  347. package/src/scripts/datalad/dataset/__tests__/__snapshots__/left-siderbar.spec.jsx.snap +0 -85
  348. package/src/scripts/datalad/dataset/__tests__/dataset-page.spec.jsx +0 -33
  349. package/src/scripts/datalad/dataset/__tests__/dataset-query.spec.jsx +0 -20
  350. package/src/scripts/datalad/dataset/__tests__/left-siderbar.spec.jsx +0 -106
  351. package/src/scripts/datalad/dataset/comment.jsx +0 -90
  352. package/src/scripts/datalad/dataset/comments.jsx +0 -83
  353. package/src/scripts/datalad/dataset/dataset-description.jsx +0 -111
  354. package/src/scripts/datalad/dataset/dataset-main.jsx +0 -29
  355. package/src/scripts/datalad/dataset/dataset-page.jsx +0 -63
  356. package/src/scripts/datalad/dataset/dataset-query.jsx +0 -192
  357. package/src/scripts/datalad/dataset/dataset.jsx +0 -22
  358. package/src/scripts/datalad/dataset/delete-page.tsx +0 -92
  359. package/src/scripts/datalad/dataset/left-sidebar.jsx +0 -109
  360. package/src/scripts/datalad/download/__tests__/__snapshots__/download-dataset.spec.jsx.snap +0 -7
  361. package/src/scripts/datalad/download/__tests__/__snapshots__/download-tool.spec.jsx.snap +0 -26
  362. package/src/scripts/datalad/download/__tests__/download-dataset.spec.jsx +0 -19
  363. package/src/scripts/datalad/download/__tests__/download-tool.spec.jsx +0 -19
  364. package/src/scripts/datalad/download/download-command-line.jsx +0 -43
  365. package/src/scripts/datalad/download/download-datalad.jsx +0 -58
  366. package/src/scripts/datalad/download/download-dataset.jsx +0 -61
  367. package/src/scripts/datalad/download/download-link.jsx +0 -41
  368. package/src/scripts/datalad/download/download-native.js +0 -118
  369. package/src/scripts/datalad/download/download-query.js +0 -22
  370. package/src/scripts/datalad/download/download-s3.jsx +0 -46
  371. package/src/scripts/datalad/download/download-tool.jsx +0 -44
  372. package/src/scripts/datalad/download/native-file-toast.jsx +0 -90
  373. package/src/scripts/datalad/download/shell-example.jsx +0 -9
  374. package/src/scripts/datalad/download/track-download.js +0 -15
  375. package/src/scripts/datalad/fragments/__tests__/__snapshots__/cancel-button.spec.jsx.snap +0 -21
  376. package/src/scripts/datalad/fragments/__tests__/__snapshots__/dataset-analytics.spec.jsx.snap +0 -41
  377. package/src/scripts/datalad/fragments/__tests__/__snapshots__/dataset-authors.spec.jsx.snap +0 -13
  378. package/src/scripts/datalad/fragments/__tests__/__snapshots__/dataset-readme.spec.jsx.snap +0 -49
  379. package/src/scripts/datalad/fragments/__tests__/__snapshots__/dataset-title.spec.jsx.snap +0 -7
  380. package/src/scripts/datalad/fragments/__tests__/__snapshots__/dataset-tools.spec.jsx.snap +0 -346
  381. package/src/scripts/datalad/fragments/__tests__/__snapshots__/dataset-uploaded.spec.jsx.snap +0 -7
  382. package/src/scripts/datalad/fragments/__tests__/__snapshots__/edit-button.spec.jsx.snap +0 -21
  383. package/src/scripts/datalad/fragments/__tests__/__snapshots__/edit-list.spec.jsx.snap +0 -34
  384. package/src/scripts/datalad/fragments/__tests__/__snapshots__/edit-readme.spec.jsx.snap +0 -3
  385. package/src/scripts/datalad/fragments/__tests__/__snapshots__/save-button.spec.jsx.snap +0 -21
  386. package/src/scripts/datalad/fragments/__tests__/dataset-analytics.spec.jsx +0 -16
  387. package/src/scripts/datalad/fragments/__tests__/dataset-authors.spec.jsx +0 -22
  388. package/src/scripts/datalad/fragments/__tests__/dataset-prominent-links.spec.jsx +0 -32
  389. package/src/scripts/datalad/fragments/__tests__/dataset-readme.spec.jsx +0 -10
  390. package/src/scripts/datalad/fragments/__tests__/dataset-summary.spec.jsx +0 -55
  391. package/src/scripts/datalad/fragments/__tests__/dataset-title.spec.jsx +0 -10
  392. package/src/scripts/datalad/fragments/__tests__/dataset-tools.spec.jsx +0 -55
  393. package/src/scripts/datalad/fragments/__tests__/dataset-uploaded.spec.jsx +0 -16
  394. package/src/scripts/datalad/fragments/__tests__/edit-list.spec.jsx +0 -25
  395. package/src/scripts/datalad/fragments/__tests__/edit-readme.spec.jsx +0 -10
  396. package/src/scripts/datalad/fragments/cancel-button.jsx +0 -24
  397. package/src/scripts/datalad/fragments/copyable-tooltip.jsx +0 -82
  398. package/src/scripts/datalad/fragments/dataset-analytics.jsx +0 -27
  399. package/src/scripts/datalad/fragments/dataset-authors.jsx +0 -16
  400. package/src/scripts/datalad/fragments/dataset-citation.jsx +0 -77
  401. package/src/scripts/datalad/fragments/dataset-files.jsx +0 -50
  402. package/src/scripts/datalad/fragments/dataset-git-access.jsx +0 -56
  403. package/src/scripts/datalad/fragments/dataset-git-hash.jsx +0 -27
  404. package/src/scripts/datalad/fragments/dataset-history.jsx +0 -95
  405. package/src/scripts/datalad/fragments/dataset-modified.jsx +0 -17
  406. package/src/scripts/datalad/fragments/dataset-prominent-links.jsx +0 -129
  407. package/src/scripts/datalad/fragments/dataset-readme.jsx +0 -42
  408. package/src/scripts/datalad/fragments/dataset-summary.jsx +0 -230
  409. package/src/scripts/datalad/fragments/dataset-title.jsx +0 -10
  410. package/src/scripts/datalad/fragments/dataset-tools.jsx +0 -190
  411. package/src/scripts/datalad/fragments/dataset-uploaded.jsx +0 -25
  412. package/src/scripts/datalad/fragments/edit-button.jsx +0 -24
  413. package/src/scripts/datalad/fragments/edit-description-field.jsx +0 -54
  414. package/src/scripts/datalad/fragments/edit-description-list.jsx +0 -49
  415. package/src/scripts/datalad/fragments/edit-list.jsx +0 -82
  416. package/src/scripts/datalad/fragments/edit-readme.jsx +0 -44
  417. package/src/scripts/datalad/fragments/incomplete-dataset.jsx +0 -23
  418. package/src/scripts/datalad/fragments/metadata-tool.jsx +0 -34
  419. package/src/scripts/datalad/fragments/number-input.tsx +0 -126
  420. package/src/scripts/datalad/fragments/save-button.jsx +0 -24
  421. package/src/scripts/datalad/fragments/select-input.tsx +0 -247
  422. package/src/scripts/datalad/fragments/share-dataset-button.jsx +0 -32
  423. package/src/scripts/datalad/fragments/text-array-input.tsx +0 -119
  424. package/src/scripts/datalad/fragments/text-input.tsx +0 -206
  425. package/src/scripts/datalad/mutations/__tests__/__snapshots__/comment.spec.jsx.snap +0 -5
  426. package/src/scripts/datalad/mutations/__tests__/__snapshots__/delete.spec.jsx.snap +0 -181
  427. package/src/scripts/datalad/mutations/__tests__/__snapshots__/manage-permissions.spec.jsx.snap +0 -361
  428. package/src/scripts/datalad/mutations/__tests__/__snapshots__/subscribe-to-newsletter.spec.jsx.snap +0 -83
  429. package/src/scripts/datalad/mutations/__tests__/__snapshots__/update-file.spec.jsx.snap +0 -25
  430. package/src/scripts/datalad/mutations/__tests__/__snapshots__/update-permissions.spec.jsx.snap +0 -361
  431. package/src/scripts/datalad/mutations/__tests__/comment.spec.jsx +0 -154
  432. package/src/scripts/datalad/mutations/__tests__/manage-permissions.spec.jsx +0 -21
  433. package/src/scripts/datalad/mutations/__tests__/subscribe-to-newsletter.spec.jsx +0 -10
  434. package/src/scripts/datalad/mutations/__tests__/update-file.spec.jsx +0 -15
  435. package/src/scripts/datalad/mutations/__tests__/update-permissions.spec.jsx +0 -21
  436. package/src/scripts/datalad/mutations/add-metadata.jsx +0 -164
  437. package/src/scripts/datalad/mutations/comment.jsx +0 -164
  438. package/src/scripts/datalad/mutations/delete-dataset-form.jsx +0 -82
  439. package/src/scripts/datalad/mutations/description.jsx +0 -129
  440. package/src/scripts/datalad/mutations/flag-annex-object.jsx +0 -62
  441. package/src/scripts/datalad/mutations/metadata-form.jsx +0 -388
  442. package/src/scripts/datalad/mutations/readme.jsx +0 -53
  443. package/src/scripts/datalad/mutations/remove-annex-object.jsx +0 -71
  444. package/src/scripts/datalad/mutations/subscribe-to-newsletter.jsx +0 -26
  445. package/src/scripts/datalad/mutations/update-file.jsx +0 -51
  446. package/src/scripts/datalad/routes/__tests__/__snapshots__/manage-permissions.spec.jsx.snap +0 -159
  447. package/src/scripts/datalad/routes/__tests__/__snapshots__/snapshot.spec.jsx.snap +0 -31
  448. package/src/scripts/datalad/routes/__tests__/dataset-content.spec.jsx +0 -108
  449. package/src/scripts/datalad/routes/__tests__/file-display.spec.jsx +0 -22
  450. package/src/scripts/datalad/routes/__tests__/manage-permissions.spec.jsx +0 -101
  451. package/src/scripts/datalad/routes/__tests__/snapshot.spec.jsx +0 -49
  452. package/src/scripts/datalad/routes/admin-datalad.jsx +0 -45
  453. package/src/scripts/datalad/routes/admin-exports.jsx +0 -125
  454. package/src/scripts/datalad/routes/dataset-content.jsx +0 -198
  455. package/src/scripts/datalad/routes/dataset-routes.jsx +0 -162
  456. package/src/scripts/datalad/routes/file-display.jsx +0 -84
  457. package/src/scripts/datalad/routes/manage-permissions.jsx +0 -128
  458. package/src/scripts/datalad/routes/snapshot-content.jsx +0 -135
  459. package/src/scripts/datalad/routes/snapshot.jsx +0 -131
  460. package/src/scripts/datalad/snapshotVersion.js +0 -7
  461. package/src/scripts/datalad/validation/validation-panel.jsx +0 -48
  462. package/src/scripts/datalad/validation/validation-status.jsx +0 -120
  463. package/src/scripts/datalad/validation/validation.jsx +0 -40
  464. package/src/scripts/dataset/dataset.metrics.jsx +0 -61
  465. package/src/scripts/file-tree/__tests__/__snapshots__/file-tree-unloaded-directory.spec.jsx.snap +0 -26
  466. package/src/scripts/file-tree/__tests__/__snapshots__/file-tree.spec.jsx.snap +0 -18
  467. package/src/scripts/file-tree/__tests__/__snapshots__/file.spec.jsx.snap +0 -81
  468. package/src/scripts/file-tree/__tests__/file-tree-loading.spec.jsx +0 -18
  469. package/src/scripts/file-tree/__tests__/file-tree-unloaded-directory.spec.jsx +0 -74
  470. package/src/scripts/file-tree/__tests__/file-tree.spec.jsx +0 -94
  471. package/src/scripts/file-tree/__tests__/file-viewer-type.spec.jsx +0 -15
  472. package/src/scripts/file-tree/__tests__/file.spec.jsx +0 -44
  473. package/src/scripts/file-tree/__tests__/flat-to-tree.spec.js +0 -55
  474. package/src/scripts/file-tree/file-tree-loading.jsx +0 -64
  475. package/src/scripts/file-tree/file-tree-unloaded-directory.jsx +0 -108
  476. package/src/scripts/file-tree/file-tree.jsx +0 -133
  477. package/src/scripts/file-tree/file-view.jsx +0 -31
  478. package/src/scripts/file-tree/file-viewer-type.jsx +0 -45
  479. package/src/scripts/file-tree/file.jsx +0 -123
  480. package/src/scripts/file-tree/files.jsx +0 -126
  481. package/src/scripts/file-tree/flat-to-tree.js +0 -49
  482. package/src/scripts/file-tree/viewers/__tests__/__snapshots__/file-viewer-json.spec.jsx.snap +0 -51
  483. package/src/scripts/file-tree/viewers/__tests__/file-viewer-json.spec.jsx +0 -15
  484. package/src/scripts/file-tree/viewers/__tests__/parse-tabular.spec.js +0 -24
  485. package/src/scripts/file-tree/viewers/file-viewer-csv.jsx +0 -16
  486. package/src/scripts/file-tree/viewers/file-viewer-html.jsx +0 -20
  487. package/src/scripts/file-tree/viewers/file-viewer-json.jsx +0 -50
  488. package/src/scripts/file-tree/viewers/file-viewer-nifti.jsx +0 -11
  489. package/src/scripts/file-tree/viewers/file-viewer-table.jsx +0 -34
  490. package/src/scripts/file-tree/viewers/file-viewer-text.jsx +0 -13
  491. package/src/scripts/file-tree/viewers/file-viewer-tsv.jsx +0 -16
  492. package/src/scripts/file-tree/viewers/parse-tabular.js +0 -18
  493. package/src/scripts/front-page/__tests__/__snapshots__/email-subscription-box.spec.jsx.snap +0 -190
  494. package/src/scripts/front-page/__tests__/__snapshots__/front-page-stats.spec.jsx.snap +0 -29
  495. package/src/scripts/front-page/__tests__/__snapshots__/front-page-top-datasets.spec.jsx.snap +0 -464
  496. package/src/scripts/front-page/__tests__/dataset-count.spec.jsx +0 -33
  497. package/src/scripts/front-page/__tests__/email-subscription-box.spec.jsx +0 -57
  498. package/src/scripts/front-page/__tests__/front-page-stats.spec.jsx +0 -10
  499. package/src/scripts/front-page/__tests__/front-page-top-datasets.spec.jsx +0 -27
  500. package/src/scripts/front-page/__tests__/participant-count.spec.jsx +0 -31
  501. package/src/scripts/front-page/dataset-count.jsx +0 -29
  502. package/src/scripts/front-page/email-subscription-box.jsx +0 -131
  503. package/src/scripts/front-page/front-page-additional-info.jsx +0 -15
  504. package/src/scripts/front-page/front-page-collaborators.jsx +0 -117
  505. package/src/scripts/front-page/front-page-stats.jsx +0 -71
  506. package/src/scripts/front-page/front-page-support.jsx +0 -30
  507. package/src/scripts/front-page/front-page-tabs.jsx +0 -166
  508. package/src/scripts/front-page/front-page-top-datasets.jsx +0 -203
  509. package/src/scripts/front-page/front-page.jsx +0 -95
  510. package/src/scripts/front-page/participant-count.jsx +0 -25
  511. package/src/scripts/hooks/use-measure.js +0 -15
  512. package/src/scripts/hooks/use-previous.js +0 -7
  513. package/src/scripts/index.jsx +0 -16
  514. package/src/scripts/nav/assets/brand_mark.png +0 -0
  515. package/src/scripts/nav/assets/favicon-upload.png +0 -0
  516. package/src/scripts/nav/assets/logo_app.png +0 -0
  517. package/src/scripts/nav/navbar.jsx +0 -144
  518. package/src/scripts/nav/navbar.navmenu.jsx +0 -106
  519. package/src/scripts/nav/navbar.usermenu.jsx +0 -52
  520. package/src/scripts/pages/citation-page.jsx +0 -43
  521. package/src/scripts/pet/__tests__/__snapshots__/dummy.spec.jsx.snap +0 -70
  522. package/src/scripts/pet/__tests__/dummy.spec.jsx +0 -10
  523. package/src/scripts/pet/dummy.jsx +0 -61
  524. package/src/scripts/refactor_2021/dataset/dataset-pre-refactor-container.tsx +0 -12
  525. package/src/scripts/refactor_2021/dataset/routes/download-dataset.jsx +0 -70
  526. package/src/scripts/refactor_2021/redesign-form.jsx +0 -427
  527. package/src/scripts/routes.tsx +0 -36
  528. package/src/scripts/search/search-input.tsx +0 -42
  529. package/src/scripts/search/search-results.tsx +0 -114
  530. package/src/scripts/styles/capitalized.jsx +0 -6
  531. package/src/scripts/styles/uppercase.jsx +0 -6
  532. package/src/scripts/uploader/__tests__/add-path-to-files.spec.js +0 -29
  533. package/src/scripts/uploader/__tests__/file-upload.spec.js +0 -116
  534. package/src/scripts/uploader/__tests__/upload-disclaimer.spec.jsx +0 -67
  535. package/src/scripts/uploader/__tests__/upload-mutation.spec.js +0 -57
  536. package/src/scripts/uploader/__tests__/uploader.spec.js +0 -31
  537. package/src/scripts/uploader/add-path-to-files.js +0 -19
  538. package/src/scripts/uploader/file-upload.js +0 -88
  539. package/src/scripts/uploader/upload-button.jsx +0 -18
  540. package/src/scripts/uploader/upload-disclaimer.jsx +0 -92
  541. package/src/scripts/uploader/upload-file-status.jsx +0 -20
  542. package/src/scripts/uploader/upload-issues.jsx +0 -131
  543. package/src/scripts/uploader/upload-metadata.jsx +0 -59
  544. package/src/scripts/uploader/upload-mutation.js +0 -111
  545. package/src/scripts/uploader/upload-progress-button.jsx +0 -20
  546. package/src/scripts/uploader/upload-progress-class.js +0 -36
  547. package/src/scripts/uploader/upload-progress.jsx +0 -15
  548. package/src/scripts/uploader/upload-rename.jsx +0 -33
  549. package/src/scripts/uploader/upload-resume.jsx +0 -35
  550. package/src/scripts/uploader/upload-select.jsx +0 -29
  551. package/src/scripts/uploader/upload-status.jsx +0 -23
  552. package/src/scripts/uploader/upload-step.jsx +0 -48
  553. package/src/scripts/uploader/uploader-context.js +0 -6
  554. package/src/scripts/uploader/uploader-location.js +0 -5
  555. package/src/scripts/uploader/uploader-modal.jsx +0 -27
  556. package/src/scripts/uploader/uploader-setup-routes.jsx +0 -52
  557. package/src/scripts/uploader/uploader-status-routes.jsx +0 -30
  558. package/src/scripts/uploader/uploader-view.jsx +0 -45
  559. package/src/scripts/uploader/uploader.jsx +0 -388
  560. package/src/scripts/user/__mocks__/user.store.js +0 -1
  561. package/src/scripts/user/api.jsx +0 -132
  562. package/src/scripts/user/avatar.jsx +0 -40
  563. package/src/scripts/utils/crn.js +0 -15
  564. package/src/scripts/utils/request.js +0 -107
  565. package/src/scripts/utils/user.js +0 -18
  566. package/src/scripts/validation/validation-results.issues.issue.jsx +0 -90
  567. package/src/scripts/validation/validation-results.issues.jsx +0 -79
  568. package/src/scripts/validation/validation-results.jsx +0 -96
@@ -1,243 +0,0 @@
1
- //
2
- // Navs
3
- // --------------------------------------------------
4
-
5
-
6
- // Base class
7
- // --------------------------------------------------
8
-
9
- .nav {
10
- margin-bottom: 0;
11
- padding-left: 0; // Override default ul/ol
12
- list-style: none;
13
- @include clearfix;
14
-
15
- > li {
16
- position: relative;
17
- display: block;
18
-
19
- > a {
20
- position: relative;
21
- display: inline-block;
22
- padding: $nav-link-padding;
23
- font-weight: 400;
24
- &:hover,
25
- &:focus {
26
- text-decoration: none;
27
- background-color: $nav-link-hover-bg;
28
- }
29
- }
30
-
31
- // Disabled state sets text to gray and nukes hover/tab effects
32
- &.disabled > a {
33
- color: $nav-disabled-link-color;
34
-
35
- &:hover,
36
- &:focus {
37
- color: $nav-disabled-link-hover-color;
38
- text-decoration: none;
39
- background-color: transparent;
40
- cursor: $cursor-disabled;
41
- }
42
- }
43
- }
44
-
45
- // Open dropdowns
46
- .open > a {
47
- &,
48
- &:hover,
49
- &:focus {
50
- background-color: $nav-link-hover-bg;
51
- border-color: $link-color;
52
- }
53
- }
54
-
55
- // Nav dividers (deprecated with v3.0.1)
56
- //
57
- // This should have been removed in v3 with the dropping of `.nav-list`, but
58
- // we missed it. We don't currently support this anywhere, but in the interest
59
- // of maintaining backward compatibility in case you use it, it's deprecated.
60
- .nav-divider {
61
- @include nav-divider;
62
- }
63
-
64
- // Prevent IE8 from misplacing imgs
65
- //
66
- // See https://github.com/h5bp/html5-boilerplate/issues/984#issuecomment-3985989
67
- > li > a > img {
68
- max-width: none;
69
- }
70
- }
71
-
72
-
73
- // Tabs
74
- // -------------------------
75
-
76
- // Give the tabs something to sit on
77
- .nav-tabs {
78
- border-bottom: 1px solid $nav-tabs-border-color;
79
- > li {
80
- float: left;
81
- // Make the list-items overlay the bottom border
82
- margin-bottom: -1px;
83
-
84
- // Actual tabs (as links)
85
- > a {
86
- margin-right: 2px;
87
- line-height: $line-height-base;
88
- border: 1px solid transparent;
89
- border-radius: $border-radius-base $border-radius-base 0 0;
90
- &:hover {
91
- border-color: $nav-tabs-link-hover-border-color $nav-tabs-link-hover-border-color $nav-tabs-border-color;
92
- }
93
- }
94
-
95
- // Active state, and its :hover to override normal :hover
96
- &.active > a {
97
- &,
98
- &:hover,
99
- &:focus {
100
- color: $nav-tabs-active-link-hover-color;
101
- background-color: $nav-tabs-active-link-hover-bg;
102
- border: 1px solid $nav-tabs-active-link-hover-border-color;
103
- border-bottom-color: transparent;
104
- cursor: default;
105
- }
106
- }
107
- }
108
- // pulling this in mainly for less shorthand
109
- &.nav-justified {
110
- @extend .nav-justified;
111
- @extend .nav-tabs-justified;
112
- }
113
- }
114
-
115
-
116
- // Pills
117
- // -------------------------
118
- .nav-pills {
119
- > li {
120
- float: left;
121
-
122
- // Links rendered as pills
123
- > a {
124
- border-radius: $nav-pills-border-radius;
125
- }
126
- + li {
127
- margin-left: 2px;
128
- }
129
-
130
- // Active state
131
- &.active > a {
132
- &,
133
- &:hover,
134
- &:focus {
135
- color: $nav-pills-active-link-hover-color;
136
- background-color: $nav-pills-active-link-hover-bg;
137
- }
138
- }
139
- }
140
- }
141
-
142
-
143
- // Stacked pills
144
- .nav-stacked {
145
- > li {
146
- float: none;
147
- + li {
148
- margin-top: 2px;
149
- margin-left: 0; // no need for this gap between nav items
150
- }
151
- }
152
- }
153
-
154
-
155
- // Nav variations
156
- // --------------------------------------------------
157
-
158
- // Justified nav links
159
- // -------------------------
160
-
161
- .nav-justified {
162
- width: 100%;
163
-
164
- > li {
165
- float: none;
166
- > a {
167
- text-align: center;
168
- margin-bottom: 5px;
169
- }
170
- }
171
-
172
- > .dropdown .dropdown-menu {
173
- top: auto;
174
- left: auto;
175
- }
176
-
177
- @media (min-width: $screen-sm-min) {
178
- > li {
179
- display: table-cell;
180
- width: 1%;
181
- > a {
182
- margin-bottom: 0;
183
- }
184
- }
185
- }
186
- }
187
-
188
- // Move borders to anchors instead of bottom of list
189
- //
190
- // Mixin for adding on top the shared `.nav-justified` styles for our tabs
191
- .nav-tabs-justified {
192
- border-bottom: 0;
193
-
194
- > li > a {
195
- // Override margin from .nav-tabs
196
- margin-right: 0;
197
- border-radius: $border-radius-base;
198
- }
199
-
200
- > .active > a,
201
- > .active > a:hover,
202
- > .active > a:focus {
203
- border: 1px solid $nav-tabs-justified-link-border-color;
204
- }
205
-
206
- @media (min-width: $screen-sm-min) {
207
- > li > a {
208
- border-bottom: 1px solid $nav-tabs-justified-link-border-color;
209
- border-radius: $border-radius-base $border-radius-base 0 0;
210
- }
211
- > .active > a,
212
- > .active > a:hover,
213
- > .active > a:focus {
214
- border-bottom-color: $nav-tabs-justified-active-link-border-color;
215
- }
216
- }
217
- }
218
-
219
-
220
- // Tabbable tabs
221
- // -------------------------
222
-
223
- // Hide tabbable panes to start, show them when `.active`
224
- .tab-content {
225
- > .tab-pane {
226
- display: none;
227
- }
228
- > .active {
229
- display: block;
230
- }
231
- }
232
-
233
-
234
- // Dropdowns
235
- // -------------------------
236
-
237
- // Specific dropdowns
238
- .nav-tabs .dropdown-menu {
239
- // make dropdown border overlap tab border
240
- margin-top: -1px;
241
- // Remove the top rounded corners here since there is a hard edge above the menu
242
- @include border-top-radius(0);
243
- }
@@ -1,427 +0,0 @@
1
- /*! normalize.css v3.0.2 | MIT License | git.io/normalize */
2
-
3
- //
4
- // 1. Set default font family to sans-serif.
5
- // 2. Prevent iOS text size adjust after orientation change, without disabling
6
- // user zoom.
7
- //
8
-
9
- html {
10
- font-family: sans-serif; // 1
11
- -ms-text-size-adjust: 100%; // 2
12
- -webkit-text-size-adjust: 100%; // 2
13
- }
14
-
15
- //
16
- // Remove default margin.
17
- //
18
-
19
- body {
20
- margin: 0;
21
- }
22
-
23
- // HTML5 display definitions
24
- // ==========================================================================
25
-
26
- //
27
- // Correct `block` display not defined for any HTML5 element in IE 8/9.
28
- // Correct `block` display not defined for `details` or `summary` in IE 10/11
29
- // and Firefox.
30
- // Correct `block` display not defined for `main` in IE 11.
31
- //
32
-
33
- article,
34
- aside,
35
- details,
36
- figcaption,
37
- figure,
38
- footer,
39
- header,
40
- hgroup,
41
- main,
42
- menu,
43
- nav,
44
- section,
45
- summary {
46
- display: block;
47
- }
48
-
49
- //
50
- // 1. Correct `inline-block` display not defined in IE 8/9.
51
- // 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
52
- //
53
-
54
- audio,
55
- canvas,
56
- progress,
57
- video {
58
- display: inline-block; // 1
59
- vertical-align: baseline; // 2
60
- }
61
-
62
- //
63
- // Prevent modern browsers from displaying `audio` without controls.
64
- // Remove excess height in iOS 5 devices.
65
- //
66
-
67
- audio:not([controls]) {
68
- display: none;
69
- height: 0;
70
- }
71
-
72
- //
73
- // Address `[hidden]` styling not present in IE 8/9/10.
74
- // Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
75
- //
76
-
77
- [hidden],
78
- template {
79
- display: none;
80
- }
81
-
82
- // Links
83
- // ==========================================================================
84
-
85
- //
86
- // Remove the gray background color from active links in IE 10.
87
- //
88
-
89
- a {
90
- background-color: transparent;
91
- }
92
-
93
- //
94
- // Improve readability when focused and also mouse hovered in all browsers.
95
- //
96
-
97
- a:active,
98
- a:hover {
99
- outline: 0;
100
- }
101
-
102
- // Text-level semantics
103
- // ==========================================================================
104
-
105
- //
106
- // Address styling not present in IE 8/9/10/11, Safari, and Chrome.
107
- //
108
-
109
- abbr[title] {
110
- border-bottom: 1px dotted;
111
- }
112
-
113
- //
114
- // Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
115
- //
116
-
117
- b,
118
- strong {
119
- font-weight: bold;
120
- }
121
-
122
- //
123
- // Address styling not present in Safari and Chrome.
124
- //
125
-
126
- dfn {
127
- font-style: italic;
128
- }
129
-
130
- //
131
- // Address variable `h1` font-size and margin within `section` and `article`
132
- // contexts in Firefox 4+, Safari, and Chrome.
133
- //
134
-
135
- h1 {
136
- font-size: 2em;
137
- margin: 0.67em 0;
138
- }
139
-
140
- //
141
- // Address styling not present in IE 8/9.
142
- //
143
-
144
- mark {
145
- background: #ff0;
146
- color: #000;
147
- }
148
-
149
- //
150
- // Address inconsistent and variable font size in all browsers.
151
- //
152
-
153
- small {
154
- font-size: 80%;
155
- }
156
-
157
- //
158
- // Prevent `sub` and `sup` affecting `line-height` in all browsers.
159
- //
160
-
161
- sub,
162
- sup {
163
- font-size: 75%;
164
- line-height: 0;
165
- position: relative;
166
- vertical-align: baseline;
167
- }
168
-
169
- sup {
170
- top: -0.5em;
171
- }
172
-
173
- sub {
174
- bottom: -0.25em;
175
- }
176
-
177
- // Embedded content
178
- // ==========================================================================
179
-
180
- //
181
- // Remove border when inside `a` element in IE 8/9/10.
182
- //
183
-
184
- img {
185
- border: 0;
186
- }
187
-
188
- //
189
- // Correct overflow not hidden in IE 9/10/11.
190
- //
191
-
192
- svg:not(:root) {
193
- overflow: hidden;
194
- }
195
-
196
- // Grouping content
197
- // ==========================================================================
198
-
199
- //
200
- // Address margin not present in IE 8/9 and Safari.
201
- //
202
-
203
- figure {
204
- margin: 1em 40px;
205
- }
206
-
207
- //
208
- // Address differences between Firefox and other browsers.
209
- //
210
-
211
- hr {
212
- -moz-box-sizing: content-box;
213
- box-sizing: content-box;
214
- height: 0;
215
- }
216
-
217
- //
218
- // Contain overflow in all browsers.
219
- //
220
-
221
- pre {
222
- overflow: auto;
223
- }
224
-
225
- //
226
- // Address odd `em`-unit font size rendering in all browsers.
227
- //
228
-
229
- code,
230
- kbd,
231
- pre,
232
- samp {
233
- font-family: monospace, monospace;
234
- font-size: 1em;
235
- }
236
-
237
- // Forms
238
- // ==========================================================================
239
-
240
- //
241
- // Known limitation: by default, Chrome and Safari on OS X allow very limited
242
- // styling of `select`, unless a `border` property is set.
243
- //
244
-
245
- //
246
- // 1. Correct color not being inherited.
247
- // Known issue: affects color of disabled elements.
248
- // 2. Correct font properties not being inherited.
249
- // 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
250
- //
251
-
252
- button,
253
- input,
254
- optgroup,
255
- select,
256
- textarea {
257
- color: inherit; // 1
258
- font: inherit; // 2
259
- margin: 0; // 3
260
- }
261
-
262
- //
263
- // Address `overflow` set to `hidden` in IE 8/9/10/11.
264
- //
265
-
266
- button {
267
- overflow: visible;
268
- }
269
-
270
- //
271
- // Address inconsistent `text-transform` inheritance for `button` and `select`.
272
- // All other form control elements do not inherit `text-transform` values.
273
- // Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
274
- // Correct `select` style inheritance in Firefox.
275
- //
276
-
277
- button,
278
- select {
279
- text-transform: none;
280
- }
281
-
282
- //
283
- // 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
284
- // and `video` controls.
285
- // 2. Correct inability to style clickable `input` types in iOS.
286
- // 3. Improve usability and consistency of cursor style between image-type
287
- // `input` and others.
288
- //
289
-
290
- button,
291
- html input[type="button"], // 1
292
- input[type="reset"],
293
- input[type="submit"] {
294
- -webkit-appearance: button; // 2
295
- cursor: pointer; // 3
296
- }
297
-
298
- //
299
- // Re-set default cursor for disabled elements.
300
- //
301
-
302
- button[disabled],
303
- html input[disabled] {
304
- cursor: default;
305
- }
306
-
307
- //
308
- // Remove inner padding and border in Firefox 4+.
309
- //
310
-
311
- button::-moz-focus-inner,
312
- input::-moz-focus-inner {
313
- border: 0;
314
- padding: 0;
315
- }
316
-
317
- //
318
- // Address Firefox 4+ setting `line-height` on `input` using `!important` in
319
- // the UA stylesheet.
320
- //
321
-
322
- input {
323
- line-height: normal;
324
- }
325
-
326
- //
327
- // It's recommended that you don't attempt to style these elements.
328
- // Firefox's implementation doesn't respect box-sizing, padding, or width.
329
- //
330
- // 1. Address box sizing set to `content-box` in IE 8/9/10.
331
- // 2. Remove excess padding in IE 8/9/10.
332
- //
333
-
334
- input[type="checkbox"],
335
- input[type="radio"] {
336
- box-sizing: border-box; // 1
337
- padding: 0; // 2
338
- }
339
-
340
- //
341
- // Fix the cursor style for Chrome's increment/decrement buttons. For certain
342
- // `font-size` values of the `input`, it causes the cursor style of the
343
- // decrement button to change from `default` to `text`.
344
- //
345
-
346
- input[type="number"]::-webkit-inner-spin-button,
347
- input[type="number"]::-webkit-outer-spin-button {
348
- height: auto;
349
- }
350
-
351
- //
352
- // 1. Address `appearance` set to `searchfield` in Safari and Chrome.
353
- // 2. Address `box-sizing` set to `border-box` in Safari and Chrome
354
- // (include `-moz` to future-proof).
355
- //
356
-
357
- input[type="search"] {
358
- -webkit-appearance: textfield; // 1
359
- -moz-box-sizing: content-box;
360
- -webkit-box-sizing: content-box; // 2
361
- box-sizing: content-box;
362
- }
363
-
364
- //
365
- // Remove inner padding and search cancel button in Safari and Chrome on OS X.
366
- // Safari (but not Chrome) clips the cancel button when the search input has
367
- // padding (and `textfield` appearance).
368
- //
369
-
370
- input[type="search"]::-webkit-search-cancel-button,
371
- input[type="search"]::-webkit-search-decoration {
372
- -webkit-appearance: none;
373
- }
374
-
375
- //
376
- // Define consistent border, margin, and padding.
377
- //
378
-
379
- fieldset {
380
- border: 1px solid #c0c0c0;
381
- margin: 0 2px;
382
- padding: 0.35em 0.625em 0.75em;
383
- }
384
-
385
- //
386
- // 1. Correct `color` not being inherited in IE 8/9/10/11.
387
- // 2. Remove padding so people aren't caught out if they zero out fieldsets.
388
- //
389
-
390
- legend {
391
- border: 0; // 1
392
- padding: 0; // 2
393
- }
394
-
395
- //
396
- // Remove default vertical scrollbar in IE 8/9/10/11.
397
- //
398
-
399
- textarea {
400
- overflow: auto;
401
- }
402
-
403
- //
404
- // Don't inherit the `font-weight` (applied by a rule above).
405
- // NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
406
- //
407
-
408
- optgroup {
409
- font-weight: bold;
410
- }
411
-
412
- // Tables
413
- // ==========================================================================
414
-
415
- //
416
- // Remove most spacing between table cells.
417
- //
418
-
419
- table {
420
- border-collapse: collapse;
421
- border-spacing: 0;
422
- }
423
-
424
- td,
425
- th {
426
- padding: 0;
427
- }
@@ -1,54 +0,0 @@
1
- //
2
- // Pager pagination
3
- // --------------------------------------------------
4
-
5
-
6
- .pager {
7
- padding-left: 0;
8
- margin: $line-height-computed 0;
9
- list-style: none;
10
- text-align: center;
11
- @include clearfix;
12
- li {
13
- display: inline;
14
- > a,
15
- > span {
16
- display: inline-block;
17
- padding: 5px 14px;
18
- background-color: $pager-bg;
19
- border: 1px solid $pager-border;
20
- border-radius: $pager-border-radius;
21
- }
22
-
23
- > a:hover,
24
- > a:focus {
25
- text-decoration: none;
26
- background-color: $pager-hover-bg;
27
- }
28
- }
29
-
30
- .next {
31
- > a,
32
- > span {
33
- float: right;
34
- }
35
- }
36
-
37
- .previous {
38
- > a,
39
- > span {
40
- float: left;
41
- }
42
- }
43
-
44
- .disabled {
45
- > a,
46
- > a:hover,
47
- > a:focus,
48
- > span {
49
- color: $pager-disabled-color;
50
- background-color: $pager-bg;
51
- cursor: $cursor-disabled;
52
- }
53
- }
54
- }