import React, { useState } from 'react'; import { Input, Tooltip } from 'antd'; interface NumericInputProps { style: React.CSSProperties; value: string; onChange: (value: string) => void; } const formatNumber = (value: number) => new Intl.NumberFormat().format(value); const NumericInput = (props: NumericInputProps) => { const { value, onChange } = props; const handleChange = (e: React.ChangeEvent) => { const { value: inputValue } = e.target; const reg = /^-?\d*(\.\d*)?$/; if (reg.test(inputValue) || inputValue === '' || inputValue === '-') { onChange(inputValue); } }; // '.' at the end or only '-' in the input box. const handleBlur = () => { let valueTemp = value; if (value.charAt(value.length - 1) === '.' || value === '-') { valueTemp = value.slice(0, -1); } onChange(valueTemp.replace(/0*(\d+)/, '$1')); }; const title = value ? ( {value !== '-' ? formatNumber(Number(value)) : '-'} ) : ( 'Input a number' ); return ( ); }; const App: React.FC = () => { const [value, setValue] = useState(''); return ; }; export default App;