Issue with Freshdesk component

Hi,

I have developed a custom app using Freshdesk UI components, where I am using <fw-input /> with the type set to “number.” While I can enter +, -, and numbers in the UI, the onInput event is only capturing the numeric values, excluding special characters like +. My use case requires users to enter phone numbers in a format like +911234566456, but the + symbol is being missed, which is causing a failure in our condition logic

<fw-input
                        value={condition[key] || ''}
                        type={fieldType}
                        onInput={e => handleSelect(e.target.value, index, key, logic)}
                        class="value-field"
                      />```