@data-fair/lib-vuetify 1.12.1 → 1.12.2
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 +1 -1
- package/search-address.vue +1 -1
- package/search-address.vue.d.ts +13 -10
- package/search-address.vue.js +10 -4
package/package.json
CHANGED
package/search-address.vue
CHANGED
|
@@ -24,7 +24,7 @@ import { ref, watch } from 'vue'
|
|
|
24
24
|
import { ofetch } from 'ofetch'
|
|
25
25
|
import { useDebounceFn } from '@vueuse/core'
|
|
26
26
|
|
|
27
|
-
defineProps
|
|
27
|
+
defineProps({variant: String as () => VAutocomplete['variant']})
|
|
28
28
|
const emit = defineEmits(['selected'])
|
|
29
29
|
const model = defineModel({ type: String })
|
|
30
30
|
|
package/search-address.vue.d.ts
CHANGED
|
@@ -1,14 +1,17 @@
|
|
|
1
1
|
import type { VAutocomplete } from 'vuetify/components/VAutocomplete';
|
|
2
|
-
declare
|
|
3
|
-
variant
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
} & typeof __VLS_typeProps;
|
|
9
|
-
declare const _default: import("vue").DefineComponent<__VLS_PublicProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
2
|
+
declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
|
|
3
|
+
variant: () => VAutocomplete["variant"];
|
|
4
|
+
modelValue: {
|
|
5
|
+
type: import("vue").PropType<string>;
|
|
6
|
+
};
|
|
7
|
+
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
10
8
|
selected: (...args: any[]) => void;
|
|
11
|
-
}, string, import("vue").PublicProps, Readonly<
|
|
9
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
10
|
+
variant: () => VAutocomplete["variant"];
|
|
11
|
+
modelValue: {
|
|
12
|
+
type: import("vue").PropType<string>;
|
|
13
|
+
};
|
|
14
|
+
}>> & Readonly<{
|
|
12
15
|
onSelected?: ((...args: any[]) => any) | undefined;
|
|
13
|
-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions,
|
|
16
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
14
17
|
export default _default;
|
package/search-address.vue.js
CHANGED
|
@@ -3,8 +3,7 @@ import { ref, watch } from 'vue';
|
|
|
3
3
|
import { ofetch } from 'ofetch';
|
|
4
4
|
import { useDebounceFn } from '@vueuse/core';
|
|
5
5
|
const { defineProps, defineSlots, defineEmits, defineExpose, defineModel, defineOptions, withDefaults, } = await import('vue');
|
|
6
|
-
|
|
7
|
-
const __VLS_props = defineProps();
|
|
6
|
+
const __VLS_props = defineProps({ variant: String });
|
|
8
7
|
const emit = defineEmits(['selected']);
|
|
9
8
|
const model = defineModel({ type: String });
|
|
10
9
|
const addressesList = ref([]);
|
|
@@ -48,6 +47,7 @@ watch(address, (addr) => {
|
|
|
48
47
|
emit('selected', addr ? addr.value : undefined);
|
|
49
48
|
});
|
|
50
49
|
const __VLS_fnComponent = (await import('vue')).defineComponent({
|
|
50
|
+
props: { variant: String },
|
|
51
51
|
emits: {
|
|
52
52
|
...{},
|
|
53
53
|
...{},
|
|
@@ -107,7 +107,10 @@ const __VLS_self = (await import('vue')).defineComponent({
|
|
|
107
107
|
...{},
|
|
108
108
|
...{},
|
|
109
109
|
},
|
|
110
|
-
|
|
110
|
+
props: {
|
|
111
|
+
...{},
|
|
112
|
+
...{ variant: String },
|
|
113
|
+
},
|
|
111
114
|
});
|
|
112
115
|
export default (await import('vue')).defineComponent({
|
|
113
116
|
setup() {
|
|
@@ -117,7 +120,10 @@ export default (await import('vue')).defineComponent({
|
|
|
117
120
|
...{},
|
|
118
121
|
...{},
|
|
119
122
|
},
|
|
120
|
-
|
|
123
|
+
props: {
|
|
124
|
+
...{},
|
|
125
|
+
...{ variant: String },
|
|
126
|
+
},
|
|
121
127
|
});
|
|
122
128
|
;
|
|
123
129
|
//# sourceMappingURL=search-address.vue.js.map
|