Skip to content

LayoutProps

Defined in: ui/src/types.ts:113

Common layout props every element can accept (applied to its Yoga node).

optional alignSelf?: "stretch" | "auto" | "flex-start" | "center" | "flex-end" | "baseline"

Defined in: ui/src/types.ts:126


optional bottom?: PositionValue

Defined in: ui/src/types.ts:152

Offset from the containing block’s bottom edge — px or "<n>%" (only applies to position: "absolute").


optional flexBasis?: LayoutValue

Defined in: ui/src/types.ts:125


optional flexGrow?: number

Defined in: ui/src/types.ts:123


optional flexShrink?: number

Defined in: ui/src/types.ts:124


optional height?: LayoutValue

Defined in: ui/src/types.ts:115


optional left?: PositionValue

Defined in: ui/src/types.ts:146

Offset from the containing block’s left edge — px or "<n>%" (only applies to position: "absolute").


optional margin?: number | { bottom?: number; left?: number; right?: number; top?: number; }

Defined in: ui/src/types.ts:120


optional maxHeight?: LayoutValue

Defined in: ui/src/types.ts:119


optional maxWidth?: LayoutValue

Defined in: ui/src/types.ts:117


optional minHeight?: LayoutValue

Defined in: ui/src/types.ts:118


optional minWidth?: LayoutValue

Defined in: ui/src/types.ts:116


optional position?: "relative" | "absolute"

Defined in: ui/src/types.ts:144

Positioning mode for this element relative to its parent. Defaults to "relative" — the element flows in the parent’s flex layout. Set to "absolute" to lift the element out of the flow and pin it via left / top / right / bottom against the parent’s content box.

A position: "relative" ancestor acts as the containing block for any absolute-positioned descendants — useful for HUD overlays, modal backdrops, and badge markers. See <ZStack> in @yagejs/ui-react for an opinionated overlay primitive.


optional right?: PositionValue

Defined in: ui/src/types.ts:150

Offset from the containing block’s right edge — px or "<n>%" (only applies to position: "absolute").


optional top?: PositionValue

Defined in: ui/src/types.ts:148

Offset from the containing block’s top edge — px or "<n>%" (only applies to position: "absolute").


optional visible?: boolean

Defined in: ui/src/types.ts:153


optional width?: LayoutValue

Defined in: ui/src/types.ts:114