bug(replays): Fix dead & rage click conditions - FE matches SDK (#55562)
These three places need to agree on:
1. what qualifies for dead-clicks (it should be `<a>`, `<button>`,
`<input type=submit>` and `<input type=button>`)
2. what the thresholds are
This PR aligns which elements we care about: FE now matches the SDK
The thresholds are already aligned on BE and FE
- endReason is 'timeout' based on the sdk config
- 5 clicks or more, then it's rageful
Related to https://github.com/getsentry/sentry/pull/55563
Fixes https://github.com/getsentry/team-replay/issues/152