@verdaccio/ui-components 2.0.0-alpha.0 → 3.0.0-next-7.4
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.
- package/.babelrc +8 -0
- package/.eslintrc +100 -0
- package/CHANGELOG.md +192 -0
- package/README.md +103 -0
- package/build/Theme/ResetStyles.js +49 -0
- package/build/Theme/StyleBaseline.js +14 -0
- package/build/Theme/ThemeProvider.js +51 -0
- package/build/Theme/colors.js +8 -0
- package/build/Theme/index.js +45 -0
- package/build/Theme/theme.js +118 -0
- package/build/__mocks__/react-markdown.js +18 -0
- package/build/__mocks__/remark-plugin.js +8 -0
- package/build/components/ActionBar/ActionBar.js +74 -0
- package/build/components/ActionBar/ActionBarAction.js +100 -0
- package/build/components/ActionBar/index.js +14 -0
- package/build/components/Author/Author.js +75 -0
- package/build/components/Author/index.js +14 -0
- package/build/components/Author/styles.js +37 -0
- package/build/components/CopyClipboard/CopyToClipBoard.js +69 -0
- package/build/components/CopyClipboard/index.js +21 -0
- package/build/components/CopyClipboard/utils.js +23 -0
- package/build/components/Dependencies/Dependencies.js +70 -0
- package/build/components/Dependencies/DependencyBlock.js +87 -0
- package/build/components/Dependencies/index.js +14 -0
- package/build/components/Dependencies/types.js +6 -0
- package/build/components/Dependencies/utits.js +10 -0
- package/build/components/Deprecated/Deprecated.js +24 -0
- package/build/components/Deprecated/index.js +14 -0
- package/build/components/Developers/Developers.js +92 -0
- package/build/components/Developers/Title.js +46 -0
- package/build/components/Developers/get-unique-developer-values.js +14 -0
- package/build/components/Developers/index.js +21 -0
- package/build/components/Developers/styles.js +65 -0
- package/build/components/Distribution/Dist.js +48 -0
- package/build/components/Distribution/index.js +14 -0
- package/build/components/Distribution/styles.js +66 -0
- package/build/components/Distribution/utils.js +25 -0
- package/build/components/Distribution/utilts.spec.js +18 -0
- package/build/components/Engines/Engines.js +85 -0
- package/build/components/Engines/index.js +14 -0
- package/build/components/Engines/styles.js +38 -0
- package/build/components/ErrorBoundary/ErrorBoundary.js +42 -0
- package/build/components/ErrorBoundary/index.js +14 -0
- package/build/components/FundButton/FundButton.js +80 -0
- package/build/components/FundButton/index.js +14 -0
- package/build/components/HeaderInfoDialog/HeaderInfoDialog.js +80 -0
- package/build/components/HeaderInfoDialog/index.js +14 -0
- package/build/components/Heading/Heading.js +24 -0
- package/build/components/Heading/index.js +14 -0
- package/build/components/Help/Help.js +60 -0
- package/build/components/Help/index.js +14 -0
- package/build/components/Help/styles.js +25 -0
- package/build/components/Icons/DevsIcons/CommonJS.js +29 -0
- package/build/components/Icons/DevsIcons/ES6Module.js +29 -0
- package/build/components/Icons/DevsIcons/Git.js +29 -0
- package/build/components/Icons/DevsIcons/NodeJS.js +29 -0
- package/build/components/Icons/DevsIcons/TypeScript.js +29 -0
- package/build/components/Icons/DevsIcons/commonjs.svg +4 -0
- package/build/components/Icons/DevsIcons/es6modules.svg +4 -0
- package/build/components/Icons/DevsIcons/git.svg +4 -0
- package/build/components/Icons/DevsIcons/index.js +41 -0
- package/build/components/Icons/DevsIcons/nodejs.svg +6 -0
- package/build/components/Icons/DevsIcons/typescript.svg +4 -0
- package/build/components/Icons/Earth.js +39 -0
- package/build/components/Icons/FileBinary.js +19 -0
- package/build/components/Icons/Law.js +20 -0
- package/build/components/Icons/License.js +23 -0
- package/build/components/Icons/License.js.map +1 -0
- package/build/components/Icons/Managers/Npm.js +29 -0
- package/build/components/Icons/Managers/Pnpm.js +29 -0
- package/build/components/Icons/Managers/Yarn.js +29 -0
- package/build/components/Icons/Managers/index.js +27 -0
- package/build/components/Icons/Managers/npm.svg +15 -0
- package/build/components/Icons/Managers/pnpm.svg +1 -0
- package/build/components/Icons/Managers/yarn.svg +1 -0
- package/build/components/Icons/SvgIcon.js +47 -0
- package/build/components/Icons/Time.js +26 -0
- package/build/components/Icons/Version.js +24 -0
- package/build/components/Icons/index.js +80 -0
- package/build/components/Install/Install.js +77 -0
- package/build/components/Install/InstallListItem.js +133 -0
- package/build/components/Install/__partials__/data.json +5984 -0
- package/build/components/Install/img/npm.svg +15 -0
- package/build/components/Install/img/pnpm.svg +1 -0
- package/build/components/Install/img/yarn.svg +1 -0
- package/build/components/Install/index.js +14 -0
- package/build/components/Label/Label.js +35 -0
- package/build/components/Label/index.js +14 -0
- package/build/components/Link/Link.js +56 -0
- package/build/components/Link/index.js +14 -0
- package/build/components/Loading/Loading.js +20 -0
- package/build/components/Loading/Spinner/Spinner.js +48 -0
- package/build/components/Loading/Spinner/index.js +14 -0
- package/build/components/Loading/index.js +14 -0
- package/build/components/Loading/styles.js +37 -0
- package/build/components/LoginDialog/LoginDialog.js +75 -0
- package/build/components/LoginDialog/LoginDialogCloseButton.js +41 -0
- package/build/components/LoginDialog/LoginDialogForm.js +126 -0
- package/build/components/LoginDialog/LoginDialogFormError.js +49 -0
- package/build/components/LoginDialog/LoginDialogHeader.js +59 -0
- package/build/components/LoginDialog/index.js +14 -0
- package/build/components/Logo/Logo.js +82 -0
- package/build/components/Logo/img/logo-black-and-white.svg +1 -0
- package/build/components/Logo/img/logo.svg +1 -0
- package/build/components/Logo/index.js +14 -0
- package/build/components/MenuItem/MenuItem.js +40 -0
- package/build/components/MenuItem/index.js +14 -0
- package/build/components/NoItems/NoItems.js +18 -0
- package/build/components/NoItems/index.js +14 -0
- package/build/components/NotFound/NotFound.js +73 -0
- package/build/components/NotFound/img/package.svg +1 -0
- package/build/components/NotFound/index.js +14 -0
- package/build/components/Package/Package.js +188 -0
- package/build/components/Package/Tag/Tag.js +14 -0
- package/build/components/Package/Tag/index.js +14 -0
- package/build/components/Package/Tag/styles.js +24 -0
- package/build/components/Package/index.js +21 -0
- package/build/components/Package/styles.js +211 -0
- package/build/components/PackageList/PackageList.js +99 -0
- package/build/components/PackageList/index.js +14 -0
- package/build/components/RawViewer/RawViewer.js +62 -0
- package/build/components/RawViewer/index.js +14 -0
- package/build/components/Readme/Readme.js +54 -0
- package/build/components/Readme/Readme.js.map +1 -0
- package/build/components/Readme/Readme.spec.js +22 -0
- package/build/components/Readme/Readme.spec.js.map +1 -0
- package/build/components/Readme/github-markdown.css +1198 -0
- package/build/components/Readme/index.js +14 -0
- package/build/components/Readme/types.js +6 -0
- package/build/components/Readme/utils.js +35 -0
- package/build/components/RegistryInfoDialog/RegistryInfoDialog.js +36 -0
- package/build/components/RegistryInfoDialog/index.js +14 -0
- package/build/components/RegistryInfoDialog/styles.js +46 -0
- package/build/components/RegistryInfoDialog/types.js +6 -0
- package/build/components/Repository/Repository.js +128 -0
- package/build/components/Repository/__partials__/data.json +5984 -0
- package/build/components/Repository/img/git.png +0 -0
- package/build/components/Repository/index.js +14 -0
- package/build/components/Search/AutoComplete/AutoComplete.js +69 -0
- package/build/components/Search/AutoComplete/index.js +14 -0
- package/build/components/Search/AutoComplete/styles.js +61 -0
- package/build/components/Search/Search.js +158 -0
- package/build/components/Search/SearchItem.js +135 -0
- package/build/components/Search/index.js +14 -0
- package/build/components/Search/styles.js +58 -0
- package/build/components/SettingsMenu/SettingsMenu.js +80 -0
- package/build/components/SettingsMenu/index.js +14 -0
- package/build/components/SideBarTitle/SideBarTitle.js +94 -0
- package/build/components/SideBarTitle/index.js +14 -0
- package/build/components/SideBarTitle/utils.js +19 -0
- package/build/components/TextField/TextField.js +29 -0
- package/build/components/TextField/index.js +14 -0
- package/build/components/UpLinks/UpLinks.js +43 -0
- package/build/components/UpLinks/index.js +14 -0
- package/build/components/UpLinks/styles.js +47 -0
- package/build/components/Versions/HistoryList.js +68 -0
- package/build/components/Versions/TagList.js +30 -0
- package/build/components/Versions/Versions.js +59 -0
- package/build/components/Versions/__partials__/data.json +5985 -0
- package/build/components/Versions/__partials__/deprecated-versions.json +175 -0
- package/build/components/Versions/index.js +14 -0
- package/build/components/Versions/styles.js +36 -0
- package/build/components/Versions/types.js +6 -0
- package/build/hooks/index.js +21 -0
- package/build/hooks/useLocalStorage.js +53 -0
- package/build/hooks/useOnClickOutside.js +32 -0
- package/build/index.js +500 -0
- package/build/layouts/Version/Version.js +28 -0
- package/build/layouts/Version/index.js +14 -0
- package/build/providers/AppConfigurationProvider/AppConfigurationProvider.js +63 -0
- package/build/providers/AppConfigurationProvider/index.js +21 -0
- package/build/providers/PersistenceSettingProvider/PersistenceSettingProvider.js +38 -0
- package/build/providers/PersistenceSettingProvider/index.js +21 -0
- package/build/providers/TranslatorProvider/TranslatorProvider.js +53 -0
- package/build/providers/TranslatorProvider/TranslatorProvider.spec.js +54 -0
- package/build/providers/TranslatorProvider/index.js +27 -0
- package/build/providers/VersionProvider/README.md +22 -0
- package/build/providers/VersionProvider/VersionProvider.js +79 -0
- package/build/providers/VersionProvider/index.js +21 -0
- package/build/providers/index.js +39 -0
- package/build/sections/Detail/ContainerContent.js +55 -0
- package/build/sections/Detail/Detail.js +50 -0
- package/build/sections/Detail/ReadmeSection.js +21 -0
- package/build/sections/Detail/Tabs.js +60 -0
- package/build/sections/Detail/index.js +14 -0
- package/build/sections/Footer/Footer.js +110 -0
- package/build/sections/Footer/index.js +14 -0
- package/build/sections/Footer/styles.js +85 -0
- package/build/sections/Header/Header.js +72 -0
- package/build/sections/Header/HeaderGreetings.js +25 -0
- package/build/sections/Header/HeaderLeft.js +36 -0
- package/build/sections/Header/HeaderMenu.js +53 -0
- package/build/sections/Header/HeaderRight.js +103 -0
- package/build/sections/Header/HeaderSettingsDialog.js +104 -0
- package/build/sections/Header/HeaderToolTip.js +18 -0
- package/build/sections/Header/HeaderToolTipIcon.js +69 -0
- package/build/sections/Header/LanguageSwitch.js +126 -0
- package/build/sections/Header/RegistryInfoContent/RegistryInfoContent.js +180 -0
- package/build/sections/Header/RegistryInfoContent/index.js +14 -0
- package/build/sections/Header/RegistryInfoContent/styles.js +29 -0
- package/build/sections/Header/RegistryInfoDialog/RegistryInfoDialog.js +36 -0
- package/build/sections/Header/RegistryInfoDialog/index.js +14 -0
- package/build/sections/Header/RegistryInfoDialog/styles.js +46 -0
- package/build/sections/Header/RegistryInfoDialog/types.js +6 -0
- package/build/sections/Header/index.js +14 -0
- package/build/sections/Header/styles.js +200 -0
- package/build/sections/Home/Home.js +31 -0
- package/build/sections/Home/index.js +14 -0
- package/build/sections/SideBar/Sidebar.js +96 -0
- package/build/sections/SideBar/index.js +14 -0
- package/build/sections/index.js +21 -0
- package/build/src/Theme/ResetStyles.d.ts +3 -0
- package/build/src/Theme/StyleBaseline.d.ts +4 -0
- package/build/src/Theme/ThemeProvider.d.ts +10 -0
- package/build/src/Theme/colors.d.ts +1 -0
- package/build/src/Theme/index.d.ts +4 -0
- package/build/src/Theme/theme.d.ts +149 -0
- package/build/src/__mocks__/react-markdown.d.ts +4 -0
- package/build/src/__mocks__/remark-plugin.d.ts +1 -0
- package/build/src/components/ActionBar/ActionBar.d.ts +8 -0
- package/build/src/components/ActionBar/ActionBar.stories.d.ts +11 -0
- package/build/src/components/ActionBar/ActionBar.test.d.ts +1 -0
- package/build/src/components/ActionBar/ActionBarAction.d.ts +10 -0
- package/build/src/components/ActionBar/index.d.ts +1 -0
- package/build/src/components/Author/Author.d.ts +10 -0
- package/build/src/components/Author/Author.stories.d.ts +6 -0
- package/build/src/components/Author/Author.test.d.ts +1 -0
- package/build/src/components/Author/index.d.ts +1 -0
- package/build/src/components/Author/styles.d.ts +2 -0
- package/build/src/components/CopyClipboard/CopyToClipBoard.d.ts +9 -0
- package/build/src/components/CopyClipboard/CopyToClipBoard.stories.d.ts +12 -0
- package/build/src/components/CopyClipboard/index.d.ts +2 -0
- package/build/src/components/CopyClipboard/utils.d.ts +2 -0
- package/build/src/components/Dependencies/Dependencies.d.ts +6 -0
- package/build/src/components/Dependencies/Dependencies.stories.d.ts +8 -0
- package/build/src/components/Dependencies/Dependencies.test.d.ts +1 -0
- package/build/src/components/Dependencies/DependencyBlock.d.ts +16 -0
- package/build/src/components/Dependencies/DependencyBlock.test.d.ts +1 -0
- package/build/src/components/Dependencies/index.d.ts +1 -0
- package/build/src/components/Dependencies/types.d.ts +6 -0
- package/build/src/components/Dependencies/utits.d.ts +3 -0
- package/build/src/components/Deprecated/Deprecated.d.ts +6 -0
- package/build/src/components/Deprecated/Deprecated.stories.d.ts +5 -0
- package/build/src/components/Deprecated/Deprecated.test.d.ts +1 -0
- package/build/src/components/Deprecated/index.d.ts +1 -0
- package/build/src/components/Developers/Developers.d.ts +14 -0
- package/build/src/components/Developers/Developers.stories.d.ts +6 -0
- package/build/src/components/Developers/Developers.test.d.ts +1 -0
- package/build/src/components/Developers/Title.d.ts +10 -0
- package/build/src/components/Developers/get-unique-developer-values.d.ts +3 -0
- package/build/src/components/Developers/index.d.ts +1 -0
- package/build/src/components/Developers/styles.d.ts +11 -0
- package/build/src/components/Distribution/Dist.d.ts +6 -0
- package/build/src/components/Distribution/Dist.stories.d.ts +8 -0
- package/build/src/components/Distribution/Dist.test.d.ts +1 -0
- package/build/src/components/Distribution/index.d.ts +1 -0
- package/build/src/components/Distribution/styles.d.ts +4 -0
- package/build/src/components/Distribution/utils.d.ts +7 -0
- package/build/src/components/Engines/Engines.d.ts +25 -0
- package/build/src/components/Engines/Engines.stories.d.ts +9 -0
- package/build/src/components/Engines/Engines.test.d.ts +1 -0
- package/build/src/components/Engines/index.d.ts +1 -0
- package/build/src/components/Engines/styles.d.ts +2 -0
- package/build/src/components/ErrorBoundary/ErrorBoundary.d.ts +14 -0
- package/build/src/components/ErrorBoundary/index.d.ts +1 -0
- package/build/src/components/FundButton/FundButton.d.ts +5 -0
- package/build/src/components/FundButton/FundButton.stories.d.ts +7 -0
- package/build/src/components/FundButton/FundButton.test.d.ts +1 -0
- package/build/src/components/FundButton/index.d.ts +1 -0
- package/build/src/components/HeaderInfoDialog/HeaderInfoDialog.d.ts +10 -0
- package/build/src/components/HeaderInfoDialog/index.d.ts +1 -0
- package/build/src/components/Heading/Heading.d.ts +8 -0
- package/build/src/components/Heading/index.d.ts +1 -0
- package/build/src/components/Help/Help.d.ts +3 -0
- package/build/src/components/Help/Help.stories.d.ts +5 -0
- package/build/src/components/Help/Help.test.d.ts +1 -0
- package/build/src/components/Help/index.d.ts +1 -0
- package/build/src/components/Help/styles.d.ts +1 -0
- package/build/src/components/Icons/DevsIcons/CommonJS.d.ts +2 -0
- package/build/src/components/Icons/DevsIcons/ES6Module.d.ts +2 -0
- package/build/src/components/Icons/DevsIcons/Git.d.ts +2 -0
- package/build/src/components/Icons/DevsIcons/NodeJS.d.ts +2 -0
- package/build/src/components/Icons/DevsIcons/TypeScript.d.ts +2 -0
- package/build/src/components/Icons/DevsIcons/index.d.ts +5 -0
- package/build/src/components/Icons/Earth.d.ts +7 -0
- package/build/src/components/Icons/FileBinary.d.ts +7 -0
- package/build/src/components/Icons/Icons.stories.d.ts +5 -0
- package/build/src/components/Icons/Law.d.ts +7 -0
- package/build/src/components/Icons/License.d.ts +7 -0
- package/build/src/components/Icons/Managers/Npm.d.ts +2 -0
- package/build/src/components/Icons/Managers/Pnpm.d.ts +2 -0
- package/build/src/components/Icons/Managers/Yarn.d.ts +2 -0
- package/build/src/components/Icons/Managers/index.d.ts +3 -0
- package/build/src/components/Icons/SvgIcon.d.ts +10 -0
- package/build/src/components/Icons/Time.d.ts +7 -0
- package/build/src/components/Icons/Version.d.ts +7 -0
- package/build/src/components/Icons/index.d.ts +8 -0
- package/build/src/components/Install/Install.d.ts +10 -0
- package/build/src/components/Install/Install.stories.d.ts +9 -0
- package/build/src/components/Install/Install.test.d.ts +1 -0
- package/build/src/components/Install/InstallListItem.d.ts +14 -0
- package/build/src/components/Install/index.d.ts +1 -0
- package/build/src/components/Label/Label.d.ts +9 -0
- package/build/src/components/Label/Label.test.d.ts +1 -0
- package/build/src/components/Label/index.d.ts +1 -0
- package/build/src/components/Link/Link.d.ts +6 -0
- package/build/src/components/Link/index.d.ts +1 -0
- package/build/src/components/Loading/Loading.d.ts +3 -0
- package/build/src/components/Loading/Loading.stories.d.ts +5 -0
- package/build/src/components/Loading/Loading.test.d.ts +1 -0
- package/build/src/components/Loading/Spinner/Spinner.d.ts +7 -0
- package/build/src/components/Loading/Spinner/Spinner.test.d.ts +1 -0
- package/build/src/components/Loading/Spinner/index.d.ts +1 -0
- package/build/src/components/Loading/index.d.ts +1 -0
- package/build/src/components/Loading/styles.d.ts +11 -0
- package/build/src/components/LoginDialog/LoginDialog.d.ts +7 -0
- package/build/src/components/LoginDialog/LoginDialog.stories.d.ts +15 -0
- package/build/src/components/LoginDialog/LoginDialog.test.d.ts +1 -0
- package/build/src/components/LoginDialog/LoginDialogCloseButton.d.ts +6 -0
- package/build/src/components/LoginDialog/LoginDialogForm.d.ts +12 -0
- package/build/src/components/LoginDialog/LoginDialogFormError.d.ts +11 -0
- package/build/src/components/LoginDialog/LoginDialogHeader.d.ts +6 -0
- package/build/src/components/LoginDialog/index.d.ts +1 -0
- package/build/src/components/Logo/Logo.d.ts +14 -0
- package/build/src/components/Logo/Logo.test.d.ts +1 -0
- package/build/src/components/Logo/index.d.ts +1 -0
- package/build/src/components/MenuItem/MenuItem.d.ts +9 -0
- package/build/src/components/MenuItem/index.d.ts +1 -0
- package/build/src/components/NoItems/NoItems.d.ts +6 -0
- package/build/src/components/NoItems/NoItems.stories.d.ts +5 -0
- package/build/src/components/NoItems/Noitems.test.d.ts +1 -0
- package/build/src/components/NoItems/index.d.ts +1 -0
- package/build/src/components/NotFound/NotFound.d.ts +3 -0
- package/build/src/components/NotFound/Notfound.test.d.ts +1 -0
- package/build/src/components/NotFound/index.d.ts +1 -0
- package/build/src/components/Package/Package.d.ts +24 -0
- package/build/src/components/Package/Package.test.d.ts +1 -0
- package/build/src/components/Package/Tag/Tag.d.ts +6 -0
- package/build/src/components/Package/Tag/Tag.test.d.ts +1 -0
- package/build/src/components/Package/Tag/index.d.ts +1 -0
- package/build/src/components/Package/Tag/styles.d.ts +5 -0
- package/build/src/components/Package/index.d.ts +1 -0
- package/build/src/components/Package/styles.d.ts +49 -0
- package/build/src/components/PackageList/PackageList.d.ts +6 -0
- package/build/src/components/PackageList/Packagelist.test.d.ts +1 -0
- package/build/src/components/PackageList/index.d.ts +1 -0
- package/build/src/components/RawViewer/RawViewer.d.ts +13 -0
- package/build/src/components/RawViewer/index.d.ts +1 -0
- package/build/src/components/Readme/Readme.d.ts +6 -0
- package/build/src/components/Readme/Readme.spec.d.ts +1 -0
- package/build/src/components/Readme/index.d.ts +1 -0
- package/build/src/components/Readme/types.d.ts +3 -0
- package/build/src/components/Readme/utils.d.ts +1 -0
- package/build/src/components/RegistryInfoDialog/RegistryInfoDialog.d.ts +4 -0
- package/build/src/components/RegistryInfoDialog/index.d.ts +1 -0
- package/build/src/components/RegistryInfoDialog/styles.d.ts +13 -0
- package/build/src/components/RegistryInfoDialog/types.d.ts +7 -0
- package/build/src/components/Repository/Repository.d.ts +5 -0
- package/build/src/components/Repository/Repository.stories.d.ts +8 -0
- package/build/src/components/Repository/Repository.test.d.ts +1 -0
- package/build/src/components/Repository/index.d.ts +1 -0
- package/build/src/components/Search/AutoComplete/AutoComplete.d.ts +16 -0
- package/build/src/components/Search/AutoComplete/index.d.ts +1 -0
- package/build/src/components/Search/AutoComplete/styles.d.ts +13 -0
- package/build/src/components/Search/Search.d.ts +4 -0
- package/build/src/components/Search/Search.stories.d.ts +8 -0
- package/build/src/components/Search/Search.test.d.ts +1 -0
- package/build/src/components/Search/SearchItem.d.ts +18 -0
- package/build/src/components/Search/index.d.ts +1 -0
- package/build/src/components/Search/styles.d.ts +10 -0
- package/build/src/components/SettingsMenu/SettingsMenu.d.ts +6 -0
- package/build/src/components/SettingsMenu/index.d.ts +1 -0
- package/build/src/components/SideBarTitle/SideBarTitle.d.ts +13 -0
- package/build/src/components/SideBarTitle/SideBarTitle.stories.d.ts +9 -0
- package/build/src/components/SideBarTitle/index.d.ts +1 -0
- package/build/src/components/SideBarTitle/utils.d.ts +3 -0
- package/build/src/components/TextField/TextField.d.ts +3 -0
- package/build/src/components/TextField/TextField.test.d.ts +1 -0
- package/build/src/components/TextField/index.d.ts +1 -0
- package/build/src/components/UpLinks/UpLinks.d.ts +5 -0
- package/build/src/components/UpLinks/UpLinks.test.d.ts +1 -0
- package/build/src/components/UpLinks/Uplinks.stories.d.ts +6 -0
- package/build/src/components/UpLinks/index.d.ts +1 -0
- package/build/src/components/UpLinks/styles.d.ts +13 -0
- package/build/src/components/Versions/HistoryList.d.ts +10 -0
- package/build/src/components/Versions/TagList.d.ts +9 -0
- package/build/src/components/Versions/Versions.d.ts +7 -0
- package/build/src/components/Versions/Versions.test.d.ts +1 -0
- package/build/src/components/Versions/index.d.ts +1 -0
- package/build/src/components/Versions/styles.d.ts +12 -0
- package/build/src/components/Versions/types.d.ts +15 -0
- package/build/src/hooks/index.d.ts +2 -0
- package/build/src/hooks/useLocalStorage.d.ts +12 -0
- package/build/src/hooks/useOnClickOutside.d.ts +9 -0
- package/build/src/index.d.ts +50 -0
- package/build/src/layouts/Version/Version.d.ts +3 -0
- package/build/src/layouts/Version/Version.stories.d.ts +7 -0
- package/build/src/layouts/Version/index.d.ts +1 -0
- package/build/src/providers/AppConfigurationProvider/AppConfigurationProvider.d.ts +10 -0
- package/build/src/providers/AppConfigurationProvider/index.d.ts +1 -0
- package/build/src/providers/PersistenceSettingProvider/PersistenceSettingProvider.d.ts +6 -0
- package/build/src/providers/PersistenceSettingProvider/index.d.ts +1 -0
- package/build/src/providers/TranslatorProvider/TranslatorProvider.d.ts +24 -0
- package/build/src/providers/TranslatorProvider/TranslatorProvider.spec.d.ts +1 -0
- package/build/src/providers/TranslatorProvider/index.d.ts +1 -0
- package/build/src/providers/VersionProvider/VersionProvider.d.ts +41 -0
- package/build/src/providers/VersionProvider/VersionProvider.test.d.ts +1 -0
- package/build/src/providers/VersionProvider/index.d.ts +1 -0
- package/build/src/providers/index.d.ts +3 -0
- package/build/src/sections/Detail/ContainerContent.d.ts +13 -0
- package/build/src/sections/Detail/Detail.d.ts +9 -0
- package/build/src/sections/Detail/Detail.stories.d.ts +6 -0
- package/build/src/sections/Detail/Detail.test.d.ts +1 -0
- package/build/src/sections/Detail/ReadmeSection.d.ts +6 -0
- package/build/src/sections/Detail/Tabs.d.ts +7 -0
- package/build/src/sections/Detail/index.d.ts +1 -0
- package/build/src/sections/Footer/Footer.d.ts +3 -0
- package/build/src/sections/Footer/Footer.test.d.ts +1 -0
- package/build/src/sections/Footer/index.d.ts +1 -0
- package/build/src/sections/Footer/styles.d.ts +33 -0
- package/build/src/sections/Header/Header.d.ts +6 -0
- package/build/src/sections/Header/Header.stories.d.ts +5 -0
- package/build/src/sections/Header/Header.test.d.ts +1 -0
- package/build/src/sections/Header/HeaderGreetings.d.ts +6 -0
- package/build/src/sections/Header/HeaderLeft.d.ts +6 -0
- package/build/src/sections/Header/HeaderMenu.d.ts +11 -0
- package/build/src/sections/Header/HeaderRight.d.ts +16 -0
- package/build/src/sections/Header/HeaderSettingsDialog.d.ts +7 -0
- package/build/src/sections/Header/HeaderToolTip.d.ts +9 -0
- package/build/src/sections/Header/HeaderToolTipIcon.d.ts +8 -0
- package/build/src/sections/Header/LanguageSwitch.d.ts +5 -0
- package/build/src/sections/Header/RegistryInfoContent/RegistryInfoContent.d.ts +24 -0
- package/build/src/sections/Header/RegistryInfoContent/RegistryInfoContent.test.d.ts +1 -0
- package/build/src/sections/Header/RegistryInfoContent/index.d.ts +1 -0
- package/build/src/sections/Header/RegistryInfoContent/styles.d.ts +13 -0
- package/build/src/sections/Header/RegistryInfoDialog/RegistryInfoDialog.d.ts +4 -0
- package/build/src/sections/Header/RegistryInfoDialog/index.d.ts +1 -0
- package/build/src/sections/Header/RegistryInfoDialog/styles.d.ts +13 -0
- package/build/src/sections/Header/RegistryInfoDialog/types.d.ts +7 -0
- package/build/src/sections/Header/index.d.ts +1 -0
- package/build/src/sections/Header/styles.d.ts +34 -0
- package/build/src/sections/Home/Home.d.ts +3 -0
- package/build/src/sections/Home/Home.stories.d.ts +5 -0
- package/build/src/sections/Home/Home.test.d.ts +1 -0
- package/build/src/sections/Home/index.d.ts +1 -0
- package/build/src/sections/SideBar/Sidebar.d.ts +3 -0
- package/build/src/sections/SideBar/Sidebar.stories.d.ts +7 -0
- package/build/src/sections/SideBar/Sidebar.test.d.ts +1 -0
- package/build/src/sections/SideBar/index.d.ts +1 -0
- package/build/src/sections/index.d.ts +2 -0
- package/build/src/store/api.d.ts +11 -0
- package/build/src/store/index.d.ts +3 -0
- package/build/src/store/models/configuration.d.ts +24 -0
- package/build/src/store/models/download.d.ts +16 -0
- package/build/src/store/models/index.d.ts +16 -0
- package/build/src/store/models/login.d.ts +69 -0
- package/build/src/store/models/manifest.d.ts +43 -0
- package/build/src/store/models/packages.d.ts +28 -0
- package/build/src/store/models/search.d.ts +42 -0
- package/build/src/store/storage.d.ts +2 -0
- package/build/src/store/store.d.ts +9 -0
- package/build/src/test/i18n-config.d.ts +2 -0
- package/build/src/test/test-react-testing-library.d.ts +8 -0
- package/build/src/types/index.d.ts +10 -0
- package/build/src/types/packageMeta.d.ts +85 -0
- package/build/src/utils/__partials__/packageMeta.d.ts +235 -0
- package/build/src/utils/cli-utils.d.ts +6 -0
- package/build/src/utils/index.d.ts +6 -0
- package/build/src/utils/loadable.d.ts +12 -0
- package/build/src/utils/routes.d.ts +7 -0
- package/build/src/utils/token.d.ts +1 -0
- package/build/src/utils/url.d.ts +4 -0
- package/build/src/utils/utils.d.ts +32 -0
- package/build/store/api.js +69 -0
- package/build/store/index.js +52 -0
- package/build/store/models/configuration.js +48 -0
- package/build/store/models/download.js +39 -0
- package/build/store/models/index.js +21 -0
- package/build/store/models/login.js +102 -0
- package/build/store/models/manifest.js +98 -0
- package/build/store/models/packages.js +43 -0
- package/build/store/models/search.js +89 -0
- package/build/store/storage.js +18 -0
- package/build/store/store.js +15 -0
- package/build/test/i18n-config.js +25 -0
- package/build/test/test-react-testing-library.js +53 -0
- package/build/types/index.js +6 -0
- package/build/types/packageMeta.js +6 -0
- package/build/utils/__partials__/packageMeta.js +534 -0
- package/build/utils/cli-utils.js +49 -0
- package/build/utils/index.js +75 -0
- package/build/utils/loadable.js +27 -0
- package/build/utils/routes.js +15 -0
- package/build/utils/token.js +35 -0
- package/build/utils/url.js +64 -0
- package/build/utils/utils.js +102 -0
- package/package.json +70 -12
- package/src/Theme/ResetStyles.tsx +44 -0
- package/src/Theme/StyleBaseline.tsx +14 -0
- package/src/Theme/ThemeProvider.tsx +44 -0
- package/src/Theme/colors.ts +1 -0
- package/src/Theme/index.ts +4 -0
- package/src/Theme/theme.ts +168 -0
- package/src/__mocks__/react-markdown.tsx +8 -0
- package/src/__mocks__/remark-plugin.ts +1 -0
- package/src/components/ActionBar/ActionBar.stories.tsx +64 -0
- package/src/components/ActionBar/ActionBar.test.tsx +92 -0
- package/src/components/ActionBar/ActionBar.tsx +63 -0
- package/src/components/ActionBar/ActionBarAction.tsx +89 -0
- package/src/components/ActionBar/index.ts +1 -0
- package/src/components/Author/Author.stories.tsx +53 -0
- package/src/components/Author/Author.test.tsx +69 -0
- package/src/components/Author/Author.tsx +68 -0
- package/src/components/Author/index.ts +1 -0
- package/src/components/Author/styles.ts +16 -0
- package/src/components/CopyClipboard/CopyToClipBoard.stories.tsx +20 -0
- package/src/components/CopyClipboard/CopyToClipBoard.tsx +51 -0
- package/src/components/CopyClipboard/index.ts +2 -0
- package/src/components/CopyClipboard/utils.ts +21 -0
- package/src/components/Dependencies/Dependencies.stories.tsx +158 -0
- package/src/components/Dependencies/Dependencies.test.tsx +69 -0
- package/src/components/Dependencies/Dependencies.tsx +69 -0
- package/src/components/Dependencies/DependencyBlock.test.tsx +33 -0
- package/src/components/Dependencies/DependencyBlock.tsx +69 -0
- package/src/components/Dependencies/index.ts +1 -0
- package/src/components/Dependencies/types.ts +7 -0
- package/src/components/Dependencies/utits.ts +3 -0
- package/src/components/Deprecated/Deprecated.stories.tsx +9 -0
- package/src/components/Deprecated/Deprecated.test.tsx +26 -0
- package/src/components/Deprecated/Deprecated.tsx +18 -0
- package/src/components/Deprecated/index.ts +1 -0
- package/src/components/Developers/Developers.stories.tsx +60 -0
- package/src/components/Developers/Developers.test.tsx +102 -0
- package/src/components/Developers/Developers.tsx +82 -0
- package/src/components/Developers/Title.tsx +32 -0
- package/src/components/Developers/get-unique-developer-values.ts +16 -0
- package/src/components/Developers/index.ts +1 -0
- package/src/components/Developers/styles.ts +31 -0
- package/src/components/Distribution/Dist.stories.tsx +67 -0
- package/src/components/Distribution/Dist.test.tsx +99 -0
- package/src/components/Distribution/Dist.tsx +58 -0
- package/src/components/Distribution/index.ts +1 -0
- package/src/components/Distribution/styles.ts +29 -0
- package/src/components/Distribution/utils.ts +32 -0
- package/src/components/Distribution/utilts.spec.ts +17 -0
- package/src/components/Engines/Engines.stories.tsx +71 -0
- package/src/components/Engines/Engines.test.tsx +56 -0
- package/src/components/Engines/Engines.tsx +95 -0
- package/src/components/Engines/index.ts +1 -0
- package/src/components/Engines/styles.ts +14 -0
- package/src/components/ErrorBoundary/ErrorBoundary.tsx +38 -0
- package/src/components/ErrorBoundary/index.ts +1 -0
- package/src/components/FundButton/FundButton.stories.tsx +56 -0
- package/src/components/FundButton/FundButton.test.tsx +84 -0
- package/src/components/FundButton/FundButton.tsx +48 -0
- package/src/components/FundButton/index.ts +1 -0
- package/src/components/HeaderInfoDialog/HeaderInfoDialog.tsx +82 -0
- package/src/components/HeaderInfoDialog/index.ts +1 -0
- package/src/components/Heading/Heading.tsx +16 -0
- package/src/components/Heading/index.ts +1 -0
- package/src/components/Help/Help.stories.tsx +9 -0
- package/src/components/Help/Help.test.tsx +18 -0
- package/src/components/Help/Help.tsx +54 -0
- package/src/components/Help/index.ts +1 -0
- package/src/components/Help/styles.ts +7 -0
- package/src/components/Icons/.eslintrc +5 -0
- package/src/components/Icons/DevsIcons/CommonJS.tsx +13 -0
- package/src/components/Icons/DevsIcons/ES6Module.tsx +13 -0
- package/src/components/Icons/DevsIcons/Git.tsx +13 -0
- package/src/components/Icons/DevsIcons/NodeJS.tsx +13 -0
- package/src/components/Icons/DevsIcons/TypeScript.tsx +13 -0
- package/src/components/Icons/DevsIcons/commonjs.svg +4 -0
- package/src/components/Icons/DevsIcons/es6modules.svg +4 -0
- package/src/components/Icons/DevsIcons/git.svg +4 -0
- package/src/components/Icons/DevsIcons/index.ts +5 -0
- package/src/components/Icons/DevsIcons/nodejs.svg +6 -0
- package/src/components/Icons/DevsIcons/typescript.svg +4 -0
- package/src/components/Icons/Earth.tsx +36 -0
- package/src/components/Icons/FileBinary.tsx +20 -0
- package/src/components/Icons/Icons.stories.tsx +37 -0
- package/src/components/Icons/Law.tsx +20 -0
- package/src/components/Icons/License.tsx +18 -0
- package/src/components/Icons/Managers/Npm.tsx +13 -0
- package/src/components/Icons/Managers/Pnpm.tsx +13 -0
- package/src/components/Icons/Managers/Yarn.tsx +13 -0
- package/src/components/Icons/Managers/index.ts +3 -0
- package/src/components/Icons/Managers/npm.svg +15 -0
- package/src/components/Icons/Managers/pnpm.svg +1 -0
- package/src/components/Icons/Managers/yarn.svg +1 -0
- package/src/components/Icons/SvgIcon.tsx +39 -0
- package/src/components/Icons/Time.tsx +19 -0
- package/src/components/Icons/Version.tsx +20 -0
- package/src/components/Icons/index.ts +8 -0
- package/src/components/Install/Install.stories.tsx +87 -0
- package/src/components/Install/Install.test.tsx +76 -0
- package/src/components/Install/Install.tsx +78 -0
- package/src/components/Install/InstallListItem.tsx +134 -0
- package/src/components/Install/__partials__/data.json +5984 -0
- package/src/components/Install/img/npm.svg +15 -0
- package/src/components/Install/img/pnpm.svg +1 -0
- package/src/components/Install/img/yarn.svg +1 -0
- package/src/components/Install/index.ts +1 -0
- package/src/components/Label/Label.test.tsx +14 -0
- package/src/components/Label/Label.tsx +36 -0
- package/src/components/Label/index.ts +1 -0
- package/src/components/Link/Link.tsx +39 -0
- package/src/components/Link/index.ts +1 -0
- package/src/components/Loading/Loading.stories.tsx +14 -0
- package/src/components/Loading/Loading.test.tsx +12 -0
- package/src/components/Loading/Loading.tsx +16 -0
- package/src/components/Loading/Spinner/Spinner.test.tsx +13 -0
- package/src/components/Loading/Spinner/Spinner.tsx +34 -0
- package/src/components/Loading/Spinner/index.tsx +1 -0
- package/src/components/Loading/index.ts +1 -0
- package/src/components/Loading/styles.ts +17 -0
- package/src/components/LoginDialog/LoginDialog.stories.tsx +20 -0
- package/src/components/LoginDialog/LoginDialog.test.tsx +108 -0
- package/src/components/LoginDialog/LoginDialog.tsx +79 -0
- package/src/components/LoginDialog/LoginDialogCloseButton.tsx +32 -0
- package/src/components/LoginDialog/LoginDialogForm.tsx +96 -0
- package/src/components/LoginDialog/LoginDialogFormError.tsx +42 -0
- package/src/components/LoginDialog/LoginDialogHeader.tsx +48 -0
- package/src/components/LoginDialog/index.ts +1 -0
- package/src/components/Logo/Logo.test.tsx +11 -0
- package/src/components/Logo/Logo.tsx +55 -0
- package/src/components/Logo/img/logo-black-and-white.svg +1 -0
- package/src/components/Logo/img/logo.svg +1 -0
- package/src/components/Logo/index.ts +1 -0
- package/src/components/MenuItem/MenuItem.tsx +25 -0
- package/src/components/MenuItem/index.ts +1 -0
- package/src/components/NoItems/NoItems.stories.tsx +11 -0
- package/src/components/NoItems/NoItems.tsx +15 -0
- package/src/components/NoItems/Noitems.test.tsx +15 -0
- package/src/components/NoItems/index.ts +1 -0
- package/src/components/NotFound/NotFound.tsx +52 -0
- package/src/components/NotFound/Notfound.test.tsx +36 -0
- package/src/components/NotFound/img/package.svg +1 -0
- package/src/components/NotFound/index.ts +1 -0
- package/src/components/Package/Package.test.tsx +54 -0
- package/src/components/Package/Package.tsx +269 -0
- package/src/components/Package/Tag/Tag.test.tsx +15 -0
- package/src/components/Package/Tag/Tag.tsx +11 -0
- package/src/components/Package/Tag/index.ts +1 -0
- package/src/components/Package/Tag/styles.ts +11 -0
- package/src/components/Package/index.ts +1 -0
- package/src/components/Package/styles.ts +104 -0
- package/src/components/PackageList/PackageList.tsx +81 -0
- package/src/components/PackageList/Packagelist.test.tsx +58 -0
- package/src/components/PackageList/index.ts +1 -0
- package/src/components/RawViewer/RawViewer.tsx +67 -0
- package/src/components/RawViewer/index.ts +1 -0
- package/src/components/Readme/Readme.spec.tsx +18 -0
- package/src/components/Readme/Readme.tsx +41 -0
- package/src/components/Readme/github-markdown.css +1198 -0
- package/src/components/Readme/index.ts +1 -0
- package/src/components/Readme/types.ts +3 -0
- package/src/components/Readme/utils.ts +29 -0
- package/src/components/RegistryInfoDialog/RegistryInfoDialog.tsx +31 -0
- package/src/components/RegistryInfoDialog/index.ts +1 -0
- package/src/components/RegistryInfoDialog/styles.ts +21 -0
- package/src/components/RegistryInfoDialog/types.ts +8 -0
- package/src/components/Repository/Repository.stories.tsx +70 -0
- package/src/components/Repository/Repository.test.tsx +43 -0
- package/src/components/Repository/Repository.tsx +88 -0
- package/src/components/Repository/__partials__/data.json +5984 -0
- package/src/components/Repository/img/git.png +0 -0
- package/src/components/Repository/index.ts +1 -0
- package/src/components/Search/AutoComplete/AutoComplete.tsx +83 -0
- package/src/components/Search/AutoComplete/index.ts +1 -0
- package/src/components/Search/AutoComplete/styles.tsx +42 -0
- package/src/components/Search/Search.stories.tsx +30 -0
- package/src/components/Search/Search.test.tsx +153 -0
- package/src/components/Search/Search.tsx +162 -0
- package/src/components/Search/SearchItem.tsx +114 -0
- package/src/components/Search/index.ts +1 -0
- package/src/components/Search/styles.ts +41 -0
- package/src/components/SettingsMenu/SettingsMenu.tsx +86 -0
- package/src/components/SettingsMenu/index.ts +1 -0
- package/src/components/SideBarTitle/SideBarTitle.stories.tsx +68 -0
- package/src/components/SideBarTitle/SideBarTitle.tsx +82 -0
- package/src/components/SideBarTitle/index.ts +1 -0
- package/src/components/SideBarTitle/utils.ts +12 -0
- package/src/components/TextField/TextField.test.tsx +15 -0
- package/src/components/TextField/TextField.tsx +24 -0
- package/src/components/TextField/index.ts +1 -0
- package/src/components/UpLinks/UpLinks.test.tsx +47 -0
- package/src/components/UpLinks/UpLinks.tsx +41 -0
- package/src/components/UpLinks/Uplinks.stories.tsx +47 -0
- package/src/components/UpLinks/index.ts +1 -0
- package/src/components/UpLinks/styles.ts +24 -0
- package/src/components/Versions/HistoryList.tsx +69 -0
- package/src/components/Versions/TagList.tsx +33 -0
- package/src/components/Versions/Versions.test.tsx +54 -0
- package/src/components/Versions/Versions.tsx +56 -0
- package/src/components/Versions/__partials__/data.json +5985 -0
- package/src/components/Versions/__partials__/deprecated-versions.json +175 -0
- package/src/components/Versions/index.ts +1 -0
- package/src/components/Versions/styles.ts +20 -0
- package/src/components/Versions/types.ts +17 -0
- package/src/hooks/index.ts +2 -0
- package/src/hooks/useLocalStorage.ts +49 -0
- package/src/hooks/useOnClickOutside.ts +33 -0
- package/src/index.ts +60 -0
- package/src/layouts/Version/Version.stories.tsx +44 -0
- package/src/layouts/Version/Version.tsx +19 -0
- package/src/layouts/Version/index.ts +1 -0
- package/src/providers/AppConfigurationProvider/AppConfigurationProvider.tsx +74 -0
- package/src/providers/AppConfigurationProvider/index.ts +1 -0
- package/src/providers/PersistenceSettingProvider/PersistenceSettingProvider.tsx +59 -0
- package/src/providers/PersistenceSettingProvider/index.ts +1 -0
- package/src/providers/TranslatorProvider/TranslatorProvider.spec.tsx +52 -0
- package/src/providers/TranslatorProvider/TranslatorProvider.tsx +54 -0
- package/src/providers/TranslatorProvider/index.ts +1 -0
- package/src/providers/VersionProvider/README.md +22 -0
- package/src/providers/VersionProvider/VersionProvider.test.tsx +49 -0
- package/src/providers/VersionProvider/VersionProvider.tsx +92 -0
- package/src/providers/VersionProvider/index.ts +1 -0
- package/src/providers/index.ts +3 -0
- package/src/sections/Detail/ContainerContent.tsx +46 -0
- package/src/sections/Detail/Detail.stories.tsx +29 -0
- package/src/sections/Detail/Detail.test.tsx +12 -0
- package/src/sections/Detail/Detail.tsx +34 -0
- package/src/sections/Detail/ReadmeSection.tsx +17 -0
- package/src/sections/Detail/Tabs.tsx +36 -0
- package/src/sections/Detail/index.ts +1 -0
- package/src/sections/Footer/Footer.test.tsx +20 -0
- package/src/sections/Footer/Footer.tsx +112 -0
- package/src/sections/Footer/index.ts +1 -0
- package/src/sections/Footer/styles.ts +44 -0
- package/src/sections/Header/Header.stories.tsx +36 -0
- package/src/sections/Header/Header.test.tsx +278 -0
- package/src/sections/Header/Header.tsx +79 -0
- package/src/sections/Header/HeaderGreetings.tsx +21 -0
- package/src/sections/Header/HeaderLeft.tsx +29 -0
- package/src/sections/Header/HeaderMenu.tsx +63 -0
- package/src/sections/Header/HeaderRight.tsx +131 -0
- package/src/sections/Header/HeaderSettingsDialog.tsx +80 -0
- package/src/sections/Header/HeaderToolTip.tsx +15 -0
- package/src/sections/Header/HeaderToolTipIcon.tsx +87 -0
- package/src/sections/Header/LanguageSwitch.tsx +99 -0
- package/src/sections/Header/RegistryInfoContent/RegistryInfoContent.test.tsx +26 -0
- package/src/sections/Header/RegistryInfoContent/RegistryInfoContent.tsx +191 -0
- package/src/sections/Header/RegistryInfoContent/index.ts +1 -0
- package/src/sections/Header/RegistryInfoContent/styles.ts +13 -0
- package/src/sections/Header/RegistryInfoDialog/RegistryInfoDialog.tsx +31 -0
- package/src/sections/Header/RegistryInfoDialog/index.ts +1 -0
- package/src/sections/Header/RegistryInfoDialog/styles.ts +21 -0
- package/src/sections/Header/RegistryInfoDialog/types.ts +8 -0
- package/src/sections/Header/index.ts +1 -0
- package/src/sections/Header/styles.ts +100 -0
- package/src/sections/Home/Home.stories.tsx +16 -0
- package/src/sections/Home/Home.test.tsx +29 -0
- package/src/sections/Home/Home.tsx +21 -0
- package/src/sections/Home/index.ts +1 -0
- package/src/sections/SideBar/Sidebar.stories.tsx +39 -0
- package/src/sections/SideBar/Sidebar.test.tsx +67 -0
- package/src/sections/SideBar/Sidebar.tsx +69 -0
- package/src/sections/SideBar/index.ts +1 -0
- package/src/sections/index.ts +2 -0
- package/src/store/api.test.ts +136 -0
- package/src/store/api.ts +73 -0
- package/src/store/index.ts +3 -0
- package/src/store/models/configuration.ts +46 -0
- package/src/store/models/download.ts +33 -0
- package/src/store/models/index.ts +18 -0
- package/src/store/models/login.test.ts +38 -0
- package/src/store/models/login.ts +106 -0
- package/src/store/models/manifest.ts +98 -0
- package/src/store/models/packages.ts +43 -0
- package/src/store/models/search.ts +86 -0
- package/src/store/storage.ts +12 -0
- package/src/store/store.ts +15 -0
- package/src/test/i18n-config.ts +19 -0
- package/src/test/test-react-testing-library.tsx +47 -0
- package/src/types/index.d.ts +2 -0
- package/src/types/index.ts +11 -0
- package/src/types/packageMeta.ts +93 -0
- package/src/utils/.eslintrc +5 -0
- package/src/utils/__partials__/packageMeta.ts +590 -0
- package/src/utils/cli-utils.test.ts +66 -0
- package/src/utils/cli-utils.ts +53 -0
- package/src/utils/index.ts +11 -0
- package/src/utils/loadable.tsx +20 -0
- package/src/utils/routes.ts +7 -0
- package/src/utils/token.test.ts +54 -0
- package/src/utils/token.ts +33 -0
- package/src/utils/url.test.ts +32 -0
- package/src/utils/url.ts +57 -0
- package/src/utils/utils.test.ts +113 -0
- package/src/utils/utils.ts +120 -0
- package/tsconfig.build.json +22 -0
- package/tsconfig.json +21 -0
- package/LICENSE +0 -21
|
@@ -0,0 +1,1198 @@
|
|
|
1
|
+
/* Ensure monospace for combination with highlight.js */
|
|
2
|
+
|
|
3
|
+
.markdown-body pre code span {
|
|
4
|
+
font-family: monospace;
|
|
5
|
+
font-size: 1em;
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
/* Output from https://github.com/sindresorhus/generate-github-markdown-css without media selectors and transparent background */
|
|
9
|
+
|
|
10
|
+
.markdown-dark {
|
|
11
|
+
/*dark*/
|
|
12
|
+
color-scheme: dark;
|
|
13
|
+
--color-prettylights-syntax-comment: #8b949e;
|
|
14
|
+
--color-prettylights-syntax-constant: #79c0ff;
|
|
15
|
+
--color-prettylights-syntax-entity: #d2a8ff;
|
|
16
|
+
--color-prettylights-syntax-storage-modifier-import: #c9d1d9;
|
|
17
|
+
--color-prettylights-syntax-entity-tag: #7ee787;
|
|
18
|
+
--color-prettylights-syntax-keyword: #ff7b72;
|
|
19
|
+
--color-prettylights-syntax-string: #a5d6ff;
|
|
20
|
+
--color-prettylights-syntax-variable: #ffa657;
|
|
21
|
+
--color-prettylights-syntax-brackethighlighter-unmatched: #f85149;
|
|
22
|
+
--color-prettylights-syntax-invalid-illegal-text: #f0f6fc;
|
|
23
|
+
--color-prettylights-syntax-invalid-illegal-bg: #8e1519;
|
|
24
|
+
--color-prettylights-syntax-carriage-return-text: #f0f6fc;
|
|
25
|
+
--color-prettylights-syntax-carriage-return-bg: #b62324;
|
|
26
|
+
--color-prettylights-syntax-string-regexp: #7ee787;
|
|
27
|
+
--color-prettylights-syntax-markup-list: #f2cc60;
|
|
28
|
+
--color-prettylights-syntax-markup-heading: #1f6feb;
|
|
29
|
+
--color-prettylights-syntax-markup-italic: #c9d1d9;
|
|
30
|
+
--color-prettylights-syntax-markup-bold: #c9d1d9;
|
|
31
|
+
--color-prettylights-syntax-markup-deleted-text: #ffdcd7;
|
|
32
|
+
--color-prettylights-syntax-markup-deleted-bg: #67060c;
|
|
33
|
+
--color-prettylights-syntax-markup-inserted-text: #aff5b4;
|
|
34
|
+
--color-prettylights-syntax-markup-inserted-bg: #033a16;
|
|
35
|
+
--color-prettylights-syntax-markup-changed-text: #ffdfb6;
|
|
36
|
+
--color-prettylights-syntax-markup-changed-bg: #5a1e02;
|
|
37
|
+
--color-prettylights-syntax-markup-ignored-text: #c9d1d9;
|
|
38
|
+
--color-prettylights-syntax-markup-ignored-bg: #1158c7;
|
|
39
|
+
--color-prettylights-syntax-meta-diff-range: #d2a8ff;
|
|
40
|
+
--color-prettylights-syntax-brackethighlighter-angle: #8b949e;
|
|
41
|
+
--color-prettylights-syntax-sublimelinter-gutter-mark: #484f58;
|
|
42
|
+
--color-prettylights-syntax-constant-other-reference-link: #a5d6ff;
|
|
43
|
+
--color-fg-default: #e6edf3;
|
|
44
|
+
--color-fg-muted: #848d97;
|
|
45
|
+
--color-fg-subtle: #6e7681;
|
|
46
|
+
--color-canvas-default: #0d1117;
|
|
47
|
+
--color-canvas-subtle: #161b22;
|
|
48
|
+
--color-border-default: #30363d;
|
|
49
|
+
--color-border-muted: #21262d;
|
|
50
|
+
--color-neutral-muted: rgba(110,118,129,0.4);
|
|
51
|
+
--color-accent-fg: #2f81f7;
|
|
52
|
+
--color-accent-emphasis: #1f6feb;
|
|
53
|
+
--color-success-fg: #3fb950;
|
|
54
|
+
--color-success-emphasis: #238636;
|
|
55
|
+
--color-attention-fg: #d29922;
|
|
56
|
+
--color-attention-emphasis: #9e6a03;
|
|
57
|
+
--color-attention-subtle: rgba(187,128,9,0.15);
|
|
58
|
+
--color-danger-fg: #f85149;
|
|
59
|
+
--color-danger-emphasis: #da3633;
|
|
60
|
+
--color-done-fg: #a371f7;
|
|
61
|
+
--color-done-emphasis: #8957e5;
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
.markdown-light {
|
|
65
|
+
/*light*/
|
|
66
|
+
color-scheme: light;
|
|
67
|
+
--color-prettylights-syntax-comment: #57606a;
|
|
68
|
+
--color-prettylights-syntax-constant: #0550ae;
|
|
69
|
+
--color-prettylights-syntax-entity: #6639ba;
|
|
70
|
+
--color-prettylights-syntax-storage-modifier-import: #24292f;
|
|
71
|
+
--color-prettylights-syntax-entity-tag: #116329;
|
|
72
|
+
--color-prettylights-syntax-keyword: #cf222e;
|
|
73
|
+
--color-prettylights-syntax-string: #0a3069;
|
|
74
|
+
--color-prettylights-syntax-variable: #953800;
|
|
75
|
+
--color-prettylights-syntax-brackethighlighter-unmatched: #82071e;
|
|
76
|
+
--color-prettylights-syntax-invalid-illegal-text: #f6f8fa;
|
|
77
|
+
--color-prettylights-syntax-invalid-illegal-bg: #82071e;
|
|
78
|
+
--color-prettylights-syntax-carriage-return-text: #f6f8fa;
|
|
79
|
+
--color-prettylights-syntax-carriage-return-bg: #cf222e;
|
|
80
|
+
--color-prettylights-syntax-string-regexp: #116329;
|
|
81
|
+
--color-prettylights-syntax-markup-list: #3b2300;
|
|
82
|
+
--color-prettylights-syntax-markup-heading: #0550ae;
|
|
83
|
+
--color-prettylights-syntax-markup-italic: #24292f;
|
|
84
|
+
--color-prettylights-syntax-markup-bold: #24292f;
|
|
85
|
+
--color-prettylights-syntax-markup-deleted-text: #82071e;
|
|
86
|
+
--color-prettylights-syntax-markup-deleted-bg: #ffebe9;
|
|
87
|
+
--color-prettylights-syntax-markup-inserted-text: #116329;
|
|
88
|
+
--color-prettylights-syntax-markup-inserted-bg: #dafbe1;
|
|
89
|
+
--color-prettylights-syntax-markup-changed-text: #953800;
|
|
90
|
+
--color-prettylights-syntax-markup-changed-bg: #ffd8b5;
|
|
91
|
+
--color-prettylights-syntax-markup-ignored-text: #eaeef2;
|
|
92
|
+
--color-prettylights-syntax-markup-ignored-bg: #0550ae;
|
|
93
|
+
--color-prettylights-syntax-meta-diff-range: #8250df;
|
|
94
|
+
--color-prettylights-syntax-brackethighlighter-angle: #57606a;
|
|
95
|
+
--color-prettylights-syntax-sublimelinter-gutter-mark: #8c959f;
|
|
96
|
+
--color-prettylights-syntax-constant-other-reference-link: #0a3069;
|
|
97
|
+
--color-fg-default: #1F2328;
|
|
98
|
+
--color-fg-muted: #656d76;
|
|
99
|
+
--color-fg-subtle: #6e7781;
|
|
100
|
+
--color-canvas-default: #ffffff;
|
|
101
|
+
--color-canvas-subtle: #f6f8fa;
|
|
102
|
+
--color-border-default: #d0d7de;
|
|
103
|
+
--color-border-muted: hsla(210,18%,87%,1);
|
|
104
|
+
--color-neutral-muted: rgba(175,184,193,0.2);
|
|
105
|
+
--color-accent-fg: #0969da;
|
|
106
|
+
--color-accent-emphasis: #0969da;
|
|
107
|
+
--color-success-fg: #1a7f37;
|
|
108
|
+
--color-success-emphasis: #1f883d;
|
|
109
|
+
--color-attention-fg: #9a6700;
|
|
110
|
+
--color-attention-emphasis: #9a6700;
|
|
111
|
+
--color-attention-subtle: #fff8c5;
|
|
112
|
+
--color-danger-fg: #d1242f;
|
|
113
|
+
--color-danger-emphasis: #cf222e;
|
|
114
|
+
--color-done-fg: #8250df;
|
|
115
|
+
--color-done-emphasis: #8250df;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
.markdown-body {
|
|
119
|
+
-ms-text-size-adjust: 100%;
|
|
120
|
+
-webkit-text-size-adjust: 100%;
|
|
121
|
+
margin: 0;
|
|
122
|
+
color: var(--color-fg-default);
|
|
123
|
+
background-color: transparent; /* var(--color-canvas-default); */
|
|
124
|
+
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans",Helvetica,Arial,sans-serif,"Apple Color Emoji","Segoe UI Emoji";
|
|
125
|
+
font-size: 16px;
|
|
126
|
+
line-height: 1.5;
|
|
127
|
+
word-wrap: break-word;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.markdown-body .octicon {
|
|
131
|
+
display: inline-block;
|
|
132
|
+
fill: currentColor;
|
|
133
|
+
vertical-align: text-bottom;
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
.markdown-body h1:hover .anchor .octicon-link:before,
|
|
137
|
+
.markdown-body h2:hover .anchor .octicon-link:before,
|
|
138
|
+
.markdown-body h3:hover .anchor .octicon-link:before,
|
|
139
|
+
.markdown-body h4:hover .anchor .octicon-link:before,
|
|
140
|
+
.markdown-body h5:hover .anchor .octicon-link:before,
|
|
141
|
+
.markdown-body h6:hover .anchor .octicon-link:before {
|
|
142
|
+
width: 16px;
|
|
143
|
+
height: 16px;
|
|
144
|
+
content: ' ';
|
|
145
|
+
display: inline-block;
|
|
146
|
+
background-color: currentColor;
|
|
147
|
+
-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>");
|
|
148
|
+
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>");
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
.markdown-body details,
|
|
152
|
+
.markdown-body figcaption,
|
|
153
|
+
.markdown-body figure {
|
|
154
|
+
display: block;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
.markdown-body summary {
|
|
158
|
+
display: list-item;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
.markdown-body [hidden] {
|
|
162
|
+
display: none !important;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
.markdown-body a {
|
|
166
|
+
background-color: transparent;
|
|
167
|
+
color: var(--color-accent-fg);
|
|
168
|
+
text-decoration: none;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
.markdown-body abbr[title] {
|
|
172
|
+
border-bottom: none;
|
|
173
|
+
-webkit-text-decoration: underline dotted;
|
|
174
|
+
text-decoration: underline dotted;
|
|
175
|
+
}
|
|
176
|
+
|
|
177
|
+
.markdown-body b,
|
|
178
|
+
.markdown-body strong {
|
|
179
|
+
font-weight: var(--base-text-weight-semibold, 600);
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
.markdown-body dfn {
|
|
183
|
+
font-style: italic;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
.markdown-body h1 {
|
|
187
|
+
margin: .67em 0;
|
|
188
|
+
font-weight: var(--base-text-weight-semibold, 600);
|
|
189
|
+
padding-bottom: .3em;
|
|
190
|
+
font-size: 2em;
|
|
191
|
+
border-bottom: 1px solid var(--color-border-muted);
|
|
192
|
+
}
|
|
193
|
+
|
|
194
|
+
.markdown-body mark {
|
|
195
|
+
background-color: var(--color-attention-subtle);
|
|
196
|
+
color: var(--color-fg-default);
|
|
197
|
+
}
|
|
198
|
+
|
|
199
|
+
.markdown-body small {
|
|
200
|
+
font-size: 90%;
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
.markdown-body sub,
|
|
204
|
+
.markdown-body sup {
|
|
205
|
+
font-size: 75%;
|
|
206
|
+
line-height: 0;
|
|
207
|
+
position: relative;
|
|
208
|
+
vertical-align: baseline;
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
.markdown-body sub {
|
|
212
|
+
bottom: -0.25em;
|
|
213
|
+
}
|
|
214
|
+
|
|
215
|
+
.markdown-body sup {
|
|
216
|
+
top: -0.5em;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
.markdown-body img {
|
|
220
|
+
border-style: none;
|
|
221
|
+
max-width: 100%;
|
|
222
|
+
box-sizing: content-box;
|
|
223
|
+
background-color: var(--color-canvas-default);
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
.markdown-body code,
|
|
227
|
+
.markdown-body kbd,
|
|
228
|
+
.markdown-body pre,
|
|
229
|
+
.markdown-body samp {
|
|
230
|
+
font-family: monospace;
|
|
231
|
+
font-size: 1em;
|
|
232
|
+
}
|
|
233
|
+
|
|
234
|
+
.markdown-body figure {
|
|
235
|
+
margin: 1em 40px;
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
.markdown-body hr {
|
|
239
|
+
box-sizing: content-box;
|
|
240
|
+
overflow: hidden;
|
|
241
|
+
background: transparent;
|
|
242
|
+
border-bottom: 1px solid var(--color-border-muted);
|
|
243
|
+
height: .25em;
|
|
244
|
+
padding: 0;
|
|
245
|
+
margin: 24px 0;
|
|
246
|
+
background-color: var(--color-border-default);
|
|
247
|
+
border: 0;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
.markdown-body input {
|
|
251
|
+
font: inherit;
|
|
252
|
+
margin: 0;
|
|
253
|
+
overflow: visible;
|
|
254
|
+
font-family: inherit;
|
|
255
|
+
font-size: inherit;
|
|
256
|
+
line-height: inherit;
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
.markdown-body [type=button],
|
|
260
|
+
.markdown-body [type=reset],
|
|
261
|
+
.markdown-body [type=submit] {
|
|
262
|
+
-webkit-appearance: button;
|
|
263
|
+
appearance: button;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
.markdown-body [type=checkbox],
|
|
267
|
+
.markdown-body [type=radio] {
|
|
268
|
+
box-sizing: border-box;
|
|
269
|
+
padding: 0;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
.markdown-body [type=number]::-webkit-inner-spin-button,
|
|
273
|
+
.markdown-body [type=number]::-webkit-outer-spin-button {
|
|
274
|
+
height: auto;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
.markdown-body [type=search]::-webkit-search-cancel-button,
|
|
278
|
+
.markdown-body [type=search]::-webkit-search-decoration {
|
|
279
|
+
-webkit-appearance: none;
|
|
280
|
+
appearance: none;
|
|
281
|
+
}
|
|
282
|
+
|
|
283
|
+
.markdown-body ::-webkit-input-placeholder {
|
|
284
|
+
color: inherit;
|
|
285
|
+
opacity: .54;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
.markdown-body ::-webkit-file-upload-button {
|
|
289
|
+
-webkit-appearance: button;
|
|
290
|
+
appearance: button;
|
|
291
|
+
font: inherit;
|
|
292
|
+
}
|
|
293
|
+
|
|
294
|
+
.markdown-body a:hover {
|
|
295
|
+
text-decoration: underline;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
.markdown-body ::placeholder {
|
|
299
|
+
color: var(--color-fg-subtle);
|
|
300
|
+
opacity: 1;
|
|
301
|
+
}
|
|
302
|
+
|
|
303
|
+
.markdown-body hr::before {
|
|
304
|
+
display: table;
|
|
305
|
+
content: "";
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
.markdown-body hr::after {
|
|
309
|
+
display: table;
|
|
310
|
+
clear: both;
|
|
311
|
+
content: "";
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
.markdown-body table {
|
|
315
|
+
border-spacing: 0;
|
|
316
|
+
border-collapse: collapse;
|
|
317
|
+
display: block;
|
|
318
|
+
width: max-content;
|
|
319
|
+
max-width: 100%;
|
|
320
|
+
overflow: auto;
|
|
321
|
+
}
|
|
322
|
+
|
|
323
|
+
.markdown-body td,
|
|
324
|
+
.markdown-body th {
|
|
325
|
+
padding: 0;
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
.markdown-body details summary {
|
|
329
|
+
cursor: pointer;
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
.markdown-body details:not([open])>*:not(summary) {
|
|
333
|
+
display: none !important;
|
|
334
|
+
}
|
|
335
|
+
|
|
336
|
+
.markdown-body a:focus,
|
|
337
|
+
.markdown-body [role=button]:focus,
|
|
338
|
+
.markdown-body input[type=radio]:focus,
|
|
339
|
+
.markdown-body input[type=checkbox]:focus {
|
|
340
|
+
outline: 2px solid var(--color-accent-fg);
|
|
341
|
+
outline-offset: -2px;
|
|
342
|
+
box-shadow: none;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
.markdown-body a:focus:not(:focus-visible),
|
|
346
|
+
.markdown-body [role=button]:focus:not(:focus-visible),
|
|
347
|
+
.markdown-body input[type=radio]:focus:not(:focus-visible),
|
|
348
|
+
.markdown-body input[type=checkbox]:focus:not(:focus-visible) {
|
|
349
|
+
outline: solid 1px transparent;
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
.markdown-body a:focus-visible,
|
|
353
|
+
.markdown-body [role=button]:focus-visible,
|
|
354
|
+
.markdown-body input[type=radio]:focus-visible,
|
|
355
|
+
.markdown-body input[type=checkbox]:focus-visible {
|
|
356
|
+
outline: 2px solid var(--color-accent-fg);
|
|
357
|
+
outline-offset: -2px;
|
|
358
|
+
box-shadow: none;
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
.markdown-body a:not([class]):focus,
|
|
362
|
+
.markdown-body a:not([class]):focus-visible,
|
|
363
|
+
.markdown-body input[type=radio]:focus,
|
|
364
|
+
.markdown-body input[type=radio]:focus-visible,
|
|
365
|
+
.markdown-body input[type=checkbox]:focus,
|
|
366
|
+
.markdown-body input[type=checkbox]:focus-visible {
|
|
367
|
+
outline-offset: 0;
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
.markdown-body kbd {
|
|
371
|
+
display: inline-block;
|
|
372
|
+
padding: 3px 5px;
|
|
373
|
+
font: 11px ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;
|
|
374
|
+
line-height: 10px;
|
|
375
|
+
color: var(--color-fg-default);
|
|
376
|
+
vertical-align: middle;
|
|
377
|
+
background-color: var(--color-canvas-subtle);
|
|
378
|
+
border: solid 1px var(--color-neutral-muted);
|
|
379
|
+
border-bottom-color: var(--color-neutral-muted);
|
|
380
|
+
border-radius: 6px;
|
|
381
|
+
box-shadow: inset 0 -1px 0 var(--color-neutral-muted);
|
|
382
|
+
}
|
|
383
|
+
|
|
384
|
+
.markdown-body h1,
|
|
385
|
+
.markdown-body h2,
|
|
386
|
+
.markdown-body h3,
|
|
387
|
+
.markdown-body h4,
|
|
388
|
+
.markdown-body h5,
|
|
389
|
+
.markdown-body h6 {
|
|
390
|
+
margin-top: 24px;
|
|
391
|
+
margin-bottom: 16px;
|
|
392
|
+
font-weight: var(--base-text-weight-semibold, 600);
|
|
393
|
+
line-height: 1.25;
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
.markdown-body h2 {
|
|
397
|
+
font-weight: var(--base-text-weight-semibold, 600);
|
|
398
|
+
padding-bottom: .3em;
|
|
399
|
+
font-size: 1.5em;
|
|
400
|
+
border-bottom: 1px solid var(--color-border-muted);
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
.markdown-body h3 {
|
|
404
|
+
font-weight: var(--base-text-weight-semibold, 600);
|
|
405
|
+
font-size: 1.25em;
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
.markdown-body h4 {
|
|
409
|
+
font-weight: var(--base-text-weight-semibold, 600);
|
|
410
|
+
font-size: 1em;
|
|
411
|
+
}
|
|
412
|
+
|
|
413
|
+
.markdown-body h5 {
|
|
414
|
+
font-weight: var(--base-text-weight-semibold, 600);
|
|
415
|
+
font-size: .875em;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
.markdown-body h6 {
|
|
419
|
+
font-weight: var(--base-text-weight-semibold, 600);
|
|
420
|
+
font-size: .85em;
|
|
421
|
+
color: var(--color-fg-muted);
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
.markdown-body p {
|
|
425
|
+
margin-top: 0;
|
|
426
|
+
margin-bottom: 10px;
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
.markdown-body blockquote {
|
|
430
|
+
margin: 0;
|
|
431
|
+
padding: 0 1em;
|
|
432
|
+
color: var(--color-fg-muted);
|
|
433
|
+
border-left: .25em solid var(--color-border-default);
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
.markdown-body ul,
|
|
437
|
+
.markdown-body ol {
|
|
438
|
+
margin-top: 0;
|
|
439
|
+
margin-bottom: 0;
|
|
440
|
+
padding-left: 2em;
|
|
441
|
+
}
|
|
442
|
+
|
|
443
|
+
.markdown-body ol ol,
|
|
444
|
+
.markdown-body ul ol {
|
|
445
|
+
list-style-type: lower-roman;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
.markdown-body ul ul ol,
|
|
449
|
+
.markdown-body ul ol ol,
|
|
450
|
+
.markdown-body ol ul ol,
|
|
451
|
+
.markdown-body ol ol ol {
|
|
452
|
+
list-style-type: lower-alpha;
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
.markdown-body dd {
|
|
456
|
+
margin-left: 0;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
.markdown-body tt,
|
|
460
|
+
.markdown-body code,
|
|
461
|
+
.markdown-body samp {
|
|
462
|
+
font-family: ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;
|
|
463
|
+
font-size: 12px;
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
.markdown-body pre {
|
|
467
|
+
margin-top: 0;
|
|
468
|
+
margin-bottom: 0;
|
|
469
|
+
font-family: ui-monospace,SFMono-Regular,SF Mono,Menlo,Consolas,Liberation Mono,monospace;
|
|
470
|
+
font-size: 12px;
|
|
471
|
+
word-wrap: normal;
|
|
472
|
+
}
|
|
473
|
+
|
|
474
|
+
.markdown-body .octicon {
|
|
475
|
+
display: inline-block;
|
|
476
|
+
overflow: visible !important;
|
|
477
|
+
vertical-align: text-bottom;
|
|
478
|
+
fill: currentColor;
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
.markdown-body input::-webkit-outer-spin-button,
|
|
482
|
+
.markdown-body input::-webkit-inner-spin-button {
|
|
483
|
+
margin: 0;
|
|
484
|
+
-webkit-appearance: none;
|
|
485
|
+
appearance: none;
|
|
486
|
+
}
|
|
487
|
+
|
|
488
|
+
.markdown-body .mr-2 {
|
|
489
|
+
margin-right: var(--base-size-8, 8px) !important;
|
|
490
|
+
}
|
|
491
|
+
|
|
492
|
+
.markdown-body::before {
|
|
493
|
+
display: table;
|
|
494
|
+
content: "";
|
|
495
|
+
}
|
|
496
|
+
|
|
497
|
+
.markdown-body::after {
|
|
498
|
+
display: table;
|
|
499
|
+
clear: both;
|
|
500
|
+
content: "";
|
|
501
|
+
}
|
|
502
|
+
|
|
503
|
+
.markdown-body>*:first-child {
|
|
504
|
+
margin-top: 0 !important;
|
|
505
|
+
}
|
|
506
|
+
|
|
507
|
+
.markdown-body>*:last-child {
|
|
508
|
+
margin-bottom: 0 !important;
|
|
509
|
+
}
|
|
510
|
+
|
|
511
|
+
.markdown-body a:not([href]) {
|
|
512
|
+
color: inherit;
|
|
513
|
+
text-decoration: none;
|
|
514
|
+
}
|
|
515
|
+
|
|
516
|
+
.markdown-body .absent {
|
|
517
|
+
color: var(--color-danger-fg);
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
.markdown-body .anchor {
|
|
521
|
+
float: left;
|
|
522
|
+
padding-right: 4px;
|
|
523
|
+
margin-left: -20px;
|
|
524
|
+
line-height: 1;
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
.markdown-body .anchor:focus {
|
|
528
|
+
outline: none;
|
|
529
|
+
}
|
|
530
|
+
|
|
531
|
+
.markdown-body p,
|
|
532
|
+
.markdown-body blockquote,
|
|
533
|
+
.markdown-body ul,
|
|
534
|
+
.markdown-body ol,
|
|
535
|
+
.markdown-body dl,
|
|
536
|
+
.markdown-body table,
|
|
537
|
+
.markdown-body pre,
|
|
538
|
+
.markdown-body details {
|
|
539
|
+
margin-top: 0;
|
|
540
|
+
margin-bottom: 16px;
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
.markdown-body blockquote>:first-child {
|
|
544
|
+
margin-top: 0;
|
|
545
|
+
}
|
|
546
|
+
|
|
547
|
+
.markdown-body blockquote>:last-child {
|
|
548
|
+
margin-bottom: 0;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
.markdown-body h1 .octicon-link,
|
|
552
|
+
.markdown-body h2 .octicon-link,
|
|
553
|
+
.markdown-body h3 .octicon-link,
|
|
554
|
+
.markdown-body h4 .octicon-link,
|
|
555
|
+
.markdown-body h5 .octicon-link,
|
|
556
|
+
.markdown-body h6 .octicon-link {
|
|
557
|
+
color: var(--color-fg-default);
|
|
558
|
+
vertical-align: middle;
|
|
559
|
+
visibility: hidden;
|
|
560
|
+
}
|
|
561
|
+
|
|
562
|
+
.markdown-body h1:hover .anchor,
|
|
563
|
+
.markdown-body h2:hover .anchor,
|
|
564
|
+
.markdown-body h3:hover .anchor,
|
|
565
|
+
.markdown-body h4:hover .anchor,
|
|
566
|
+
.markdown-body h5:hover .anchor,
|
|
567
|
+
.markdown-body h6:hover .anchor {
|
|
568
|
+
text-decoration: none;
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
.markdown-body h1:hover .anchor .octicon-link,
|
|
572
|
+
.markdown-body h2:hover .anchor .octicon-link,
|
|
573
|
+
.markdown-body h3:hover .anchor .octicon-link,
|
|
574
|
+
.markdown-body h4:hover .anchor .octicon-link,
|
|
575
|
+
.markdown-body h5:hover .anchor .octicon-link,
|
|
576
|
+
.markdown-body h6:hover .anchor .octicon-link {
|
|
577
|
+
visibility: visible;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
.markdown-body h1 tt,
|
|
581
|
+
.markdown-body h1 code,
|
|
582
|
+
.markdown-body h2 tt,
|
|
583
|
+
.markdown-body h2 code,
|
|
584
|
+
.markdown-body h3 tt,
|
|
585
|
+
.markdown-body h3 code,
|
|
586
|
+
.markdown-body h4 tt,
|
|
587
|
+
.markdown-body h4 code,
|
|
588
|
+
.markdown-body h5 tt,
|
|
589
|
+
.markdown-body h5 code,
|
|
590
|
+
.markdown-body h6 tt,
|
|
591
|
+
.markdown-body h6 code {
|
|
592
|
+
padding: 0 .2em;
|
|
593
|
+
font-size: inherit;
|
|
594
|
+
}
|
|
595
|
+
|
|
596
|
+
.markdown-body summary h1,
|
|
597
|
+
.markdown-body summary h2,
|
|
598
|
+
.markdown-body summary h3,
|
|
599
|
+
.markdown-body summary h4,
|
|
600
|
+
.markdown-body summary h5,
|
|
601
|
+
.markdown-body summary h6 {
|
|
602
|
+
display: inline-block;
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
.markdown-body summary h1 .anchor,
|
|
606
|
+
.markdown-body summary h2 .anchor,
|
|
607
|
+
.markdown-body summary h3 .anchor,
|
|
608
|
+
.markdown-body summary h4 .anchor,
|
|
609
|
+
.markdown-body summary h5 .anchor,
|
|
610
|
+
.markdown-body summary h6 .anchor {
|
|
611
|
+
margin-left: -40px;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
.markdown-body summary h1,
|
|
615
|
+
.markdown-body summary h2 {
|
|
616
|
+
padding-bottom: 0;
|
|
617
|
+
border-bottom: 0;
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
.markdown-body ul.no-list,
|
|
621
|
+
.markdown-body ol.no-list {
|
|
622
|
+
padding: 0;
|
|
623
|
+
list-style-type: none;
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
.markdown-body ol[type="a s"] {
|
|
627
|
+
list-style-type: lower-alpha;
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
.markdown-body ol[type="A s"] {
|
|
631
|
+
list-style-type: upper-alpha;
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
.markdown-body ol[type="i s"] {
|
|
635
|
+
list-style-type: lower-roman;
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
.markdown-body ol[type="I s"] {
|
|
639
|
+
list-style-type: upper-roman;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
.markdown-body ol[type="1"] {
|
|
643
|
+
list-style-type: decimal;
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
.markdown-body div>ol:not([type]) {
|
|
647
|
+
list-style-type: decimal;
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
.markdown-body ul ul,
|
|
651
|
+
.markdown-body ul ol,
|
|
652
|
+
.markdown-body ol ol,
|
|
653
|
+
.markdown-body ol ul {
|
|
654
|
+
margin-top: 0;
|
|
655
|
+
margin-bottom: 0;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
.markdown-body li>p {
|
|
659
|
+
margin-top: 16px;
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
.markdown-body li+li {
|
|
663
|
+
margin-top: .25em;
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
.markdown-body dl {
|
|
667
|
+
padding: 0;
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
.markdown-body dl dt {
|
|
671
|
+
padding: 0;
|
|
672
|
+
margin-top: 16px;
|
|
673
|
+
font-size: 1em;
|
|
674
|
+
font-style: italic;
|
|
675
|
+
font-weight: var(--base-text-weight-semibold, 600);
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
.markdown-body dl dd {
|
|
679
|
+
padding: 0 16px;
|
|
680
|
+
margin-bottom: 16px;
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
.markdown-body table th {
|
|
684
|
+
font-weight: var(--base-text-weight-semibold, 600);
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
.markdown-body table th,
|
|
688
|
+
.markdown-body table td {
|
|
689
|
+
padding: 6px 13px;
|
|
690
|
+
border: 1px solid var(--color-border-default);
|
|
691
|
+
}
|
|
692
|
+
|
|
693
|
+
.markdown-body table td>:last-child {
|
|
694
|
+
margin-bottom: 0;
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
.markdown-body table tr {
|
|
698
|
+
background-color: var(--color-canvas-default);
|
|
699
|
+
border-top: 1px solid var(--color-border-muted);
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
.markdown-body table tr:nth-child(2n) {
|
|
703
|
+
background-color: var(--color-canvas-subtle);
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
.markdown-body table img {
|
|
707
|
+
background-color: transparent;
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
.markdown-body img[align=right] {
|
|
711
|
+
padding-left: 20px;
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
.markdown-body img[align=left] {
|
|
715
|
+
padding-right: 20px;
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
.markdown-body .emoji {
|
|
719
|
+
max-width: none;
|
|
720
|
+
vertical-align: text-top;
|
|
721
|
+
background-color: transparent;
|
|
722
|
+
}
|
|
723
|
+
|
|
724
|
+
.markdown-body span.frame {
|
|
725
|
+
display: block;
|
|
726
|
+
overflow: hidden;
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
.markdown-body span.frame>span {
|
|
730
|
+
display: block;
|
|
731
|
+
float: left;
|
|
732
|
+
width: auto;
|
|
733
|
+
padding: 7px;
|
|
734
|
+
margin: 13px 0 0;
|
|
735
|
+
overflow: hidden;
|
|
736
|
+
border: 1px solid var(--color-border-default);
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
.markdown-body span.frame span img {
|
|
740
|
+
display: block;
|
|
741
|
+
float: left;
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
.markdown-body span.frame span span {
|
|
745
|
+
display: block;
|
|
746
|
+
padding: 5px 0 0;
|
|
747
|
+
clear: both;
|
|
748
|
+
color: var(--color-fg-default);
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
.markdown-body span.align-center {
|
|
752
|
+
display: block;
|
|
753
|
+
overflow: hidden;
|
|
754
|
+
clear: both;
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
.markdown-body span.align-center>span {
|
|
758
|
+
display: block;
|
|
759
|
+
margin: 13px auto 0;
|
|
760
|
+
overflow: hidden;
|
|
761
|
+
text-align: center;
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
.markdown-body span.align-center span img {
|
|
765
|
+
margin: 0 auto;
|
|
766
|
+
text-align: center;
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
.markdown-body span.align-right {
|
|
770
|
+
display: block;
|
|
771
|
+
overflow: hidden;
|
|
772
|
+
clear: both;
|
|
773
|
+
}
|
|
774
|
+
|
|
775
|
+
.markdown-body span.align-right>span {
|
|
776
|
+
display: block;
|
|
777
|
+
margin: 13px 0 0;
|
|
778
|
+
overflow: hidden;
|
|
779
|
+
text-align: right;
|
|
780
|
+
}
|
|
781
|
+
|
|
782
|
+
.markdown-body span.align-right span img {
|
|
783
|
+
margin: 0;
|
|
784
|
+
text-align: right;
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
.markdown-body span.float-left {
|
|
788
|
+
display: block;
|
|
789
|
+
float: left;
|
|
790
|
+
margin-right: 13px;
|
|
791
|
+
overflow: hidden;
|
|
792
|
+
}
|
|
793
|
+
|
|
794
|
+
.markdown-body span.float-left span {
|
|
795
|
+
margin: 13px 0 0;
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
.markdown-body span.float-right {
|
|
799
|
+
display: block;
|
|
800
|
+
float: right;
|
|
801
|
+
margin-left: 13px;
|
|
802
|
+
overflow: hidden;
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
.markdown-body span.float-right>span {
|
|
806
|
+
display: block;
|
|
807
|
+
margin: 13px auto 0;
|
|
808
|
+
overflow: hidden;
|
|
809
|
+
text-align: right;
|
|
810
|
+
}
|
|
811
|
+
|
|
812
|
+
.markdown-body code,
|
|
813
|
+
.markdown-body tt {
|
|
814
|
+
padding: .2em .4em;
|
|
815
|
+
margin: 0;
|
|
816
|
+
font-size: 85%;
|
|
817
|
+
white-space: break-spaces;
|
|
818
|
+
background-color: var(--color-neutral-muted);
|
|
819
|
+
border-radius: 6px;
|
|
820
|
+
}
|
|
821
|
+
|
|
822
|
+
.markdown-body code br,
|
|
823
|
+
.markdown-body tt br {
|
|
824
|
+
display: none;
|
|
825
|
+
}
|
|
826
|
+
|
|
827
|
+
.markdown-body del code {
|
|
828
|
+
text-decoration: inherit;
|
|
829
|
+
}
|
|
830
|
+
|
|
831
|
+
.markdown-body samp {
|
|
832
|
+
font-size: 85%;
|
|
833
|
+
}
|
|
834
|
+
|
|
835
|
+
.markdown-body pre code {
|
|
836
|
+
font-size: 100%;
|
|
837
|
+
}
|
|
838
|
+
|
|
839
|
+
.markdown-body pre>code {
|
|
840
|
+
padding: 0;
|
|
841
|
+
margin: 0;
|
|
842
|
+
word-break: normal;
|
|
843
|
+
white-space: pre;
|
|
844
|
+
background: transparent;
|
|
845
|
+
border: 0;
|
|
846
|
+
}
|
|
847
|
+
|
|
848
|
+
.markdown-body .highlight {
|
|
849
|
+
margin-bottom: 16px;
|
|
850
|
+
}
|
|
851
|
+
|
|
852
|
+
.markdown-body .highlight pre {
|
|
853
|
+
margin-bottom: 0;
|
|
854
|
+
word-break: normal;
|
|
855
|
+
}
|
|
856
|
+
|
|
857
|
+
.markdown-body .highlight pre,
|
|
858
|
+
.markdown-body pre {
|
|
859
|
+
padding: 16px;
|
|
860
|
+
overflow: auto;
|
|
861
|
+
font-size: 85%;
|
|
862
|
+
line-height: 1.45;
|
|
863
|
+
color: var(--color-fg-default);
|
|
864
|
+
background-color: var(--color-canvas-subtle);
|
|
865
|
+
border-radius: 6px;
|
|
866
|
+
}
|
|
867
|
+
|
|
868
|
+
.markdown-body pre code,
|
|
869
|
+
.markdown-body pre tt {
|
|
870
|
+
display: inline;
|
|
871
|
+
max-width: auto;
|
|
872
|
+
padding: 0;
|
|
873
|
+
margin: 0;
|
|
874
|
+
overflow: visible;
|
|
875
|
+
line-height: inherit;
|
|
876
|
+
word-wrap: normal;
|
|
877
|
+
background-color: transparent;
|
|
878
|
+
border: 0;
|
|
879
|
+
}
|
|
880
|
+
|
|
881
|
+
.markdown-body .csv-data td,
|
|
882
|
+
.markdown-body .csv-data th {
|
|
883
|
+
padding: 5px;
|
|
884
|
+
overflow: hidden;
|
|
885
|
+
font-size: 12px;
|
|
886
|
+
line-height: 1;
|
|
887
|
+
text-align: left;
|
|
888
|
+
white-space: nowrap;
|
|
889
|
+
}
|
|
890
|
+
|
|
891
|
+
.markdown-body .csv-data .blob-num {
|
|
892
|
+
padding: 10px 8px 9px;
|
|
893
|
+
text-align: right;
|
|
894
|
+
background: var(--color-canvas-default);
|
|
895
|
+
border: 0;
|
|
896
|
+
}
|
|
897
|
+
|
|
898
|
+
.markdown-body .csv-data tr {
|
|
899
|
+
border-top: 0;
|
|
900
|
+
}
|
|
901
|
+
|
|
902
|
+
.markdown-body .csv-data th {
|
|
903
|
+
font-weight: var(--base-text-weight-semibold, 600);
|
|
904
|
+
background: var(--color-canvas-subtle);
|
|
905
|
+
border-top: 0;
|
|
906
|
+
}
|
|
907
|
+
|
|
908
|
+
.markdown-body [data-footnote-ref]::before {
|
|
909
|
+
content: "[";
|
|
910
|
+
}
|
|
911
|
+
|
|
912
|
+
.markdown-body [data-footnote-ref]::after {
|
|
913
|
+
content: "]";
|
|
914
|
+
}
|
|
915
|
+
|
|
916
|
+
.markdown-body .footnotes {
|
|
917
|
+
font-size: 12px;
|
|
918
|
+
color: var(--color-fg-muted);
|
|
919
|
+
border-top: 1px solid var(--color-border-default);
|
|
920
|
+
}
|
|
921
|
+
|
|
922
|
+
.markdown-body .footnotes ol {
|
|
923
|
+
padding-left: 16px;
|
|
924
|
+
}
|
|
925
|
+
|
|
926
|
+
.markdown-body .footnotes ol ul {
|
|
927
|
+
display: inline-block;
|
|
928
|
+
padding-left: 16px;
|
|
929
|
+
margin-top: 16px;
|
|
930
|
+
}
|
|
931
|
+
|
|
932
|
+
.markdown-body .footnotes li {
|
|
933
|
+
position: relative;
|
|
934
|
+
}
|
|
935
|
+
|
|
936
|
+
.markdown-body .footnotes li:target::before {
|
|
937
|
+
position: absolute;
|
|
938
|
+
top: -8px;
|
|
939
|
+
right: -8px;
|
|
940
|
+
bottom: -8px;
|
|
941
|
+
left: -24px;
|
|
942
|
+
pointer-events: none;
|
|
943
|
+
content: "";
|
|
944
|
+
border: 2px solid var(--color-accent-emphasis);
|
|
945
|
+
border-radius: 6px;
|
|
946
|
+
}
|
|
947
|
+
|
|
948
|
+
.markdown-body .footnotes li:target {
|
|
949
|
+
color: var(--color-fg-default);
|
|
950
|
+
}
|
|
951
|
+
|
|
952
|
+
.markdown-body .footnotes .data-footnote-backref g-emoji {
|
|
953
|
+
font-family: monospace;
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
.markdown-body .pl-c {
|
|
957
|
+
color: var(--color-prettylights-syntax-comment);
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
.markdown-body .pl-c1,
|
|
961
|
+
.markdown-body .pl-s .pl-v {
|
|
962
|
+
color: var(--color-prettylights-syntax-constant);
|
|
963
|
+
}
|
|
964
|
+
|
|
965
|
+
.markdown-body .pl-e,
|
|
966
|
+
.markdown-body .pl-en {
|
|
967
|
+
color: var(--color-prettylights-syntax-entity);
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
.markdown-body .pl-smi,
|
|
971
|
+
.markdown-body .pl-s .pl-s1 {
|
|
972
|
+
color: var(--color-prettylights-syntax-storage-modifier-import);
|
|
973
|
+
}
|
|
974
|
+
|
|
975
|
+
.markdown-body .pl-ent {
|
|
976
|
+
color: var(--color-prettylights-syntax-entity-tag);
|
|
977
|
+
}
|
|
978
|
+
|
|
979
|
+
.markdown-body .pl-k {
|
|
980
|
+
color: var(--color-prettylights-syntax-keyword);
|
|
981
|
+
}
|
|
982
|
+
|
|
983
|
+
.markdown-body .pl-s,
|
|
984
|
+
.markdown-body .pl-pds,
|
|
985
|
+
.markdown-body .pl-s .pl-pse .pl-s1,
|
|
986
|
+
.markdown-body .pl-sr,
|
|
987
|
+
.markdown-body .pl-sr .pl-cce,
|
|
988
|
+
.markdown-body .pl-sr .pl-sre,
|
|
989
|
+
.markdown-body .pl-sr .pl-sra {
|
|
990
|
+
color: var(--color-prettylights-syntax-string);
|
|
991
|
+
}
|
|
992
|
+
|
|
993
|
+
.markdown-body .pl-v,
|
|
994
|
+
.markdown-body .pl-smw {
|
|
995
|
+
color: var(--color-prettylights-syntax-variable);
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
.markdown-body .pl-bu {
|
|
999
|
+
color: var(--color-prettylights-syntax-brackethighlighter-unmatched);
|
|
1000
|
+
}
|
|
1001
|
+
|
|
1002
|
+
.markdown-body .pl-ii {
|
|
1003
|
+
color: var(--color-prettylights-syntax-invalid-illegal-text);
|
|
1004
|
+
background-color: var(--color-prettylights-syntax-invalid-illegal-bg);
|
|
1005
|
+
}
|
|
1006
|
+
|
|
1007
|
+
.markdown-body .pl-c2 {
|
|
1008
|
+
color: var(--color-prettylights-syntax-carriage-return-text);
|
|
1009
|
+
background-color: var(--color-prettylights-syntax-carriage-return-bg);
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
.markdown-body .pl-sr .pl-cce {
|
|
1013
|
+
font-weight: bold;
|
|
1014
|
+
color: var(--color-prettylights-syntax-string-regexp);
|
|
1015
|
+
}
|
|
1016
|
+
|
|
1017
|
+
.markdown-body .pl-ml {
|
|
1018
|
+
color: var(--color-prettylights-syntax-markup-list);
|
|
1019
|
+
}
|
|
1020
|
+
|
|
1021
|
+
.markdown-body .pl-mh,
|
|
1022
|
+
.markdown-body .pl-mh .pl-en,
|
|
1023
|
+
.markdown-body .pl-ms {
|
|
1024
|
+
font-weight: bold;
|
|
1025
|
+
color: var(--color-prettylights-syntax-markup-heading);
|
|
1026
|
+
}
|
|
1027
|
+
|
|
1028
|
+
.markdown-body .pl-mi {
|
|
1029
|
+
font-style: italic;
|
|
1030
|
+
color: var(--color-prettylights-syntax-markup-italic);
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1033
|
+
.markdown-body .pl-mb {
|
|
1034
|
+
font-weight: bold;
|
|
1035
|
+
color: var(--color-prettylights-syntax-markup-bold);
|
|
1036
|
+
}
|
|
1037
|
+
|
|
1038
|
+
.markdown-body .pl-md {
|
|
1039
|
+
color: var(--color-prettylights-syntax-markup-deleted-text);
|
|
1040
|
+
background-color: var(--color-prettylights-syntax-markup-deleted-bg);
|
|
1041
|
+
}
|
|
1042
|
+
|
|
1043
|
+
.markdown-body .pl-mi1 {
|
|
1044
|
+
color: var(--color-prettylights-syntax-markup-inserted-text);
|
|
1045
|
+
background-color: var(--color-prettylights-syntax-markup-inserted-bg);
|
|
1046
|
+
}
|
|
1047
|
+
|
|
1048
|
+
.markdown-body .pl-mc {
|
|
1049
|
+
color: var(--color-prettylights-syntax-markup-changed-text);
|
|
1050
|
+
background-color: var(--color-prettylights-syntax-markup-changed-bg);
|
|
1051
|
+
}
|
|
1052
|
+
|
|
1053
|
+
.markdown-body .pl-mi2 {
|
|
1054
|
+
color: var(--color-prettylights-syntax-markup-ignored-text);
|
|
1055
|
+
background-color: var(--color-prettylights-syntax-markup-ignored-bg);
|
|
1056
|
+
}
|
|
1057
|
+
|
|
1058
|
+
.markdown-body .pl-mdr {
|
|
1059
|
+
font-weight: bold;
|
|
1060
|
+
color: var(--color-prettylights-syntax-meta-diff-range);
|
|
1061
|
+
}
|
|
1062
|
+
|
|
1063
|
+
.markdown-body .pl-ba {
|
|
1064
|
+
color: var(--color-prettylights-syntax-brackethighlighter-angle);
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
.markdown-body .pl-sg {
|
|
1068
|
+
color: var(--color-prettylights-syntax-sublimelinter-gutter-mark);
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
.markdown-body .pl-corl {
|
|
1072
|
+
text-decoration: underline;
|
|
1073
|
+
color: var(--color-prettylights-syntax-constant-other-reference-link);
|
|
1074
|
+
}
|
|
1075
|
+
|
|
1076
|
+
.markdown-body g-emoji {
|
|
1077
|
+
display: inline-block;
|
|
1078
|
+
min-width: 1ch;
|
|
1079
|
+
font-family: "Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol";
|
|
1080
|
+
font-size: 1em;
|
|
1081
|
+
font-style: normal !important;
|
|
1082
|
+
font-weight: var(--base-text-weight-normal, 400);
|
|
1083
|
+
line-height: 1;
|
|
1084
|
+
vertical-align: -0.075em;
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
.markdown-body g-emoji img {
|
|
1088
|
+
width: 1em;
|
|
1089
|
+
height: 1em;
|
|
1090
|
+
}
|
|
1091
|
+
|
|
1092
|
+
.markdown-body .task-list-item {
|
|
1093
|
+
list-style-type: none;
|
|
1094
|
+
}
|
|
1095
|
+
|
|
1096
|
+
.markdown-body .task-list-item label {
|
|
1097
|
+
font-weight: var(--base-text-weight-normal, 400);
|
|
1098
|
+
}
|
|
1099
|
+
|
|
1100
|
+
.markdown-body .task-list-item.enabled label {
|
|
1101
|
+
cursor: pointer;
|
|
1102
|
+
}
|
|
1103
|
+
|
|
1104
|
+
.markdown-body .task-list-item+.task-list-item {
|
|
1105
|
+
margin-top: 4px;
|
|
1106
|
+
}
|
|
1107
|
+
|
|
1108
|
+
.markdown-body .task-list-item .handle {
|
|
1109
|
+
display: none;
|
|
1110
|
+
}
|
|
1111
|
+
|
|
1112
|
+
.markdown-body .task-list-item-checkbox {
|
|
1113
|
+
margin: 0 .2em .25em -1.4em;
|
|
1114
|
+
vertical-align: middle;
|
|
1115
|
+
}
|
|
1116
|
+
|
|
1117
|
+
.markdown-body .contains-task-list:dir(rtl) .task-list-item-checkbox {
|
|
1118
|
+
margin: 0 -1.6em .25em .2em;
|
|
1119
|
+
}
|
|
1120
|
+
|
|
1121
|
+
.markdown-body .contains-task-list {
|
|
1122
|
+
position: relative;
|
|
1123
|
+
}
|
|
1124
|
+
|
|
1125
|
+
.markdown-body .contains-task-list:hover .task-list-item-convert-container,
|
|
1126
|
+
.markdown-body .contains-task-list:focus-within .task-list-item-convert-container {
|
|
1127
|
+
display: block;
|
|
1128
|
+
width: auto;
|
|
1129
|
+
height: 24px;
|
|
1130
|
+
overflow: visible;
|
|
1131
|
+
clip: auto;
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
.markdown-body ::-webkit-calendar-picker-indicator {
|
|
1135
|
+
filter: invert(50%);
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1138
|
+
.markdown-body .markdown-alert {
|
|
1139
|
+
padding: var(--base-size-8) var(--base-size-16);
|
|
1140
|
+
margin-bottom: 16px;
|
|
1141
|
+
color: inherit;
|
|
1142
|
+
border-left: .25em solid var(--color-border-default);
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
.markdown-body .markdown-alert>:first-child {
|
|
1146
|
+
margin-top: 0;
|
|
1147
|
+
}
|
|
1148
|
+
|
|
1149
|
+
.markdown-body .markdown-alert>:last-child {
|
|
1150
|
+
margin-bottom: 0;
|
|
1151
|
+
}
|
|
1152
|
+
|
|
1153
|
+
.markdown-body .markdown-alert .markdown-alert-title {
|
|
1154
|
+
display: flex;
|
|
1155
|
+
font-weight: var(--base-text-weight-medium, 500);
|
|
1156
|
+
align-items: center;
|
|
1157
|
+
line-height: 1;
|
|
1158
|
+
}
|
|
1159
|
+
|
|
1160
|
+
.markdown-body .markdown-alert.markdown-alert-note {
|
|
1161
|
+
border-left-color: var(--color-accent-emphasis);
|
|
1162
|
+
}
|
|
1163
|
+
|
|
1164
|
+
.markdown-body .markdown-alert.markdown-alert-note .markdown-alert-title {
|
|
1165
|
+
color: var(--color-accent-fg);
|
|
1166
|
+
}
|
|
1167
|
+
|
|
1168
|
+
.markdown-body .markdown-alert.markdown-alert-important {
|
|
1169
|
+
border-left-color: var(--color-done-emphasis);
|
|
1170
|
+
}
|
|
1171
|
+
|
|
1172
|
+
.markdown-body .markdown-alert.markdown-alert-important .markdown-alert-title {
|
|
1173
|
+
color: var(--color-done-fg);
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1176
|
+
.markdown-body .markdown-alert.markdown-alert-warning {
|
|
1177
|
+
border-left-color: var(--color-attention-emphasis);
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1180
|
+
.markdown-body .markdown-alert.markdown-alert-warning .markdown-alert-title {
|
|
1181
|
+
color: var(--color-attention-fg);
|
|
1182
|
+
}
|
|
1183
|
+
|
|
1184
|
+
.markdown-body .markdown-alert.markdown-alert-tip {
|
|
1185
|
+
border-left-color: var(--color-success-emphasis);
|
|
1186
|
+
}
|
|
1187
|
+
|
|
1188
|
+
.markdown-body .markdown-alert.markdown-alert-tip .markdown-alert-title {
|
|
1189
|
+
color: var(--color-success-fg);
|
|
1190
|
+
}
|
|
1191
|
+
|
|
1192
|
+
.markdown-body .markdown-alert.markdown-alert-caution {
|
|
1193
|
+
border-left-color: var(--color-danger-emphasis);
|
|
1194
|
+
}
|
|
1195
|
+
|
|
1196
|
+
.markdown-body .markdown-alert.markdown-alert-caution .markdown-alert-title {
|
|
1197
|
+
color: var(--color-danger-fg);
|
|
1198
|
+
}
|