@mythpe/quasar-ui-qui 0.1.39 → 0.1.40
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
|
@@ -43,7 +43,7 @@ type P = {
|
|
|
43
43
|
useInput?: Props['useInput'];
|
|
44
44
|
mapOptions?: Props['mapOptions'];
|
|
45
45
|
loading?: Props['loading'];
|
|
46
|
-
noLoading?:
|
|
46
|
+
noLoading?: Props['noLoading'];
|
|
47
47
|
multiple?: Props['multiple'];
|
|
48
48
|
options?: Props['options'];
|
|
49
49
|
optionLabel?: Props['optionLabel'];
|
|
@@ -59,7 +59,6 @@ type P = {
|
|
|
59
59
|
fieldOptions?: Props['fieldOptions'];
|
|
60
60
|
clearable?: Props['clearable'];
|
|
61
61
|
useChoice?: Props['useChoice'];
|
|
62
|
-
autoPrefix?: boolean;
|
|
63
62
|
}
|
|
64
63
|
|
|
65
64
|
const props = withDefaults(defineProps<P>(), {
|
|
@@ -103,8 +102,7 @@ const props = withDefaults(defineProps<P>(), {
|
|
|
103
102
|
onFilter: undefined,
|
|
104
103
|
fieldOptions: undefined,
|
|
105
104
|
clearable: undefined,
|
|
106
|
-
useChoice: undefined
|
|
107
|
-
autoPrefix: !0
|
|
105
|
+
useChoice: undefined
|
|
108
106
|
})
|
|
109
107
|
defineModel<Props['modelValue']>({ required: !1, default: undefined })
|
|
110
108
|
|
|
@@ -30,9 +30,9 @@ export interface MSelectProps extends Omit<QSelectProps, 'rules' | 'name' | 'mod
|
|
|
30
30
|
*/
|
|
31
31
|
axiosMode?: boolean | undefined;
|
|
32
32
|
/**
|
|
33
|
-
*
|
|
33
|
+
* dont use default loading slot.
|
|
34
34
|
*/
|
|
35
|
-
|
|
35
|
+
noLoading?: boolean;
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
type ItemsScope = { items: any[], value: any };
|