mirror of
https://github.com/prowler-cloud/prowler.git
synced 2026-07-13 15:41:52 +00:00
c58ca136f0
Co-authored-by: alejandrobailo <alejandrobailo94@gmail.com>
28 lines
520 B
TypeScript
28 lines
520 B
TypeScript
export const CHART_DIMENSIONS = {
|
|
defaultHeight: 400,
|
|
tooltipMinWidth: "200px",
|
|
borderRadius: "8px",
|
|
} as const;
|
|
|
|
export const SORT_OPTIONS = {
|
|
highLow: "high-low",
|
|
lowHigh: "low-high",
|
|
alphabetical: "alphabetical",
|
|
} as const;
|
|
|
|
export const DEFAULT_SORT_OPTION = SORT_OPTIONS.highLow;
|
|
|
|
export const SEVERITY_ORDER = {
|
|
Critical: 0,
|
|
High: 1,
|
|
Medium: 2,
|
|
Low: 3,
|
|
Informational: 4,
|
|
Info: 4,
|
|
} as const;
|
|
|
|
export const LAYOUT_OPTIONS = {
|
|
horizontal: "horizontal",
|
|
vertical: "vertical",
|
|
} as const;
|