@fy-/fws-vue 0.1.8 → 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.
@@ -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`
@@ -164,7 +165,6 @@ defineExpose({ focus, getInputRef });
164
165
  showTime
165
166
  hourFormat="24"
166
167
  showIcon
167
- dateFormat="dd/mm/yy"
168
168
  :aria-describedby="
169
169
  help && !['checkbox', 'radio'].includes(type)
170
170
  ? `${id}-help`
package/index.ts CHANGED
@@ -97,7 +97,7 @@ declare module "vue" {
97
97
  }
98
98
  }
99
99
 
100
- const Primevue = {
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
- Primevue,
148
+ PrimevuePresets,
149
149
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "0.1.8",
3
+ "version": "0.2.0",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "repository": {