@verdaccio/ui-components 2.0.0-alpha.0 → 3.0.0-next-7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.babelrc +8 -0
- package/.eslintrc +100 -0
- package/CHANGELOG.md +186 -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 +105 -0
- package/build/components/Dependencies/index.js +14 -0
- package/build/components/Dependencies/styles.js +64 -0
- package/build/components/Dependencies/types.js +6 -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/SideBarTittle/SideBarTittle.js +94 -0
- package/build/components/SideBarTittle/index.js +14 -0
- package/build/components/SideBarTittle/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 +107 -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 +185 -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 +97 -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 +5 -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/index.d.ts +1 -0
- package/build/src/components/Dependencies/styles.d.ts +8 -0
- package/build/src/components/Dependencies/types.d.ts +6 -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/SideBarTittle/SideBarTittle.d.ts +13 -0
- package/build/src/components/SideBarTittle/SideBarTittle.stories.d.ts +9 -0
- package/build/src/components/SideBarTittle/index.d.ts +1 -0
- package/build/src/components/SideBarTittle/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/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 +71 -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 +79 -0
- package/src/components/Dependencies/Dependencies.tsx +111 -0
- package/src/components/Dependencies/index.ts +1 -0
- package/src/components/Dependencies/styles.ts +26 -0
- package/src/components/Dependencies/types.ts +7 -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 +11 -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/SideBarTittle/SideBarTittle.stories.tsx +68 -0
- package/src/components/SideBarTittle/SideBarTittle.tsx +82 -0
- package/src/components/SideBarTittle/index.ts +1 -0
- package/src/components/SideBarTittle/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 +81 -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 +196 -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.tsx +22 -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 +110 -0
- package/src/sections/SideBar/Sidebar.tsx +80 -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,110 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _base = _interopRequireDefault(require("@emotion/styled/base"));
|
|
8
|
+
var _x = _interopRequireDefault(require("country-flag-icons/react/3x2"));
|
|
9
|
+
var _react = _interopRequireDefault(require("react"));
|
|
10
|
+
var _reactI18next = require("react-i18next");
|
|
11
|
+
var _ = require("../../");
|
|
12
|
+
var _Icons = require("../../components/Icons");
|
|
13
|
+
var _styles = require("./styles");
|
|
14
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
+
function _EMOTION_STRINGIFIED_CSS_ERROR__() { return "You have tried to stringify object returned from `css` function. It isn't supposed to be used directly (e.g. as value of the `className` prop), but rather handed to emotion so it can handle it (e.g. as value of `css` prop)."; } /* eslint-disable react/jsx-max-depth */ /* eslint-disable react/jsx-pascal-case */
|
|
16
|
+
function goToVerdaccioWebsite() {
|
|
17
|
+
window.open('https://verdaccio.org', '_blank');
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
/* eslint-disable react/jsx-key */
|
|
21
|
+
const Footer = () => {
|
|
22
|
+
const {
|
|
23
|
+
t
|
|
24
|
+
} = (0, _reactI18next.useTranslation)();
|
|
25
|
+
const {
|
|
26
|
+
configOptions
|
|
27
|
+
} = (0, _.useConfig)();
|
|
28
|
+
return /*#__PURE__*/_react.default.createElement(_styles.Wrapper, {
|
|
29
|
+
"data-testid": "footer"
|
|
30
|
+
}, /*#__PURE__*/_react.default.createElement(_styles.Inner, null, /*#__PURE__*/_react.default.createElement(_styles.Left, null, /*#__PURE__*/_react.default.createElement(_reactI18next.Trans, {
|
|
31
|
+
components: [/*#__PURE__*/_react.default.createElement(_styles.Love, null)],
|
|
32
|
+
i18nKey: "footer.made-with-love-on"
|
|
33
|
+
}), /*#__PURE__*/_react.default.createElement(ToolTip, null, /*#__PURE__*/_react.default.createElement(StyledEarth, null), /*#__PURE__*/_react.default.createElement(Flags, null, /*#__PURE__*/_react.default.createElement(Icon, null, /*#__PURE__*/_react.default.createElement(_x.default.ES, null)), /*#__PURE__*/_react.default.createElement(Icon, null, /*#__PURE__*/_react.default.createElement(_x.default.NI, null)), /*#__PURE__*/_react.default.createElement(Icon, null, /*#__PURE__*/_react.default.createElement(_x.default.IN, null)), /*#__PURE__*/_react.default.createElement(Icon, null, /*#__PURE__*/_react.default.createElement(_x.default.BR, null)), /*#__PURE__*/_react.default.createElement(Icon, null, /*#__PURE__*/_react.default.createElement(_x.default.CN, null)), /*#__PURE__*/_react.default.createElement(Icon, null, /*#__PURE__*/_react.default.createElement(_x.default.AU, null)), /*#__PURE__*/_react.default.createElement(Icon, null, /*#__PURE__*/_react.default.createElement(_x.default.DE, null)), /*#__PURE__*/_react.default.createElement(Icon, null, /*#__PURE__*/_react.default.createElement(_x.default.TW, null))))), /*#__PURE__*/_react.default.createElement(_styles.Right, null, (configOptions === null || configOptions === void 0 ? void 0 : configOptions.version) && /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement("span", {
|
|
34
|
+
"data-testid": "version-footer"
|
|
35
|
+
}, t('footer.powered-by')), /*#__PURE__*/_react.default.createElement(_.Logo, {
|
|
36
|
+
isDefault: true,
|
|
37
|
+
onClick: goToVerdaccioWebsite,
|
|
38
|
+
size: "x-small"
|
|
39
|
+
}), `/ ${configOptions.version}`))));
|
|
40
|
+
};
|
|
41
|
+
var _default = exports.default = Footer;
|
|
42
|
+
const StyledEarth = /*#__PURE__*/(0, _base.default)(_Icons.Earth, process.env.NODE_ENV === "production" ? {
|
|
43
|
+
target: "e9dwga53"
|
|
44
|
+
} : {
|
|
45
|
+
target: "e9dwga53",
|
|
46
|
+
label: "StyledEarth"
|
|
47
|
+
})(({
|
|
48
|
+
theme
|
|
49
|
+
}) => ({
|
|
50
|
+
margin: theme.spacing(0, 1)
|
|
51
|
+
}), process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9zZWN0aW9ucy9Gb290ZXIvRm9vdGVyLnRzeCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUF1RW9CIiwiZmlsZSI6Ii4uLy4uLy4uL3NyYy9zZWN0aW9ucy9Gb290ZXIvRm9vdGVyLnRzeCIsInNvdXJjZXNDb250ZW50IjpbIi8qIGVzbGludC1kaXNhYmxlIHJlYWN0L2pzeC1tYXgtZGVwdGggKi9cblxuLyogZXNsaW50LWRpc2FibGUgcmVhY3QvanN4LXBhc2NhbC1jYXNlICovXG5pbXBvcnQgc3R5bGVkIGZyb20gJ0BlbW90aW9uL3N0eWxlZCc7XG5pbXBvcnQgRmxhZ3NJY29uIGZyb20gJ2NvdW50cnktZmxhZy1pY29ucy9yZWFjdC8zeDInO1xuaW1wb3J0IFJlYWN0IGZyb20gJ3JlYWN0JztcbmltcG9ydCB7IFRyYW5zLCB1c2VUcmFuc2xhdGlvbiB9IGZyb20gJ3JlYWN0LWkxOG5leHQnO1xuXG5pbXBvcnQgeyBMb2dvLCBUaGVtZSwgdXNlQ29uZmlnIH0gZnJvbSAnLi4vLi4vJztcbmltcG9ydCB7IEVhcnRoIH0gZnJvbSAnLi4vLi4vY29tcG9uZW50cy9JY29ucyc7XG5pbXBvcnQgeyBJbm5lciwgTGVmdCwgTG92ZSwgUmlnaHQsIFdyYXBwZXIgfSBmcm9tICcuL3N0eWxlcyc7XG5cbmZ1bmN0aW9uIGdvVG9WZXJkYWNjaW9XZWJzaXRlKCk6IHZvaWQge1xuICB3aW5kb3cub3BlbignaHR0cHM6Ly92ZXJkYWNjaW8ub3JnJywgJ19ibGFuaycpO1xufVxuXG4vKiBlc2xpbnQtZGlzYWJsZSByZWFjdC9qc3gta2V5ICovXG5jb25zdCBGb290ZXIgPSAoKSA9PiB7XG4gIGNvbnN0IHsgdCB9ID0gdXNlVHJhbnNsYXRpb24oKTtcbiAgY29uc3QgeyBjb25maWdPcHRpb25zIH0gPSB1c2VDb25maWcoKTtcbiAgcmV0dXJuIChcbiAgICA8V3JhcHBlciBkYXRhLXRlc3RpZD1cImZvb3RlclwiPlxuICAgICAgPElubmVyPlxuICAgICAgICA8TGVmdD5cbiAgICAgICAgICA8VHJhbnMgY29tcG9uZW50cz17WzxMb3ZlIC8+XX0gaTE4bktleT1cImZvb3Rlci5tYWRlLXdpdGgtbG92ZS1vblwiIC8+XG4gICAgICAgICAgPFRvb2xUaXA+XG4gICAgICAgICAgICA8U3R5bGVkRWFydGggLz5cbiAgICAgICAgICAgIDxGbGFncz5cbiAgICAgICAgICAgICAgPEljb24+XG4gICAgICAgICAgICAgICAgPEZsYWdzSWNvbi5FUyAvPlxuICAgICAgICAgICAgICA8L0ljb24+XG4gICAgICAgICAgICAgIDxJY29uPlxuICAgICAgICAgICAgICAgIDxGbGFnc0ljb24uTkkgLz5cbiAgICAgICAgICAgICAgPC9JY29uPlxuICAgICAgICAgICAgICA8SWNvbj5cbiAgICAgICAgICAgICAgICA8RmxhZ3NJY29uLklOIC8+XG4gICAgICAgICAgICAgIDwvSWNvbj5cbiAgICAgICAgICAgICAgPEljb24+XG4gICAgICAgICAgICAgICAgPEZsYWdzSWNvbi5CUiAvPlxuICAgICAgICAgICAgICA8L0ljb24+XG4gICAgICAgICAgICAgIDxJY29uPlxuICAgICAgICAgICAgICAgIDxGbGFnc0ljb24uQ04gLz5cbiAgICAgICAgICAgICAgPC9JY29uPlxuICAgICAgICAgICAgICA8SWNvbj5cbiAgICAgICAgICAgICAgICA8RmxhZ3NJY29uLkFVIC8+XG4gICAgICAgICAgICAgIDwvSWNvbj5cbiAgICAgICAgICAgICAgPEljb24+XG4gICAgICAgICAgICAgICAgPEZsYWdzSWNvbi5ERSAvPlxuICAgICAgICAgICAgICA8L0ljb24+XG4gICAgICAgICAgICAgIDxJY29uPlxuICAgICAgICAgICAgICAgIDxGbGFnc0ljb24uVFcgLz5cbiAgICAgICAgICAgICAgPC9JY29uPlxuICAgICAgICAgICAgPC9GbGFncz5cbiAgICAgICAgICA8L1Rvb2xUaXA+XG4gICAgICAgIDwvTGVmdD5cbiAgICAgICAgPFJpZ2h0PlxuICAgICAgICAgIHtjb25maWdPcHRpb25zPy52ZXJzaW9uICYmIChcbiAgICAgICAgICAgIDw+XG4gICAgICAgICAgICAgIDxzcGFuIGRhdGEtdGVzdGlkPVwidmVyc2lvbi1mb290ZXJcIj57dCgnZm9vdGVyLnBvd2VyZWQtYnknKX08L3NwYW4+XG4gICAgICAgICAgICAgIDxMb2dvIGlzRGVmYXVsdD17dHJ1ZX0gb25DbGljaz17Z29Ub1ZlcmRhY2Npb1dlYnNpdGV9IHNpemU9XCJ4LXNtYWxsXCIgLz5cbiAgICAgICAgICAgICAge2AvICR7Y29uZmlnT3B0aW9ucy52ZXJzaW9ufWB9XG4gICAgICAgICAgICA8Lz5cbiAgICAgICAgICApfVxuICAgICAgICA8L1JpZ2h0PlxuICAgICAgPC9Jbm5lcj5cbiAgICA8L1dyYXBwZXI+XG4gICk7XG59O1xuXG5leHBvcnQgZGVmYXVsdCBGb290ZXI7XG5cbmNvbnN0IFN0eWxlZEVhcnRoID0gc3R5bGVkKEVhcnRoKTx7IHRoZW1lPzogVGhlbWUgfT4oKHsgdGhlbWUgfSkgPT4gKHtcbiAgbWFyZ2luOiB0aGVtZS5zcGFjaW5nKDAsIDEpLFxufSkpO1xuXG5jb25zdCBGbGFncyA9IHN0eWxlZCgnc3BhbicpPHsgdGhlbWU/OiBUaGVtZSB9PigoeyB0aGVtZSB9KSA9PiAoe1xuICBkaXNwbGF5OiAnaW5saW5lLWdyaWQnLFxuICBncmlkVGVtcGxhdGVDb2x1bW5zOiAncmVwZWF0KDgsIG1heC1jb250ZW50KScsXG4gIGdyaWRHYXA6IHRoZW1lLnNwYWNpbmcoMCwgMSksXG4gIHBvc2l0aW9uOiAnYWJzb2x1dGUnLFxuICBiYWNrZ3JvdW5kOiB0aGVtZT8ucGFsZXR0ZS5ncmV5QXRoZW5zLFxuICBwYWRkaW5nOiAnMXB4IDRweCcsXG4gIGJvcmRlclJhZGl1czogMyxcbiAgaGVpZ2h0OiAyMCxcbiAgYWxpZ25JdGVtczogJ2NlbnRlcicsXG4gIHZpc2liaWxpdHk6ICdoaWRkZW4nLFxuICB0b3A6IC0yLFxuICAnOmJlZm9yZSc6IHtcbiAgICBjb250ZW50OiBcIicnXCIsXG4gICAgcG9zaXRpb246ICdhYnNvbHV0ZScsXG4gICAgdG9wOiAnMjklJyxcbiAgICBsZWZ0OiAtNCxcbiAgICBtYXJnaW5MZWZ0OiAtNSxcbiAgICBib3JkZXI6ICc1cHggc29saWQnLFxuICAgIGJvcmRlckNvbG9yOiBgJHt0aGVtZT8ucGFsZXR0ZS5ncmV5QXRoZW5zfSB0cmFuc3BhcmVudCB0cmFuc3BhcmVudCB0cmFuc3BhcmVudGAsXG4gICAgdHJhbnNmb3JtOiAncm90YXRlKDkwZGVnKScsXG4gIH0sXG59KSk7XG5cbmNvbnN0IEljb24gPSBzdHlsZWQoJ2RpdicpKHtcbiAgd2lkdGg6ICcxMHB4Jyxcbn0pO1xuXG5jb25zdCBUb29sVGlwID0gc3R5bGVkKCdzcGFuJykoe1xuICBwb3NpdGlvbjogJ3JlbGF0aXZlJyxcbiAgaGVpZ2h0OiAnMThweCcsXG4gICc6aG92ZXInOiB7XG4gICAgW2Ake0ZsYWdzfWBdOiB7XG4gICAgICB2aXNpYmlsaXR5OiAndmlzaWJsZScsXG4gICAgfSxcbiAgfSxcbn0pO1xuIl19 */");
|
|
52
|
+
const Flags = /*#__PURE__*/(0, _base.default)('span', process.env.NODE_ENV === "production" ? {
|
|
53
|
+
target: "e9dwga52"
|
|
54
|
+
} : {
|
|
55
|
+
target: "e9dwga52",
|
|
56
|
+
label: "Flags"
|
|
57
|
+
})(({
|
|
58
|
+
theme
|
|
59
|
+
}) => ({
|
|
60
|
+
display: 'inline-grid',
|
|
61
|
+
gridTemplateColumns: 'repeat(8, max-content)',
|
|
62
|
+
gridGap: theme.spacing(0, 1),
|
|
63
|
+
position: 'absolute',
|
|
64
|
+
background: theme === null || theme === void 0 ? void 0 : theme.palette.greyAthens,
|
|
65
|
+
padding: '1px 4px',
|
|
66
|
+
borderRadius: 3,
|
|
67
|
+
height: 20,
|
|
68
|
+
alignItems: 'center',
|
|
69
|
+
visibility: 'hidden',
|
|
70
|
+
top: -2,
|
|
71
|
+
':before': {
|
|
72
|
+
content: "''",
|
|
73
|
+
position: 'absolute',
|
|
74
|
+
top: '29%',
|
|
75
|
+
left: -4,
|
|
76
|
+
marginLeft: -5,
|
|
77
|
+
border: '5px solid',
|
|
78
|
+
borderColor: `${theme === null || theme === void 0 ? void 0 : theme.palette.greyAthens} transparent transparent transparent`,
|
|
79
|
+
transform: 'rotate(90deg)'
|
|
80
|
+
}
|
|
81
|
+
}), process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9zZWN0aW9ucy9Gb290ZXIvRm9vdGVyLnRzeCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUEyRWMiLCJmaWxlIjoiLi4vLi4vLi4vc3JjL3NlY3Rpb25zL0Zvb3Rlci9Gb290ZXIudHN4Iiwic291cmNlc0NvbnRlbnQiOlsiLyogZXNsaW50LWRpc2FibGUgcmVhY3QvanN4LW1heC1kZXB0aCAqL1xuXG4vKiBlc2xpbnQtZGlzYWJsZSByZWFjdC9qc3gtcGFzY2FsLWNhc2UgKi9cbmltcG9ydCBzdHlsZWQgZnJvbSAnQGVtb3Rpb24vc3R5bGVkJztcbmltcG9ydCBGbGFnc0ljb24gZnJvbSAnY291bnRyeS1mbGFnLWljb25zL3JlYWN0LzN4Mic7XG5pbXBvcnQgUmVhY3QgZnJvbSAncmVhY3QnO1xuaW1wb3J0IHsgVHJhbnMsIHVzZVRyYW5zbGF0aW9uIH0gZnJvbSAncmVhY3QtaTE4bmV4dCc7XG5cbmltcG9ydCB7IExvZ28sIFRoZW1lLCB1c2VDb25maWcgfSBmcm9tICcuLi8uLi8nO1xuaW1wb3J0IHsgRWFydGggfSBmcm9tICcuLi8uLi9jb21wb25lbnRzL0ljb25zJztcbmltcG9ydCB7IElubmVyLCBMZWZ0LCBMb3ZlLCBSaWdodCwgV3JhcHBlciB9IGZyb20gJy4vc3R5bGVzJztcblxuZnVuY3Rpb24gZ29Ub1ZlcmRhY2Npb1dlYnNpdGUoKTogdm9pZCB7XG4gIHdpbmRvdy5vcGVuKCdodHRwczovL3ZlcmRhY2Npby5vcmcnLCAnX2JsYW5rJyk7XG59XG5cbi8qIGVzbGludC1kaXNhYmxlIHJlYWN0L2pzeC1rZXkgKi9cbmNvbnN0IEZvb3RlciA9ICgpID0+IHtcbiAgY29uc3QgeyB0IH0gPSB1c2VUcmFuc2xhdGlvbigpO1xuICBjb25zdCB7IGNvbmZpZ09wdGlvbnMgfSA9IHVzZUNvbmZpZygpO1xuICByZXR1cm4gKFxuICAgIDxXcmFwcGVyIGRhdGEtdGVzdGlkPVwiZm9vdGVyXCI+XG4gICAgICA8SW5uZXI+XG4gICAgICAgIDxMZWZ0PlxuICAgICAgICAgIDxUcmFucyBjb21wb25lbnRzPXtbPExvdmUgLz5dfSBpMThuS2V5PVwiZm9vdGVyLm1hZGUtd2l0aC1sb3ZlLW9uXCIgLz5cbiAgICAgICAgICA8VG9vbFRpcD5cbiAgICAgICAgICAgIDxTdHlsZWRFYXJ0aCAvPlxuICAgICAgICAgICAgPEZsYWdzPlxuICAgICAgICAgICAgICA8SWNvbj5cbiAgICAgICAgICAgICAgICA8RmxhZ3NJY29uLkVTIC8+XG4gICAgICAgICAgICAgIDwvSWNvbj5cbiAgICAgICAgICAgICAgPEljb24+XG4gICAgICAgICAgICAgICAgPEZsYWdzSWNvbi5OSSAvPlxuICAgICAgICAgICAgICA8L0ljb24+XG4gICAgICAgICAgICAgIDxJY29uPlxuICAgICAgICAgICAgICAgIDxGbGFnc0ljb24uSU4gLz5cbiAgICAgICAgICAgICAgPC9JY29uPlxuICAgICAgICAgICAgICA8SWNvbj5cbiAgICAgICAgICAgICAgICA8RmxhZ3NJY29uLkJSIC8+XG4gICAgICAgICAgICAgIDwvSWNvbj5cbiAgICAgICAgICAgICAgPEljb24+XG4gICAgICAgICAgICAgICAgPEZsYWdzSWNvbi5DTiAvPlxuICAgICAgICAgICAgICA8L0ljb24+XG4gICAgICAgICAgICAgIDxJY29uPlxuICAgICAgICAgICAgICAgIDxGbGFnc0ljb24uQVUgLz5cbiAgICAgICAgICAgICAgPC9JY29uPlxuICAgICAgICAgICAgICA8SWNvbj5cbiAgICAgICAgICAgICAgICA8RmxhZ3NJY29uLkRFIC8+XG4gICAgICAgICAgICAgIDwvSWNvbj5cbiAgICAgICAgICAgICAgPEljb24+XG4gICAgICAgICAgICAgICAgPEZsYWdzSWNvbi5UVyAvPlxuICAgICAgICAgICAgICA8L0ljb24+XG4gICAgICAgICAgICA8L0ZsYWdzPlxuICAgICAgICAgIDwvVG9vbFRpcD5cbiAgICAgICAgPC9MZWZ0PlxuICAgICAgICA8UmlnaHQ+XG4gICAgICAgICAge2NvbmZpZ09wdGlvbnM/LnZlcnNpb24gJiYgKFxuICAgICAgICAgICAgPD5cbiAgICAgICAgICAgICAgPHNwYW4gZGF0YS10ZXN0aWQ9XCJ2ZXJzaW9uLWZvb3RlclwiPnt0KCdmb290ZXIucG93ZXJlZC1ieScpfTwvc3Bhbj5cbiAgICAgICAgICAgICAgPExvZ28gaXNEZWZhdWx0PXt0cnVlfSBvbkNsaWNrPXtnb1RvVmVyZGFjY2lvV2Vic2l0ZX0gc2l6ZT1cIngtc21hbGxcIiAvPlxuICAgICAgICAgICAgICB7YC8gJHtjb25maWdPcHRpb25zLnZlcnNpb259YH1cbiAgICAgICAgICAgIDwvPlxuICAgICAgICAgICl9XG4gICAgICAgIDwvUmlnaHQ+XG4gICAgICA8L0lubmVyPlxuICAgIDwvV3JhcHBlcj5cbiAgKTtcbn07XG5cbmV4cG9ydCBkZWZhdWx0IEZvb3RlcjtcblxuY29uc3QgU3R5bGVkRWFydGggPSBzdHlsZWQoRWFydGgpPHsgdGhlbWU/OiBUaGVtZSB9PigoeyB0aGVtZSB9KSA9PiAoe1xuICBtYXJnaW46IHRoZW1lLnNwYWNpbmcoMCwgMSksXG59KSk7XG5cbmNvbnN0IEZsYWdzID0gc3R5bGVkKCdzcGFuJyk8eyB0aGVtZT86IFRoZW1lIH0+KCh7IHRoZW1lIH0pID0+ICh7XG4gIGRpc3BsYXk6ICdpbmxpbmUtZ3JpZCcsXG4gIGdyaWRUZW1wbGF0ZUNvbHVtbnM6ICdyZXBlYXQoOCwgbWF4LWNvbnRlbnQpJyxcbiAgZ3JpZEdhcDogdGhlbWUuc3BhY2luZygwLCAxKSxcbiAgcG9zaXRpb246ICdhYnNvbHV0ZScsXG4gIGJhY2tncm91bmQ6IHRoZW1lPy5wYWxldHRlLmdyZXlBdGhlbnMsXG4gIHBhZGRpbmc6ICcxcHggNHB4JyxcbiAgYm9yZGVyUmFkaXVzOiAzLFxuICBoZWlnaHQ6IDIwLFxuICBhbGlnbkl0ZW1zOiAnY2VudGVyJyxcbiAgdmlzaWJpbGl0eTogJ2hpZGRlbicsXG4gIHRvcDogLTIsXG4gICc6YmVmb3JlJzoge1xuICAgIGNvbnRlbnQ6IFwiJydcIixcbiAgICBwb3NpdGlvbjogJ2Fic29sdXRlJyxcbiAgICB0b3A6ICcyOSUnLFxuICAgIGxlZnQ6IC00LFxuICAgIG1hcmdpbkxlZnQ6IC01LFxuICAgIGJvcmRlcjogJzVweCBzb2xpZCcsXG4gICAgYm9yZGVyQ29sb3I6IGAke3RoZW1lPy5wYWxldHRlLmdyZXlBdGhlbnN9IHRyYW5zcGFyZW50IHRyYW5zcGFyZW50IHRyYW5zcGFyZW50YCxcbiAgICB0cmFuc2Zvcm06ICdyb3RhdGUoOTBkZWcpJyxcbiAgfSxcbn0pKTtcblxuY29uc3QgSWNvbiA9IHN0eWxlZCgnZGl2Jykoe1xuICB3aWR0aDogJzEwcHgnLFxufSk7XG5cbmNvbnN0IFRvb2xUaXAgPSBzdHlsZWQoJ3NwYW4nKSh7XG4gIHBvc2l0aW9uOiAncmVsYXRpdmUnLFxuICBoZWlnaHQ6ICcxOHB4JyxcbiAgJzpob3Zlcic6IHtcbiAgICBbYCR7RmxhZ3N9YF06IHtcbiAgICAgIHZpc2liaWxpdHk6ICd2aXNpYmxlJyxcbiAgICB9LFxuICB9LFxufSk7XG4iXX0= */");
|
|
82
|
+
const Icon = /*#__PURE__*/(0, _base.default)('div', process.env.NODE_ENV === "production" ? {
|
|
83
|
+
target: "e9dwga51"
|
|
84
|
+
} : {
|
|
85
|
+
target: "e9dwga51",
|
|
86
|
+
label: "Icon"
|
|
87
|
+
})(process.env.NODE_ENV === "production" ? {
|
|
88
|
+
name: "1g2l0a9",
|
|
89
|
+
styles: "width:10px"
|
|
90
|
+
} : {
|
|
91
|
+
name: "1g2l0a9",
|
|
92
|
+
styles: "width:10px",
|
|
93
|
+
map: "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9zZWN0aW9ucy9Gb290ZXIvRm9vdGVyLnRzeCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFtR2EiLCJmaWxlIjoiLi4vLi4vLi4vc3JjL3NlY3Rpb25zL0Zvb3Rlci9Gb290ZXIudHN4Iiwic291cmNlc0NvbnRlbnQiOlsiLyogZXNsaW50LWRpc2FibGUgcmVhY3QvanN4LW1heC1kZXB0aCAqL1xuXG4vKiBlc2xpbnQtZGlzYWJsZSByZWFjdC9qc3gtcGFzY2FsLWNhc2UgKi9cbmltcG9ydCBzdHlsZWQgZnJvbSAnQGVtb3Rpb24vc3R5bGVkJztcbmltcG9ydCBGbGFnc0ljb24gZnJvbSAnY291bnRyeS1mbGFnLWljb25zL3JlYWN0LzN4Mic7XG5pbXBvcnQgUmVhY3QgZnJvbSAncmVhY3QnO1xuaW1wb3J0IHsgVHJhbnMsIHVzZVRyYW5zbGF0aW9uIH0gZnJvbSAncmVhY3QtaTE4bmV4dCc7XG5cbmltcG9ydCB7IExvZ28sIFRoZW1lLCB1c2VDb25maWcgfSBmcm9tICcuLi8uLi8nO1xuaW1wb3J0IHsgRWFydGggfSBmcm9tICcuLi8uLi9jb21wb25lbnRzL0ljb25zJztcbmltcG9ydCB7IElubmVyLCBMZWZ0LCBMb3ZlLCBSaWdodCwgV3JhcHBlciB9IGZyb20gJy4vc3R5bGVzJztcblxuZnVuY3Rpb24gZ29Ub1ZlcmRhY2Npb1dlYnNpdGUoKTogdm9pZCB7XG4gIHdpbmRvdy5vcGVuKCdodHRwczovL3ZlcmRhY2Npby5vcmcnLCAnX2JsYW5rJyk7XG59XG5cbi8qIGVzbGludC1kaXNhYmxlIHJlYWN0L2pzeC1rZXkgKi9cbmNvbnN0IEZvb3RlciA9ICgpID0+IHtcbiAgY29uc3QgeyB0IH0gPSB1c2VUcmFuc2xhdGlvbigpO1xuICBjb25zdCB7IGNvbmZpZ09wdGlvbnMgfSA9IHVzZUNvbmZpZygpO1xuICByZXR1cm4gKFxuICAgIDxXcmFwcGVyIGRhdGEtdGVzdGlkPVwiZm9vdGVyXCI+XG4gICAgICA8SW5uZXI+XG4gICAgICAgIDxMZWZ0PlxuICAgICAgICAgIDxUcmFucyBjb21wb25lbnRzPXtbPExvdmUgLz5dfSBpMThuS2V5PVwiZm9vdGVyLm1hZGUtd2l0aC1sb3ZlLW9uXCIgLz5cbiAgICAgICAgICA8VG9vbFRpcD5cbiAgICAgICAgICAgIDxTdHlsZWRFYXJ0aCAvPlxuICAgICAgICAgICAgPEZsYWdzPlxuICAgICAgICAgICAgICA8SWNvbj5cbiAgICAgICAgICAgICAgICA8RmxhZ3NJY29uLkVTIC8+XG4gICAgICAgICAgICAgIDwvSWNvbj5cbiAgICAgICAgICAgICAgPEljb24+XG4gICAgICAgICAgICAgICAgPEZsYWdzSWNvbi5OSSAvPlxuICAgICAgICAgICAgICA8L0ljb24+XG4gICAgICAgICAgICAgIDxJY29uPlxuICAgICAgICAgICAgICAgIDxGbGFnc0ljb24uSU4gLz5cbiAgICAgICAgICAgICAgPC9JY29uPlxuICAgICAgICAgICAgICA8SWNvbj5cbiAgICAgICAgICAgICAgICA8RmxhZ3NJY29uLkJSIC8+XG4gICAgICAgICAgICAgIDwvSWNvbj5cbiAgICAgICAgICAgICAgPEljb24+XG4gICAgICAgICAgICAgICAgPEZsYWdzSWNvbi5DTiAvPlxuICAgICAgICAgICAgICA8L0ljb24+XG4gICAgICAgICAgICAgIDxJY29uPlxuICAgICAgICAgICAgICAgIDxGbGFnc0ljb24uQVUgLz5cbiAgICAgICAgICAgICAgPC9JY29uPlxuICAgICAgICAgICAgICA8SWNvbj5cbiAgICAgICAgICAgICAgICA8RmxhZ3NJY29uLkRFIC8+XG4gICAgICAgICAgICAgIDwvSWNvbj5cbiAgICAgICAgICAgICAgPEljb24+XG4gICAgICAgICAgICAgICAgPEZsYWdzSWNvbi5UVyAvPlxuICAgICAgICAgICAgICA8L0ljb24+XG4gICAgICAgICAgICA8L0ZsYWdzPlxuICAgICAgICAgIDwvVG9vbFRpcD5cbiAgICAgICAgPC9MZWZ0PlxuICAgICAgICA8UmlnaHQ+XG4gICAgICAgICAge2NvbmZpZ09wdGlvbnM/LnZlcnNpb24gJiYgKFxuICAgICAgICAgICAgPD5cbiAgICAgICAgICAgICAgPHNwYW4gZGF0YS10ZXN0aWQ9XCJ2ZXJzaW9uLWZvb3RlclwiPnt0KCdmb290ZXIucG93ZXJlZC1ieScpfTwvc3Bhbj5cbiAgICAgICAgICAgICAgPExvZ28gaXNEZWZhdWx0PXt0cnVlfSBvbkNsaWNrPXtnb1RvVmVyZGFjY2lvV2Vic2l0ZX0gc2l6ZT1cIngtc21hbGxcIiAvPlxuICAgICAgICAgICAgICB7YC8gJHtjb25maWdPcHRpb25zLnZlcnNpb259YH1cbiAgICAgICAgICAgIDwvPlxuICAgICAgICAgICl9XG4gICAgICAgIDwvUmlnaHQ+XG4gICAgICA8L0lubmVyPlxuICAgIDwvV3JhcHBlcj5cbiAgKTtcbn07XG5cbmV4cG9ydCBkZWZhdWx0IEZvb3RlcjtcblxuY29uc3QgU3R5bGVkRWFydGggPSBzdHlsZWQoRWFydGgpPHsgdGhlbWU/OiBUaGVtZSB9PigoeyB0aGVtZSB9KSA9PiAoe1xuICBtYXJnaW46IHRoZW1lLnNwYWNpbmcoMCwgMSksXG59KSk7XG5cbmNvbnN0IEZsYWdzID0gc3R5bGVkKCdzcGFuJyk8eyB0aGVtZT86IFRoZW1lIH0+KCh7IHRoZW1lIH0pID0+ICh7XG4gIGRpc3BsYXk6ICdpbmxpbmUtZ3JpZCcsXG4gIGdyaWRUZW1wbGF0ZUNvbHVtbnM6ICdyZXBlYXQoOCwgbWF4LWNvbnRlbnQpJyxcbiAgZ3JpZEdhcDogdGhlbWUuc3BhY2luZygwLCAxKSxcbiAgcG9zaXRpb246ICdhYnNvbHV0ZScsXG4gIGJhY2tncm91bmQ6IHRoZW1lPy5wYWxldHRlLmdyZXlBdGhlbnMsXG4gIHBhZGRpbmc6ICcxcHggNHB4JyxcbiAgYm9yZGVyUmFkaXVzOiAzLFxuICBoZWlnaHQ6IDIwLFxuICBhbGlnbkl0ZW1zOiAnY2VudGVyJyxcbiAgdmlzaWJpbGl0eTogJ2hpZGRlbicsXG4gIHRvcDogLTIsXG4gICc6YmVmb3JlJzoge1xuICAgIGNvbnRlbnQ6IFwiJydcIixcbiAgICBwb3NpdGlvbjogJ2Fic29sdXRlJyxcbiAgICB0b3A6ICcyOSUnLFxuICAgIGxlZnQ6IC00LFxuICAgIG1hcmdpbkxlZnQ6IC01LFxuICAgIGJvcmRlcjogJzVweCBzb2xpZCcsXG4gICAgYm9yZGVyQ29sb3I6IGAke3RoZW1lPy5wYWxldHRlLmdyZXlBdGhlbnN9IHRyYW5zcGFyZW50IHRyYW5zcGFyZW50IHRyYW5zcGFyZW50YCxcbiAgICB0cmFuc2Zvcm06ICdyb3RhdGUoOTBkZWcpJyxcbiAgfSxcbn0pKTtcblxuY29uc3QgSWNvbiA9IHN0eWxlZCgnZGl2Jykoe1xuICB3aWR0aDogJzEwcHgnLFxufSk7XG5cbmNvbnN0IFRvb2xUaXAgPSBzdHlsZWQoJ3NwYW4nKSh7XG4gIHBvc2l0aW9uOiAncmVsYXRpdmUnLFxuICBoZWlnaHQ6ICcxOHB4JyxcbiAgJzpob3Zlcic6IHtcbiAgICBbYCR7RmxhZ3N9YF06IHtcbiAgICAgIHZpc2liaWxpdHk6ICd2aXNpYmxlJyxcbiAgICB9LFxuICB9LFxufSk7XG4iXX0= */",
|
|
94
|
+
toString: _EMOTION_STRINGIFIED_CSS_ERROR__
|
|
95
|
+
});
|
|
96
|
+
const ToolTip = /*#__PURE__*/(0, _base.default)('span', process.env.NODE_ENV === "production" ? {
|
|
97
|
+
target: "e9dwga50"
|
|
98
|
+
} : {
|
|
99
|
+
target: "e9dwga50",
|
|
100
|
+
label: "ToolTip"
|
|
101
|
+
})({
|
|
102
|
+
position: 'relative',
|
|
103
|
+
height: '18px',
|
|
104
|
+
':hover': {
|
|
105
|
+
[`${Flags}`]: {
|
|
106
|
+
visibility: 'visible'
|
|
107
|
+
}
|
|
108
|
+
}
|
|
109
|
+
}, process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9zZWN0aW9ucy9Gb290ZXIvRm9vdGVyLnRzeCJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUF1R2dCIiwiZmlsZSI6Ii4uLy4uLy4uL3NyYy9zZWN0aW9ucy9Gb290ZXIvRm9vdGVyLnRzeCIsInNvdXJjZXNDb250ZW50IjpbIi8qIGVzbGludC1kaXNhYmxlIHJlYWN0L2pzeC1tYXgtZGVwdGggKi9cblxuLyogZXNsaW50LWRpc2FibGUgcmVhY3QvanN4LXBhc2NhbC1jYXNlICovXG5pbXBvcnQgc3R5bGVkIGZyb20gJ0BlbW90aW9uL3N0eWxlZCc7XG5pbXBvcnQgRmxhZ3NJY29uIGZyb20gJ2NvdW50cnktZmxhZy1pY29ucy9yZWFjdC8zeDInO1xuaW1wb3J0IFJlYWN0IGZyb20gJ3JlYWN0JztcbmltcG9ydCB7IFRyYW5zLCB1c2VUcmFuc2xhdGlvbiB9IGZyb20gJ3JlYWN0LWkxOG5leHQnO1xuXG5pbXBvcnQgeyBMb2dvLCBUaGVtZSwgdXNlQ29uZmlnIH0gZnJvbSAnLi4vLi4vJztcbmltcG9ydCB7IEVhcnRoIH0gZnJvbSAnLi4vLi4vY29tcG9uZW50cy9JY29ucyc7XG5pbXBvcnQgeyBJbm5lciwgTGVmdCwgTG92ZSwgUmlnaHQsIFdyYXBwZXIgfSBmcm9tICcuL3N0eWxlcyc7XG5cbmZ1bmN0aW9uIGdvVG9WZXJkYWNjaW9XZWJzaXRlKCk6IHZvaWQge1xuICB3aW5kb3cub3BlbignaHR0cHM6Ly92ZXJkYWNjaW8ub3JnJywgJ19ibGFuaycpO1xufVxuXG4vKiBlc2xpbnQtZGlzYWJsZSByZWFjdC9qc3gta2V5ICovXG5jb25zdCBGb290ZXIgPSAoKSA9PiB7XG4gIGNvbnN0IHsgdCB9ID0gdXNlVHJhbnNsYXRpb24oKTtcbiAgY29uc3QgeyBjb25maWdPcHRpb25zIH0gPSB1c2VDb25maWcoKTtcbiAgcmV0dXJuIChcbiAgICA8V3JhcHBlciBkYXRhLXRlc3RpZD1cImZvb3RlclwiPlxuICAgICAgPElubmVyPlxuICAgICAgICA8TGVmdD5cbiAgICAgICAgICA8VHJhbnMgY29tcG9uZW50cz17WzxMb3ZlIC8+XX0gaTE4bktleT1cImZvb3Rlci5tYWRlLXdpdGgtbG92ZS1vblwiIC8+XG4gICAgICAgICAgPFRvb2xUaXA+XG4gICAgICAgICAgICA8U3R5bGVkRWFydGggLz5cbiAgICAgICAgICAgIDxGbGFncz5cbiAgICAgICAgICAgICAgPEljb24+XG4gICAgICAgICAgICAgICAgPEZsYWdzSWNvbi5FUyAvPlxuICAgICAgICAgICAgICA8L0ljb24+XG4gICAgICAgICAgICAgIDxJY29uPlxuICAgICAgICAgICAgICAgIDxGbGFnc0ljb24uTkkgLz5cbiAgICAgICAgICAgICAgPC9JY29uPlxuICAgICAgICAgICAgICA8SWNvbj5cbiAgICAgICAgICAgICAgICA8RmxhZ3NJY29uLklOIC8+XG4gICAgICAgICAgICAgIDwvSWNvbj5cbiAgICAgICAgICAgICAgPEljb24+XG4gICAgICAgICAgICAgICAgPEZsYWdzSWNvbi5CUiAvPlxuICAgICAgICAgICAgICA8L0ljb24+XG4gICAgICAgICAgICAgIDxJY29uPlxuICAgICAgICAgICAgICAgIDxGbGFnc0ljb24uQ04gLz5cbiAgICAgICAgICAgICAgPC9JY29uPlxuICAgICAgICAgICAgICA8SWNvbj5cbiAgICAgICAgICAgICAgICA8RmxhZ3NJY29uLkFVIC8+XG4gICAgICAgICAgICAgIDwvSWNvbj5cbiAgICAgICAgICAgICAgPEljb24+XG4gICAgICAgICAgICAgICAgPEZsYWdzSWNvbi5ERSAvPlxuICAgICAgICAgICAgICA8L0ljb24+XG4gICAgICAgICAgICAgIDxJY29uPlxuICAgICAgICAgICAgICAgIDxGbGFnc0ljb24uVFcgLz5cbiAgICAgICAgICAgICAgPC9JY29uPlxuICAgICAgICAgICAgPC9GbGFncz5cbiAgICAgICAgICA8L1Rvb2xUaXA+XG4gICAgICAgIDwvTGVmdD5cbiAgICAgICAgPFJpZ2h0PlxuICAgICAgICAgIHtjb25maWdPcHRpb25zPy52ZXJzaW9uICYmIChcbiAgICAgICAgICAgIDw+XG4gICAgICAgICAgICAgIDxzcGFuIGRhdGEtdGVzdGlkPVwidmVyc2lvbi1mb290ZXJcIj57dCgnZm9vdGVyLnBvd2VyZWQtYnknKX08L3NwYW4+XG4gICAgICAgICAgICAgIDxMb2dvIGlzRGVmYXVsdD17dHJ1ZX0gb25DbGljaz17Z29Ub1ZlcmRhY2Npb1dlYnNpdGV9IHNpemU9XCJ4LXNtYWxsXCIgLz5cbiAgICAgICAgICAgICAge2AvICR7Y29uZmlnT3B0aW9ucy52ZXJzaW9ufWB9XG4gICAgICAgICAgICA8Lz5cbiAgICAgICAgICApfVxuICAgICAgICA8L1JpZ2h0PlxuICAgICAgPC9Jbm5lcj5cbiAgICA8L1dyYXBwZXI+XG4gICk7XG59O1xuXG5leHBvcnQgZGVmYXVsdCBGb290ZXI7XG5cbmNvbnN0IFN0eWxlZEVhcnRoID0gc3R5bGVkKEVhcnRoKTx7IHRoZW1lPzogVGhlbWUgfT4oKHsgdGhlbWUgfSkgPT4gKHtcbiAgbWFyZ2luOiB0aGVtZS5zcGFjaW5nKDAsIDEpLFxufSkpO1xuXG5jb25zdCBGbGFncyA9IHN0eWxlZCgnc3BhbicpPHsgdGhlbWU/OiBUaGVtZSB9PigoeyB0aGVtZSB9KSA9PiAoe1xuICBkaXNwbGF5OiAnaW5saW5lLWdyaWQnLFxuICBncmlkVGVtcGxhdGVDb2x1bW5zOiAncmVwZWF0KDgsIG1heC1jb250ZW50KScsXG4gIGdyaWRHYXA6IHRoZW1lLnNwYWNpbmcoMCwgMSksXG4gIHBvc2l0aW9uOiAnYWJzb2x1dGUnLFxuICBiYWNrZ3JvdW5kOiB0aGVtZT8ucGFsZXR0ZS5ncmV5QXRoZW5zLFxuICBwYWRkaW5nOiAnMXB4IDRweCcsXG4gIGJvcmRlclJhZGl1czogMyxcbiAgaGVpZ2h0OiAyMCxcbiAgYWxpZ25JdGVtczogJ2NlbnRlcicsXG4gIHZpc2liaWxpdHk6ICdoaWRkZW4nLFxuICB0b3A6IC0yLFxuICAnOmJlZm9yZSc6IHtcbiAgICBjb250ZW50OiBcIicnXCIsXG4gICAgcG9zaXRpb246ICdhYnNvbHV0ZScsXG4gICAgdG9wOiAnMjklJyxcbiAgICBsZWZ0OiAtNCxcbiAgICBtYXJnaW5MZWZ0OiAtNSxcbiAgICBib3JkZXI6ICc1cHggc29saWQnLFxuICAgIGJvcmRlckNvbG9yOiBgJHt0aGVtZT8ucGFsZXR0ZS5ncmV5QXRoZW5zfSB0cmFuc3BhcmVudCB0cmFuc3BhcmVudCB0cmFuc3BhcmVudGAsXG4gICAgdHJhbnNmb3JtOiAncm90YXRlKDkwZGVnKScsXG4gIH0sXG59KSk7XG5cbmNvbnN0IEljb24gPSBzdHlsZWQoJ2RpdicpKHtcbiAgd2lkdGg6ICcxMHB4Jyxcbn0pO1xuXG5jb25zdCBUb29sVGlwID0gc3R5bGVkKCdzcGFuJykoe1xuICBwb3NpdGlvbjogJ3JlbGF0aXZlJyxcbiAgaGVpZ2h0OiAnMThweCcsXG4gICc6aG92ZXInOiB7XG4gICAgW2Ake0ZsYWdzfWBdOiB7XG4gICAgICB2aXNpYmlsaXR5OiAndmlzaWJsZScsXG4gICAgfSxcbiAgfSxcbn0pO1xuIl19 */");
|
|
110
|
+
//# sourceMappingURL=Footer.js.map
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
Object.defineProperty(exports, "default", {
|
|
7
|
+
enumerable: true,
|
|
8
|
+
get: function () {
|
|
9
|
+
return _Footer.default;
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
var _Footer = _interopRequireDefault(require("./Footer"));
|
|
13
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
14
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.Wrapper = exports.Right = exports.Love = exports.Left = exports.Inner = void 0;
|
|
7
|
+
var _base = _interopRequireDefault(require("@emotion/styled/base"));
|
|
8
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
9
|
+
function _EMOTION_STRINGIFIED_CSS_ERROR__() { return "You have tried to stringify object returned from `css` function. It isn't supposed to be used directly (e.g. as value of the `className` prop), but rather handed to emotion so it can handle it (e.g. as value of `css` prop)."; }
|
|
10
|
+
const Wrapper = exports.Wrapper = /*#__PURE__*/(0, _base.default)('div', process.env.NODE_ENV === "production" ? {
|
|
11
|
+
target: "e1u2lefy4"
|
|
12
|
+
} : {
|
|
13
|
+
target: "e1u2lefy4",
|
|
14
|
+
label: "Wrapper"
|
|
15
|
+
})(({
|
|
16
|
+
theme
|
|
17
|
+
}) => ({
|
|
18
|
+
background: (theme === null || theme === void 0 ? void 0 : theme.palette.mode) === 'light' ? theme === null || theme === void 0 ? void 0 : theme.palette.snow : theme === null || theme === void 0 ? void 0 : theme.palette.cyanBlue,
|
|
19
|
+
borderTop: `1px solid ${theme === null || theme === void 0 ? void 0 : theme.palette.greyGainsboro}`,
|
|
20
|
+
color: (theme === null || theme === void 0 ? void 0 : theme.palette.mode) === 'dark' ? theme === null || theme === void 0 ? void 0 : theme.palette.white : theme === null || theme === void 0 ? void 0 : theme.palette.nobel01,
|
|
21
|
+
fontSize: '14px',
|
|
22
|
+
padding: '20px'
|
|
23
|
+
}), process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9zZWN0aW9ucy9Gb290ZXIvc3R5bGVzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUl1QiIsImZpbGUiOiIuLi8uLi8uLi9zcmMvc2VjdGlvbnMvRm9vdGVyL3N0eWxlcy50cyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBzdHlsZWQgZnJvbSAnQGVtb3Rpb24vc3R5bGVkJztcblxuaW1wb3J0IHsgVGhlbWUgfSBmcm9tICcuLi8uLi8nO1xuXG5leHBvcnQgY29uc3QgV3JhcHBlciA9IHN0eWxlZCgnZGl2Jyk8eyB0aGVtZT86IFRoZW1lIH0+KCh7IHRoZW1lIH0pID0+ICh7XG4gIGJhY2tncm91bmQ6IHRoZW1lPy5wYWxldHRlLm1vZGUgPT09ICdsaWdodCcgPyB0aGVtZT8ucGFsZXR0ZS5zbm93IDogdGhlbWU/LnBhbGV0dGUuY3lhbkJsdWUsXG4gIGJvcmRlclRvcDogYDFweCBzb2xpZCAke3RoZW1lPy5wYWxldHRlLmdyZXlHYWluc2Jvcm99YCxcbiAgY29sb3I6IHRoZW1lPy5wYWxldHRlLm1vZGUgPT09ICdkYXJrJyA/IHRoZW1lPy5wYWxldHRlLndoaXRlIDogdGhlbWU/LnBhbGV0dGUubm9iZWwwMSxcbiAgZm9udFNpemU6ICcxNHB4JyxcbiAgcGFkZGluZzogJzIwcHgnLFxufSkpO1xuXG5leHBvcnQgY29uc3QgSW5uZXIgPSBzdHlsZWQoJ2RpdicpPHsgdGhlbWU/OiBUaGVtZSB9PigoeyB0aGVtZSB9KSA9PiAoe1xuICBkaXNwbGF5OiAnZmxleCcsXG4gIGFsaWduSXRlbXM6ICdjZW50ZXInLFxuICBqdXN0aWZ5Q29udGVudDogJ2ZsZXgtZW5kJyxcbiAgd2lkdGg6ICcxMDAlJyxcbiAgW2BAbWVkaWEgKG1pbi13aWR0aDogJHt0aGVtZT8uYnJlYWtQb2ludHMubWVkaXVtfXB4KWBdOiB7XG4gICAgbWluV2lkdGg6IDQwMCxcbiAgICBtYXhXaWR0aDogODAwLFxuICAgIG1hcmdpbjogJ2F1dG8nLFxuICAgIGp1c3RpZnlDb250ZW50OiAnc3BhY2UtYmV0d2VlbicsXG4gIH0sXG4gIFtgQG1lZGlhIChtaW4td2lkdGg6ICR7dGhlbWU/LmJyZWFrUG9pbnRzLmxhcmdlfXB4KWBdOiB7XG4gICAgbWF4V2lkdGg6IDEyNDAsXG4gIH0sXG59KSk7XG5cbmV4cG9ydCBjb25zdCBMZWZ0ID0gc3R5bGVkKCdkaXYnKTx7IHRoZW1lPzogVGhlbWUgfT4oKHsgdGhlbWUgfSkgPT4gKHtcbiAgYWxpZ25JdGVtczogJ2NlbnRlcicsXG4gIGRpc3BsYXk6ICdub25lJyxcbiAgW2BAbWVkaWEgKG1pbi13aWR0aDogJHt0aGVtZT8uYnJlYWtQb2ludHMubWVkaXVtfXB4KWBdOiB7XG4gICAgZGlzcGxheTogJ2ZsZXgnLFxuICB9LFxufSkpO1xuXG5leHBvcnQgY29uc3QgUmlnaHQgPSBzdHlsZWQoTGVmdCkoe1xuICBkaXNwbGF5OiAnZmxleCcsXG59KTtcblxuZXhwb3J0IGNvbnN0IExvdmUgPSBzdHlsZWQoJ3NwYW4nKTx7IHRoZW1lPzogVGhlbWUgfT4oKHsgdGhlbWUgfSkgPT4gKHtcbiAgY29sb3I6IHRoZW1lPy5wYWxldHRlLmxvdmUsXG4gIHBhZGRpbmc6ICcwIDVweCcsXG59KSk7XG4iXX0= */");
|
|
24
|
+
const Inner = exports.Inner = /*#__PURE__*/(0, _base.default)('div', process.env.NODE_ENV === "production" ? {
|
|
25
|
+
target: "e1u2lefy3"
|
|
26
|
+
} : {
|
|
27
|
+
target: "e1u2lefy3",
|
|
28
|
+
label: "Inner"
|
|
29
|
+
})(({
|
|
30
|
+
theme
|
|
31
|
+
}) => ({
|
|
32
|
+
display: 'flex',
|
|
33
|
+
alignItems: 'center',
|
|
34
|
+
justifyContent: 'flex-end',
|
|
35
|
+
width: '100%',
|
|
36
|
+
[`@media (min-width: ${theme === null || theme === void 0 ? void 0 : theme.breakPoints.medium}px)`]: {
|
|
37
|
+
minWidth: 400,
|
|
38
|
+
maxWidth: 800,
|
|
39
|
+
margin: 'auto',
|
|
40
|
+
justifyContent: 'space-between'
|
|
41
|
+
},
|
|
42
|
+
[`@media (min-width: ${theme === null || theme === void 0 ? void 0 : theme.breakPoints.large}px)`]: {
|
|
43
|
+
maxWidth: 1240
|
|
44
|
+
}
|
|
45
|
+
}), process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9zZWN0aW9ucy9Gb290ZXIvc3R5bGVzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQVlxQiIsImZpbGUiOiIuLi8uLi8uLi9zcmMvc2VjdGlvbnMvRm9vdGVyL3N0eWxlcy50cyIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCBzdHlsZWQgZnJvbSAnQGVtb3Rpb24vc3R5bGVkJztcblxuaW1wb3J0IHsgVGhlbWUgfSBmcm9tICcuLi8uLi8nO1xuXG5leHBvcnQgY29uc3QgV3JhcHBlciA9IHN0eWxlZCgnZGl2Jyk8eyB0aGVtZT86IFRoZW1lIH0+KCh7IHRoZW1lIH0pID0+ICh7XG4gIGJhY2tncm91bmQ6IHRoZW1lPy5wYWxldHRlLm1vZGUgPT09ICdsaWdodCcgPyB0aGVtZT8ucGFsZXR0ZS5zbm93IDogdGhlbWU/LnBhbGV0dGUuY3lhbkJsdWUsXG4gIGJvcmRlclRvcDogYDFweCBzb2xpZCAke3RoZW1lPy5wYWxldHRlLmdyZXlHYWluc2Jvcm99YCxcbiAgY29sb3I6IHRoZW1lPy5wYWxldHRlLm1vZGUgPT09ICdkYXJrJyA/IHRoZW1lPy5wYWxldHRlLndoaXRlIDogdGhlbWU/LnBhbGV0dGUubm9iZWwwMSxcbiAgZm9udFNpemU6ICcxNHB4JyxcbiAgcGFkZGluZzogJzIwcHgnLFxufSkpO1xuXG5leHBvcnQgY29uc3QgSW5uZXIgPSBzdHlsZWQoJ2RpdicpPHsgdGhlbWU/OiBUaGVtZSB9PigoeyB0aGVtZSB9KSA9PiAoe1xuICBkaXNwbGF5OiAnZmxleCcsXG4gIGFsaWduSXRlbXM6ICdjZW50ZXInLFxuICBqdXN0aWZ5Q29udGVudDogJ2ZsZXgtZW5kJyxcbiAgd2lkdGg6ICcxMDAlJyxcbiAgW2BAbWVkaWEgKG1pbi13aWR0aDogJHt0aGVtZT8uYnJlYWtQb2ludHMubWVkaXVtfXB4KWBdOiB7XG4gICAgbWluV2lkdGg6IDQwMCxcbiAgICBtYXhXaWR0aDogODAwLFxuICAgIG1hcmdpbjogJ2F1dG8nLFxuICAgIGp1c3RpZnlDb250ZW50OiAnc3BhY2UtYmV0d2VlbicsXG4gIH0sXG4gIFtgQG1lZGlhIChtaW4td2lkdGg6ICR7dGhlbWU/LmJyZWFrUG9pbnRzLmxhcmdlfXB4KWBdOiB7XG4gICAgbWF4V2lkdGg6IDEyNDAsXG4gIH0sXG59KSk7XG5cbmV4cG9ydCBjb25zdCBMZWZ0ID0gc3R5bGVkKCdkaXYnKTx7IHRoZW1lPzogVGhlbWUgfT4oKHsgdGhlbWUgfSkgPT4gKHtcbiAgYWxpZ25JdGVtczogJ2NlbnRlcicsXG4gIGRpc3BsYXk6ICdub25lJyxcbiAgW2BAbWVkaWEgKG1pbi13aWR0aDogJHt0aGVtZT8uYnJlYWtQb2ludHMubWVkaXVtfXB4KWBdOiB7XG4gICAgZGlzcGxheTogJ2ZsZXgnLFxuICB9LFxufSkpO1xuXG5leHBvcnQgY29uc3QgUmlnaHQgPSBzdHlsZWQoTGVmdCkoe1xuICBkaXNwbGF5OiAnZmxleCcsXG59KTtcblxuZXhwb3J0IGNvbnN0IExvdmUgPSBzdHlsZWQoJ3NwYW4nKTx7IHRoZW1lPzogVGhlbWUgfT4oKHsgdGhlbWUgfSkgPT4gKHtcbiAgY29sb3I6IHRoZW1lPy5wYWxldHRlLmxvdmUsXG4gIHBhZGRpbmc6ICcwIDVweCcsXG59KSk7XG4iXX0= */");
|
|
46
|
+
const Left = exports.Left = /*#__PURE__*/(0, _base.default)('div', process.env.NODE_ENV === "production" ? {
|
|
47
|
+
target: "e1u2lefy2"
|
|
48
|
+
} : {
|
|
49
|
+
target: "e1u2lefy2",
|
|
50
|
+
label: "Left"
|
|
51
|
+
})(({
|
|
52
|
+
theme
|
|
53
|
+
}) => ({
|
|
54
|
+
alignItems: 'center',
|
|
55
|
+
display: 'none',
|
|
56
|
+
[`@media (min-width: ${theme === null || theme === void 0 ? void 0 : theme.breakPoints.medium}px)`]: {
|
|
57
|
+
display: 'flex'
|
|
58
|
+
}
|
|
59
|
+
}), process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9zZWN0aW9ucy9Gb290ZXIvc3R5bGVzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQTRCb0IiLCJmaWxlIjoiLi4vLi4vLi4vc3JjL3NlY3Rpb25zL0Zvb3Rlci9zdHlsZXMudHMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgc3R5bGVkIGZyb20gJ0BlbW90aW9uL3N0eWxlZCc7XG5cbmltcG9ydCB7IFRoZW1lIH0gZnJvbSAnLi4vLi4vJztcblxuZXhwb3J0IGNvbnN0IFdyYXBwZXIgPSBzdHlsZWQoJ2RpdicpPHsgdGhlbWU/OiBUaGVtZSB9PigoeyB0aGVtZSB9KSA9PiAoe1xuICBiYWNrZ3JvdW5kOiB0aGVtZT8ucGFsZXR0ZS5tb2RlID09PSAnbGlnaHQnID8gdGhlbWU/LnBhbGV0dGUuc25vdyA6IHRoZW1lPy5wYWxldHRlLmN5YW5CbHVlLFxuICBib3JkZXJUb3A6IGAxcHggc29saWQgJHt0aGVtZT8ucGFsZXR0ZS5ncmV5R2FpbnNib3JvfWAsXG4gIGNvbG9yOiB0aGVtZT8ucGFsZXR0ZS5tb2RlID09PSAnZGFyaycgPyB0aGVtZT8ucGFsZXR0ZS53aGl0ZSA6IHRoZW1lPy5wYWxldHRlLm5vYmVsMDEsXG4gIGZvbnRTaXplOiAnMTRweCcsXG4gIHBhZGRpbmc6ICcyMHB4Jyxcbn0pKTtcblxuZXhwb3J0IGNvbnN0IElubmVyID0gc3R5bGVkKCdkaXYnKTx7IHRoZW1lPzogVGhlbWUgfT4oKHsgdGhlbWUgfSkgPT4gKHtcbiAgZGlzcGxheTogJ2ZsZXgnLFxuICBhbGlnbkl0ZW1zOiAnY2VudGVyJyxcbiAganVzdGlmeUNvbnRlbnQ6ICdmbGV4LWVuZCcsXG4gIHdpZHRoOiAnMTAwJScsXG4gIFtgQG1lZGlhIChtaW4td2lkdGg6ICR7dGhlbWU/LmJyZWFrUG9pbnRzLm1lZGl1bX1weClgXToge1xuICAgIG1pbldpZHRoOiA0MDAsXG4gICAgbWF4V2lkdGg6IDgwMCxcbiAgICBtYXJnaW46ICdhdXRvJyxcbiAgICBqdXN0aWZ5Q29udGVudDogJ3NwYWNlLWJldHdlZW4nLFxuICB9LFxuICBbYEBtZWRpYSAobWluLXdpZHRoOiAke3RoZW1lPy5icmVha1BvaW50cy5sYXJnZX1weClgXToge1xuICAgIG1heFdpZHRoOiAxMjQwLFxuICB9LFxufSkpO1xuXG5leHBvcnQgY29uc3QgTGVmdCA9IHN0eWxlZCgnZGl2Jyk8eyB0aGVtZT86IFRoZW1lIH0+KCh7IHRoZW1lIH0pID0+ICh7XG4gIGFsaWduSXRlbXM6ICdjZW50ZXInLFxuICBkaXNwbGF5OiAnbm9uZScsXG4gIFtgQG1lZGlhIChtaW4td2lkdGg6ICR7dGhlbWU/LmJyZWFrUG9pbnRzLm1lZGl1bX1weClgXToge1xuICAgIGRpc3BsYXk6ICdmbGV4JyxcbiAgfSxcbn0pKTtcblxuZXhwb3J0IGNvbnN0IFJpZ2h0ID0gc3R5bGVkKExlZnQpKHtcbiAgZGlzcGxheTogJ2ZsZXgnLFxufSk7XG5cbmV4cG9ydCBjb25zdCBMb3ZlID0gc3R5bGVkKCdzcGFuJyk8eyB0aGVtZT86IFRoZW1lIH0+KCh7IHRoZW1lIH0pID0+ICh7XG4gIGNvbG9yOiB0aGVtZT8ucGFsZXR0ZS5sb3ZlLFxuICBwYWRkaW5nOiAnMCA1cHgnLFxufSkpO1xuIl19 */");
|
|
60
|
+
const Right = exports.Right = /*#__PURE__*/(0, _base.default)(Left, process.env.NODE_ENV === "production" ? {
|
|
61
|
+
target: "e1u2lefy1"
|
|
62
|
+
} : {
|
|
63
|
+
target: "e1u2lefy1",
|
|
64
|
+
label: "Right"
|
|
65
|
+
})(process.env.NODE_ENV === "production" ? {
|
|
66
|
+
name: "zjik7",
|
|
67
|
+
styles: "display:flex"
|
|
68
|
+
} : {
|
|
69
|
+
name: "zjik7",
|
|
70
|
+
styles: "display:flex",
|
|
71
|
+
map: "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9zZWN0aW9ucy9Gb290ZXIvc3R5bGVzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQW9DcUIiLCJmaWxlIjoiLi4vLi4vLi4vc3JjL3NlY3Rpb25zL0Zvb3Rlci9zdHlsZXMudHMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgc3R5bGVkIGZyb20gJ0BlbW90aW9uL3N0eWxlZCc7XG5cbmltcG9ydCB7IFRoZW1lIH0gZnJvbSAnLi4vLi4vJztcblxuZXhwb3J0IGNvbnN0IFdyYXBwZXIgPSBzdHlsZWQoJ2RpdicpPHsgdGhlbWU/OiBUaGVtZSB9PigoeyB0aGVtZSB9KSA9PiAoe1xuICBiYWNrZ3JvdW5kOiB0aGVtZT8ucGFsZXR0ZS5tb2RlID09PSAnbGlnaHQnID8gdGhlbWU/LnBhbGV0dGUuc25vdyA6IHRoZW1lPy5wYWxldHRlLmN5YW5CbHVlLFxuICBib3JkZXJUb3A6IGAxcHggc29saWQgJHt0aGVtZT8ucGFsZXR0ZS5ncmV5R2FpbnNib3JvfWAsXG4gIGNvbG9yOiB0aGVtZT8ucGFsZXR0ZS5tb2RlID09PSAnZGFyaycgPyB0aGVtZT8ucGFsZXR0ZS53aGl0ZSA6IHRoZW1lPy5wYWxldHRlLm5vYmVsMDEsXG4gIGZvbnRTaXplOiAnMTRweCcsXG4gIHBhZGRpbmc6ICcyMHB4Jyxcbn0pKTtcblxuZXhwb3J0IGNvbnN0IElubmVyID0gc3R5bGVkKCdkaXYnKTx7IHRoZW1lPzogVGhlbWUgfT4oKHsgdGhlbWUgfSkgPT4gKHtcbiAgZGlzcGxheTogJ2ZsZXgnLFxuICBhbGlnbkl0ZW1zOiAnY2VudGVyJyxcbiAganVzdGlmeUNvbnRlbnQ6ICdmbGV4LWVuZCcsXG4gIHdpZHRoOiAnMTAwJScsXG4gIFtgQG1lZGlhIChtaW4td2lkdGg6ICR7dGhlbWU/LmJyZWFrUG9pbnRzLm1lZGl1bX1weClgXToge1xuICAgIG1pbldpZHRoOiA0MDAsXG4gICAgbWF4V2lkdGg6IDgwMCxcbiAgICBtYXJnaW46ICdhdXRvJyxcbiAgICBqdXN0aWZ5Q29udGVudDogJ3NwYWNlLWJldHdlZW4nLFxuICB9LFxuICBbYEBtZWRpYSAobWluLXdpZHRoOiAke3RoZW1lPy5icmVha1BvaW50cy5sYXJnZX1weClgXToge1xuICAgIG1heFdpZHRoOiAxMjQwLFxuICB9LFxufSkpO1xuXG5leHBvcnQgY29uc3QgTGVmdCA9IHN0eWxlZCgnZGl2Jyk8eyB0aGVtZT86IFRoZW1lIH0+KCh7IHRoZW1lIH0pID0+ICh7XG4gIGFsaWduSXRlbXM6ICdjZW50ZXInLFxuICBkaXNwbGF5OiAnbm9uZScsXG4gIFtgQG1lZGlhIChtaW4td2lkdGg6ICR7dGhlbWU/LmJyZWFrUG9pbnRzLm1lZGl1bX1weClgXToge1xuICAgIGRpc3BsYXk6ICdmbGV4JyxcbiAgfSxcbn0pKTtcblxuZXhwb3J0IGNvbnN0IFJpZ2h0ID0gc3R5bGVkKExlZnQpKHtcbiAgZGlzcGxheTogJ2ZsZXgnLFxufSk7XG5cbmV4cG9ydCBjb25zdCBMb3ZlID0gc3R5bGVkKCdzcGFuJyk8eyB0aGVtZT86IFRoZW1lIH0+KCh7IHRoZW1lIH0pID0+ICh7XG4gIGNvbG9yOiB0aGVtZT8ucGFsZXR0ZS5sb3ZlLFxuICBwYWRkaW5nOiAnMCA1cHgnLFxufSkpO1xuIl19 */",
|
|
72
|
+
toString: _EMOTION_STRINGIFIED_CSS_ERROR__
|
|
73
|
+
});
|
|
74
|
+
const Love = exports.Love = /*#__PURE__*/(0, _base.default)('span', process.env.NODE_ENV === "production" ? {
|
|
75
|
+
target: "e1u2lefy0"
|
|
76
|
+
} : {
|
|
77
|
+
target: "e1u2lefy0",
|
|
78
|
+
label: "Love"
|
|
79
|
+
})(({
|
|
80
|
+
theme
|
|
81
|
+
}) => ({
|
|
82
|
+
color: theme === null || theme === void 0 ? void 0 : theme.palette.love,
|
|
83
|
+
padding: '0 5px'
|
|
84
|
+
}), process.env.NODE_ENV === "production" ? "" : "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9zZWN0aW9ucy9Gb290ZXIvc3R5bGVzLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQXdDb0IiLCJmaWxlIjoiLi4vLi4vLi4vc3JjL3NlY3Rpb25zL0Zvb3Rlci9zdHlsZXMudHMiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgc3R5bGVkIGZyb20gJ0BlbW90aW9uL3N0eWxlZCc7XG5cbmltcG9ydCB7IFRoZW1lIH0gZnJvbSAnLi4vLi4vJztcblxuZXhwb3J0IGNvbnN0IFdyYXBwZXIgPSBzdHlsZWQoJ2RpdicpPHsgdGhlbWU/OiBUaGVtZSB9PigoeyB0aGVtZSB9KSA9PiAoe1xuICBiYWNrZ3JvdW5kOiB0aGVtZT8ucGFsZXR0ZS5tb2RlID09PSAnbGlnaHQnID8gdGhlbWU/LnBhbGV0dGUuc25vdyA6IHRoZW1lPy5wYWxldHRlLmN5YW5CbHVlLFxuICBib3JkZXJUb3A6IGAxcHggc29saWQgJHt0aGVtZT8ucGFsZXR0ZS5ncmV5R2FpbnNib3JvfWAsXG4gIGNvbG9yOiB0aGVtZT8ucGFsZXR0ZS5tb2RlID09PSAnZGFyaycgPyB0aGVtZT8ucGFsZXR0ZS53aGl0ZSA6IHRoZW1lPy5wYWxldHRlLm5vYmVsMDEsXG4gIGZvbnRTaXplOiAnMTRweCcsXG4gIHBhZGRpbmc6ICcyMHB4Jyxcbn0pKTtcblxuZXhwb3J0IGNvbnN0IElubmVyID0gc3R5bGVkKCdkaXYnKTx7IHRoZW1lPzogVGhlbWUgfT4oKHsgdGhlbWUgfSkgPT4gKHtcbiAgZGlzcGxheTogJ2ZsZXgnLFxuICBhbGlnbkl0ZW1zOiAnY2VudGVyJyxcbiAganVzdGlmeUNvbnRlbnQ6ICdmbGV4LWVuZCcsXG4gIHdpZHRoOiAnMTAwJScsXG4gIFtgQG1lZGlhIChtaW4td2lkdGg6ICR7dGhlbWU/LmJyZWFrUG9pbnRzLm1lZGl1bX1weClgXToge1xuICAgIG1pbldpZHRoOiA0MDAsXG4gICAgbWF4V2lkdGg6IDgwMCxcbiAgICBtYXJnaW46ICdhdXRvJyxcbiAgICBqdXN0aWZ5Q29udGVudDogJ3NwYWNlLWJldHdlZW4nLFxuICB9LFxuICBbYEBtZWRpYSAobWluLXdpZHRoOiAke3RoZW1lPy5icmVha1BvaW50cy5sYXJnZX1weClgXToge1xuICAgIG1heFdpZHRoOiAxMjQwLFxuICB9LFxufSkpO1xuXG5leHBvcnQgY29uc3QgTGVmdCA9IHN0eWxlZCgnZGl2Jyk8eyB0aGVtZT86IFRoZW1lIH0+KCh7IHRoZW1lIH0pID0+ICh7XG4gIGFsaWduSXRlbXM6ICdjZW50ZXInLFxuICBkaXNwbGF5OiAnbm9uZScsXG4gIFtgQG1lZGlhIChtaW4td2lkdGg6ICR7dGhlbWU/LmJyZWFrUG9pbnRzLm1lZGl1bX1weClgXToge1xuICAgIGRpc3BsYXk6ICdmbGV4JyxcbiAgfSxcbn0pKTtcblxuZXhwb3J0IGNvbnN0IFJpZ2h0ID0gc3R5bGVkKExlZnQpKHtcbiAgZGlzcGxheTogJ2ZsZXgnLFxufSk7XG5cbmV4cG9ydCBjb25zdCBMb3ZlID0gc3R5bGVkKCdzcGFuJyk8eyB0aGVtZT86IFRoZW1lIH0+KCh7IHRoZW1lIH0pID0+ICh7XG4gIGNvbG9yOiB0aGVtZT8ucGFsZXR0ZS5sb3ZlLFxuICBwYWRkaW5nOiAnMCA1cHgnLFxufSkpO1xuIl19 */");
|
|
85
|
+
//# sourceMappingURL=styles.js.map
|
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _Button = _interopRequireDefault(require("@mui/material/Button"));
|
|
8
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
9
|
+
var _reactI18next = require("react-i18next");
|
|
10
|
+
var _reactRedux = require("react-redux");
|
|
11
|
+
var _ = require("../../");
|
|
12
|
+
var _HeaderLeft = _interopRequireDefault(require("./HeaderLeft"));
|
|
13
|
+
var _HeaderRight = _interopRequireDefault(require("./HeaderRight"));
|
|
14
|
+
var _HeaderSettingsDialog = _interopRequireDefault(require("./HeaderSettingsDialog"));
|
|
15
|
+
var _styles = require("./styles");
|
|
16
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
17
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
18
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
19
|
+
/* eslint-disable react/jsx-no-bind*/
|
|
20
|
+
const Header = ({
|
|
21
|
+
HeaderInfoDialog
|
|
22
|
+
}) => {
|
|
23
|
+
const {
|
|
24
|
+
t
|
|
25
|
+
} = (0, _reactI18next.useTranslation)();
|
|
26
|
+
const [isInfoDialogOpen, setOpenInfoDialog] = (0, _react.useState)(false);
|
|
27
|
+
const [isSettingsDialogOpen, setSettingsDialogOpen] = (0, _react.useState)(false);
|
|
28
|
+
const [showMobileNavBar, setShowMobileNavBar] = (0, _react.useState)(false);
|
|
29
|
+
const [showLoginModal, setShowLoginModal] = (0, _react.useState)(false);
|
|
30
|
+
const loginStore = (0, _reactRedux.useSelector)(state => state.login);
|
|
31
|
+
const {
|
|
32
|
+
configOptions
|
|
33
|
+
} = (0, _.useConfig)();
|
|
34
|
+
const dispatch = (0, _reactRedux.useDispatch)();
|
|
35
|
+
const handleLogout = () => {
|
|
36
|
+
dispatch.login.logOutUser();
|
|
37
|
+
setShowLoginModal(false);
|
|
38
|
+
};
|
|
39
|
+
return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(_styles.NavBar, {
|
|
40
|
+
"data-testid": "header",
|
|
41
|
+
position: "static"
|
|
42
|
+
}, /*#__PURE__*/_react.default.createElement(_styles.InnerNavBar, null, /*#__PURE__*/_react.default.createElement(_HeaderLeft.default, {
|
|
43
|
+
showSearch: configOptions.showSearch
|
|
44
|
+
}), /*#__PURE__*/_react.default.createElement(_HeaderRight.default, {
|
|
45
|
+
hasLogin: configOptions === null || configOptions === void 0 ? void 0 : configOptions.login,
|
|
46
|
+
onLogout: handleLogout,
|
|
47
|
+
onOpenRegistryInfoDialog: () => setOpenInfoDialog(true),
|
|
48
|
+
onOpenSettingsDialog: () => setSettingsDialogOpen(true),
|
|
49
|
+
onToggleLogin: () => setShowLoginModal(!showLoginModal),
|
|
50
|
+
onToggleMobileNav: () => setShowMobileNavBar(!showMobileNavBar),
|
|
51
|
+
showInfo: configOptions.showInfo,
|
|
52
|
+
showSearch: configOptions.showSearch,
|
|
53
|
+
showSettings: configOptions.showSettings,
|
|
54
|
+
showThemeSwitch: configOptions.showThemeSwitch,
|
|
55
|
+
username: loginStore === null || loginStore === void 0 ? void 0 : loginStore.username
|
|
56
|
+
})), /*#__PURE__*/_react.default.createElement(_HeaderSettingsDialog.default, {
|
|
57
|
+
isOpen: isSettingsDialogOpen,
|
|
58
|
+
onCloseDialog: () => setSettingsDialogOpen(false)
|
|
59
|
+
}), HeaderInfoDialog ? /*#__PURE__*/_react.default.createElement(HeaderInfoDialog, {
|
|
60
|
+
dialogTitle: t('dialog.registry-info.title'),
|
|
61
|
+
isOpen: isInfoDialogOpen,
|
|
62
|
+
onCloseDialog: () => setOpenInfoDialog(false)
|
|
63
|
+
}) : null), showMobileNavBar && /*#__PURE__*/_react.default.createElement(_styles.MobileNavBar, null, /*#__PURE__*/_react.default.createElement(_styles.InnerMobileNavBar, null, /*#__PURE__*/_react.default.createElement(_.Search, null)), /*#__PURE__*/_react.default.createElement(_Button.default, {
|
|
64
|
+
color: "inherit",
|
|
65
|
+
onClick: () => setShowMobileNavBar(false)
|
|
66
|
+
}, t('button.cancel'))), !loginStore.username && /*#__PURE__*/_react.default.createElement(_.LoginDialog, {
|
|
67
|
+
onClose: () => setShowLoginModal(false),
|
|
68
|
+
open: showLoginModal
|
|
69
|
+
}));
|
|
70
|
+
};
|
|
71
|
+
var _default = exports.default = Header;
|
|
72
|
+
//# sourceMappingURL=Header.js.map
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _react = _interopRequireDefault(require("react"));
|
|
8
|
+
var _reactI18next = require("react-i18next");
|
|
9
|
+
var _ = require("../../");
|
|
10
|
+
var _styles = require("./styles");
|
|
11
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
12
|
+
const HeaderGreetings = ({
|
|
13
|
+
username
|
|
14
|
+
}) => {
|
|
15
|
+
const {
|
|
16
|
+
t
|
|
17
|
+
} = (0, _reactI18next.useTranslation)();
|
|
18
|
+
return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(_styles.Greetings, null, t('header.greetings')), /*#__PURE__*/_react.default.createElement(_.Label, {
|
|
19
|
+
"data-testid": "greetings-label",
|
|
20
|
+
text: username,
|
|
21
|
+
weight: "bold"
|
|
22
|
+
}));
|
|
23
|
+
};
|
|
24
|
+
var _default = exports.default = HeaderGreetings;
|
|
25
|
+
//# sourceMappingURL=HeaderGreetings.js.map
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _base = _interopRequireDefault(require("@emotion/styled/base"));
|
|
8
|
+
var _react = _interopRequireDefault(require("react"));
|
|
9
|
+
var _reactRouterDom = require("react-router-dom");
|
|
10
|
+
var _ = require("../../");
|
|
11
|
+
var _styles = require("./styles");
|
|
12
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
13
|
+
function _EMOTION_STRINGIFIED_CSS_ERROR__() { return "You have tried to stringify object returned from `css` function. It isn't supposed to be used directly (e.g. as value of the `className` prop), but rather handed to emotion so it can handle it (e.g. as value of `css` prop)."; }
|
|
14
|
+
const StyledLink = /*#__PURE__*/(0, _base.default)(_reactRouterDom.Link, process.env.NODE_ENV === "production" ? {
|
|
15
|
+
target: "e16mw1g30"
|
|
16
|
+
} : {
|
|
17
|
+
target: "e16mw1g30",
|
|
18
|
+
label: "StyledLink"
|
|
19
|
+
})(process.env.NODE_ENV === "production" ? {
|
|
20
|
+
name: "19y5u9z",
|
|
21
|
+
styles: "margin-right:1em"
|
|
22
|
+
} : {
|
|
23
|
+
name: "19y5u9z",
|
|
24
|
+
styles: "margin-right:1em",
|
|
25
|
+
map: "/*# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uLy4uLy4uL3NyYy9zZWN0aW9ucy9IZWFkZXIvSGVhZGVyTGVmdC50c3giXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBV21CIiwiZmlsZSI6Ii4uLy4uLy4uL3NyYy9zZWN0aW9ucy9IZWFkZXIvSGVhZGVyTGVmdC50c3giLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgc3R5bGVkIGZyb20gJ0BlbW90aW9uL3N0eWxlZCc7XG5pbXBvcnQgUmVhY3QgZnJvbSAncmVhY3QnO1xuaW1wb3J0IHsgTGluayB9IGZyb20gJ3JlYWN0LXJvdXRlci1kb20nO1xuXG5pbXBvcnQgeyBMb2dvLCBTZWFyY2ggfSBmcm9tICcuLi8uLi8nO1xuaW1wb3J0IHsgTGVmdFNpZGUsIFNlYXJjaFdyYXBwZXIgfSBmcm9tICcuL3N0eWxlcyc7XG5cbmludGVyZmFjZSBQcm9wcyB7XG4gIHNob3dTZWFyY2g/OiBib29sZWFuO1xufVxuXG5jb25zdCBTdHlsZWRMaW5rID0gc3R5bGVkKExpbmspKHtcbiAgbWFyZ2luUmlnaHQ6ICcxZW0nLFxufSk7XG5cbmNvbnN0IEhlYWRlckxlZnQ6IFJlYWN0LkZDPFByb3BzPiA9ICh7IHNob3dTZWFyY2ggfSkgPT4gKFxuICA8TGVmdFNpZGU+XG4gICAgPFN0eWxlZExpbmsgdG89eycvJ30+XG4gICAgICA8TG9nbyAvPlxuICAgIDwvU3R5bGVkTGluaz5cbiAgICB7c2hvd1NlYXJjaCAmJiAoXG4gICAgICA8U2VhcmNoV3JhcHBlciBkYXRhLXRlc3RpZD1cInNlYXJjaC1jb250YWluZXJcIj5cbiAgICAgICAgPFNlYXJjaCAvPlxuICAgICAgPC9TZWFyY2hXcmFwcGVyPlxuICAgICl9XG4gIDwvTGVmdFNpZGU+XG4pO1xuXG5leHBvcnQgZGVmYXVsdCBIZWFkZXJMZWZ0O1xuIl19 */",
|
|
26
|
+
toString: _EMOTION_STRINGIFIED_CSS_ERROR__
|
|
27
|
+
});
|
|
28
|
+
const HeaderLeft = ({
|
|
29
|
+
showSearch
|
|
30
|
+
}) => /*#__PURE__*/_react.default.createElement(_styles.LeftSide, null, /*#__PURE__*/_react.default.createElement(StyledLink, {
|
|
31
|
+
to: '/'
|
|
32
|
+
}, /*#__PURE__*/_react.default.createElement(_.Logo, null)), showSearch && /*#__PURE__*/_react.default.createElement(_styles.SearchWrapper, {
|
|
33
|
+
"data-testid": "search-container"
|
|
34
|
+
}, /*#__PURE__*/_react.default.createElement(_.Search, null)));
|
|
35
|
+
var _default = exports.default = HeaderLeft;
|
|
36
|
+
//# sourceMappingURL=HeaderLeft.js.map
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _AccountCircle = _interopRequireDefault(require("@mui/icons-material/AccountCircle"));
|
|
8
|
+
var _IconButton = _interopRequireDefault(require("@mui/material/IconButton"));
|
|
9
|
+
var _Menu = _interopRequireDefault(require("@mui/material/Menu"));
|
|
10
|
+
var _react = _interopRequireDefault(require("react"));
|
|
11
|
+
var _reactI18next = require("react-i18next");
|
|
12
|
+
var _ = require("../../");
|
|
13
|
+
var _HeaderGreetings = _interopRequireDefault(require("./HeaderGreetings"));
|
|
14
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
+
const HeaderMenu = ({
|
|
16
|
+
onLogout,
|
|
17
|
+
username,
|
|
18
|
+
isMenuOpen = false,
|
|
19
|
+
anchorEl,
|
|
20
|
+
onLoggedInMenu,
|
|
21
|
+
onLoggedInMenuClose
|
|
22
|
+
}) => {
|
|
23
|
+
const {
|
|
24
|
+
t
|
|
25
|
+
} = (0, _reactI18next.useTranslation)();
|
|
26
|
+
return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement(_IconButton.default, {
|
|
27
|
+
color: "inherit",
|
|
28
|
+
"data-testid": "logInDialogIcon",
|
|
29
|
+
id: "header--button-account",
|
|
30
|
+
onClick: onLoggedInMenu,
|
|
31
|
+
size: "large"
|
|
32
|
+
}, /*#__PURE__*/_react.default.createElement(_AccountCircle.default, null)), /*#__PURE__*/_react.default.createElement(_Menu.default, {
|
|
33
|
+
anchorEl: anchorEl,
|
|
34
|
+
anchorOrigin: {
|
|
35
|
+
vertical: 'top',
|
|
36
|
+
horizontal: 'right'
|
|
37
|
+
},
|
|
38
|
+
onClose: onLoggedInMenuClose,
|
|
39
|
+
open: isMenuOpen,
|
|
40
|
+
transformOrigin: {
|
|
41
|
+
vertical: 'top',
|
|
42
|
+
horizontal: 'right'
|
|
43
|
+
}
|
|
44
|
+
}, /*#__PURE__*/_react.default.createElement(_.MenuItem, null, /*#__PURE__*/_react.default.createElement(_HeaderGreetings.default, {
|
|
45
|
+
username: username
|
|
46
|
+
})), /*#__PURE__*/_react.default.createElement(_.MenuItem, {
|
|
47
|
+
"data-testid": "logOutDialogIcon",
|
|
48
|
+
id: "logOutDialogIcon",
|
|
49
|
+
onClick: onLogout
|
|
50
|
+
}, t('button.logout'))));
|
|
51
|
+
};
|
|
52
|
+
var _default = exports.default = HeaderMenu;
|
|
53
|
+
//# sourceMappingURL=HeaderMenu.js.map
|
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
var _Button = _interopRequireDefault(require("@mui/material/Button"));
|
|
8
|
+
var _react = _interopRequireWildcard(require("react"));
|
|
9
|
+
var _reactI18next = require("react-i18next");
|
|
10
|
+
var _ = require("../../");
|
|
11
|
+
var _HeaderMenu = _interopRequireDefault(require("./HeaderMenu"));
|
|
12
|
+
var _HeaderToolTip = _interopRequireDefault(require("./HeaderToolTip"));
|
|
13
|
+
var _styles = require("./styles");
|
|
14
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
|
|
15
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && Object.prototype.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
|
|
16
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
17
|
+
const HeaderRight = ({
|
|
18
|
+
showSearch,
|
|
19
|
+
username,
|
|
20
|
+
onToggleLogin,
|
|
21
|
+
hasLogin,
|
|
22
|
+
showInfo,
|
|
23
|
+
showSettings,
|
|
24
|
+
showThemeSwitch,
|
|
25
|
+
onLogout,
|
|
26
|
+
onToggleMobileNav,
|
|
27
|
+
onOpenRegistryInfoDialog,
|
|
28
|
+
onOpenSettingsDialog
|
|
29
|
+
}) => {
|
|
30
|
+
// @ts-ignore
|
|
31
|
+
const {
|
|
32
|
+
isDarkMode,
|
|
33
|
+
setIsDarkMode
|
|
34
|
+
} = (0, _.useCustomTheme)();
|
|
35
|
+
const [anchorEl, setAnchorEl] = (0, _react.useState)(null);
|
|
36
|
+
const [isMenuOpen, setIsMenuOpen] = (0, _react.useState)(false);
|
|
37
|
+
const hideLoginSection = hasLogin === false;
|
|
38
|
+
const {
|
|
39
|
+
t
|
|
40
|
+
} = (0, _reactI18next.useTranslation)();
|
|
41
|
+
(0, _react.useEffect)(() => {
|
|
42
|
+
setIsMenuOpen(Boolean(anchorEl));
|
|
43
|
+
}, [anchorEl]);
|
|
44
|
+
|
|
45
|
+
/**
|
|
46
|
+
* opens popover menu for logged in user.
|
|
47
|
+
*/
|
|
48
|
+
const handleLoggedInMenu = event => {
|
|
49
|
+
setAnchorEl(event.currentTarget);
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* closes popover menu for logged in user
|
|
54
|
+
*/
|
|
55
|
+
const handleLoggedInMenuClose = () => {
|
|
56
|
+
setAnchorEl(null);
|
|
57
|
+
};
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* close/open popover menu for logged in users.
|
|
61
|
+
*/
|
|
62
|
+
const handleToggleLogin = () => {
|
|
63
|
+
setAnchorEl(null);
|
|
64
|
+
onToggleLogin();
|
|
65
|
+
};
|
|
66
|
+
const handleToggleDarkLightMode = () => {
|
|
67
|
+
setTimeout(() => {
|
|
68
|
+
setIsDarkMode(!isDarkMode);
|
|
69
|
+
}, 300);
|
|
70
|
+
};
|
|
71
|
+
return /*#__PURE__*/_react.default.createElement(_styles.RightSide, {
|
|
72
|
+
"data-testid": "header-right"
|
|
73
|
+
}, showSearch === true && /*#__PURE__*/_react.default.createElement(_HeaderToolTip.default, {
|
|
74
|
+
onClick: onToggleMobileNav,
|
|
75
|
+
title: t('search.packages'),
|
|
76
|
+
tooltipIconType: 'search'
|
|
77
|
+
}), showSettings === true && /*#__PURE__*/_react.default.createElement(_HeaderToolTip.default, {
|
|
78
|
+
onClick: onOpenSettingsDialog,
|
|
79
|
+
title: t('header.settings'),
|
|
80
|
+
tooltipIconType: 'settings'
|
|
81
|
+
}), showInfo === true && /*#__PURE__*/_react.default.createElement(_HeaderToolTip.default, {
|
|
82
|
+
onClick: onOpenRegistryInfoDialog,
|
|
83
|
+
title: t('header.registry-info'),
|
|
84
|
+
tooltipIconType: 'info'
|
|
85
|
+
}), showThemeSwitch === true && /*#__PURE__*/_react.default.createElement(_HeaderToolTip.default, {
|
|
86
|
+
onClick: handleToggleDarkLightMode,
|
|
87
|
+
title: t('header.documentation'),
|
|
88
|
+
tooltipIconType: isDarkMode ? 'dark-mode' : 'light-mode'
|
|
89
|
+
}), !hideLoginSection && /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, username ? /*#__PURE__*/_react.default.createElement(_HeaderMenu.default, {
|
|
90
|
+
anchorEl: anchorEl,
|
|
91
|
+
isMenuOpen: isMenuOpen,
|
|
92
|
+
onLoggedInMenu: handleLoggedInMenu,
|
|
93
|
+
onLoggedInMenuClose: handleLoggedInMenuClose,
|
|
94
|
+
onLogout: onLogout,
|
|
95
|
+
username: username
|
|
96
|
+
}) : /*#__PURE__*/_react.default.createElement(_Button.default, {
|
|
97
|
+
color: "inherit",
|
|
98
|
+
"data-testid": "header--button-login",
|
|
99
|
+
onClick: handleToggleLogin
|
|
100
|
+
}, t('button.login'))));
|
|
101
|
+
};
|
|
102
|
+
var _default = exports.default = HeaderRight;
|
|
103
|
+
//# sourceMappingURL=HeaderRight.js.map
|