@fy-/fws-vue 0.2.5 → 0.2.7
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.
- package/components/ui/DefaultInput.vue +2 -2
- package/index.ts +0 -12
- package/package.json +1 -1
|
@@ -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/index.ts
CHANGED
|
@@ -48,10 +48,6 @@ import FilterData from "./components/fws/FilterData.vue";
|
|
|
48
48
|
import CmsArticleBoxed from "./components/fws/CmsArticleBoxed.vue";
|
|
49
49
|
import CmsArticleSingle from "./components/fws/CmsArticleSingle.vue";
|
|
50
50
|
|
|
51
|
-
// Primevue
|
|
52
|
-
import Wind from "./presets/Wind";
|
|
53
|
-
import Lara from "./presets/Lara";
|
|
54
|
-
|
|
55
51
|
// Css
|
|
56
52
|
import "./style.css";
|
|
57
53
|
|
|
@@ -96,11 +92,6 @@ declare module "vue" {
|
|
|
96
92
|
}
|
|
97
93
|
}
|
|
98
94
|
|
|
99
|
-
const PrimevuePresets = {
|
|
100
|
-
Wind: Wind,
|
|
101
|
-
Lara: Lara,
|
|
102
|
-
} as Record<string, any>;
|
|
103
|
-
|
|
104
95
|
export {
|
|
105
96
|
i18nextPromise,
|
|
106
97
|
useTranslation,
|
|
@@ -141,7 +132,4 @@ export {
|
|
|
141
132
|
FilterData,
|
|
142
133
|
CmsArticleBoxed,
|
|
143
134
|
CmsArticleSingle,
|
|
144
|
-
|
|
145
|
-
// Primevue
|
|
146
|
-
PrimevuePresets,
|
|
147
135
|
};
|