MCPcopy Create free account
hub / github.com/react-component/select / onInternalKeyUp

Function onInternalKeyUp

src/BaseSelect/index.tsx:548–556  ·  view source on GitHub ↗
(event, ...rest)

Source from the content-addressed store, hash-verified

546
547 // KeyUp
548 const onInternalKeyUp: React.KeyboardEventHandler<HTMLDivElement> = (event, ...rest) => {
549 if (mergedOpen) {
550 listRef.current?.onKeyUp(event, ...rest);
551 }
552 if (event.key === 'Enter') {
553 keyLockRef.current = false;
554 }
555 onKeyUp?.(event, ...rest);
556 };
557
558 // ============================ Selector ============================
559 const onSelectorRemove = (val: DisplayValueType) => {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…