@verdaccio/ui-components 3.0.0-next.2 → 4.0.0-next-8.1

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 (490) hide show
  1. package/.eslintrc +1 -1
  2. package/CHANGELOG.md +91 -0
  3. package/build/AppTest/AppRoute.js +34 -0
  4. package/build/AppTest/pages/Front/Home.js +9 -0
  5. package/build/AppTest/pages/Front/index.js +14 -0
  6. package/build/AppTest/pages/Version/Version.js +31 -0
  7. package/build/AppTest/pages/Version/index.js +14 -0
  8. package/build/Theme/ResetStyles.js +5 -6
  9. package/build/Theme/StyleBaseline.js +2 -3
  10. package/build/Theme/ThemeProvider.js +4 -5
  11. package/build/Theme/colors.js +1 -2
  12. package/build/Theme/index.js +3 -3
  13. package/build/Theme/theme.js +17 -7
  14. package/build/__mocks__/react-markdown.js +1 -1
  15. package/build/components/ActionBar/ActionBar.js +11 -10
  16. package/build/components/ActionBar/ActionBarAction.js +15 -19
  17. package/build/components/ActionBar/index.js +1 -1
  18. package/build/components/Author/Author.js +15 -45
  19. package/build/components/Author/index.js +1 -1
  20. package/build/components/Author/styles.js +6 -11
  21. package/build/components/CopyClipboard/CopyToClipBoard.js +4 -5
  22. package/build/components/CopyClipboard/index.js +1 -1
  23. package/build/components/CopyClipboard/utils.js +3 -12
  24. package/build/components/Dependencies/Dependencies.js +31 -58
  25. package/build/components/Dependencies/DependencyBlock.js +102 -0
  26. package/build/components/Dependencies/index.js +1 -1
  27. package/build/components/Dependencies/utits.js +10 -0
  28. package/build/components/Deprecated/Deprecated.js +2 -3
  29. package/build/components/Deprecated/index.js +1 -1
  30. package/build/components/Developers/DeveloperType.js +12 -0
  31. package/build/components/Developers/Developers.js +30 -39
  32. package/build/components/Developers/Title.js +8 -14
  33. package/build/components/Developers/get-unique-developer-values.js +1 -2
  34. package/build/components/Developers/index.js +4 -4
  35. package/build/components/Distribution/Dist.js +6 -7
  36. package/build/components/Distribution/index.js +1 -1
  37. package/build/components/Distribution/styles.js +17 -37
  38. package/build/components/Engines/Engines.js +10 -6
  39. package/build/components/Engines/index.js +1 -1
  40. package/build/components/Engines/styles.js +12 -17
  41. package/build/components/ErrorBoundary/ErrorBoundary.js +2 -2
  42. package/build/components/ErrorBoundary/index.js +1 -1
  43. package/build/components/Forbidden/Forbidden.js +75 -0
  44. package/build/components/Forbidden/index.js +14 -0
  45. package/build/components/FundButton/FundButton.js +11 -14
  46. package/build/components/FundButton/index.js +1 -1
  47. package/build/components/HeaderInfoDialog/HeaderInfoDialog.js +5 -5
  48. package/build/components/HeaderInfoDialog/index.js +1 -1
  49. package/build/components/Heading/Heading.js +5 -6
  50. package/build/components/Heading/index.js +1 -1
  51. package/build/components/Help/Help.js +4 -5
  52. package/build/components/Help/index.js +1 -1
  53. package/build/components/Help/styles.js +2 -3
  54. package/build/components/Icons/DevsIcons/CommonJS.js +2 -13
  55. package/build/components/Icons/DevsIcons/ES6Module.js +3 -14
  56. package/build/components/Icons/DevsIcons/Git.js +2 -13
  57. package/build/components/Icons/DevsIcons/NodeJS.js +2 -13
  58. package/build/components/Icons/DevsIcons/TypeScript.js +2 -13
  59. package/build/components/Icons/Earth.js +3 -4
  60. package/build/components/Icons/FileBinary.js +14 -9
  61. package/build/components/Icons/Law.js +15 -10
  62. package/build/components/Icons/License.js +3 -4
  63. package/build/components/Icons/License.js.map +1 -1
  64. package/build/components/Icons/Managers/Npm.js +2 -13
  65. package/build/components/Icons/Managers/Pnpm.js +2 -13
  66. package/build/components/Icons/Managers/Yarn.js +2 -13
  67. package/build/components/Icons/SvgIcon.js +3 -4
  68. package/build/components/Icons/Time.js +3 -4
  69. package/build/components/Icons/Version.js +3 -4
  70. package/build/components/Install/Install.js +32 -32
  71. package/build/components/Install/InstallListItem.js +21 -23
  72. package/build/components/Install/index.js +1 -1
  73. package/build/components/Keywords/KeywordListItems.js +34 -0
  74. package/build/components/Keywords/Keywords.js +38 -0
  75. package/build/components/Keywords/index.js +14 -0
  76. package/build/components/Label/Label.js +7 -11
  77. package/build/components/Label/index.js +1 -1
  78. package/build/components/Link/Link.js +5 -19
  79. package/build/components/Link/index.js +2 -2
  80. package/build/components/LinkExternal/LinkExternal.js +32 -0
  81. package/build/components/LinkExternal/index.js +14 -0
  82. package/build/components/Loading/Loading.js +2 -3
  83. package/build/components/Loading/Spinner/Spinner.js +3 -4
  84. package/build/components/Loading/Spinner/index.js +1 -1
  85. package/build/components/Loading/index.js +1 -1
  86. package/build/components/Loading/styles.js +7 -8
  87. package/build/components/LoginDialog/LoginDialog.js +16 -6
  88. package/build/components/LoginDialog/LoginDialogCloseButton.js +5 -5
  89. package/build/components/LoginDialog/LoginDialogForm.js +9 -23
  90. package/build/components/LoginDialog/LoginDialogFormError.js +10 -10
  91. package/build/components/LoginDialog/LoginDialogHeader.js +8 -9
  92. package/build/components/LoginDialog/index.js +1 -1
  93. package/build/components/Logo/Logo.js +17 -11
  94. package/build/components/Logo/index.js +1 -1
  95. package/build/components/MenuItem/MenuItem.js +5 -6
  96. package/build/components/MenuItem/index.js +1 -1
  97. package/build/components/NoItems/NoItems.js +2 -3
  98. package/build/components/NoItems/index.js +1 -1
  99. package/build/components/NotFound/NotFound.js +21 -20
  100. package/build/components/NotFound/index.js +1 -1
  101. package/build/components/Package/Package.js +50 -45
  102. package/build/components/Package/index.js +2 -2
  103. package/build/components/Package/styles.js +67 -95
  104. package/build/components/PackageList/PackageList.js +2 -3
  105. package/build/components/PackageList/index.js +1 -1
  106. package/build/components/Person/Person.js +48 -0
  107. package/build/components/Person/PersonTooltip.js +22 -0
  108. package/build/components/Person/index.js +14 -0
  109. package/build/components/Person/utils.js +17 -0
  110. package/build/components/RawViewer/RawViewer.js +13 -8
  111. package/build/components/RawViewer/index.js +1 -1
  112. package/build/components/Readme/Readme.js +46 -11
  113. package/build/components/Readme/Readme.js.map +1 -1
  114. package/build/components/Readme/Readme.spec.js +20 -1
  115. package/build/components/Readme/Readme.spec.js.map +1 -1
  116. package/build/components/Readme/{github-markdown-dark.css → github-markdown.css} +266 -83
  117. package/build/components/Readme/index.js +1 -1
  118. package/build/components/Readme/utils.js +14 -17
  119. package/build/components/RegistryInfoDialog/RegistryInfoDialog.js +2 -3
  120. package/build/components/RegistryInfoDialog/index.js +1 -1
  121. package/build/components/RegistryInfoDialog/styles.js +15 -19
  122. package/build/components/Repository/Repository.js +24 -41
  123. package/build/components/Repository/index.js +1 -1
  124. package/build/components/Search/AutoComplete/AutoComplete.js +4 -5
  125. package/build/components/Search/AutoComplete/index.js +1 -1
  126. package/build/components/Search/AutoComplete/styles.js +6 -45
  127. package/build/components/Search/Search.js +22 -25
  128. package/build/components/Search/SearchItem.js +64 -56
  129. package/build/components/Search/index.js +1 -1
  130. package/build/components/Search/styles.js +31 -39
  131. package/build/components/Search/utils.js +23 -0
  132. package/build/components/SettingsMenu/SettingsMenu.js +35 -13
  133. package/build/components/SettingsMenu/index.js +1 -1
  134. package/build/components/SideBarTitle/SideBarTitle.js +104 -0
  135. package/build/components/SideBarTitle/index.js +14 -0
  136. package/build/components/{SideBarTittle → SideBarTitle}/utils.js +2 -3
  137. package/build/components/TextField/TextField.js +5 -6
  138. package/build/components/TextField/index.js +1 -1
  139. package/build/components/UpLinks/UpLinks.js +38 -10
  140. package/build/components/UpLinks/UplinkLink.js +22 -0
  141. package/build/components/UpLinks/index.js +1 -1
  142. package/build/components/UpLinks/styles.js +13 -18
  143. package/build/components/Versions/HistoryList.js +12 -9
  144. package/build/components/Versions/TagList.js +10 -7
  145. package/build/components/Versions/Versions.js +69 -16
  146. package/build/components/Versions/index.js +1 -1
  147. package/build/components/Versions/styles.js +5 -7
  148. package/build/hooks/index.js +1 -1
  149. package/build/hooks/useLocalStorage.js +1 -2
  150. package/build/hooks/useOnClickOutside.js +1 -2
  151. package/build/index.js +40 -8
  152. package/build/layouts/Version/Version.js +2 -3
  153. package/build/layouts/Version/index.js +1 -1
  154. package/build/providers/AppConfigurationProvider/AppConfigurationProvider.js +8 -10
  155. package/build/providers/AppConfigurationProvider/index.js +2 -2
  156. package/build/providers/PersistenceSettingProvider/PersistenceSettingProvider.js +5 -5
  157. package/build/providers/PersistenceSettingProvider/index.js +2 -2
  158. package/build/providers/TranslatorProvider/TranslatorProvider.js +5 -7
  159. package/build/providers/TranslatorProvider/TranslatorProvider.spec.js +3 -3
  160. package/build/providers/TranslatorProvider/index.js +2 -2
  161. package/build/providers/VersionProvider/VersionProvider.js +5 -10
  162. package/build/providers/VersionProvider/index.js +2 -2
  163. package/build/sections/Detail/ContainerContent.js +5 -7
  164. package/build/sections/Detail/Detail.js +13 -12
  165. package/build/sections/Detail/ReadmeSection.js +2 -3
  166. package/build/sections/Detail/Tabs.js +6 -8
  167. package/build/sections/Detail/index.js +1 -1
  168. package/build/sections/Footer/Footer.js +41 -13
  169. package/build/sections/Footer/index.js +1 -1
  170. package/build/sections/Footer/styles.js +26 -28
  171. package/build/sections/Header/Header.js +6 -7
  172. package/build/sections/Header/HeaderGreetings.js +2 -3
  173. package/build/sections/Header/HeaderLeft.js +16 -20
  174. package/build/sections/Header/HeaderMenu.js +3 -4
  175. package/build/sections/Header/HeaderRight.js +16 -8
  176. package/build/sections/Header/HeaderSettingsDialog.js +7 -11
  177. package/build/sections/Header/HeaderToolTip.js +2 -3
  178. package/build/sections/Header/HeaderToolTipIcon.js +4 -5
  179. package/build/sections/Header/LanguageSwitch.js +12 -17
  180. package/build/sections/Header/RegistryInfoContent/RegistryInfoContent.js +14 -25
  181. package/build/sections/Header/RegistryInfoContent/index.js +1 -1
  182. package/build/sections/Header/RegistryInfoContent/styles.js +4 -6
  183. package/build/sections/Header/index.js +1 -1
  184. package/build/sections/Header/styles.js +68 -126
  185. package/build/sections/Home/Home.js +4 -8
  186. package/build/sections/Home/index.js +1 -1
  187. package/build/sections/SideBar/Sidebar.js +27 -35
  188. package/build/sections/SideBar/index.js +1 -1
  189. package/build/sections/index.js +1 -1
  190. package/build/src/AppTest/App.stories.d.ts +8 -0
  191. package/build/src/AppTest/AppRoute.d.ts +3 -0
  192. package/build/src/AppTest/pages/Front/Home.d.ts +2 -0
  193. package/build/src/AppTest/pages/Front/index.d.ts +1 -0
  194. package/build/src/AppTest/pages/Version/Version.d.ts +3 -0
  195. package/build/src/AppTest/pages/Version/index.d.ts +1 -0
  196. package/build/src/Theme/ThemeProvider.test.d.ts +1 -0
  197. package/build/src/components/Author/Author.d.ts +0 -5
  198. package/build/src/components/CopyClipboard/CopyToClipBoard.test.d.ts +1 -0
  199. package/build/src/components/Dependencies/DependencyBlock.d.ts +16 -0
  200. package/build/src/components/Dependencies/DependencyBlock.test.d.ts +1 -0
  201. package/build/src/components/Dependencies/utits.d.ts +3 -0
  202. package/build/src/components/Developers/DeveloperType.d.ts +4 -0
  203. package/build/src/components/Developers/Developers.d.ts +1 -4
  204. package/build/src/components/Developers/Title.d.ts +1 -4
  205. package/build/src/components/Developers/index.d.ts +2 -1
  206. package/build/src/components/Distribution/styles.d.ts +0 -1
  207. package/build/src/components/ErrorBoundary/ErrorBoundary.test.d.ts +1 -0
  208. package/build/src/components/Forbidden/Forbidden.d.ts +3 -0
  209. package/build/src/components/Forbidden/Forbidden.test.d.ts +1 -0
  210. package/build/src/components/Forbidden/index.d.ts +1 -0
  211. package/build/src/components/HeaderInfoDialog/HeaderInfoDialog.test.d.ts +1 -0
  212. package/build/src/components/Heading/Heading.test.d.ts +1 -0
  213. package/build/src/components/Icons/Icons.test.d.ts +1 -0
  214. package/build/src/components/Install/InstallListItem.d.ts +1 -1
  215. package/build/src/components/Keywords/KeywordListItems.d.ts +5 -0
  216. package/build/src/components/Keywords/Keywords.d.ts +6 -0
  217. package/build/src/components/Keywords/Keywords.stories.d.ts +5 -0
  218. package/build/src/components/Keywords/Keywords.test.d.ts +1 -0
  219. package/build/src/components/Keywords/index.d.ts +1 -0
  220. package/build/src/components/Link/Link.d.ts +0 -3
  221. package/build/src/components/Link/Link.test.d.ts +1 -0
  222. package/build/src/components/Link/index.d.ts +1 -1
  223. package/build/src/components/LinkExternal/LinkExternal.d.ts +3 -0
  224. package/build/src/components/LinkExternal/LinkExternal.test.d.ts +1 -0
  225. package/build/src/components/LinkExternal/index.d.ts +1 -0
  226. package/build/src/components/Loading/styles.d.ts +2 -2
  227. package/build/src/components/Logo/Logo.d.ts +1 -0
  228. package/build/src/components/Logo/Logo.stories.d.ts +5 -0
  229. package/build/src/components/Package/Package.d.ts +1 -1
  230. package/build/src/components/Package/styles.d.ts +7 -15
  231. package/build/src/components/Person/Person.d.ts +9 -0
  232. package/build/src/components/Person/Person.test.d.ts +1 -0
  233. package/build/src/components/Person/PersonTooltip.d.ts +6 -0
  234. package/build/src/components/Person/index.d.ts +1 -0
  235. package/build/src/components/Person/utils.d.ts +3 -0
  236. package/build/src/components/Readme/Readme.d.ts +1 -1
  237. package/build/src/components/RegistryInfoDialog/styles.d.ts +1 -1
  238. package/build/src/components/Search/AutoComplete/styles.d.ts +1 -9
  239. package/build/src/components/Search/SearchItem.d.ts +1 -1
  240. package/build/src/components/Search/utils.d.ts +1 -0
  241. package/build/src/components/SettingsMenu/SettingsMenu.d.ts +2 -2
  242. package/build/src/components/SettingsMenu/SettingsMenu.test.d.ts +1 -0
  243. package/build/src/components/SideBarTitle/index.d.ts +1 -0
  244. package/build/src/components/UpLinks/UplinkLink.d.ts +6 -0
  245. package/build/src/components/UpLinks/styles.d.ts +2 -2
  246. package/build/src/components/Versions/Versions.d.ts +1 -0
  247. package/build/src/components/Versions/styles.d.ts +2 -2
  248. package/build/src/index.d.ts +6 -2
  249. package/build/src/sections/Detail/Detail.stories.d.ts +1 -0
  250. package/build/src/sections/Detail/Tabs.d.ts +1 -0
  251. package/build/src/sections/Footer/styles.d.ts +5 -5
  252. package/build/src/sections/Header/RegistryInfoContent/RegistryInfoContent.d.ts +3 -3
  253. package/build/src/sections/Header/RegistryInfoContent/styles.d.ts +2 -2
  254. package/build/src/sections/Header/styles.d.ts +4 -11
  255. package/build/src/sections/Home/Home.test.d.ts +1 -0
  256. package/build/src/store/models/manifest.d.ts +11 -0
  257. package/build/src/store/models/routes.d.ts +8 -0
  258. package/build/src/store/models/utils.d.ts +1 -0
  259. package/build/src/types/packageMeta.d.ts +7 -5
  260. package/build/src/utils/__partials__/packageMeta.d.ts +0 -1
  261. package/build/src/utils/routes.d.ts +1 -0
  262. package/build/src/utils/utils.d.ts +1 -0
  263. package/build/store/api.js +16 -12
  264. package/build/store/index.js +1 -1
  265. package/build/store/models/configuration.js +5 -6
  266. package/build/store/models/download.js +2 -3
  267. package/build/store/models/index.js +1 -2
  268. package/build/store/models/login.js +7 -7
  269. package/build/store/models/manifest.js +27 -8
  270. package/build/store/models/packages.js +6 -5
  271. package/build/store/models/routes.js +18 -0
  272. package/build/store/models/search.js +7 -6
  273. package/build/store/models/utils.js +10 -0
  274. package/build/store/storage.js +2 -3
  275. package/build/store/store.js +2 -3
  276. package/build/test/i18n-config.js +2 -3
  277. package/build/test/test-react-testing-library.js +1 -1
  278. package/build/utils/__partials__/packageMeta.js +1 -3
  279. package/build/utils/index.js +3 -3
  280. package/build/utils/loadable.js +2 -2
  281. package/build/utils/routes.js +2 -2
  282. package/build/utils/token.js +1 -1
  283. package/build/utils/url.js +1 -1
  284. package/build/utils/utils.js +24 -6
  285. package/package.json +33 -32
  286. package/src/AppTest/App.stories.tsx +32 -0
  287. package/src/AppTest/AppRoute.test.tsx +65 -0
  288. package/src/AppTest/AppRoute.tsx +42 -0
  289. package/src/AppTest/pages/Front/Home.ts +3 -0
  290. package/src/AppTest/pages/Front/index.ts +1 -0
  291. package/src/AppTest/pages/Version/Version.tsx +28 -0
  292. package/src/AppTest/pages/Version/index.ts +1 -0
  293. package/src/Theme/ThemeProvider.test.tsx +27 -0
  294. package/src/Theme/theme.ts +12 -5
  295. package/src/components/ActionBar/ActionBar.test.tsx +36 -15
  296. package/src/components/ActionBar/ActionBar.tsx +1 -1
  297. package/src/components/ActionBar/ActionBarAction.tsx +8 -5
  298. package/src/components/Author/Author.test.tsx +7 -1
  299. package/src/components/Author/Author.tsx +3 -41
  300. package/src/components/CopyClipboard/CopyToClipBoard.test.tsx +23 -0
  301. package/src/components/CopyClipboard/utils.ts +2 -13
  302. package/src/components/Dependencies/Dependencies.stories.tsx +11 -11
  303. package/src/components/Dependencies/Dependencies.test.tsx +1 -11
  304. package/src/components/Dependencies/Dependencies.tsx +30 -69
  305. package/src/components/Dependencies/DependencyBlock.test.tsx +46 -0
  306. package/src/components/Dependencies/DependencyBlock.tsx +83 -0
  307. package/src/components/Dependencies/utits.ts +3 -0
  308. package/src/components/Developers/DeveloperType.tsx +4 -0
  309. package/src/components/Developers/Developers.test.tsx +37 -10
  310. package/src/components/Developers/Developers.tsx +13 -13
  311. package/src/components/Developers/Title.tsx +1 -5
  312. package/src/components/Developers/index.ts +2 -1
  313. package/src/components/Distribution/Dist.test.tsx +1 -1
  314. package/src/components/Distribution/Dist.tsx +2 -4
  315. package/src/components/Distribution/styles.ts +0 -6
  316. package/src/components/Engines/Engines.tsx +6 -2
  317. package/src/components/Engines/styles.ts +1 -1
  318. package/src/components/ErrorBoundary/ErrorBoundary.test.tsx +39 -0
  319. package/src/components/Forbidden/Forbidden.test.tsx +38 -0
  320. package/src/components/Forbidden/Forbidden.tsx +56 -0
  321. package/src/components/Forbidden/index.ts +1 -0
  322. package/src/components/FundButton/FundButton.tsx +5 -5
  323. package/src/components/HeaderInfoDialog/HeaderInfoDialog.test.tsx +51 -0
  324. package/src/components/HeaderInfoDialog/HeaderInfoDialog.tsx +2 -2
  325. package/src/components/Heading/Heading.test.tsx +20 -0
  326. package/src/components/Help/Help.test.tsx +10 -3
  327. package/src/components/Icons/DevsIcons/CommonJS.tsx +1 -7
  328. package/src/components/Icons/DevsIcons/ES6Module.tsx +2 -8
  329. package/src/components/Icons/DevsIcons/Git.tsx +1 -7
  330. package/src/components/Icons/DevsIcons/NodeJS.tsx +1 -7
  331. package/src/components/Icons/DevsIcons/TypeScript.tsx +1 -7
  332. package/src/components/Icons/FileBinary.tsx +2 -1
  333. package/src/components/Icons/Icons.stories.tsx +21 -5
  334. package/src/components/Icons/Icons.test.tsx +70 -0
  335. package/src/components/Icons/Law.tsx +2 -1
  336. package/src/components/Icons/Managers/Npm.tsx +1 -7
  337. package/src/components/Icons/Managers/Pnpm.tsx +1 -7
  338. package/src/components/Icons/Managers/Yarn.tsx +1 -7
  339. package/src/components/Install/Install.test.tsx +54 -13
  340. package/src/components/Install/Install.tsx +12 -11
  341. package/src/components/Install/InstallListItem.tsx +15 -13
  342. package/src/components/Keywords/KeywordListItems.tsx +22 -0
  343. package/src/components/Keywords/Keywords.stories.tsx +19 -0
  344. package/src/components/Keywords/Keywords.test.tsx +57 -0
  345. package/src/components/Keywords/Keywords.tsx +35 -0
  346. package/src/components/Keywords/index.ts +1 -0
  347. package/src/components/Link/Link.test.tsx +25 -0
  348. package/src/components/Link/Link.tsx +4 -18
  349. package/src/components/Link/index.ts +1 -1
  350. package/src/components/LinkExternal/LinkExternal.test.tsx +18 -0
  351. package/src/components/LinkExternal/LinkExternal.tsx +22 -0
  352. package/src/components/LinkExternal/index.ts +1 -0
  353. package/src/components/Loading/Loading.test.tsx +8 -4
  354. package/src/components/Loading/styles.ts +1 -0
  355. package/src/components/LoginDialog/LoginDialog.test.tsx +1 -1
  356. package/src/components/LoginDialog/LoginDialog.tsx +10 -1
  357. package/src/components/LoginDialog/LoginDialogCloseButton.tsx +1 -0
  358. package/src/components/LoginDialog/LoginDialogForm.tsx +0 -2
  359. package/src/components/LoginDialog/LoginDialogFormError.tsx +1 -1
  360. package/src/components/Logo/Logo.stories.tsx +16 -0
  361. package/src/components/Logo/Logo.test.tsx +8 -1
  362. package/src/components/Logo/Logo.tsx +19 -3
  363. package/src/components/NotFound/NotFound.tsx +6 -5
  364. package/src/components/NotFound/Notfound.test.tsx +6 -3
  365. package/src/components/Package/Package.test.tsx +47 -14
  366. package/src/components/Package/Package.tsx +41 -44
  367. package/src/components/Package/styles.ts +7 -17
  368. package/src/components/PackageList/Packagelist.test.tsx +1 -0
  369. package/src/components/Person/Person.test.tsx +50 -0
  370. package/src/components/Person/Person.tsx +45 -0
  371. package/src/components/Person/PersonTooltip.tsx +26 -0
  372. package/src/components/Person/index.ts +1 -0
  373. package/src/components/Person/utils.ts +20 -0
  374. package/src/components/RawViewer/RawViewer.tsx +8 -4
  375. package/src/components/Readme/Readme.spec.tsx +17 -0
  376. package/src/components/Readme/Readme.tsx +34 -7
  377. package/src/components/Readme/{github-markdown-dark.css → github-markdown.css} +266 -83
  378. package/src/components/Readme/utils.ts +15 -14
  379. package/src/components/RegistryInfoDialog/styles.ts +5 -4
  380. package/src/components/Repository/Repository.tsx +10 -17
  381. package/src/components/Search/AutoComplete/AutoComplete.tsx +1 -1
  382. package/src/components/Search/AutoComplete/styles.ts +7 -0
  383. package/src/components/Search/Search.test.tsx +38 -11
  384. package/src/components/Search/Search.tsx +4 -2
  385. package/src/components/Search/SearchItem.tsx +19 -8
  386. package/src/components/Search/utils.ts +17 -0
  387. package/src/components/SettingsMenu/SettingsMenu.test.tsx +41 -0
  388. package/src/components/SettingsMenu/SettingsMenu.tsx +48 -10
  389. package/src/components/{SideBarTittle/SideBarTittle.tsx → SideBarTitle/SideBarTitle.tsx} +19 -3
  390. package/src/components/SideBarTitle/index.ts +1 -0
  391. package/src/components/UpLinks/UpLinks.test.tsx +7 -0
  392. package/src/components/UpLinks/UpLinks.tsx +38 -15
  393. package/src/components/UpLinks/UplinkLink.tsx +20 -0
  394. package/src/components/UpLinks/styles.ts +1 -0
  395. package/src/components/Versions/HistoryList.tsx +11 -6
  396. package/src/components/Versions/TagList.tsx +4 -3
  397. package/src/components/Versions/Versions.test.tsx +26 -8
  398. package/src/components/Versions/Versions.tsx +81 -28
  399. package/src/index.ts +6 -2
  400. package/src/providers/AppConfigurationProvider/AppConfigurationProvider.tsx +1 -0
  401. package/src/providers/PersistenceSettingProvider/PersistenceSettingProvider.tsx +2 -0
  402. package/src/providers/VersionProvider/VersionProvider.test.tsx +3 -3
  403. package/src/sections/Detail/Detail.stories.tsx +10 -0
  404. package/src/sections/Detail/Detail.test.tsx +8 -1
  405. package/src/sections/Detail/Detail.tsx +11 -4
  406. package/src/sections/Detail/Tabs.tsx +6 -9
  407. package/src/sections/Footer/Footer.tsx +26 -12
  408. package/src/sections/Footer/styles.ts +4 -0
  409. package/src/sections/Header/Header.test.tsx +12 -10
  410. package/src/sections/Header/HeaderLeft.tsx +19 -11
  411. package/src/sections/Header/HeaderMenu.tsx +1 -1
  412. package/src/sections/Header/HeaderRight.tsx +14 -3
  413. package/src/sections/Header/HeaderSettingsDialog.tsx +2 -3
  414. package/src/sections/Header/LanguageSwitch.tsx +10 -7
  415. package/src/sections/Header/RegistryInfoContent/RegistryInfoContent.test.tsx +1 -1
  416. package/src/sections/Header/RegistryInfoContent/RegistryInfoContent.tsx +2 -7
  417. package/src/sections/Header/styles.ts +4 -16
  418. package/src/sections/Home/Home.test.tsx +37 -0
  419. package/src/sections/Home/Home.tsx +0 -1
  420. package/src/sections/SideBar/Sidebar.test.tsx +52 -84
  421. package/src/sections/SideBar/Sidebar.tsx +11 -26
  422. package/src/store/api.test.ts +19 -2
  423. package/src/store/api.ts +13 -6
  424. package/src/store/models/configuration.ts +2 -1
  425. package/src/store/models/login.ts +10 -12
  426. package/src/store/models/manifest.ts +25 -6
  427. package/src/store/models/packages.ts +4 -5
  428. package/src/store/models/routes.ts +10 -0
  429. package/src/store/models/search.ts +4 -2
  430. package/src/store/models/utils.ts +3 -0
  431. package/src/types/packageMeta.ts +7 -5
  432. package/src/utils/__partials__/packageMeta.ts +0 -1
  433. package/src/utils/routes.ts +1 -0
  434. package/src/utils/utils.test.ts +34 -0
  435. package/src/utils/utils.ts +20 -5
  436. package/tsconfig.json +1 -1
  437. package/build/components/Dependencies/styles.js +0 -68
  438. package/build/components/Developers/styles.js +0 -69
  439. package/build/components/Distribution/utils.js +0 -25
  440. package/build/components/Distribution/utilts.spec.js +0 -18
  441. package/build/components/Package/Tag/Tag.js +0 -15
  442. package/build/components/Package/Tag/index.js +0 -14
  443. package/build/components/Package/Tag/styles.js +0 -25
  444. package/build/components/Readme/ReadmeDark.js +0 -46
  445. package/build/components/Readme/ReadmeLight.js +0 -46
  446. package/build/components/Readme/github-markdown-light.css +0 -1014
  447. package/build/components/SideBarTittle/SideBarTittle.js +0 -95
  448. package/build/components/SideBarTittle/index.js +0 -14
  449. package/build/sections/Header/RegistryInfoDialog/RegistryInfoDialog.js +0 -37
  450. package/build/sections/Header/RegistryInfoDialog/index.js +0 -14
  451. package/build/sections/Header/RegistryInfoDialog/styles.js +0 -49
  452. package/build/sections/Header/RegistryInfoDialog/types.js +0 -6
  453. package/build/src/components/Dependencies/styles.d.ts +0 -8
  454. package/build/src/components/Developers/styles.d.ts +0 -11
  455. package/build/src/components/Distribution/utils.d.ts +0 -7
  456. package/build/src/components/Package/Tag/Tag.d.ts +0 -6
  457. package/build/src/components/Package/Tag/index.d.ts +0 -1
  458. package/build/src/components/Package/Tag/styles.d.ts +0 -5
  459. package/build/src/components/Readme/ReadmeDark.d.ts +0 -5
  460. package/build/src/components/Readme/ReadmeLight.d.ts +0 -5
  461. package/build/src/components/SideBarTittle/index.d.ts +0 -1
  462. package/build/src/sections/Header/RegistryInfoDialog/RegistryInfoDialog.d.ts +0 -4
  463. package/build/src/sections/Header/RegistryInfoDialog/index.d.ts +0 -1
  464. package/build/src/sections/Header/RegistryInfoDialog/styles.d.ts +0 -13
  465. package/build/src/sections/Header/RegistryInfoDialog/types.d.ts +0 -7
  466. package/src/components/Dependencies/styles.ts +0 -26
  467. package/src/components/Developers/styles.ts +0 -31
  468. package/src/components/Distribution/utils.ts +0 -32
  469. package/src/components/Distribution/utilts.spec.ts +0 -17
  470. package/src/components/Package/Tag/Tag.test.tsx +0 -15
  471. package/src/components/Package/Tag/Tag.tsx +0 -11
  472. package/src/components/Package/Tag/index.ts +0 -1
  473. package/src/components/Package/Tag/styles.ts +0 -11
  474. package/src/components/Readme/ReadmeDark.tsx +0 -32
  475. package/src/components/Readme/ReadmeLight.tsx +0 -32
  476. package/src/components/Readme/github-markdown-light.css +0 -1014
  477. package/src/components/Search/AutoComplete/styles.tsx +0 -42
  478. package/src/components/SideBarTittle/index.ts +0 -1
  479. package/src/sections/Header/RegistryInfoDialog/RegistryInfoDialog.tsx +0 -31
  480. package/src/sections/Header/RegistryInfoDialog/index.ts +0 -1
  481. package/src/sections/Header/RegistryInfoDialog/styles.ts +0 -21
  482. package/src/sections/Header/RegistryInfoDialog/types.ts +0 -8
  483. /package/build/components/Icons/DevsIcons/{es6modules.svg → es6module.svg} +0 -0
  484. /package/build/src/{components/Package/Tag/Tag.test.d.ts → AppTest/AppRoute.test.d.ts} +0 -0
  485. /package/build/src/components/{SideBarTittle/SideBarTittle.d.ts → SideBarTitle/SideBarTitle.d.ts} +0 -0
  486. /package/build/src/components/{SideBarTittle/SideBarTittle.stories.d.ts → SideBarTitle/SideBarTitle.stories.d.ts} +0 -0
  487. /package/build/src/components/{SideBarTittle → SideBarTitle}/utils.d.ts +0 -0
  488. /package/src/components/Icons/DevsIcons/{es6modules.svg → es6module.svg} +0 -0
  489. /package/src/components/{SideBarTittle/SideBarTittle.stories.tsx → SideBarTitle/SideBarTitle.stories.tsx} +0 -0
  490. /package/src/components/{SideBarTittle → SideBarTitle}/utils.ts +0 -0
