From 68cf3f113cacaf5727ac15785ab1596e0c39779f Mon Sep 17 00:00:00 2001 From: MT Lewis Date: Thu, 16 Apr 2026 12:59:49 +0100 Subject: [PATCH] ui: update api-report with new flex item props Signed-off-by: MT Lewis --- packages/ui/report.api.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/packages/ui/report.api.md b/packages/ui/report.api.md index 4856387abf..8a2d8ecddf 100644 --- a/packages/ui/report.api.md +++ b/packages/ui/report.api.md @@ -431,6 +431,9 @@ export const BoxDefinition: { 'py', 'position', 'display', + 'grow', + 'shrink', + 'basis', 'width', 'minWidth', 'maxWidth', @@ -452,6 +455,7 @@ export type BoxOwnProps = { // @public (undocumented) export interface BoxProps extends SpaceProps, + FlexItemProps, BoxOwnProps, BoxUtilityProps, Omit, 'children'> {} @@ -702,7 +706,9 @@ export const CardDefinition: { readonly target: {}; readonly rel: {}; readonly download: {}; + readonly style: {}; }; + readonly utilityProps: readonly ['grow', 'shrink', 'basis']; }; // @public @@ -790,6 +796,7 @@ export type CardOwnProps = Pick< // @public export type CardProps = CardBaseProps & + FlexItemProps & Omit, 'onClick'> & (CardButtonVariant | CardLinkVariant | CardStaticVariant); @@ -1315,12 +1322,25 @@ export const FlexDefinition: { 'align', 'justify', 'direction', + 'grow', + 'shrink', + 'basis', ]; }; // @public (undocumented) export type FlexDirection = 'row' | 'column'; +// @public (undocumented) +export interface FlexItemProps { + // (undocumented) + basis?: Responsive; + // (undocumented) + grow?: Responsive; + // (undocumented) + shrink?: Responsive; +} + // @public (undocumented) export type FlexOwnProps = { children: ReactNode; @@ -1332,6 +1352,7 @@ export type FlexOwnProps = { // @public (undocumented) export interface FlexProps extends SpaceProps, + FlexItemProps, FlexOwnProps, Omit, 'children'> { // (undocumented) @@ -1422,6 +1443,9 @@ export const GridDefinition: { 'pt', 'px', 'py', + 'grow', + 'shrink', + 'basis', ]; }; @@ -1478,6 +1502,7 @@ export type GridOwnProps = { // @public (undocumented) export interface GridProps extends SpaceProps, + FlexItemProps, GridOwnProps, Omit, 'children'> { // (undocumented)