mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
chore: bump Vue 3.2 and remove event shim (#9218)
This commit is contained in:
parent
ac2940a365
commit
9025d3b4e3
@ -61,8 +61,8 @@
|
||||
"devDependencies": {
|
||||
"@vant/cli": "^3.11.2",
|
||||
"@vant/area-data": "^1.1.1",
|
||||
"@vue/compiler-sfc": "^3.1.5",
|
||||
"vue": "^3.1.5"
|
||||
"@vue/compiler-sfc": "^3.2.1",
|
||||
"vue": "^3.2.1"
|
||||
},
|
||||
"sideEffects": [
|
||||
"es/**/style/*",
|
||||
|
@ -372,7 +372,7 @@ export default defineComponent({
|
||||
onBlur={onDetailBlur}
|
||||
onFocus={() => onFocus('addressDetail')}
|
||||
onInput={onChangeDetail}
|
||||
onSelectSearch={(event: Event) => emit('select-search', event)}
|
||||
onSelect-search={(event: Event) => emit('select-search', event)}
|
||||
/>
|
||||
{props.showPostal && (
|
||||
<Field
|
||||
|
@ -293,7 +293,7 @@ export default defineComponent({
|
||||
emit('confirm', parseValues(values), index);
|
||||
};
|
||||
|
||||
const onCancel = () => emit('cancel');
|
||||
const onCancel = (...args: unknown[]) => emit('cancel', ...args);
|
||||
|
||||
onMounted(setValues);
|
||||
|
||||
|
@ -281,7 +281,7 @@ export default defineComponent({
|
||||
color={props.activeColor}
|
||||
swipeThreshold={0}
|
||||
swipeable={props.swipeable}
|
||||
onClickTab={onClickTab}
|
||||
onClick-tab={onClickTab}
|
||||
>
|
||||
{state.tabs.map(renderTab)}
|
||||
</Tabs>
|
||||
|
@ -23,7 +23,7 @@ test('should emit click-step event when step is clicked', () => {
|
||||
const wrapper = mount({
|
||||
setup() {
|
||||
return () => (
|
||||
<Steps active={1} onClickStep={onClickStep}>
|
||||
<Steps active={1} onClick-step={onClickStep}>
|
||||
<Step>A</Step>
|
||||
<Step>B</Step>
|
||||
<Step>C</Step>
|
||||
|
27
src/vue-tsx-shim.d.ts
vendored
27
src/vue-tsx-shim.d.ts
vendored
@ -6,37 +6,10 @@ declare module 'vue' {
|
||||
interface ComponentCustomProps {
|
||||
role?: string;
|
||||
tabindex?: number;
|
||||
// should be removed after Vue supported component events typing
|
||||
// see: https://github.com/vuejs/vue-next/issues/1553
|
||||
// https://github.com/vuejs/vue-next/issues/3029
|
||||
onBlur?: EventHandler;
|
||||
onOpen?: EventHandler;
|
||||
onEdit?: EventHandler;
|
||||
onLoad?: EventHandler;
|
||||
onClose?: EventHandler;
|
||||
onFocus?: EventHandler;
|
||||
onInput?: EventHandler;
|
||||
onClick?: EventHandler;
|
||||
onPress?: EventHandler;
|
||||
onScale?: EventHandler;
|
||||
onCancel?: EventHandler;
|
||||
onClosed?: EventHandler;
|
||||
onChange?: EventHandler;
|
||||
onDelete?: EventHandler;
|
||||
onOpened?: EventHandler;
|
||||
onScroll?: EventHandler;
|
||||
onSubmit?: EventHandler;
|
||||
onSelect?: EventHandler;
|
||||
onToggle?: EventHandler;
|
||||
onConfirm?: EventHandler;
|
||||
onPreview?: EventHandler;
|
||||
onKeypress?: EventHandler;
|
||||
onTouchend?: EventHandler;
|
||||
onClickTab?: EventHandler;
|
||||
onClickStep?: EventHandler;
|
||||
onTouchmove?: EventHandler;
|
||||
onTouchstart?: EventHandler;
|
||||
onTouchcancel?: EventHandler;
|
||||
onSelectSearch?: EventHandler;
|
||||
}
|
||||
}
|
||||
|
106
yarn.lock
106
yarn.lock
@ -2040,37 +2040,37 @@
|
||||
html-tags "^3.1.0"
|
||||
svg-tags "^1.0.0"
|
||||
|
||||
"@vue/compiler-core@3.1.5":
|
||||
version "3.1.5"
|
||||
resolved "https://registry.nlark.com/@vue/compiler-core/download/@vue/compiler-core-3.1.5.tgz?cache=0&sync_timestamp=1627084218528&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fcompiler-core%2Fdownload%2F%40vue%2Fcompiler-core-3.1.5.tgz#298f905b6065d6d81ff63756f98c60876b393c87"
|
||||
integrity sha1-KY+QW2Bl1tgf9jdW+Yxgh2s5PIc=
|
||||
"@vue/compiler-core@3.2.1":
|
||||
version "3.2.1"
|
||||
resolved "https://registry.nlark.com/@vue/compiler-core/download/@vue/compiler-core-3.2.1.tgz#8e13232f7aef8e308fb2d4a10571a5640257064b"
|
||||
integrity sha1-jhMjL3rvjjCPstShBXGlZAJXBks=
|
||||
dependencies:
|
||||
"@babel/parser" "^7.12.0"
|
||||
"@babel/types" "^7.12.0"
|
||||
"@vue/shared" "3.1.5"
|
||||
"@vue/shared" "3.2.1"
|
||||
estree-walker "^2.0.1"
|
||||
source-map "^0.6.1"
|
||||
|
||||
"@vue/compiler-dom@3.1.5":
|
||||
version "3.1.5"
|
||||
resolved "https://registry.nlark.com/@vue/compiler-dom/download/@vue/compiler-dom-3.1.5.tgz?cache=0&sync_timestamp=1627084219372&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fcompiler-dom%2Fdownload%2F%40vue%2Fcompiler-dom-3.1.5.tgz#cbb97020c62a5faa3fbc2a97916bd98041ac9856"
|
||||
integrity sha1-y7lwIMYqX6o/vCqXkWvZgEGsmFY=
|
||||
"@vue/compiler-dom@3.2.1":
|
||||
version "3.2.1"
|
||||
resolved "https://registry.nlark.com/@vue/compiler-dom/download/@vue/compiler-dom-3.2.1.tgz#5cc68873f1928c7b9aee8c8a2846f7f362cb1ab9"
|
||||
integrity sha1-XMaIc/GSjHua7oyKKEb382LLGrk=
|
||||
dependencies:
|
||||
"@vue/compiler-core" "3.1.5"
|
||||
"@vue/shared" "3.1.5"
|
||||
"@vue/compiler-core" "3.2.1"
|
||||
"@vue/shared" "3.2.1"
|
||||
|
||||
"@vue/compiler-sfc@^3.1.5":
|
||||
version "3.1.5"
|
||||
resolved "https://registry.nlark.com/@vue/compiler-sfc/download/@vue/compiler-sfc-3.1.5.tgz?cache=0&sync_timestamp=1627084192687&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fcompiler-sfc%2Fdownload%2F%40vue%2Fcompiler-sfc-3.1.5.tgz#e61e54f3a963b0f4a8e523fbb8632390dc52b0d6"
|
||||
integrity sha1-5h5U86ljsPSo5SP7uGMjkNxSsNY=
|
||||
"@vue/compiler-sfc@^3.2.1":
|
||||
version "3.2.1"
|
||||
resolved "https://registry.nlark.com/@vue/compiler-sfc/download/@vue/compiler-sfc-3.2.1.tgz#7809b298cf0fbce62a2c628b7dfc1e82dd9a3a9b"
|
||||
integrity sha1-eAmymM8PvOYqLGKLffwegt2aOps=
|
||||
dependencies:
|
||||
"@babel/parser" "^7.13.9"
|
||||
"@babel/types" "^7.13.0"
|
||||
"@types/estree" "^0.0.48"
|
||||
"@vue/compiler-core" "3.1.5"
|
||||
"@vue/compiler-dom" "3.1.5"
|
||||
"@vue/compiler-ssr" "3.1.5"
|
||||
"@vue/shared" "3.1.5"
|
||||
"@vue/compiler-core" "3.2.1"
|
||||
"@vue/compiler-dom" "3.2.1"
|
||||
"@vue/compiler-ssr" "3.2.1"
|
||||
"@vue/shared" "3.2.1"
|
||||
consolidate "^0.16.0"
|
||||
estree-walker "^2.0.1"
|
||||
hash-sum "^2.0.0"
|
||||
@ -2082,42 +2082,42 @@
|
||||
postcss-selector-parser "^6.0.4"
|
||||
source-map "^0.6.1"
|
||||
|
||||
"@vue/compiler-ssr@3.1.5":
|
||||
version "3.1.5"
|
||||
resolved "https://registry.nlark.com/@vue/compiler-ssr/download/@vue/compiler-ssr-3.1.5.tgz?cache=0&sync_timestamp=1627084220709&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fcompiler-ssr%2Fdownload%2F%40vue%2Fcompiler-ssr-3.1.5.tgz#f068652774293256a1e53084bed48a67682df9d2"
|
||||
integrity sha1-8GhlJ3QpMlah5TCEvtSKZ2gt+dI=
|
||||
"@vue/compiler-ssr@3.2.1":
|
||||
version "3.2.1"
|
||||
resolved "https://registry.nlark.com/@vue/compiler-ssr/download/@vue/compiler-ssr-3.2.1.tgz#f900762f83482e44e9260c2322e3d332c711826c"
|
||||
integrity sha1-+QB2L4NILkTpJgwjIuPTMscRgmw=
|
||||
dependencies:
|
||||
"@vue/compiler-dom" "3.1.5"
|
||||
"@vue/shared" "3.1.5"
|
||||
"@vue/compiler-dom" "3.2.1"
|
||||
"@vue/shared" "3.2.1"
|
||||
|
||||
"@vue/reactivity@3.1.5":
|
||||
version "3.1.5"
|
||||
resolved "https://registry.nlark.com/@vue/reactivity/download/@vue/reactivity-3.1.5.tgz?cache=0&sync_timestamp=1627084200959&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Freactivity%2Fdownload%2F%40vue%2Freactivity-3.1.5.tgz#dbec4d9557f7c8f25c2635db1e23a78a729eb991"
|
||||
integrity sha1-2+xNlVf3yPJcJjXbHiOninKeuZE=
|
||||
"@vue/reactivity@3.2.1":
|
||||
version "3.2.1"
|
||||
resolved "https://registry.nlark.com/@vue/reactivity/download/@vue/reactivity-3.2.1.tgz#0e71d4ee00b0d0ca6a6141966c30b68b3f685002"
|
||||
integrity sha1-DnHU7gCw0MpqYUGWbDC2iz9oUAI=
|
||||
dependencies:
|
||||
"@vue/shared" "3.1.5"
|
||||
"@vue/shared" "3.2.1"
|
||||
|
||||
"@vue/runtime-core@3.1.5":
|
||||
version "3.1.5"
|
||||
resolved "https://registry.nlark.com/@vue/runtime-core/download/@vue/runtime-core-3.1.5.tgz?cache=0&sync_timestamp=1627084215662&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fruntime-core%2Fdownload%2F%40vue%2Fruntime-core-3.1.5.tgz#a545b7f146092929cb5e833e85439150f17ac87b"
|
||||
integrity sha1-pUW38UYJKSnLXoM+hUORUPF6yHs=
|
||||
"@vue/runtime-core@3.2.1":
|
||||
version "3.2.1"
|
||||
resolved "https://registry.nlark.com/@vue/runtime-core/download/@vue/runtime-core-3.2.1.tgz#39641110b2f84fdda3b80b86830827b7b5ef041a"
|
||||
integrity sha1-OWQRELL4T92juAuGgwgnt7XvBBo=
|
||||
dependencies:
|
||||
"@vue/reactivity" "3.1.5"
|
||||
"@vue/shared" "3.1.5"
|
||||
"@vue/reactivity" "3.2.1"
|
||||
"@vue/shared" "3.2.1"
|
||||
|
||||
"@vue/runtime-dom@3.1.5":
|
||||
version "3.1.5"
|
||||
resolved "https://registry.nlark.com/@vue/runtime-dom/download/@vue/runtime-dom-3.1.5.tgz?cache=0&sync_timestamp=1627084217090&other_urls=https%3A%2F%2Fregistry.nlark.com%2F%40vue%2Fruntime-dom%2Fdownload%2F%40vue%2Fruntime-dom-3.1.5.tgz#4fa28947d408aa368fa17ea0edc1beb9af1472a1"
|
||||
integrity sha1-T6KJR9QIqjaPoX6g7cG+ua8UcqE=
|
||||
"@vue/runtime-dom@3.2.1":
|
||||
version "3.2.1"
|
||||
resolved "https://registry.nlark.com/@vue/runtime-dom/download/@vue/runtime-dom-3.2.1.tgz#087cf36f40ad0869712c4154693c620e478061a8"
|
||||
integrity sha1-CHzzb0CtCGlxLEFUaTxiDkeAYag=
|
||||
dependencies:
|
||||
"@vue/runtime-core" "3.1.5"
|
||||
"@vue/shared" "3.1.5"
|
||||
"@vue/runtime-core" "3.2.1"
|
||||
"@vue/shared" "3.2.1"
|
||||
csstype "^2.6.8"
|
||||
|
||||
"@vue/shared@3.1.5":
|
||||
version "3.1.5"
|
||||
resolved "https://registry.nlark.com/@vue/shared/download/@vue/shared-3.1.5.tgz#74ee3aad995d0a3996a6bb9533d4d280514ede03"
|
||||
integrity sha1-dO46rZldCjmWpruVM9TSgFFO3gM=
|
||||
"@vue/shared@3.2.1":
|
||||
version "3.2.1"
|
||||
resolved "https://registry.nlark.com/@vue/shared/download/@vue/shared-3.2.1.tgz#1f1fe26fe0334404cce10740b5ffb2654f1281aa"
|
||||
integrity sha1-Hx/ib+AzRATM4QdAtf+yZU8Sgao=
|
||||
|
||||
"@vue/test-utils@2.0.0-rc.6":
|
||||
version "2.0.0-rc.6"
|
||||
@ -10892,14 +10892,14 @@ vue-router@^4.0.0:
|
||||
resolved "https://registry.npm.taobao.org/vue-router/download/vue-router-4.0.4.tgz?cache=0&sync_timestamp=1613740744184&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2Fvue-router%2Fdownload%2Fvue-router-4.0.4.tgz#ad9b4b7bbdad622407b4ff189b1646f48c1e9053"
|
||||
integrity sha1-rZtLe72tYiQHtP8YmxZG9IwekFM=
|
||||
|
||||
vue@^3.1.5:
|
||||
version "3.1.5"
|
||||
resolved "https://registry.nlark.com/vue/download/vue-3.1.5.tgz#12879b11d0685ee4478c8869551799630a52f9fe"
|
||||
integrity sha1-EoebEdBoXuRHjIhpVReZYwpS+f4=
|
||||
vue@^3.2.1:
|
||||
version "3.2.1"
|
||||
resolved "https://registry.nlark.com/vue/download/vue-3.2.1.tgz#30dde152f2fdad0669ea9854d5a90a00ef96974b"
|
||||
integrity sha1-MN3hUvL9rQZp6phU1akKAO+Wl0s=
|
||||
dependencies:
|
||||
"@vue/compiler-dom" "3.1.5"
|
||||
"@vue/runtime-dom" "3.1.5"
|
||||
"@vue/shared" "3.1.5"
|
||||
"@vue/compiler-dom" "3.2.1"
|
||||
"@vue/runtime-dom" "3.2.1"
|
||||
"@vue/shared" "3.2.1"
|
||||
|
||||
w3c-hr-time@^1.0.2:
|
||||
version "1.0.2"
|
||||
|
Loading…
x
Reference in New Issue
Block a user