fix(tracker): fix time inputs capturing
This commit is contained in:
parent
e0f7522752
commit
8016ad0565
3 changed files with 16 additions and 2 deletions
|
|
@ -1,3 +1,7 @@
|
|||
# 7.0.1
|
||||
|
||||
- fix time inputs capturing
|
||||
|
||||
# 7.0.0
|
||||
|
||||
- **[breaking]** added gzip compression to large messages
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "@openreplay/tracker",
|
||||
"description": "The OpenReplay tracker main package",
|
||||
"version": "7.0.0",
|
||||
"version": "7.0.1",
|
||||
"keywords": [
|
||||
"logging",
|
||||
"replay"
|
||||
|
|
|
|||
|
|
@ -3,7 +3,17 @@ import { normSpaces, IN_BROWSER, getLabelAttribute, now } from '../utils.js'
|
|||
import { hasTag } from '../app/guards.js'
|
||||
import { InputChange, SetInputValue, SetInputChecked } from '../app/messages.gen.js'
|
||||
|
||||
const INPUT_TYPES = ['text', 'password', 'email', 'search', 'number', 'range', 'date', 'tel']
|
||||
const INPUT_TYPES = [
|
||||
'text',
|
||||
'password',
|
||||
'email',
|
||||
'search',
|
||||
'number',
|
||||
'range',
|
||||
'date',
|
||||
'tel',
|
||||
'time',
|
||||
]
|
||||
|
||||
// TODO: take into consideration "contenteditable" attribute
|
||||
type TextFieldElement = HTMLInputElement | HTMLTextAreaElement
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue