@fy-/fws-vue 0.1.9 → 0.2.0
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 +1 -0
- package/index.ts +2 -2
- package/package.json +1 -1
|
@@ -114,6 +114,7 @@ defineExpose({ focus, getInputRef });
|
|
|
114
114
|
v-model="model"
|
|
115
115
|
:placeholder="placeholder"
|
|
116
116
|
:invalid="checkErrors ? true : false"
|
|
117
|
+
:pt:root:autocomplete="autocomplete"
|
|
117
118
|
:aria-describedby="
|
|
118
119
|
help && !['checkbox', 'radio'].includes(type)
|
|
119
120
|
? `${id}-help`
|
package/index.ts
CHANGED
|
@@ -97,7 +97,7 @@ declare module "vue" {
|
|
|
97
97
|
}
|
|
98
98
|
}
|
|
99
99
|
|
|
100
|
-
const
|
|
100
|
+
const PrimevuePresets = {
|
|
101
101
|
Wind: Wind,
|
|
102
102
|
Lara: Lara,
|
|
103
103
|
} as Record<string, any>;
|
|
@@ -145,5 +145,5 @@ export {
|
|
|
145
145
|
CmsArticleSingle,
|
|
146
146
|
|
|
147
147
|
// Primevue
|
|
148
|
-
|
|
148
|
+
PrimevuePresets,
|
|
149
149
|
};
|