@fy-/fws-vue 0.2.5 → 0.2.6

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.
@@ -127,7 +127,7 @@ defineExpose({ focus, getInputRef });
127
127
  : undefined
128
128
  "
129
129
  v-if="
130
- type == 'text' ||
130
+ (type == 'text' && !mask) ||
131
131
  type == 'email' ||
132
132
  type == 'search' ||
133
133
  type == 'url' ||
@@ -148,7 +148,7 @@ defineExpose({ focus, getInputRef });
148
148
  ? `${id}-help`
149
149
  : undefined
150
150
  "
151
- v-if="type == 'mask'"
151
+ v-if="type == 'mask' || (type == 'text' && mask)"
152
152
  />
153
153
  <!-- @vue-skip -->
154
154
  <Textarea
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "0.2.5",
3
+ "version": "0.2.6",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "repository": {