mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
breaking change(Popover): adjust trigger default value to click
This commit is contained in:
parent
52fdf99c69
commit
1699d99272
@ -197,6 +197,10 @@ Vue 3.0 中增加了 `Teleport` 组件,提供将组件渲染到任意 DOM 位
|
|||||||
- 默认开启 `show-toolbar` 属性
|
- 默认开启 `show-toolbar` 属性
|
||||||
- 级联选择下,`confirm`、`change` 事件返回的回调参数将包含为完整的选项对象。
|
- 级联选择下,`confirm`、`change` 事件返回的回调参数将包含为完整的选项对象。
|
||||||
|
|
||||||
|
#### Popover
|
||||||
|
|
||||||
|
- `trigger` 属性的默认值调整为 `click`
|
||||||
|
|
||||||
#### SwipeCell
|
#### SwipeCell
|
||||||
|
|
||||||
- `open` 事件的 `detail` 参数重命名为 `name`
|
- `open` 事件的 `detail` 参数重命名为 `name`
|
||||||
|
@ -17,7 +17,7 @@ app.use(Popover);
|
|||||||
```html
|
```html
|
||||||
<van-popover v-model:show="showPopover" :actions="actions" @select="onSelect">
|
<van-popover v-model:show="showPopover" :actions="actions" @select="onSelect">
|
||||||
<template #reference>
|
<template #reference>
|
||||||
<van-button type="primary"> Light Theme </van-button>
|
<van-button type="primary">Light Theme</van-button>
|
||||||
</template>
|
</template>
|
||||||
</van-popover>
|
</van-popover>
|
||||||
```
|
```
|
||||||
@ -51,7 +51,7 @@ Using the `theme` prop to change the style of Popover.
|
|||||||
```html
|
```html
|
||||||
<van-popover v-model:show="showPopover" theme="dark" :actions="actions">
|
<van-popover v-model:show="showPopover" theme="dark" :actions="actions">
|
||||||
<template #reference>
|
<template #reference>
|
||||||
<van-button type="primary"> Dark Theme </van-button>
|
<van-button type="primary">Dark Theme</van-button>
|
||||||
</template>
|
</template>
|
||||||
</van-popover>
|
</van-popover>
|
||||||
```
|
```
|
||||||
@ -99,7 +99,7 @@ bottom-end # Bottom right
|
|||||||
```html
|
```html
|
||||||
<van-popover v-model:show="showPopover" :actions="actions">
|
<van-popover v-model:show="showPopover" :actions="actions">
|
||||||
<template #reference>
|
<template #reference>
|
||||||
<van-button type="primary"> Show Icon </van-button>
|
<van-button type="primary">Show Icon</van-button>
|
||||||
</template>
|
</template>
|
||||||
</van-popover>
|
</van-popover>
|
||||||
```
|
```
|
||||||
@ -126,7 +126,7 @@ Using the `disabled` option to disable an action.
|
|||||||
```html
|
```html
|
||||||
<van-popover v-model:show="showPopover" :actions="actions">
|
<van-popover v-model:show="showPopover" :actions="actions">
|
||||||
<template #reference>
|
<template #reference>
|
||||||
<van-button type="primary"> Disable Action </van-button>
|
<van-button type="primary">Disable Action</van-button>
|
||||||
</template>
|
</template>
|
||||||
</van-popover>
|
</van-popover>
|
||||||
```
|
```
|
||||||
@ -146,6 +146,41 @@ export default {
|
|||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Custom Content
|
||||||
|
|
||||||
|
```html
|
||||||
|
<van-popover v-model:show="showPopover">
|
||||||
|
<van-grid
|
||||||
|
square
|
||||||
|
clickable
|
||||||
|
:border="false"
|
||||||
|
column-num="3"
|
||||||
|
style="width: 240px;"
|
||||||
|
>
|
||||||
|
<van-grid-item
|
||||||
|
v-for="i in 6"
|
||||||
|
:key="i"
|
||||||
|
text="Option"
|
||||||
|
icon="photo-o"
|
||||||
|
@click="showPopover = false"
|
||||||
|
/>
|
||||||
|
</van-grid>
|
||||||
|
<template #reference>
|
||||||
|
<van-button type="primary">Custom Content</van-button>
|
||||||
|
</template>
|
||||||
|
</van-popover>
|
||||||
|
```
|
||||||
|
|
||||||
|
```js
|
||||||
|
export default {
|
||||||
|
data() {
|
||||||
|
return {
|
||||||
|
showPopover: false,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
};
|
||||||
|
```
|
||||||
|
|
||||||
## API
|
## API
|
||||||
|
|
||||||
### Props
|
### Props
|
||||||
@ -156,7 +191,7 @@ export default {
|
|||||||
| actions | Actions | _Action[]_ | `[]` |
|
| actions | Actions | _Action[]_ | `[]` |
|
||||||
| placement | Placement | _string_ | `bottom` |
|
| placement | Placement | _string_ | `bottom` |
|
||||||
| theme | Theme,can be set to `dark` | _string_ | `light` |
|
| theme | Theme,can be set to `dark` | _string_ | `light` |
|
||||||
| trigger `v2.11.1` | Trigger mode,can be set to `click` | - |
|
| trigger `v2.11.1` | Trigger mode,can be set to `manual` | `click` |
|
||||||
| offset | Distance to reference | _[number, number]_ | `[0, 8]` |
|
| offset | Distance to reference | _[number, number]_ | `[0, 8]` |
|
||||||
| overlay | Whether to show overlay | _boolean_ | `false` |
|
| overlay | Whether to show overlay | _boolean_ | `false` |
|
||||||
| close-on-click-action | Whether to close when clicking action | _boolean_ | `true` |
|
| close-on-click-action | Whether to close when clicking action | _boolean_ | `true` |
|
||||||
|
@ -23,7 +23,7 @@ app.use(Popover);
|
|||||||
```html
|
```html
|
||||||
<van-popover v-model:show="showPopover" :actions="actions" @select="onSelect">
|
<van-popover v-model:show="showPopover" :actions="actions" @select="onSelect">
|
||||||
<template #reference>
|
<template #reference>
|
||||||
<van-button type="primary"> 浅色风格 </van-button>
|
<van-button type="primary">浅色风格</van-button>
|
||||||
</template>
|
</template>
|
||||||
</van-popover>
|
</van-popover>
|
||||||
```
|
```
|
||||||
@ -54,7 +54,7 @@ Popover 支持浅色和深色两种风格,默认为浅色风格,将 `theme`
|
|||||||
```html
|
```html
|
||||||
<van-popover v-model:show="showPopover" theme="dark" :actions="actions">
|
<van-popover v-model:show="showPopover" theme="dark" :actions="actions">
|
||||||
<template #reference>
|
<template #reference>
|
||||||
<van-button type="primary"> 深色风格 </van-button>
|
<van-button type="primary">深色风格</van-button>
|
||||||
</template>
|
</template>
|
||||||
</van-popover>
|
</van-popover>
|
||||||
```
|
```
|
||||||
@ -102,7 +102,7 @@ bottom-end # 底部右侧位置
|
|||||||
```html
|
```html
|
||||||
<van-popover v-model:show="showPopover" :actions="actions">
|
<van-popover v-model:show="showPopover" :actions="actions">
|
||||||
<template #reference>
|
<template #reference>
|
||||||
<van-button type="primary"> 展示图标 </van-button>
|
<van-button type="primary">展示图标</van-button>
|
||||||
</template>
|
</template>
|
||||||
</van-popover>
|
</van-popover>
|
||||||
```
|
```
|
||||||
@ -129,7 +129,7 @@ export default {
|
|||||||
```html
|
```html
|
||||||
<van-popover v-model:show="showPopover" :actions="actions">
|
<van-popover v-model:show="showPopover" :actions="actions">
|
||||||
<template #reference>
|
<template #reference>
|
||||||
<van-button type="primary"> 禁用选项 </van-button>
|
<van-button type="primary">禁用选项</van-button>
|
||||||
</template>
|
</template>
|
||||||
</van-popover>
|
</van-popover>
|
||||||
```
|
```
|
||||||
@ -171,7 +171,7 @@ export default {
|
|||||||
/>
|
/>
|
||||||
</van-grid>
|
</van-grid>
|
||||||
<template #reference>
|
<template #reference>
|
||||||
<van-button type="primary"> 自定义内容 </van-button>
|
<van-button type="primary">自定义内容</van-button>
|
||||||
</template>
|
</template>
|
||||||
</van-popover>
|
</van-popover>
|
||||||
```
|
```
|
||||||
@ -196,7 +196,7 @@ export default {
|
|||||||
| actions | 选项列表 | _Action[]_ | `[]` |
|
| actions | 选项列表 | _Action[]_ | `[]` |
|
||||||
| placement | 弹出位置 | _string_ | `bottom` |
|
| placement | 弹出位置 | _string_ | `bottom` |
|
||||||
| theme | 主题风格,可选值为 `dark` | _string_ | `light` |
|
| theme | 主题风格,可选值为 `dark` | _string_ | `light` |
|
||||||
| trigger `v2.11.1` | 触发方式,可选值为 `click` | - |
|
| trigger `v2.11.1` | 触发方式,可选值为 `manual` | `click` |
|
||||||
| offset | 出现位置的偏移量 | _[number, number]_ | `[0, 8]` |
|
| offset | 出现位置的偏移量 | _[number, number]_ | `[0, 8]` |
|
||||||
| overlay | 是否显示遮罩层 | _boolean_ | `false` |
|
| overlay | 是否显示遮罩层 | _boolean_ | `false` |
|
||||||
| close-on-click-action | 是否在点击选项后关闭 | _boolean_ | `true` |
|
| close-on-click-action | 是否在点击选项后关闭 | _boolean_ | `true` |
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
@select="onSelect"
|
@select="onSelect"
|
||||||
>
|
>
|
||||||
<template #reference>
|
<template #reference>
|
||||||
<van-button type="primary" @click="show.lightTheme = true">
|
<van-button type="primary">
|
||||||
{{ t('lightTheme') }}
|
{{ t('lightTheme') }}
|
||||||
</van-button>
|
</van-button>
|
||||||
</template>
|
</template>
|
||||||
@ -19,7 +19,7 @@
|
|||||||
@select="onSelect"
|
@select="onSelect"
|
||||||
>
|
>
|
||||||
<template #reference>
|
<template #reference>
|
||||||
<van-button type="primary" @click="show.darkTheme = true">
|
<van-button type="primary">
|
||||||
{{ t('darkTheme') }}
|
{{ t('darkTheme') }}
|
||||||
</van-button>
|
</van-button>
|
||||||
</template>
|
</template>
|
||||||
@ -70,7 +70,7 @@
|
|||||||
@select="onSelect"
|
@select="onSelect"
|
||||||
>
|
>
|
||||||
<template #reference>
|
<template #reference>
|
||||||
<van-button type="primary" @click="show.showIcon = true">
|
<van-button type="primary">
|
||||||
{{ t('showIcon') }}
|
{{ t('showIcon') }}
|
||||||
</van-button>
|
</van-button>
|
||||||
</template>
|
</template>
|
||||||
@ -82,7 +82,7 @@
|
|||||||
@select="onSelect"
|
@select="onSelect"
|
||||||
>
|
>
|
||||||
<template #reference>
|
<template #reference>
|
||||||
<van-button type="primary" @click="show.disableAction = true">
|
<van-button type="primary">
|
||||||
{{ t('disableAction') }}
|
{{ t('disableAction') }}
|
||||||
</van-button>
|
</van-button>
|
||||||
</template>
|
</template>
|
||||||
@ -111,7 +111,7 @@
|
|||||||
/>
|
/>
|
||||||
</van-grid>
|
</van-grid>
|
||||||
<template #reference>
|
<template #reference>
|
||||||
<van-button type="primary" @click="show.customContent = true">
|
<van-button type="primary">
|
||||||
{{ t('customContent') }}
|
{{ t('customContent') }}
|
||||||
</van-button>
|
</van-button>
|
||||||
</template>
|
</template>
|
||||||
|
@ -2,7 +2,7 @@ import { ref, watch, nextTick, onMounted, onBeforeUnmount } from 'vue';
|
|||||||
import { createPopper, offsetModifier } from '@vant/popperjs';
|
import { createPopper, offsetModifier } from '@vant/popperjs';
|
||||||
|
|
||||||
// Utils
|
// Utils
|
||||||
import { createNamespace } from '../utils';
|
import { createNamespace, stopPropagation } from '../utils';
|
||||||
import { BORDER_BOTTOM } from '../utils/constant';
|
import { BORDER_BOTTOM } from '../utils/constant';
|
||||||
|
|
||||||
// Composition
|
// Composition
|
||||||
@ -19,7 +19,6 @@ export default createComponent({
|
|||||||
|
|
||||||
props: {
|
props: {
|
||||||
show: Boolean,
|
show: Boolean,
|
||||||
trigger: String,
|
|
||||||
overlay: Boolean,
|
overlay: Boolean,
|
||||||
offset: {
|
offset: {
|
||||||
type: Array,
|
type: Array,
|
||||||
@ -29,6 +28,10 @@ export default createComponent({
|
|||||||
type: String,
|
type: String,
|
||||||
default: 'light',
|
default: 'light',
|
||||||
},
|
},
|
||||||
|
trigger: {
|
||||||
|
type: String,
|
||||||
|
default: 'click',
|
||||||
|
},
|
||||||
actions: {
|
actions: {
|
||||||
type: Array,
|
type: Array,
|
||||||
default: () => [],
|
default: () => [],
|
||||||
@ -159,6 +162,7 @@ export default createComponent({
|
|||||||
teleport={props.teleport}
|
teleport={props.teleport}
|
||||||
transition="van-popover-zoom"
|
transition="van-popover-zoom"
|
||||||
lockScroll={false}
|
lockScroll={false}
|
||||||
|
onClick={stopPropagation}
|
||||||
onTouchstart={onTouchstart}
|
onTouchstart={onTouchstart}
|
||||||
{...{ ...attrs, 'onUpdate:show': toggle }}
|
{...{ ...attrs, 'onUpdate:show': toggle }}
|
||||||
>
|
>
|
||||||
|
@ -11,6 +11,7 @@ test('should toggle popover when trigger is "click" and the reference element is
|
|||||||
const wrapper = mount(Popover, {
|
const wrapper = mount(Popover, {
|
||||||
props: {
|
props: {
|
||||||
show: true,
|
show: true,
|
||||||
|
trigger: 'manual',
|
||||||
},
|
},
|
||||||
slots: {
|
slots: {
|
||||||
reference: () => <div class="reference"></div>,
|
reference: () => <div class="reference"></div>,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user