UNPKG

@octopusdeploy/design-system-components

Version:
11 lines (10 loc) 500 B
import type { dialog } from "@octopusdeploy/design-system-tokens"; export declare const dialogBreakpoints: { laptop: string; tablet: string; mobile: string; }; export type DialogWidth = keyof typeof dialog.mainPanel.width; export type DialogWidthWithSidePanel = Exclude<DialogWidth, "extraLarge">; export declare function toSidePanelWidth(width: DialogWidth): DialogWidthWithSidePanel | undefined; export declare const dialogSidePanelBreakpoint: Record<DialogWidthWithSidePanel, string>;