Skip to content

Commit

Permalink
fix(deps): remove textcomplete in favour of @textcomplete/core (same …
Browse files Browse the repository at this point in the history
…package, just refactored)
  • Loading branch information
julianlam committed Aug 18, 2022
1 parent 9e46dd2 commit b7bcc36
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
5 changes: 3 additions & 2 deletions install/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@
"dependencies": {
"@adactive/bootstrap-tagsinput": "0.8.2",
"@isaacs/ttlcache": "1.2.0",
"@textcomplete/contenteditable": "^0.1.12",
"@textcomplete/core": "^0.1.12",
"@textcomplete/textarea": "^0.1.12",
"ace-builds": "1.9.5",
"archiver": "5.3.1",
"async": "3.2.4",
Expand Down Expand Up @@ -129,8 +132,6 @@
"sortablejs": "1.15.0",
"spdx-license-list": "6.6.0",
"spider-detector": "2.0.0",
"textcomplete": "0.18.2",
"textcomplete.contenteditable": "0.1.1",
"timeago": "1.6.7",
"tinycon": "0.6.8",
"toobusy-js": "0.5.1",
Expand Down
25 changes: 25 additions & 0 deletions public/less/generics.less
Original file line number Diff line number Diff line change
Expand Up @@ -181,4 +181,29 @@
color: @gray-light;
width: 100%;
display: none;
}

.textcomplete-dropdown {
border: 1px solid #ddd;
background-color: white;
list-style: none;
padding: 0;
margin: 0;

li {
margin: 0;
}

.textcomplete-footer, .textcomplete-item {
border-top: 1px solid #ddd;
}

.textcomplete-item {
padding: 2px 5px;
cursor: pointer;

&:hover, &.active {
background-color: rgb(110, 183, 219);
}
}
}

0 comments on commit b7bcc36

Please sign in to comment.