import { useInputFocusWithoutScrollOnMount } from '@/ui/input/hooks/useInputFocusWithoutScrollOnMount'; import styled from '@emotion/styled'; import { forwardRef, InputHTMLAttributes } from 'react'; import { TEXT_INPUT_STYLE } from 'twenty-ui'; const StyledDropdownMenuSearchInputContainer = styled.div` align-items: center; --vertical-padding: ${({ theme }) => theme.spacing(2)}; border-radius: ${({ theme }) => theme.border.radius.sm}; display: flex; background: ${({ theme }) => theme.background.transparent.secondary}; backdrop-filter: ${({ theme }) => theme.blur.medium}; flex-direction: row; height: calc(36px - 2 * var(--vertical-padding)); padding: var(--vertical-padding) 0; width: 100%; `; const StyledInput = styled.input` ${TEXT_INPUT_STYLE} font-size: ${({ theme }) => theme.font.size.sm}; background-color: transparent; width: 100%; &[type='number']::-webkit-outer-spin-button, &[type='number']::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; } &[type='number'] { -moz-appearance: textfield; } `; export const DropdownMenuSearchInput = forwardRef< HTMLInputElement, InputHTMLAttributes >(({ value, onChange, placeholder = 'Search', type }, forwardedRef) => { const { inputRef } = useInputFocusWithoutScrollOnMount(); const ref = forwardedRef ?? inputRef; return ( ); });