UNPKG

@esri/calcite-components

Version:

Web Components for Esri's Calcite Design System.

24 lines (23 loc) 1.34 kB
export type Alignment = "start" | "center" | "end"; export type Appearance = "solid" | "outline" | "outline-fill" | "transparent"; export interface Dimensions { width: number; height: number; } export type FlipContext = "both" | "start" | "end"; export type Height = Scale; export type Kind = "brand" | "danger" | "info" | "inverse" | "neutral" | "warning" | "success"; export type Layout = "horizontal" | "vertical" | "grid" | "inline" | "center" | "auto" | "fixed" | "none" | "horizontal-single"; 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" | "top" | "bottom"; export type SelectionAppearance = "icon" | "border"; 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 = Scale | "auto" | "half" | "full"; export type IconType = "chevron" | "caret" | "ellipsis" | "overflow" | "plus-minus"; export type CollapseDirection = "down" | "up"; export type Dir = "ltr" | "rtl"; export type InteractionMode = "interactive" | "static";