@fy-/fws-vue 0.3.44 → 0.3.45

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -31,7 +31,6 @@
31
31
  ref="textInput"
32
32
  @input="handleInput"
33
33
  @paste.prevent="handlePaste"
34
- @keydown.delete="removeLastTag"
35
34
  placeholder="Add a tag..."
36
35
  ></div>
37
36
  </div>
@@ -106,8 +105,6 @@ const removeLastTag = () => {
106
105
  if (!textInput.value) return;
107
106
  if (textInput.value.innerText === "") {
108
107
  tags.value.pop();
109
- } else {
110
- textInput.value.innerText = textInput.value.innerText.slice(0, -1);
111
108
  }
112
109
  };
113
110
  const focusInput = () => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "0.3.44",
3
+ "version": "0.3.45",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "repository": {