();
const untouchable = () =>
props.readonly || props.disabled || !props.touchable;
@@ -100,28 +101,69 @@ export default defineComponent({
)
);
- let ranges: Array<{ left: number; score: number }>;
+ let ranges: Array<{
+ left: number;
+ top: number;
+ height: number;
+ score: number;
+ }>;
+
+ let groupRefRect: DOMRect;
+ let minRectTop = Number.MAX_SAFE_INTEGER;
+ let maxRectTop = Number.MIN_SAFE_INTEGER;
const updateRanges = () => {
+ groupRefRect = useRect(groupRef);
+
const rects = itemRefs.value.map(useRect);
ranges = [];
rects.forEach((rect, index) => {
+ minRectTop = Math.min(rect.top, minRectTop);
+ maxRectTop = Math.max(rect.top, maxRectTop);
+
if (props.allowHalf) {
ranges.push(
- { score: index + 0.5, left: rect.left },
- { score: index + 1, left: rect.left + rect.width / 2 }
+ {
+ score: index + 0.5,
+ left: rect.left,
+ top: rect.top,
+ height: rect.height,
+ },
+ {
+ score: index + 1,
+ left: rect.left + rect.width / 2,
+ top: rect.top,
+ height: rect.height,
+ }
);
} else {
- ranges.push({ score: index + 1, left: rect.left });
+ ranges.push({
+ score: index + 1,
+ left: rect.left,
+ top: rect.top,
+ height: rect.height,
+ });
}
});
};
- const getScoreByPosition = (x: number) => {
+ const getScoreByPosition = (x: number, y: number) => {
for (let i = ranges.length - 1; i > 0; i--) {
- if (x > ranges[i].left) {
- return ranges[i].score;
+ if (y >= groupRefRect.top && y <= groupRefRect.bottom) {
+ if (
+ x > ranges[i].left &&
+ y >= ranges[i].top &&
+ y <= ranges[i].top + ranges[i].height
+ ) {
+ return ranges[i].score;
+ }
+ } else {
+ const curTop = y < groupRefRect.top ? minRectTop : maxRectTop;
+
+ if (x > ranges[i].left && ranges[i].top === curTop) {
+ return ranges[i].score;
+ }
}
}
return props.allowHalf ? 0.5 : 1;
@@ -151,9 +193,9 @@ export default defineComponent({
touch.move(event);
if (touch.isHorizontal()) {
- const { clientX } = event.touches[0];
+ const { clientX, clientY } = event.touches[0];
preventDefault(event);
- select(getScoreByPosition(clientX));
+ select(getScoreByPosition(clientX, clientY));
}
};
@@ -185,7 +227,9 @@ export default defineComponent({
const onClickItem = (event: MouseEvent) => {
updateRanges();
- select(allowHalf ? getScoreByPosition(event.clientX) : score);
+ select(
+ allowHalf ? getScoreByPosition(event.clientX, event.clientY) : score
+ );
};
return (
@@ -226,6 +270,7 @@ export default defineComponent({
return () => (
[]) {
({
left: index * 25,
width: 25,
+ top: 0,
+ height: 25,
} as DOMRect);
return true;
});
diff --git a/packages/vant/src/search/README.md b/packages/vant/src/search/README.md
index dec8a27f7..b78aa2d13 100644
--- a/packages/vant/src/search/README.md
+++ b/packages/vant/src/search/README.md
@@ -155,7 +155,7 @@ export default {
| error | Whether to mark the input content in red | _boolean_ | `false` |
| error-message `v3.0.12` | Error message | _string_ | - |
| formatter `v3.0.12` | Input value formatter | _(val: string) => string_ | - |
-| format-trigger `v3.0.12` | When to format value,can be set to `onBlur` | _string_ | `onChange` |
+| format-trigger `v3.0.12` | When to format value, can be set to `onBlur` | _string_ | `onChange` |
| input-align | Text align of field, can be set to `center` `right` | _string_ | `left` |
| left-icon | Left icon name | _string_ | `search` |
| right-icon | Right icon name | _string_ | - |
diff --git a/packages/vant/src/share-sheet/README.md b/packages/vant/src/share-sheet/README.md
index 3b5782515..fc8981b77 100644
--- a/packages/vant/src/share-sheet/README.md
+++ b/packages/vant/src/share-sheet/README.md
@@ -192,7 +192,7 @@ export default {
| --- | --- | --- |
| name | Option name | _string_ |
| description | Option description | _string_ |
-| icon | Option icon,can be set to `wechat` `weibo` `qq` `link` `qrcode` `poster` `weapp-qrcode` `wechat-moments` or image URL | _string_ |
+| icon | Option icon, can be set to `wechat` `weibo` `qq` `link` `qrcode` `poster` `weapp-qrcode` `wechat-moments` or image URL | _string_ |
| className | Option className is used to set the class props to the share item | _string_ |
### Events
diff --git a/packages/vant/src/sidebar/README.md b/packages/vant/src/sidebar/README.md
index 7bca9155b..6e6900458 100644
--- a/packages/vant/src/sidebar/README.md
+++ b/packages/vant/src/sidebar/README.md
@@ -107,7 +107,7 @@ export default {
| title | Content | _string_ | `''` |
| dot | Whether to show red dot | _boolean_ | `false` |
| badge | Content of the badge | _number \| string_ | `''` |
-| badge-props `v3.2.8` | Props of Badge,see [Badge - props](#/en-US/badge#props) | _BadgeProps_ | - |
+| badge-props `v3.2.8` | Props of Badge, see [Badge - props](#/en-US/badge#props) | _BadgeProps_ | - |
| disabled | Whether to be disabled | _boolean_ | `false` |
| url | Link | _string_ | - |
| to | Target route of the link, same as to of vue-router | _string \| object_ | - |
diff --git a/packages/vant/src/skeleton/README.md b/packages/vant/src/skeleton/README.md
index 9e167cc23..0a9018194 100644
--- a/packages/vant/src/skeleton/README.md
+++ b/packages/vant/src/skeleton/README.md
@@ -66,12 +66,12 @@ export default {
| row-width | Row width, can be array | _number \| string \|
(number \| string)[]_ | `100%` |
| title | Whether to show title placeholder | _boolean_ | `false` |
| avatar | Whether to show avatar placeholder | _boolean_ | `false` |
-| loading | Whether to show skeleton,pass `false` to show child component | _boolean_ | `true` |
+| loading | Whether to show skeleton, pass `false` to show child component | _boolean_ | `true` |
| animate | Whether to enable animation | _boolean_ | `true` |
| round | Whether to show round title and row | _boolean_ | `false` |
| title-width | Title width | _number \| string_ | `40%` |
| avatar-size | Size of avatar placeholder | _number \| string_ | `32px` |
-| avatar-shape | Shape of avatar placeholder,can be set to `square` | _string_ | `round` |
+| avatar-shape | Shape of avatar placeholder, can be set to `square` | _string_ | `round` |
### Types
diff --git a/packages/vant/src/stepper/README.md b/packages/vant/src/stepper/README.md
index 7bb37910e..b8629e91d 100644
--- a/packages/vant/src/stepper/README.md
+++ b/packages/vant/src/stepper/README.md
@@ -139,7 +139,7 @@ export default {
| disable-plus | Whether to disable plus button | _boolean_ | `false` |
| disable-minus | Whether to disable minus button | _boolean_ | `false` |
| disable-input | Whether to disable input | _boolean_ | `false` |
-| before-change | Callback function before changing,return `false` to prevent change,support return Promise | _(value: number \| string) => boolean \| Promise\_ | `false` |
+| before-change | Callback function before changing, return `false` to prevent change, support return Promise | _(value: number \| string) => boolean \| Promise\_ | `false` |
| show-plus | Whether to show plus button | _boolean_ | `true` |
| show-minus | Whether to show minus button | _boolean_ | `true` |
| show-input | Whether to show input | _boolean_ | `true` |
diff --git a/packages/vant/src/submit-bar/README.md b/packages/vant/src/submit-bar/README.md
index 39d854ceb..948f7d989 100644
--- a/packages/vant/src/submit-bar/README.md
+++ b/packages/vant/src/submit-bar/README.md
@@ -94,7 +94,7 @@ export default {
| --- | --- | --- | --- |
| price | Price | _number_ | - |
| decimal-length | Price decimal length | _number \| string_ | `2` |
-| label | Price left label | _string_ | `Total:` |
+| label | Price left label | _string_ | `Total: ` |
| suffix-label | Price right label | _string_ | - |
| text-align | Price label text align can be set to `left` | _string_ | `right` |
| button-text | Button text | _string_ | - |
diff --git a/packages/vant/src/swipe-cell/README.md b/packages/vant/src/swipe-cell/README.md
index a36ee7c4c..06002f7d9 100644
--- a/packages/vant/src/swipe-cell/README.md
+++ b/packages/vant/src/swipe-cell/README.md
@@ -127,8 +127,8 @@ export default {
| Event | Description | Arguments |
| --- | --- | --- |
| click | Emitted when SwipeCell is clicked | _position: 'left' \| 'right' \| 'cell' \| 'outside'_ |
-| open | Emitted when SwipeCell is opened | _{ name: string \| number, position: 'left' \| 'right' }_ |
-| close | Emitted when SwipeCell is closed | _{ name: string \| number, position: 'left' \| 'right' \| 'cell' \| 'outside' }_ |
+| open | Emitted when SwipeCell is opened | _value: { name: string \| number, position: 'left' \| 'right' }_ |
+| close | Emitted when SwipeCell is closed | _value: { name: string \| number, position: 'left' \| 'right' \| 'cell' \| 'outside' }_ |
### beforeClose Params
diff --git a/packages/vant/src/tab/README.md b/packages/vant/src/tab/README.md
index e1c854703..279da3df8 100644
--- a/packages/vant/src/tab/README.md
+++ b/packages/vant/src/tab/README.md
@@ -256,7 +256,7 @@ export default {
| swipe-threshold | Set swipe tabs threshold | _number \| string_ | `5` |
| title-active-color | Title active color | _string_ | - |
| title-inactive-color | Title inactive color | _string_ | - |
-| before-change | Callback function before changing tabs,return `false` to prevent change,support return Promise | _(name: number \| string) => boolean \| Promise\_ | - |
+| before-change | Callback function before changing tabs, return `false` to prevent change, support return Promise | _(name: number \| string) => boolean \| Promise\_ | - |
### Tab Props
diff --git a/packages/vant/src/tabbar/README.md b/packages/vant/src/tabbar/README.md
index 92958a3e1..94b838815 100644
--- a/packages/vant/src/tabbar/README.md
+++ b/packages/vant/src/tabbar/README.md
@@ -173,7 +173,7 @@ export default {
| route | Whether to enable route mode | _boolean_ | `false` |
| placeholder | Whether to generate a placeholder element when fixed | _boolean_ | `false` |
| safe-area-inset-bottom | Whether to enable bottom safe area adaptation | _boolean_ | `false` |
-| before-change | Callback function before changing tab,return `false` to prevent change,support return Promise | _(name: number \| string) => boolean \| Promise\_ | - |
+| before-change | Callback function before changing tab, return `false` to prevent change, support return Promise | _(name: number \| string) => boolean \| Promise\_ | - |
### Tabbar Events
@@ -190,7 +190,7 @@ export default {
| icon-prefix | Icon className prefix | _string_ | `van-icon` |
| dot | Whether to show red dot | _boolean_ | - |
| badge | Content of the badge | _number \| string_ | `''` |
-| badge-props `v3.2.8` | Props of Badge,see [Badge - props](#/en-US/badge#props) | _BadgeProps_ | - |
+| badge-props `v3.2.8` | Props of Badge, see [Badge - props](#/en-US/badge#props) | _BadgeProps_ | - |
| url | Link | _string_ | - |
| to | Target route of the link, same as to of vue-router | _string \| object_ | - |
| replace | If true, the navigation will not leave a history record | _boolean_ | `false` |
diff --git a/packages/vant/src/time-picker/README.md b/packages/vant/src/time-picker/README.md
index 1b8fb7e00..ae738d83b 100644
--- a/packages/vant/src/time-picker/README.md
+++ b/packages/vant/src/time-picker/README.md
@@ -183,7 +183,7 @@ export default {
| formatter | Option text formatter | _(type: string, option: PickerOption) => PickerOption_ | - |
| option-height | Option height, supports `px` `vw` `vh` `rem` unit, default `px` | _number \| string_ | `44` |
| visible-option-num | Count of visible columns | _number \| string_ | `6` |
-| swipe-duration | Duration of the momentum animation,unit `ms` | _number \| string_ | `1000` |
+| swipe-duration | Duration of the momentum animation, unit `ms` | _number \| string_ | `1000` |
### Events
diff --git a/packages/vant/src/uploader/README.md b/packages/vant/src/uploader/README.md
index e9d5838ea..d7727cec5 100644
--- a/packages/vant/src/uploader/README.md
+++ b/packages/vant/src/uploader/README.md
@@ -310,14 +310,14 @@ export default {
| preview-size | Size of preview image | _number \| string \| Array_ | `80px` |
| preview-image | Whether to show image preview | _boolean_ | `true` |
| preview-full-image | Whether to show full screen image preview when image is clicked | _boolean_ | `true` |
-| preview-options | Options of full screen image preview,see [ImagePreview](#/en-US/image-preview) | _object_ | - |
+| preview-options | Options of full screen image preview, see [ImagePreview](#/en-US/image-preview) | _object_ | - |
| multiple | Whether to enable multiple selection pictures | _boolean_ | `false` |
| disabled | Whether to disabled the upload | _boolean_ | `false` |
| readonly `v3.1.5` | Whether to make upload area readonly | _boolean_ | `false` |
| deletable | Whether to show delete icon | _boolean_ | `true` |
| show-upload | Whether to show upload area | _boolean_ | `true` |
-| lazy-load | Whether to enable lazy load,should register [Lazyload](#/en-US/lazyload) component | _boolean_ | `false` |
-| capture | Capture,can be set to `camera` | _string_ | - |
+| lazy-load | Whether to enable lazy load, should register [Lazyload](#/en-US/lazyload) component | _boolean_ | `false` |
+| capture | Capture, can be set to `camera` | _string_ | - |
| after-read | Hook after reading the file | _Function_ | - |
| before-read | Hook before reading the file, return false to stop reading the file, can return Promise | _Function_ | - |
| before-delete | Hook before delete the file, return false to stop reading the file, can return Promise | _Function_ | - |
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 088603cf4..8384c57a0 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -95,7 +95,7 @@ importers:
'@types/less': ^3.0.3
'@types/markdown-it': ^12.2.3
'@vant/eslint-config': ^3.3.2
- '@vant/markdown-vetur': ^2.2.0
+ '@vant/markdown-vetur': ^2.3.0
'@vant/stylelint-config': ^1.4.2
'@vant/touch-emulator': ^1.3.2
'@vitejs/plugin-vue': ^2.0.0