Package-level declarations
Types
Link copied to clipboard
Link copied to clipboard
data class BorderRadius(val topLeft: Length? = null, val topRight: Length? = null, val bottomRight: Length? = null, val bottomLeft: Length? = null)
Corner radii (border-radius) as four explicit corners.
Link copied to clipboard
Link copied to clipboard
data class Breakpoint(val conditions: List<MediaQuery>, val nodes: Map<String, NodeProps>, val style: Map<String, Style>)
A single responsive breakpoint: overrides applied when its conditions match the viewport.
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
data class NodeProps(val id: String? = null, val className: List<String>? = null, val style: Style? = null, val onClick: Event? = null, val onFocus: Event? = null, val onBlur: Event? = null, val onChange: Event? = null, val extras: Map<String, <Error class: unknown class>> = emptyMap()) : Map<String, <Error class: unknown class>>
Link copied to clipboard
data class ObjectPosition(val horizontal: ObjectPosition.Horizontal, val vertical: ObjectPosition.Vertical)
Link copied to clipboard
data class Style(val position: Position? = null, val display: Display? = null, val boxSizing: BoxSizing? = null, val zIndex: Int? = null, val overflow: Overflow? = null, val top: Length? = null, val left: Length? = null, val bottom: Length? = null, val right: Length? = null, val flexDirection: FlexDirection? = null, val flexGrow: Double? = null, val flexShrink: Double? = null, val flexBasis: FlexBasis? = null, val justifyContent: JustifyContent? = null, val alignItems: AlignItems? = null, val alignSelf: AlignSelf? = null, val flexWrap: FlexWrap? = null, val gap: Length? = null, val rowGap: Length? = null, val columnGap: Length? = null, val order: Int? = null, val width: Length? = null, val maxWidth: Length? = null, val minWidth: Length? = null, val height: Length? = null, val maxHeight: Length? = null, val minHeight: Length? = null, val backgroundColor: Color? = null, val opacity: Double? = null, val padding: Spacing? = null, val margin: Spacing? = null, val borderWidth: Length? = null, val borderColor: Color? = null, val borderStyle: BorderStyle? = null, val borderRadius: BorderRadius? = null, val fontFamily: String? = null, val fontSize: Length? = null, val fontWeight: FontWeight? = null, val fontStyle: FontStyle? = null, val color: Color? = null, val textDecoration: TextDecoration? = null, val textAlign: TextAlign? = null, val textTransform: TextTransform? = null, val lineHeight: Double? = null, val letterSpacing: Length? = null, val objectFit: ObjectFit? = null, val objectPosition: ObjectPosition? = null, val textOverflow: TextOverflow? = null, val whiteSpace: WhiteSpace? = null)
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard