@fy-/fws-vue 0.3.43 → 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>
@@ -104,12 +103,10 @@ const removeTag = (index: number) => {
104
103
 
105
104
  const removeLastTag = () => {
106
105
  if (!textInput.value) return;
107
-
108
106
  if (textInput.value.innerText === "") {
109
107
  tags.value.pop();
110
108
  }
111
109
  };
112
-
113
110
  const focusInput = () => {
114
111
  if (!textInput.value) return;
115
112
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "0.3.43",
3
+ "version": "0.3.45",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "repository": {