diff options
author | Kuuuube <61125188+Kuuuube@users.noreply.github.com> | 2024-04-14 12:48:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-14 16:48:25 +0000 |
commit | 7df7e1b2bf475edd771a73a950004ab8d5f85ccb (patch) | |
tree | a4aa178c144780968477a105d29eeeffe215c7ed /types | |
parent | f2b3eb4eddb282d4eb88488b3dbc47c948891a6d (diff) |
Add scanOnTouchTap and improve touch scanning defaults (#791)24.4.14.0
* Add scanOnTouchTap
* Update version to 30
* Cleanup if statement
Diffstat (limited to 'types')
-rw-r--r-- | types/ext/settings.d.ts | 1 | ||||
-rw-r--r-- | types/ext/text-scanner.d.ts | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/types/ext/settings.d.ts b/types/ext/settings.d.ts index 45466c3d..8075476b 100644 --- a/types/ext/settings.d.ts +++ b/types/ext/settings.d.ts @@ -211,6 +211,7 @@ export type ScanningInputOptions = { scanOnTouchMove: boolean; scanOnTouchPress: boolean; scanOnTouchRelease: boolean; + scanOnTouchTap: boolean; scanOnPenMove: boolean; scanOnPenHover: boolean; scanOnPenReleaseHover: boolean; diff --git a/types/ext/text-scanner.d.ts b/types/ext/text-scanner.d.ts index 8acc780d..21ca8f24 100644 --- a/types/ext/text-scanner.d.ts +++ b/types/ext/text-scanner.d.ts @@ -60,6 +60,7 @@ export type InputOptions = { scanOnTouchMove: boolean; scanOnTouchPress: boolean; scanOnTouchRelease: boolean; + scanOnTouchTap: boolean; scanOnPenMove: boolean; scanOnPenHover: boolean; scanOnPenReleaseHover: boolean; @@ -84,6 +85,7 @@ export type InputConfig = { scanOnTouchMove: boolean; scanOnTouchPress: boolean; scanOnTouchRelease: boolean; + scanOnTouchTap: boolean; scanOnPenMove: boolean; scanOnPenHover: boolean; scanOnPenReleaseHover: boolean; |