UNPKG

@awsui/components-react

Version:

On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en

17 lines 677 B
/** * The page height where the page is considered constrained. */ export declare const CONSTRAINED_PAGE_HEIGHT = 400; /** * Based on approximate height of breadcrumb, table header, and the first table row */ export declare const MAIN_PANEL_MIN_HEIGHT = 250; /** * Based on approximate height of app bar on comfortable mode on mobile. */ export declare const CONSTRAINED_MAIN_PANEL_MIN_HEIGHT = 40; /** * Estimate a default split panel size for the first render based on the document size. */ export declare function getSplitPanelDefaultSize(position: 'side' | 'bottom'): number; export declare function getLimitedValue(min: number, value: number, max: number): number;