@redocly/theme 0.74.2-pingfed.3 → 0.81.2-rc.2
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/Admonition/Admonition.d.ts +12 -0
- package/lib/components/Admonition/Admonition.js +119 -0
- package/lib/components/Admonition/variables.d.ts +1 -0
- package/lib/components/Admonition/variables.js +100 -0
- package/lib/components/Badge/Badge.d.ts +5 -0
- package/lib/components/Badge/Badge.js +49 -0
- package/lib/components/Breadcrumbs/Breadcrumb.d.ts +5 -3
- package/lib/components/Breadcrumbs/Breadcrumb.js +4 -5
- package/lib/components/Breadcrumbs/Breadcrumbs.js +7 -6
- package/lib/components/Breadcrumbs/variables.js +20 -0
- package/lib/components/Button/Button.d.ts +9 -8
- package/lib/components/Button/Button.js +106 -88
- package/lib/components/Button/variables.dark.d.ts +1 -0
- package/lib/components/Button/variables.dark.js +30 -0
- package/lib/components/Button/variables.js +221 -0
- package/lib/components/Buttons/CopyButton.d.ts +16 -0
- package/lib/components/Buttons/CopyButton.js +53 -0
- package/lib/components/Buttons/EditPageButton.d.ts +6 -0
- package/lib/components/Buttons/EditPageButton.js +45 -0
- package/lib/components/Buttons/EmailButton.d.ts +7 -0
- package/lib/components/Buttons/EmailButton.js +18 -0
- package/lib/components/Buttons/NewTabButton.d.ts +7 -0
- package/lib/components/Buttons/NewTabButton.js +18 -0
- package/lib/components/Catalog/Catalog.d.ts +2 -3
- package/lib/components/Catalog/Catalog.js +40 -77
- package/lib/components/Catalog/CatalogActions.d.ts +9 -0
- package/lib/components/Catalog/CatalogActions.js +71 -0
- package/lib/components/Catalog/CatalogCard.d.ts +5 -3
- package/lib/components/Catalog/CatalogCard.js +49 -79
- package/lib/components/Catalog/CatalogHighlight.d.ts +5 -0
- package/lib/components/Catalog/CatalogHighlight.js +71 -0
- package/lib/components/Catalog/CatalogInfoBlock.d.ts +12 -0
- package/lib/components/Catalog/CatalogInfoBlock.js +48 -0
- package/lib/components/Catalog/variables.js +106 -0
- package/lib/components/CodeBlock/CodeBlock.d.ts +9 -10
- package/lib/components/CodeBlock/CodeBlock.js +29 -22
- package/lib/components/CodeBlock/CodeBlockContainer.d.ts +0 -1
- package/lib/components/CodeBlock/CodeBlockContainer.js +98 -105
- package/lib/components/CodeBlock/CodeBlockControls.d.ts +11 -10
- package/lib/components/CodeBlock/CodeBlockControls.js +44 -64
- package/lib/components/CodeBlock/CodeBlockTabs.d.ts +7 -0
- package/lib/components/CodeBlock/CodeBlockTabs.js +122 -0
- package/lib/components/CodeBlock/variables.js +95 -0
- package/lib/components/ColorModeSwitcher/ColorModeIcon.js +27 -0
- package/lib/components/ColorModeSwitcher/ColorModeSwitcher.d.ts +3 -3
- package/lib/components/ColorModeSwitcher/ColorModeSwitcher.js +9 -70
- package/lib/components/DatePicker/DatePicker.d.ts +5 -0
- package/lib/components/DatePicker/DatePicker.js +75 -0
- package/lib/components/DatePicker/variables.d.ts +1 -0
- package/lib/components/DatePicker/variables.js +24 -0
- package/lib/components/Dropdown/Dropdown.d.ts +11 -18
- package/lib/components/Dropdown/Dropdown.js +34 -63
- package/lib/components/Dropdown/DropdownMenu.d.ts +12 -0
- package/lib/components/Dropdown/DropdownMenu.js +53 -0
- package/lib/components/Dropdown/DropdownMenuItem.d.ts +19 -0
- package/lib/components/Dropdown/DropdownMenuItem.js +137 -0
- package/lib/components/Dropdown/variables.js +44 -0
- package/lib/components/Feedback/Comment.d.ts +13 -2
- package/lib/components/Feedback/Comment.js +62 -56
- package/lib/components/Feedback/Feedback.d.ts +3 -3
- package/lib/components/Feedback/Feedback.js +40 -43
- package/lib/components/Feedback/Mood.d.ts +25 -2
- package/lib/components/Feedback/Mood.js +51 -73
- package/lib/components/Feedback/Rating.d.ts +24 -2
- package/lib/components/Feedback/Rating.js +40 -42
- package/lib/components/Feedback/Reasons.d.ts +10 -2
- package/lib/components/Feedback/Reasons.js +15 -15
- package/lib/components/Feedback/ReportDialog.d.ts +13 -2
- package/lib/components/Feedback/ReportDialog.js +28 -40
- package/lib/components/Feedback/Scale.d.ts +26 -2
- package/lib/components/Feedback/Scale.js +53 -66
- package/lib/components/Feedback/Sentiment.d.ts +24 -2
- package/lib/components/Feedback/Sentiment.js +55 -76
- package/lib/components/Feedback/Stars.d.ts +1 -1
- package/lib/components/Feedback/Stars.js +9 -9
- package/lib/components/Feedback/variables.d.ts +1 -0
- package/lib/components/Feedback/variables.js +34 -0
- package/lib/components/Filter/Filter.d.ts +3 -9
- package/lib/components/Filter/Filter.js +14 -182
- package/lib/components/Filter/FilterCheckboxes.d.ts +3 -0
- package/lib/components/Filter/FilterCheckboxes.js +43 -0
- package/lib/components/Filter/FilterContent.d.ts +5 -6
- package/lib/components/Filter/FilterContent.js +33 -39
- package/lib/components/Filter/FilterDateRange.d.ts +3 -0
- package/lib/components/Filter/FilterDateRange.js +62 -0
- package/lib/components/Filter/FilterInput.d.ts +7 -0
- package/lib/components/Filter/FilterInput.js +62 -0
- package/lib/components/Filter/FilterOption.d.ts +4 -0
- package/lib/components/Filter/FilterOption.js +22 -0
- package/lib/components/Filter/FilterOptionLabel.d.ts +3 -0
- package/lib/components/Filter/FilterOptionLabel.js +18 -0
- package/lib/components/Filter/FilterOptions.d.ts +3 -0
- package/lib/components/Filter/FilterOptions.js +16 -0
- package/lib/components/Filter/FilterPopover.d.ts +6 -9
- package/lib/components/Filter/FilterPopover.js +14 -56
- package/lib/components/Filter/FilterSelect.d.ts +3 -0
- package/lib/components/Filter/FilterSelect.js +63 -0
- package/lib/components/Filter/FilterTitle.d.ts +3 -0
- package/lib/components/Filter/FilterTitle.js +15 -0
- package/lib/components/Filter/variables.js +98 -0
- package/lib/components/Footer/Footer.d.ts +3 -8
- package/lib/components/Footer/Footer.js +47 -29
- package/lib/components/Footer/FooterColumn.d.ts +3 -7
- package/lib/components/Footer/FooterColumn.js +42 -75
- package/lib/components/Footer/FooterCopyright.d.ts +2 -2
- package/lib/components/Footer/FooterCopyright.js +14 -10
- package/lib/components/Footer/FooterItem.d.ts +8 -0
- package/lib/components/Footer/FooterItem.js +65 -0
- package/lib/components/Footer/FooterLogo.d.ts +4 -0
- package/lib/components/Footer/FooterLogo.js +18 -0
- package/lib/components/Footer/variables.js +62 -0
- package/lib/components/Image/Image.d.ts +1 -2
- package/lib/components/Image/Image.js +2 -10
- package/lib/components/JsonViewer/JsonViewer.d.ts +2 -6
- package/lib/components/JsonViewer/JsonViewer.js +34 -167
- package/lib/components/JsonViewer/helpers.d.ts +8 -0
- package/lib/components/JsonViewer/helpers.js +131 -0
- package/lib/components/LanguagePicker/LanguagePicker.d.ts +9 -0
- package/lib/components/LanguagePicker/LanguagePicker.js +79 -0
- package/lib/components/LanguagePicker/variables.js +37 -0
- package/lib/components/LastUpdated/LastUpdated.d.ts +2 -2
- package/lib/components/LastUpdated/LastUpdated.js +8 -8
- package/lib/components/LastUpdated/variables.js +11 -0
- package/lib/components/Link/Link.d.ts +13 -0
- package/lib/components/Link/Link.js +55 -0
- package/lib/components/Loading/Loading.d.ts +5 -0
- package/lib/components/Loading/Loading.js +25 -0
- package/lib/components/Logo/Logo.d.ts +8 -0
- package/lib/components/Logo/Logo.js +46 -0
- package/lib/components/Logo/variables.js +17 -0
- package/lib/components/Markdown/Markdown.d.ts +5 -0
- package/lib/components/Markdown/Markdown.js +298 -0
- package/lib/components/Markdown/styles/baseTable.d.ts +1 -0
- package/lib/components/Markdown/styles/baseTable.js +64 -0
- package/lib/components/Markdown/styles/headingAnchor.d.ts +2 -0
- package/lib/components/Markdown/styles/headingAnchor.js +37 -0
- package/lib/components/Markdown/styles/links.d.ts +1 -0
- package/lib/components/Markdown/styles/links.js +23 -0
- package/lib/components/Markdown/variables.d.ts +1 -0
- package/lib/components/Markdown/variables.js +99 -0
- package/lib/components/Menu/Menu.d.ts +7 -8
- package/lib/components/Menu/Menu.js +13 -10
- package/lib/components/Menu/MenuContainer.d.ts +5 -2
- package/lib/components/Menu/MenuContainer.js +51 -4
- package/lib/components/Menu/MenuItem.d.ts +3 -3
- package/lib/components/Menu/MenuItem.js +227 -32
- package/lib/components/Menu/MenuMobile.d.ts +7 -0
- package/lib/components/Menu/MenuMobile.js +153 -0
- package/lib/components/Menu/variables.d.ts +2 -0
- package/lib/components/Menu/variables.dark.d.ts +1 -0
- package/lib/components/Menu/variables.dark.js +11 -0
- package/lib/components/Menu/variables.js +178 -0
- package/lib/components/Navbar/Navbar.d.ts +3 -14
- package/lib/components/Navbar/Navbar.js +68 -118
- package/lib/components/Navbar/NavbarItem.d.ts +5 -17
- package/lib/components/Navbar/NavbarItem.js +48 -59
- package/lib/components/Navbar/NavbarLogo.d.ts +4 -0
- package/lib/components/Navbar/NavbarLogo.js +18 -0
- package/lib/components/Navbar/NavbarMenu.d.ts +5 -3
- package/lib/components/Navbar/NavbarMenu.js +4 -4
- package/lib/components/Navbar/variables.js +54 -0
- package/lib/components/PageNavigation/NextButton.d.ts +3 -3
- package/lib/components/PageNavigation/NextButton.js +24 -10
- package/lib/components/PageNavigation/PageNavigation.d.ts +3 -3
- package/lib/components/PageNavigation/PageNavigation.js +2 -2
- package/lib/components/PageNavigation/PreviousButton.d.ts +3 -3
- package/lib/components/PageNavigation/PreviousButton.js +24 -13
- package/lib/components/Panel/Panel.d.ts +15 -5
- package/lib/components/Panel/Panel.js +57 -14
- package/lib/components/Panel/PanelBody.js +1 -3
- package/lib/components/Panel/PanelHeader.d.ts +3 -2
- package/lib/components/Panel/PanelHeader.js +8 -5
- package/lib/components/Panel/PanelHeaderTitle.js +1 -0
- package/lib/components/Panel/variables.js +410 -0
- package/lib/components/Portal/Portal.d.ts +7 -0
- package/lib/components/Portal/Portal.js +18 -0
- package/lib/components/Product/Product.d.ts +3 -2
- package/lib/components/Product/Product.js +3 -3
- package/lib/components/Product/ProductPicker.d.ts +2 -2
- package/lib/components/Product/ProductPicker.js +51 -68
- package/lib/components/Product/variables.d.ts +1 -0
- package/lib/components/Product/variables.js +39 -0
- package/lib/components/Scorecard/variables.d.ts +1 -0
- package/lib/components/Scorecard/variables.dark.d.ts +1 -0
- package/lib/components/Scorecard/variables.dark.js +20 -0
- package/lib/components/Scorecard/variables.js +24 -0
- package/lib/components/Search/Search.d.ts +4 -2
- package/lib/components/Search/Search.js +6 -59
- package/lib/components/Search/SearchDialog.d.ts +5 -3
- package/lib/components/Search/SearchDialog.js +94 -71
- package/lib/components/Search/SearchHighlight.d.ts +2 -0
- package/lib/components/Search/SearchHighlight.js +46 -0
- package/lib/components/Search/SearchInput.d.ts +11 -0
- package/lib/components/Search/SearchInput.js +55 -0
- package/lib/components/Search/SearchItem.d.ts +10 -5
- package/lib/components/Search/SearchItem.js +81 -55
- package/lib/components/Search/SearchRecent.d.ts +7 -0
- package/lib/components/Search/SearchRecent.js +122 -0
- package/lib/components/Search/SearchShortcut.d.ts +8 -0
- package/lib/components/Search/SearchShortcut.js +51 -0
- package/lib/components/Search/SearchSuggestedPages.d.ts +6 -0
- package/lib/components/Search/SearchSuggestedPages.js +91 -0
- package/lib/components/Search/SearchTrigger.d.ts +4 -2
- package/lib/components/Search/SearchTrigger.js +54 -35
- package/lib/components/Search/variables.js +98 -0
- package/lib/components/Segmented/Segmented.d.ts +15 -0
- package/lib/components/Segmented/Segmented.js +76 -0
- package/lib/components/Segmented/variables.d.ts +1 -0
- package/lib/components/Segmented/variables.dark.d.ts +1 -0
- package/lib/components/Segmented/variables.dark.js +9 -0
- package/lib/components/Segmented/variables.js +26 -0
- package/lib/components/Select/Select.d.ts +5 -2
- package/lib/components/Select/Select.js +33 -21
- package/lib/components/Select/variables.js +37 -0
- package/lib/components/Sidebar/Sidebar.d.ts +19 -5
- package/lib/components/Sidebar/Sidebar.js +91 -12
- package/lib/components/Sidebar/variables.d.ts +1 -0
- package/lib/components/Sidebar/variables.js +60 -0
- package/lib/components/SidebarActions/ChangeViewButton.d.ts +3 -2
- package/lib/components/SidebarActions/ChangeViewButton.js +12 -3
- package/lib/components/SidebarActions/SidebarActions.d.ts +3 -10
- package/lib/components/SidebarActions/SidebarActions.js +25 -24
- package/lib/components/SidebarActions/styled.d.ts +6 -10
- package/lib/components/SidebarActions/styled.js +22 -69
- package/lib/components/SidebarLogo/SidebarLogo.js +1 -1
- package/lib/components/StatusCode/StatusCode.d.ts +5 -0
- package/lib/components/StatusCode/StatusCode.js +40 -0
- package/lib/components/StatusCode/variables.d.ts +1 -0
- package/lib/components/StatusCode/variables.dark.d.ts +1 -0
- package/lib/components/StatusCode/variables.dark.js +8 -0
- package/lib/components/StatusCode/variables.js +16 -0
- package/lib/components/TableOfContent/TableOfContent.d.ts +3 -3
- package/lib/components/TableOfContent/TableOfContent.js +40 -36
- package/lib/components/TableOfContent/variables.js +49 -0
- package/lib/components/Tag/Tag.d.ts +7 -4
- package/lib/components/Tag/Tag.js +27 -6
- package/lib/components/Tag/variables.dark.d.ts +1 -0
- package/lib/components/Tag/variables.dark.js +19 -0
- package/lib/components/Tag/variables.js +188 -0
- package/lib/components/Tags/CounterTag.d.ts +5 -0
- package/lib/components/Tags/CounterTag.js +18 -0
- package/lib/components/Tags/HttpTag.d.ts +5 -0
- package/lib/components/Tags/HttpTag.js +29 -0
- package/lib/components/Tags/variables.d.ts +1 -0
- package/lib/components/Tags/variables.js +21 -0
- package/lib/components/Tooltip/Tooltip.d.ts +2 -2
- package/lib/components/Tooltip/Tooltip.js +4 -4
- package/lib/components/Tooltip/variables.js +21 -0
- package/lib/components/Typography/H1.js +1 -1
- package/lib/components/Typography/H2.js +1 -1
- package/lib/components/Typography/H3.js +1 -1
- package/lib/components/Typography/H4.d.ts +1 -0
- package/lib/components/Typography/H4.js +18 -0
- package/lib/components/Typography/Typography.js +1 -1
- package/lib/components/UserMenu/LoginButton.d.ts +6 -0
- package/lib/components/UserMenu/LoginButton.js +18 -0
- package/lib/components/UserMenu/LogoutMenuItem.d.ts +6 -0
- package/lib/components/UserMenu/LogoutMenuItem.js +23 -0
- package/lib/components/UserMenu/UserAvatar.d.ts +9 -0
- package/lib/components/UserMenu/UserAvatar.js +47 -0
- package/lib/components/UserMenu/UserInfoMenuItem.d.ts +9 -0
- package/lib/components/UserMenu/UserInfoMenuItem.js +54 -0
- package/lib/components/UserMenu/UserMenu.d.ts +6 -0
- package/lib/components/UserMenu/UserMenu.js +92 -0
- package/lib/components/UserMenu/UserMenuMobile.d.ts +6 -0
- package/lib/components/UserMenu/UserMenuMobile.js +54 -0
- package/lib/components/UserMenu/variables.d.ts +1 -0
- package/lib/components/UserMenu/variables.js +64 -0
- package/lib/components/VersionPicker/VersionPicker.d.ts +10 -0
- package/lib/components/VersionPicker/VersionPicker.js +111 -0
- package/lib/components/VersionPicker/variables.d.ts +1 -0
- package/lib/components/VersionPicker/variables.js +42 -0
- package/lib/config.d.ts +2 -2569
- package/lib/config.js +0 -635
- package/lib/core/constants/common.d.ts +22 -0
- package/lib/core/constants/common.js +30 -0
- package/lib/core/constants/environments.d.ts +9 -0
- package/lib/core/constants/environments.js +14 -0
- package/lib/core/constants/index.d.ts +2 -0
- package/lib/core/constants/index.js +19 -0
- package/lib/core/contexts/ThemeDataContext.d.ts +12 -0
- package/lib/core/contexts/ThemeDataContext.js +6 -0
- package/lib/core/contexts/index.d.ts +1 -0
- package/lib/core/contexts/index.js +18 -0
- package/lib/core/hoc/index.d.ts +1 -0
- package/lib/core/hoc/index.js +18 -0
- package/lib/core/hoc/typedMemo.d.ts +1 -0
- package/lib/core/hoc/typedMemo.js +6 -0
- package/lib/core/hooks/__mocks__/index.d.ts +24 -0
- package/lib/core/hooks/__mocks__/index.js +41 -0
- package/lib/core/hooks/__mocks__/search/use-recent-searches.d.ts +6 -0
- package/lib/core/hooks/__mocks__/search/use-recent-searches.js +12 -0
- package/lib/core/hooks/__mocks__/search/use-suggested-pages.d.ts +5 -0
- package/lib/core/hooks/__mocks__/search/use-suggested-pages.js +12 -0
- package/lib/core/hooks/__mocks__/use-controlled-state.d.ts +2 -0
- package/lib/core/hooks/__mocks__/use-controlled-state.js +6 -0
- package/lib/core/hooks/__mocks__/use-mobile-menu.d.ts +2 -0
- package/lib/core/hooks/__mocks__/use-mobile-menu.js +6 -0
- package/lib/core/hooks/__mocks__/use-theme-config.d.ts +9 -0
- package/lib/core/hooks/__mocks__/use-theme-config.js +12 -0
- package/lib/core/hooks/__mocks__/use-theme-hooks.d.ts +56 -0
- package/lib/core/hooks/__mocks__/use-theme-hooks.js +77 -0
- package/lib/core/hooks/__tests__/mocks/mock-intersection-observer.js +79 -0
- package/lib/core/hooks/feedback/use-report-dialog.d.ts +13 -0
- package/lib/core/hooks/feedback/use-report-dialog.js +44 -0
- package/lib/core/hooks/index.d.ts +29 -0
- package/lib/core/hooks/index.js +46 -0
- package/lib/core/hooks/menu/__mocks__/use-mobile-menu-items.d.ts +2 -0
- package/lib/core/hooks/menu/__mocks__/use-mobile-menu-items.js +34 -0
- package/lib/core/hooks/menu/use-collapse.d.ts +32 -0
- package/lib/core/hooks/menu/use-collapse.js +174 -0
- package/lib/core/hooks/menu/use-menu-item-expanded.d.ts +3 -0
- package/lib/core/hooks/menu/use-menu-item-expanded.js +26 -0
- package/lib/core/hooks/menu/use-mobile-menu-items.d.ts +10 -0
- package/lib/core/hooks/menu/use-mobile-menu-items.js +84 -0
- package/lib/core/hooks/menu/use-mobile-menu-levels.d.ts +5 -0
- package/lib/core/hooks/menu/use-mobile-menu-levels.js +45 -0
- package/lib/core/hooks/menu/use-nested-menu.d.ts +21 -0
- package/lib/core/hooks/menu/use-nested-menu.js +73 -0
- package/lib/core/hooks/search/use-recent-searches.d.ts +5 -0
- package/lib/core/hooks/search/use-recent-searches.js +39 -0
- package/lib/core/hooks/search/use-suggested-pages.d.ts +6 -0
- package/lib/core/hooks/search/use-suggested-pages.js +12 -0
- package/lib/core/hooks/use-active-heading.js +80 -0
- package/lib/core/hooks/use-active-section-id.js +44 -0
- package/lib/core/hooks/use-codeblock-tabs-controls.d.ts +13 -0
- package/lib/core/hooks/use-codeblock-tabs-controls.js +56 -0
- package/lib/core/hooks/use-color-switcher.d.ts +7 -0
- package/lib/core/hooks/use-color-switcher.js +33 -0
- package/lib/core/hooks/use-control.js +16 -0
- package/lib/core/hooks/use-controlled-state.d.ts +1 -0
- package/lib/core/hooks/use-controlled-state.js +17 -0
- package/lib/core/hooks/use-dialog-hotkeys.js +45 -0
- package/lib/core/hooks/use-focus-trap.d.ts +2 -0
- package/lib/core/hooks/use-focus-trap.js +35 -0
- package/lib/core/hooks/use-full-height.js +48 -0
- package/lib/core/hooks/use-language-picker.d.ts +6 -0
- package/lib/core/hooks/use-language-picker.js +23 -0
- package/lib/core/hooks/use-mobile-menu.d.ts +5 -0
- package/lib/core/hooks/use-mobile-menu.js +17 -0
- package/lib/core/hooks/use-modal-scroll-lock.d.ts +1 -0
- package/lib/core/hooks/use-modal-scroll-lock.js +24 -0
- package/lib/core/hooks/use-mount.js +12 -0
- package/lib/core/hooks/use-navbar-height.js +21 -0
- package/lib/core/hooks/use-outside-click.d.ts +2 -0
- package/lib/core/hooks/use-outside-click.js +22 -0
- package/lib/core/hooks/use-product-picker.d.ts +5 -0
- package/lib/core/hooks/use-product-picker.js +24 -0
- package/lib/core/hooks/use-search.d.ts +5 -0
- package/lib/core/hooks/use-search.js +44 -0
- package/lib/core/hooks/use-tabs.d.ts +14 -0
- package/lib/core/hooks/use-tabs.js +57 -0
- package/lib/core/hooks/use-theme-config.d.ts +2 -0
- package/lib/core/hooks/use-theme-config.js +22 -0
- package/lib/core/hooks/use-theme-hooks.d.ts +2 -0
- package/lib/core/hooks/use-theme-hooks.js +31 -0
- package/lib/core/hooks/use-unmount.js +14 -0
- package/lib/core/index.d.ts +7 -0
- package/lib/core/index.js +24 -0
- package/lib/core/styles/dark.js +302 -0
- package/lib/core/styles/global.js +1202 -0
- package/lib/core/styles/index.d.ts +2 -0
- package/lib/core/styles/index.js +19 -0
- package/lib/core/templates/Markdown.d.ts +17 -0
- package/lib/core/templates/Markdown.js +69 -0
- package/lib/core/types/breadcrumb.d.ts +1 -0
- package/lib/core/types/breadcrumb.js +3 -0
- package/lib/core/types/catalog.d.ts +43 -0
- package/lib/core/types/feedback.d.ts +19 -0
- package/lib/core/types/filter.d.ts +9 -0
- package/lib/core/types/filter.js +3 -0
- package/lib/core/types/hooks.d.ts +73 -0
- package/lib/core/types/hooks.js +3 -0
- package/lib/core/types/i18n.d.ts +10 -0
- package/lib/core/types/i18n.js +3 -0
- package/lib/core/types/index.d.ts +12 -0
- package/lib/core/types/index.js +29 -0
- package/lib/core/types/navbar.d.ts +7 -0
- package/lib/core/types/navbar.js +3 -0
- package/lib/core/types/search.d.ts +25 -0
- package/lib/core/types/search.js +3 -0
- package/lib/core/types/select-option.d.ts +4 -0
- package/lib/core/types/select-option.js +3 -0
- package/lib/core/types/sidebar.d.ts +59 -0
- package/lib/core/types/sidebar.js +3 -0
- package/lib/core/types/user-menu.d.ts +12 -0
- package/lib/core/types/user-menu.js +3 -0
- package/lib/core/utils/attribute-parser.d.ts +1 -0
- package/lib/core/utils/attribute-parser.js +14 -0
- package/lib/core/utils/change-text-casing.d.ts +3 -0
- package/lib/core/utils/change-text-casing.js +19 -0
- package/lib/core/utils/clipboard-service.js +33 -0
- package/lib/core/utils/details.d.ts +1 -0
- package/lib/core/utils/details.js +41 -0
- package/lib/core/utils/dom.d.ts +2 -0
- package/lib/core/utils/dom.js +14 -0
- package/lib/core/utils/format-date-without-timezone.d.ts +1 -0
- package/lib/core/utils/format-date-without-timezone.js +13 -0
- package/lib/core/utils/get-navbar-element.js +15 -0
- package/lib/core/utils/get-scorecard-color-variable.d.ts +1 -0
- package/lib/core/utils/get-scorecard-color-variable.js +15 -0
- package/lib/core/utils/index.d.ts +26 -0
- package/lib/core/utils/index.js +43 -0
- package/lib/core/utils/is-url.js +37 -0
- package/lib/core/utils/js-utils.d.ts +8 -0
- package/lib/core/utils/js-utils.js +28 -0
- package/lib/core/utils/load-and-navigate.d.ts +3 -0
- package/lib/core/utils/load-and-navigate.js +49 -0
- package/lib/core/utils/markdoc.d.ts +2 -0
- package/lib/core/utils/markdoc.js +8 -0
- package/lib/core/utils/media-css.d.ts +6 -0
- package/lib/core/utils/media-css.js +5 -0
- package/lib/core/utils/menu.d.ts +9 -0
- package/lib/core/utils/menu.js +95 -0
- package/lib/core/utils/replace-hash-in-color.js +8 -0
- package/lib/core/utils/toc.d.ts +4 -0
- package/lib/core/utils/toc.js +41 -0
- package/lib/core/utils/type-guards.d.ts +5 -0
- package/lib/core/utils/type-guards.js +24 -0
- package/lib/core/utils/urls.d.ts +27 -0
- package/lib/core/utils/urls.js +104 -0
- package/lib/core/utils/with-load-progress.d.ts +1 -0
- package/lib/core/utils/with-load-progress.js +39 -0
- package/lib/icons/AddIcon/AddIcon.d.ts +9 -0
- package/lib/icons/AddIcon/AddIcon.js +22 -0
- package/lib/icons/ArrowLeftIcon/ArrowLeftIcon.d.ts +9 -0
- package/lib/icons/ArrowLeftIcon/ArrowLeftIcon.js +22 -0
- package/lib/icons/ArrowRightIcon/ArrowRightIcon.d.ts +9 -0
- package/lib/icons/ArrowRightIcon/ArrowRightIcon.js +22 -0
- package/lib/icons/ArrowUpRightIcon/ArrowUpRightIcon.d.ts +9 -0
- package/lib/icons/ArrowUpRightIcon/ArrowUpRightIcon.js +22 -0
- package/lib/icons/BareMetalServerIcon/BareMetalServerIcon.d.ts +9 -0
- package/lib/icons/BareMetalServerIcon/BareMetalServerIcon.js +27 -0
- package/lib/icons/BookmarkAddIcon/BookmarkAddIcon.d.ts +9 -0
- package/lib/icons/BookmarkAddIcon/BookmarkAddIcon.js +22 -0
- package/lib/icons/CharacterIcon/CharacterIcon.d.ts +9 -0
- package/lib/icons/CharacterIcon/CharacterIcon.js +24 -0
- package/lib/icons/CheckboxIcon/CheckboxIcon.js +5 -11
- package/lib/icons/CheckboxIcon/variables.d.ts +1 -0
- package/lib/icons/CheckboxIcon/variables.dark.d.ts +1 -0
- package/lib/icons/CheckboxIcon/variables.dark.js +10 -0
- package/lib/icons/CheckboxIcon/variables.js +22 -0
- package/lib/icons/CheckmarkFilledIcon/CheckmarkFilledIcon.d.ts +9 -0
- package/lib/icons/CheckmarkFilledIcon/CheckmarkFilledIcon.js +22 -0
- package/lib/icons/CheckmarkIcon/CheckmarkIcon.d.ts +9 -0
- package/lib/icons/CheckmarkIcon/CheckmarkIcon.js +22 -0
- package/lib/icons/ChevronDownIcon/ChevronDownIcon.d.ts +9 -0
- package/lib/icons/ChevronDownIcon/ChevronDownIcon.js +23 -0
- package/lib/icons/ChevronLeftIcon/ChevronLeftIcon.d.ts +9 -0
- package/lib/icons/ChevronLeftIcon/ChevronLeftIcon.js +22 -0
- package/lib/icons/ChevronRightIcon/ChevronRightIcon.d.ts +9 -0
- package/lib/icons/ChevronRightIcon/ChevronRightIcon.js +22 -0
- package/lib/icons/ChevronSortIcon/ChevronSortIcon.d.ts +11 -0
- package/lib/icons/ChevronSortIcon/ChevronSortIcon.js +22 -0
- package/lib/icons/ChevronUpIcon/ChevronUpIcon.d.ts +9 -0
- package/lib/icons/ChevronUpIcon/ChevronUpIcon.js +23 -0
- package/lib/icons/CircleDashIcon/CircleDashIcon.d.ts +9 -0
- package/lib/icons/CircleDashIcon/CircleDashIcon.js +31 -0
- package/lib/icons/CleanIcon/CleanIcon.d.ts +9 -0
- package/lib/icons/CleanIcon/CleanIcon.js +25 -0
- package/lib/icons/CloseFilledIcon/CloseFilledIcon.d.ts +9 -0
- package/lib/icons/CloseFilledIcon/CloseFilledIcon.js +21 -0
- package/lib/icons/CloseIcon/CloseIcon.d.ts +7 -3
- package/lib/icons/CloseIcon/CloseIcon.js +13 -6
- package/lib/icons/CloudUploadIcon/CloudUploadIcon.d.ts +9 -0
- package/lib/icons/CloudUploadIcon/CloudUploadIcon.js +23 -0
- package/lib/icons/CodeIcon/CodeIcon.d.ts +9 -0
- package/lib/icons/CodeIcon/CodeIcon.js +24 -0
- package/lib/icons/ContrastIcon/ContrastIcon.d.ts +9 -0
- package/lib/icons/ContrastIcon/ContrastIcon.js +22 -0
- package/lib/icons/CookieIcon/CookieIcon.d.ts +9 -0
- package/lib/icons/CookieIcon/CookieIcon.js +29 -0
- package/lib/icons/CopyIcon/CopyIcon.d.ts +8 -5
- package/lib/icons/CopyIcon/CopyIcon.js +12 -6
- package/lib/icons/CopyLinkIcon/CopyLinkIcon.d.ts +9 -0
- package/lib/icons/CopyLinkIcon/CopyLinkIcon.js +24 -0
- package/lib/icons/DataFormatIcon/DataFormatIcon.d.ts +9 -0
- package/lib/icons/DataFormatIcon/DataFormatIcon.js +26 -0
- package/lib/icons/DatabaseIcon/DatabaseIcon.d.ts +9 -0
- package/lib/icons/DatabaseIcon/DatabaseIcon.js +22 -0
- package/lib/icons/DeselectIcon/DeselectIcon.d.ts +4 -6
- package/lib/icons/DeselectIcon/DeselectIcon.js +11 -4
- package/lib/icons/DocumentBlankIcon/DocumentBlankIcon.d.ts +9 -0
- package/lib/icons/DocumentBlankIcon/DocumentBlankIcon.js +22 -0
- package/lib/icons/DocumentIcon/DocumentIcon.d.ts +9 -0
- package/lib/icons/DocumentIcon/DocumentIcon.js +24 -0
- package/lib/icons/DocumentIcon/index.d.ts +1 -0
- package/lib/icons/DocumentIcon/index.js +6 -0
- package/lib/icons/DownloadIcon/DownloadIcon.d.ts +9 -0
- package/lib/icons/DownloadIcon/DownloadIcon.js +23 -0
- package/lib/icons/EditIcon/EditIcon.d.ts +8 -5
- package/lib/icons/EditIcon/EditIcon.js +13 -8
- package/lib/icons/EmailIcon/EmailIcon.d.ts +9 -0
- package/lib/icons/EmailIcon/EmailIcon.js +22 -0
- package/lib/icons/ErrorIcon/ErrorIcon.d.ts +7 -2
- package/lib/icons/ErrorIcon/ErrorIcon.js +11 -3
- package/lib/icons/FaceDissatisfiedIcon/FaceDissatisfiedIcon.d.ts +9 -0
- package/lib/icons/FaceDissatisfiedIcon/FaceDissatisfiedIcon.js +25 -0
- package/lib/icons/FaceNeutralIcon/FaceNeutralIcon.d.ts +9 -0
- package/lib/icons/FaceNeutralIcon/FaceNeutralIcon.js +25 -0
- package/lib/icons/FaceSatisfiedIcon/FaceSatisfiedIcon.d.ts +9 -0
- package/lib/icons/FaceSatisfiedIcon/FaceSatisfiedIcon.js +25 -0
- package/lib/icons/FileIcon/FileIcon.d.ts +8 -6
- package/lib/icons/FileIcon/FileIcon.js +13 -12
- package/lib/icons/FileStorageIcon/FileStorageIcon.d.ts +9 -0
- package/lib/icons/FileStorageIcon/FileStorageIcon.js +24 -0
- package/lib/icons/FilterIcon/FilterIcon.d.ts +9 -0
- package/lib/icons/FilterIcon/FilterIcon.js +22 -0
- package/lib/icons/FolderAddIcon/FolderAddIcon.d.ts +9 -0
- package/lib/icons/FolderAddIcon/FolderAddIcon.js +23 -0
- package/lib/icons/FolderMoveToIcon/FolderMoveToIcon.d.ts +9 -0
- package/lib/icons/FolderMoveToIcon/FolderMoveToIcon.js +23 -0
- package/lib/icons/GlobalOutlinedIcon/GlobalOutlinedIcon.d.ts +9 -0
- package/lib/icons/GlobalOutlinedIcon/GlobalOutlinedIcon.js +22 -0
- package/lib/icons/GridIcon/GridIcon.d.ts +9 -0
- package/lib/icons/GridIcon/GridIcon.js +25 -0
- package/lib/icons/HorizontalViewIcon/HorizontalViewIcon.d.ts +9 -0
- package/lib/icons/HorizontalViewIcon/HorizontalViewIcon.js +23 -0
- package/lib/icons/IBMCloudHyperProtectCryptoServicesIcon/IBMCloudHyperProtectCryptoServicesIcon.d.ts +9 -0
- package/lib/icons/IBMCloudHyperProtectCryptoServicesIcon/IBMCloudHyperProtectCryptoServicesIcon.js +24 -0
- package/lib/icons/InformationFilledIcon/InformationFilledIcon.d.ts +9 -0
- package/lib/icons/InformationFilledIcon/InformationFilledIcon.js +22 -0
- package/lib/icons/InformationIcon/InformationIcon.d.ts +9 -0
- package/lib/icons/InformationIcon/InformationIcon.js +24 -0
- package/lib/icons/JsonIcon/JsonIcon.d.ts +9 -0
- package/lib/icons/JsonIcon/JsonIcon.js +25 -0
- package/lib/icons/LaunchIcon/LaunchIcon.d.ts +9 -0
- package/lib/icons/LaunchIcon/LaunchIcon.js +23 -0
- package/lib/icons/LinkIcon/LinkIcon.d.ts +9 -0
- package/lib/icons/LinkIcon/LinkIcon.js +23 -0
- package/lib/icons/LogoutIcon/LogoutIcon.d.ts +7 -3
- package/lib/icons/LogoutIcon/LogoutIcon.js +14 -8
- package/lib/icons/MaximizeIcon/MaximizeIcon.d.ts +9 -0
- package/lib/icons/MaximizeIcon/MaximizeIcon.js +23 -0
- package/lib/icons/MenuIcon/MenuIcon.d.ts +9 -0
- package/lib/icons/MenuIcon/MenuIcon.js +22 -0
- package/lib/icons/MinimizeIcon/MinimizeIcon.d.ts +9 -0
- package/lib/icons/MinimizeIcon/MinimizeIcon.js +23 -0
- package/lib/icons/MobileSidebarIcon/MobileSidebarIcon.d.ts +9 -0
- package/lib/icons/MobileSidebarIcon/MobileSidebarIcon.js +27 -0
- package/lib/icons/MoonIcon/MoonIcon.d.ts +9 -0
- package/lib/icons/MoonIcon/MoonIcon.js +22 -0
- package/lib/icons/OverflowMenuHorizontalIcon/OverflowMenuHorizontalIcon.d.ts +9 -0
- package/lib/icons/OverflowMenuHorizontalIcon/OverflowMenuHorizontalIcon.js +24 -0
- package/lib/icons/OverflowMenuVerticalIcon/OverflowMenuVerticalIcon.d.ts +9 -0
- package/lib/icons/OverflowMenuVerticalIcon/OverflowMenuVerticalIcon.js +24 -0
- package/lib/icons/PlusCustomIcon/PlusCustomIcon.d.ts +9 -0
- package/lib/icons/PlusCustomIcon/PlusCustomIcon.js +23 -0
- package/lib/icons/RecentlyViewedIcon/RecentlyViewedIcon.d.ts +9 -0
- package/lib/icons/RecentlyViewedIcon/RecentlyViewedIcon.js +23 -0
- package/lib/icons/RenewIcon/RenewIcon.d.ts +9 -0
- package/lib/icons/RenewIcon/RenewIcon.js +23 -0
- package/lib/icons/RestartIcon/RestartIcon.d.ts +9 -0
- package/lib/icons/RestartIcon/RestartIcon.js +22 -0
- package/lib/icons/RocketIcon/RocketIcon.d.ts +8 -6
- package/lib/icons/RocketIcon/RocketIcon.js +13 -5
- package/lib/icons/SaveIcon/SaveIcon.d.ts +9 -0
- package/lib/icons/SaveIcon/SaveIcon.js +22 -0
- package/lib/icons/SearchIcon/SearchIcon.d.ts +9 -0
- package/lib/icons/SearchIcon/SearchIcon.js +22 -0
- package/lib/icons/SecurityIcon/SecurityIcon.d.ts +9 -0
- package/lib/icons/SecurityIcon/SecurityIcon.js +23 -0
- package/lib/icons/SelectIcon/SelectIcon.d.ts +4 -5
- package/lib/icons/SelectIcon/SelectIcon.js +11 -4
- package/lib/icons/SidePanelCloseIcon/SidePanelCloseIcon.d.ts +9 -0
- package/lib/icons/SidePanelCloseIcon/SidePanelCloseIcon.js +22 -0
- package/lib/icons/SidePanelOpenIcon/SidePanelOpenIcon.d.ts +9 -0
- package/lib/icons/SidePanelOpenIcon/SidePanelOpenIcon.js +22 -0
- package/lib/icons/Spinner/Spinner.d.ts +11 -0
- package/lib/icons/Spinner/Spinner.js +41 -0
- package/lib/icons/SpinnerIcon/SpinnerIcon.d.ts +2 -5
- package/lib/icons/SpinnerIcon/SpinnerIcon.js +12 -8
- package/lib/icons/StarFilledIcon/StarFilledIcon.d.ts +9 -0
- package/lib/icons/StarFilledIcon/StarFilledIcon.js +22 -0
- package/lib/icons/StarIcon/StarIcon.d.ts +9 -0
- package/lib/icons/StarIcon/StarIcon.js +22 -0
- package/lib/icons/SubtractIcon/SubtractIcon.d.ts +9 -0
- package/lib/icons/SubtractIcon/SubtractIcon.js +22 -0
- package/lib/icons/SunIcon/SunIcon.d.ts +9 -0
- package/lib/icons/SunIcon/SunIcon.js +30 -0
- package/lib/icons/TableBuiltIcon/TableBuiltIcon.d.ts +9 -0
- package/lib/icons/TableBuiltIcon/TableBuiltIcon.js +22 -0
- package/lib/icons/TimeIcon/TimeIcon.d.ts +9 -0
- package/lib/icons/TimeIcon/TimeIcon.js +23 -0
- package/lib/icons/TrashCanIcon/TrashCanIcon.d.ts +9 -0
- package/lib/icons/TrashCanIcon/TrashCanIcon.js +26 -0
- package/lib/icons/UserIcon/UserIcon.d.ts +9 -0
- package/lib/icons/UserIcon/UserIcon.js +23 -0
- package/lib/icons/ValueVariableIcon/ValueVariableIcon.d.ts +9 -0
- package/lib/icons/ValueVariableIcon/ValueVariableIcon.js +23 -0
- package/lib/icons/VerticalViewIcon/VerticalViewIcon.d.ts +9 -0
- package/lib/icons/VerticalViewIcon/VerticalViewIcon.js +23 -0
- package/lib/icons/ViewIcon/ViewIcon.d.ts +9 -0
- package/lib/icons/ViewIcon/ViewIcon.js +23 -0
- package/lib/icons/ViewOffIcon/ViewOffIcon.d.ts +9 -0
- package/lib/icons/ViewOffIcon/ViewOffIcon.js +24 -0
- package/lib/icons/WarningAltIcon/WarningAltIcon.d.ts +9 -0
- package/lib/icons/WarningAltIcon/WarningAltIcon.js +24 -0
- package/lib/icons/WarningFilledIcon/WarningFilledIcon.d.ts +9 -0
- package/lib/icons/WarningFilledIcon/WarningFilledIcon.js +22 -0
- package/lib/icons/WarningSquareIcon/WarningSquareIcon.d.ts +9 -0
- package/lib/icons/WarningSquareIcon/WarningSquareIcon.js +24 -0
- package/lib/icons/types.d.ts +6 -0
- package/lib/index.d.ts +206 -9
- package/lib/index.js +245 -9
- package/lib/layouts/DocumentationLayout.d.ts +17 -0
- package/lib/layouts/DocumentationLayout.js +66 -0
- package/lib/layouts/Forbidden.js +5 -4
- package/lib/layouts/NotFound.js +24 -19
- package/lib/layouts/OIDCForbidden.js +5 -4
- package/lib/layouts/RootLayout.js +3 -5
- package/lib/layouts/ThreePanelLayout.d.ts +11 -0
- package/lib/layouts/ThreePanelLayout.js +84 -0
- package/lib/markdoc/attributes/code-snippet-file.d.ts +5 -0
- package/lib/markdoc/attributes/code-snippet-file.js +16 -0
- package/lib/markdoc/attributes/img-src.d.ts +5 -0
- package/lib/markdoc/attributes/img-src.js +16 -0
- package/lib/markdoc/attributes/img-srcset.d.ts +5 -0
- package/lib/markdoc/attributes/img-srcset.js +16 -0
- package/lib/markdoc/attributes/relative-path.d.ts +5 -0
- package/lib/markdoc/attributes/relative-path.js +16 -0
- package/lib/markdoc/attributes/svg-content.d.ts +5 -0
- package/lib/markdoc/attributes/svg-content.js +16 -0
- package/lib/markdoc/components/Admonition/Admonition.d.ts +3 -0
- package/lib/markdoc/components/Admonition/Admonition.js +13 -0
- package/lib/markdoc/components/CodeBlock/CodeBlock.d.ts +3 -0
- package/lib/markdoc/components/CodeBlock/CodeBlock.js +13 -0
- package/lib/markdoc/components/Heading/Heading.js +48 -0
- package/lib/markdoc/components/HtmlBlock/HtmlBlock.d.ts +4 -0
- package/lib/markdoc/components/HtmlBlock/HtmlBlock.js +32 -0
- package/lib/markdoc/components/InlineSvg/InlineSvg.d.ts +4 -0
- package/lib/markdoc/components/InlineSvg/InlineSvg.js +32 -0
- package/lib/markdoc/components/MarkdocExample/MarkdocExample.d.ts +11 -0
- package/lib/markdoc/components/MarkdocExample/MarkdocExample.js +47 -0
- package/lib/markdoc/components/Mermaid/Mermaid.js +27 -0
- package/lib/markdoc/components/Mermaid/variables.d.ts +1 -0
- package/lib/markdoc/components/Mermaid/variables.dark.d.ts +1 -0
- package/lib/markdoc/components/Mermaid/variables.dark.js +8 -0
- package/lib/markdoc/components/Mermaid/variables.js +16 -0
- package/lib/markdoc/components/Tabs/Tab.d.ts +12 -0
- package/lib/markdoc/components/Tabs/Tab.js +98 -0
- package/lib/markdoc/components/Tabs/Tabs.d.ts +14 -0
- package/lib/markdoc/components/Tabs/Tabs.js +79 -0
- package/lib/markdoc/components/Tabs/variables.d.ts +1 -0
- package/lib/markdoc/components/Tabs/variables.js +70 -0
- package/lib/markdoc/components/default.d.ts +9 -0
- package/lib/markdoc/components/default.js +26 -0
- package/lib/markdoc/default.d.ts +9 -0
- package/lib/markdoc/default.js +59 -0
- package/lib/markdoc/tags/admonition.d.ts +2 -0
- package/lib/markdoc/tags/admonition.js +14 -0
- package/lib/markdoc/tags/code-snippet.d.ts +2 -0
- package/lib/markdoc/tags/code-snippet.js +60 -0
- package/lib/markdoc/tags/debug.d.ts +2 -0
- package/lib/markdoc/tags/debug.js +20 -0
- package/lib/markdoc/tags/html.d.ts +2 -0
- package/lib/markdoc/tags/html.js +25 -0
- package/lib/markdoc/tags/inline-svg.d.ts +2 -0
- package/lib/markdoc/tags/inline-svg.js +16 -0
- package/lib/markdoc/tags/markdoc-example.d.ts +2 -0
- package/lib/markdoc/tags/markdoc-example.js +32 -0
- package/lib/markdoc/tags/partial.d.ts +2 -0
- package/lib/markdoc/tags/partial.js +36 -0
- package/lib/markdoc/tags/tab.d.ts +2 -0
- package/lib/markdoc/tags/tab.js +13 -0
- package/lib/markdoc/tags/tabs.d.ts +2 -0
- package/lib/markdoc/tags/tabs.js +27 -0
- package/lib/markdoc/tags/types.d.ts +5 -0
- package/package.json +22 -12
- package/src/components/Admonition/Admonition.tsx +125 -0
- package/src/components/Admonition/variables.ts +97 -0
- package/src/components/Badge/Badge.tsx +24 -0
- package/src/components/Breadcrumbs/Breadcrumb.tsx +6 -6
- package/src/components/Breadcrumbs/Breadcrumbs.tsx +7 -6
- package/src/components/Breadcrumbs/variables.ts +17 -0
- package/src/components/Button/Button.tsx +133 -107
- package/src/components/Button/variables.dark.ts +27 -0
- package/src/components/Button/variables.ts +218 -0
- package/src/components/Buttons/CopyButton.tsx +75 -0
- package/src/components/Buttons/EditPageButton.tsx +56 -0
- package/src/components/Buttons/EmailButton.tsx +28 -0
- package/src/components/Buttons/NewTabButton.tsx +28 -0
- package/src/components/Catalog/Catalog.tsx +56 -99
- package/src/components/Catalog/CatalogActions.tsx +66 -0
- package/src/components/Catalog/CatalogCard.tsx +77 -100
- package/src/components/Catalog/CatalogHighlight.tsx +56 -0
- package/src/components/Catalog/CatalogInfoBlock.tsx +83 -0
- package/src/components/Catalog/variables.ts +103 -0
- package/src/components/CodeBlock/CodeBlock.tsx +54 -47
- package/src/components/CodeBlock/CodeBlockContainer.tsx +99 -108
- package/src/components/CodeBlock/CodeBlockControls.tsx +81 -132
- package/src/components/CodeBlock/CodeBlockTabs.tsx +133 -0
- package/src/components/CodeBlock/variables.ts +92 -0
- package/src/components/ColorModeSwitcher/ColorModeIcon.tsx +28 -0
- package/src/components/ColorModeSwitcher/ColorModeSwitcher.tsx +19 -63
- package/src/components/DatePicker/DatePicker.tsx +74 -0
- package/src/components/DatePicker/variables.ts +21 -0
- package/src/components/Dropdown/Dropdown.tsx +68 -93
- package/src/components/Dropdown/DropdownMenu.tsx +75 -0
- package/src/components/Dropdown/DropdownMenuItem.tsx +179 -0
- package/src/components/Dropdown/variables.ts +41 -0
- package/src/components/Feedback/Comment.tsx +97 -65
- package/src/components/Feedback/Feedback.tsx +61 -73
- package/src/components/Feedback/Mood.tsx +117 -105
- package/src/components/Feedback/Rating.tsx +91 -67
- package/src/components/Feedback/Reasons.tsx +25 -16
- package/src/components/Feedback/ReportDialog.tsx +50 -25
- package/src/components/Feedback/Scale.tsx +92 -68
- package/src/components/Feedback/Sentiment.tsx +121 -110
- package/src/components/Feedback/Stars.tsx +15 -16
- package/src/components/Feedback/variables.ts +31 -0
- package/src/components/Filter/Filter.tsx +16 -259
- package/src/components/Filter/FilterCheckboxes.tsx +58 -0
- package/src/components/Filter/FilterContent.tsx +43 -53
- package/src/components/Filter/FilterDateRange.tsx +97 -0
- package/src/components/Filter/FilterInput.tsx +73 -0
- package/src/components/Filter/FilterOption.tsx +16 -0
- package/src/components/Filter/FilterOptionLabel.tsx +12 -0
- package/src/components/Filter/FilterOptions.tsx +10 -0
- package/src/components/Filter/FilterPopover.tsx +21 -77
- package/src/components/Filter/FilterSelect.tsx +83 -0
- package/src/components/Filter/FilterTitle.tsx +9 -0
- package/src/components/Filter/variables.ts +95 -0
- package/src/components/Footer/Footer.tsx +66 -47
- package/src/components/Footer/FooterColumn.tsx +54 -106
- package/src/components/Footer/FooterCopyright.tsx +17 -11
- package/src/components/Footer/FooterItem.tsx +94 -0
- package/src/components/Footer/FooterLogo.tsx +13 -0
- package/src/components/Footer/variables.ts +59 -0
- package/src/components/Image/Image.tsx +2 -12
- package/src/components/JsonViewer/JsonViewer.tsx +47 -177
- package/src/components/JsonViewer/helpers.tsx +207 -0
- package/src/components/LanguagePicker/LanguagePicker.tsx +99 -0
- package/src/components/LanguagePicker/variables.ts +34 -0
- package/src/components/LastUpdated/LastUpdated.tsx +8 -9
- package/src/components/LastUpdated/variables.ts +8 -0
- package/src/components/Link/Link.tsx +38 -0
- package/src/components/Loading/Loading.tsx +27 -0
- package/src/components/Logo/Logo.tsx +50 -0
- package/src/components/Logo/variables.ts +14 -0
- package/src/components/Markdown/Markdown.tsx +278 -0
- package/src/components/Markdown/styles/baseTable.ts +61 -0
- package/src/components/Markdown/styles/headingAnchor.ts +35 -0
- package/src/components/Markdown/styles/links.ts +20 -0
- package/src/components/Markdown/variables.ts +96 -0
- package/src/components/Menu/Menu.tsx +34 -16
- package/src/components/Menu/MenuContainer.tsx +44 -8
- package/src/components/Menu/MenuItem.tsx +295 -36
- package/src/components/Menu/MenuMobile.tsx +182 -0
- package/src/components/Menu/variables.dark.ts +8 -0
- package/src/components/Menu/variables.ts +176 -0
- package/src/components/Navbar/Navbar.tsx +83 -130
- package/src/components/Navbar/NavbarItem.tsx +82 -91
- package/src/components/Navbar/NavbarLogo.tsx +13 -0
- package/src/components/Navbar/NavbarMenu.tsx +14 -10
- package/src/components/Navbar/variables.ts +51 -0
- package/src/components/PageNavigation/NextButton.tsx +39 -20
- package/src/components/PageNavigation/PageNavigation.tsx +7 -6
- package/src/components/PageNavigation/PreviousButton.tsx +39 -23
- package/src/components/Panel/Panel.tsx +111 -0
- package/src/components/Panel/PanelBody.ts +1 -3
- package/src/components/Panel/PanelHeader.ts +14 -7
- package/src/components/Panel/PanelHeaderTitle.ts +1 -0
- package/src/components/Panel/variables.ts +408 -0
- package/src/components/Portal/Portal.tsx +20 -0
- package/src/components/Product/Product.tsx +5 -5
- package/src/components/Product/ProductPicker.tsx +67 -76
- package/src/components/Product/variables.ts +36 -0
- package/src/components/Scorecard/variables.dark.ts +17 -0
- package/src/components/Scorecard/variables.ts +21 -0
- package/src/components/Search/Search.tsx +13 -47
- package/src/components/Search/SearchDialog.tsx +121 -85
- package/src/components/Search/SearchHighlight.tsx +20 -0
- package/src/components/Search/SearchInput.tsx +84 -0
- package/src/components/Search/SearchItem.tsx +119 -94
- package/src/components/Search/SearchRecent.tsx +129 -0
- package/src/components/Search/SearchShortcut.tsx +32 -0
- package/src/components/Search/SearchSuggestedPages.tsx +84 -0
- package/src/components/Search/SearchTrigger.tsx +69 -42
- package/src/components/Search/variables.ts +95 -0
- package/src/components/Segmented/Segmented.tsx +88 -0
- package/src/components/Segmented/variables.dark.ts +6 -0
- package/src/components/Segmented/variables.ts +23 -0
- package/src/components/Select/Select.tsx +67 -49
- package/src/components/Select/variables.ts +34 -0
- package/src/components/Sidebar/Sidebar.tsx +123 -15
- package/src/components/Sidebar/variables.ts +57 -0
- package/src/components/SidebarActions/ChangeViewButton.tsx +22 -6
- package/src/components/SidebarActions/SidebarActions.tsx +36 -46
- package/src/components/SidebarActions/styled.tsx +21 -110
- package/src/components/SidebarLogo/SidebarLogo.tsx +1 -1
- package/src/components/StatusCode/StatusCode.ts +32 -0
- package/src/components/StatusCode/variables.dark.ts +5 -0
- package/src/components/StatusCode/variables.ts +13 -0
- package/src/components/TableOfContent/TableOfContent.tsx +51 -42
- package/src/components/TableOfContent/variables.ts +46 -0
- package/src/components/Tag/Tag.tsx +40 -9
- package/src/components/Tag/variables.dark.ts +16 -0
- package/src/components/Tag/variables.ts +185 -0
- package/src/components/Tags/CounterTag.tsx +13 -0
- package/src/components/Tags/HttpTag.tsx +24 -0
- package/src/components/Tags/variables.ts +18 -0
- package/src/components/Tooltip/Tooltip.tsx +6 -6
- package/src/components/Tooltip/variables.ts +18 -0
- package/src/components/Typography/CompactTypography.ts +1 -1
- package/src/components/Typography/H1.ts +1 -1
- package/src/components/Typography/H2.ts +1 -1
- package/src/components/Typography/H3.ts +1 -1
- package/src/components/Typography/H4.ts +13 -0
- package/src/components/Typography/Typography.ts +1 -1
- package/src/components/UserMenu/LoginButton.tsx +31 -0
- package/src/components/UserMenu/LogoutMenuItem.tsx +37 -0
- package/src/components/UserMenu/UserAvatar.tsx +63 -0
- package/src/components/UserMenu/UserInfoMenuItem.tsx +73 -0
- package/src/components/UserMenu/UserMenu.tsx +130 -0
- package/src/components/UserMenu/UserMenuMobile.tsx +63 -0
- package/src/components/UserMenu/variables.ts +61 -0
- package/src/components/VersionPicker/VersionPicker.tsx +110 -0
- package/src/components/VersionPicker/variables.ts +39 -0
- package/src/config.ts +31 -779
- package/src/core/constants/common.ts +25 -0
- package/src/core/constants/environments.ts +9 -0
- package/src/core/constants/index.ts +2 -0
- package/src/core/contexts/ThemeDataContext.tsx +15 -0
- package/src/core/contexts/index.ts +1 -0
- package/src/core/hoc/index.ts +1 -0
- package/src/core/hoc/typedMemo.ts +3 -0
- package/src/core/hooks/__mocks__/index.ts +24 -0
- package/src/core/hooks/__mocks__/search/use-recent-searches.ts +8 -0
- package/src/core/hooks/__mocks__/search/use-suggested-pages.ts +8 -0
- package/src/core/hooks/__mocks__/use-controlled-state.ts +1 -0
- package/src/core/hooks/__mocks__/use-mobile-menu.ts +1 -0
- package/src/core/hooks/__mocks__/use-theme-config.ts +8 -0
- package/src/core/hooks/__mocks__/use-theme-hooks.ts +75 -0
- package/src/core/hooks/feedback/use-report-dialog.ts +56 -0
- package/src/core/hooks/index.ts +29 -0
- package/src/core/hooks/menu/__mocks__/use-mobile-menu-items.ts +30 -0
- package/src/core/hooks/menu/use-collapse.ts +212 -0
- package/src/core/hooks/menu/use-menu-item-expanded.ts +31 -0
- package/src/core/hooks/menu/use-mobile-menu-items.ts +110 -0
- package/src/core/hooks/menu/use-mobile-menu-levels.ts +50 -0
- package/src/core/hooks/menu/use-nested-menu.ts +78 -0
- package/src/core/hooks/search/use-recent-searches.ts +47 -0
- package/src/core/hooks/search/use-suggested-pages.ts +7 -0
- package/src/core/hooks/use-active-section-id.ts +54 -0
- package/src/core/hooks/use-codeblock-tabs-controls.ts +68 -0
- package/src/core/hooks/use-color-switcher.ts +34 -0
- package/src/core/hooks/use-controlled-state.ts +23 -0
- package/src/core/hooks/use-focus-trap.ts +39 -0
- package/src/core/hooks/use-language-picker.ts +31 -0
- package/src/core/hooks/use-mobile-menu.ts +17 -0
- package/src/core/hooks/use-modal-scroll-lock.ts +21 -0
- package/src/core/hooks/use-navbar-height.ts +25 -0
- package/src/core/hooks/use-outside-click.ts +23 -0
- package/src/core/hooks/use-product-picker.ts +20 -0
- package/src/core/hooks/use-search.ts +43 -0
- package/src/core/hooks/use-tabs.ts +62 -0
- package/src/core/hooks/use-theme-config.ts +31 -0
- package/src/core/hooks/use-theme-hooks.ts +31 -0
- package/src/core/index.ts +7 -0
- package/src/core/styles/dark.ts +300 -0
- package/src/core/styles/global.ts +1224 -0
- package/src/core/styles/index.ts +2 -0
- package/src/core/templates/Markdown.tsx +68 -0
- package/src/core/types/breadcrumb.ts +1 -0
- package/src/core/types/catalog.ts +39 -0
- package/src/core/types/feedback.ts +27 -0
- package/src/core/types/filter.ts +9 -0
- package/src/core/types/hooks.ts +113 -0
- package/src/core/types/i18n.ts +142 -0
- package/src/core/types/index.ts +12 -0
- package/src/core/types/markdown.ts +5 -0
- package/src/core/types/navbar.ts +7 -0
- package/src/core/types/search.ts +25 -0
- package/src/core/types/select-option.ts +4 -0
- package/src/core/types/sidebar.ts +70 -0
- package/src/core/types/user-menu.ts +12 -0
- package/src/core/utils/attribute-parser.ts +11 -0
- package/src/core/utils/change-text-casing.ts +18 -0
- package/src/core/utils/details.ts +43 -0
- package/src/core/utils/dom.ts +9 -0
- package/src/core/utils/format-date-without-timezone.ts +9 -0
- package/src/core/utils/get-scorecard-color-variable.ts +18 -0
- package/src/core/utils/index.ts +26 -0
- package/src/core/utils/js-utils.ts +25 -0
- package/src/core/utils/load-and-navigate.ts +46 -0
- package/src/core/utils/markdoc.ts +5 -0
- package/src/core/utils/media-css.ts +7 -0
- package/src/core/utils/menu.ts +123 -0
- package/src/core/utils/toc.ts +42 -0
- package/src/core/utils/type-guards.ts +19 -0
- package/src/core/utils/urls.ts +123 -0
- package/src/core/utils/with-load-progress.ts +25 -0
- package/src/icons/AddIcon/AddIcon.tsx +23 -0
- package/src/icons/ArrowLeftIcon/ArrowLeftIcon.tsx +30 -0
- package/src/icons/ArrowRightIcon/ArrowRightIcon.tsx +23 -0
- package/src/icons/ArrowUpRightIcon/ArrowUpRightIcon.tsx +23 -0
- package/src/icons/BareMetalServerIcon/BareMetalServerIcon.tsx +28 -0
- package/src/icons/BookmarkAddIcon/BookmarkAddIcon.tsx +23 -0
- package/src/icons/CharacterIcon/CharacterIcon.tsx +25 -0
- package/src/icons/CheckboxIcon/CheckboxIcon.tsx +10 -13
- package/src/icons/CheckboxIcon/variables.dark.ts +7 -0
- package/src/icons/CheckboxIcon/variables.ts +19 -0
- package/src/icons/CheckmarkFilledIcon/CheckmarkFilledIcon.tsx +23 -0
- package/src/icons/CheckmarkIcon/CheckmarkIcon.tsx +23 -0
- package/src/icons/ChevronDownIcon/ChevronDownIcon.tsx +24 -0
- package/src/icons/ChevronLeftIcon/ChevronLeftIcon.tsx +23 -0
- package/src/icons/ChevronRightIcon/ChevronRightIcon.tsx +23 -0
- package/src/icons/ChevronSortIcon/ChevronSortIcon.tsx +36 -0
- package/src/icons/ChevronUpIcon/ChevronUpIcon.tsx +24 -0
- package/src/icons/CircleDashIcon/CircleDashIcon.tsx +32 -0
- package/src/icons/CleanIcon/CleanIcon.tsx +26 -0
- package/src/icons/CloseFilledIcon/CloseFilledIcon.tsx +22 -0
- package/src/icons/CloseIcon/CloseIcon.tsx +15 -4
- package/src/icons/CloudUploadIcon/CloudUploadIcon.tsx +24 -0
- package/src/icons/CodeIcon/CodeIcon.tsx +25 -0
- package/src/icons/ContrastIcon/ContrastIcon.tsx +23 -0
- package/src/icons/CookieIcon/CookieIcon.tsx +30 -0
- package/src/icons/CopyIcon/CopyIcon.tsx +14 -19
- package/src/icons/CopyLinkIcon/CopyLinkIcon.tsx +25 -0
- package/src/icons/DataFormatIcon/DataFormatIcon.tsx +27 -0
- package/src/icons/DatabaseIcon/DatabaseIcon.tsx +23 -0
- package/src/icons/DeselectIcon/DeselectIcon.tsx +14 -9
- package/src/icons/DocumentBlankIcon/DocumentBlankIcon.tsx +23 -0
- package/src/icons/DocumentIcon/DocumentIcon.tsx +32 -0
- package/src/icons/DocumentIcon/index.ts +1 -0
- package/src/icons/DownloadIcon/DownloadIcon.tsx +24 -0
- package/src/icons/EditIcon/EditIcon.tsx +16 -22
- package/src/icons/EmailIcon/EmailIcon.tsx +23 -0
- package/src/icons/ErrorIcon/ErrorIcon.tsx +15 -7
- package/src/icons/FaceDissatisfiedIcon/FaceDissatisfiedIcon.tsx +26 -0
- package/src/icons/FaceNeutralIcon/FaceNeutralIcon.tsx +26 -0
- package/src/icons/FaceSatisfiedIcon/FaceSatisfiedIcon.tsx +26 -0
- package/src/icons/FileIcon/FileIcon.tsx +14 -24
- package/src/icons/FileStorageIcon/FileStorageIcon.tsx +25 -0
- package/src/icons/FilterIcon/FilterIcon.tsx +26 -0
- package/src/icons/FolderAddIcon/FolderAddIcon.tsx +24 -0
- package/src/icons/FolderMoveToIcon/FolderMoveToIcon.tsx +24 -0
- package/src/icons/GlobalOutlinedIcon/GlobalOutlinedIcon.tsx +23 -0
- package/src/icons/GridIcon/GridIcon.tsx +38 -0
- package/src/icons/HorizontalViewIcon/HorizontalViewIcon.tsx +24 -0
- package/src/icons/IBMCloudHyperProtectCryptoServicesIcon/IBMCloudHyperProtectCryptoServicesIcon.tsx +26 -0
- package/src/icons/InformationFilledIcon/InformationFilledIcon.tsx +23 -0
- package/src/icons/InformationIcon/InformationIcon.tsx +25 -0
- package/src/icons/JsonIcon/JsonIcon.tsx +33 -0
- package/src/icons/LaunchIcon/LaunchIcon.tsx +24 -0
- package/src/icons/LinkIcon/LinkIcon.tsx +24 -0
- package/src/icons/LogoutIcon/LogoutIcon.tsx +16 -12
- package/src/icons/MaximizeIcon/MaximizeIcon.tsx +24 -0
- package/src/icons/MenuIcon/MenuIcon.tsx +27 -0
- package/src/icons/MinimizeIcon/MinimizeIcon.tsx +24 -0
- package/src/icons/MobileSidebarIcon/MobileSidebarIcon.tsx +34 -0
- package/src/icons/MoonIcon/MoonIcon.tsx +23 -0
- package/src/icons/OverflowMenuHorizontalIcon/OverflowMenuHorizontalIcon.tsx +25 -0
- package/src/icons/OverflowMenuVerticalIcon/OverflowMenuVerticalIcon.tsx +25 -0
- package/src/icons/PlusCustomIcon/PlusCustomIcon.tsx +31 -0
- package/src/icons/RadioCheckButtonIcon/RadioCheckButtonIcon.tsx +1 -0
- package/src/icons/RecentlyViewedIcon/RecentlyViewedIcon.tsx +24 -0
- package/src/icons/RenewIcon/RenewIcon.tsx +24 -0
- package/src/icons/RestartIcon/RestartIcon.tsx +23 -0
- package/src/icons/RocketIcon/RocketIcon.tsx +16 -24
- package/src/icons/SaveIcon/SaveIcon.tsx +23 -0
- package/src/icons/SearchIcon/SearchIcon.tsx +23 -0
- package/src/icons/SecurityIcon/SecurityIcon.tsx +24 -0
- package/src/icons/SelectIcon/SelectIcon.tsx +14 -8
- package/src/icons/SidePanelCloseIcon/SidePanelCloseIcon.tsx +23 -0
- package/src/icons/SidePanelOpenIcon/SidePanelOpenIcon.tsx +23 -0
- package/src/icons/Spinner/Spinner.tsx +19 -0
- package/src/icons/SpinnerIcon/SpinnerIcon.tsx +14 -9
- package/src/icons/StarFilledIcon/StarFilledIcon.tsx +23 -0
- package/src/icons/StarIcon/StarIcon.tsx +23 -0
- package/src/icons/SubtractIcon/SubtractIcon.tsx +30 -0
- package/src/icons/SunIcon/SunIcon.tsx +31 -0
- package/src/icons/TableBuiltIcon/TableBuiltIcon.tsx +23 -0
- package/src/icons/TimeIcon/TimeIcon.tsx +24 -0
- package/src/icons/TrashCanIcon/TrashCanIcon.tsx +27 -0
- package/src/icons/UserIcon/UserIcon.tsx +30 -0
- package/src/icons/ValueVariableIcon/ValueVariableIcon.tsx +24 -0
- package/src/icons/VerticalViewIcon/VerticalViewIcon.tsx +24 -0
- package/src/icons/ViewIcon/ViewIcon.tsx +24 -0
- package/src/icons/ViewOffIcon/ViewOffIcon.tsx +25 -0
- package/src/icons/WarningAltIcon/WarningAltIcon.tsx +25 -0
- package/src/icons/WarningFilledIcon/WarningFilledIcon.tsx +23 -0
- package/src/icons/WarningSquareIcon/WarningSquareIcon.tsx +25 -0
- package/src/icons/types.ts +7 -0
- package/src/index.ts +234 -10
- package/src/layouts/DocumentationLayout.tsx +96 -0
- package/src/layouts/Forbidden.tsx +10 -4
- package/src/layouts/NotFound.tsx +38 -22
- package/src/layouts/OIDCForbidden.tsx +4 -3
- package/src/layouts/RootLayout.tsx +4 -7
- package/src/layouts/ThreePanelLayout.tsx +55 -0
- package/src/markdoc/attributes/code-snippet-file.ts +9 -0
- package/src/markdoc/attributes/img-src.ts +9 -0
- package/src/markdoc/attributes/img-srcset.ts +9 -0
- package/src/markdoc/attributes/relative-path.ts +9 -0
- package/src/markdoc/attributes/svg-content.ts +9 -0
- package/src/markdoc/components/Admonition/Admonition.tsx +10 -0
- package/src/markdoc/components/CodeBlock/CodeBlock.tsx +10 -0
- package/src/markdoc/components/Heading/Heading.tsx +51 -0
- package/src/markdoc/components/HtmlBlock/HtmlBlock.tsx +5 -0
- package/src/markdoc/components/InlineSvg/InlineSvg.tsx +10 -0
- package/src/markdoc/components/MarkdocExample/MarkdocExample.tsx +36 -0
- package/src/markdoc/components/Mermaid/Mermaid.tsx +42 -0
- package/src/markdoc/components/Mermaid/variables.dark.ts +5 -0
- package/src/markdoc/components/Mermaid/variables.ts +13 -0
- package/src/markdoc/components/Tabs/Tab.tsx +97 -0
- package/src/markdoc/components/Tabs/Tabs.tsx +105 -0
- package/src/markdoc/components/Tabs/variables.ts +67 -0
- package/src/markdoc/components/default.ts +9 -0
- package/src/markdoc/default.ts +30 -0
- package/src/markdoc/tags/admonition.ts +12 -0
- package/src/markdoc/tags/code-snippet.ts +66 -0
- package/src/markdoc/tags/debug.ts +17 -0
- package/src/markdoc/tags/html.ts +22 -0
- package/src/markdoc/tags/inline-svg.ts +15 -0
- package/src/markdoc/tags/markdoc-example.ts +38 -0
- package/src/markdoc/tags/partial.ts +47 -0
- package/src/markdoc/tags/tab.ts +11 -0
- package/src/markdoc/tags/tabs.ts +26 -0
- package/src/markdoc/tags/types.ts +6 -0
- package/src/settings.yaml +1 -1
- package/lib/components/Breadcrumbs/index.d.ts +0 -3
- package/lib/components/Breadcrumbs/index.js +0 -20
- package/lib/components/Breadcrumbs/styledVariables.js +0 -20
- package/lib/components/Button/index.d.ts +0 -2
- package/lib/components/Button/index.js +0 -19
- package/lib/components/Button/styledVariables.js +0 -118
- package/lib/components/Cards/Card.d.ts +0 -9
- package/lib/components/Cards/Card.js +0 -38
- package/lib/components/Cards/CardsBlock.d.ts +0 -1
- package/lib/components/Cards/CardsBlock.js +0 -16
- package/lib/components/Cards/index.d.ts +0 -2
- package/lib/components/Cards/index.js +0 -19
- package/lib/components/Catalog/index.d.ts +0 -4
- package/lib/components/Catalog/index.js +0 -21
- package/lib/components/Catalog/styledVariables.js +0 -97
- package/lib/components/Catalog/useCatalog.d.ts +0 -4
- package/lib/components/Catalog/useCatalog.js +0 -317
- package/lib/components/CodeBlock/CodeBlockControlButton.d.ts +0 -4
- package/lib/components/CodeBlock/CodeBlockControlButton.js +0 -52
- package/lib/components/CodeBlock/index.d.ts +0 -5
- package/lib/components/CodeBlock/index.js +0 -22
- package/lib/components/CodeBlock/styledVariables.js +0 -94
- package/lib/components/ColorModeSwitcher/index.d.ts +0 -1
- package/lib/components/ColorModeSwitcher/index.js +0 -18
- package/lib/components/CopyButton/CopyButton.d.ts +0 -15
- package/lib/components/CopyButton/CopyButton.js +0 -53
- package/lib/components/CopyButton/index.d.ts +0 -1
- package/lib/components/CopyButton/index.js +0 -18
- package/lib/components/Dropdown/index.d.ts +0 -2
- package/lib/components/Dropdown/index.js +0 -19
- package/lib/components/Dropdown/styledVariables.js +0 -30
- package/lib/components/EditPageButton/EditPageButton.d.ts +0 -5
- package/lib/components/EditPageButton/EditPageButton.js +0 -43
- package/lib/components/EditPageButton/index.d.ts +0 -1
- package/lib/components/EditPageButton/index.js +0 -18
- package/lib/components/Feedback/Emotions.d.ts +0 -4
- package/lib/components/Feedback/Emotions.js +0 -57
- package/lib/components/Feedback/Thumbs.d.ts +0 -3
- package/lib/components/Feedback/Thumbs.js +0 -49
- package/lib/components/Feedback/index.d.ts +0 -10
- package/lib/components/Feedback/index.js +0 -37
- package/lib/components/Feedback/types.d.ts +0 -128
- package/lib/components/Feedback/useReportDialog.d.ts +0 -13
- package/lib/components/Feedback/useReportDialog.js +0 -46
- package/lib/components/Filter/FilterTag.d.ts +0 -7
- package/lib/components/Filter/FilterTag.js +0 -33
- package/lib/components/Filter/FilterTags.d.ts +0 -7
- package/lib/components/Filter/FilterTags.js +0 -29
- package/lib/components/Filter/index.d.ts +0 -6
- package/lib/components/Filter/index.js +0 -23
- package/lib/components/Filter/styledVariables.js +0 -111
- package/lib/components/Footer/CustomFooter.d.ts +0 -8
- package/lib/components/Footer/CustomFooter.js +0 -35
- package/lib/components/Footer/CustomFooterNavItem.d.ts +0 -8
- package/lib/components/Footer/CustomFooterNavItem.js +0 -33
- package/lib/components/Footer/FooterColumns.d.ts +0 -10
- package/lib/components/Footer/FooterColumns.js +0 -46
- package/lib/components/Footer/index.d.ts +0 -5
- package/lib/components/Footer/index.js +0 -22
- package/lib/components/Footer/styledVariables.js +0 -61
- package/lib/components/Image/index.d.ts +0 -1
- package/lib/components/Image/index.js +0 -18
- package/lib/components/JsonViewer/index.d.ts +0 -1
- package/lib/components/JsonViewer/index.js +0 -18
- package/lib/components/LastUpdated/index.d.ts +0 -2
- package/lib/components/LastUpdated/index.js +0 -19
- package/lib/components/LastUpdated/styledVariables.js +0 -11
- package/lib/components/Markdown/Admonition.d.ts +0 -12
- package/lib/components/Markdown/Admonition.js +0 -60
- package/lib/components/Markdown/ContainerWrapper.d.ts +0 -3
- package/lib/components/Markdown/ContainerWrapper.js +0 -27
- package/lib/components/Markdown/Details.d.ts +0 -7
- package/lib/components/Markdown/Details.js +0 -17
- package/lib/components/Markdown/Heading.js +0 -48
- package/lib/components/Markdown/MarkdownLayout.d.ts +0 -17
- package/lib/components/Markdown/MarkdownLayout.js +0 -47
- package/lib/components/Markdown/MarkdownWrapper.d.ts +0 -8
- package/lib/components/Markdown/MarkdownWrapper.js +0 -421
- package/lib/components/Markdown/Mermaid.js +0 -23
- package/lib/components/Markdown/PageWrapper.d.ts +0 -1
- package/lib/components/Markdown/PageWrapper.js +0 -16
- package/lib/components/Markdown/Sup.d.ts +0 -4
- package/lib/components/Markdown/Sup.js +0 -14
- package/lib/components/Markdown/index.d.ts +0 -10
- package/lib/components/Markdown/index.js +0 -27
- package/lib/components/Markdown/styledVariables.d.ts +0 -3
- package/lib/components/Markdown/styledVariables.js +0 -285
- package/lib/components/Menu/MenuGroup.d.ts +0 -10
- package/lib/components/Menu/MenuGroup.js +0 -107
- package/lib/components/Menu/MenuItemLabel.d.ts +0 -3
- package/lib/components/Menu/MenuItemLabel.js +0 -51
- package/lib/components/Menu/MenuItemSwitch.d.ts +0 -4
- package/lib/components/Menu/MenuItemSwitch.js +0 -40
- package/lib/components/Menu/MenuLink.d.ts +0 -2
- package/lib/components/Menu/MenuLink.js +0 -16
- package/lib/components/Menu/MenuLinkItem.d.ts +0 -3
- package/lib/components/Menu/MenuLinkItem.js +0 -16
- package/lib/components/Menu/MobileMenu.d.ts +0 -4
- package/lib/components/Menu/MobileMenu.js +0 -144
- package/lib/components/Menu/MobileMenuGroup.d.ts +0 -9
- package/lib/components/Menu/MobileMenuGroup.js +0 -61
- package/lib/components/Menu/constants.d.ts +0 -5
- package/lib/components/Menu/constants.js +0 -10
- package/lib/components/Menu/hooks/use-mobile-menu-items.d.ts +0 -2
- package/lib/components/Menu/hooks/use-mobile-menu-items.js +0 -80
- package/lib/components/Menu/hooks/use-mobile-menu-levels.d.ts +0 -5
- package/lib/components/Menu/hooks/use-mobile-menu-levels.js +0 -46
- package/lib/components/Menu/index.d.ts +0 -13
- package/lib/components/Menu/index.js +0 -30
- package/lib/components/Menu/styledVariables.d.ts +0 -2
- package/lib/components/Menu/styledVariables.js +0 -103
- package/lib/components/Menu/types.d.ts +0 -4
- package/lib/components/Menu/utils.d.ts +0 -8
- package/lib/components/Menu/utils.js +0 -76
- package/lib/components/Navbar/BurgerButton.d.ts +0 -5
- package/lib/components/Navbar/BurgerButton.js +0 -29
- package/lib/components/Navbar/index.d.ts +0 -5
- package/lib/components/Navbar/index.js +0 -22
- package/lib/components/Navbar/styledVariables.js +0 -42
- package/lib/components/NavbarLogo/NavbarLogo.d.ts +0 -10
- package/lib/components/NavbarLogo/NavbarLogo.js +0 -34
- package/lib/components/NavbarLogo/index.d.ts +0 -2
- package/lib/components/NavbarLogo/index.js +0 -19
- package/lib/components/NavbarLogo/styledVariables.js +0 -17
- package/lib/components/OpenApiDocs/ClearButton.d.ts +0 -8
- package/lib/components/OpenApiDocs/ClearButton.js +0 -48
- package/lib/components/OpenApiDocs/DevOnboardingTryItSecurity.d.ts +0 -3
- package/lib/components/OpenApiDocs/DevOnboardingTryItSecurity.js +0 -178
- package/lib/components/OpenApiDocs/Dropdown.d.ts +0 -28
- package/lib/components/OpenApiDocs/Dropdown.js +0 -150
- package/lib/components/OpenApiDocs/ScorecardBadges.d.ts +0 -11
- package/lib/components/OpenApiDocs/ScorecardBadges.js +0 -58
- package/lib/components/OpenApiDocs/TryItSecurityApps.d.ts +0 -7
- package/lib/components/OpenApiDocs/TryItSecurityApps.js +0 -15
- package/lib/components/OpenApiDocs/hooks/AfterOpenApiOperationSummary.d.ts +0 -1
- package/lib/components/OpenApiDocs/hooks/AfterOpenApiOperationSummary.js +0 -11
- package/lib/components/OpenApiDocs/hooks/BeforeOpenApiOperationSummary.d.ts +0 -1
- package/lib/components/OpenApiDocs/hooks/BeforeOpenApiOperationSummary.js +0 -11
- package/lib/components/OpenApiDocs/hooks/OpenApiTryItSecurityPanel.d.ts +0 -1
- package/lib/components/OpenApiDocs/hooks/OpenApiTryItSecurityPanel.js +0 -14
- package/lib/components/OpenApiDocs/index.d.ts +0 -10
- package/lib/components/OpenApiDocs/index.js +0 -27
- package/lib/components/PageNavigation/index.d.ts +0 -3
- package/lib/components/PageNavigation/index.js +0 -20
- package/lib/components/Panel/PanelComponent.d.ts +0 -13
- package/lib/components/Panel/PanelComponent.js +0 -65
- package/lib/components/Panel/index.d.ts +0 -6
- package/lib/components/Panel/index.js +0 -23
- package/lib/components/Panel/styledVariables.js +0 -482
- package/lib/components/Product/index.d.ts +0 -3
- package/lib/components/Product/index.js +0 -20
- package/lib/components/Product/styledVariables.d.ts +0 -2
- package/lib/components/Product/styledVariables.js +0 -42
- package/lib/components/Profile/AuthUserProfile.d.ts +0 -2
- package/lib/components/Profile/AuthUserProfile.js +0 -22
- package/lib/components/Profile/LoginLink.d.ts +0 -5
- package/lib/components/Profile/LoginLink.js +0 -37
- package/lib/components/Profile/MobileUserProfile.d.ts +0 -2
- package/lib/components/Profile/MobileUserProfile.js +0 -64
- package/lib/components/Profile/Profile.d.ts +0 -15
- package/lib/components/Profile/Profile.js +0 -86
- package/lib/components/Profile/UserProfile.d.ts +0 -3
- package/lib/components/Profile/UserProfile.js +0 -107
- package/lib/components/Profile/UserProfileData.d.ts +0 -9
- package/lib/components/Profile/UserProfileData.js +0 -35
- package/lib/components/Profile/index.d.ts +0 -10
- package/lib/components/Profile/index.js +0 -28
- package/lib/components/Profile/styledVariables.d.ts +0 -2
- package/lib/components/Profile/styledVariables.js +0 -55
- package/lib/components/Profile/types.d.ts +0 -12
- package/lib/components/Profile/types.js +0 -3
- package/lib/components/Scorecard/Card.d.ts +0 -5
- package/lib/components/Scorecard/Card.js +0 -37
- package/lib/components/Scorecard/Gauge.d.ts +0 -11
- package/lib/components/Scorecard/Gauge.js +0 -61
- package/lib/components/Scorecard/StatusByLevelWidget.d.ts +0 -12
- package/lib/components/Scorecard/StatusByLevelWidget.js +0 -83
- package/lib/components/Search/CancelSearch.d.ts +0 -5
- package/lib/components/Search/CancelSearch.js +0 -48
- package/lib/components/Search/ClearIcon.d.ts +0 -3
- package/lib/components/Search/ClearIcon.js +0 -26
- package/lib/components/Search/ClockBackwardsIcon.d.ts +0 -3
- package/lib/components/Search/ClockBackwardsIcon.js +0 -26
- package/lib/components/Search/Input.d.ts +0 -1
- package/lib/components/Search/Input.js +0 -27
- package/lib/components/Search/InputWrapper.d.ts +0 -11
- package/lib/components/Search/InputWrapper.js +0 -80
- package/lib/components/Search/MobileSearchTrigger.d.ts +0 -5
- package/lib/components/Search/MobileSearchTrigger.js +0 -52
- package/lib/components/Search/Popover.d.ts +0 -1
- package/lib/components/Search/Popover.js +0 -35
- package/lib/components/Search/ProductTag.d.ts +0 -6
- package/lib/components/Search/ProductTag.js +0 -61
- package/lib/components/Search/RecentSearches.d.ts +0 -5
- package/lib/components/Search/RecentSearches.js +0 -126
- package/lib/components/Search/SearchIcon.d.ts +0 -3
- package/lib/components/Search/SearchIcon.js +0 -26
- package/lib/components/Search/Shortcut.d.ts +0 -6
- package/lib/components/Search/Shortcut.js +0 -51
- package/lib/components/Search/ShortcutKey.d.ts +0 -8
- package/lib/components/Search/ShortcutKey.js +0 -26
- package/lib/components/Search/SuggestedPages.d.ts +0 -4
- package/lib/components/Search/SuggestedPages.js +0 -104
- package/lib/components/Search/index.d.ts +0 -19
- package/lib/components/Search/index.js +0 -36
- package/lib/components/Search/styledVariables.js +0 -98
- package/lib/components/Search/utils.d.ts +0 -2
- package/lib/components/Search/utils.js +0 -46
- package/lib/components/Select/index.d.ts +0 -2
- package/lib/components/Select/index.js +0 -19
- package/lib/components/Select/styledVariables.js +0 -34
- package/lib/components/Separator/Separator.d.ts +0 -3
- package/lib/components/Separator/Separator.js +0 -28
- package/lib/components/Separator/SeparatorItem.d.ts +0 -3
- package/lib/components/Separator/SeparatorItem.js +0 -31
- package/lib/components/Separator/SeparatorLine.d.ts +0 -1
- package/lib/components/Separator/SeparatorLine.js +0 -20
- package/lib/components/Separator/index.d.ts +0 -3
- package/lib/components/Separator/index.js +0 -20
- package/lib/components/Sidebar/ApiCallItem.d.ts +0 -7
- package/lib/components/Sidebar/ApiCallItem.js +0 -47
- package/lib/components/Sidebar/BackButton.d.ts +0 -7
- package/lib/components/Sidebar/BackButton.js +0 -42
- package/lib/components/Sidebar/Drilldown.d.ts +0 -9
- package/lib/components/Sidebar/Drilldown.js +0 -45
- package/lib/components/Sidebar/DrilldownMenu.d.ts +0 -3
- package/lib/components/Sidebar/DrilldownMenu.js +0 -75
- package/lib/components/Sidebar/DrilldownMenuItem.d.ts +0 -3
- package/lib/components/Sidebar/DrilldownMenuItem.js +0 -37
- package/lib/components/Sidebar/FooterWrapper.d.ts +0 -3
- package/lib/components/Sidebar/FooterWrapper.js +0 -22
- package/lib/components/Sidebar/HeaderWrapper.d.ts +0 -1
- package/lib/components/Sidebar/HeaderWrapper.js +0 -16
- package/lib/components/Sidebar/MobileSidebarButton.d.ts +0 -3
- package/lib/components/Sidebar/MobileSidebarButton.js +0 -46
- package/lib/components/Sidebar/MobileSidebarIcon.d.ts +0 -4
- package/lib/components/Sidebar/MobileSidebarIcon.js +0 -16
- package/lib/components/Sidebar/SidebarItemIcon.d.ts +0 -1
- package/lib/components/Sidebar/SidebarItemIcon.js +0 -16
- package/lib/components/Sidebar/SidebarLayout.d.ts +0 -18
- package/lib/components/Sidebar/SidebarLayout.js +0 -82
- package/lib/components/Sidebar/VersionPicker.d.ts +0 -11
- package/lib/components/Sidebar/VersionPicker.js +0 -117
- package/lib/components/Sidebar/index.d.ts +0 -15
- package/lib/components/Sidebar/index.js +0 -32
- package/lib/components/Sidebar/styledVariables.d.ts +0 -2
- package/lib/components/Sidebar/styledVariables.js +0 -222
- package/lib/components/Sidebar/types.d.ts +0 -48
- package/lib/components/Sidebar/types.js +0 -8
- package/lib/components/SidebarActions/CollapseSidebarButton.d.ts +0 -7
- package/lib/components/SidebarActions/CollapseSidebarButton.js +0 -53
- package/lib/components/SidebarActions/ToggleRightPanelButton.d.ts +0 -7
- package/lib/components/SidebarActions/ToggleRightPanelButton.js +0 -13
- package/lib/components/SidebarActions/index.d.ts +0 -4
- package/lib/components/SidebarActions/index.js +0 -24
- package/lib/components/SidebarLogo/index.d.ts +0 -1
- package/lib/components/SidebarLogo/index.js +0 -18
- package/lib/components/TableOfContent/index.d.ts +0 -2
- package/lib/components/TableOfContent/index.js +0 -19
- package/lib/components/TableOfContent/styledVariables.js +0 -47
- package/lib/components/TableOfContent/utils.d.ts +0 -4
- package/lib/components/TableOfContent/utils.js +0 -41
- package/lib/components/Tabs/Tab.d.ts +0 -9
- package/lib/components/Tabs/Tab.js +0 -58
- package/lib/components/Tabs/Tabs.d.ts +0 -12
- package/lib/components/Tabs/Tabs.js +0 -89
- package/lib/components/Tabs/index.d.ts +0 -2
- package/lib/components/Tabs/index.js +0 -19
- package/lib/components/Tag/index.d.ts +0 -2
- package/lib/components/Tag/index.js +0 -19
- package/lib/components/Tag/styledVariables.js +0 -148
- package/lib/components/Tiles/ThinTile.d.ts +0 -5
- package/lib/components/Tiles/ThinTile.js +0 -126
- package/lib/components/Tiles/TileHeader.d.ts +0 -3
- package/lib/components/Tiles/TileHeader.js +0 -20
- package/lib/components/Tiles/TileText.d.ts +0 -3
- package/lib/components/Tiles/TileText.js +0 -19
- package/lib/components/Tiles/WideTile.d.ts +0 -7
- package/lib/components/Tiles/WideTile.js +0 -116
- package/lib/components/Tiles/index.d.ts +0 -4
- package/lib/components/Tiles/index.js +0 -21
- package/lib/components/Tiles/types.d.ts +0 -17
- package/lib/components/Tiles/types.js +0 -3
- package/lib/components/Tooltip/index.d.ts +0 -2
- package/lib/components/Tooltip/index.js +0 -19
- package/lib/components/Tooltip/styledVariables.js +0 -21
- package/lib/components/Typography/index.d.ts +0 -7
- package/lib/components/Typography/index.js +0 -24
- package/lib/components/index.d.ts +0 -29
- package/lib/components/index.js +0 -46
- package/lib/globalStyle.js +0 -1000
- package/lib/hooks/__tests__/mocks/MockIntersectionObserver.js +0 -79
- package/lib/hooks/index.d.ts +0 -9
- package/lib/hooks/index.js +0 -26
- package/lib/hooks/useActiveHeading.js +0 -80
- package/lib/hooks/useActiveSectionId.js +0 -44
- package/lib/hooks/useControl.js +0 -16
- package/lib/hooks/useDialogHotKeys.js +0 -45
- package/lib/hooks/useFullHeight.js +0 -48
- package/lib/hooks/useMobileMenu.d.ts +0 -2
- package/lib/hooks/useMobileMenu.js +0 -18
- package/lib/hooks/useModalScrollLock.d.ts +0 -1
- package/lib/hooks/useModalScrollLock.js +0 -16
- package/lib/hooks/useMount.js +0 -12
- package/lib/hooks/useNavbarHeight.js +0 -21
- package/lib/hooks/useOutsideClick.d.ts +0 -2
- package/lib/hooks/useOutsideClick.js +0 -22
- package/lib/hooks/useThemeConfig.d.ts +0 -4
- package/lib/hooks/useThemeConfig.js +0 -17
- package/lib/hooks/useUnmount.js +0 -14
- package/lib/i18n/LanguagePicker.d.ts +0 -9
- package/lib/i18n/LanguagePicker.js +0 -99
- package/lib/i18n/index.d.ts +0 -2
- package/lib/i18n/index.js +0 -21
- package/lib/i18n/styledVariables.js +0 -40
- package/lib/icons/AlertIcon/AlertIcon.d.ts +0 -10
- package/lib/icons/AlertIcon/AlertIcon.js +0 -51
- package/lib/icons/AlertIcon/index.d.ts +0 -2
- package/lib/icons/AlertIcon/index.js +0 -6
- package/lib/icons/AnchorIcon/AnchorIcon.d.ts +0 -7
- package/lib/icons/AnchorIcon/AnchorIcon.js +0 -23
- package/lib/icons/AnchorIcon/index.d.ts +0 -2
- package/lib/icons/AnchorIcon/index.js +0 -6
- package/lib/icons/ArrowIcon/ArrowIcon.d.ts +0 -8
- package/lib/icons/ArrowIcon/ArrowIcon.js +0 -60
- package/lib/icons/ArrowIcon/index.d.ts +0 -2
- package/lib/icons/ArrowIcon/index.js +0 -6
- package/lib/icons/BurgerIcon/BurgerIcon.d.ts +0 -5
- package/lib/icons/BurgerIcon/BurgerIcon.js +0 -15
- package/lib/icons/BurgerIcon/index.d.ts +0 -1
- package/lib/icons/BurgerIcon/index.js +0 -6
- package/lib/icons/CheckboxIcon/index.d.ts +0 -1
- package/lib/icons/CheckboxIcon/index.js +0 -6
- package/lib/icons/CloseIcon/index.d.ts +0 -1
- package/lib/icons/CloseIcon/index.js +0 -6
- package/lib/icons/CollapseIcon/CollapseIcon.d.ts +0 -7
- package/lib/icons/CollapseIcon/CollapseIcon.js +0 -22
- package/lib/icons/CollapseIcon/index.d.ts +0 -1
- package/lib/icons/CollapseIcon/index.js +0 -18
- package/lib/icons/ColorModeIcon/ColorModeIcon.js +0 -33
- package/lib/icons/ColorModeIcon/index.d.ts +0 -2
- package/lib/icons/ColorModeIcon/index.js +0 -6
- package/lib/icons/CopyIcon/index.d.ts +0 -1
- package/lib/icons/CopyIcon/index.js +0 -18
- package/lib/icons/DeselectIcon/index.d.ts +0 -1
- package/lib/icons/DeselectIcon/index.js +0 -18
- package/lib/icons/DissatisfiedIcon/DissatisfiedIcon.d.ts +0 -4
- package/lib/icons/DissatisfiedIcon/DissatisfiedIcon.js +0 -18
- package/lib/icons/DissatisfiedIcon/index.d.ts +0 -1
- package/lib/icons/DissatisfiedIcon/index.js +0 -18
- package/lib/icons/EditIcon/index.d.ts +0 -1
- package/lib/icons/EditIcon/index.js +0 -18
- package/lib/icons/ErrorIcon/index.d.ts +0 -1
- package/lib/icons/ErrorIcon/index.js +0 -18
- package/lib/icons/ExpandIcon/ExpandIcon.d.ts +0 -6
- package/lib/icons/ExpandIcon/ExpandIcon.js +0 -22
- package/lib/icons/ExpandIcon/index.d.ts +0 -1
- package/lib/icons/ExpandIcon/index.js +0 -6
- package/lib/icons/ExternalIcon/ExternalIcon.d.ts +0 -5
- package/lib/icons/ExternalIcon/ExternalIcon.js +0 -22
- package/lib/icons/ExternalIcon/index.d.ts +0 -1
- package/lib/icons/ExternalIcon/index.js +0 -18
- package/lib/icons/FileIcon/index.d.ts +0 -1
- package/lib/icons/FileIcon/index.js +0 -18
- package/lib/icons/LanguageIcon/LanguageIcon.d.ts +0 -4
- package/lib/icons/LanguageIcon/LanguageIcon.js +0 -14
- package/lib/icons/LanguageIcon/index.d.ts +0 -1
- package/lib/icons/LanguageIcon/index.js +0 -18
- package/lib/icons/LogoutIcon/index.d.ts +0 -1
- package/lib/icons/LogoutIcon/index.js +0 -6
- package/lib/icons/NeutralIcon/NeutralIcon.d.ts +0 -4
- package/lib/icons/NeutralIcon/NeutralIcon.js +0 -18
- package/lib/icons/NeutralIcon/index.d.ts +0 -1
- package/lib/icons/NeutralIcon/index.js +0 -18
- package/lib/icons/PlusIcon/PlusIcon.d.ts +0 -5
- package/lib/icons/PlusIcon/PlusIcon.js +0 -16
- package/lib/icons/PlusIcon/index.d.ts +0 -1
- package/lib/icons/PlusIcon/index.js +0 -18
- package/lib/icons/PointingArrowIcon/PointingArrowIcon.d.ts +0 -4
- package/lib/icons/PointingArrowIcon/PointingArrowIcon.js +0 -15
- package/lib/icons/PointingArrowIcon/index.d.ts +0 -1
- package/lib/icons/PointingArrowIcon/index.js +0 -18
- package/lib/icons/RadioCheckButtonIcon/index.d.ts +0 -1
- package/lib/icons/RadioCheckButtonIcon/index.js +0 -18
- package/lib/icons/ReportIcon/ReportIcon.d.ts +0 -6
- package/lib/icons/ReportIcon/ReportIcon.js +0 -19
- package/lib/icons/ReportIcon/index.d.ts +0 -1
- package/lib/icons/ReportIcon/index.js +0 -18
- package/lib/icons/RocketIcon/index.d.ts +0 -1
- package/lib/icons/RocketIcon/index.js +0 -18
- package/lib/icons/SatisfiedIcon/SatisfiedIcon.d.ts +0 -4
- package/lib/icons/SatisfiedIcon/SatisfiedIcon.js +0 -18
- package/lib/icons/SatisfiedIcon/index.d.ts +0 -1
- package/lib/icons/SatisfiedIcon/index.js +0 -18
- package/lib/icons/SelectIcon/index.d.ts +0 -1
- package/lib/icons/SelectIcon/index.js +0 -18
- package/lib/icons/ShelfIcon/ShelfIcon.d.ts +0 -12
- package/lib/icons/ShelfIcon/ShelfIcon.js +0 -52
- package/lib/icons/ShelfIcon/index.d.ts +0 -2
- package/lib/icons/ShelfIcon/index.js +0 -6
- package/lib/icons/SpinnerIcon/index.d.ts +0 -1
- package/lib/icons/SpinnerIcon/index.js +0 -6
- package/lib/icons/ThumbDownIcon/index.d.ts +0 -1
- package/lib/icons/ThumbDownIcon/index.js +0 -18
- package/lib/icons/ThumbUpIcon/index.d.ts +0 -1
- package/lib/icons/ThumbUpIcon/index.js +0 -18
- package/lib/icons/index.d.ts +0 -26
- package/lib/icons/index.js +0 -43
- package/lib/layouts/index.d.ts +0 -5
- package/lib/layouts/index.js +0 -22
- package/lib/mocks/Feedback/useSubmitFeedback.d.ts +0 -1
- package/lib/mocks/Feedback/useSubmitFeedback.js +0 -18
- package/lib/mocks/Link.d.ts +0 -2
- package/lib/mocks/Link.js +0 -27
- package/lib/mocks/Profile/useProfileProps.d.ts +0 -1
- package/lib/mocks/Profile/useProfileProps.js +0 -17
- package/lib/mocks/Sidebar/getMenuType.d.ts +0 -2
- package/lib/mocks/Sidebar/getMenuType.js +0 -10
- package/lib/mocks/Sidebar/types.d.ts +0 -11
- package/lib/mocks/Sidebar/types.js +0 -11
- package/lib/mocks/Sidebar/useBreadcrumbs.d.ts +0 -4
- package/lib/mocks/Sidebar/useBreadcrumbs.js +0 -8
- package/lib/mocks/Sidebar/useDrilldown.d.ts +0 -8
- package/lib/mocks/Sidebar/useDrilldown.js +0 -19
- package/lib/mocks/Sidebar/useMenuGroup.d.ts +0 -6
- package/lib/mocks/Sidebar/useMenuGroup.js +0 -17
- package/lib/mocks/Sidebar/useSidebarItems.d.ts +0 -3
- package/lib/mocks/Sidebar/useSidebarItems.js +0 -8
- package/lib/mocks/constants/index.d.ts +0 -2
- package/lib/mocks/constants/index.js +0 -6
- package/lib/mocks/hooks/index.d.ts +0 -35
- package/lib/mocks/hooks/index.js +0 -109
- package/lib/mocks/hooks/usePageData.d.ts +0 -6
- package/lib/mocks/hooks/usePageData.js +0 -11
- package/lib/mocks/media-css.d.ts +0 -5
- package/lib/mocks/media-css.js +0 -5
- package/lib/mocks/search.d.ts +0 -32
- package/lib/mocks/search.js +0 -46
- package/lib/mocks/telemetry.d.ts +0 -2
- package/lib/mocks/telemetry.js +0 -7
- package/lib/mocks/types/index.d.ts +0 -1
- package/lib/mocks/types/index.js +0 -3
- package/lib/mocks/types.d.ts +0 -3
- package/lib/mocks/types.js +0 -4
- package/lib/mocks/useGlobalData.d.ts +0 -1
- package/lib/mocks/useGlobalData.js +0 -8
- package/lib/mocks/usePreloadHistory.d.ts +0 -3
- package/lib/mocks/usePreloadHistory.js +0 -13
- package/lib/mocks/utils.d.ts +0 -7
- package/lib/mocks/utils.js +0 -22
- package/lib/types/config.d.ts +0 -5
- package/lib/types/config.js +0 -3
- package/lib/types/portal/index.d.ts +0 -3
- package/lib/types/portal/index.js +0 -19
- package/lib/types/portal/src/shared/constants.d.ts +0 -21
- package/lib/types/portal/src/shared/constants.js +0 -26
- package/lib/types/portal/src/shared/types/activeItem.d.ts +0 -3
- package/lib/types/portal/src/shared/types/activeItem.js +0 -3
- package/lib/types/portal/src/shared/types/catalog.d.ts +0 -43
- package/lib/types/portal/src/shared/types/feedback.d.ts +0 -13
- package/lib/types/portal/src/shared/types/nav.d.ts +0 -173
- package/lib/types/portal/src/shared/types/nav.js +0 -8
- package/lib/types/portal/src/shared/types/searchDocument.d.ts +0 -21
- package/lib/types/portal/src/shared/types/searchDocument.js +0 -5
- package/lib/ui/ArrowBack.d.ts +0 -5
- package/lib/ui/ArrowBack.js +0 -21
- package/lib/ui/Background.d.ts +0 -7
- package/lib/ui/Background.js +0 -21
- package/lib/ui/Box.d.ts +0 -6
- package/lib/ui/Box.js +0 -22
- package/lib/ui/Burger.d.ts +0 -8
- package/lib/ui/Burger.js +0 -32
- package/lib/ui/Checkbox.d.ts +0 -1
- package/lib/ui/Checkbox.js +0 -70
- package/lib/ui/Dropdown.d.ts +0 -8
- package/lib/ui/Dropdown.js +0 -114
- package/lib/ui/Flex.d.ts +0 -10
- package/lib/ui/Flex.js +0 -21
- package/lib/ui/Highlight.d.ts +0 -5
- package/lib/ui/Highlight.js +0 -63
- package/lib/ui/Jumbotron.d.ts +0 -18
- package/lib/ui/Jumbotron.js +0 -51
- package/lib/ui/darkColors.js +0 -251
- package/lib/ui/index.d.ts +0 -9
- package/lib/ui/index.js +0 -27
- package/lib/utils/ClipboardService.js +0 -33
- package/lib/utils/getNavbarElement.js +0 -15
- package/lib/utils/index.d.ts +0 -13
- package/lib/utils/index.js +0 -30
- package/lib/utils/isUrl.js +0 -37
- package/lib/utils/jsUtils.d.ts +0 -4
- package/lib/utils/jsUtils.js +0 -21
- package/lib/utils/jsonToHtml.d.ts +0 -4
- package/lib/utils/jsonToHtml.js +0 -180
- package/lib/utils/media-css.d.ts +0 -12
- package/lib/utils/media-css.js +0 -13
- package/lib/utils/replaceHashInColor.js +0 -8
- package/lib/utils/urls.d.ts +0 -11
- package/lib/utils/urls.js +0 -55
- package/src/components/Breadcrumbs/index.ts +0 -3
- package/src/components/Breadcrumbs/styledVariables.ts +0 -17
- package/src/components/Button/index.ts +0 -2
- package/src/components/Button/styledVariables.ts +0 -115
- package/src/components/Cards/Card.tsx +0 -54
- package/src/components/Cards/CardsBlock.tsx +0 -10
- package/src/components/Cards/index.ts +0 -2
- package/src/components/Catalog/index.ts +0 -4
- package/src/components/Catalog/styledVariables.ts +0 -94
- package/src/components/Catalog/useCatalog.ts +0 -373
- package/src/components/CodeBlock/CodeBlockControlButton.tsx +0 -28
- package/src/components/CodeBlock/index.ts +0 -5
- package/src/components/CodeBlock/styledVariables.ts +0 -91
- package/src/components/ColorModeSwitcher/index.ts +0 -1
- package/src/components/CopyButton/CopyButton.tsx +0 -79
- package/src/components/CopyButton/index.ts +0 -1
- package/src/components/Dropdown/index.ts +0 -2
- package/src/components/Dropdown/styledVariables.ts +0 -27
- package/src/components/EditPageButton/EditPageButton.tsx +0 -54
- package/src/components/EditPageButton/index.ts +0 -1
- package/src/components/Feedback/Emotions.tsx +0 -38
- package/src/components/Feedback/Thumbs.tsx +0 -27
- package/src/components/Feedback/index.ts +0 -10
- package/src/components/Feedback/types.ts +0 -115
- package/src/components/Feedback/useReportDialog.ts +0 -57
- package/src/components/Filter/FilterTag.tsx +0 -37
- package/src/components/Filter/FilterTags.tsx +0 -39
- package/src/components/Filter/index.ts +0 -6
- package/src/components/Filter/styledVariables.ts +0 -108
- package/src/components/Footer/CustomFooter.tsx +0 -46
- package/src/components/Footer/CustomFooterNavItem.tsx +0 -41
- package/src/components/Footer/FooterColumns.tsx +0 -56
- package/src/components/Footer/index.ts +0 -5
- package/src/components/Footer/styledVariables.ts +0 -58
- package/src/components/Image/index.ts +0 -1
- package/src/components/JsonViewer/index.ts +0 -1
- package/src/components/LastUpdated/index.ts +0 -2
- package/src/components/LastUpdated/styledVariables.ts +0 -8
- package/src/components/Markdown/Admonition.tsx +0 -86
- package/src/components/Markdown/ContainerWrapper.tsx +0 -21
- package/src/components/Markdown/Details.tsx +0 -24
- package/src/components/Markdown/Heading.tsx +0 -47
- package/src/components/Markdown/MarkdownLayout.tsx +0 -75
- package/src/components/Markdown/MarkdownWrapper.tsx +0 -404
- package/src/components/Markdown/Mermaid.tsx +0 -38
- package/src/components/Markdown/PageWrapper.tsx +0 -10
- package/src/components/Markdown/Sup.tsx +0 -17
- package/src/components/Markdown/index.ts +0 -10
- package/src/components/Markdown/styledVariables.ts +0 -284
- package/src/components/Menu/MenuGroup.tsx +0 -122
- package/src/components/Menu/MenuItemLabel.tsx +0 -46
- package/src/components/Menu/MenuItemSwitch.tsx +0 -61
- package/src/components/Menu/MenuLink.tsx +0 -11
- package/src/components/Menu/MenuLinkItem.tsx +0 -30
- package/src/components/Menu/MobileMenu.tsx +0 -151
- package/src/components/Menu/MobileMenuGroup.tsx +0 -93
- package/src/components/Menu/constants.ts +0 -5
- package/src/components/Menu/hooks/use-mobile-menu-items.ts +0 -96
- package/src/components/Menu/hooks/use-mobile-menu-levels.ts +0 -50
- package/src/components/Menu/index.ts +0 -13
- package/src/components/Menu/styledVariables.ts +0 -101
- package/src/components/Menu/types.ts +0 -4
- package/src/components/Menu/utils.ts +0 -110
- package/src/components/Navbar/BurgerButton.tsx +0 -34
- package/src/components/Navbar/index.ts +0 -5
- package/src/components/Navbar/styledVariables.ts +0 -39
- package/src/components/NavbarLogo/NavbarLogo.tsx +0 -48
- package/src/components/NavbarLogo/index.ts +0 -2
- package/src/components/NavbarLogo/styledVariables.ts +0 -14
- package/src/components/OpenApiDocs/ClearButton.tsx +0 -32
- package/src/components/OpenApiDocs/DevOnboardingTryItSecurity.tsx +0 -176
- package/src/components/OpenApiDocs/Dropdown.tsx +0 -202
- package/src/components/OpenApiDocs/ScorecardBadges.tsx +0 -83
- package/src/components/OpenApiDocs/TryItSecurityApps.tsx +0 -17
- package/src/components/OpenApiDocs/hooks/AfterOpenApiOperationSummary.tsx +0 -9
- package/src/components/OpenApiDocs/hooks/BeforeOpenApiOperationSummary.tsx +0 -9
- package/src/components/OpenApiDocs/hooks/OpenApiTryItSecurityPanel.tsx +0 -12
- package/src/components/OpenApiDocs/index.ts +0 -10
- package/src/components/PageNavigation/index.ts +0 -3
- package/src/components/Panel/Panel.ts +0 -34
- package/src/components/Panel/PanelComponent.tsx +0 -79
- package/src/components/Panel/index.ts +0 -6
- package/src/components/Panel/styledVariables.ts +0 -480
- package/src/components/Product/index.ts +0 -3
- package/src/components/Product/styledVariables.ts +0 -40
- package/src/components/Profile/AuthUserProfile.tsx +0 -25
- package/src/components/Profile/LoginLink.tsx +0 -46
- package/src/components/Profile/MobileUserProfile.tsx +0 -79
- package/src/components/Profile/Profile.tsx +0 -85
- package/src/components/Profile/UserProfile.tsx +0 -118
- package/src/components/Profile/UserProfileData.tsx +0 -40
- package/src/components/Profile/index.ts +0 -10
- package/src/components/Profile/styledVariables.ts +0 -53
- package/src/components/Profile/types.ts +0 -12
- package/src/components/Scorecard/Card.tsx +0 -33
- package/src/components/Scorecard/Gauge.tsx +0 -52
- package/src/components/Scorecard/StatusByLevelWidget.tsx +0 -71
- package/src/components/Search/CancelSearch.tsx +0 -32
- package/src/components/Search/ClearIcon.tsx +0 -34
- package/src/components/Search/ClockBackwardsIcon.tsx +0 -26
- package/src/components/Search/Input.tsx +0 -21
- package/src/components/Search/InputWrapper.tsx +0 -89
- package/src/components/Search/MobileSearchTrigger.tsx +0 -38
- package/src/components/Search/Popover.tsx +0 -29
- package/src/components/Search/ProductTag.tsx +0 -46
- package/src/components/Search/RecentSearches.tsx +0 -130
- package/src/components/Search/SearchIcon.tsx +0 -39
- package/src/components/Search/Shortcut.tsx +0 -34
- package/src/components/Search/ShortcutKey.tsx +0 -27
- package/src/components/Search/SuggestedPages.tsx +0 -96
- package/src/components/Search/index.ts +0 -19
- package/src/components/Search/styledVariables.ts +0 -95
- package/src/components/Search/utils.tsx +0 -20
- package/src/components/Select/index.ts +0 -2
- package/src/components/Select/styledVariables.ts +0 -31
- package/src/components/Separator/Separator.tsx +0 -34
- package/src/components/Separator/SeparatorItem.tsx +0 -28
- package/src/components/Separator/SeparatorLine.tsx +0 -14
- package/src/components/Separator/index.ts +0 -3
- package/src/components/Sidebar/ApiCallItem.tsx +0 -53
- package/src/components/Sidebar/BackButton.tsx +0 -50
- package/src/components/Sidebar/Drilldown.tsx +0 -49
- package/src/components/Sidebar/DrilldownMenu.tsx +0 -65
- package/src/components/Sidebar/DrilldownMenuItem.tsx +0 -41
- package/src/components/Sidebar/FooterWrapper.tsx +0 -16
- package/src/components/Sidebar/HeaderWrapper.tsx +0 -10
- package/src/components/Sidebar/MobileSidebarButton.tsx +0 -41
- package/src/components/Sidebar/MobileSidebarIcon.tsx +0 -18
- package/src/components/Sidebar/SidebarItemIcon.tsx +0 -10
- package/src/components/Sidebar/SidebarLayout.tsx +0 -109
- package/src/components/Sidebar/VersionPicker.tsx +0 -112
- package/src/components/Sidebar/index.ts +0 -15
- package/src/components/Sidebar/styledVariables.ts +0 -220
- package/src/components/Sidebar/types.ts +0 -52
- package/src/components/SidebarActions/CollapseSidebarButton.tsx +0 -45
- package/src/components/SidebarActions/ToggleRightPanelButton.tsx +0 -25
- package/src/components/SidebarActions/index.tsx +0 -4
- package/src/components/SidebarLogo/index.ts +0 -1
- package/src/components/TableOfContent/index.ts +0 -2
- package/src/components/TableOfContent/styledVariables.ts +0 -44
- package/src/components/TableOfContent/utils.ts +0 -42
- package/src/components/Tabs/Tab.tsx +0 -69
- package/src/components/Tabs/Tabs.tsx +0 -79
- package/src/components/Tabs/index.ts +0 -2
- package/src/components/Tag/index.ts +0 -2
- package/src/components/Tag/styledVariables.ts +0 -145
- package/src/components/Tiles/ThinTile.tsx +0 -136
- package/src/components/Tiles/TileHeader.ts +0 -14
- package/src/components/Tiles/TileText.tsx +0 -13
- package/src/components/Tiles/WideTile.tsx +0 -140
- package/src/components/Tiles/index.ts +0 -4
- package/src/components/Tiles/types.ts +0 -19
- package/src/components/Tooltip/index.ts +0 -2
- package/src/components/Tooltip/styledVariables.ts +0 -18
- package/src/components/Typography/index.ts +0 -7
- package/src/components/index.ts +0 -29
- package/src/globalStyle.ts +0 -1016
- package/src/hooks/index.ts +0 -9
- package/src/hooks/useActiveSectionId.ts +0 -54
- package/src/hooks/useMobileMenu.ts +0 -16
- package/src/hooks/useModalScrollLock.ts +0 -12
- package/src/hooks/useNavbarHeight.ts +0 -25
- package/src/hooks/useOutsideClick.ts +0 -23
- package/src/hooks/useThemeConfig.ts +0 -26
- package/src/i18n/LanguagePicker.tsx +0 -120
- package/src/i18n/index.ts +0 -2
- package/src/i18n/styledVariables.ts +0 -37
- package/src/icons/AlertIcon/AlertIcon.tsx +0 -111
- package/src/icons/AlertIcon/index.ts +0 -2
- package/src/icons/AnchorIcon/AnchorIcon.tsx +0 -36
- package/src/icons/AnchorIcon/index.ts +0 -2
- package/src/icons/ArrowIcon/ArrowIcon.tsx +0 -61
- package/src/icons/ArrowIcon/index.ts +0 -2
- package/src/icons/BurgerIcon/BurgerIcon.tsx +0 -12
- package/src/icons/BurgerIcon/index.ts +0 -1
- package/src/icons/CheckboxIcon/index.ts +0 -1
- package/src/icons/CloseIcon/index.ts +0 -1
- package/src/icons/CollapseIcon/CollapseIcon.tsx +0 -40
- package/src/icons/CollapseIcon/index.tsx +0 -1
- package/src/icons/ColorModeIcon/ColorModeIcon.tsx +0 -57
- package/src/icons/ColorModeIcon/index.ts +0 -2
- package/src/icons/CopyIcon/index.ts +0 -1
- package/src/icons/DeselectIcon/index.ts +0 -1
- package/src/icons/DissatisfiedIcon/DissatisfiedIcon.tsx +0 -28
- package/src/icons/DissatisfiedIcon/index.ts +0 -1
- package/src/icons/EditIcon/index.ts +0 -1
- package/src/icons/ErrorIcon/index.ts +0 -1
- package/src/icons/ExpandIcon/ExpandIcon.tsx +0 -39
- package/src/icons/ExpandIcon/index.ts +0 -1
- package/src/icons/ExternalIcon/ExternalIcon.tsx +0 -44
- package/src/icons/ExternalIcon/index.ts +0 -1
- package/src/icons/FileIcon/index.ts +0 -1
- package/src/icons/LanguageIcon/LanguageIcon.tsx +0 -15
- package/src/icons/LanguageIcon/index.ts +0 -1
- package/src/icons/LogoutIcon/index.ts +0 -1
- package/src/icons/NeutralIcon/NeutralIcon.tsx +0 -25
- package/src/icons/NeutralIcon/index.ts +0 -1
- package/src/icons/PlusIcon/PlusIcon.tsx +0 -25
- package/src/icons/PlusIcon/index.ts +0 -1
- package/src/icons/PointingArrowIcon/PointingArrowIcon.tsx +0 -16
- package/src/icons/PointingArrowIcon/index.ts +0 -1
- package/src/icons/RadioCheckButtonIcon/index.ts +0 -1
- package/src/icons/ReportIcon/ReportIcon.tsx +0 -36
- package/src/icons/ReportIcon/index.ts +0 -1
- package/src/icons/RocketIcon/index.tsx +0 -1
- package/src/icons/SatisfiedIcon/SatisfiedIcon.tsx +0 -41
- package/src/icons/SatisfiedIcon/index.ts +0 -1
- package/src/icons/SelectIcon/index.ts +0 -1
- package/src/icons/ShelfIcon/ShelfIcon.tsx +0 -47
- package/src/icons/ShelfIcon/index.ts +0 -2
- package/src/icons/SpinnerIcon/index.ts +0 -1
- package/src/icons/ThumbDownIcon/index.ts +0 -1
- package/src/icons/ThumbUpIcon/index.ts +0 -1
- package/src/icons/index.ts +0 -26
- package/src/layouts/index.ts +0 -5
- package/src/mocks/Feedback/useSubmitFeedback.tsx +0 -4
- package/src/mocks/Link.tsx +0 -17
- package/src/mocks/Profile/useProfileProps.tsx +0 -12
- package/src/mocks/Sidebar/getMenuType.ts +0 -6
- package/src/mocks/Sidebar/types.ts +0 -15
- package/src/mocks/Sidebar/useBreadcrumbs.ts +0 -3
- package/src/mocks/Sidebar/useDrilldown.tsx +0 -12
- package/src/mocks/Sidebar/useMenuGroup.tsx +0 -10
- package/src/mocks/Sidebar/useSidebarItems.tsx +0 -7
- package/src/mocks/constants/index.ts +0 -2
- package/src/mocks/hooks/index.ts +0 -118
- package/src/mocks/hooks/usePageData.ts +0 -12
- package/src/mocks/media-css.ts +0 -1
- package/src/mocks/search.ts +0 -66
- package/src/mocks/telemetry.ts +0 -5
- package/src/mocks/types/index.ts +0 -1
- package/src/mocks/types.ts +0 -5
- package/src/mocks/useGlobalData.tsx +0 -3
- package/src/mocks/usePreloadHistory.ts +0 -9
- package/src/mocks/utils.ts +0 -22
- package/src/types/config.ts +0 -5
- package/src/types/portal/index.ts +0 -3
- package/src/types/portal/src/shared/constants.ts +0 -21
- package/src/types/portal/src/shared/types/activeItem.ts +0 -1
- package/src/types/portal/src/shared/types/catalog.ts +0 -44
- package/src/types/portal/src/shared/types/feedback.ts +0 -22
- package/src/types/portal/src/shared/types/i18n.d.ts +0 -5
- package/src/types/portal/src/shared/types/markdown.ts +0 -6
- package/src/types/portal/src/shared/types/nav.ts +0 -191
- package/src/types/portal/src/shared/types/searchDocument.ts +0 -23
- package/src/ui/ArrowBack.tsx +0 -33
- package/src/ui/Background.tsx +0 -16
- package/src/ui/Box.tsx +0 -37
- package/src/ui/Burger.tsx +0 -39
- package/src/ui/Checkbox.tsx +0 -64
- package/src/ui/Dropdown.tsx +0 -131
- package/src/ui/Flex.tsx +0 -24
- package/src/ui/Highlight.tsx +0 -48
- package/src/ui/Jumbotron.tsx +0 -57
- package/src/ui/darkColors.tsx +0 -248
- package/src/ui/index.tsx +0 -12
- package/src/utils/index.ts +0 -13
- package/src/utils/jsUtils.ts +0 -18
- package/src/utils/jsonToHtml.ts +0 -234
- package/src/utils/media-css.ts +0 -16
- package/src/utils/urls.ts +0 -54
- /package/lib/components/Breadcrumbs/{styledVariables.d.ts → variables.d.ts} +0 -0
- /package/lib/components/Button/{styledVariables.d.ts → variables.d.ts} +0 -0
- /package/lib/components/Catalog/{styledVariables.d.ts → variables.d.ts} +0 -0
- /package/lib/components/CodeBlock/{styledVariables.d.ts → variables.d.ts} +0 -0
- /package/lib/{icons/ColorModeIcon → components/ColorModeSwitcher}/ColorModeIcon.d.ts +0 -0
- /package/lib/components/Dropdown/{styledVariables.d.ts → variables.d.ts} +0 -0
- /package/lib/components/Filter/{styledVariables.d.ts → variables.d.ts} +0 -0
- /package/lib/components/Footer/{styledVariables.d.ts → variables.d.ts} +0 -0
- /package/lib/{i18n/styledVariables.d.ts → components/LanguagePicker/variables.d.ts} +0 -0
- /package/lib/components/LastUpdated/{styledVariables.d.ts → variables.d.ts} +0 -0
- /package/lib/components/{NavbarLogo/styledVariables.d.ts → Logo/variables.d.ts} +0 -0
- /package/lib/components/Navbar/{styledVariables.d.ts → variables.d.ts} +0 -0
- /package/lib/components/Panel/{styledVariables.d.ts → variables.d.ts} +0 -0
- /package/lib/components/Search/{styledVariables.d.ts → variables.d.ts} +0 -0
- /package/lib/components/Select/{styledVariables.d.ts → variables.d.ts} +0 -0
- /package/lib/components/TableOfContent/{styledVariables.d.ts → variables.d.ts} +0 -0
- /package/lib/components/Tag/{styledVariables.d.ts → variables.d.ts} +0 -0
- /package/lib/components/Tooltip/{styledVariables.d.ts → variables.d.ts} +0 -0
- /package/lib/{hooks/__tests__/mocks/MockIntersectionObserver.d.ts → core/hooks/__tests__/mocks/mock-intersection-observer.d.ts} +0 -0
- /package/lib/{hooks/useActiveHeading.d.ts → core/hooks/use-active-heading.d.ts} +0 -0
- /package/lib/{hooks/useActiveSectionId.d.ts → core/hooks/use-active-section-id.d.ts} +0 -0
- /package/lib/{hooks/useControl.d.ts → core/hooks/use-control.d.ts} +0 -0
- /package/lib/{hooks/useDialogHotKeys.d.ts → core/hooks/use-dialog-hotkeys.d.ts} +0 -0
- /package/lib/{hooks/useFullHeight.d.ts → core/hooks/use-full-height.d.ts} +0 -0
- /package/lib/{hooks/useMount.d.ts → core/hooks/use-mount.d.ts} +0 -0
- /package/lib/{hooks/useNavbarHeight.d.ts → core/hooks/use-navbar-height.d.ts} +0 -0
- /package/lib/{hooks/useUnmount.d.ts → core/hooks/use-unmount.d.ts} +0 -0
- /package/lib/{ui/darkColors.d.ts → core/styles/dark.d.ts} +0 -0
- /package/lib/{globalStyle.d.ts → core/styles/global.d.ts} +0 -0
- /package/lib/{types/portal/src/shared → core}/types/catalog.js +0 -0
- /package/lib/{types/portal/src/shared → core}/types/feedback.js +0 -0
- /package/lib/{types/portal/src/shared → core}/types/markdown.d.ts +0 -0
- /package/lib/{types/portal/src/shared → core}/types/markdown.js +0 -0
- /package/lib/{utils → core/utils}/args-typecheck.d.ts +0 -0
- /package/lib/{utils → core/utils}/args-typecheck.js +0 -0
- /package/lib/{utils → core/utils}/class-names.d.ts +0 -0
- /package/lib/{utils → core/utils}/class-names.js +0 -0
- /package/lib/{utils/ClipboardService.d.ts → core/utils/clipboard-service.d.ts} +0 -0
- /package/lib/{utils → core/utils}/color.d.ts +0 -0
- /package/lib/{utils → core/utils}/color.js +0 -0
- /package/lib/{utils → core/utils}/css-variables.d.ts +0 -0
- /package/lib/{utils → core/utils}/css-variables.js +0 -0
- /package/lib/{utils/getNavbarElement.d.ts → core/utils/get-navbar-element.d.ts} +0 -0
- /package/lib/{utils → core/utils}/highlight.d.ts +0 -0
- /package/lib/{utils → core/utils}/highlight.js +0 -0
- /package/lib/{utils/isUrl.d.ts → core/utils/is-url.d.ts} +0 -0
- /package/lib/{utils/replaceHashInColor.d.ts → core/utils/replace-hash-in-color.d.ts} +0 -0
- /package/lib/{utils → core/utils}/tags-parser.d.ts +0 -0
- /package/lib/{utils → core/utils}/tags-parser.js +0 -0
- /package/lib/{utils → core/utils}/text-transform.d.ts +0 -0
- /package/lib/{utils → core/utils}/text-transform.js +0 -0
- /package/lib/{utils → core/utils}/theme-helpers.d.ts +0 -0
- /package/lib/{utils → core/utils}/theme-helpers.js +0 -0
- /package/lib/{components/Feedback → icons}/types.js +0 -0
- /package/lib/{components/Markdown → markdoc/components/Heading}/Heading.d.ts +0 -0
- /package/lib/{components/Markdown → markdoc/components/Mermaid}/Mermaid.d.ts +0 -0
- /package/lib/{components/Menu → markdoc/tags}/types.js +0 -0
- /package/src/{hooks/__tests__/mocks/MockIntersectionObserver.ts → core/hooks/__tests__/mocks/mock-intersection-observer.ts} +0 -0
- /package/src/{hooks/useActiveHeading.ts → core/hooks/use-active-heading.ts} +0 -0
- /package/src/{hooks/useControl.ts → core/hooks/use-control.ts} +0 -0
- /package/src/{hooks/useDialogHotKeys.ts → core/hooks/use-dialog-hotkeys.ts} +0 -0
- /package/src/{hooks/useFullHeight.ts → core/hooks/use-full-height.ts} +0 -0
- /package/src/{hooks/useMount.ts → core/hooks/use-mount.ts} +0 -0
- /package/src/{hooks/useUnmount.ts → core/hooks/use-unmount.ts} +0 -0
- /package/src/{utils → core/utils}/args-typecheck.ts +0 -0
- /package/src/{utils → core/utils}/class-names.ts +0 -0
- /package/src/{utils/ClipboardService.ts → core/utils/clipboard-service.ts} +0 -0
- /package/src/{utils → core/utils}/color.ts +0 -0
- /package/src/{utils → core/utils}/css-variables.ts +0 -0
- /package/src/{utils/getNavbarElement.ts → core/utils/get-navbar-element.ts} +0 -0
- /package/src/{utils → core/utils}/highlight.ts +0 -0
- /package/src/{utils/isUrl.ts → core/utils/is-url.ts} +0 -0
- /package/src/{utils/replaceHashInColor.ts → core/utils/replace-hash-in-color.ts} +0 -0
- /package/src/{utils → core/utils}/tags-parser.ts +0 -0
- /package/src/{utils → core/utils}/text-transform.ts +0 -0
- /package/src/{utils → core/utils}/theme-helpers.ts +0 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
type AdmonitionTypeProps = {
|
|
3
|
+
type: 'warning' | 'success' | 'danger' | 'info';
|
|
4
|
+
};
|
|
5
|
+
export type AdmonitionProps = Partial<AdmonitionTypeProps> & {
|
|
6
|
+
name?: string;
|
|
7
|
+
className?: string;
|
|
8
|
+
'data-source'?: string;
|
|
9
|
+
'data-hash'?: string;
|
|
10
|
+
};
|
|
11
|
+
export declare function Admonition({ type, name, children, className, 'data-source': dataSource, 'data-hash': dataHash, }: React.PropsWithChildren<AdmonitionProps>): JSX.Element;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.Admonition = void 0;
|
|
30
|
+
const react_1 = __importDefault(require("react"));
|
|
31
|
+
const styled_components_1 = __importStar(require("styled-components"));
|
|
32
|
+
const WarningFilledIcon_1 = require("../../icons/WarningFilledIcon/WarningFilledIcon");
|
|
33
|
+
const CheckmarkFilledIcon_1 = require("../../icons/CheckmarkFilledIcon/CheckmarkFilledIcon");
|
|
34
|
+
const CloseFilledIcon_1 = require("../../icons/CloseFilledIcon/CloseFilledIcon");
|
|
35
|
+
const InformationFilledIcon_1 = require("../../icons/InformationFilledIcon/InformationFilledIcon");
|
|
36
|
+
const IconsMap = {
|
|
37
|
+
warning: WarningFilledIcon_1.WarningFilledIcon,
|
|
38
|
+
success: CheckmarkFilledIcon_1.CheckmarkFilledIcon,
|
|
39
|
+
danger: CloseFilledIcon_1.CloseFilledIcon,
|
|
40
|
+
info: InformationFilledIcon_1.InformationFilledIcon,
|
|
41
|
+
};
|
|
42
|
+
function Admonition({ type = 'info', name, children, className, 'data-source': dataSource, 'data-hash': dataHash, }) {
|
|
43
|
+
const Icon = IconsMap[type] || IconsMap['info'];
|
|
44
|
+
return (react_1.default.createElement(AdmonitionWrapper, { type: type, className: className, "data-component-name": "Admonition/Admonition", "data-source": dataSource, "data-hash": dataHash },
|
|
45
|
+
react_1.default.createElement(Icon, { color: `--admonition-${type}-icon-color` }),
|
|
46
|
+
react_1.default.createElement(TextContainer, null,
|
|
47
|
+
name ? react_1.default.createElement(Heading, { type: type }, name) : null,
|
|
48
|
+
children ? react_1.default.createElement(Content, null, children) : null)));
|
|
49
|
+
}
|
|
50
|
+
exports.Admonition = Admonition;
|
|
51
|
+
const Content = styled_components_1.default.div `
|
|
52
|
+
& > p:first-child {
|
|
53
|
+
margin-top: 0;
|
|
54
|
+
}
|
|
55
|
+
`;
|
|
56
|
+
const AdmonitionWrapper = styled_components_1.default.div `
|
|
57
|
+
display: flex;
|
|
58
|
+
flex-direction: row;
|
|
59
|
+
gap: var(--spacing-base);
|
|
60
|
+
margin: var(--admonition-margin-vertical) var(--admonition-margin-horizontal);
|
|
61
|
+
padding: var(--admonition-padding-vertical-xs) var(--admonition-padding-horizontal);
|
|
62
|
+
border-radius: var(--admonition-border-radius);
|
|
63
|
+
font-size: var(--admonition-font-size);
|
|
64
|
+
font-weight: var(--admonition-font-weight);
|
|
65
|
+
line-height: var(--admonition-line-height);
|
|
66
|
+
|
|
67
|
+
print-color-adjust: exact;
|
|
68
|
+
-webkit-print-color-adjust: exact;
|
|
69
|
+
|
|
70
|
+
${({ type }) => (0, styled_components_1.css) `
|
|
71
|
+
background-color: var(--admonition-${type}-bg-color);
|
|
72
|
+
color: var(--admonition-${type}-text-color);
|
|
73
|
+
border-left: var(--admonition-${type}-border);
|
|
74
|
+
`};
|
|
75
|
+
|
|
76
|
+
&:has(${Content}) {
|
|
77
|
+
padding: var(--admonition-padding-vertical-md) var(--admonition-padding-horizontal);
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
&:not(:has(${Content})) {
|
|
81
|
+
--admonition-heading-font-size: var(--admonition-font-size);
|
|
82
|
+
--admonition-heading-line-height: var(--admonition-line-height);
|
|
83
|
+
--admonition-icon-size: 16px;
|
|
84
|
+
|
|
85
|
+
align-items: center;
|
|
86
|
+
gap: calc(var(--spacing-xxs) * 1.5);
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
svg {
|
|
90
|
+
width: var(--admonition-icon-size);
|
|
91
|
+
height: var(--admonition-icon-size);
|
|
92
|
+
flex-shrink: 0;
|
|
93
|
+
|
|
94
|
+
fill: ${({ type }) => `var(--admonition-${type}-icon-color)`};
|
|
95
|
+
|
|
96
|
+
background-image: ${({ type }) => `var(--admonition-${type}-icon)`};
|
|
97
|
+
background-repeat: no-repeat;
|
|
98
|
+
background-position: center;
|
|
99
|
+
background-size: contain;
|
|
100
|
+
}
|
|
101
|
+
`;
|
|
102
|
+
const TextContainer = styled_components_1.default.div `
|
|
103
|
+
display: flex;
|
|
104
|
+
flex-direction: column;
|
|
105
|
+
gap: var(--spacing-unit);
|
|
106
|
+
width: 100%;
|
|
107
|
+
`;
|
|
108
|
+
const Heading = styled_components_1.default.div `
|
|
109
|
+
letter-spacing: var(--admonition-heading-letter-spacing);
|
|
110
|
+
color: ${({ type }) => `var(--admonition-${type}-heading-text-color)`};
|
|
111
|
+
|
|
112
|
+
&& {
|
|
113
|
+
font-size: var(--admonition-heading-font-size);
|
|
114
|
+
font-weight: var(--admonition-heading-font-weight);
|
|
115
|
+
line-height: var(--admonition-heading-line-height);
|
|
116
|
+
text-transform: var(--admonition-heading-transform);
|
|
117
|
+
}
|
|
118
|
+
`;
|
|
119
|
+
//# sourceMappingURL=Admonition.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const admonition: import("styled-components").FlattenSimpleInterpolation;
|
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.admonition = void 0;
|
|
4
|
+
const styled_components_1 = require("styled-components");
|
|
5
|
+
exports.admonition = (0, styled_components_1.css) `
|
|
6
|
+
/* === Admonitions === */
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* @tokens Admonition typography
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
--admonition-font-size: var(--font-size-base); // @presenter FontSize
|
|
13
|
+
--admonition-font-weight: var(--font-weight-regular); // @presenter FontWeight
|
|
14
|
+
--admonition-line-height: var(--line-height-base); // @presenter LineHeight
|
|
15
|
+
--admonition-heading-font-size: var(--font-size-lg); // @presenter FontSize
|
|
16
|
+
--admonition-heading-font-weight: var(--font-weight-regular); // @presenter FontWeight
|
|
17
|
+
--admonition-heading-line-height: var(--line-height-lg); // @presenter LineHeight
|
|
18
|
+
--admonition-heading-letter-spacing: 0.3px; // @presenter LetterSpacing
|
|
19
|
+
--admonition-heading-transform: none;
|
|
20
|
+
|
|
21
|
+
/**
|
|
22
|
+
* @tokens Admonition spacing
|
|
23
|
+
* @presenter Spacing
|
|
24
|
+
*/
|
|
25
|
+
|
|
26
|
+
--admonition-margin-horizontal: 0;
|
|
27
|
+
--admonition-margin-vertical: var(--spacing-lg);
|
|
28
|
+
--admonition-padding-horizontal: var(--spacing-base);
|
|
29
|
+
--admonition-padding-vertical-xs: var(--spacing-xs);
|
|
30
|
+
--admonition-padding-vertical-md: var(--spacing-md);
|
|
31
|
+
--admonition-icon-size: 24px;
|
|
32
|
+
|
|
33
|
+
/**
|
|
34
|
+
* @tokens Admonition border
|
|
35
|
+
*/
|
|
36
|
+
|
|
37
|
+
--admonition-border-radius: var(--border-radius-lg); // @presenter BorderRadius
|
|
38
|
+
--admonition-border-style: var(--border-style);
|
|
39
|
+
--admonition-border-width: calc(var(--border-width) * 4);
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* @tokens Admonition type info
|
|
43
|
+
*/
|
|
44
|
+
|
|
45
|
+
--admonition-info-bg-color: var(--color-info-bg); // @presenter Color
|
|
46
|
+
--admonition-info-heading-text-color: var(--text-color-primary); // @presenter Color
|
|
47
|
+
--admonition-info-text-color: var(--text-color-secondary); // @presenter Color
|
|
48
|
+
--admonition-info-icon-color: var(--color-info-base); // @presenter Color
|
|
49
|
+
--admonition-info-border-color: var(--color-info-border); // @presenter Color
|
|
50
|
+
--admonition-info-border-style: var(--admonition-border-style);
|
|
51
|
+
--admonition-info-border-width: var(--admonition-border-width);
|
|
52
|
+
--admonition-info-border: var(--admonition-info-border-width) var(--admonition-info-border-style) var(--admonition-info-border-color); // @presenter Border
|
|
53
|
+
--admonition-info-icon: none;
|
|
54
|
+
|
|
55
|
+
/**
|
|
56
|
+
* @tokens Admonition type warning
|
|
57
|
+
*/
|
|
58
|
+
|
|
59
|
+
/* warning */
|
|
60
|
+
--admonition-warning-bg-color: var(--color-warning-bg); // @presenter Color
|
|
61
|
+
--admonition-warning-text-color: var(--text-color-secondary); // @presenter Color
|
|
62
|
+
--admonition-warning-heading-text-color: var(--text-color-primary); // @presenter Color
|
|
63
|
+
--admonition-warning-icon-color: var(--color-warning-base); // @presenter Color
|
|
64
|
+
--admonition-warning-border-color: var(--color-warning-border); // @presenter Color
|
|
65
|
+
--admonition-warning-border-style: var(--admonition-border-style); // @presenter Color
|
|
66
|
+
--admonition-warning-border-width: var(--admonition-border-width); // @presenter Color
|
|
67
|
+
--admonition-warning-border: var(--admonition-warning-border-width) var(--admonition-warning-border-style) var(--admonition-warning-border-color); // @presenter Border
|
|
68
|
+
--admonition-warning-icon: none;
|
|
69
|
+
|
|
70
|
+
/**
|
|
71
|
+
* @tokens Admonition type danger
|
|
72
|
+
*/
|
|
73
|
+
|
|
74
|
+
--admonition-danger-bg-color: var(--color-error-bg); // @presenter Color
|
|
75
|
+
--admonition-danger-text-color: var(--text-color-secondary); // @presenter Color
|
|
76
|
+
--admonition-danger-heading-text-color: var(--text-color-primary); // @presenter Color
|
|
77
|
+
--admonition-danger-icon-color: var(--color-error-base); // @presenter Color
|
|
78
|
+
--admonition-danger-border-color: var(--color-error-border); // @presenter Color
|
|
79
|
+
--admonition-danger-border-style: var(--admonition-border-style); // @presenter Color
|
|
80
|
+
--admonition-danger-border-width: var(--admonition-border-width); // @presenter Color
|
|
81
|
+
--admonition-danger-border: var(--admonition-danger-border-width) var(--admonition-danger-border-style) var(--admonition-danger-border-color); // @presenter Border
|
|
82
|
+
--admonition-danger-icon: none;
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* @tokens Admonition type success
|
|
86
|
+
*/
|
|
87
|
+
|
|
88
|
+
--admonition-success-bg-color: var(--color-success-bg); // @presenter Color
|
|
89
|
+
--admonition-success-text-color: var(--text-color-secondary); // @presenter Color
|
|
90
|
+
--admonition-success-heading-text-color: var(--text-color-primary); // @presenter Color
|
|
91
|
+
--admonition-success-icon-color: var(--color-success-base); // @presenter Color
|
|
92
|
+
--admonition-success-border-color: var(--color-success-border); // @presenter Color
|
|
93
|
+
--admonition-success-border-style: var(--admonition-border-style); // @presenter Color
|
|
94
|
+
--admonition-success-border-width: var(--admonition-border-width); // @presenter Color
|
|
95
|
+
--admonition-success-border: var(--admonition-success-border-width) var(--admonition-success-border-style) var(--admonition-success-border-color); // @presenter Border
|
|
96
|
+
--admonition-success-icon: none;
|
|
97
|
+
|
|
98
|
+
// @tokens End
|
|
99
|
+
`;
|
|
100
|
+
//# sourceMappingURL=variables.js.map
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.Badge = void 0;
|
|
27
|
+
const styled_components_1 = __importStar(require("styled-components"));
|
|
28
|
+
exports.Badge = styled_components_1.default.span.attrs({
|
|
29
|
+
'data-component-name': 'Badge/Badge',
|
|
30
|
+
}) `
|
|
31
|
+
display: inline-block;
|
|
32
|
+
padding: 0 var(--spacing-xs);
|
|
33
|
+
vertical-align: middle;
|
|
34
|
+
line-height: var(--line-height-base);
|
|
35
|
+
color: var(--badge-text-color);
|
|
36
|
+
background-color: var(--badge-bg-color);
|
|
37
|
+
border-radius: var(--badge-border-radius);
|
|
38
|
+
margin: 0 0 0 0.5em;
|
|
39
|
+
font-size: var(--font-size-base);
|
|
40
|
+
font-weight: var(--font-weight-regular);
|
|
41
|
+
|
|
42
|
+
${({ deprecated }) => deprecated &&
|
|
43
|
+
(0, styled_components_1.css) `
|
|
44
|
+
color: var(--badge-deprecated-text-color);
|
|
45
|
+
background-color: var(--badge-deprecated-bg-color);
|
|
46
|
+
border-radius: var(--badge-deprecated-border-radius);
|
|
47
|
+
`}
|
|
48
|
+
`;
|
|
49
|
+
//# sourceMappingURL=Badge.js.map
|
|
@@ -1,7 +1,9 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
type BreadcrumbProps = {
|
|
3
3
|
label: string;
|
|
4
4
|
link?: string;
|
|
5
5
|
isActive: boolean;
|
|
6
6
|
onClick?: () => void;
|
|
7
|
-
}
|
|
7
|
+
};
|
|
8
|
+
export declare const Breadcrumb: ({ label, link, isActive, onClick }: BreadcrumbProps) => JSX.Element;
|
|
9
|
+
export {};
|
|
@@ -6,9 +6,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
exports.Breadcrumb = void 0;
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
8
|
const styled_components_1 = __importDefault(require("styled-components"));
|
|
9
|
-
const Link_1 = require("../../
|
|
10
|
-
const Breadcrumb = (
|
|
11
|
-
const { label, link, isActive, onClick } = props;
|
|
9
|
+
const Link_1 = require("../../components/Link/Link");
|
|
10
|
+
const Breadcrumb = ({ label, link, isActive, onClick }) => {
|
|
12
11
|
return (react_1.default.createElement(BreadcrumbWrapper, { "data-component-name": "Breadcrumbs/Breadcrumb", isLink: link != null, isActive: isActive, onClick: onClick }, link ? (react_1.default.createElement(BreadcrumbLink, { to: link }, label)) : (react_1.default.createElement(BreadcrumbText, null, label))));
|
|
13
12
|
};
|
|
14
13
|
exports.Breadcrumb = Breadcrumb;
|
|
@@ -21,13 +20,13 @@ const BreadcrumbWrapper = styled_components_1.default.div `
|
|
|
21
20
|
${(props) => props.isLink &&
|
|
22
21
|
`
|
|
23
22
|
&:hover {
|
|
24
|
-
text-decoration: var(--breadcrumbs-
|
|
23
|
+
text-decoration: var(--breadcrumbs-text-decoration-hover);
|
|
25
24
|
}
|
|
26
25
|
`}
|
|
27
26
|
|
|
28
27
|
${(props) => props.isActive &&
|
|
29
28
|
`
|
|
30
|
-
color: var(--breadcrumbs-
|
|
29
|
+
color: var(--breadcrumbs-text-color-active);
|
|
31
30
|
`}
|
|
32
31
|
`;
|
|
33
32
|
const BreadcrumbLink = (0, styled_components_1.default)(Link_1.Link) `
|
|
@@ -6,19 +6,20 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
exports.Breadcrumbs = void 0;
|
|
7
7
|
const react_1 = __importDefault(require("react"));
|
|
8
8
|
const styled_components_1 = __importDefault(require("styled-components"));
|
|
9
|
-
const
|
|
10
|
-
const telemetry_1 = require("../../mocks/telemetry");
|
|
9
|
+
const hooks_1 = require("../../core/hooks");
|
|
11
10
|
const Breadcrumb_1 = require("../../components/Breadcrumbs/Breadcrumb");
|
|
12
11
|
const Breadcrumbs = (props) => {
|
|
13
|
-
const
|
|
12
|
+
const { useBreadcrumbs, useTelemetry } = (0, hooks_1.useThemeHooks)();
|
|
13
|
+
const telemetry = useTelemetry();
|
|
14
|
+
const breadcrumbs = useBreadcrumbs();
|
|
14
15
|
if (breadcrumbs.length === 0) {
|
|
15
16
|
return null;
|
|
16
17
|
}
|
|
17
|
-
return (react_1.default.createElement(
|
|
18
|
+
return (react_1.default.createElement(BreadcrumbsWrapper, { "data-component-name": "Breadcrumbs/Breadcrumbs", className: props.className }, breadcrumbs.map((breadcrumb, idx) => {
|
|
18
19
|
const isLast = idx === breadcrumbs.length - 1;
|
|
19
20
|
return (react_1.default.createElement(react_1.default.Fragment, { key: idx },
|
|
20
21
|
react_1.default.createElement(Breadcrumb_1.Breadcrumb, { link: breadcrumb.link, label: breadcrumb.label, isActive: isLast, onClick: () => {
|
|
21
|
-
|
|
22
|
+
telemetry.send('breadcrumb_clicked', {
|
|
22
23
|
link: breadcrumb.link,
|
|
23
24
|
position: idx + 1,
|
|
24
25
|
total_breadcrumbs: breadcrumbs.length,
|
|
@@ -28,7 +29,7 @@ const Breadcrumbs = (props) => {
|
|
|
28
29
|
})));
|
|
29
30
|
};
|
|
30
31
|
exports.Breadcrumbs = Breadcrumbs;
|
|
31
|
-
const
|
|
32
|
+
const BreadcrumbsWrapper = styled_components_1.default.div `
|
|
32
33
|
display: flex;
|
|
33
34
|
flex-direction: row;
|
|
34
35
|
align-items: center;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.breadcrumbs = void 0;
|
|
4
|
+
const styled_components_1 = require("styled-components");
|
|
5
|
+
exports.breadcrumbs = (0, styled_components_1.css) `
|
|
6
|
+
/**
|
|
7
|
+
* @tokens Breadcrumbs
|
|
8
|
+
*/
|
|
9
|
+
|
|
10
|
+
--breadcrumbs-text-color: var(--text-color-description); // @presenter Color
|
|
11
|
+
--breadcrumbs-font-size: var(--font-size-base); // @presenter FontSize
|
|
12
|
+
--breadcrumbs-text-color-active: var(--text-color-primary); // @presenter Color
|
|
13
|
+
--breadcrumbs-text-decoration-hover: underline; // @presenter TextDecoration
|
|
14
|
+
--breadcrumbs-padding: 0; // @presenter Spacing
|
|
15
|
+
--breadcrumbs-gap: var(--spacing-xs);
|
|
16
|
+
--breadcrumbs-margin-bottom: var(--spacing-lg); // @presenter Spacing
|
|
17
|
+
|
|
18
|
+
// @tokens End
|
|
19
|
+
`;
|
|
20
|
+
//# sourceMappingURL=variables.js.map
|
|
@@ -1,22 +1,23 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
|
|
3
|
-
export type
|
|
4
|
-
|
|
5
|
-
export
|
|
6
|
-
export interface ButtonProps {
|
|
2
|
+
export type ButtonSize = 'small' | 'medium' | 'large' | string;
|
|
3
|
+
export type ButtonVariant = 'primary' | 'secondary' | 'outlined' | 'text' | 'link' | 'ghost' | string;
|
|
4
|
+
type ButtonTone = 'default' | 'danger';
|
|
5
|
+
export interface ButtonProps extends React.ButtonHTMLAttributes<HTMLButtonElement> {
|
|
7
6
|
children?: React.ReactNode;
|
|
8
|
-
color?: ButtonColor;
|
|
9
7
|
disabled?: boolean;
|
|
10
8
|
blinking?: boolean;
|
|
11
9
|
fullWidth?: boolean;
|
|
12
10
|
variant?: ButtonVariant;
|
|
11
|
+
tone?: ButtonTone;
|
|
13
12
|
size?: ButtonSize;
|
|
14
13
|
extraClass?: string;
|
|
15
14
|
to?: string;
|
|
16
15
|
icon?: JSX.Element;
|
|
16
|
+
iconPosition?: 'left' | 'right';
|
|
17
17
|
title?: string;
|
|
18
18
|
onClick?: (e?: any) => void;
|
|
19
19
|
type?: 'button' | 'submit' | 'reset';
|
|
20
20
|
}
|
|
21
|
-
export declare
|
|
22
|
-
export declare const Button: import("styled-components").StyledComponent<React.FC<ButtonProps>, any,
|
|
21
|
+
export declare function generateClassName({ variant, tone, size, extraClass, }: ButtonProps): string;
|
|
22
|
+
export declare const Button: import("styled-components").StyledComponent<React.FC<ButtonProps>, any, ButtonProps, never>;
|
|
23
|
+
export {};
|
|
@@ -26,129 +26,147 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
26
26
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
27
27
|
};
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
-
exports.Button = exports.
|
|
29
|
+
exports.Button = exports.generateClassName = void 0;
|
|
30
30
|
const react_1 = __importDefault(require("react"));
|
|
31
31
|
const styled_components_1 = __importStar(require("styled-components"));
|
|
32
|
-
const Link_1 = require("../../
|
|
32
|
+
const Link_1 = require("../../components/Link/Link");
|
|
33
33
|
const getBlink = () => (0, styled_components_1.keyframes) `
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
34
|
+
0% {
|
|
35
|
+
color: var(--button-content-color);
|
|
36
|
+
background-color: var(--button-bg-color-active);
|
|
37
|
+
}
|
|
38
38
|
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
39
|
+
50% {
|
|
40
|
+
background-color: var(--button-bg-color);
|
|
41
|
+
}
|
|
42
42
|
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
43
|
+
100% {
|
|
44
|
+
color: var(--button-content-color);
|
|
45
|
+
background-color: var(--button-bg-color-active);
|
|
46
|
+
}
|
|
47
47
|
`;
|
|
48
|
-
const
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
48
|
+
const StyledButtonLink = (0, styled_components_1.default)(Link_1.Link) `
|
|
49
|
+
text-decoration: none;
|
|
50
|
+
& + & {
|
|
51
|
+
margin-left: var(--spacing-xs);
|
|
52
|
+
}
|
|
53
|
+
&:focus-visible {
|
|
54
|
+
outline: 1px solid var(--button-border-color-focused);
|
|
55
|
+
}
|
|
56
|
+
border-radius: var(--button-border-radius);
|
|
52
57
|
`;
|
|
53
|
-
|
|
58
|
+
function generateClassName({ variant = 'secondary', tone = 'default', size = 'medium', extraClass = '', }) {
|
|
59
|
+
const classNames = [
|
|
60
|
+
extraClass,
|
|
61
|
+
`button-tone-${tone}`,
|
|
62
|
+
`button-variant-${variant}`,
|
|
63
|
+
`button-size-${size}`,
|
|
64
|
+
];
|
|
65
|
+
return classNames
|
|
66
|
+
.filter((className) => className)
|
|
67
|
+
.join(' ')
|
|
68
|
+
.trim();
|
|
69
|
+
}
|
|
70
|
+
exports.generateClassName = generateClassName;
|
|
71
|
+
const StyledButton = styled_components_1.default.button.attrs((props) => ({
|
|
72
|
+
className: generateClassName(props),
|
|
73
|
+
})) `
|
|
74
|
+
width: ${({ fullWidth }) => (fullWidth ? '100%' : 'auto')};
|
|
75
|
+
|
|
54
76
|
display: inline-flex;
|
|
55
77
|
align-items: center;
|
|
56
78
|
justify-content: center;
|
|
57
|
-
gap: var(--
|
|
58
|
-
outline: none;
|
|
79
|
+
gap: var(--button-gap);
|
|
59
80
|
margin: var(--button-margin);
|
|
60
81
|
cursor: pointer;
|
|
61
|
-
|
|
82
|
+
text-wrap: var(--button-text-wrap);
|
|
62
83
|
|
|
63
84
|
color: var(--button-color);
|
|
64
|
-
background-color: var(--button-
|
|
85
|
+
background-color: var(--button-bg-color);
|
|
65
86
|
border: var(--button-border-width) var(--button-border-style) var(--button-border-color);
|
|
66
|
-
|
|
87
|
+
box-shadow: var(--button-box-shadow);
|
|
67
88
|
|
|
68
|
-
font-size: var(--button-font-size);
|
|
69
|
-
font-family: var(--button-font-family);
|
|
70
89
|
font-weight: var(--button-font-weight);
|
|
71
|
-
|
|
72
|
-
|
|
90
|
+
font-size: var(--button-font-size);
|
|
91
|
+
line-height: var(--button-line-height);
|
|
92
|
+
padding: ${({ icon, iconPosition, iconOnly }) => icon
|
|
93
|
+
? `var(--button-icon-${iconOnly ? '' : `${iconPosition || 'left'}-`}padding)`
|
|
94
|
+
: 'var(--button-padding)'};
|
|
95
|
+
border-radius: var(--button-border-radius);
|
|
96
|
+
|
|
97
|
+
svg {
|
|
98
|
+
width: var(--button-icon-size);
|
|
99
|
+
height: var(--button-icon-size);
|
|
100
|
+
}
|
|
73
101
|
|
|
74
102
|
&:hover {
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
color: var(--button-
|
|
78
|
-
border: var(--button-border-width) var(--button-border-style) var(--button-hover-border-color);
|
|
103
|
+
background-color: var(--button-bg-color-hover);
|
|
104
|
+
color: var(--button-color-hover);
|
|
105
|
+
border-color: var(--button-border-color-hover);
|
|
79
106
|
}
|
|
80
107
|
|
|
81
|
-
&:active
|
|
82
|
-
|
|
83
|
-
background-color: var(--button-
|
|
84
|
-
border: var(--button-border-
|
|
108
|
+
&:active,
|
|
109
|
+
&.active {
|
|
110
|
+
background-color: var(--button-bg-color-active);
|
|
111
|
+
border-color: var(--button-border-color-active);
|
|
112
|
+
color: var(--button-color-active);
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
&:focus-visible {
|
|
116
|
+
outline: 1px solid var(--button-border-color-focused);
|
|
85
117
|
}
|
|
86
|
-
`;
|
|
87
|
-
const StyledButtonLink = (0, styled_components_1.default)(Link_1.Link) `
|
|
88
|
-
text-decoration: none;
|
|
89
|
-
`;
|
|
90
|
-
const StyledButton = styled_components_1.default.button.attrs(({ color = 'default', extraClass, variant }) => ({
|
|
91
|
-
className: `button-${color}${variant ? ` button-${variant}` : ''}${extraClass ? ` ${extraClass}` : ''}`,
|
|
92
|
-
'data-component-name': 'Button/Button',
|
|
93
|
-
})) `
|
|
94
|
-
width: ${({ fullWidth }) => (fullWidth ? '100%' : 'auto')};
|
|
95
118
|
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
119
|
+
&.button-tone-danger {
|
|
120
|
+
color: var(--button-content-color-danger);
|
|
121
|
+
border-color: var(--button-border-color-danger);
|
|
122
|
+
background-color: var(--button-bg-color-danger);
|
|
123
|
+
|
|
124
|
+
&:hover {
|
|
125
|
+
color: var(--button-content-color-danger-hover);
|
|
126
|
+
border-color: var(--button-border-color-danger-hover);
|
|
127
|
+
background-color: var(--button-bg-color-danger-hover);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
&:active {
|
|
131
|
+
color: var(--button-content-color-danger-pressed);
|
|
132
|
+
border-color: var(--button-border-color-danger-pressed);
|
|
133
|
+
background-color: var(--button-bg-color-danger-pressed);
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
&:disabled {
|
|
138
|
+
pointer-events: none;
|
|
139
|
+
background-color: var(--button-bg-color-disabled);
|
|
140
|
+
color: var(--button-content-color-disabled);
|
|
141
|
+
border-color: var(--button-border-color-disabled);
|
|
142
|
+
border-width: var(--button-border-width-disabled);
|
|
143
|
+
}
|
|
118
144
|
|
|
119
145
|
& + & {
|
|
120
|
-
margin-left:
|
|
146
|
+
margin-left: var(--spacing-xs);
|
|
121
147
|
}
|
|
122
148
|
|
|
123
|
-
${({
|
|
149
|
+
${({ variant, size }) => (variant === 'link' || variant === 'ghost') &&
|
|
150
|
+
size === 'small' &&
|
|
124
151
|
(0, styled_components_1.css) `
|
|
125
|
-
|
|
126
|
-
|
|
152
|
+
--button-font-size: var(--font-size-sm);
|
|
153
|
+
--button-line-height: var(--line-height-sm);
|
|
154
|
+
--button-icon-padding: var(--button-icon-padding-small) !important;
|
|
127
155
|
`}
|
|
128
156
|
|
|
129
|
-
${({
|
|
157
|
+
${({ blinking }) => blinking &&
|
|
130
158
|
(0, styled_components_1.css) `
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
cursor: default;
|
|
134
|
-
color: var(--button-disabled-color);
|
|
135
|
-
background-color: var(--button-disabled-background-color);
|
|
136
|
-
border-color: var(--button-disabled-border-color);
|
|
137
|
-
pointer-events: none;
|
|
138
|
-
}
|
|
159
|
+
pointer-events: none;
|
|
160
|
+
animation: ${getBlink()} 1.2s infinite;
|
|
139
161
|
`}
|
|
140
162
|
`;
|
|
141
|
-
const StyledIcon = styled_components_1.default.span `
|
|
142
|
-
display: block;
|
|
143
|
-
height: var(--button-icon-height);
|
|
144
|
-
width: var(--button-icon-width);
|
|
145
|
-
`;
|
|
146
163
|
const ButtonComponent = (props) => {
|
|
147
|
-
const button = (react_1.default.createElement(StyledButton, Object.assign({}, props),
|
|
148
|
-
props.icon
|
|
149
|
-
props.children
|
|
164
|
+
const button = (react_1.default.createElement(StyledButton, Object.assign({ "data-component-name": "Button/Button" }, props, { iconOnly: !props.children && props.icon !== null, tabIndex: props.to ? -1 : 0 }),
|
|
165
|
+
props.icon && props.iconPosition !== 'right' && props.icon,
|
|
166
|
+
props.children,
|
|
167
|
+
props.icon && props.iconPosition === 'right' && props.icon));
|
|
150
168
|
if (props.to) {
|
|
151
|
-
return
|
|
169
|
+
return react_1.default.createElement(StyledButtonLink, { to: props.to }, button);
|
|
152
170
|
}
|
|
153
171
|
else {
|
|
154
172
|
return button;
|