@redocly/theme 0.18.3 → 0.18.4-patch.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/components/Breadcrumbs/Breadcrumb.js +2 -5
- package/lib/components/Breadcrumbs/Breadcrumbs.js +6 -2
- package/lib/components/Breadcrumbs/index.d.ts +1 -0
- package/lib/components/Breadcrumbs/index.js +1 -0
- package/lib/components/Breadcrumbs/styledVariables.d.ts +1 -0
- package/lib/components/Breadcrumbs/styledVariables.js +20 -0
- package/lib/components/Button/Button.d.ts +6 -3
- package/lib/components/Button/Button.js +41 -41
- package/lib/components/Button/index.d.ts +1 -0
- package/lib/components/Button/index.js +1 -0
- package/lib/components/Button/styledVariables.d.ts +1 -0
- package/lib/components/Button/styledVariables.js +107 -0
- package/lib/components/Catalog/Catalog.d.ts +6 -0
- package/lib/components/Catalog/Catalog.js +112 -102
- package/lib/components/Catalog/CatalogCard.js +91 -58
- package/lib/components/Catalog/index.d.ts +4 -3
- package/lib/components/Catalog/index.js +4 -3
- package/lib/components/Catalog/styledVariables.d.ts +1 -0
- package/lib/components/Catalog/styledVariables.js +95 -0
- package/lib/components/CodeBlock/CodeBlockContainer.js +38 -10
- package/lib/components/CodeBlock/CodeBlockControlButton.d.ts +3 -4
- package/lib/components/CodeBlock/CodeBlockControlButton.js +5 -19
- package/lib/components/CodeBlock/CodeBlockControls.js +8 -5
- package/lib/components/CodeBlock/index.d.ts +1 -0
- package/lib/components/CodeBlock/index.js +1 -0
- package/lib/components/CodeBlock/styledVariables.d.ts +1 -0
- package/lib/components/CodeBlock/styledVariables.js +92 -0
- package/lib/components/ColorModeSwitcher/ColorModeSwitcher.js +0 -1
- package/lib/components/Dropdown/Dropdown.d.ts +9 -3
- package/lib/components/Dropdown/Dropdown.js +7 -4
- package/lib/components/Dropdown/index.d.ts +1 -0
- package/lib/components/Dropdown/index.js +1 -0
- package/lib/components/Dropdown/styledVariables.d.ts +1 -0
- package/lib/components/Dropdown/styledVariables.js +30 -0
- package/lib/components/EditPageButton/EditPageButton.d.ts +1 -3
- package/lib/components/EditPageButton/EditPageButton.js +17 -8
- package/lib/components/Feedback/Comment.js +5 -0
- package/lib/components/Feedback/Rating.js +5 -1
- package/lib/components/Feedback/Reasons.js +6 -1
- package/lib/components/Feedback/Sentiment.js +5 -0
- package/lib/components/Feedback/Thumbs.js +4 -4
- package/lib/components/Filter/Filter.d.ts +3 -1
- package/lib/components/Filter/Filter.js +113 -80
- package/lib/components/Filter/FilterContent.d.ts +13 -0
- package/lib/components/Filter/FilterContent.js +60 -0
- package/lib/components/Filter/FilterPopover.d.ts +13 -0
- package/lib/components/Filter/FilterPopover.js +109 -0
- package/lib/components/Filter/FilterTag.d.ts +7 -0
- package/lib/components/Filter/FilterTag.js +33 -0
- package/lib/components/Filter/FilterTags.d.ts +7 -0
- package/lib/components/Filter/FilterTags.js +29 -0
- package/lib/components/Filter/index.d.ts +2 -0
- package/lib/components/Filter/index.js +2 -0
- package/lib/components/Filter/styledVariables.d.ts +1 -0
- package/lib/components/Filter/styledVariables.js +112 -0
- package/lib/components/Footer/CustomFooterNavItem.js +1 -1
- package/lib/components/Footer/Footer.d.ts +4 -3
- package/lib/components/Footer/Footer.js +28 -10
- package/lib/components/Footer/FooterColumn.d.ts +3 -3
- package/lib/components/Footer/FooterColumn.js +57 -63
- package/lib/components/Footer/FooterColumns.js +6 -4
- package/lib/components/Footer/FooterCopyright.js +11 -6
- package/lib/components/Footer/index.d.ts +1 -0
- package/lib/components/Footer/index.js +1 -0
- package/lib/components/Footer/styledVariables.d.ts +1 -0
- package/lib/components/Footer/styledVariables.js +61 -0
- package/lib/components/Image/Image.d.ts +9 -0
- package/lib/components/Image/Image.js +31 -0
- package/lib/components/Image/index.d.ts +1 -0
- package/lib/components/{Tags → Image}/index.js +1 -1
- package/lib/components/JsonViewer/JsonViewer.js +2 -2
- package/lib/components/LastUpdated/LastUpdated.js +1 -0
- package/lib/components/LastUpdated/index.d.ts +1 -0
- package/lib/components/{OperationBadge → LastUpdated}/index.js +1 -1
- package/lib/components/LastUpdated/styledVariables.d.ts +1 -0
- package/lib/components/LastUpdated/styledVariables.js +11 -0
- package/lib/components/Markdown/Admonition.js +12 -9
- package/lib/components/Markdown/MarkdownLayout.d.ts +0 -2
- package/lib/components/Markdown/MarkdownLayout.js +1 -6
- package/lib/components/Markdown/MarkdownWrapper.js +2 -4
- package/lib/components/Markdown/Mermaid.js +4 -1
- package/lib/components/Markdown/index.d.ts +1 -0
- package/lib/components/Markdown/index.js +1 -0
- package/lib/components/Markdown/styledVariables.d.ts +3 -0
- package/lib/components/Markdown/styledVariables.js +231 -0
- package/lib/components/Menu/Menu.js +5 -7
- package/lib/components/Menu/MenuGroup.js +12 -7
- package/lib/components/Menu/MenuItem.js +1 -1
- package/lib/components/Menu/MenuItemLabel.js +9 -13
- package/lib/components/Menu/MobileMenu.js +20 -25
- package/lib/components/Menu/MobileMenuGroup.js +1 -1
- package/lib/components/Menu/index.d.ts +1 -0
- package/lib/components/Menu/index.js +1 -0
- package/lib/components/Menu/styledVariables.d.ts +2 -0
- package/lib/components/Menu/styledVariables.js +101 -0
- package/lib/components/Navbar/Navbar.js +20 -13
- package/lib/components/Navbar/NavbarItem.d.ts +1 -1
- package/lib/components/Navbar/NavbarItem.js +18 -6
- package/lib/components/Navbar/NavbarMenu.js +2 -2
- package/lib/components/Navbar/index.d.ts +1 -0
- package/lib/components/Navbar/index.js +1 -0
- package/lib/components/Navbar/styledVariables.d.ts +1 -0
- package/lib/components/Navbar/styledVariables.js +42 -0
- package/lib/components/NavbarLogo/NavbarLogo.d.ts +4 -1
- package/lib/components/NavbarLogo/NavbarLogo.js +13 -5
- package/lib/components/NavbarLogo/index.d.ts +1 -0
- package/lib/components/NavbarLogo/index.js +1 -0
- package/lib/components/NavbarLogo/styledVariables.d.ts +1 -0
- package/lib/components/NavbarLogo/styledVariables.js +18 -0
- package/lib/components/OpenApiDocs/DevOnboardingTryItSecurity.js +2 -2
- package/lib/components/OpenApiDocs/Dropdown.js +3 -3
- package/lib/components/PageNavigation/NextButton.js +1 -1
- package/lib/components/PageNavigation/PreviousButton.js +1 -1
- package/lib/components/Panel/PanelHeader.js +2 -0
- package/lib/components/Panel/PanelHeaderTitle.js +0 -4
- package/lib/components/Panel/index.d.ts +1 -0
- package/lib/components/Panel/index.js +1 -0
- package/lib/components/Panel/styledVariables.d.ts +2 -0
- package/lib/components/Panel/styledVariables.js +481 -0
- package/lib/components/Product/ProductPicker.js +22 -9
- package/lib/components/Product/index.d.ts +1 -0
- package/lib/components/Product/index.js +1 -0
- package/lib/components/Product/styledVariables.d.ts +2 -0
- package/lib/components/Product/styledVariables.js +42 -0
- package/lib/components/Profile/LoginLink.js +1 -2
- package/lib/components/{Navbar → Profile}/MobileUserProfile.js +12 -24
- package/lib/components/Profile/Profile.js +3 -22
- package/lib/components/Profile/UserProfile.js +21 -9
- package/lib/components/Profile/UserProfileData.d.ts +9 -0
- package/lib/components/Profile/UserProfileData.js +35 -0
- package/lib/components/Profile/index.d.ts +1 -0
- package/lib/components/Profile/index.js +15 -0
- package/lib/components/Profile/styledVariables.d.ts +2 -0
- package/lib/components/Profile/styledVariables.js +55 -0
- package/lib/components/Search/CancelSearch.js +2 -14
- package/lib/components/Search/ProductTag.js +8 -8
- package/lib/components/Search/RecentSearches.js +5 -5
- package/lib/components/Search/Search.js +0 -2
- package/lib/components/Search/SearchIcon.js +2 -2
- package/lib/components/Search/SearchItem.js +4 -4
- package/lib/components/Search/SearchTrigger.js +4 -5
- package/lib/components/Search/ShortcutKey.js +1 -5
- package/lib/components/Search/SuggestedPages.js +3 -3
- package/lib/components/Search/index.d.ts +1 -0
- package/lib/components/Search/index.js +1 -0
- package/lib/components/Search/styledVariables.d.ts +1 -0
- package/lib/components/Search/styledVariables.js +98 -0
- package/lib/components/Select/Select.d.ts +21 -9
- package/lib/components/Select/Select.js +27 -17
- package/lib/components/Select/index.d.ts +1 -0
- package/lib/components/Select/index.js +1 -0
- package/lib/components/Select/styledVariables.d.ts +1 -0
- package/lib/components/Select/styledVariables.js +34 -0
- package/lib/components/Separator/Separator.js +11 -3
- package/lib/components/Separator/SeparatorItem.js +6 -9
- package/lib/components/Separator/SeparatorLine.js +7 -3
- package/lib/components/Sidebar/ApiCallItem.d.ts +2 -6
- package/lib/components/Sidebar/ApiCallItem.js +17 -13
- package/lib/components/Sidebar/FooterWrapper.js +3 -4
- package/lib/components/Sidebar/HeaderWrapper.js +3 -3
- package/lib/components/Sidebar/VersionPicker.d.ts +3 -3
- package/lib/components/Sidebar/VersionPicker.js +6 -4
- package/lib/components/Sidebar/index.d.ts +1 -0
- package/lib/components/Sidebar/index.js +1 -0
- package/lib/components/Sidebar/styledVariables.d.ts +2 -0
- package/lib/components/Sidebar/styledVariables.js +216 -0
- package/lib/components/Sidebar/types.d.ts +1 -0
- package/lib/components/SidebarActions/CollapseSidebarButton.js +41 -1
- package/lib/components/SidebarActions/styled.js +29 -21
- package/lib/components/TableOfContent/TableOfContent.js +3 -2
- package/lib/components/TableOfContent/index.d.ts +1 -0
- package/lib/components/TableOfContent/index.js +1 -0
- package/lib/components/TableOfContent/styledVariables.d.ts +1 -0
- package/lib/components/TableOfContent/styledVariables.js +47 -0
- package/lib/components/Tabs/Tab.js +1 -1
- package/lib/components/Tabs/Tabs.js +1 -1
- package/lib/components/Tag/Tag.d.ts +18 -0
- package/lib/components/Tag/Tag.js +45 -0
- package/lib/components/Tag/index.d.ts +2 -0
- package/lib/components/Tag/index.js +19 -0
- package/lib/components/Tag/styledVariables.d.ts +1 -0
- package/lib/components/Tag/styledVariables.js +140 -0
- package/lib/components/Tiles/ThinTile.js +7 -5
- package/lib/components/Tiles/TileHeader.js +1 -1
- package/lib/components/Tiles/TileText.js +1 -1
- package/lib/components/Tiles/WideTile.js +10 -8
- package/lib/components/Tooltip/index.d.ts +1 -0
- package/lib/components/Tooltip/index.js +1 -0
- package/lib/components/Tooltip/styledVariables.d.ts +1 -0
- package/lib/components/Tooltip/styledVariables.js +21 -0
- package/lib/components/Typography/SectionHeader.js +2 -2
- package/lib/components/Typography/Typography.js +1 -1
- package/lib/components/index.d.ts +1 -2
- package/lib/components/index.js +1 -2
- package/lib/config.d.ts +155 -154
- package/lib/config.js +39 -28
- package/lib/globalStyle.js +602 -1983
- package/lib/hooks/useMobileMenu.js +5 -6
- package/lib/hooks/useModalScrollLock.d.ts +1 -0
- package/lib/hooks/useModalScrollLock.js +16 -0
- package/lib/i18n/LanguagePicker.d.ts +9 -0
- package/lib/{I18n → i18n}/LanguagePicker.js +27 -12
- package/lib/i18n/index.d.ts +2 -0
- package/lib/i18n/index.js +21 -0
- package/lib/i18n/styledVariables.d.ts +1 -0
- package/lib/i18n/styledVariables.js +40 -0
- package/lib/icons/AlertIcon/AlertIcon.js +0 -5
- package/lib/icons/ArrowIcon/ArrowIcon.js +1 -1
- package/lib/icons/CheckboxIcon/CheckboxIcon.d.ts +6 -0
- package/lib/icons/CheckboxIcon/CheckboxIcon.js +28 -0
- package/lib/icons/CheckboxIcon/index.d.ts +1 -0
- package/lib/icons/CheckboxIcon/index.js +6 -0
- package/lib/icons/CollapseIcon/CollapseIcon.d.ts +1 -1
- package/lib/icons/CollapseIcon/CollapseIcon.js +5 -5
- package/lib/icons/ColorModeIcon/ColorModeIcon.js +1 -1
- package/lib/icons/CopyIcon/CopyIcon.d.ts +1 -2
- package/lib/icons/CopyIcon/CopyIcon.js +4 -4
- package/lib/icons/DeselectIcon/DeselectIcon.d.ts +1 -1
- package/lib/icons/DeselectIcon/DeselectIcon.js +5 -5
- package/lib/icons/EditIcon/EditIcon.d.ts +6 -0
- package/lib/icons/EditIcon/EditIcon.js +18 -0
- package/lib/icons/EditIcon/index.d.ts +1 -0
- package/lib/icons/EditIcon/index.js +18 -0
- package/lib/icons/ErrorIcon/ErrorIcon.d.ts +4 -0
- package/lib/icons/ErrorIcon/ErrorIcon.js +14 -0
- package/lib/icons/ErrorIcon/index.d.ts +1 -0
- package/lib/icons/ErrorIcon/index.js +18 -0
- package/lib/icons/ExpandIcon/ExpandIcon.d.ts +1 -2
- package/lib/icons/ExpandIcon/ExpandIcon.js +5 -5
- package/lib/icons/ExternalIcon/ExternalIcon.js +3 -3
- package/lib/icons/FileIcon/FileIcon.d.ts +1 -2
- package/lib/icons/FileIcon/FileIcon.js +2 -2
- package/lib/icons/LanguageIcon/LanguageIcon.d.ts +4 -0
- package/lib/icons/LanguageIcon/LanguageIcon.js +14 -0
- package/lib/icons/LanguageIcon/index.d.ts +1 -0
- package/lib/icons/LanguageIcon/index.js +18 -0
- package/lib/icons/PlusIcon/PlusIcon.d.ts +5 -0
- package/lib/icons/PlusIcon/PlusIcon.js +16 -0
- package/lib/icons/PlusIcon/index.d.ts +1 -0
- package/lib/icons/PlusIcon/index.js +18 -0
- package/lib/icons/PointingArrowIcon/PointingArrowIcon.d.ts +4 -0
- package/lib/icons/PointingArrowIcon/PointingArrowIcon.js +15 -0
- package/lib/icons/PointingArrowIcon/index.d.ts +1 -0
- package/lib/icons/PointingArrowIcon/index.js +18 -0
- package/lib/icons/ReportIcon/ReportIcon.d.ts +1 -2
- package/lib/icons/ReportIcon/ReportIcon.js +3 -3
- package/lib/icons/RocketIcon/RocketIcon.d.ts +7 -0
- package/lib/icons/RocketIcon/RocketIcon.js +15 -0
- package/lib/icons/RocketIcon/index.d.ts +1 -0
- package/lib/icons/RocketIcon/index.js +18 -0
- package/lib/icons/SelectIcon/SelectIcon.d.ts +1 -2
- package/lib/icons/SelectIcon/SelectIcon.js +5 -5
- package/lib/icons/index.d.ts +6 -0
- package/lib/icons/index.js +6 -0
- package/lib/index.d.ts +1 -1
- package/lib/index.js +1 -1
- package/lib/layouts/Forbidden.js +4 -0
- package/lib/layouts/NotFound.js +4 -0
- package/lib/mocks/hooks/index.js +0 -1
- package/lib/types/portal/src/shared/types/catalog.d.ts +5 -1
- package/lib/types/portal/src/shared/types/nav.d.ts +5 -0
- package/lib/ui/ArrowBack.js +0 -1
- package/lib/ui/Burger.js +1 -1
- package/lib/ui/Dropdown.js +7 -7
- package/lib/ui/Highlight.d.ts +1 -1
- package/lib/ui/Highlight.js +1 -1
- package/lib/ui/Jumbotron.js +1 -1
- package/lib/ui/darkColors.js +217 -84
- package/lib/utils/css-variables.js +1 -1
- package/lib/utils/index.d.ts +1 -0
- package/lib/utils/index.js +1 -0
- package/lib/utils/tags-parser.d.ts +1 -0
- package/lib/utils/tags-parser.js +10 -0
- package/package.json +1 -1
- package/src/components/Breadcrumbs/Breadcrumb.tsx +2 -5
- package/src/components/Breadcrumbs/Breadcrumbs.tsx +6 -2
- package/src/components/Breadcrumbs/index.ts +1 -0
- package/src/components/Breadcrumbs/styledVariables.ts +17 -0
- package/src/components/Button/Button.tsx +53 -47
- package/src/components/Button/index.ts +1 -0
- package/src/components/Button/styledVariables.ts +104 -0
- package/src/components/Catalog/Catalog.tsx +140 -120
- package/src/components/Catalog/CatalogCard.tsx +108 -58
- package/src/components/Catalog/index.ts +4 -0
- package/src/components/Catalog/styledVariables.ts +92 -0
- package/src/components/CodeBlock/CodeBlockContainer.tsx +17 -9
- package/src/components/CodeBlock/CodeBlockControlButton.tsx +6 -19
- package/src/components/CodeBlock/CodeBlockControls.tsx +8 -5
- package/src/components/CodeBlock/index.ts +1 -0
- package/src/components/CodeBlock/styledVariables.ts +89 -0
- package/src/components/ColorModeSwitcher/ColorModeSwitcher.tsx +0 -1
- package/src/components/Dropdown/Dropdown.tsx +14 -5
- package/src/components/Dropdown/index.ts +1 -0
- package/src/components/Dropdown/styledVariables.ts +27 -0
- package/src/components/EditPageButton/EditPageButton.tsx +24 -10
- package/src/components/Feedback/Comment.tsx +5 -0
- package/src/components/Feedback/Rating.tsx +5 -1
- package/src/components/Feedback/Reasons.tsx +6 -1
- package/src/components/Feedback/Sentiment.tsx +5 -0
- package/src/components/Feedback/Thumbs.tsx +4 -4
- package/src/components/Filter/Filter.tsx +150 -94
- package/src/components/Filter/FilterContent.tsx +95 -0
- package/src/components/Filter/FilterPopover.tsx +150 -0
- package/src/components/Filter/FilterTag.tsx +37 -0
- package/src/components/Filter/FilterTags.tsx +39 -0
- package/src/components/Filter/index.ts +2 -0
- package/src/components/Filter/styledVariables.ts +109 -0
- package/src/components/Footer/CustomFooterNavItem.tsx +1 -1
- package/src/components/Footer/Footer.tsx +32 -10
- package/src/components/Footer/FooterColumn.tsx +84 -63
- package/src/components/Footer/FooterColumns.tsx +6 -4
- package/src/components/Footer/FooterCopyright.tsx +13 -7
- package/src/components/Footer/index.ts +1 -0
- package/src/components/Footer/styledVariables.ts +58 -0
- package/src/components/Image/Image.tsx +47 -0
- package/src/components/Image/index.ts +1 -0
- package/src/components/JsonViewer/JsonViewer.tsx +2 -2
- package/src/components/LastUpdated/LastUpdated.tsx +1 -2
- package/src/components/LastUpdated/index.ts +1 -0
- package/src/components/LastUpdated/styledVariables.ts +8 -0
- package/src/components/Markdown/Admonition.tsx +13 -8
- package/src/components/Markdown/MarkdownLayout.tsx +2 -15
- package/src/components/Markdown/MarkdownWrapper.tsx +2 -4
- package/src/components/Markdown/Mermaid.tsx +4 -1
- package/src/components/Markdown/index.ts +1 -0
- package/src/components/Markdown/styledVariables.ts +230 -0
- package/src/components/Menu/Menu.tsx +5 -7
- package/src/components/Menu/MenuGroup.tsx +15 -7
- package/src/components/Menu/MenuItem.tsx +1 -1
- package/src/components/Menu/MenuItemLabel.tsx +9 -13
- package/src/components/Menu/MobileMenu.tsx +20 -25
- package/src/components/Menu/MobileMenuGroup.tsx +1 -1
- package/src/components/Menu/index.ts +1 -0
- package/src/components/Menu/styledVariables.ts +99 -0
- package/src/components/Navbar/Navbar.tsx +20 -13
- package/src/components/Navbar/NavbarItem.tsx +18 -4
- package/src/components/Navbar/NavbarMenu.tsx +2 -2
- package/src/components/Navbar/index.ts +1 -0
- package/src/components/Navbar/styledVariables.ts +39 -0
- package/src/components/NavbarLogo/NavbarLogo.tsx +24 -11
- package/src/components/NavbarLogo/index.ts +1 -0
- package/src/components/NavbarLogo/styledVariables.ts +15 -0
- package/src/components/OpenApiDocs/DevOnboardingTryItSecurity.tsx +1 -2
- package/src/components/OpenApiDocs/Dropdown.tsx +3 -3
- package/src/components/PageNavigation/NextButton.tsx +0 -1
- package/src/components/PageNavigation/PreviousButton.tsx +0 -1
- package/src/components/Panel/PanelHeader.ts +2 -0
- package/src/components/Panel/PanelHeaderTitle.ts +0 -4
- package/src/components/Panel/index.ts +1 -0
- package/src/components/Panel/styledVariables.ts +479 -0
- package/src/components/Product/ProductPicker.tsx +23 -17
- package/src/components/Product/index.ts +1 -0
- package/src/components/Product/styledVariables.ts +40 -0
- package/src/components/Profile/LoginLink.tsx +1 -2
- package/src/components/{Navbar → Profile}/MobileUserProfile.tsx +12 -29
- package/src/components/Profile/Profile.tsx +1 -24
- package/src/components/Profile/UserProfile.tsx +20 -8
- package/src/components/Profile/UserProfileData.tsx +40 -0
- package/src/components/Profile/index.ts +1 -0
- package/src/components/Profile/styledVariables.ts +53 -0
- package/src/components/Search/CancelSearch.tsx +2 -15
- package/src/components/Search/ProductTag.tsx +8 -8
- package/src/components/Search/RecentSearches.tsx +5 -5
- package/src/components/Search/Search.tsx +0 -2
- package/src/components/Search/SearchIcon.tsx +10 -5
- package/src/components/Search/SearchItem.tsx +4 -4
- package/src/components/Search/SearchTrigger.tsx +4 -5
- package/src/components/Search/ShortcutKey.tsx +1 -5
- package/src/components/Search/SuggestedPages.tsx +3 -3
- package/src/components/Search/index.ts +1 -0
- package/src/components/Search/styledVariables.ts +95 -0
- package/src/components/Select/Select.tsx +65 -31
- package/src/components/Select/index.ts +1 -0
- package/src/components/Select/styledVariables.ts +31 -0
- package/src/components/Separator/Separator.tsx +17 -3
- package/src/components/Separator/SeparatorItem.tsx +6 -9
- package/src/components/Separator/SeparatorLine.tsx +7 -3
- package/src/components/Sidebar/ApiCallItem.tsx +17 -13
- package/src/components/Sidebar/FooterWrapper.tsx +3 -4
- package/src/components/Sidebar/HeaderWrapper.tsx +3 -3
- package/src/components/Sidebar/VersionPicker.tsx +6 -4
- package/src/components/Sidebar/index.ts +1 -0
- package/src/components/Sidebar/styledVariables.ts +214 -0
- package/src/components/Sidebar/types.ts +1 -0
- package/src/components/SidebarActions/CollapseSidebarButton.tsx +22 -2
- package/src/components/SidebarActions/styled.tsx +29 -30
- package/src/components/TableOfContent/TableOfContent.tsx +3 -2
- package/src/components/TableOfContent/index.ts +1 -0
- package/src/components/TableOfContent/styledVariables.ts +44 -0
- package/src/components/Tabs/Tab.tsx +1 -1
- package/src/components/Tabs/Tabs.tsx +1 -1
- package/src/components/Tag/Tag.tsx +71 -0
- package/src/components/Tag/index.ts +2 -0
- package/src/components/Tag/styledVariables.ts +137 -0
- package/src/components/Tiles/ThinTile.tsx +7 -5
- package/src/components/Tiles/TileHeader.ts +1 -1
- package/src/components/Tiles/TileText.tsx +1 -1
- package/src/components/Tiles/WideTile.tsx +10 -8
- package/src/components/Tooltip/index.ts +1 -0
- package/src/components/Tooltip/styledVariables.ts +18 -0
- package/src/components/Typography/SectionHeader.ts +2 -2
- package/src/components/Typography/Typography.ts +1 -1
- package/src/components/index.ts +1 -2
- package/src/config.ts +44 -29
- package/src/globalStyle.ts +597 -1999
- package/src/hooks/useMobileMenu.ts +3 -4
- package/src/hooks/useModalScrollLock.ts +12 -0
- package/src/{I18n → i18n}/LanguagePicker.tsx +48 -21
- package/src/i18n/index.ts +2 -0
- package/src/i18n/styledVariables.ts +37 -0
- package/src/icons/AlertIcon/AlertIcon.tsx +0 -5
- package/src/icons/ArrowIcon/ArrowIcon.tsx +1 -1
- package/src/icons/CheckboxIcon/CheckboxIcon.tsx +64 -0
- package/src/icons/CheckboxIcon/index.ts +1 -0
- package/src/icons/CollapseIcon/CollapseIcon.tsx +5 -5
- package/src/icons/ColorModeIcon/ColorModeIcon.tsx +1 -1
- package/src/icons/CopyIcon/CopyIcon.tsx +4 -5
- package/src/icons/DeselectIcon/DeselectIcon.tsx +5 -5
- package/src/icons/EditIcon/EditIcon.tsx +30 -0
- package/src/icons/EditIcon/index.ts +1 -0
- package/src/icons/ErrorIcon/ErrorIcon.tsx +15 -0
- package/src/icons/ErrorIcon/index.ts +1 -0
- package/src/icons/ExpandIcon/ExpandIcon.tsx +5 -6
- package/src/icons/ExternalIcon/ExternalIcon.tsx +4 -4
- package/src/icons/FileIcon/FileIcon.tsx +2 -3
- package/src/icons/LanguageIcon/LanguageIcon.tsx +15 -0
- package/src/icons/LanguageIcon/index.ts +1 -0
- package/src/icons/PlusIcon/PlusIcon.tsx +25 -0
- package/src/icons/PlusIcon/index.ts +1 -0
- package/src/icons/PointingArrowIcon/PointingArrowIcon.tsx +16 -0
- package/src/icons/PointingArrowIcon/index.ts +1 -0
- package/src/icons/ReportIcon/ReportIcon.tsx +3 -4
- package/src/icons/RocketIcon/RocketIcon.tsx +32 -0
- package/src/icons/RocketIcon/index.tsx +1 -0
- package/src/icons/SelectIcon/SelectIcon.tsx +5 -6
- package/src/icons/index.ts +6 -0
- package/src/index.ts +1 -1
- package/src/layouts/Forbidden.tsx +4 -0
- package/src/layouts/NotFound.tsx +4 -0
- package/src/mocks/hooks/index.ts +0 -1
- package/src/types/portal/src/shared/types/catalog.ts +7 -1
- package/src/types/portal/src/shared/types/nav.ts +5 -0
- package/src/ui/ArrowBack.tsx +0 -1
- package/src/ui/Burger.tsx +1 -1
- package/src/ui/Dropdown.tsx +7 -7
- package/src/ui/Highlight.tsx +2 -2
- package/src/ui/Jumbotron.tsx +1 -1
- package/src/ui/darkColors.tsx +217 -84
- package/src/utils/css-variables.ts +4 -2
- package/src/utils/index.ts +1 -0
- package/src/utils/tags-parser.ts +8 -0
- package/lib/I18n/LanguagePicker.d.ts +0 -4
- package/lib/I18n/index.d.ts +0 -1
- package/lib/I18n/index.js +0 -6
- package/lib/components/OperationBadge/OperationBadge.d.ts +0 -6
- package/lib/components/OperationBadge/OperationBadge.js +0 -68
- package/lib/components/OperationBadge/index.d.ts +0 -1
- package/lib/components/Tags/Tags.d.ts +0 -5
- package/lib/components/Tags/Tags.js +0 -32
- package/lib/components/Tags/index.d.ts +0 -1
- package/src/I18n/index.ts +0 -1
- package/src/components/Catalog/index.tsx +0 -3
- package/src/components/OperationBadge/OperationBadge.ts +0 -62
- package/src/components/OperationBadge/index.ts +0 -1
- package/src/components/Tags/Tags.tsx +0 -36
- package/src/components/Tags/index.ts +0 -1
- /package/lib/components/{Navbar → Profile}/MobileUserProfile.d.ts +0 -0
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
+
import styled, { css } from 'styled-components';
|
|
2
3
|
|
|
3
4
|
import {
|
|
4
5
|
StyledToggleRightPanelButton,
|
|
@@ -15,11 +16,30 @@ export const CollapseSidebarButton = ({
|
|
|
15
16
|
onClick,
|
|
16
17
|
}: CollapseSidebarButtonProps): JSX.Element => {
|
|
17
18
|
return (
|
|
18
|
-
<
|
|
19
|
+
<ToggleButton
|
|
19
20
|
title={initialValue ? 'Show sidebar' : 'Hide sidebar'}
|
|
20
21
|
onClick={onClick}
|
|
22
|
+
collapsed={initialValue}
|
|
21
23
|
>
|
|
22
24
|
{initialValue ? <HideLeftPanelSVG /> : <ShowLeftPanelSVG />}
|
|
23
|
-
</
|
|
25
|
+
</ToggleButton>
|
|
24
26
|
);
|
|
25
27
|
};
|
|
28
|
+
|
|
29
|
+
const ToggleButton = styled(StyledToggleRightPanelButton)<{ collapsed?: boolean }>`
|
|
30
|
+
background: var(--sidebar-collapse-button-background-color);
|
|
31
|
+
fill: var(--sidebar-collapse-button-icon-color);
|
|
32
|
+
margin-right: ${({ collapsed }) => (collapsed ? 0 : 'calc(var(--spacing-unit) * -9)')};
|
|
33
|
+
border: 1px solid var(--sidebar-collapse-button-border-color);
|
|
34
|
+
border-radius: var(--border-radius-md);
|
|
35
|
+
padding: var(--spacing-xxs);
|
|
36
|
+
height: var(--control-height-sm);
|
|
37
|
+
width: var(--control-height-sm);
|
|
38
|
+
|
|
39
|
+
${({ collapsed }) =>
|
|
40
|
+
collapsed &&
|
|
41
|
+
css`
|
|
42
|
+
background: var(--sidebar-collapse-button-active-background-color);
|
|
43
|
+
border: var(--sidebar-collapse-button-active-border-color);
|
|
44
|
+
`}
|
|
45
|
+
`;
|
|
@@ -5,7 +5,7 @@ export const ShowLeftPanelSVG = styled(() => (
|
|
|
5
5
|
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
6
6
|
<path
|
|
7
7
|
d="M4.375 7L8.75 2.625L9.3625 3.2375L5.6 7L9.3625 10.7625L8.75 11.375L4.375 7Z"
|
|
8
|
-
fill="var(--
|
|
8
|
+
fill="var(--text-secondary)"
|
|
9
9
|
/>
|
|
10
10
|
</svg>
|
|
11
11
|
))`
|
|
@@ -16,7 +16,7 @@ export const HideLeftPanelSVG = styled(() => (
|
|
|
16
16
|
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
17
17
|
<path
|
|
18
18
|
d="M9.62495 7L5.24995 11.375L4.63745 10.7625L8.39995 7L4.63745 3.2375L5.24995 2.625L9.62495 7Z"
|
|
19
|
-
fill="var(--
|
|
19
|
+
fill="var(--text-secondary)"
|
|
20
20
|
/>
|
|
21
21
|
</svg>
|
|
22
22
|
))`
|
|
@@ -30,11 +30,14 @@ export const StyledToggleRightPanelButton = styled.a`
|
|
|
30
30
|
cursor: pointer;
|
|
31
31
|
z-index: 1;
|
|
32
32
|
/* Rectangle 201 */
|
|
33
|
-
border-radius: var(--border-radius);
|
|
34
|
-
padding: var(--spacing-
|
|
33
|
+
border-radius: var(--border-radius-md);
|
|
34
|
+
padding: var(--spacing-xs);
|
|
35
|
+
height: var(--control-height-base);
|
|
36
|
+
width: var(--control-height-base);
|
|
37
|
+
border: 1px solid var(--border-primary);
|
|
35
38
|
|
|
36
39
|
&:hover {
|
|
37
|
-
background-color: var(--sidebar-item-
|
|
40
|
+
background-color: var(--sidebar-item-hover-background-color);
|
|
38
41
|
}
|
|
39
42
|
`;
|
|
40
43
|
|
|
@@ -42,7 +45,7 @@ export const HideRightPanelSVG = styled(() => (
|
|
|
42
45
|
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
43
46
|
<path
|
|
44
47
|
d="M14 2H2C1.73478 2 1.48043 2.10536 1.29289 2.29289C1.10536 2.48043 1 2.73478 1 3V13C1 13.2652 1.10536 13.5196 1.29289 13.7071C1.48043 13.8946 1.73478 14 2 14H14C14.2652 14 14.5196 13.8946 14.7071 13.7071C14.8946 13.5196 15 13.2652 15 13V3C15 2.73478 14.8946 2.48043 14.7071 2.29289C14.5196 2.10536 14.2652 2 14 2V2ZM2 3H10V13H2V3Z"
|
|
45
|
-
fill="
|
|
48
|
+
fill="currentColor"
|
|
46
49
|
/>
|
|
47
50
|
</svg>
|
|
48
51
|
))`
|
|
@@ -53,7 +56,7 @@ export const ShowRightPanelSVG = styled(() => (
|
|
|
53
56
|
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
54
57
|
<path
|
|
55
58
|
d="M14 2H2C1.73478 2 1.48043 2.10536 1.29289 2.29289C1.10536 2.48043 1 2.73478 1 3V13C1 13.2652 1.10536 13.5196 1.29289 13.7071C1.48043 13.8946 1.73478 14 2 14H14C14.2652 14 14.5196 13.8946 14.7071 13.7071C14.8946 13.5196 15 13.2652 15 13V3C15 2.73478 14.8946 2.48043 14.7071 2.29289C14.5196 2.10536 14.2652 2 14 2V2ZM2 3H10V13H2V3ZM14 13H11V3H14V13Z"
|
|
56
|
-
fill="
|
|
59
|
+
fill="currentColor"
|
|
57
60
|
/>
|
|
58
61
|
</svg>
|
|
59
62
|
))`
|
|
@@ -66,29 +69,26 @@ export const StyledChangeViewButton = styled.a`
|
|
|
66
69
|
justify-content: center;
|
|
67
70
|
align-items: center;
|
|
68
71
|
cursor: pointer;
|
|
69
|
-
border-radius: var(--border-radius);
|
|
72
|
+
border-radius: var(--border-radius-md);
|
|
73
|
+
background: var(--bg-overlay);
|
|
70
74
|
z-index: 1;
|
|
71
75
|
/* Rectangle 201 */
|
|
72
|
-
padding: var(--spacing-
|
|
76
|
+
padding: var(--spacing-xs);
|
|
77
|
+
height: var(--control-height-base);
|
|
78
|
+
width: var(--control-height-base);
|
|
73
79
|
|
|
74
80
|
&:hover {
|
|
75
|
-
background-color: var(--sidebar-item-
|
|
81
|
+
background-color: var(--sidebar-item-hover-background-color);
|
|
76
82
|
}
|
|
77
83
|
`;
|
|
78
84
|
|
|
79
85
|
export const ChangeViewSvgRow = styled(() => (
|
|
80
86
|
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
81
|
-
<path
|
|
82
|
-
|
|
83
|
-
fill="var(--color-emphasis-400)"
|
|
84
|
-
/>
|
|
85
|
-
<path
|
|
86
|
-
d="M1.75 5.6875L12.25 5.6875L12.25 4.8125L1.75 4.8125L1.75 5.6875Z"
|
|
87
|
-
fill="var(--color-emphasis-400)"
|
|
88
|
-
/>
|
|
87
|
+
<path d="M1.75 2.625L12.25 2.625L12.25 1.75L1.75 1.75L1.75 2.625Z" fill="currentColor" />
|
|
88
|
+
<path d="M1.75 5.6875L12.25 5.6875L12.25 4.8125L1.75 4.8125L1.75 5.6875Z" fill="currentColor" />
|
|
89
89
|
<path
|
|
90
90
|
d="M2.625 11.375L2.625 8.75L11.375 8.75L11.375 11.375L2.625 11.375ZM2.625 12.25L11.375 12.25C11.6071 12.25 11.8296 12.1578 11.9937 11.9937C12.1578 11.8296 12.25 11.6071 12.25 11.375L12.25 8.75C12.25 8.51794 12.1578 8.29538 11.9937 8.13128C11.8296 7.96719 11.6071 7.875 11.375 7.875L2.625 7.875C2.39294 7.875 2.17038 7.96719 2.00628 8.13128C1.84219 8.29538 1.75 8.51793 1.75 8.75L1.75 11.375C1.75 11.6071 1.84219 11.8296 2.00628 11.9937C2.17038 12.1578 2.39294 12.25 2.625 12.25Z"
|
|
91
|
-
fill="
|
|
91
|
+
fill="currentColor"
|
|
92
92
|
/>
|
|
93
93
|
</svg>
|
|
94
94
|
))`
|
|
@@ -97,17 +97,14 @@ export const ChangeViewSvgRow = styled(() => (
|
|
|
97
97
|
|
|
98
98
|
export const ChangeViewSvgColumn = styled(() => (
|
|
99
99
|
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
100
|
-
<path
|
|
101
|
-
d="M2.625 12.25L2.625 1.75L1.75 1.75L1.75 12.25L2.625 12.25Z"
|
|
102
|
-
fill="var(--color-emphasis-400)"
|
|
103
|
-
/>
|
|
100
|
+
<path d="M2.625 12.25L2.625 1.75L1.75 1.75L1.75 12.25L2.625 12.25Z" fill="currentColor" />
|
|
104
101
|
<path
|
|
105
102
|
d="M5.6875 12.25L5.6875 1.75L4.8125 1.75L4.8125 12.25L5.6875 12.25Z"
|
|
106
|
-
fill="
|
|
103
|
+
fill="currentColor"
|
|
107
104
|
/>
|
|
108
105
|
<path
|
|
109
106
|
d="M11.375 11.375L8.75 11.375L8.75 2.625L11.375 2.625L11.375 11.375ZM12.25 11.375L12.25 2.625C12.25 2.39294 12.1578 2.17038 11.9937 2.00628C11.8296 1.84219 11.6071 1.75 11.375 1.75L8.75 1.75C8.51794 1.75 8.29538 1.84219 8.13128 2.00628C7.96719 2.17038 7.875 2.39294 7.875 2.625L7.875 11.375C7.875 11.6071 7.96719 11.8296 8.13128 11.9937C8.29538 12.1578 8.51794 12.25 8.75 12.25L11.375 12.25C11.6071 12.25 11.8296 12.1578 11.9937 11.9937C12.1578 11.8296 12.25 11.6071 12.25 11.375Z"
|
|
110
|
-
fill="
|
|
107
|
+
fill="currentColor"
|
|
111
108
|
/>
|
|
112
109
|
</svg>
|
|
113
110
|
))`
|
|
@@ -123,9 +120,9 @@ export const ControlsWrap = styled.span<{
|
|
|
123
120
|
justify-content: ${({ isOpenapiDocs }) => (isOpenapiDocs ? 'space-between' : 'flex-end')};
|
|
124
121
|
bottom: 0;
|
|
125
122
|
flex-direction: row;
|
|
126
|
-
gap: var(--spacing-
|
|
123
|
+
gap: var(--spacing-xs);
|
|
127
124
|
align-items: center;
|
|
128
|
-
margin-left:
|
|
125
|
+
margin-left: var(--sidebar-controls-margin-left);
|
|
129
126
|
z-index: 2;
|
|
130
127
|
background: var(--sidebar-background-color);
|
|
131
128
|
|
|
@@ -133,8 +130,10 @@ export const ControlsWrap = styled.span<{
|
|
|
133
130
|
isCollapsed &&
|
|
134
131
|
css`
|
|
135
132
|
flex-direction: column;
|
|
136
|
-
|
|
137
|
-
|
|
133
|
+
margin-left: 0;
|
|
134
|
+
gap: var(--sidebar-controls-collapsed-gap);
|
|
135
|
+
padding: var(--sidebar-controls-collapsed-padding-vertical)
|
|
136
|
+
var(--sidebar-controls-collapsed-padding-horizontal);
|
|
138
137
|
`}
|
|
139
138
|
|
|
140
139
|
${({ theme }) => css`
|
|
@@ -152,6 +151,6 @@ export const ControlsWrapChangeLayoutButtons = styled.span<{ isCollapsed?: boole
|
|
|
152
151
|
display: flex;
|
|
153
152
|
bottom: 0;
|
|
154
153
|
flex-direction: ${({ isCollapsed }) => (isCollapsed ? 'column-reverse' : 'row')};
|
|
155
|
-
gap: ${({ isCollapsed }) => (isCollapsed ? '10px' : 'var(--spacing-
|
|
154
|
+
gap: ${({ isCollapsed }) => (isCollapsed ? '10px' : 'var(--spacing-xs)')};
|
|
156
155
|
align-items: center;
|
|
157
156
|
`;
|
|
@@ -81,12 +81,13 @@ const TocHeader = styled.div`
|
|
|
81
81
|
font-weight: var(--toc-heading-font-weight);
|
|
82
82
|
padding: var(--toc-item-padding-vertical) var(--toc-item-padding-horizontal);
|
|
83
83
|
color: var(--toc-heading-text-color);
|
|
84
|
-
text-transform:
|
|
84
|
+
text-transform: var(--toc-heading-text-transform);
|
|
85
85
|
`;
|
|
86
86
|
|
|
87
87
|
const MenuItem = styled.a<{ depth: number }>`
|
|
88
88
|
display: block;
|
|
89
89
|
color: var(--toc-item-text-color);
|
|
90
|
+
font-weight: var(--toc-item-font-weight);
|
|
90
91
|
background-color: var(--toc-item-background-color);
|
|
91
92
|
cursor: pointer;
|
|
92
93
|
font-size: var(--toc-item-font-size);
|
|
@@ -101,6 +102,7 @@ const MenuItem = styled.a<{ depth: number }>`
|
|
|
101
102
|
&.active {
|
|
102
103
|
color: var(--toc-item-active-text-color);
|
|
103
104
|
background-color: var(--toc-item-active-background-color);
|
|
105
|
+
border-radius: var(--border-radius);
|
|
104
106
|
}
|
|
105
107
|
|
|
106
108
|
:empty {
|
|
@@ -123,7 +125,6 @@ const TableOfContentItems = styled.div`
|
|
|
123
125
|
position: sticky;
|
|
124
126
|
top: calc(var(--navbar-height) + var(--toc-offset-top));
|
|
125
127
|
max-height: calc(100vh - var(--navbar-height) - var(--toc-offset-top));
|
|
126
|
-
border-left: 1px solid var(--toc-border-color);
|
|
127
128
|
overflow-y: auto;
|
|
128
129
|
width: var(--toc-width);
|
|
129
130
|
`;
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { css } from 'styled-components';
|
|
2
|
+
|
|
3
|
+
export const toc = css`
|
|
4
|
+
/**
|
|
5
|
+
* @tokens TOC
|
|
6
|
+
* */
|
|
7
|
+
|
|
8
|
+
--toc-width: 240px;
|
|
9
|
+
--toc-background-color: transparent;
|
|
10
|
+
|
|
11
|
+
--toc-spacing-unit: var(--spacing-xs);
|
|
12
|
+
--toc-offset-top: var(--toc-spacing-unit);
|
|
13
|
+
|
|
14
|
+
/**
|
|
15
|
+
* @tokens TOC item typography
|
|
16
|
+
*/
|
|
17
|
+
--toc-item-font-family: var(--font-family-base); // @presenter FontFamily
|
|
18
|
+
--toc-item-font-size: var(--font-size-sm); // @presenter FontSize
|
|
19
|
+
|
|
20
|
+
/**
|
|
21
|
+
* @tokens TOC item
|
|
22
|
+
*/
|
|
23
|
+
|
|
24
|
+
--toc-item-text-color: var(--text-description); // @presenter Color
|
|
25
|
+
--toc-item-font-weight: var(--font-weight-regular); // @presenter FontWeight
|
|
26
|
+
--toc-item-active-text-color: var(--text-primary); // @presenter Color
|
|
27
|
+
--toc-item-background-color: transparent; // @presenter Color
|
|
28
|
+
--toc-item-active-background-color: var(--bg-overlay); // @presenter Color
|
|
29
|
+
--toc-item-nested-offset: calc(var(--toc-spacing-unit) * 2); // @presenter Spacing
|
|
30
|
+
--toc-item-padding-vertical: var(--toc-spacing-unit); // @presenter Spacing
|
|
31
|
+
--toc-item-padding-horizontal: calc(var(--toc-spacing-unit) * 2); // @presenter Spacing
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* @tokens TOC header
|
|
35
|
+
*/
|
|
36
|
+
|
|
37
|
+
--toc-heading-font-size: var(--font-size-base); // @presenter FontSize
|
|
38
|
+
--toc-heading-font-family: var(--font-family-base); // @presenter FontFamily
|
|
39
|
+
--toc-heading-font-weight: var(--font-weight-bold); // @presenter FontWeight
|
|
40
|
+
--toc-heading-text-color: var(--text-primary); // @presenter Color
|
|
41
|
+
--toc-heading-text-transform: none; // @presenter TextTransform
|
|
42
|
+
|
|
43
|
+
// @tokens End
|
|
44
|
+
`;
|
|
@@ -34,7 +34,7 @@ const TabItem = styled.li<{ active: boolean }>`
|
|
|
34
34
|
background-color: var(--background-color);
|
|
35
35
|
border: solid var(--md-tabs-active-tab-border-color);
|
|
36
36
|
border-width: 0 0 1px 0;
|
|
37
|
-
color: var(--text-
|
|
37
|
+
color: var(--text-primary);
|
|
38
38
|
`
|
|
39
39
|
: `
|
|
40
40
|
&:hover {
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import styled from 'styled-components';
|
|
3
|
+
|
|
4
|
+
type DefaultStatusColor = 'success' | 'processing' | 'error' | 'warning' | 'default';
|
|
5
|
+
type ActionStatusColor = 'approved' | 'declined' | 'pending';
|
|
6
|
+
type SubjectStatusColor = 'active' | 'draft' | 'deprecated';
|
|
7
|
+
type HttpColor = 'get' | 'post' | 'put' | 'delete' | 'option' | 'patch' | 'head' | 'hook' | 'link';
|
|
8
|
+
type StatusColor = DefaultStatusColor | ActionStatusColor | SubjectStatusColor | HttpColor;
|
|
9
|
+
type Color =
|
|
10
|
+
| 'red'
|
|
11
|
+
| 'green'
|
|
12
|
+
| 'blue'
|
|
13
|
+
| 'grey'
|
|
14
|
+
| 'gold'
|
|
15
|
+
| 'cyan'
|
|
16
|
+
| 'magenta'
|
|
17
|
+
| 'purple'
|
|
18
|
+
| 'lime'
|
|
19
|
+
| 'geekblue'
|
|
20
|
+
| 'yellow';
|
|
21
|
+
|
|
22
|
+
interface TagProps {
|
|
23
|
+
className?: string;
|
|
24
|
+
children?: React.ReactNode;
|
|
25
|
+
closable?: boolean;
|
|
26
|
+
color?: StatusColor | Color | string;
|
|
27
|
+
size?: string;
|
|
28
|
+
icon?: React.ReactNode;
|
|
29
|
+
onClick?: () => void;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export function Tag({ children, className, color, icon, onClick, size }: TagProps): JSX.Element {
|
|
33
|
+
return (
|
|
34
|
+
<TagContainer className={className} color={color} size={size} onClick={onClick}>
|
|
35
|
+
{icon ? icon : null}
|
|
36
|
+
{children}
|
|
37
|
+
</TagContainer>
|
|
38
|
+
);
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
const TagContainer = styled.div.attrs(({ className, color, size }: TagProps) => ({
|
|
42
|
+
'data-component-name': 'Tag/Tag',
|
|
43
|
+
className:
|
|
44
|
+
(className || '') +
|
|
45
|
+
` tag-default ${color ? `tag-${color}` : ''} ${size ? `tag-size-${size}` : ''}`,
|
|
46
|
+
}))<TagProps>`
|
|
47
|
+
display: inline-flex;
|
|
48
|
+
align-items: center;
|
|
49
|
+
justify-content: center;
|
|
50
|
+
text-wrap: nowrap;
|
|
51
|
+
|
|
52
|
+
padding: var(--tag-padding);
|
|
53
|
+
margin: var(--tag-margin);
|
|
54
|
+
|
|
55
|
+
&:last-child {
|
|
56
|
+
margin-right: 0;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
gap: var(--tag-gap);
|
|
60
|
+
|
|
61
|
+
font-size: var(--tag-font-size);
|
|
62
|
+
font-family: var(--tag-font-family);
|
|
63
|
+
font-weight: var(--tag-font-weight);
|
|
64
|
+
line-height: var(--tag-line-height);
|
|
65
|
+
box-shadow: var(--tag-box-shadow);
|
|
66
|
+
|
|
67
|
+
color: var(--tag-color);
|
|
68
|
+
background-color: var(--tag-background-color);
|
|
69
|
+
border: var(--tag-border-width) var(--tag-border-style) var(--tag-border-color);
|
|
70
|
+
border-radius: var(--tag-border-radius);
|
|
71
|
+
`;
|
|
@@ -0,0 +1,137 @@
|
|
|
1
|
+
import { css } from 'styled-components';
|
|
2
|
+
|
|
3
|
+
export const tag = css`
|
|
4
|
+
/**
|
|
5
|
+
* @tokens Tag borders
|
|
6
|
+
*/
|
|
7
|
+
|
|
8
|
+
--tag-border-width: 1px; //@presenter Border
|
|
9
|
+
--tag-border-style: solid; //@presenter Border
|
|
10
|
+
--tag-border-radius: var(--border-radius-xlg); // @presenter BorderRadius
|
|
11
|
+
--tag-box-shadow: none; // @presenter Shadow
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* @tokens Tag spacing
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
--tag-padding: 1px 8px; //@presenter Spacing
|
|
18
|
+
--tag-large-padding: 4px 16px; //@presenter Spacing
|
|
19
|
+
--tag-margin: 0 5px 0 0; //@presenter Spacing
|
|
20
|
+
--tag-gap: 5px; //@presenter Spacing
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* @tokens Tag size
|
|
24
|
+
*/
|
|
25
|
+
|
|
26
|
+
.tag-size-large {
|
|
27
|
+
--tag-padding: var(--tag-large-padding);
|
|
28
|
+
--tag-font-size: var(--font-size-base);
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
* @tokens Tag typography
|
|
33
|
+
*/
|
|
34
|
+
|
|
35
|
+
--tag-font-size: var(--font-size-sm); // @presenter FontSize
|
|
36
|
+
--tag-font-family: inherit; // @presenter FontFamily
|
|
37
|
+
--tag-font-weight: var(--font-weight-regular); // @presenter FontWeight
|
|
38
|
+
--tag-line-height: var(--line-height-sm);
|
|
39
|
+
|
|
40
|
+
/**
|
|
41
|
+
* @tokens Tag icon
|
|
42
|
+
*/
|
|
43
|
+
|
|
44
|
+
--tag-icon-width: 1em; // @presenter Spacing
|
|
45
|
+
--tag-icon-height: 1em; // @presenter Spacing
|
|
46
|
+
|
|
47
|
+
/**
|
|
48
|
+
* @tokens Tag colors
|
|
49
|
+
*/
|
|
50
|
+
|
|
51
|
+
.tag-grey,
|
|
52
|
+
.tag-draft,
|
|
53
|
+
.tag-schema,
|
|
54
|
+
.tag-default {
|
|
55
|
+
--tag-color: var(--text-primary); // @presenter Color
|
|
56
|
+
--tag-background-color: var(--bg-overlay); // @presenter Color
|
|
57
|
+
--tag-border-color: var(--border-primary); // @presenter Color
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
.tag-green,
|
|
61
|
+
.tag-success,
|
|
62
|
+
.tag-approved,
|
|
63
|
+
.tag-get {
|
|
64
|
+
--tag-color: var(--color-success-active); // @presenter Color
|
|
65
|
+
--tag-background-color: var(--color-success-bg); // @presenter Color
|
|
66
|
+
--tag-border-color: var(--color-success-active); // @presenter Color
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.tag-red,
|
|
70
|
+
.tag-error,
|
|
71
|
+
.tag-declined,
|
|
72
|
+
.tag-delete {
|
|
73
|
+
--tag-color: var(--color-error-active); // @presenter Color
|
|
74
|
+
--tag-background-color: var(--color-error-bg); // @presenter Color
|
|
75
|
+
--tag-border-color: var(--color-error-active); // @presenter Color
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
.tag-gold,
|
|
79
|
+
.tag-warning,
|
|
80
|
+
.tag-deprecated,
|
|
81
|
+
.tag-put {
|
|
82
|
+
--tag-color: var(--color-warning-active); // @presenter Color
|
|
83
|
+
--tag-background-color: var(--color-warning-bg); // @presenter Color
|
|
84
|
+
--tag-border-color: var(--color-warning-active); // @presenter Color
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
.tag-blue,
|
|
88
|
+
.tag-processing,
|
|
89
|
+
.tag-post {
|
|
90
|
+
--tag-color: var(--color-info-active); // @presenter Color
|
|
91
|
+
--tag-background-color: var(--color-info-bg); // @presenter Color
|
|
92
|
+
--tag-border-color: var(--color-info-active); // @presenter Color
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
.tag-purple,
|
|
96
|
+
.tag-head {
|
|
97
|
+
--tag-color: var(--color-purple-7); // @presenter Color
|
|
98
|
+
--tag-background-color: var(--color-purple-1); // @presenter Color
|
|
99
|
+
--tag-border-color: var(--color-purple-7); // @presenter Color
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
.tag-cyan,
|
|
103
|
+
.tag-option {
|
|
104
|
+
--tag-color: var(--color-cyan-7); // @presenter Color
|
|
105
|
+
--tag-background-color: var(--color-cyan-1); // @presenter Color
|
|
106
|
+
--tag-border-color: var(--color-cyan-7); // @presenter Color
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
.tag-yellow,
|
|
110
|
+
.tag-patch {
|
|
111
|
+
--tag-color: var(--color-yellow-7); // @presenter Color
|
|
112
|
+
--tag-background-color: var(--color-yellow-1); // @presenter Color
|
|
113
|
+
--tag-border-color: var(--color-yellow-7); // @presenter Color
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
.tag-geekblue,
|
|
117
|
+
.tag-link {
|
|
118
|
+
--tag-color: var(--color-geekblue-7); // @presenter Color
|
|
119
|
+
--tag-background-color: var(--color-geekblue-1); // @presenter Color
|
|
120
|
+
--tag-border-color: var(--color-geekblue-7); // @presenter Color
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
.tag-magenta,
|
|
124
|
+
.tag-hook {
|
|
125
|
+
--tag-color: var(--color-magenta-7); // @presenter Color
|
|
126
|
+
--tag-background-color: var(--color-magenta-1); // @presenter Color
|
|
127
|
+
--tag-border-color: var(--color-magenta-7); // @presenter Color
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
.tag-lime {
|
|
131
|
+
--tag-color: var(--color-lime-7); // @presenter Color
|
|
132
|
+
--tag-background-color: none; // @presenter Color
|
|
133
|
+
--tag-border-color: var(--color-lime-7); // @presenter Color
|
|
134
|
+
}
|
|
135
|
+
|
|
136
|
+
// @tokens End
|
|
137
|
+
`;
|
|
@@ -10,20 +10,20 @@ import type { TextAlign, TileProps } from '@theme/components/Tiles/types';
|
|
|
10
10
|
const ThinTileWrapper = styled(Link)<{ bgColor?: string; bgImage?: string }>`
|
|
11
11
|
display: flex;
|
|
12
12
|
flex-direction: column;
|
|
13
|
-
border-radius:
|
|
14
|
-
box-shadow: 0 10px 30px 0 rgba(35, 35, 35, 0.1);
|
|
13
|
+
border-radius: var(--border-radius-lg);
|
|
15
14
|
box-sizing: border-box;
|
|
16
|
-
|
|
17
|
-
padding: 24px;
|
|
15
|
+
padding: var(--spacing-lg);
|
|
18
16
|
margin-bottom: 20px;
|
|
19
17
|
text-decoration: none;
|
|
20
18
|
width: 100%;
|
|
19
|
+
color: var(--text-primary);
|
|
20
|
+
border: 1px solid var(--border-secondary);
|
|
21
21
|
background-color: ${({ bgColor }) => bgColor || 'var(--thin-tile-background-color)'};
|
|
22
22
|
background-image: ${({ bgImage }) => (bgImage ? `url(${bgImage})` : 'none')};
|
|
23
23
|
background-repeat: no-repeat;
|
|
24
24
|
|
|
25
25
|
:hover {
|
|
26
|
-
|
|
26
|
+
border-color: var(--border-primary);
|
|
27
27
|
}
|
|
28
28
|
|
|
29
29
|
${({ theme }) => theme.mediaQueries.small} {
|
|
@@ -57,10 +57,12 @@ const ThinTileIcon = styled.img`
|
|
|
57
57
|
|
|
58
58
|
const ThinTileHeader = styled(TileHeader)<{ align?: TextAlign }>`
|
|
59
59
|
font-size: 24px;
|
|
60
|
+
font-weight: var(--font-weight-bold);
|
|
60
61
|
text-align: ${({ align }) => align || 'center'};
|
|
61
62
|
`;
|
|
62
63
|
|
|
63
64
|
const ThinTileText = styled(TileText)<{ icon?: string; align?: TextAlign }>`
|
|
65
|
+
color: var(--text-secondary);
|
|
64
66
|
font-size: 18px;
|
|
65
67
|
line-height: 1.5;
|
|
66
68
|
flex-shrink: 0;
|
|
@@ -9,6 +9,6 @@ export const TileHeader = styled.h3.attrs<{ className?: string }>(({ className }
|
|
|
9
9
|
color: ${(props) => props.color || 'var(--h3-color)'};
|
|
10
10
|
font-family: var(--h3-font-family);
|
|
11
11
|
&& {
|
|
12
|
-
margin:
|
|
12
|
+
margin: 0 0 var(--h3-margin-bottom);
|
|
13
13
|
}
|
|
14
14
|
`;
|
|
@@ -7,7 +7,7 @@ export const TileText = styled.span.attrs<{ className?: string }>(({ className }
|
|
|
7
7
|
display: inline-block;
|
|
8
8
|
font-weight: var(--font-weight-regular);
|
|
9
9
|
overflow: hidden;
|
|
10
|
-
color: ${(props) => props.color || 'var(--text-
|
|
10
|
+
color: ${(props) => props.color || 'var(--text-base)'};
|
|
11
11
|
line-height: 1.25;
|
|
12
12
|
font-family: var(--font-family-base);
|
|
13
13
|
`;
|
|
@@ -17,21 +17,21 @@ const WideTileWrapper = styled(Link)<{
|
|
|
17
17
|
}>`
|
|
18
18
|
display: inline-flex;
|
|
19
19
|
flex-direction: ${({ withIcon }) => (withIcon ? 'column' : 'row')};
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
color: var(--text-primary);
|
|
21
|
+
border: 1px solid var(--border-secondary);
|
|
22
|
+
border-radius: var(--border-radius-lg);
|
|
22
23
|
background-color: ${({ bgColor }) => bgColor || 'var(--wide-tile-background-color)'};
|
|
23
24
|
background-image: ${({ bgImage }) => (bgImage ? `url(${bgImage})` : 'none')};
|
|
24
25
|
background-repeat: no-repeat;
|
|
25
|
-
padding:
|
|
26
|
+
padding: var(--spacing-lg);
|
|
26
27
|
padding-right: ${({ disableArrow }) => (disableArrow ? '24px' : '56px')};
|
|
27
|
-
margin-bottom:
|
|
28
|
+
margin-bottom: var(--spacing-xl);
|
|
28
29
|
box-sizing: border-box;
|
|
29
30
|
position: relative;
|
|
30
31
|
text-decoration: none;
|
|
31
32
|
width: 100%;
|
|
32
|
-
transition: box-shadow 0.25s ease;
|
|
33
33
|
:hover {
|
|
34
|
-
|
|
34
|
+
border-color: var(--border-primary);
|
|
35
35
|
}
|
|
36
36
|
:before {
|
|
37
37
|
content: ${({ disableArrow }) => (disableArrow ? 'none' : '""')};
|
|
@@ -51,8 +51,8 @@ const WideTileWrapper = styled(Link)<{
|
|
|
51
51
|
|
|
52
52
|
${({ theme }) => theme.mediaQueries.medium} {
|
|
53
53
|
width: calc(50% - 2em);
|
|
54
|
-
padding:
|
|
55
|
-
padding-right: ${({ disableArrow }) => (disableArrow ? '
|
|
54
|
+
padding: var(--spacing-xl);
|
|
55
|
+
padding-right: ${({ disableArrow }) => (disableArrow ? 'var(--spacing-xl)' : '64px')};
|
|
56
56
|
flex-direction: row;
|
|
57
57
|
max-width: ${({ maxWidth }) => maxWidth};
|
|
58
58
|
}
|
|
@@ -60,9 +60,11 @@ const WideTileWrapper = styled(Link)<{
|
|
|
60
60
|
|
|
61
61
|
const WideTileHeader = styled(TileHeader)<{ align?: string }>`
|
|
62
62
|
font-size: 24px;
|
|
63
|
+
font-weight: var(--font-weight-bold);
|
|
63
64
|
text-align: ${({ align }) => align || 'left'};
|
|
64
65
|
`;
|
|
65
66
|
const WideTileText = styled(TileText)<{ align?: string }>`
|
|
67
|
+
color: var(--text-secondary);
|
|
66
68
|
font-size: 18px;
|
|
67
69
|
text-align: ${({ align }) => align || 'left'};
|
|
68
70
|
`;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { css } from "styled-components";
|
|
2
|
+
|
|
3
|
+
export const tooltip = css`
|
|
4
|
+
/**
|
|
5
|
+
* @tokens Tooltip Base
|
|
6
|
+
* @presenter Color
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
--tooltip-text-color: var(--text-secondary);
|
|
10
|
+
--tooltip-background-color: var(--bg-raised);
|
|
11
|
+
|
|
12
|
+
.tooltip-copy-button {
|
|
13
|
+
--tooltip-text-color: var(--text-secondaru);
|
|
14
|
+
--tooltip-background-color: var(--bg-raised);
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
// @tokens End
|
|
18
|
+
`;
|
|
@@ -4,9 +4,9 @@ export const SectionHeader = styled.h2.attrs<{ className?: string }>(({ classNam
|
|
|
4
4
|
'data-component-name': 'Typography/SectionHeader',
|
|
5
5
|
className,
|
|
6
6
|
}))`
|
|
7
|
-
color: var(--h2-color);
|
|
7
|
+
color: var(--h2-text-color);
|
|
8
8
|
font-size: var(--h2-font-size);
|
|
9
|
-
font-weight: var(--
|
|
9
|
+
font-weight: var(--font-weight-regular);
|
|
10
10
|
text-align: center;
|
|
11
11
|
margin: 2.65em 0;
|
|
12
12
|
padding: 0 20px;
|
|
@@ -17,7 +17,7 @@ export const Typography = styled.div.attrs<{ className?: string }>(({ className
|
|
|
17
17
|
'data-component-name': 'Typography/Typography',
|
|
18
18
|
className,
|
|
19
19
|
}))<TypographyProps>`
|
|
20
|
-
color: ${({ color }) => color || 'var(--text-
|
|
20
|
+
color: ${({ color }) => color || 'var(--text-base)'};
|
|
21
21
|
font-family: ${({ fontFamily }) => fontFamily || 'var(--font-family-base)'};
|
|
22
22
|
font-size: ${({ fontSize }) => fontSize || 'var(--font-size-base)'};
|
|
23
23
|
font-style: ${({ fontStyle }) => fontStyle};
|
package/src/components/index.ts
CHANGED
|
@@ -16,7 +16,7 @@ export * from './OpenApiDocs/hooks/OpenApiTryItSecurityPanel';
|
|
|
16
16
|
export * from './Tooltip';
|
|
17
17
|
export * from './Panel';
|
|
18
18
|
export * from './Feedback';
|
|
19
|
-
export * from './
|
|
19
|
+
export * from './Tag';
|
|
20
20
|
export * from './TableOfContent';
|
|
21
21
|
export * from './Profile';
|
|
22
22
|
export * from './ColorModeSwitcher';
|
|
@@ -25,7 +25,6 @@ export * from './Markdown';
|
|
|
25
25
|
export * from './OpenApiDocs';
|
|
26
26
|
export * from './SidebarActions';
|
|
27
27
|
export * from './Filter';
|
|
28
|
-
export * from './Tags';
|
|
29
28
|
export * from './Tabs';
|
|
30
29
|
export * from './Menu';
|
|
31
30
|
export * from './Separator';
|