@mythpe/quasar-ui-qui 0.3.97 → 0.3.98

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": "@mythpe/quasar-ui-qui",
3
- "version": "0.3.97",
3
+ "version": "0.3.98",
4
4
  "description": "MyTh Quasar UI Kit App Extension",
5
5
  "author": {
6
6
  "name": "MyTh Ahmed Faiz",
@@ -98,13 +98,13 @@ const inputScope = useField<Props['modelValue']>(() => props.name, inputRules, {
98
98
  label: getLabel,
99
99
  ...toValue<any>(props.fieldOptions)
100
100
  })
101
- const { value, errorMessage, handleChange, handleBlur, setTouched } = inputScope
101
+ const { value, errorMessage, handleChange, handleBlur } = inputScope
102
102
 
103
103
  const listeners = {
104
104
  blur: (v: any) => handleBlur(v, !0),
105
105
  'update:modelValue': (v: Props['modelValue']) => {
106
106
  handleChange(v, !!errorMessage.value)
107
- setTouched(!0)
107
+ handleBlur(v, !0)
108
108
  }
109
109
  }
110
110
  const input = useTemplateRef<InstanceType<typeof QField> | InstanceType<typeof QOptionGroup>>('input')