()
| 58 | const [selected, setSelected] = createSignal(0) |
| 59 | const [offset, setOffset] = createSignal(0) |
| 60 | const limit = () => input.limit ?? FOOTER_MENU_ROWS |
| 61 | const rows = createMemo(() => Math.max(1, Math.min(limit(), input.count()))) |
| 62 | |
| 63 | const reveal = (index: number) => { |
no outgoing calls
no test coverage detected