UNPKG

@esri/calcite-components

Version:

Web Components for Esri's Calcite Design System.

15 lines (14 loc) 914 B
export type Alignment = "start" | "center" | "end"; export type Appearance = "outline" | "outline-fill" | "solid" | "transparent"; export type Columns = 1 | 2 | 3 | 4 | 5 | 6; export type FlipContext = "both" | "start" | "end"; export type Kind = "brand" | "danger" | "info" | "inverse" | "neutral" | "warning" | "success"; export type Layout = "horizontal" | "vertical" | "grid"; export type LogicalFlowPosition = "inline-start" | "inline-end" | "block-start" | "block-end"; export type ModeClass = "calcite-mode-light" | "calcite-mode-dark" | "calcite-mode-auto"; export type ModeName = "light" | "dark" | "auto"; export type Position = "start" | "end"; export type SelectionMode = "single" | "none" | "children" | "single-persist" | "multichildren" | "ancestors" | "multiple"; export type Scale = "s" | "m" | "l"; export type Status = "invalid" | "valid" | "idle"; export type Width = "auto" | "half" | "full";