@fy-/fws-vue 0.3.26 → 0.3.28

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.
@@ -107,7 +107,7 @@ defineExpose({ focus, blur, getInputRef });
107
107
  'select',
108
108
  'phone',
109
109
  'chips',
110
- 'opts',
110
+ 'tags',
111
111
  'mask',
112
112
  ].includes(type)
113
113
  "
@@ -153,13 +153,15 @@ defineExpose({ focus, blur, getInputRef });
153
153
  @blur="handleBlur"
154
154
  />
155
155
  </div>
156
- <div v-if="type == 'chips'">
156
+ <div v-if="type == 'chips' || type == 'tags'">
157
157
  <!-- @vue-skip -->
158
158
  <DefaultTagInput
159
159
  v-model="model"
160
160
  :id="id"
161
161
  :disabled="disabled"
162
162
  :color="color"
163
+ :error="checkErrors"
164
+ :help="help"
163
165
  />
164
166
  </div>
165
167
  <div class="group relative" v-else-if="type == 'textarea'">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "0.3.26",
3
+ "version": "0.3.28",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "repository": {