@antify/ui 4.1.29 → 4.1.30

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.
@@ -1,6 +1,6 @@
1
1
  <script lang="ts" setup>
2
2
  import {
3
- computed, onMounted, ref,
3
+ computed, nextTick, onMounted, ref,
4
4
  } from 'vue';
5
5
  import AntField from '../forms/AntField.vue';
6
6
  import AntBaseInput from './Elements/AntBaseInput.vue';
@@ -137,7 +137,7 @@ const onBlur = () => {
137
137
  :grouped="_nullable ? Grouped.left : Grouped.none"
138
138
  v-bind="$attrs"
139
139
  @blur="onBlur"
140
- @validate="val => $emit('validate', val)"
140
+ @validate="val => nextTick(() => $emit('validate', val))"
141
141
  >
142
142
  <template #icon-right>
143
143
  <AntIcon
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@antify/ui",
3
- "version": "4.1.29",
3
+ "version": "4.1.30",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "exports": {