mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
types(Picker): add PickerColumnProvide type (#10163)
This commit is contained in:
parent
a092ee3ad6
commit
b1638e6273
@ -188,15 +188,15 @@ export default defineComponent({
|
|||||||
};
|
};
|
||||||
|
|
||||||
const setValues = () => {
|
const setValues = () => {
|
||||||
let code = state.code || getDefaultCode();
|
|
||||||
const picker = pickerRef.value;
|
const picker = pickerRef.value;
|
||||||
const province = getColumnValues('province');
|
|
||||||
const city = getColumnValues('city', code.slice(0, 2));
|
|
||||||
|
|
||||||
if (!picker) {
|
if (!picker) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let code = state.code || getDefaultCode();
|
||||||
|
const province = getColumnValues('province');
|
||||||
|
const city = getColumnValues('city', code.slice(0, 2));
|
||||||
picker.setColumnValues(0, province);
|
picker.setColumnValues(0, province);
|
||||||
picker.setColumnValues(1, city);
|
picker.setColumnValues(1, city);
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
import { ref, watch, reactive, defineComponent } from 'vue';
|
import { ref, watch, reactive, defineComponent, type InjectionKey } from 'vue';
|
||||||
|
|
||||||
// Utils
|
// Utils
|
||||||
import { deepClone } from '../utils/deep-clone';
|
import { deepClone } from '../utils/deep-clone';
|
||||||
@ -20,7 +20,7 @@ import { useTouch } from '../composables/use-touch';
|
|||||||
import { useExpose } from '../composables/use-expose';
|
import { useExpose } from '../composables/use-expose';
|
||||||
|
|
||||||
// Types
|
// Types
|
||||||
import type { PickerOption } from './types';
|
import type { PickerOption, PickerColumnProvide } from './types';
|
||||||
|
|
||||||
const DEFAULT_DURATION = 200;
|
const DEFAULT_DURATION = 200;
|
||||||
|
|
||||||
@ -38,7 +38,7 @@ function getElementTranslateY(element: Element) {
|
|||||||
return Number(translateY);
|
return Number(translateY);
|
||||||
}
|
}
|
||||||
|
|
||||||
export const PICKER_KEY = Symbol(name);
|
export const PICKER_KEY: InjectionKey<PickerColumnProvide> = Symbol(name);
|
||||||
|
|
||||||
const isOptionDisabled = (option: PickerOption) =>
|
const isOptionDisabled = (option: PickerOption) =>
|
||||||
isObject(option) && option.disabled;
|
isObject(option) && option.disabled;
|
||||||
|
@ -44,4 +44,18 @@ export type PickerExpose = {
|
|||||||
setColumnValues: (index: number, options: PickerOption[]) => void;
|
setColumnValues: (index: number, options: PickerOption[]) => void;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
export type PickerColumnProvide = {
|
||||||
|
state: {
|
||||||
|
index: number;
|
||||||
|
offset: number;
|
||||||
|
duration: number;
|
||||||
|
options: PickerOption[];
|
||||||
|
};
|
||||||
|
setIndex: (index: number, emitChange?: boolean | undefined) => void;
|
||||||
|
getValue: () => PickerOption;
|
||||||
|
setValue: (value: string) => void;
|
||||||
|
setOptions: (options: PickerOption[]) => void;
|
||||||
|
stopMomentum: () => void;
|
||||||
|
};
|
||||||
|
|
||||||
export type PickerInstance = ComponentPublicInstance<PickerProps, PickerExpose>;
|
export type PickerInstance = ComponentPublicInstance<PickerProps, PickerExpose>;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user