Add report + changeset

Signed-off-by: Charles de Dreuille <charles.dedreuille@gmail.com>
This commit is contained in:
Charles de Dreuille
2026-02-12 21:49:32 +00:00
parent a8ac56ed04
commit 644e30343f
3 changed files with 30 additions and 1 deletions
+14
View File
@@ -0,0 +1,14 @@
---
'@backstage/ui': patch
---
Added a new `FullPage` component that fills the remaining viewport height below the `Header`.
```tsx
<Header title="My Plugin" tabs={tabs} />
<FullPage>
{/* content fills remaining height */}
</FullPage>
```
**Affected components:** FullPage
+16
View File
@@ -979,6 +979,21 @@ export interface FlexProps extends SpaceProps {
// @public (undocumented)
export type FlexWrap = 'wrap' | 'nowrap' | 'wrap-reverse';
// @public
export const FullPage: ForwardRefExoticComponent<
FullPageProps & RefAttributes<HTMLElement>
>;
// @public
export const FullPageDefinition: {
readonly classNames: {
readonly root: 'bui-FullPage';
};
};
// @public
export interface FullPageProps extends React.ComponentPropsWithoutRef<'main'> {}
// @public (undocumented)
export const Grid: {
Root: ForwardRefExoticComponent<GridProps & RefAttributes<HTMLDivElement>>;
@@ -1082,6 +1097,7 @@ export const Header: (props: HeaderProps) => JSX_2.Element;
// @public
export const HeaderDefinition: {
readonly classNames: {
readonly root: 'bui-Header';
readonly toolbar: 'bui-HeaderToolbar';
readonly toolbarWrapper: 'bui-HeaderToolbarWrapper';
readonly toolbarContent: 'bui-HeaderToolbarContent';
@@ -88,7 +88,6 @@
}
.bui-HeaderTabsWrapper {
margin-bottom: var(--bui-space-4);
padding-inline: var(--bui-space-3);
border-bottom: 1px solid var(--bui-border);
background-color: var(--bui-bg-neutral-1);