@@ -1,1014 +0,0 @@
1
- /*light*/
2
-
3
- .markdown-body {
4
- -ms-text-size-adjust: 100%;
5
- -webkit-text-size-adjust: 100%;
6
- margin: 0;
7
- color: #1F2328;
8
- background-color: #ffffff;
9
- font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
10
- font-size: 16px;
11
- line-height: 1.5;
12
- word-wrap: break-word;
13
- }
14
-
15
- .markdown-body .octicon {
16
- display: inline-block;
17
- fill: currentColor;
18
- vertical-align: text-bottom;
19
- }
20
-
21
- .markdown-body h1:hover .anchor .octicon-link:before,
22
- .markdown-body h2:hover .anchor .octicon-link:before,
23
- .markdown-body h3:hover .anchor .octicon-link:before,
24
- .markdown-body h4:hover .anchor .octicon-link:before,
25
- .markdown-body h5:hover .anchor .octicon-link:before,
26
- .markdown-body h6:hover .anchor .octicon-link:before {
27
- width: 16px;
28
- height: 16px;
29
- content: ' ';
30
- display: inline-block;
31
- background-color: currentColor;
32
- -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' version='1.1' aria-hidden='true'><path fill-rule='evenodd' d='M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z'></path></svg>");
33
- mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' version='1.1' aria-hidden='true'><path fill-rule='evenodd' d='M7.775 3.275a.75.75 0 001.06 1.06l1.25-1.25a2 2 0 112.83 2.83l-2.5 2.5a2 2 0 01-2.83 0 .75.75 0 00-1.06 1.06 3.5 3.5 0 004.95 0l2.5-2.5a3.5 3.5 0 00-4.95-4.95l-1.25 1.25zm-4.69 9.64a2 2 0 010-2.83l2.5-2.5a2 2 0 012.83 0 .75.75 0 001.06-1.06 3.5 3.5 0 00-4.95 0l-2.5 2.5a3.5 3.5 0 004.95 4.95l1.25-1.25a.75.75 0 00-1.06-1.06l-1.25 1.25a2 2 0 01-2.83 0z'></path></svg>");
34
- }
35
-
36
- .markdown-body details,
37
- .markdown-body figcaption,
38
- .markdown-body figure {
39
- display: block;
40
- }
41
-
42
- .markdown-body summary {
43
- display: list-item;
44
- }
45
-
46
- .markdown-body [hidden] {
47
- display: none !important;
48
- }
49
-
50
- .markdown-body a {
51
- background-color: transparent;
52
- color: #0969da;
53
- text-decoration: none;
54
- }
55
-
56
- .markdown-body abbr[title] {
57
- border-bottom: none;
58
- -webkit-text-decoration: underline dotted;
59
- text-decoration: underline dotted;
60
- }
61
-
62
- .markdown-body b,
63
- .markdown-body strong {
64
- font-weight: 600;
65
- }
66
-
67
- .markdown-body dfn {
68
- font-style: italic;
69
- }
70
-
71
- .markdown-body h1 {
72
- margin: .67em 0;
73
- font-weight: 600;
74
- padding-bottom: .3em;
75
- font-size: 2em;
76
- border-bottom: 1px solid hsla(210,18%,87%,1);
77
- }
78
-
79
- .markdown-body mark {
80
- background-color: #fff8c5;
81
- color: #1F2328;
82
- }
83
-
84
- .markdown-body small {
85
- font-size: 90%;
86
- }
87
-
88
- .markdown-body sub,
89
- .markdown-body sup {
90
- font-size: 75%;
91
- line-height: 0;
92
- position: relative;
93
- vertical-align: baseline;
94
- }
95
-
96
- .markdown-body sub {
97
- bottom: -0.25em;
98
- }
99
-
100
- .markdown-body sup {
101
- top: -0.5em;
102
- }
103
-
104
- .markdown-body img {
105
- border-style: none;
106
- max-width: 100%;
107
- box-sizing: content-box;
108
- background-color: #ffffff;
109
- }
110
-
111
- .markdown-body code,
112
- .markdown-body kbd,
113
- .markdown-body pre,
114
- .markdown-body samp {
115
- font-family: monospace;
116
- font-size: 1em;
117
- }
118
-
119
- .markdown-body figure {
120
- margin: 1em 40px;
121
- }
122
-
123
- .markdown-body hr {
124
- box-sizing: content-box;
125
- overflow: hidden;
126
- background: transparent;
127
- border-bottom: 1px solid hsla(210,18%,87%,1);
128
- height: .25em;
129
- padding: 0;
130
- margin: 24px 0;
131
- background-color: #d0d7de;
132
- border: 0;
133
- }
134
-
135
- .markdown-body input {
136
- font: inherit;
137
- margin: 0;
138
- overflow: visible;
139
- font-family: inherit;
140
- font-size: inherit;
141
- line-height: inherit;
142
- }
143
-
144
- .markdown-body [type=button],
145
- .markdown-body [type=reset],
146
- .markdown-body [type=submit] {
147
- -webkit-appearance: button;
148
- }
149
-
150
- .markdown-body [type=checkbox],
151
- .markdown-body [type=radio] {
152
- box-sizing: border-box;
153
- padding: 0;
154
- }
155
-
156
- .markdown-body [type=number]::-webkit-inner-spin-button,
157
- .markdown-body [type=number]::-webkit-outer-spin-button {
158
- height: auto;
159
- }
160
-
161
- .markdown-body [type=search]::-webkit-search-cancel-button,
162
- .markdown-body [type=search]::-webkit-search-decoration {
163
- -webkit-appearance: none;
164
- }
165
-
166
- .markdown-body ::-webkit-input-placeholder {
167
- color: inherit;
168
- opacity: .54;
169
- }
170
-
171
- .markdown-body ::-webkit-file-upload-button {
172
- -webkit-appearance: button;
173
- font: inherit;
174
- }
175
-
176
- .markdown-body a:hover {
177
- text-decoration: underline;
178
- }
179
-
180
- .markdown-body ::placeholder {
181
- color: #6e7781;
182
- opacity: 1;
183
- }
184
-
185
- .markdown-body hr::before {
186
- display: table;
187
- content: "";
188
- }
189
-
190
- .markdown-body hr::after {
191
- display: table;
192
- clear: both;
193
- content: "";
194
- }
195
-
196
- .markdown-body table {
197
- border-spacing: 0;
198
- border-collapse: collapse;
199
- display: block;
200
- width: max-content;
201
- max-width: 100%;
202
- overflow: auto;
203
- }
204
-
205
- .markdown-body td,
206
- .markdown-body th {
207
- padding: 0;
208
- }
209
-
210
- .markdown-body details summary {
211
- cursor: pointer;
212
- }
213
-
214
- .markdown-body details:not([open])>*:not(summary) {
215
- display: none !important;
216
- }
217
-
218
- .markdown-body a:focus,
219
- .markdown-body [role=button]:focus,
220
- .markdown-body input[type=radio]:focus,
221
- .markdown-body input[type=checkbox]:focus {
222
- outline: 2px solid #0969da;
223
- outline-offset: -2px;
224
- box-shadow: none;
225
- }
226
-
227
- .markdown-body a:focus:not(:focus-visible),
228
- .markdown-body [role=button]:focus:not(:focus-visible),
229
- .markdown-body input[type=radio]:focus:not(:focus-visible),
230
- .markdown-body input[type=checkbox]:focus:not(:focus-visible) {
231
- outline: solid 1px transparent;
232
- }
233
-
234
- .markdown-body a:focus-visible,
235
- .markdown-body [role=button]:focus-visible,
236
- .markdown-body input[type=radio]:focus-visible,
237
- .markdown-body input[type=checkbox]:focus-visible {
238
- outline: 2px solid #0969da;
239
- outline-offset: -2px;
240
- box-shadow: none;
241
- }
242
-
243
- .markdown-body a:not([class]):focus,
244
- .markdown-body a:not([class]):focus-visible,
245
- .markdown-body input[type=radio]:focus,
246
- .markdown-body input[type=radio]:focus-visible,
247
- .markdown-body input[type=checkbox]:focus,
248
- .markdown-body input[type=checkbox]:focus-visible {
249
- outline-offset: 0;
250
- }
251
-
252
- .markdown-body kbd {
253
- display: inline-block;
254
- padding: 3px 5px;
255
- font: 11px ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;
256
- line-height: 10px;
257
- color: #1F2328;
258
- vertical-align: middle;
259
- background-color: #f6f8fa;
260
- border: solid 1px rgba(175,184,193,0.2);
261
- border-bottom-color: rgba(175,184,193,0.2);
262
- border-radius: 6px;
263
- box-shadow: inset 0 -1px 0 rgba(175,184,193,0.2);
264
- }
265
-
266
- .markdown-body h1,
267
- .markdown-body h2,
268
- .markdown-body h3,
269
- .markdown-body h4,
270
- .markdown-body h5,
271
- .markdown-body h6 {
272
- margin-top: 24px;
273
- margin-bottom: 16px;
274
- font-weight: 600;
275
- line-height: 1.25;
276
- }
277
-
278
- .markdown-body h2 {
279
- font-weight: 600;
280
- padding-bottom: .3em;
281
- font-size: 1.5em;
282
- border-bottom: 1px solid hsla(210,18%,87%,1);
283
- }
284
-
285
- .markdown-body h3 {
286
- font-weight: 600;
287
- font-size: 1.25em;
288
- }
289
-
290
- .markdown-body h4 {
291
- font-weight: 600;
292
- font-size: 1em;
293
- }
294
-
295
- .markdown-body h5 {
296
- font-weight: 600;
297
- font-size: .875em;
298
- }
299
-
300
- .markdown-body h6 {
301
- font-weight: 600;
302
- font-size: .85em;
303
- color: #656d76;
304
- }
305
-
306
- .markdown-body p {
307
- margin-top: 0;
308
- margin-bottom: 10px;
309
- }
310
-
311
- .markdown-body blockquote {
312
- margin: 0;
313
- padding: 0 1em;
314
- color: #656d76;
315
- border-left: .25em solid #d0d7de;
316
- }
317
-
318
- .markdown-body ul,
319
- .markdown-body ol {
320
- margin-top: 0;
321
- margin-bottom: 0;
322
- padding-left: 2em;
323
- }
324
-
325
- .markdown-body ol ol,
326
- .markdown-body ul ol {
327
- list-style-type: lower-roman;
328
- }
329
-
330
- .markdown-body ul ul ol,
331
- .markdown-body ul ol ol,
332
- .markdown-body ol ul ol,
333
- .markdown-body ol ol ol {
334
- list-style-type: lower-alpha;
335
- }
336
-
337
- .markdown-body dd {
338
- margin-left: 0;
339
- }
340
-
341
- .markdown-body tt,
342
- .markdown-body code,
343
- .markdown-body samp {
344
- font-family: ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;
345
- font-size: 12px;
346
- }
347
-
348
- .markdown-body pre {
349
- margin-top: 0;
350
- margin-bottom: 0;
351
- font-family: ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;
352
- font-size: 12px;
353
- word-wrap: normal;
354
- }
355
-
356
- .markdown-body .octicon {
357
- display: inline-block;
358
- overflow: visible !important;
359
- vertical-align: text-bottom;
360
- fill: currentColor;
361
- }
362
-
363
- .markdown-body input::-webkit-outer-spin-button,
364
- .markdown-body input::-webkit-inner-spin-button {
365
- margin: 0;
366
- -webkit-appearance: none;
367
- appearance: none;
368
- }
369
-
370
- .markdown-body::before {
371
- display: table;
372
- content: "";
373
- }
374
-
375
- .markdown-body::after {
376
- display: table;
377
- clear: both;
378
- content: "";
379
- }
380
-
381
- .markdown-body>*:first-child {
382
- margin-top: 0 !important;
383
- }
384
-
385
- .markdown-body>*:last-child {
386
- margin-bottom: 0 !important;
387
- }
388
-
389
- .markdown-body a:not([href]) {
390
- color: inherit;
391
- text-decoration: none;
392
- }
393
-
394
- .markdown-body .absent {
395
- color: #d1242f;
396
- }
397
-
398
- .markdown-body .anchor {
399
- float: left;
400
- padding-right: 4px;
401
- margin-left: -20px;
402
- line-height: 1;
403
- }
404
-
405
- .markdown-body .anchor:focus {
406
- outline: none;
407
- }
408
-
409
- .markdown-body p,
410
- .markdown-body blockquote,
411
- .markdown-body ul,
412
- .markdown-body ol,
413
- .markdown-body dl,
414
- .markdown-body table,
415
- .markdown-body pre,
416
- .markdown-body details {
417
- margin-top: 0;
418
- margin-bottom: 16px;
419
- }
420
-
421
- .markdown-body blockquote>:first-child {
422
- margin-top: 0;
423
- }
424
-
425
- .markdown-body blockquote>:last-child {
426
- margin-bottom: 0;
427
- }
428
-
429
- .markdown-body h1 .octicon-link,
430
- .markdown-body h2 .octicon-link,
431
- .markdown-body h3 .octicon-link,
432
- .markdown-body h4 .octicon-link,
433
- .markdown-body h5 .octicon-link,
434
- .markdown-body h6 .octicon-link {
435
- color: #1F2328;
436
- vertical-align: middle;
437
- visibility: hidden;
438
- }
439
-
440
- .markdown-body h1:hover .anchor,
441
- .markdown-body h2:hover .anchor,
442
- .markdown-body h3:hover .anchor,
443
- .markdown-body h4:hover .anchor,
444
- .markdown-body h5:hover .anchor,
445
- .markdown-body h6:hover .anchor {
446
- text-decoration: none;
447
- }
448
-
449
- .markdown-body h1:hover .anchor .octicon-link,
450
- .markdown-body h2:hover .anchor .octicon-link,
451
- .markdown-body h3:hover .anchor .octicon-link,
452
- .markdown-body h4:hover .anchor .octicon-link,
453
- .markdown-body h5:hover .anchor .octicon-link,
454
- .markdown-body h6:hover .anchor .octicon-link {
455
- visibility: visible;
456
- }
457
-
458
- .markdown-body h1 tt,
459
- .markdown-body h1 code,
460
- .markdown-body h2 tt,
461
- .markdown-body h2 code,
462
- .markdown-body h3 tt,
463
- .markdown-body h3 code,
464
- .markdown-body h4 tt,
465
- .markdown-body h4 code,
466
- .markdown-body h5 tt,
467
- .markdown-body h5 code,
468
- .markdown-body h6 tt,
469
- .markdown-body h6 code {
470
- padding: 0 .2em;
471
- font-size: inherit;
472
- }
473
-
474
- .markdown-body summary h1,
475
- .markdown-body summary h2,
476
- .markdown-body summary h3,
477
- .markdown-body summary h4,
478
- .markdown-body summary h5,
479
- .markdown-body summary h6 {
480
- display: inline-block;
481
- }
482
-
483
- .markdown-body summary h1 .anchor,
484
- .markdown-body summary h2 .anchor,
485
- .markdown-body summary h3 .anchor,
486
- .markdown-body summary h4 .anchor,
487
- .markdown-body summary h5 .anchor,
488
- .markdown-body summary h6 .anchor {
489
- margin-left: -40px;
490
- }
491
-
492
- .markdown-body summary h1,
493
- .markdown-body summary h2 {
494
- padding-bottom: 0;
495
- border-bottom: 0;
496
- }
497
-
498
- .markdown-body ul.no-list,
499
- .markdown-body ol.no-list {
500
- padding: 0;
501
- list-style-type: none;
502
- }
503
-
504
- .markdown-body ol[type="a s"] {
505
- list-style-type: lower-alpha;
506
- }
507
-
508
- .markdown-body ol[type="A s"] {
509
- list-style-type: upper-alpha;
510
- }
511
-
512
- .markdown-body ol[type="i s"] {
513
- list-style-type: lower-roman;
514
- }
515
-
516
- .markdown-body ol[type="I s"] {
517
- list-style-type: upper-roman;
518
- }
519
-
520
- .markdown-body ol[type="1"] {
521
- list-style-type: decimal;
522
- }
523
-
524
- .markdown-body div>ol:not([type]) {
525
- list-style-type: decimal;
526
- }
527
-
528
- .markdown-body ul ul,
529
- .markdown-body ul ol,
530
- .markdown-body ol ol,
531
- .markdown-body ol ul {
532
- margin-top: 0;
533
- margin-bottom: 0;
534
- }
535
-
536
- .markdown-body li>p {
537
- margin-top: 16px;
538
- }
539
-
540
- .markdown-body li+li {
541
- margin-top: .25em;
542
- }
543
-
544
- .markdown-body dl {
545
- padding: 0;
546
- }
547
-
548
- .markdown-body dl dt {
549
- padding: 0;
550
- margin-top: 16px;
551
- font-size: 1em;
552
- font-style: italic;
553
- font-weight: 600;
554
- }
555
-
556
- .markdown-body dl dd {
557
- padding: 0 16px;
558
- margin-bottom: 16px;
559
- }
560
-
561
- .markdown-body table th {
562
- font-weight: 600;
563
- }
564
-
565
- .markdown-body table th,
566
- .markdown-body table td {
567
- padding: 6px 13px;
568
- border: 1px solid #d0d7de;
569
- }
570
-
571
- .markdown-body table td>:last-child {
572
- margin-bottom: 0;
573
- }
574
-
575
- .markdown-body table tr {
576
- background-color: #ffffff;
577
- border-top: 1px solid hsla(210,18%,87%,1);
578
- }
579
-
580
- .markdown-body table tr:nth-child(2n) {
581
- background-color: #f6f8fa;
582
- }
583
-
584
- .markdown-body table img {
585
- background-color: transparent;
586
- }
587
-
588
- .markdown-body img[align=right] {
589
- padding-left: 20px;
590
- }
591
-
592
- .markdown-body img[align=left] {
593
- padding-right: 20px;
594
- }
595
-
596
- .markdown-body .emoji {
597
- max-width: none;
598
- vertical-align: text-top;
599
- background-color: transparent;
600
- }
601
-
602
- .markdown-body span.frame {
603
- display: block;
604
- overflow: hidden;
605
- }
606
-
607
- .markdown-body span.frame>span {
608
- display: block;
609
- float: left;
610
- width: auto;
611
- padding: 7px;
612
- margin: 13px 0 0;
613
- overflow: hidden;
614
- border: 1px solid #d0d7de;
615
- }
616
-
617
- .markdown-body span.frame span img {
618
- display: block;
619
- float: left;
620
- }
621
-
622
- .markdown-body span.frame span span {
623
- display: block;
624
- padding: 5px 0 0;
625
- clear: both;
626
- color: #1F2328;
627
- }
628
-
629
- .markdown-body span.align-center {
630
- display: block;
631
- overflow: hidden;
632
- clear: both;
633
- }
634
-
635
- .markdown-body span.align-center>span {
636
- display: block;
637
- margin: 13px auto 0;
638
- overflow: hidden;
639
- text-align: center;
640
- }
641
-
642
- .markdown-body span.align-center span img {
643
- margin: 0 auto;
644
- text-align: center;
645
- }
646
-
647
- .markdown-body span.align-right {
648
- display: block;
649
- overflow: hidden;
650
- clear: both;
651
- }
652
-
653
- .markdown-body span.align-right>span {
654
- display: block;
655
- margin: 13px 0 0;
656
- overflow: hidden;
657
- text-align: right;
658
- }
659
-
660
- .markdown-body span.align-right span img {
661
- margin: 0;
662
- text-align: right;
663
- }
664
-
665
- .markdown-body span.float-left {
666
- display: block;
667
- float: left;
668
- margin-right: 13px;
669
- overflow: hidden;
670
- }
671
-
672
- .markdown-body span.float-left span {
673
- margin: 13px 0 0;
674
- }
675
-
676
- .markdown-body span.float-right {
677
- display: block;
678
- float: right;
679
- margin-left: 13px;
680
- overflow: hidden;
681
- }
682
-
683
- .markdown-body span.float-right>span {
684
- display: block;
685
- margin: 13px auto 0;
686
- overflow: hidden;
687
- text-align: right;
688
- }
689
-
690
- .markdown-body code,
691
- .markdown-body tt {
692
- padding: .2em .4em;
693
- margin: 0;
694
- font-size: 85%;
695
- white-space: break-spaces;
696
- background-color: rgba(175,184,193,0.2);
697
- border-radius: 6px;
698
- }
699
-
700
- .markdown-body code br,
701
- .markdown-body tt br {
702
- display: none;
703
- }
704
-
705
- .markdown-body del code {
706
- text-decoration: inherit;
707
- }
708
-
709
- .markdown-body samp {
710
- font-size: 85%;
711
- }
712
-
713
- .markdown-body pre code {
714
- font-size: 100%;
715
- }
716
-
717
- .markdown-body pre>code {
718
- padding: 0;
719
- margin: 0;
720
- word-break: normal;
721
- white-space: pre;
722
- background: transparent;
723
- border: 0;
724
- }
725
-
726
- .markdown-body .highlight {
727
- margin-bottom: 16px;
728
- }
729
-
730
- .markdown-body .highlight pre {
731
- margin-bottom: 0;
732
- word-break: normal;
733
- }
734
-
735
- .markdown-body .highlight pre,
736
- .markdown-body pre {
737
- padding: 16px;
738
- overflow: auto;
739
- font-size: 85%;
740
- line-height: 1.45;
741
- color: #1F2328;
742
- background-color: #f6f8fa;
743
- border-radius: 6px;
744
- }
745
-
746
- .markdown-body pre code,
747
- .markdown-body pre tt {
748
- display: inline;
749
- max-width: auto;
750
- padding: 0;
751
- margin: 0;
752
- overflow: visible;
753
- line-height: inherit;
754
- word-wrap: normal;
755
- background-color: transparent;
756
- border: 0;
757
- }
758
-
759
- .markdown-body .csv-data td,
760
- .markdown-body .csv-data th {
761
- padding: 5px;
762
- overflow: hidden;
763
- font-size: 12px;
764
- line-height: 1;
765
- text-align: left;
766
- white-space: nowrap;
767
- }
768
-
769
- .markdown-body .csv-data .blob-num {
770
- padding: 10px 8px 9px;
771
- text-align: right;
772
- background: #ffffff;
773
- border: 0;
774
- }
775
-
776
- .markdown-body .csv-data tr {
777
- border-top: 0;
778
- }
779
-
780
- .markdown-body .csv-data th {
781
- font-weight: 600;
782
- background: #f6f8fa;
783
- border-top: 0;
784
- }
785
-
786
- .markdown-body [data-footnote-ref]::before {
787
- content: "[";
788
- }
789
-
790
- .markdown-body [data-footnote-ref]::after {
791
- content: "]";
792
- }
793
-
794
- .markdown-body .footnotes {
795
- font-size: 12px;
796
- color: #656d76;
797
- border-top: 1px solid #d0d7de;
798
- }
799
-
800
- .markdown-body .footnotes ol {
801
- padding-left: 16px;
802
- }
803
-
804
- .markdown-body .footnotes ol ul {
805
- display: inline-block;
806
- padding-left: 16px;
807
- margin-top: 16px;
808
- }
809
-
810
- .markdown-body .footnotes li {
811
- position: relative;
812
- }
813
-
814
- .markdown-body .footnotes li:target::before {
815
- position: absolute;
816
- top: -8px;
817
- right: -8px;
818
- bottom: -8px;
819
- left: -24px;
820
- pointer-events: none;
821
- content: "";
822
- border: 2px solid #0969da;
823
- border-radius: 6px;
824
- }
825
-
826
- .markdown-body .footnotes li:target {
827
- color: #1F2328;
828
- }
829
-
830
- .markdown-body .footnotes .data-footnote-backref g-emoji {
831
- font-family: monospace;
832
- }
833
-
834
- .markdown-body .pl-c {
835
- color: #6e7781;
836
- }
837
-
838
- .markdown-body .pl-c1,
839
- .markdown-body .pl-s .pl-v {
840
- color: #0550ae;
841
- }
842
-
843
- .markdown-body .pl-e,
844
- .markdown-body .pl-en {
845
- color: #6639ba;
846
- }
847
-
848
- .markdown-body .pl-smi,
849
- .markdown-body .pl-s .pl-s1 {
850
- color: #24292f;
851
- }
852
-
853
- .markdown-body .pl-ent {
854
- color: #116329;
855
- }
856
-
857
- .markdown-body .pl-k {
858
- color: #cf222e;
859
- }
860
-
861
- .markdown-body .pl-s,
862
- .markdown-body .pl-pds,
863
- .markdown-body .pl-s .pl-pse .pl-s1,
864
- .markdown-body .pl-sr,
865
- .markdown-body .pl-sr .pl-cce,
866
- .markdown-body .pl-sr .pl-sre,
867
- .markdown-body .pl-sr .pl-sra {
868
- color: #0a3069;
869
- }
870
-
871
- .markdown-body .pl-v,
872
- .markdown-body .pl-smw {
873
- color: #953800;
874
- }
875
-
876
- .markdown-body .pl-bu {
877
- color: #82071e;
878
- }
879
-
880
- .markdown-body .pl-ii {
881
- color: #f6f8fa;
882
- background-color: #82071e;
883
- }
884
-
885
- .markdown-body .pl-c2 {
886
- color: #f6f8fa;
887
- background-color: #cf222e;
888
- }
889
-
890
- .markdown-body .pl-sr .pl-cce {
891
- font-weight: bold;
892
- color: #116329;
893
- }
894
-
895
- .markdown-body .pl-ml {
896
- color: #3b2300;
897
- }
898
-
899
- .markdown-body .pl-mh,
900
- .markdown-body .pl-mh .pl-en,
901
- .markdown-body .pl-ms {
902
- font-weight: bold;
903
- color: #0550ae;
904
- }
905
-
906
- .markdown-body .pl-mi {
907
- font-style: italic;
908
- color: #24292f;
909
- }
910
-
911
- .markdown-body .pl-mb {
912
- font-weight: bold;
913
- color: #24292f;
914
- }
915
-
916
- .markdown-body .pl-md {
917
- color: #82071e;
918
- background-color: #ffebe9;
919
- }
920
-
921
- .markdown-body .pl-mi1 {
922
- color: #116329;
923
- background-color: #dafbe1;
924
- }
925
-
926
- .markdown-body .pl-mc {
927
- color: #953800;
928
- background-color: #ffd8b5;
929
- }
930
-
931
- .markdown-body .pl-mi2 {
932
- color: #eaeef2;
933
- background-color: #0550ae;
934
- }
935
-
936
- .markdown-body .pl-mdr {
937
- font-weight: bold;
938
- color: #8250df;
939
- }
940
-
941
- .markdown-body .pl-ba {
942
- color: #57606a;
943
- }
944
-
945
- .markdown-body .pl-sg {
946
- color: #8c959f;
947
- }
948
-
949
- .markdown-body .pl-corl {
950
- text-decoration: underline;
951
- color: #0a3069;
952
- }
953
-
954
- .markdown-body g-emoji {
955
- display: inline-block;
956
- min-width: 1ch;
957
- font-family: "Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
958
- font-size: 1em;
959
- font-style: normal !important;
960
- font-weight: 400;
961
- line-height: 1;
962
- vertical-align: -0.075em;
963
- }
964
-
965
- .markdown-body g-emoji img {
966
- width: 1em;
967
- height: 1em;
968
- }
969
-
970
- .markdown-body .task-list-item {
971
- list-style-type: none;
972
- }
973
-
974
- .markdown-body .task-list-item label {
975
- font-weight: 400;
976
- }
977
-
978
- .markdown-body .task-list-item.enabled label {
979
- cursor: pointer;
980
- }
981
-
982
- .markdown-body .task-list-item+.task-list-item {
983
- margin-top: 4px;
984
- }
985
-
986
- .markdown-body .task-list-item .handle {
987
- display: none;
988
- }
989
-
990
- .markdown-body .task-list-item-checkbox {
991
- margin: 0 .2em .25em -1.4em;
992
- vertical-align: middle;
993
- }
994
-
995
- .markdown-body .contains-task-list:dir(rtl) .task-list-item-checkbox {
996
- margin: 0 -1.6em .25em .2em;
997
- }
998
-
999
- .markdown-body .contains-task-list {
1000
- position: relative;
1001
- }
1002
-
1003
- .markdown-body .contains-task-list:hover .task-list-item-convert-container,
1004
- .markdown-body .contains-task-list:focus-within .task-list-item-convert-container {
1005
- display: block;
1006
- width: auto;
1007
- height: 24px;
1008
- overflow: visible;
1009
- clip: auto;
1010
- }
1011
-
1012
- .markdown-body ::-webkit-calendar-picker-indicator {
1013
- filter: invert(50%);
1014
- }