@mythpe/quasar-ui-qui 0.0.94 → 0.0.96

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.0.94",
3
+ "version": "0.0.96",
4
4
  "description": "MyTh Quasar UI Kit App Extension",
5
5
  "author": {
6
6
  "name": "MyTh Ahmed Faiz",
@@ -76,7 +76,7 @@ const props = withDefaults(defineProps<P>(), {
76
76
  defineModel<Props['modelValue']>({ required: !1, default: undefined })
77
77
  const { __, props: pluginOptions } = useMyth()
78
78
  const helper = useBindInput<P>(() => props, 'file', () => ({ choose: !0 }))
79
- const { hasTopLabel, getLabel, getPlaceholder, accepts, inputRules, attrs } = helper
79
+ const { hasTopLabel, getLabel, getPlaceholder, accepts, inputRules } = helper
80
80
  const inputScope = useField<Props['modelValue']>(() => props.name, inputRules, {
81
81
  syncVModel: !0,
82
82
  label: getLabel,
@@ -141,8 +141,8 @@ defineOptions({
141
141
  clearable: viewMode ? !1 : clearable,
142
142
  error: !!errorMessage,
143
143
  errorMessage,
144
- hint: hint ? __(hint) || undefined,
145
- label: hasTopLabel ? undefined : ( getLabel || undefined),
144
+ hint: hint ? __(hint) : undefined,
145
+ label: hasTopLabel ? undefined : (getLabel || undefined),
146
146
  modelValue: value,
147
147
  placeholder: getPlaceholder,
148
148
  }"
@@ -11,7 +11,7 @@
11
11
  setup
12
12
  >
13
13
 
14
- import { computed, reactive } from 'vue'
14
+ import { computed } from 'vue'
15
15
  import type { MDialogProps as Props } from '../../types'
16
16
  import { useMyth } from '../../composable'
17
17