@backstage/core-components 0.11.1-next.2 → 0.11.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +30 -0
- package/dist/index.d.ts +30 -2
- package/dist/index.esm.js +55 -5
- package/dist/index.esm.js.map +1 -1
- package/package.json +8 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @backstage/core-components
|
|
2
2
|
|
|
3
|
+
## 0.11.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 817f3196f6: Updated React Router dependencies to be peer dependencies.
|
|
8
|
+
- d3737da337: Export `HeaderActionMenu` and expose default `Table` icons via `Table.icons`
|
|
9
|
+
- 7d47def9c4: Removed dependency on `@types/jest`.
|
|
10
|
+
- b29c44d895: Adds code to generate ids for headers parsed through the MarkdownContent component.
|
|
11
|
+
- 37e8c5e128: The `RoutedTabs` component has been updated to be compatible with React Router v6 stable.
|
|
12
|
+
- 667d917488: Updated dependency `msw` to `^0.47.0`.
|
|
13
|
+
- 87ec2ba4d6: Updated dependency `msw` to `^0.46.0`.
|
|
14
|
+
- bf5e9030eb: Updated dependency `msw` to `^0.45.0`.
|
|
15
|
+
- 13f23f6510: Allow custom images in the empty state component
|
|
16
|
+
- 023d14c52b: Fix overflow bug on MicDrop image for 404 page by moving the image and making it relative rather than absolute
|
|
17
|
+
- c8bb0ff8ce: Minor cleanup of the public API surface to reduce the number of warnings
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @backstage/core-plugin-api@1.0.6
|
|
20
|
+
- @backstage/config@1.0.2
|
|
21
|
+
- @backstage/errors@1.1.1
|
|
22
|
+
|
|
23
|
+
## 0.11.1-next.3
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- 7d47def9c4: Removed dependency on `@types/jest`.
|
|
28
|
+
- Updated dependencies
|
|
29
|
+
- @backstage/config@1.0.2-next.0
|
|
30
|
+
- @backstage/core-plugin-api@1.0.6-next.3
|
|
31
|
+
- @backstage/errors@1.1.1-next.0
|
|
32
|
+
|
|
3
33
|
## 0.11.1-next.2
|
|
4
34
|
|
|
5
35
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -12,9 +12,10 @@ import { LinearProgressProps } from '@material-ui/core/LinearProgress';
|
|
|
12
12
|
import { CardHeaderProps } from '@material-ui/core/CardHeader';
|
|
13
13
|
import { BackstagePalette, BackstageTheme } from '@backstage/theme';
|
|
14
14
|
import { TabProps as TabProps$1 } from '@material-ui/core/Tab';
|
|
15
|
-
import { Column, MaterialTableProps } from '@material-table/core';
|
|
15
|
+
import { Column, MaterialTableProps, Icons } from '@material-table/core';
|
|
16
16
|
import { SparklinesProps, SparklinesLineProps } from 'react-sparklines';
|
|
17
17
|
import { IconComponent, SignInPageProps, ApiRef, ProfileInfoApi, BackstageIdentityApi, SessionApi, IdentityApi, ProfileInfo, BackstageUserIdentity } from '@backstage/core-plugin-api';
|
|
18
|
+
import { ListItemTextProps } from '@material-ui/core/ListItemText';
|
|
18
19
|
import * as _material_ui_styles from '@material-ui/styles';
|
|
19
20
|
import { WithStyles, Theme } from '@material-ui/core/styles';
|
|
20
21
|
import { BottomNavigationActionProps } from '@material-ui/core/BottomNavigationAction';
|
|
@@ -1050,7 +1051,13 @@ interface TableProps<T extends object = {}> extends MaterialTableProps<T> {
|
|
|
1050
1051
|
emptyContent?: ReactNode;
|
|
1051
1052
|
onStateChange?: (state: TableState) => any;
|
|
1052
1053
|
}
|
|
1054
|
+
/**
|
|
1055
|
+
* @public
|
|
1056
|
+
*/
|
|
1053
1057
|
declare function Table<T extends object = {}>(props: TableProps<T>): JSX.Element;
|
|
1058
|
+
declare namespace Table {
|
|
1059
|
+
var icons: Readonly<Icons>;
|
|
1060
|
+
}
|
|
1054
1061
|
|
|
1055
1062
|
interface TabProps {
|
|
1056
1063
|
content: any;
|
|
@@ -1220,6 +1227,27 @@ declare type Props$4 = {
|
|
|
1220
1227
|
*/
|
|
1221
1228
|
declare function Header(props: PropsWithChildren<Props$4>): JSX.Element;
|
|
1222
1229
|
|
|
1230
|
+
/**
|
|
1231
|
+
* @public
|
|
1232
|
+
*/
|
|
1233
|
+
declare type HeaderActionMenuItem = {
|
|
1234
|
+
label?: ListItemTextProps['primary'];
|
|
1235
|
+
secondaryLabel?: ListItemTextProps['secondary'];
|
|
1236
|
+
icon?: ReactElement;
|
|
1237
|
+
disabled?: boolean;
|
|
1238
|
+
onClick?: (event: React__default.MouseEvent<HTMLElement>) => void;
|
|
1239
|
+
};
|
|
1240
|
+
/**
|
|
1241
|
+
* @public
|
|
1242
|
+
*/
|
|
1243
|
+
declare type HeaderActionMenuProps = {
|
|
1244
|
+
actionItems: HeaderActionMenuItem[];
|
|
1245
|
+
};
|
|
1246
|
+
/**
|
|
1247
|
+
* @public
|
|
1248
|
+
*/
|
|
1249
|
+
declare function HeaderActionMenu(props: HeaderActionMenuProps): JSX.Element;
|
|
1250
|
+
|
|
1223
1251
|
/** @public */
|
|
1224
1252
|
declare type HeaderLabelClassKey = 'root' | 'label' | 'value';
|
|
1225
1253
|
declare type HeaderLabelContentProps = {
|
|
@@ -2003,4 +2031,4 @@ declare type BackstageOverrides = Overrides & {
|
|
|
2003
2031
|
[Name in keyof BackstageComponentsNameToClassKey]?: Partial<StyleRules<BackstageComponentsNameToClassKey[Name]>>;
|
|
2004
2032
|
};
|
|
2005
2033
|
|
|
2006
|
-
export { AlertDisplay, AlertDisplayProps, Avatar, AvatarClassKey, AvatarProps, BackstageContentClassKey, BackstageOverrides, BoldHeaderClassKey, BottomLink, BottomLinkClassKey, BottomLinkProps, Breadcrumbs, BreadcrumbsClickableTextClassKey, BreadcrumbsStyledBoxClassKey, BrokenImageIcon, Button, ButtonProps, CardActionsTopRightClassKey, CardTab, CardTabClassKey, CatalogIcon, ChatIcon, ClosedDropdownClassKey, CodeSnippet, CodeSnippetProps, Content, ContentHeader, ContentHeaderClassKey, CopyTextButton, CopyTextButtonProps, CreateButton, CreateButtonProps, CustomProviderClassKey, DashboardIcon, DependencyGraph, DependencyGraphDefaultLabelClassKey, DependencyGraphDefaultNodeClassKey, DependencyGraphEdgeClassKey, DependencyGraphNodeClassKey, DependencyGraphProps, types_d as DependencyGraphTypes, DismissableBanner, DismissableBannerClassKey, DismissbleBannerClassKey, DocsIcon, EmailIcon, EmptyState, EmptyStateClassKey, EmptyStateImageClassKey, ErrorBoundary, ErrorBoundaryProps, ErrorPage, ErrorPageClassKey, ErrorPanel, ErrorPanelClassKey, ErrorPanelProps, FeatureCalloutCircleClassKey, FeatureCalloutCircular, FiltersContainerClassKey, Gauge, GaugeCard, GaugeCardClassKey, GaugeClassKey, GaugeProps, GaugePropsGetColor, GaugePropsGetColorOptions, GitHubIcon, GroupIcon, Header, HeaderClassKey, HeaderIconLinkRow, HeaderIconLinkRowClassKey, HeaderLabel, HeaderLabelClassKey, HeaderTabs, HeaderTabsClassKey, HelpIcon, HomepageTimer, HorizontalScrollGrid, HorizontalScrollGridClassKey, IconLinkVerticalClassKey, IconLinkVerticalProps, IdentityProviders, InfoCard, InfoCardClassKey, InfoCardVariants, IntroCard, ItemCard, ItemCardGrid, ItemCardGridClassKey, ItemCardGridProps, ItemCardHeader, ItemCardHeaderClassKey, ItemCardHeaderProps, Lifecycle, LifecycleClassKey, LinearGauge, Link, LinkProps, LogViewer, LogViewerClassKey, LogViewerProps, LoginRequestListItemClassKey, MarkdownContent, MarkdownContentClassKey, MetadataTableCellClassKey, MetadataTableListClassKey, MetadataTableListItemClassKey, MetadataTableTitleCellClassKey, MicDropClassKey, MissingAnnotationEmptyState, MissingAnnotationEmptyStateClassKey, MobileSidebar, MobileSidebarProps, OAuthRequestDialog, OAuthRequestDialogClassKey, OpenedDropdownClassKey, OverflowTooltip, OverflowTooltipClassKey, Page, PageClassKey, PageWithHeader, Progress, ProxiedSignInPage, ProxiedSignInPageProps, ResponseErrorPanel, ResponseErrorPanelClassKey, RoutedTabs, SIDEBAR_INTRO_LOCAL_STORAGE, SelectComponent as Select, SelectClassKey, SelectInputBaseClassKey, SelectItem, SelectedItems, Sidebar, SidebarClassKey, LegacySidebarContext as SidebarContext, SidebarContextType, SidebarDivider, SidebarDividerClassKey, SidebarExpandButton, SidebarGroup, SidebarGroupProps, SidebarIntro, SidebarIntroClassKey, SidebarItem, SidebarItemClassKey, SidebarOpenState, SidebarOpenStateProvider, SidebarOptions, SidebarPage, SidebarPageClassKey, SidebarPageProps, SidebarPinState, LegacySidebarPinStateContext as SidebarPinStateContext, SidebarPinStateContextType, SidebarPinStateProvider, SidebarProps, SidebarScrollWrapper, SidebarSearchField, SidebarSpace, SidebarSpaceClassKey, SidebarSpacer, SidebarSpacerClassKey, SidebarSubmenu, SidebarSubmenuItem, SidebarSubmenuItemDropdownItem, SidebarSubmenuItemProps, SidebarSubmenuProps, SignInPage, SignInPageClassKey, SignInProviderConfig, SimpleStepper, SimpleStepperFooterClassKey, SimpleStepperStep, SimpleStepperStepClassKey, StatusAborted, StatusClassKey, StatusError, StatusOK, StatusPending, StatusRunning, StatusWarning, StructuredMetadataTable, StructuredMetadataTableListClassKey, StructuredMetadataTableNestedListClassKey, SubmenuOptions, SubvalueCell, SubvalueCellClassKey, SupportButton, SupportButtonClassKey, SupportConfig, SupportItem, SupportItemLink, Tab, TabBarClassKey, TabClassKey, TabIconClassKey, TabbedCard, TabbedCardClassKey, TabbedLayout, Table, TableClassKey, TableColumn, TableFilter, TableFiltersClassKey, TableHeaderClassKey, TableProps, TableState, TableToolbarClassKey, Tabs, TabsClassKey, TrendLine, UserIcon, UserIdentity, WarningIcon, WarningPanel, WarningPanelClassKey, sidebarConfig, useContent, useQueryParamState, useSidebarOpenState, useSidebarPinState, useSupportConfig };
|
|
2034
|
+
export { AlertDisplay, AlertDisplayProps, Avatar, AvatarClassKey, AvatarProps, BackstageContentClassKey, BackstageOverrides, BoldHeaderClassKey, BottomLink, BottomLinkClassKey, BottomLinkProps, Breadcrumbs, BreadcrumbsClickableTextClassKey, BreadcrumbsStyledBoxClassKey, BrokenImageIcon, Button, ButtonProps, CardActionsTopRightClassKey, CardTab, CardTabClassKey, CatalogIcon, ChatIcon, ClosedDropdownClassKey, CodeSnippet, CodeSnippetProps, Content, ContentHeader, ContentHeaderClassKey, CopyTextButton, CopyTextButtonProps, CreateButton, CreateButtonProps, CustomProviderClassKey, DashboardIcon, DependencyGraph, DependencyGraphDefaultLabelClassKey, DependencyGraphDefaultNodeClassKey, DependencyGraphEdgeClassKey, DependencyGraphNodeClassKey, DependencyGraphProps, types_d as DependencyGraphTypes, DismissableBanner, DismissableBannerClassKey, DismissbleBannerClassKey, DocsIcon, EmailIcon, EmptyState, EmptyStateClassKey, EmptyStateImageClassKey, ErrorBoundary, ErrorBoundaryProps, ErrorPage, ErrorPageClassKey, ErrorPanel, ErrorPanelClassKey, ErrorPanelProps, FeatureCalloutCircleClassKey, FeatureCalloutCircular, FiltersContainerClassKey, Gauge, GaugeCard, GaugeCardClassKey, GaugeClassKey, GaugeProps, GaugePropsGetColor, GaugePropsGetColorOptions, GitHubIcon, GroupIcon, Header, HeaderActionMenu, HeaderActionMenuItem, HeaderActionMenuProps, HeaderClassKey, HeaderIconLinkRow, HeaderIconLinkRowClassKey, HeaderLabel, HeaderLabelClassKey, HeaderTabs, HeaderTabsClassKey, HelpIcon, HomepageTimer, HorizontalScrollGrid, HorizontalScrollGridClassKey, IconLinkVerticalClassKey, IconLinkVerticalProps, IdentityProviders, InfoCard, InfoCardClassKey, InfoCardVariants, IntroCard, ItemCard, ItemCardGrid, ItemCardGridClassKey, ItemCardGridProps, ItemCardHeader, ItemCardHeaderClassKey, ItemCardHeaderProps, Lifecycle, LifecycleClassKey, LinearGauge, Link, LinkProps, LogViewer, LogViewerClassKey, LogViewerProps, LoginRequestListItemClassKey, MarkdownContent, MarkdownContentClassKey, MetadataTableCellClassKey, MetadataTableListClassKey, MetadataTableListItemClassKey, MetadataTableTitleCellClassKey, MicDropClassKey, MissingAnnotationEmptyState, MissingAnnotationEmptyStateClassKey, MobileSidebar, MobileSidebarProps, OAuthRequestDialog, OAuthRequestDialogClassKey, OpenedDropdownClassKey, OverflowTooltip, OverflowTooltipClassKey, Page, PageClassKey, PageWithHeader, Progress, ProxiedSignInPage, ProxiedSignInPageProps, ResponseErrorPanel, ResponseErrorPanelClassKey, RoutedTabs, SIDEBAR_INTRO_LOCAL_STORAGE, SelectComponent as Select, SelectClassKey, SelectInputBaseClassKey, SelectItem, SelectedItems, Sidebar, SidebarClassKey, LegacySidebarContext as SidebarContext, SidebarContextType, SidebarDivider, SidebarDividerClassKey, SidebarExpandButton, SidebarGroup, SidebarGroupProps, SidebarIntro, SidebarIntroClassKey, SidebarItem, SidebarItemClassKey, SidebarOpenState, SidebarOpenStateProvider, SidebarOptions, SidebarPage, SidebarPageClassKey, SidebarPageProps, SidebarPinState, LegacySidebarPinStateContext as SidebarPinStateContext, SidebarPinStateContextType, SidebarPinStateProvider, SidebarProps, SidebarScrollWrapper, SidebarSearchField, SidebarSpace, SidebarSpaceClassKey, SidebarSpacer, SidebarSpacerClassKey, SidebarSubmenu, SidebarSubmenuItem, SidebarSubmenuItemDropdownItem, SidebarSubmenuItemProps, SidebarSubmenuProps, SignInPage, SignInPageClassKey, SignInProviderConfig, SimpleStepper, SimpleStepperFooterClassKey, SimpleStepperStep, SimpleStepperStepClassKey, StatusAborted, StatusClassKey, StatusError, StatusOK, StatusPending, StatusRunning, StatusWarning, StructuredMetadataTable, StructuredMetadataTableListClassKey, StructuredMetadataTableNestedListClassKey, SubmenuOptions, SubvalueCell, SubvalueCellClassKey, SupportButton, SupportButtonClassKey, SupportConfig, SupportItem, SupportItemLink, Tab, TabBarClassKey, TabClassKey, TabIconClassKey, TabbedCard, TabbedCardClassKey, TabbedLayout, Table, TableClassKey, TableColumn, TableFilter, TableFiltersClassKey, TableHeaderClassKey, TableProps, TableState, TableToolbarClassKey, Tabs, TabsClassKey, TrendLine, UserIcon, UserIdentity, WarningIcon, WarningPanel, WarningPanelClassKey, sidebarConfig, useContent, useQueryParamState, useSidebarOpenState, useSidebarPinState, useSupportConfig };
|
package/dist/index.esm.js
CHANGED
|
@@ -127,6 +127,7 @@ import useWindowSize from 'react-use/lib/useWindowSize';
|
|
|
127
127
|
import { Sparklines, SparklinesLine } from 'react-sparklines';
|
|
128
128
|
import MicDropSvgUrl from './layout/ErrorPage/mic-drop.svg';
|
|
129
129
|
import MaterialBreadcrumbs from '@material-ui/core/Breadcrumbs';
|
|
130
|
+
import MoreVert from '@material-ui/icons/MoreVert';
|
|
130
131
|
import CardMedia from '@material-ui/core/CardMedia';
|
|
131
132
|
import { z } from 'zod';
|
|
132
133
|
import { useForm } from 'react-hook-form';
|
|
@@ -5329,6 +5330,7 @@ function Table(props) {
|
|
|
5329
5330
|
...restProps
|
|
5330
5331
|
}));
|
|
5331
5332
|
}
|
|
5333
|
+
Table.icons = Object.freeze(tableIcons);
|
|
5332
5334
|
|
|
5333
5335
|
function chunkArray(array, chunkSize) {
|
|
5334
5336
|
if (chunkSize <= 0) {
|
|
@@ -5642,12 +5644,10 @@ const useStyles$7 = makeStyles(
|
|
|
5642
5644
|
(theme) => ({
|
|
5643
5645
|
micDrop: {
|
|
5644
5646
|
maxWidth: "60%",
|
|
5645
|
-
position: "absolute",
|
|
5646
5647
|
bottom: theme.spacing(2),
|
|
5647
5648
|
right: theme.spacing(2),
|
|
5648
5649
|
[theme.breakpoints.down("xs")]: {
|
|
5649
5650
|
maxWidth: "96%",
|
|
5650
|
-
position: "relative",
|
|
5651
5651
|
bottom: "unset",
|
|
5652
5652
|
right: "unset",
|
|
5653
5653
|
margin: `${theme.spacing(10)}px auto ${theme.spacing(4)}px`
|
|
@@ -5695,7 +5695,7 @@ function ErrorPage(props) {
|
|
|
5695
5695
|
container: true,
|
|
5696
5696
|
spacing: 0,
|
|
5697
5697
|
className: classes.container
|
|
5698
|
-
}, /* @__PURE__ */ React.createElement(
|
|
5698
|
+
}, /* @__PURE__ */ React.createElement(Grid, {
|
|
5699
5699
|
item: true,
|
|
5700
5700
|
xs: 12,
|
|
5701
5701
|
sm: 8,
|
|
@@ -5718,7 +5718,7 @@ function ErrorPage(props) {
|
|
|
5718
5718
|
onClick: () => navigate(-1)
|
|
5719
5719
|
}, "Go back"), "... or please", " ", /* @__PURE__ */ React.createElement(Link, {
|
|
5720
5720
|
to: supportUrl || support.url
|
|
5721
|
-
}, "contact support"), " if you think this is a bug.")));
|
|
5721
|
+
}, "contact support"), " if you think this is a bug.")), /* @__PURE__ */ React.createElement(MicDrop, null));
|
|
5722
5722
|
}
|
|
5723
5723
|
|
|
5724
5724
|
const ClickableText = withStyles(
|
|
@@ -5941,6 +5941,56 @@ function Header(props) {
|
|
|
5941
5941
|
}, children)));
|
|
5942
5942
|
}
|
|
5943
5943
|
|
|
5944
|
+
const ActionItem = ({
|
|
5945
|
+
label,
|
|
5946
|
+
secondaryLabel,
|
|
5947
|
+
icon,
|
|
5948
|
+
disabled = false,
|
|
5949
|
+
onClick
|
|
5950
|
+
}) => {
|
|
5951
|
+
return /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(ListItem, {
|
|
5952
|
+
"data-testid": "header-action-item",
|
|
5953
|
+
disabled,
|
|
5954
|
+
button: true,
|
|
5955
|
+
onClick: (event) => {
|
|
5956
|
+
if (onClick) {
|
|
5957
|
+
onClick(event);
|
|
5958
|
+
}
|
|
5959
|
+
}
|
|
5960
|
+
}, icon && /* @__PURE__ */ React.createElement(ListItemIcon, null, icon), /* @__PURE__ */ React.createElement(ListItemText, {
|
|
5961
|
+
primary: label,
|
|
5962
|
+
secondary: secondaryLabel
|
|
5963
|
+
})));
|
|
5964
|
+
};
|
|
5965
|
+
function HeaderActionMenu(props) {
|
|
5966
|
+
const { actionItems } = props;
|
|
5967
|
+
const [open, setOpen] = React.useState(false);
|
|
5968
|
+
const anchorElRef = React.useRef(null);
|
|
5969
|
+
return /* @__PURE__ */ React.createElement(Fragment, null, /* @__PURE__ */ React.createElement(IconButton, {
|
|
5970
|
+
onClick: () => setOpen(true),
|
|
5971
|
+
"data-testid": "header-action-menu",
|
|
5972
|
+
ref: anchorElRef,
|
|
5973
|
+
style: {
|
|
5974
|
+
color: "white",
|
|
5975
|
+
height: 56,
|
|
5976
|
+
width: 56,
|
|
5977
|
+
marginRight: -4,
|
|
5978
|
+
padding: 0
|
|
5979
|
+
}
|
|
5980
|
+
}, /* @__PURE__ */ React.createElement(MoreVert, null)), /* @__PURE__ */ React.createElement(Popover, {
|
|
5981
|
+
open,
|
|
5982
|
+
anchorEl: anchorElRef.current,
|
|
5983
|
+
anchorOrigin: { horizontal: "right", vertical: "bottom" },
|
|
5984
|
+
transformOrigin: { horizontal: "right", vertical: "top" },
|
|
5985
|
+
onClose: () => setOpen(false)
|
|
5986
|
+
}, /* @__PURE__ */ React.createElement(List, null, actionItems.map((actionItem, i) => {
|
|
5987
|
+
return /* @__PURE__ */ React.createElement(ActionItem, {
|
|
5988
|
+
key: `header-action-menu-${i}`,
|
|
5989
|
+
...actionItem
|
|
5990
|
+
});
|
|
5991
|
+
}))));
|
|
5992
|
+
}
|
|
5993
|
+
|
|
5944
5994
|
const useStyles$4 = makeStyles(
|
|
5945
5995
|
(theme) => ({
|
|
5946
5996
|
root: {
|
|
@@ -6969,5 +7019,5 @@ function CardTab(props) {
|
|
|
6969
7019
|
});
|
|
6970
7020
|
}
|
|
6971
7021
|
|
|
6972
|
-
export { AlertDisplay, Avatar, BottomLink, Breadcrumbs, BrokenImageIcon, Button, CardTab, CatalogIcon, ChatIcon, CodeSnippet, Content, ContentHeader, CopyTextButton, CreateButton, DashboardIcon, DependencyGraph, types as DependencyGraphTypes, DismissableBanner, DocsIcon, EmailIcon, EmptyState, ErrorBoundary, ErrorPage, ErrorPanel, FeatureCalloutCircular, Gauge, GaugeCard, GitHubIcon, GroupIcon, Header, HeaderIconLinkRow, HeaderLabel, HeaderTabs, HelpIcon, HomepageTimer, HorizontalScrollGrid, InfoCard, IntroCard, ItemCard, ItemCardGrid, ItemCardHeader, Lifecycle, LinearGauge, Link, LogViewer, MarkdownContent, MissingAnnotationEmptyState, MobileSidebar, OAuthRequestDialog, OverflowTooltip, Page, PageWithHeader, Progress, ProxiedSignInPage, ResponseErrorPanel, RoutedTabs, SIDEBAR_INTRO_LOCAL_STORAGE, SelectComponent as Select, Sidebar, LegacySidebarContext as SidebarContext, SidebarDivider, SidebarExpandButton, SidebarGroup, SidebarIntro, SidebarItem, SidebarOpenStateProvider, SidebarPage, LegacySidebarPinStateContext as SidebarPinStateContext, SidebarPinStateProvider, SidebarScrollWrapper, SidebarSearchField, SidebarSpace, SidebarSpacer, SidebarSubmenu, SidebarSubmenuItem, SignInPage, SimpleStepper, SimpleStepperStep, StatusAborted, StatusError, StatusOK, StatusPending, StatusRunning, StatusWarning, StructuredMetadataTable, SubvalueCell, SupportButton, TabbedCard, TabbedLayout, Table, Tabs, TrendLine, UserIcon, UserIdentity, WarningIcon, WarningPanel, sidebarConfig, useContent, useQueryParamState, useSidebarOpenState, useSidebarPinState, useSupportConfig };
|
|
7022
|
+
export { AlertDisplay, Avatar, BottomLink, Breadcrumbs, BrokenImageIcon, Button, CardTab, CatalogIcon, ChatIcon, CodeSnippet, Content, ContentHeader, CopyTextButton, CreateButton, DashboardIcon, DependencyGraph, types as DependencyGraphTypes, DismissableBanner, DocsIcon, EmailIcon, EmptyState, ErrorBoundary, ErrorPage, ErrorPanel, FeatureCalloutCircular, Gauge, GaugeCard, GitHubIcon, GroupIcon, Header, HeaderActionMenu, HeaderIconLinkRow, HeaderLabel, HeaderTabs, HelpIcon, HomepageTimer, HorizontalScrollGrid, InfoCard, IntroCard, ItemCard, ItemCardGrid, ItemCardHeader, Lifecycle, LinearGauge, Link, LogViewer, MarkdownContent, MissingAnnotationEmptyState, MobileSidebar, OAuthRequestDialog, OverflowTooltip, Page, PageWithHeader, Progress, ProxiedSignInPage, ResponseErrorPanel, RoutedTabs, SIDEBAR_INTRO_LOCAL_STORAGE, SelectComponent as Select, Sidebar, LegacySidebarContext as SidebarContext, SidebarDivider, SidebarExpandButton, SidebarGroup, SidebarIntro, SidebarItem, SidebarOpenStateProvider, SidebarPage, LegacySidebarPinStateContext as SidebarPinStateContext, SidebarPinStateProvider, SidebarScrollWrapper, SidebarSearchField, SidebarSpace, SidebarSpacer, SidebarSubmenu, SidebarSubmenuItem, SignInPage, SimpleStepper, SimpleStepperStep, StatusAborted, StatusError, StatusOK, StatusPending, StatusRunning, StatusWarning, StructuredMetadataTable, SubvalueCell, SupportButton, TabbedCard, TabbedLayout, Table, Tabs, TrendLine, UserIcon, UserIdentity, WarningIcon, WarningPanel, sidebarConfig, useContent, useQueryParamState, useSidebarOpenState, useSidebarPinState, useSupportConfig };
|
|
6973
7023
|
//# sourceMappingURL=index.esm.js.map
|