Skip to main content

Enumeration: BlurReconciliation

A strategy to focus a component's children as part of a blur reconciliation operation.

Enumeration Members

First

First = "First"

The component's first focus-able child will be focused.

Defined in

src/sdk/components/controls/HardwareUiControl.tsx:105


Last

Last = "Last"

The component's last focus-able child will be focused.

Defined in

src/sdk/components/controls/HardwareUiControl.tsx:108


Next

Next = "Next"

The component's next focus-able child after the child that was blurred will be focused. If no such child exists, then the last focus-able child before the child that was blurred will be focused.

Defined in

src/sdk/components/controls/HardwareUiControl.tsx:114


None

None = "None"

No child components will be focused.

Defined in

src/sdk/components/controls/HardwareUiControl.tsx:123


Prev

Prev = "Prev"

The component's last focus-able child before the child that was blurred will be focused. If no such child exists, then the next focus-able child after the child that was blurred will be focused.

Defined in

src/sdk/components/controls/HardwareUiControl.tsx:120