Skip to main content

Enumeration: BlurReconciliation

Defined in: src/sdk/components/controls/HardwareUiControl.tsx:103

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

Enumeration Members

First

First: "First"

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

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


Last

Last: "Last"

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

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


Next

Next: "Next"

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

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.


None

None: "None"

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

No child components will be focused.


Prev

Prev: "Prev"

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

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.