@octopusdeploy/design-system-components
Version:
The design systems component library.
11 lines (10 loc) • 500 B
TypeScript
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>;