fix: blur & focus lose argumnet, close #5434
parent
0d06ce26ac
commit
fa76f5c480
|
@ -86,11 +86,11 @@ export default function generateRangePicker<DateType, ExtraProps = {}>(
|
||||||
emit('update:open', open);
|
emit('update:open', open);
|
||||||
emit('openChange', open);
|
emit('openChange', open);
|
||||||
};
|
};
|
||||||
const onFocus = () => {
|
const onFocus = (e: FocusEvent) => {
|
||||||
emit('focus');
|
emit('focus', e);
|
||||||
};
|
};
|
||||||
const onBlur = () => {
|
const onBlur = (e: FocusEvent) => {
|
||||||
emit('blur');
|
emit('blur', e);
|
||||||
formItemContext.onFieldBlur();
|
formItemContext.onFieldBlur();
|
||||||
};
|
};
|
||||||
const onPanelChange = (dates: RangeValue<DateType>, modes: [PanelMode, PanelMode]) => {
|
const onPanelChange = (dates: RangeValue<DateType>, modes: [PanelMode, PanelMode]) => {
|
||||||
|
|
|
@ -95,11 +95,11 @@ export default function generateSinglePicker<DateType, ExtraProps = {}>(
|
||||||
emit('update:open', open);
|
emit('update:open', open);
|
||||||
emit('openChange', open);
|
emit('openChange', open);
|
||||||
};
|
};
|
||||||
const onFocus = () => {
|
const onFocus = (e: FocusEvent) => {
|
||||||
emit('focus');
|
emit('focus', e);
|
||||||
};
|
};
|
||||||
const onBlur = () => {
|
const onBlur = (e: FocusEvent) => {
|
||||||
emit('blur');
|
emit('blur', e);
|
||||||
formItemContext.onFieldBlur();
|
formItemContext.onFieldBlur();
|
||||||
};
|
};
|
||||||
const onPanelChange = (date: DateType, mode: PanelMode | null) => {
|
const onPanelChange = (date: DateType, mode: PanelMode | null) => {
|
||||||
|
|
|
@ -64,14 +64,14 @@ const InputNumber = defineComponent({
|
||||||
emit('change', val);
|
emit('change', val);
|
||||||
formItemContext.onFieldChange();
|
formItemContext.onFieldChange();
|
||||||
};
|
};
|
||||||
const handleBlur = () => {
|
const handleBlur = (e: FocusEvent) => {
|
||||||
focused.value = false;
|
focused.value = false;
|
||||||
emit('blur');
|
emit('blur', e);
|
||||||
formItemContext.onFieldBlur();
|
formItemContext.onFieldBlur();
|
||||||
};
|
};
|
||||||
const handleFocus = () => {
|
const handleFocus = (e: FocusEvent) => {
|
||||||
focused.value = true;
|
focused.value = true;
|
||||||
emit('focus');
|
emit('focus', e);
|
||||||
};
|
};
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
nextTick(() => {
|
nextTick(() => {
|
||||||
|
|
|
@ -74,8 +74,8 @@ export const inputNumberProps = () => ({
|
||||||
(value: ValueType, info: { offset: ValueType; type: 'up' | 'down' }) => void
|
(value: ValueType, info: { offset: ValueType; type: 'up' | 'down' }) => void
|
||||||
>,
|
>,
|
||||||
},
|
},
|
||||||
onBlur: { type: Function as PropType<(e: InputEvent) => void> },
|
onBlur: { type: Function as PropType<(e: FocusEvent) => void> },
|
||||||
onFocus: { type: Function as PropType<(e: InputEvent) => void> },
|
onFocus: { type: Function as PropType<(e: FocusEvent) => void> },
|
||||||
});
|
});
|
||||||
|
|
||||||
export default defineComponent({
|
export default defineComponent({
|
||||||
|
@ -417,11 +417,11 @@ export default defineComponent({
|
||||||
};
|
};
|
||||||
|
|
||||||
// >>> Focus & Blur
|
// >>> Focus & Blur
|
||||||
const onBlur = () => {
|
const onBlur = (e: FocusEvent) => {
|
||||||
flushInputValue(false);
|
flushInputValue(false);
|
||||||
focus.value = false;
|
focus.value = false;
|
||||||
userTypingRef.value = false;
|
userTypingRef.value = false;
|
||||||
emit('blur');
|
emit('blur', e);
|
||||||
};
|
};
|
||||||
|
|
||||||
// ========================== Controlled ==========================
|
// ========================== Controlled ==========================
|
||||||
|
@ -557,9 +557,9 @@ export default defineComponent({
|
||||||
value={inputValue.value}
|
value={inputValue.value}
|
||||||
disabled={disabled}
|
disabled={disabled}
|
||||||
readonly={readonly}
|
readonly={readonly}
|
||||||
onFocus={() => {
|
onFocus={(e: FocusEvent) => {
|
||||||
focus.value = true;
|
focus.value = true;
|
||||||
emit('focus');
|
emit('focus', e);
|
||||||
}}
|
}}
|
||||||
onInput={onInternalInput}
|
onInput={onInternalInput}
|
||||||
onBlur={onBlur}
|
onBlur={onBlur}
|
||||||
|
|
|
@ -119,13 +119,13 @@ const Rate = defineComponent({
|
||||||
changeValue(isReset ? 0 : newValue);
|
changeValue(isReset ? 0 : newValue);
|
||||||
state.cleanedValue = isReset ? newValue : null;
|
state.cleanedValue = isReset ? newValue : null;
|
||||||
};
|
};
|
||||||
const onFocus = () => {
|
const onFocus = (e: FocusEvent) => {
|
||||||
state.focused = true;
|
state.focused = true;
|
||||||
emit('focus');
|
emit('focus', e);
|
||||||
};
|
};
|
||||||
const onBlur = () => {
|
const onBlur = (e: FocusEvent) => {
|
||||||
state.focused = false;
|
state.focused = false;
|
||||||
emit('blur');
|
emit('blur', e);
|
||||||
formItemContext.onFieldBlur();
|
formItemContext.onFieldBlur();
|
||||||
};
|
};
|
||||||
const onKeyDown = (event: KeyboardEvent) => {
|
const onKeyDown = (event: KeyboardEvent) => {
|
||||||
|
|
|
@ -113,8 +113,8 @@ const Slider = defineComponent({
|
||||||
emit('change', val);
|
emit('change', val);
|
||||||
formItemContext.onFieldChange();
|
formItemContext.onFieldChange();
|
||||||
};
|
};
|
||||||
const handleBlur = () => {
|
const handleBlur = (e: FocusEvent) => {
|
||||||
emit('blur');
|
emit('blur', e);
|
||||||
};
|
};
|
||||||
expose({
|
expose({
|
||||||
focus,
|
focus,
|
||||||
|
|
|
@ -115,8 +115,8 @@ const Switch = defineComponent({
|
||||||
formItemContext.onFieldChange();
|
formItemContext.onFieldChange();
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleBlur = () => {
|
const handleBlur = (e: FocusEvent) => {
|
||||||
emit('blur');
|
emit('blur', e);
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleClick = (e: MouseEvent) => {
|
const handleClick = (e: MouseEvent) => {
|
||||||
|
|
|
@ -104,11 +104,11 @@ function createTimePicker<
|
||||||
emit('update:open', open);
|
emit('update:open', open);
|
||||||
emit('openChange', open);
|
emit('openChange', open);
|
||||||
};
|
};
|
||||||
const onFocus = () => {
|
const onFocus = (e: FocusEvent) => {
|
||||||
emit('focus');
|
emit('focus', e);
|
||||||
};
|
};
|
||||||
const onBlur = () => {
|
const onBlur = (e: FocusEvent) => {
|
||||||
emit('blur');
|
emit('blur', e);
|
||||||
formItemContext.onFieldBlur();
|
formItemContext.onFieldBlur();
|
||||||
};
|
};
|
||||||
const onOk = (value: DateType) => {
|
const onOk = (value: DateType) => {
|
||||||
|
@ -174,11 +174,11 @@ function createTimePicker<
|
||||||
emit('update:open', open);
|
emit('update:open', open);
|
||||||
emit('openChange', open);
|
emit('openChange', open);
|
||||||
};
|
};
|
||||||
const onFocus = () => {
|
const onFocus = (e: FocusEvent) => {
|
||||||
emit('focus');
|
emit('focus', e);
|
||||||
};
|
};
|
||||||
const onBlur = () => {
|
const onBlur = (e: FocusEvent) => {
|
||||||
emit('blur');
|
emit('blur', e);
|
||||||
formItemContext.onFieldBlur();
|
formItemContext.onFieldBlur();
|
||||||
};
|
};
|
||||||
const onPanelChange = (
|
const onPanelChange = (
|
||||||
|
|
|
@ -159,8 +159,8 @@ const TreeSelect = defineComponent({
|
||||||
emit('update:searchValue', value);
|
emit('update:searchValue', value);
|
||||||
emit('search', value);
|
emit('search', value);
|
||||||
};
|
};
|
||||||
const handleBlur = () => {
|
const handleBlur = (e: FocusEvent) => {
|
||||||
emit('blur');
|
emit('blur', e);
|
||||||
formItemContext.onFieldBlur();
|
formItemContext.onFieldBlur();
|
||||||
};
|
};
|
||||||
return () => {
|
return () => {
|
||||||
|
|
Loading…
Reference in New Issue