wave-ui 1.45.8 → 1.45.12

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wave-ui",
3
- "version": "1.45.8",
3
+ "version": "1.45.12",
4
4
  "description": "An emerging UI framework for Vue.js & Vue 3 with only the bright side. :sunny:",
5
5
  "author": "Antoni Andre <antoniandre.web@gmail.com>",
6
6
  "main": "./dist/wave-ui.umd.js",
@@ -287,7 +287,9 @@ export default {
287
287
 
288
288
  mounted () {
289
289
  // On page load, check if the field is autofilled by the browser.
290
- if (this.$refs.input.value) this.isAutofilled = true
290
+ this.$nextTick(() => {
291
+ if (this.$refs.input.matches(':-webkit-autofill')) this.isAutofilled = true
292
+ })
291
293
  },
292
294
 
293
295
  watch: {