@teamwork/autocomplete-ui-vue
Advanced tools
Comparing version 1.1.3 to 1.1.4
@@ -6,2 +6,13 @@ # Change Log | ||
## [1.1.4](https://github.com/Teamwork/autocomplete/compare/@teamwork/autocomplete-ui-vue@1.1.3...@teamwork/autocomplete-ui-vue@1.1.4) (2020-04-20) | ||
### Bug Fixes | ||
* use 1px margin for caret visibility ([af54c33](https://github.com/Teamwork/autocomplete/commit/af54c33278f4348f52ea56634708a0d683aaac72)) | ||
## [1.1.3](https://github.com/Teamwork/autocomplete/compare/@teamwork/autocomplete-ui-vue@1.1.2...@teamwork/autocomplete-ui-vue@1.1.3) (2020-04-20) | ||
@@ -8,0 +19,0 @@ |
@@ -60,6 +60,6 @@ import Vue from 'vue'; | ||
const editorPosition = this.editorPosition; | ||
return (caretPosition.top <= editorPosition.bottom && | ||
caretPosition.bottom >= editorPosition.top && | ||
caretPosition.left <= editorPosition.right && | ||
caretPosition.right >= editorPosition.left); | ||
return (caretPosition.top < editorPosition.bottom + 1 && | ||
caretPosition.bottom > editorPosition.top - 1 && | ||
caretPosition.left < editorPosition.right + 1 && | ||
caretPosition.right > editorPosition.left - 1); | ||
}, | ||
@@ -66,0 +66,0 @@ visible() { |
{ | ||
"name": "@teamwork/autocomplete-ui-vue", | ||
"version": "1.1.3", | ||
"version": "1.1.4", | ||
"description": "The autocomplete UI in Vue.", | ||
@@ -32,3 +32,3 @@ "keywords": [ | ||
}, | ||
"gitHead": "e79f47e4c6655b8d45e4838745e3ca26d857be47" | ||
"gitHead": "b1beecc41db2e2447f02a8a6182475592fb4d490" | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
19923