Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@teamwork/autocomplete-ui-vue

Package Overview
Dependencies
Maintainers
110
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@teamwork/autocomplete-ui-vue - npm Package Compare versions

Comparing version 1.1.3 to 1.1.4

11

CHANGELOG.md

@@ -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 @@

8

lib/TwAutocomplete.js

@@ -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"
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc