Variable

TimecodeField

Compact timecode field parts. `TimecodeField.Root` owns editing state. `TimecodeField.Trigger` renders the compact displayed value, and `TimecodeField.Input` renders the temporary `TimecodeInput` used for typed edits.

Signature

Type Definition
TimecodeField: { Input: ForwardRefExoticComponent<TimecodeFieldInputProps & RefAttributes<HTMLInputElement>>; Root: ForwardRefExoticComponent<TimecodeFieldRootProps & RefAttributes<HTMLSpanElement>>; Trigger: ForwardRefExoticComponent<TimecodeFieldTriggerProps & RefAttributes<HTMLButtonElement>> }

Properties

NameSignatureDescription
InputInput: ForwardRefExoticComponent<TimecodeFieldInputProps & RefAttributes<HTMLInputElement>>Temporary `TimecodeInput` rendered while the field is actively editing.
RootRoot: ForwardRefExoticComponent<TimecodeFieldRootProps & RefAttributes<HTMLSpanElement>>Root state manager that swaps between compact display and typed editing.
TriggerTrigger: ForwardRefExoticComponent<TimecodeFieldTriggerProps & RefAttributes<HTMLButtonElement>>Button that displays the formatted timecode and starts editing on activation.