mirror of
https://gitee.com/vant-contrib/vant-weapp.git
synced 2025-04-05 19:41:45 +08:00
Compare commits
71 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
e5af691c4c | ||
|
c6b4004893 | ||
|
db1c0ce662 | ||
|
1a8351387a | ||
|
2543148507 | ||
|
2266cbe262 | ||
|
809bc84d1e | ||
|
e5f462263b | ||
|
22f39e86b9 | ||
|
ff982f6cd0 | ||
|
178795253f | ||
|
443e78daec | ||
|
07dfcafb26 | ||
|
ebba3b14a1 | ||
|
04c8783b1d | ||
|
c38c931325 | ||
|
ab45d8011c | ||
|
8953dd3ed9 | ||
|
2680fedace | ||
|
68be39fea2 | ||
|
979fc92bdc | ||
|
348c3103b7 | ||
|
50da9f87eb | ||
|
fc1ad93c57 | ||
|
902579a94a | ||
|
cce61c26af | ||
|
5b9f52b7ef | ||
|
aac785bc2c | ||
|
4db5b132d1 | ||
|
c7e8ab5ef3 | ||
|
9130ebf59c | ||
|
cdb692fbec | ||
|
b9f88ec64a | ||
|
c0b7537da9 | ||
|
c4b3609370 | ||
|
040416bdb7 | ||
|
7c0c9e43f7 | ||
|
ff8fe1cb69 | ||
|
628008efb3 | ||
|
3f8cc449d2 | ||
|
e2b031c436 | ||
|
d1f505b8e8 | ||
|
19083a327c | ||
|
f2ff0e7b48 | ||
|
d0610c09ac | ||
|
c3ae27b4b0 | ||
|
d869a8149f | ||
|
864a890e83 | ||
|
1d0600cece | ||
|
5b7dc9a4ab | ||
|
eeea4a8434 | ||
|
f98cf75027 | ||
|
3e6e157c6a | ||
|
8af9924056 | ||
|
05ec5e2526 | ||
|
7d438e2843 | ||
|
3e9cdcfd7c | ||
|
36d0add734 | ||
|
27979cf894 | ||
|
98874a155c | ||
|
14b97ead79 | ||
|
b936371007 | ||
|
1939b76a04 | ||
|
be99bd3bd3 | ||
|
bc649cff58 | ||
|
42447bb87c | ||
|
f330cf2a34 | ||
|
7423e18ae3 | ||
|
8ce21a6446 | ||
|
18ffa1891d | ||
|
6dd89841a8 |
@ -1,3 +1,3 @@
|
|||||||
你好,请使用下面的链接创建 issue 以帮助我们更快的排查问题,不规范的 issue 会被关闭,感谢配合。
|
你好,请使用下面的链接创建 issue 以帮助我们更快的排查问题,不规范的 issue 会被关闭,感谢配合。
|
||||||
|
|
||||||
http://vant-contrib.gitee.io/vant-issue-generater?repo=VantWeapp
|
http://vant-ui.github.io/vant-issue-generater?repo=VantWeapp
|
||||||
|
10
.github/pr-labeler.yml
vendored
Normal file
10
.github/pr-labeler.yml
vendored
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
"change: feat":
|
||||||
|
- "/^(feat|types|style)/"
|
||||||
|
"change: fix":
|
||||||
|
- "/^fix/"
|
||||||
|
"change: perf":
|
||||||
|
- "/^perf/"
|
||||||
|
"change: breaking":
|
||||||
|
- "/^breaking change/"
|
||||||
|
"change: docs":
|
||||||
|
- "/^docs/"
|
15
.github/workflows/deploy-site.yml
vendored
15
.github/workflows/deploy-site.yml
vendored
@ -7,6 +7,8 @@ on:
|
|||||||
- 'docs/**/*.md'
|
- 'docs/**/*.md'
|
||||||
- 'packages/**/*.md'
|
- 'packages/**/*.md'
|
||||||
|
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-and-deploy:
|
build-and-deploy:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
@ -22,9 +24,16 @@ jobs:
|
|||||||
- name: Build Site
|
- name: Build Site
|
||||||
run: npx --no-install vant-cli build-site
|
run: npx --no-install vant-cli build-site
|
||||||
|
|
||||||
- name: Deploy 🚀
|
- name: Deploy for GitHub 🚀
|
||||||
uses: JamesIves/github-pages-deploy-action@4.1.1
|
uses: JamesIves/github-pages-deploy-action@v4.6.0
|
||||||
with:
|
with:
|
||||||
branch: gh-pages
|
branch: gh-pages
|
||||||
folder: site-dist
|
folder: site-dist
|
||||||
clean-exclude: 0.x
|
token: ${{ secrets.VANT_UI_TOKEN }}
|
||||||
|
repository-name: vant-ui/vant-ui.github.io
|
||||||
|
target-folder: vant-weapp
|
||||||
|
# enable single-commit to reduce the repo size
|
||||||
|
single-commit: true
|
||||||
|
clean: true
|
||||||
|
clean-exclude: |
|
||||||
|
0.x
|
||||||
|
20
.github/workflows/pr-label.yaml
vendored
Normal file
20
.github/workflows/pr-label.yaml
vendored
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
name: PR Labeler
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request_target:
|
||||||
|
types:
|
||||||
|
- opened
|
||||||
|
- edited
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
change-labeling:
|
||||||
|
name: Labeling for changes
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: github/issue-labeler@v3.4
|
||||||
|
with:
|
||||||
|
repo-token: "${{ secrets.GITHUB_TOKEN }}"
|
||||||
|
configuration-path: .github/pr-labeler.yml
|
||||||
|
enable-versioned-regex: 0
|
||||||
|
include-title: 1
|
||||||
|
sync-labels: 1
|
11
.github/workflows/release-tag.yml
vendored
11
.github/workflows/release-tag.yml
vendored
@ -11,13 +11,12 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@master
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Create Release for Tag
|
- name: Create Release for Tag
|
||||||
id: release_tag
|
id: release_tag
|
||||||
uses: yyx990803/release-tag@master
|
uses: ncipollo/release-action@v1
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
with:
|
with:
|
||||||
tag_name: ${{ github.ref }}
|
generateReleaseNotes: "true"
|
||||||
body: |
|
body: |
|
||||||
更新内容参见 [CHANGELOG](https://vant-contrib.gitee.io/vant-weapp/#/changelog)。
|
> 请访问 [更新日志](https://vant-ui.github.io/vant-weapp/#/changelog) 了解所有更新。
|
||||||
|
20
.github/workflows/sync-gitee.yml
vendored
20
.github/workflows/sync-gitee.yml
vendored
@ -1,20 +0,0 @@
|
|||||||
name: Sync to Gitee
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: [dev, gh-pages]
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Sync to Gitee
|
|
||||||
uses: wearerequired/git-mirror-action@master
|
|
||||||
env:
|
|
||||||
# 注意在 Settings->Secrets 配置 GITEE_RSA_PRIVATE_KEY
|
|
||||||
SSH_PRIVATE_KEY: ${{ secrets.GITEE_RSA_PRIVATE_KEY }}
|
|
||||||
with:
|
|
||||||
# 注意替换为你的 GitHub 源仓库地址
|
|
||||||
source-repo: git@github.com:youzan/vant-weapp.git
|
|
||||||
# 注意替换为你的 Gitee 目标仓库地址
|
|
||||||
destination-repo: git@gitee.com:vant-contrib/vant-weapp.git
|
|
6
.github/workflows/test.yml
vendored
6
.github/workflows/test.yml
vendored
@ -9,7 +9,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: '14.x'
|
node-version: '18.x'
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
uses: bahmutov/npm-install@v1
|
uses: bahmutov/npm-install@v1
|
||||||
@ -28,7 +28,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: '14.x'
|
node-version: '18.x'
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
uses: bahmutov/npm-install@v1
|
uses: bahmutov/npm-install@v1
|
||||||
@ -47,7 +47,7 @@ jobs:
|
|||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v1
|
||||||
- uses: actions/setup-node@v1
|
- uses: actions/setup-node@v1
|
||||||
with:
|
with:
|
||||||
node-version: '14.x'
|
node-version: '18.x'
|
||||||
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
uses: bahmutov/npm-install@v1
|
uses: bahmutov/npm-install@v1
|
||||||
|
12
README.md
12
README.md
@ -11,9 +11,9 @@
|
|||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
🔥 <a href="https://vant-contrib.gitee.io/vant-weapp">文档网站(国内)</a>
|
🔥 <a href="https://vant.pro/vant-weapp/">文档网站(国内)</a>
|
||||||
|
|
||||||
🌈 <a href="https://youzan.github.io/vant-weapp">文档网站(GitHub)</a>
|
🔥 <a href="https://vant-ui.github.io/vant-weapp/">文档网站(GitHub)</a>
|
||||||
|
|
||||||
🚀 <a href="https://github.com/vant-ui/vant" target="_blank">Vue 版</a>
|
🚀 <a href="https://github.com/vant-ui/vant" target="_blank">Vue 版</a>
|
||||||
</p>
|
</p>
|
||||||
@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
Vant 是一个**轻量、可靠的移动端组件库**,于 2017 年开源。
|
Vant 是一个**轻量、可靠的移动端组件库**,于 2017 年开源。
|
||||||
|
|
||||||
目前 Vant 官方提供了 [Vue 2 版本](https://vant-contrib.gitee.io/vant/v2)、[Vue 3 版本](https://vant-contrib.gitee.io/vant)和[微信小程序版本](http://vant-contrib.gitee.io/vant-weapp),并由社区团队维护 [React 版本](https://github.com/3lang3/react-vant)和[支付宝小程序版本](https://github.com/ant-move/Vant-Aliapp)。
|
目前 Vant 官方提供了 [Vue 2 版本](https://vant-ui.github.io/vant/v2/)、[Vue 3 版本](https://vant-ui.github.io/vant/)和[微信小程序版本](http://vant-ui.github.io/vant-weapp/),并由社区团队维护 [React 版本](https://github.com/3lang3/react-vant)和[支付宝小程序版本](https://github.com/ant-move/Vant-Aliapp)。
|
||||||
|
|
||||||
## 预览
|
## 预览
|
||||||
|
|
||||||
@ -99,9 +99,11 @@ Vant Weapp 最低支持到小程序基础库 2.6.5 版本。
|
|||||||
|
|
||||||
## 链接
|
## 链接
|
||||||
|
|
||||||
|
- [文档网站(GitHub)](https://vant-ui.github.io/vant-weapp/)
|
||||||
|
- [文档网站(国内)](https://vant.pro/vant-weapp/)
|
||||||
- [意见反馈](https://github.com/youzan/vant-weapp/issues)
|
- [意见反馈](https://github.com/youzan/vant-weapp/issues)
|
||||||
- [设计资源](https://vant-contrib.gitee.io/vant/#/zh-CN/design)
|
- [设计资源](https://vant-ui.github.io/vant/#/zh-CN/design)
|
||||||
- [更新日志](https://vant-contrib.gitee.io/vant-weapp/#/changelog)
|
- [更新日志](https://vant-ui.github.io/vant-weapp/#/changelog)
|
||||||
- [官方示例](https://github.com/vant-ui/vant-demo)
|
- [官方示例](https://github.com/vant-ui/vant-demo)
|
||||||
|
|
||||||
## 核心团队
|
## 核心团队
|
||||||
|
@ -28,7 +28,4 @@ then
|
|||||||
else
|
else
|
||||||
npm publish
|
npm publish
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# changelog
|
|
||||||
vant-cli changelog
|
|
||||||
fi
|
fi
|
||||||
|
4
dist/action-sheet/index.js
vendored
4
dist/action-sheet/index.js
vendored
@ -36,6 +36,10 @@ VantComponent({
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true,
|
value: true,
|
||||||
},
|
},
|
||||||
|
rootPortal: {
|
||||||
|
type: Boolean,
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onSelect(event) {
|
onSelect(event) {
|
||||||
|
1
dist/action-sheet/index.wxml
vendored
1
dist/action-sheet/index.wxml
vendored
@ -9,6 +9,7 @@
|
|||||||
custom-class="van-action-sheet custom-class"
|
custom-class="van-action-sheet custom-class"
|
||||||
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
||||||
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
||||||
|
root-portal="{{ rootPortal }}"
|
||||||
bind:close="onClickOverlay"
|
bind:close="onClickOverlay"
|
||||||
>
|
>
|
||||||
<view wx:if="{{ title }}" class="van-action-sheet__header">
|
<view wx:if="{{ title }}" class="van-action-sheet__header">
|
||||||
|
2
dist/calendar/calendar.wxml
vendored
2
dist/calendar/calendar.wxml
vendored
@ -1,3 +1,5 @@
|
|||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
<view class="van-calendar">
|
<view class="van-calendar">
|
||||||
<header
|
<header
|
||||||
title="{{ title }}"
|
title="{{ title }}"
|
||||||
|
6
dist/calendar/index.js
vendored
6
dist/calendar/index.js
vendored
@ -113,6 +113,10 @@ VantComponent({
|
|||||||
value: 0,
|
value: 0,
|
||||||
},
|
},
|
||||||
readonly: Boolean,
|
readonly: Boolean,
|
||||||
|
rootPortal: {
|
||||||
|
type: Boolean,
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
data: {
|
data: {
|
||||||
subtitle: '',
|
subtitle: '',
|
||||||
@ -140,7 +144,7 @@ VantComponent({
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
reset() {
|
reset() {
|
||||||
this.setData({ currentDate: this.getInitialDate() });
|
this.setData({ currentDate: this.getInitialDate(this.data.defaultDate) });
|
||||||
this.scrollIntoView();
|
this.scrollIntoView();
|
||||||
},
|
},
|
||||||
initRect() {
|
initRect() {
|
||||||
|
1
dist/calendar/index.wxml
vendored
1
dist/calendar/index.wxml
vendored
@ -13,6 +13,7 @@
|
|||||||
closeable="{{ showTitle || showSubtitle }}"
|
closeable="{{ showTitle || showSubtitle }}"
|
||||||
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
||||||
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
||||||
|
root-portal="{{ rootPortal }}"
|
||||||
bind:enter="onOpen"
|
bind:enter="onOpen"
|
||||||
bind:close="onClose"
|
bind:close="onClose"
|
||||||
bind:after-enter="onOpened"
|
bind:after-enter="onOpened"
|
||||||
|
2
dist/cascader/index.js
vendored
2
dist/cascader/index.js
vendored
@ -49,6 +49,7 @@ VantComponent({
|
|||||||
value: defaultFieldNames,
|
value: defaultFieldNames,
|
||||||
observer: 'updateFieldNames',
|
observer: 'updateFieldNames',
|
||||||
},
|
},
|
||||||
|
useTitleSlot: Boolean,
|
||||||
},
|
},
|
||||||
data: {
|
data: {
|
||||||
tabs: [],
|
tabs: [],
|
||||||
@ -147,6 +148,7 @@ VantComponent({
|
|||||||
selected: null,
|
selected: null,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
activeTab: 0,
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
onClose() {
|
onClose() {
|
||||||
|
3
dist/cascader/index.wxml
vendored
3
dist/cascader/index.wxml
vendored
@ -1,7 +1,8 @@
|
|||||||
<wxs src="./index.wxs" module="utils" />
|
<wxs src="./index.wxs" module="utils" />
|
||||||
|
|
||||||
<view wx:if="{{ showHeader }}" class="van-cascader__header">
|
<view wx:if="{{ showHeader }}" class="van-cascader__header">
|
||||||
<text class="van-cascader__title"><slot name="title"></slot>{{ title }}</text>
|
<slot name="title" wx:if="{{ useTitleSlot }}"></slot>
|
||||||
|
<text class="van-cascader__title" wx:else>{{ title }}</text>
|
||||||
<van-icon
|
<van-icon
|
||||||
wx:if="{{ closeable }}"
|
wx:if="{{ closeable }}"
|
||||||
name="{{ closeIcon }}"
|
name="{{ closeIcon }}"
|
||||||
|
1
dist/common/utils.d.ts
vendored
1
dist/common/utils.d.ts
vendored
@ -18,3 +18,4 @@ export declare function addNumber(num1: any, num2: any): number;
|
|||||||
export declare const clamp: (num: any, min: any, max: any) => number;
|
export declare const clamp: (num: any, min: any, max: any) => number;
|
||||||
export declare function getCurrentPage<T>(): T & WechatMiniprogram.OptionalInterface<WechatMiniprogram.Page.ILifetime> & WechatMiniprogram.Page.InstanceProperties & WechatMiniprogram.Page.InstanceMethods<WechatMiniprogram.IAnyObject> & WechatMiniprogram.Page.Data<WechatMiniprogram.IAnyObject> & WechatMiniprogram.IAnyObject;
|
export declare function getCurrentPage<T>(): T & WechatMiniprogram.OptionalInterface<WechatMiniprogram.Page.ILifetime> & WechatMiniprogram.Page.InstanceProperties & WechatMiniprogram.Page.InstanceMethods<WechatMiniprogram.IAnyObject> & WechatMiniprogram.Page.Data<WechatMiniprogram.IAnyObject> & WechatMiniprogram.IAnyObject;
|
||||||
export declare const isPC: boolean;
|
export declare const isPC: boolean;
|
||||||
|
export declare const isWxWork: boolean;
|
||||||
|
2
dist/common/utils.js
vendored
2
dist/common/utils.js
vendored
@ -82,3 +82,5 @@ export function getCurrentPage() {
|
|||||||
return pages[pages.length - 1];
|
return pages[pages.length - 1];
|
||||||
}
|
}
|
||||||
export const isPC = ['mac', 'windows'].includes(getSystemInfoSync().platform);
|
export const isPC = ['mac', 'windows'].includes(getSystemInfoSync().platform);
|
||||||
|
// 是否企业微信
|
||||||
|
export const isWxWork = getSystemInfoSync().environment === 'wxwork';
|
||||||
|
8
dist/common/version.d.ts
vendored
8
dist/common/version.d.ts
vendored
@ -1,5 +1,10 @@
|
|||||||
/// <reference types="miniprogram-api-typings" />
|
/// <reference types="miniprogram-api-typings" />
|
||||||
export declare function getSystemInfoSync(): WechatMiniprogram.SystemInfo;
|
interface WxWorkSystemInfo extends WechatMiniprogram.SystemInfo {
|
||||||
|
environment?: 'wxwork';
|
||||||
|
}
|
||||||
|
interface SystemInfo extends WxWorkSystemInfo, WechatMiniprogram.SystemInfo {
|
||||||
|
}
|
||||||
|
export declare function getSystemInfoSync(): SystemInfo;
|
||||||
export declare function canIUseModel(): boolean;
|
export declare function canIUseModel(): boolean;
|
||||||
export declare function canIUseFormFieldButton(): boolean;
|
export declare function canIUseFormFieldButton(): boolean;
|
||||||
export declare function canIUseAnimate(): boolean;
|
export declare function canIUseAnimate(): boolean;
|
||||||
@ -7,3 +12,4 @@ export declare function canIUseGroupSetData(): boolean;
|
|||||||
export declare function canIUseNextTick(): boolean;
|
export declare function canIUseNextTick(): boolean;
|
||||||
export declare function canIUseCanvas2d(): boolean;
|
export declare function canIUseCanvas2d(): boolean;
|
||||||
export declare function canIUseGetUserProfile(): boolean;
|
export declare function canIUseGetUserProfile(): boolean;
|
||||||
|
export {};
|
||||||
|
1
dist/definitions/index.d.ts
vendored
1
dist/definitions/index.d.ts
vendored
@ -4,6 +4,7 @@ interface VantComponentInstance {
|
|||||||
children: WechatMiniprogram.Component.TrivialInstance[];
|
children: WechatMiniprogram.Component.TrivialInstance[];
|
||||||
index: number;
|
index: number;
|
||||||
$emit: (name: string, detail?: unknown, options?: WechatMiniprogram.Component.TriggerEventOption) => void;
|
$emit: (name: string, detail?: unknown, options?: WechatMiniprogram.Component.TriggerEventOption) => void;
|
||||||
|
setView: (value: Record<string, any>, callback?: () => void) => void;
|
||||||
}
|
}
|
||||||
export type VantComponentOptions<Data extends WechatMiniprogram.Component.DataOption, Props extends WechatMiniprogram.Component.PropertyOption, Methods extends WechatMiniprogram.Component.MethodOption> = {
|
export type VantComponentOptions<Data extends WechatMiniprogram.Component.DataOption, Props extends WechatMiniprogram.Component.PropertyOption, Methods extends WechatMiniprogram.Component.MethodOption> = {
|
||||||
data?: Data;
|
data?: Data;
|
||||||
|
4
dist/dialog/index.js
vendored
4
dist/dialog/index.js
vendored
@ -65,6 +65,10 @@ VantComponent({
|
|||||||
type: String,
|
type: String,
|
||||||
value: 'scale',
|
value: 'scale',
|
||||||
},
|
},
|
||||||
|
rootPortal: {
|
||||||
|
type: Boolean,
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
data: {
|
data: {
|
||||||
loading: {
|
loading: {
|
||||||
|
3
dist/dialog/index.wxml
vendored
3
dist/dialog/index.wxml
vendored
@ -9,6 +9,7 @@
|
|||||||
custom-style="width: {{ utils.addUnit(width) }};{{ customStyle }}"
|
custom-style="width: {{ utils.addUnit(width) }};{{ customStyle }}"
|
||||||
overlay-style="{{ overlayStyle }}"
|
overlay-style="{{ overlayStyle }}"
|
||||||
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
||||||
|
root-portal="{{ rootPortal }}"
|
||||||
bind:close="onClickOverlay"
|
bind:close="onClickOverlay"
|
||||||
>
|
>
|
||||||
<view
|
<view
|
||||||
@ -57,6 +58,7 @@
|
|||||||
show-message-card="{{ showMessageCard }}"
|
show-message-card="{{ showMessageCard }}"
|
||||||
app-parameter="{{ appParameter }}"
|
app-parameter="{{ appParameter }}"
|
||||||
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
||||||
|
bindgetRealTimePhoneNumber="onGetRealTimePhoneNumber"
|
||||||
bind:click="onConfirm"
|
bind:click="onConfirm"
|
||||||
bindgetuserinfo="onGetUserInfo"
|
bindgetuserinfo="onGetUserInfo"
|
||||||
bindcontact="onContact"
|
bindcontact="onContact"
|
||||||
@ -107,6 +109,7 @@
|
|||||||
show-message-card="{{ showMessageCard }}"
|
show-message-card="{{ showMessageCard }}"
|
||||||
app-parameter="{{ appParameter }}"
|
app-parameter="{{ appParameter }}"
|
||||||
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
||||||
|
bindgetRealTimePhoneNumber="onGetRealTimePhoneNumber"
|
||||||
bind:click="onConfirm"
|
bind:click="onConfirm"
|
||||||
bindgetuserinfo="onGetUserInfo"
|
bindgetuserinfo="onGetUserInfo"
|
||||||
bindcontact="onContact"
|
bindcontact="onContact"
|
||||||
|
17
dist/field/index.js
vendored
17
dist/field/index.js
vendored
@ -31,6 +31,18 @@ VantComponent({
|
|||||||
innerValue: '',
|
innerValue: '',
|
||||||
showClear: false,
|
showClear: false,
|
||||||
},
|
},
|
||||||
|
watch: {
|
||||||
|
value(value) {
|
||||||
|
if (value !== this.value) {
|
||||||
|
this.setData({ innerValue: value });
|
||||||
|
this.value = value;
|
||||||
|
this.setShowClear();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
clearTrigger() {
|
||||||
|
this.setShowClear();
|
||||||
|
},
|
||||||
|
},
|
||||||
created() {
|
created() {
|
||||||
this.value = this.data.value;
|
this.value = this.data.value;
|
||||||
this.setData({ innerValue: this.value });
|
this.setData({ innerValue: this.value });
|
||||||
@ -95,6 +107,9 @@ VantComponent({
|
|||||||
onKeyboardHeightChange(event) {
|
onKeyboardHeightChange(event) {
|
||||||
this.$emit('keyboardheightchange', event.detail);
|
this.$emit('keyboardheightchange', event.detail);
|
||||||
},
|
},
|
||||||
|
onBindNicknameReview(event) {
|
||||||
|
this.$emit('nicknamereview', event.detail);
|
||||||
|
},
|
||||||
emitChange(detail) {
|
emitChange(detail) {
|
||||||
const { extraEventParams } = this.data;
|
const { extraEventParams } = this.data;
|
||||||
this.setData({ value: detail.value });
|
this.setData({ value: detail.value });
|
||||||
@ -116,7 +131,7 @@ VantComponent({
|
|||||||
const trigger = clearTrigger === 'always' || (clearTrigger === 'focus' && focused);
|
const trigger = clearTrigger === 'always' || (clearTrigger === 'focus' && focused);
|
||||||
showClear = hasValue && trigger;
|
showClear = hasValue && trigger;
|
||||||
}
|
}
|
||||||
this.setData({ showClear });
|
this.setView({ showClear });
|
||||||
},
|
},
|
||||||
noop() { },
|
noop() { },
|
||||||
},
|
},
|
||||||
|
2
dist/field/input.wxml
vendored
2
dist/field/input.wxml
vendored
@ -1,3 +1,4 @@
|
|||||||
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
<input
|
<input
|
||||||
id="{{ name }}"
|
id="{{ name }}"
|
||||||
class="{{ utils.bem('field__control', [inputAlign, { disabled, error }]) }} input-class"
|
class="{{ utils.bem('field__control', [inputAlign, { disabled, error }]) }} input-class"
|
||||||
@ -26,4 +27,5 @@
|
|||||||
bindfocus="onFocus"
|
bindfocus="onFocus"
|
||||||
bindconfirm="onConfirm"
|
bindconfirm="onConfirm"
|
||||||
bindkeyboardheightchange="onKeyboardHeightChange"
|
bindkeyboardheightchange="onKeyboardHeightChange"
|
||||||
|
bindnicknamereview="onBindNicknameReview"
|
||||||
/>
|
/>
|
||||||
|
10
dist/field/props.js
vendored
10
dist/field/props.js
vendored
@ -1,13 +1,5 @@
|
|||||||
export const commonProps = {
|
export const commonProps = {
|
||||||
value: {
|
value: String,
|
||||||
type: String,
|
|
||||||
observer(value) {
|
|
||||||
if (value !== this.value) {
|
|
||||||
this.setData({ innerValue: value });
|
|
||||||
this.value = value;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
|
||||||
placeholder: String,
|
placeholder: String,
|
||||||
placeholderStyle: String,
|
placeholderStyle: String,
|
||||||
placeholderClass: String,
|
placeholderClass: String,
|
||||||
|
2
dist/field/textarea.wxml
vendored
2
dist/field/textarea.wxml
vendored
@ -1,3 +1,5 @@
|
|||||||
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
<textarea
|
<textarea
|
||||||
id="{{ name }}"
|
id="{{ name }}"
|
||||||
class="{{ utils.bem('field__control', [inputAlign, type, { disabled, error }]) }} input-class"
|
class="{{ utils.bem('field__control', [inputAlign, type, { disabled, error }]) }} input-class"
|
||||||
|
4
dist/goods-action-button/index.js
vendored
4
dist/goods-action-button/index.js
vendored
@ -19,6 +19,10 @@ VantComponent({
|
|||||||
type: String,
|
type: String,
|
||||||
value: 'danger',
|
value: 'danger',
|
||||||
},
|
},
|
||||||
|
customStyle: {
|
||||||
|
type: String,
|
||||||
|
value: '',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onClick(event) {
|
onClick(event) {
|
||||||
|
2
dist/goods-action-button/index.wxml
vendored
2
dist/goods-action-button/index.wxml
vendored
@ -12,6 +12,7 @@
|
|||||||
open-type="{{ openType }}"
|
open-type="{{ openType }}"
|
||||||
class="{{ utils.bem('goods-action-button', [type, { first: isFirst, last: isLast, plain: plain }])}}"
|
class="{{ utils.bem('goods-action-button', [type, { first: isFirst, last: isLast, plain: plain }])}}"
|
||||||
custom-class="van-goods-action-button__inner custom-class"
|
custom-class="van-goods-action-button__inner custom-class"
|
||||||
|
custom-style="{{customStyle}}"
|
||||||
business-id="{{ businessId }}"
|
business-id="{{ businessId }}"
|
||||||
session-from="{{ sessionFrom }}"
|
session-from="{{ sessionFrom }}"
|
||||||
app-parameter="{{ appParameter }}"
|
app-parameter="{{ appParameter }}"
|
||||||
@ -25,6 +26,7 @@
|
|||||||
bindopensetting="onOpenSetting"
|
bindopensetting="onOpenSetting"
|
||||||
bindgetuserinfo="onGetUserInfo"
|
bindgetuserinfo="onGetUserInfo"
|
||||||
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
||||||
|
bindgetRealTimePhoneNumber="onGetRealTimePhoneNumber"
|
||||||
bindgetphonenumber="onGetPhoneNumber"
|
bindgetphonenumber="onGetPhoneNumber"
|
||||||
bindlaunchapp="onLaunchApp"
|
bindlaunchapp="onLaunchApp"
|
||||||
>
|
>
|
||||||
|
2
dist/icon/index.wxss
vendored
2
dist/icon/index.wxss
vendored
File diff suppressed because one or more lines are too long
15
dist/mixins/basic.js
vendored
15
dist/mixins/basic.js
vendored
@ -7,5 +7,20 @@ export const basic = Behavior({
|
|||||||
this.setData(data);
|
this.setData(data);
|
||||||
return new Promise((resolve) => wx.nextTick(resolve));
|
return new Promise((resolve) => wx.nextTick(resolve));
|
||||||
},
|
},
|
||||||
|
// high performance setData
|
||||||
|
setView(data, callback) {
|
||||||
|
const target = {};
|
||||||
|
let hasChange = false;
|
||||||
|
Object.keys(data).forEach((key) => {
|
||||||
|
if (data[key] !== this.data[key]) {
|
||||||
|
target[key] = data[key];
|
||||||
|
hasChange = true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (hasChange) {
|
||||||
|
return this.setData(target, callback);
|
||||||
|
}
|
||||||
|
return callback && callback();
|
||||||
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
83
dist/mixins/transition.js
vendored
83
dist/mixins/transition.js
vendored
@ -21,7 +21,6 @@ export function transition(showDefaultValue) {
|
|||||||
duration: {
|
duration: {
|
||||||
type: null,
|
type: null,
|
||||||
value: 300,
|
value: 300,
|
||||||
observer: 'observeDuration',
|
|
||||||
},
|
},
|
||||||
name: {
|
name: {
|
||||||
type: String,
|
type: String,
|
||||||
@ -46,59 +45,71 @@ export function transition(showDefaultValue) {
|
|||||||
value ? this.enter() : this.leave();
|
value ? this.enter() : this.leave();
|
||||||
},
|
},
|
||||||
enter() {
|
enter() {
|
||||||
const { duration, name } = this.data;
|
if (this.enterFinishedPromise)
|
||||||
const classNames = getClassNames(name);
|
|
||||||
const currentDuration = isObj(duration) ? duration.enter : duration;
|
|
||||||
if (this.status === 'enter') {
|
|
||||||
return;
|
return;
|
||||||
}
|
this.enterFinishedPromise = new Promise((resolve) => {
|
||||||
this.status = 'enter';
|
const { duration, name } = this.data;
|
||||||
this.$emit('before-enter');
|
const classNames = getClassNames(name);
|
||||||
requestAnimationFrame(() => {
|
const currentDuration = isObj(duration) ? duration.enter : duration;
|
||||||
if (this.status !== 'enter') {
|
if (this.status === 'enter') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.$emit('enter');
|
this.status = 'enter';
|
||||||
this.setData({
|
this.$emit('before-enter');
|
||||||
inited: true,
|
|
||||||
display: true,
|
|
||||||
classes: classNames.enter,
|
|
||||||
currentDuration,
|
|
||||||
});
|
|
||||||
requestAnimationFrame(() => {
|
requestAnimationFrame(() => {
|
||||||
if (this.status !== 'enter') {
|
if (this.status !== 'enter') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.transitionEnded = false;
|
this.$emit('enter');
|
||||||
this.setData({ classes: classNames['enter-to'] });
|
this.setData({
|
||||||
|
inited: true,
|
||||||
|
display: true,
|
||||||
|
classes: classNames.enter,
|
||||||
|
currentDuration,
|
||||||
|
});
|
||||||
|
requestAnimationFrame(() => {
|
||||||
|
if (this.status !== 'enter') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.transitionEnded = false;
|
||||||
|
this.setData({ classes: classNames['enter-to'] });
|
||||||
|
resolve();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
leave() {
|
leave() {
|
||||||
if (!this.data.display) {
|
if (!this.enterFinishedPromise)
|
||||||
return;
|
return;
|
||||||
}
|
this.enterFinishedPromise.then(() => {
|
||||||
const { duration, name } = this.data;
|
if (!this.data.display) {
|
||||||
const classNames = getClassNames(name);
|
|
||||||
const currentDuration = isObj(duration) ? duration.leave : duration;
|
|
||||||
this.status = 'leave';
|
|
||||||
this.$emit('before-leave');
|
|
||||||
requestAnimationFrame(() => {
|
|
||||||
if (this.status !== 'leave') {
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.$emit('leave');
|
const { duration, name } = this.data;
|
||||||
this.setData({
|
const classNames = getClassNames(name);
|
||||||
classes: classNames.leave,
|
const currentDuration = isObj(duration) ? duration.leave : duration;
|
||||||
currentDuration,
|
this.status = 'leave';
|
||||||
});
|
this.$emit('before-leave');
|
||||||
requestAnimationFrame(() => {
|
requestAnimationFrame(() => {
|
||||||
if (this.status !== 'leave') {
|
if (this.status !== 'leave') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.transitionEnded = false;
|
this.$emit('leave');
|
||||||
setTimeout(() => this.onTransitionEnd(), currentDuration);
|
this.setData({
|
||||||
this.setData({ classes: classNames['leave-to'] });
|
classes: classNames.leave,
|
||||||
|
currentDuration,
|
||||||
|
});
|
||||||
|
requestAnimationFrame(() => {
|
||||||
|
if (this.status !== 'leave') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.transitionEnded = false;
|
||||||
|
setTimeout(() => {
|
||||||
|
this.onTransitionEnd();
|
||||||
|
this.enterFinishedPromise = null;
|
||||||
|
}, currentDuration);
|
||||||
|
this.setData({ classes: classNames['leave-to'] });
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
2
dist/notice-bar/index.js
vendored
2
dist/notice-bar/index.js
vendored
@ -103,7 +103,7 @@ VantComponent({
|
|||||||
});
|
});
|
||||||
this.timer = setTimeout(() => {
|
this.timer = setTimeout(() => {
|
||||||
this.scroll();
|
this.scroll();
|
||||||
}, this.duration);
|
}, this.duration + this.data.delay);
|
||||||
},
|
},
|
||||||
onClickIcon(event) {
|
onClickIcon(event) {
|
||||||
if (this.data.mode === 'closeable') {
|
if (this.data.mode === 'closeable') {
|
||||||
|
2
dist/popup/popup.wxml
vendored
2
dist/popup/popup.wxml
vendored
@ -1,3 +1,5 @@
|
|||||||
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
<view
|
<view
|
||||||
wx:if="{{ inited }}"
|
wx:if="{{ inited }}"
|
||||||
class="custom-class {{ classes }} {{ utils.bem('popup', [position, { round, safe: safeAreaInsetBottom, safeTop: safeAreaInsetTop, safeTabBar: safeAreaTabBar }]) }}"
|
class="custom-class {{ classes }} {{ utils.bem('popup', [position, { round, safe: safeAreaInsetBottom, safeTop: safeAreaInsetTop, safeTabBar: safeAreaTabBar }]) }}"
|
||||||
|
4
dist/share-sheet/index.js
vendored
4
dist/share-sheet/index.js
vendored
@ -36,6 +36,10 @@ VantComponent({
|
|||||||
type: null,
|
type: null,
|
||||||
value: 300,
|
value: 300,
|
||||||
},
|
},
|
||||||
|
rootPortal: {
|
||||||
|
type: Boolean,
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onClickOverlay() {
|
onClickOverlay() {
|
||||||
|
1
dist/share-sheet/index.wxml
vendored
1
dist/share-sheet/index.wxml
vendored
@ -11,6 +11,7 @@
|
|||||||
overlay-style="{{ overlayStyle }}"
|
overlay-style="{{ overlayStyle }}"
|
||||||
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
||||||
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
||||||
|
root-portal="{{ rootPortal }}"
|
||||||
bind:close="onClose"
|
bind:close="onClose"
|
||||||
bind:click-overlay="onClickOverlay"
|
bind:click-overlay="onClickOverlay"
|
||||||
>
|
>
|
||||||
|
7
dist/stepper/index.js
vendored
7
dist/stepper/index.js
vendored
@ -128,12 +128,7 @@ VantComponent({
|
|||||||
if (value === '') {
|
if (value === '') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
let formatted = this.filter(value);
|
let formatted = this.format(value);
|
||||||
// limit max decimal length
|
|
||||||
if (isDef(this.data.decimalLength) && formatted.indexOf('.') !== -1) {
|
|
||||||
const pair = formatted.split('.');
|
|
||||||
formatted = `${pair[0]}.${pair[1].slice(0, this.data.decimalLength)}`;
|
|
||||||
}
|
|
||||||
this.emitChange(formatted);
|
this.emitChange(formatted);
|
||||||
},
|
},
|
||||||
emitChange(value) {
|
emitChange(value) {
|
||||||
|
4
dist/uploader/index.js
vendored
4
dist/uploader/index.js
vendored
@ -1,7 +1,7 @@
|
|||||||
import { VantComponent } from '../common/component';
|
import { VantComponent } from '../common/component';
|
||||||
import { isImageFile, chooseFile, isVideoFile } from './utils';
|
|
||||||
import { imageProps, videoProps, mediaProps, messageFileProps } from './shared';
|
|
||||||
import { isBoolean, isPromise } from '../common/validator';
|
import { isBoolean, isPromise } from '../common/validator';
|
||||||
|
import { imageProps, mediaProps, messageFileProps, videoProps } from './shared';
|
||||||
|
import { chooseFile, isImageFile, isVideoFile } from './utils';
|
||||||
VantComponent({
|
VantComponent({
|
||||||
props: Object.assign(Object.assign(Object.assign(Object.assign({ disabled: Boolean, multiple: Boolean, uploadText: String, useBeforeRead: Boolean, afterRead: null, beforeRead: null, previewSize: {
|
props: Object.assign(Object.assign(Object.assign(Object.assign({ disabled: Boolean, multiple: Boolean, uploadText: String, useBeforeRead: Boolean, afterRead: null, beforeRead: null, previewSize: {
|
||||||
type: null,
|
type: null,
|
||||||
|
1
dist/uploader/index.wxml
vendored
1
dist/uploader/index.wxml
vendored
@ -29,6 +29,7 @@
|
|||||||
poster="{{ item.thumb }}"
|
poster="{{ item.thumb }}"
|
||||||
autoplay="{{ item.autoplay }}"
|
autoplay="{{ item.autoplay }}"
|
||||||
object-fit="{{videoFit}}"
|
object-fit="{{videoFit}}"
|
||||||
|
referrer-policy="{{videoReferrerPolicy}}"
|
||||||
class="van-uploader__preview-image"
|
class="van-uploader__preview-image"
|
||||||
style="{{ computed.sizeStyle({ previewSize }) }}"
|
style="{{ computed.sizeStyle({ previewSize }) }}"
|
||||||
data-index="{{ index }}"
|
data-index="{{ index }}"
|
||||||
|
4
dist/uploader/shared.d.ts
vendored
4
dist/uploader/shared.d.ts
vendored
@ -29,6 +29,10 @@ export declare const videoProps: {
|
|||||||
type: StringConstructor;
|
type: StringConstructor;
|
||||||
value: string;
|
value: string;
|
||||||
};
|
};
|
||||||
|
referrerPolicy: {
|
||||||
|
type: StringConstructor;
|
||||||
|
value: string;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
export declare const mediaProps: {
|
export declare const mediaProps: {
|
||||||
capture: {
|
capture: {
|
||||||
|
6
dist/uploader/shared.js
vendored
6
dist/uploader/shared.js
vendored
@ -31,6 +31,10 @@ export const videoProps = {
|
|||||||
type: String,
|
type: String,
|
||||||
value: 'back',
|
value: 'back',
|
||||||
},
|
},
|
||||||
|
referrerPolicy: {
|
||||||
|
type: String,
|
||||||
|
value: 'no-referrer',
|
||||||
|
},
|
||||||
};
|
};
|
||||||
// props for media
|
// props for media
|
||||||
export const mediaProps = {
|
export const mediaProps = {
|
||||||
@ -40,7 +44,7 @@ export const mediaProps = {
|
|||||||
},
|
},
|
||||||
mediaType: {
|
mediaType: {
|
||||||
type: Array,
|
type: Array,
|
||||||
value: ['image', 'video'],
|
value: ['image', 'video', 'mix'],
|
||||||
},
|
},
|
||||||
maxDuration: {
|
maxDuration: {
|
||||||
type: Number,
|
type: Number,
|
||||||
|
6
dist/uploader/utils.js
vendored
6
dist/uploader/utils.js
vendored
@ -1,4 +1,4 @@
|
|||||||
import { pickExclude, isPC } from '../common/utils';
|
import { pickExclude, isPC, isWxWork } from '../common/utils';
|
||||||
import { isImageUrl, isVideoUrl } from '../common/validator';
|
import { isImageUrl, isVideoUrl } from '../common/validator';
|
||||||
export function isImageFile(item) {
|
export function isImageFile(item) {
|
||||||
if (item.isImage != null) {
|
if (item.isImage != null) {
|
||||||
@ -33,7 +33,7 @@ function formatVideo(res) {
|
|||||||
];
|
];
|
||||||
}
|
}
|
||||||
function formatMedia(res) {
|
function formatMedia(res) {
|
||||||
return res.tempFiles.map((item) => (Object.assign(Object.assign({}, pickExclude(item, ['fileType', 'thumbTempFilePath', 'tempFilePath'])), { type: res.type, url: item.tempFilePath, thumb: res.type === 'video' ? item.thumbTempFilePath : item.tempFilePath })));
|
return res.tempFiles.map((item) => (Object.assign(Object.assign({}, pickExclude(item, ['fileType', 'thumbTempFilePath', 'tempFilePath'])), { type: item.fileType, url: item.tempFilePath, thumb: item.fileType === 'video' ? item.thumbTempFilePath : item.tempFilePath })));
|
||||||
}
|
}
|
||||||
function formatFile(res) {
|
function formatFile(res) {
|
||||||
return res.tempFiles.map((item) => (Object.assign(Object.assign({}, pickExclude(item, ['path'])), { url: item.path })));
|
return res.tempFiles.map((item) => (Object.assign(Object.assign({}, pickExclude(item, ['path'])), { url: item.path })));
|
||||||
@ -42,7 +42,7 @@ export function chooseFile({ accept, multiple, capture, compressed, maxDuration,
|
|||||||
return new Promise((resolve, reject) => {
|
return new Promise((resolve, reject) => {
|
||||||
switch (accept) {
|
switch (accept) {
|
||||||
case 'image':
|
case 'image':
|
||||||
if (isPC) {
|
if (isPC || isWxWork) {
|
||||||
wx.chooseImage({
|
wx.chooseImage({
|
||||||
count: multiple ? Math.min(maxCount, 9) : 1,
|
count: multiple ? Math.min(maxCount, 9) : 1,
|
||||||
sourceType: capture,
|
sourceType: capture,
|
||||||
|
@ -1,4 +1,114 @@
|
|||||||
# 更新日志
|
# 更新日志
|
||||||
|
|
||||||
|
### [v1.11.6](https://github.com/youzan/vant-weapp/compare/v1.11.5...v1.11.6)
|
||||||
|
|
||||||
|
`2024-05-14`
|
||||||
|
|
||||||
|
**Bug Fixes**
|
||||||
|
|
||||||
|
- Cascader: 修复显示错误在 value 值清空的情况下 [#5760](https://github.com/youzan/vant-weapp/issues/5760)
|
||||||
|
- Field: 修复清除按钮显示错误在 value 默认有值的情况下 [#5792](https://github.com/youzan/vant-weapp/issues/5792)
|
||||||
|
|
||||||
|
**Document**
|
||||||
|
|
||||||
|
- Button: 补全 hover-class 属性 [ebba3b](https://github.com/youzan/vant-weapp/commit/ebba3b14a133769e7b04b7a48667cbc777c280c4)
|
||||||
|
- Stepper: 修复 onChange 事件示例代码错误 [#5778](https://github.com/youzan/vant-weapp/issues/5778)
|
||||||
|
|
||||||
|
**Feature**
|
||||||
|
|
||||||
|
- Uploader: 新增 referrer-policy 属性支持 [#5770](https://github.com/youzan/vant-weapp/issues/5770)
|
||||||
|
|
||||||
|
### [v1.11.5](https://github.com/youzan/vant-weapp/compare/v1.11.4...v1.11.5)
|
||||||
|
|
||||||
|
`2024-04-15`
|
||||||
|
|
||||||
|
**Bug Fixes**
|
||||||
|
|
||||||
|
- Transition: 修复 observeDuration 方法未实现导致的报错 [#5743](https://github.com/youzan/vant-weapp/issues/5743)
|
||||||
|
- van-stepper: 修复在设置 max 属性后 onChange 结果不受限制 [#5741](https://github.com/youzan/vant-weapp/issues/5741)
|
||||||
|
|
||||||
|
**Feature**
|
||||||
|
|
||||||
|
- input: 新增 nicknamereview 事件支持 [#5758](https://github.com/youzan/vant-weapp/issues/5758)
|
||||||
|
|
||||||
|
**Document**
|
||||||
|
|
||||||
|
- docs(quickstart): 删除不需要的引导步骤 [#5744](https://github.com/youzan/vant-weapp/pull/5744)
|
||||||
|
|
||||||
|
### [v1.11.4](https://github.com/youzan/vant-weapp/compare/v1.11.3...v1.11.4)
|
||||||
|
|
||||||
|
`2024-01-22`
|
||||||
|
|
||||||
|
**Bug Fixes**
|
||||||
|
|
||||||
|
- Transition: 修复 popup 在特定情况下无法关闭 [#5707](https://github.com/youzan/vant-weapp/issues/5707)
|
||||||
|
|
||||||
|
### [v1.11.3](https://github.com/youzan/vant-weapp/compare/v1.11.2...v1.11.3)
|
||||||
|
|
||||||
|
`2024-01-16`
|
||||||
|
|
||||||
|
**Bug Fixes**
|
||||||
|
|
||||||
|
- Cascader: 修复 title slot 不生效 [#5676](https://github.com/youzan/vant-weapp/issues/5676)
|
||||||
|
- Transition: 修复 transition 多次触发 enter 时异常 [#5699](https://github.com/youzan/vant-weapp/issues/5699)
|
||||||
|
|
||||||
|
**Feature**
|
||||||
|
|
||||||
|
- Calendar、ActionSheet、Dialog、ShareSheet: 增加 root-portal 属性支持 [#5680](https://github.com/youzan/vant-weapp/issues/5680)
|
||||||
|
- goods-action-button: 增加 custom-style 属性支持 [#5659](https://github.com/youzan/vant-weapp/issues/5659)
|
||||||
|
- Upload: 增加 mix mediaType 支持 [#5690](https://github.com/youzan/vant-weapp/issues/5690)
|
||||||
|
|
||||||
|
### [v1.11.2](https://github.com/youzan/vant-weapp/compare/v1.11.1...v1.11.2)
|
||||||
|
|
||||||
|
`2023-12-05`
|
||||||
|
|
||||||
|
**Bug Fixes**
|
||||||
|
|
||||||
|
- dialog/goods-action-button: 修复 dialog、goods-action-button 组件缺少 getRealTimePhoneNumber 事件 [#5633](https://github.com/youzan/vant-weapp/issues/5633)
|
||||||
|
- upload: 修复企业微信下图片无法上传 [#5581](https://github.com/youzan/vant-weapp/issues/5581)
|
||||||
|
- calendar/input/textarea/popup: 修复 skyline 模式下组件报错问题 [#5650](https://github.com/youzan/vant-weapp/issues/5650)
|
||||||
|
|
||||||
|
**Document**
|
||||||
|
|
||||||
|
- area: 订正 columns-num 只支持 number 类型. [#5631](https://github.com/youzan/vant-weapp/issues/5631)
|
||||||
|
|
||||||
|
### [v1.11.1](https://github.com/youzan/vant-weapp/compare/v1.11.0...v1.11.1)
|
||||||
|
|
||||||
|
`2023-10-10`
|
||||||
|
|
||||||
|
**Feature**
|
||||||
|
|
||||||
|
- icon: update @vant/icon to v3.0.1 [#5583](https://github.com/youzan/vant-weapp/issues/5583)
|
||||||
|
|
||||||
|
### [v1.11.0](https://github.com/youzan/vant-weapp/compare/v1.10.25...v1.11.0)
|
||||||
|
|
||||||
|
`2023-09-18`
|
||||||
|
|
||||||
|
**Bug Fixes**
|
||||||
|
|
||||||
|
- calendar: 修复 calendar 调用 reset 方法时丢失默认值 [#5546](https://github.com/youzan/vant-weapp/issues/5546)
|
||||||
|
- van-notice-bar: 修复 delay 属性不生效问题 [#5547](https://github.com/youzan/vant-weapp/issues/5547)
|
||||||
|
|
||||||
|
**Document**
|
||||||
|
|
||||||
|
- skeleton: 修复 custom class 文档缺失 [#5548](https://github.com/youzan/vant-weapp/issues/5548)
|
||||||
|
|
||||||
|
**Feature**
|
||||||
|
|
||||||
|
- icon: 升级 @vant/icon 到 [3.0.0](https://github.com/youzan/vant/blob/main/packages/vant-icons/CHANGELOG.md) [#5561](https://github.com/youzan/vant-weapp/issues/5561)
|
||||||
|
|
||||||
|
### [v1.10.25](https://github.com/youzan/vant-weapp/compare/v1.10.24...v1.10.25)
|
||||||
|
|
||||||
|
`2023-08-30`
|
||||||
|
|
||||||
|
**Document**
|
||||||
|
|
||||||
|
- slider: 修复 use-button-slot 文档错误 [#5534](https://github.com/youzan/vant-weapp/issues/5534)
|
||||||
|
|
||||||
|
**Feature**
|
||||||
|
|
||||||
|
- button: 增加 button-id 属性 和 agreePrivacyAuthorization 事件支持 [#5533](https://github.com/youzan/vant-weapp/issues/5533)
|
||||||
|
|
||||||
### [v1.10.24](https://github.com/youzan/vant-weapp/compare/v1.10.23...v1.10.24)
|
### [v1.10.24](https://github.com/youzan/vant-weapp/compare/v1.10.23...v1.10.24)
|
||||||
|
|
||||||
`2023-08-25`
|
`2023-08-25`
|
||||||
@ -1243,7 +1353,7 @@ Rate [\#3105](https://github.com/youzan/vant-weapp/pull/3105)
|
|||||||
|
|
||||||
微信小程序自定义组件的组件模型相当于一个简化版的 [Shadow DOM](https://developers.google.com/web/fundamentals/web-components/shadowdom?hl=zh-CN),幸运的是,小程序也支持了 [CSS 自定义属性](https://developer.mozilla.org/zh-CN/docs/Web/CSS/Using_CSS_custom_properties) 的特性。最终,我们基于 CSS 自定义属性设计了样式定制的方案,开发者使用灵活、方便,组件维护也更简单。
|
微信小程序自定义组件的组件模型相当于一个简化版的 [Shadow DOM](https://developers.google.com/web/fundamentals/web-components/shadowdom?hl=zh-CN),幸运的是,小程序也支持了 [CSS 自定义属性](https://developer.mozilla.org/zh-CN/docs/Web/CSS/Using_CSS_custom_properties) 的特性。最终,我们基于 CSS 自定义属性设计了样式定制的方案,开发者使用灵活、方便,组件维护也更简单。
|
||||||
|
|
||||||
从 1.0 版本开始,Vant Weapp 中的所有组件都支持通过 [CSS 组定义属性](https://developer.mozilla.org/zh-CN/docs/Web/CSS/Using_CSS_custom_properties) 进行样式定制,具体使用姿势可查看[相关文档](https://youzan.github.io/vant-weapp/#/theme)
|
从 1.0 版本开始,Vant Weapp 中的所有组件都支持通过 [CSS 组定义属性](https://developer.mozilla.org/zh-CN/docs/Web/CSS/Using_CSS_custom_properties) 进行样式定制,具体使用姿势可查看[相关文档](/vant-weapp/#/theme)
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
|
|
||||||
Vant 是一个**轻量、可靠的移动端组件库**,于 2017 年开源。
|
Vant 是一个**轻量、可靠的移动端组件库**,于 2017 年开源。
|
||||||
|
|
||||||
目前 Vant 官方提供了 [Vue 2 版本](https://vant-contrib.gitee.io/vant/v2)、[Vue 3 版本](https://vant-contrib.gitee.io/vant)和[微信小程序版本](http://vant-contrib.gitee.io/vant-weapp),并由社区团队维护 [React 版本](https://github.com/3lang3/react-vant)和[支付宝小程序版本](https://github.com/ant-move/Vant-Aliapp)。
|
目前 Vant 官方提供了 [Vue 2 版本](/vant/v2/)、[Vue 3 版本](/vant/)和[微信小程序版本](/vant-weapp/),并由社区团队维护 [React 版本](https://github.com/3lang3/react-vant)和[支付宝小程序版本](https://github.com/ant-move/Vant-Aliapp)。
|
||||||
|
|
||||||
### 预览
|
### 预览
|
||||||
|
|
||||||
@ -27,8 +27,8 @@ Vant 是一个**轻量、可靠的移动端组件库**,于 2017 年开源。
|
|||||||
### 链接
|
### 链接
|
||||||
|
|
||||||
- [意见反馈](https://github.com/youzan/vant-weapp/issues)
|
- [意见反馈](https://github.com/youzan/vant-weapp/issues)
|
||||||
- [设计资源](https://vant-contrib.gitee.io/vant/#/zh-CN/design)
|
- [设计资源](/vant/#/zh-CN/design)
|
||||||
- [更新日志](https://vant-contrib.gitee.io/vant-weapp/#/changelog)
|
- [更新日志](/vant-weapp/#/changelog)
|
||||||
- [官方示例](https://github.com/vant-ui/vant-demo)
|
- [官方示例](https://github.com/vant-ui/vant-demo)
|
||||||
|
|
||||||
## 贡献
|
## 贡献
|
||||||
|
@ -25,36 +25,13 @@ npm i vant-weapp -S --production
|
|||||||
|
|
||||||
将 app.json 中的 `"style": "v2"` 去除,小程序的[新版基础组件](https://developers.weixin.qq.com/miniprogram/dev/reference/configuration/app.html#style)强行加上了许多样式,难以覆盖,不关闭将造成部分组件样式混乱。
|
将 app.json 中的 `"style": "v2"` 去除,小程序的[新版基础组件](https://developers.weixin.qq.com/miniprogram/dev/reference/configuration/app.html#style)强行加上了许多样式,难以覆盖,不关闭将造成部分组件样式混乱。
|
||||||
|
|
||||||
### 步骤三 修改 project.config.json
|
### 步骤三 构建 npm 包
|
||||||
|
|
||||||
开发者工具创建的项目,`miniprogramRoot` 默认为 `miniprogram`,`package.json` 在其外部,npm 构建无法正常工作。
|
|
||||||
|
|
||||||
需要手动在 `project.config.json` 内添加如下配置,使开发者工具可以正确索引到 npm 依赖的位置。
|
|
||||||
|
|
||||||
```json
|
|
||||||
{
|
|
||||||
...
|
|
||||||
"setting": {
|
|
||||||
...
|
|
||||||
"packNpmManually": true,
|
|
||||||
"packNpmRelationList": [
|
|
||||||
{
|
|
||||||
"packageJsonPath": "./package.json",
|
|
||||||
"miniprogramNpmDistDir": "./miniprogram/"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
||||||
注意: 由于目前新版开发者工具创建的小程序目录文件结构问题,npm构建的文件目录为miniprogram_npm,并且开发工具会默认在当前目录下创建miniprogram_npm的文件名,所以新版本的miniprogramNpmDistDir配置为'./'即可
|
|
||||||
|
|
||||||
### 步骤四 构建 npm 包
|
|
||||||
|
|
||||||
打开微信开发者工具,点击 **工具 -> 构建 npm**,并勾选 **使用 npm 模块** 选项,构建完成后,即可引入组件。
|
打开微信开发者工具,点击 **工具 -> 构建 npm**,并勾选 **使用 npm 模块** 选项,构建完成后,即可引入组件。
|
||||||
|
|
||||||
<img style="width: 500px;" src="https://img.yzcdn.cn/public_files/2019/08/15/fa0549210055976cb63798503611ce3d.png" />
|
<img style="width: 500px;" src="https://img.yzcdn.cn/public_files/2019/08/15/fa0549210055976cb63798503611ce3d.png" />
|
||||||
|
|
||||||
### 步骤五 typescript 支持
|
### 步骤四 typescript 支持
|
||||||
|
|
||||||
如果你使用 typescript 开发小程序,还需要做如下操作,以获得顺畅的开发体验。
|
如果你使用 typescript 开发小程序,还需要做如下操作,以获得顺畅的开发体验。
|
||||||
|
|
||||||
|
@ -42,7 +42,7 @@
|
|||||||
"condition": false
|
"condition": false
|
||||||
},
|
},
|
||||||
"compileType": "miniprogram",
|
"compileType": "miniprogram",
|
||||||
"libVersion": "2.6.5",
|
"libVersion": "2.27.3",
|
||||||
"appid": "wx1c01b35002d3ba14",
|
"appid": "wx1c01b35002d3ba14",
|
||||||
"projectname": "vant-weapp",
|
"projectname": "vant-weapp",
|
||||||
"condition": {
|
"condition": {
|
||||||
|
@ -38,6 +38,10 @@ var button_1 = require("../mixins/button");
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true,
|
value: true,
|
||||||
},
|
},
|
||||||
|
rootPortal: {
|
||||||
|
type: Boolean,
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onSelect: function (event) {
|
onSelect: function (event) {
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
custom-class="van-action-sheet custom-class"
|
custom-class="van-action-sheet custom-class"
|
||||||
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
||||||
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
||||||
|
root-portal="{{ rootPortal }}"
|
||||||
bind:close="onClickOverlay"
|
bind:close="onClickOverlay"
|
||||||
>
|
>
|
||||||
<view wx:if="{{ title }}" class="van-action-sheet__header">
|
<view wx:if="{{ title }}" class="van-action-sheet__header">
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
<view class="van-calendar">
|
<view class="van-calendar">
|
||||||
<header
|
<header
|
||||||
title="{{ title }}"
|
title="{{ title }}"
|
||||||
|
@ -129,6 +129,10 @@ var getTime = function (date) {
|
|||||||
value: 0,
|
value: 0,
|
||||||
},
|
},
|
||||||
readonly: Boolean,
|
readonly: Boolean,
|
||||||
|
rootPortal: {
|
||||||
|
type: Boolean,
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
data: {
|
data: {
|
||||||
subtitle: '',
|
subtitle: '',
|
||||||
@ -156,7 +160,7 @@ var getTime = function (date) {
|
|||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
reset: function () {
|
reset: function () {
|
||||||
this.setData({ currentDate: this.getInitialDate() });
|
this.setData({ currentDate: this.getInitialDate(this.data.defaultDate) });
|
||||||
this.scrollIntoView();
|
this.scrollIntoView();
|
||||||
},
|
},
|
||||||
initRect: function () {
|
initRect: function () {
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
closeable="{{ showTitle || showSubtitle }}"
|
closeable="{{ showTitle || showSubtitle }}"
|
||||||
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
||||||
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
||||||
|
root-portal="{{ rootPortal }}"
|
||||||
bind:enter="onOpen"
|
bind:enter="onOpen"
|
||||||
bind:close="onClose"
|
bind:close="onClose"
|
||||||
bind:after-enter="onOpened"
|
bind:after-enter="onOpened"
|
||||||
|
@ -60,6 +60,7 @@ var defaultFieldNames = {
|
|||||||
value: defaultFieldNames,
|
value: defaultFieldNames,
|
||||||
observer: 'updateFieldNames',
|
observer: 'updateFieldNames',
|
||||||
},
|
},
|
||||||
|
useTitleSlot: Boolean,
|
||||||
},
|
},
|
||||||
data: {
|
data: {
|
||||||
tabs: [],
|
tabs: [],
|
||||||
@ -160,6 +161,7 @@ var defaultFieldNames = {
|
|||||||
selected: null,
|
selected: null,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
activeTab: 0,
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
onClose: function () {
|
onClose: function () {
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
<wxs src="./index.wxs" module="utils" />
|
<wxs src="./index.wxs" module="utils" />
|
||||||
|
|
||||||
<view wx:if="{{ showHeader }}" class="van-cascader__header">
|
<view wx:if="{{ showHeader }}" class="van-cascader__header">
|
||||||
<text class="van-cascader__title"><slot name="title"></slot>{{ title }}</text>
|
<slot name="title" wx:if="{{ useTitleSlot }}"></slot>
|
||||||
|
<text class="van-cascader__title" wx:else>{{ title }}</text>
|
||||||
<van-icon
|
<van-icon
|
||||||
wx:if="{{ closeable }}"
|
wx:if="{{ closeable }}"
|
||||||
name="{{ closeIcon }}"
|
name="{{ closeIcon }}"
|
||||||
|
1
lib/common/utils.d.ts
vendored
1
lib/common/utils.d.ts
vendored
@ -18,3 +18,4 @@ export declare function addNumber(num1: any, num2: any): number;
|
|||||||
export declare const clamp: (num: any, min: any, max: any) => number;
|
export declare const clamp: (num: any, min: any, max: any) => number;
|
||||||
export declare function getCurrentPage<T>(): T & WechatMiniprogram.OptionalInterface<WechatMiniprogram.Page.ILifetime> & WechatMiniprogram.Page.InstanceProperties & WechatMiniprogram.Page.InstanceMethods<WechatMiniprogram.IAnyObject> & WechatMiniprogram.Page.Data<WechatMiniprogram.IAnyObject> & WechatMiniprogram.IAnyObject;
|
export declare function getCurrentPage<T>(): T & WechatMiniprogram.OptionalInterface<WechatMiniprogram.Page.ILifetime> & WechatMiniprogram.Page.InstanceProperties & WechatMiniprogram.Page.InstanceMethods<WechatMiniprogram.IAnyObject> & WechatMiniprogram.Page.Data<WechatMiniprogram.IAnyObject> & WechatMiniprogram.IAnyObject;
|
||||||
export declare const isPC: boolean;
|
export declare const isPC: boolean;
|
||||||
|
export declare const isWxWork: boolean;
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
"use strict";
|
"use strict";
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
exports.isPC = exports.getCurrentPage = exports.clamp = exports.addNumber = exports.toPromise = exports.groupSetData = exports.getAllRect = exports.getRect = exports.pickExclude = exports.requestAnimationFrame = exports.addUnit = exports.nextTick = exports.range = exports.getSystemInfoSync = exports.isDef = void 0;
|
exports.isWxWork = exports.isPC = exports.getCurrentPage = exports.clamp = exports.addNumber = exports.toPromise = exports.groupSetData = exports.getAllRect = exports.getRect = exports.pickExclude = exports.requestAnimationFrame = exports.addUnit = exports.nextTick = exports.range = exports.getSystemInfoSync = exports.isDef = void 0;
|
||||||
var validator_1 = require("./validator");
|
var validator_1 = require("./validator");
|
||||||
var version_1 = require("./version");
|
var version_1 = require("./version");
|
||||||
var validator_2 = require("./validator");
|
var validator_2 = require("./validator");
|
||||||
@ -105,3 +105,5 @@ function getCurrentPage() {
|
|||||||
}
|
}
|
||||||
exports.getCurrentPage = getCurrentPage;
|
exports.getCurrentPage = getCurrentPage;
|
||||||
exports.isPC = ['mac', 'windows'].includes((0, version_1.getSystemInfoSync)().platform);
|
exports.isPC = ['mac', 'windows'].includes((0, version_1.getSystemInfoSync)().platform);
|
||||||
|
// 是否企业微信
|
||||||
|
exports.isWxWork = (0, version_1.getSystemInfoSync)().environment === 'wxwork';
|
||||||
|
8
lib/common/version.d.ts
vendored
8
lib/common/version.d.ts
vendored
@ -1,5 +1,10 @@
|
|||||||
/// <reference types="miniprogram-api-typings" />
|
/// <reference types="miniprogram-api-typings" />
|
||||||
export declare function getSystemInfoSync(): WechatMiniprogram.SystemInfo;
|
interface WxWorkSystemInfo extends WechatMiniprogram.SystemInfo {
|
||||||
|
environment?: 'wxwork';
|
||||||
|
}
|
||||||
|
interface SystemInfo extends WxWorkSystemInfo, WechatMiniprogram.SystemInfo {
|
||||||
|
}
|
||||||
|
export declare function getSystemInfoSync(): SystemInfo;
|
||||||
export declare function canIUseModel(): boolean;
|
export declare function canIUseModel(): boolean;
|
||||||
export declare function canIUseFormFieldButton(): boolean;
|
export declare function canIUseFormFieldButton(): boolean;
|
||||||
export declare function canIUseAnimate(): boolean;
|
export declare function canIUseAnimate(): boolean;
|
||||||
@ -7,3 +12,4 @@ export declare function canIUseGroupSetData(): boolean;
|
|||||||
export declare function canIUseNextTick(): boolean;
|
export declare function canIUseNextTick(): boolean;
|
||||||
export declare function canIUseCanvas2d(): boolean;
|
export declare function canIUseCanvas2d(): boolean;
|
||||||
export declare function canIUseGetUserProfile(): boolean;
|
export declare function canIUseGetUserProfile(): boolean;
|
||||||
|
export {};
|
||||||
|
1
lib/definitions/index.d.ts
vendored
1
lib/definitions/index.d.ts
vendored
@ -4,6 +4,7 @@ interface VantComponentInstance {
|
|||||||
children: WechatMiniprogram.Component.TrivialInstance[];
|
children: WechatMiniprogram.Component.TrivialInstance[];
|
||||||
index: number;
|
index: number;
|
||||||
$emit: (name: string, detail?: unknown, options?: WechatMiniprogram.Component.TriggerEventOption) => void;
|
$emit: (name: string, detail?: unknown, options?: WechatMiniprogram.Component.TriggerEventOption) => void;
|
||||||
|
setView: (value: Record<string, any>, callback?: () => void) => void;
|
||||||
}
|
}
|
||||||
export type VantComponentOptions<Data extends WechatMiniprogram.Component.DataOption, Props extends WechatMiniprogram.Component.PropertyOption, Methods extends WechatMiniprogram.Component.MethodOption> = {
|
export type VantComponentOptions<Data extends WechatMiniprogram.Component.DataOption, Props extends WechatMiniprogram.Component.PropertyOption, Methods extends WechatMiniprogram.Component.MethodOption> = {
|
||||||
data?: Data;
|
data?: Data;
|
||||||
|
@ -67,6 +67,10 @@ var utils_1 = require("../common/utils");
|
|||||||
type: String,
|
type: String,
|
||||||
value: 'scale',
|
value: 'scale',
|
||||||
},
|
},
|
||||||
|
rootPortal: {
|
||||||
|
type: Boolean,
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
data: {
|
data: {
|
||||||
loading: {
|
loading: {
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
custom-style="width: {{ utils.addUnit(width) }};{{ customStyle }}"
|
custom-style="width: {{ utils.addUnit(width) }};{{ customStyle }}"
|
||||||
overlay-style="{{ overlayStyle }}"
|
overlay-style="{{ overlayStyle }}"
|
||||||
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
||||||
|
root-portal="{{ rootPortal }}"
|
||||||
bind:close="onClickOverlay"
|
bind:close="onClickOverlay"
|
||||||
>
|
>
|
||||||
<view
|
<view
|
||||||
@ -57,6 +58,7 @@
|
|||||||
show-message-card="{{ showMessageCard }}"
|
show-message-card="{{ showMessageCard }}"
|
||||||
app-parameter="{{ appParameter }}"
|
app-parameter="{{ appParameter }}"
|
||||||
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
||||||
|
bindgetRealTimePhoneNumber="onGetRealTimePhoneNumber"
|
||||||
bind:click="onConfirm"
|
bind:click="onConfirm"
|
||||||
bindgetuserinfo="onGetUserInfo"
|
bindgetuserinfo="onGetUserInfo"
|
||||||
bindcontact="onContact"
|
bindcontact="onContact"
|
||||||
@ -107,6 +109,7 @@
|
|||||||
show-message-card="{{ showMessageCard }}"
|
show-message-card="{{ showMessageCard }}"
|
||||||
app-parameter="{{ appParameter }}"
|
app-parameter="{{ appParameter }}"
|
||||||
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
||||||
|
bindgetRealTimePhoneNumber="onGetRealTimePhoneNumber"
|
||||||
bind:click="onConfirm"
|
bind:click="onConfirm"
|
||||||
bindgetuserinfo="onGetUserInfo"
|
bindgetuserinfo="onGetUserInfo"
|
||||||
bindcontact="onContact"
|
bindcontact="onContact"
|
||||||
|
@ -44,6 +44,18 @@ var props_1 = require("./props");
|
|||||||
innerValue: '',
|
innerValue: '',
|
||||||
showClear: false,
|
showClear: false,
|
||||||
},
|
},
|
||||||
|
watch: {
|
||||||
|
value: function (value) {
|
||||||
|
if (value !== this.value) {
|
||||||
|
this.setData({ innerValue: value });
|
||||||
|
this.value = value;
|
||||||
|
this.setShowClear();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
clearTrigger: function () {
|
||||||
|
this.setShowClear();
|
||||||
|
},
|
||||||
|
},
|
||||||
created: function () {
|
created: function () {
|
||||||
this.value = this.data.value;
|
this.value = this.data.value;
|
||||||
this.setData({ innerValue: this.value });
|
this.setData({ innerValue: this.value });
|
||||||
@ -109,6 +121,9 @@ var props_1 = require("./props");
|
|||||||
onKeyboardHeightChange: function (event) {
|
onKeyboardHeightChange: function (event) {
|
||||||
this.$emit('keyboardheightchange', event.detail);
|
this.$emit('keyboardheightchange', event.detail);
|
||||||
},
|
},
|
||||||
|
onBindNicknameReview: function (event) {
|
||||||
|
this.$emit('nicknamereview', event.detail);
|
||||||
|
},
|
||||||
emitChange: function (detail) {
|
emitChange: function (detail) {
|
||||||
var extraEventParams = this.data.extraEventParams;
|
var extraEventParams = this.data.extraEventParams;
|
||||||
this.setData({ value: detail.value });
|
this.setData({ value: detail.value });
|
||||||
@ -130,7 +145,7 @@ var props_1 = require("./props");
|
|||||||
var trigger = clearTrigger === 'always' || (clearTrigger === 'focus' && focused);
|
var trigger = clearTrigger === 'always' || (clearTrigger === 'focus' && focused);
|
||||||
showClear = hasValue && trigger;
|
showClear = hasValue && trigger;
|
||||||
}
|
}
|
||||||
this.setData({ showClear: showClear });
|
this.setView({ showClear: showClear });
|
||||||
},
|
},
|
||||||
noop: function () { },
|
noop: function () { },
|
||||||
},
|
},
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
<input
|
<input
|
||||||
id="{{ name }}"
|
id="{{ name }}"
|
||||||
class="{{ utils.bem('field__control', [inputAlign, { disabled, error }]) }} input-class"
|
class="{{ utils.bem('field__control', [inputAlign, { disabled, error }]) }} input-class"
|
||||||
@ -26,4 +27,5 @@
|
|||||||
bindfocus="onFocus"
|
bindfocus="onFocus"
|
||||||
bindconfirm="onConfirm"
|
bindconfirm="onConfirm"
|
||||||
bindkeyboardheightchange="onKeyboardHeightChange"
|
bindkeyboardheightchange="onKeyboardHeightChange"
|
||||||
|
bindnicknamereview="onBindNicknameReview"
|
||||||
/>
|
/>
|
||||||
|
@ -2,15 +2,7 @@
|
|||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
exports.textareaProps = exports.inputProps = exports.commonProps = void 0;
|
exports.textareaProps = exports.inputProps = exports.commonProps = void 0;
|
||||||
exports.commonProps = {
|
exports.commonProps = {
|
||||||
value: {
|
value: String,
|
||||||
type: String,
|
|
||||||
observer: function (value) {
|
|
||||||
if (value !== this.value) {
|
|
||||||
this.setData({ innerValue: value });
|
|
||||||
this.value = value;
|
|
||||||
}
|
|
||||||
},
|
|
||||||
},
|
|
||||||
placeholder: String,
|
placeholder: String,
|
||||||
placeholderStyle: String,
|
placeholderStyle: String,
|
||||||
placeholderClass: String,
|
placeholderClass: String,
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
<textarea
|
<textarea
|
||||||
id="{{ name }}"
|
id="{{ name }}"
|
||||||
class="{{ utils.bem('field__control', [inputAlign, type, { disabled, error }]) }} input-class"
|
class="{{ utils.bem('field__control', [inputAlign, type, { disabled, error }]) }} input-class"
|
||||||
|
@ -21,6 +21,10 @@ var link_1 = require("../mixins/link");
|
|||||||
type: String,
|
type: String,
|
||||||
value: 'danger',
|
value: 'danger',
|
||||||
},
|
},
|
||||||
|
customStyle: {
|
||||||
|
type: String,
|
||||||
|
value: '',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onClick: function (event) {
|
onClick: function (event) {
|
||||||
|
@ -12,6 +12,7 @@
|
|||||||
open-type="{{ openType }}"
|
open-type="{{ openType }}"
|
||||||
class="{{ utils.bem('goods-action-button', [type, { first: isFirst, last: isLast, plain: plain }])}}"
|
class="{{ utils.bem('goods-action-button', [type, { first: isFirst, last: isLast, plain: plain }])}}"
|
||||||
custom-class="van-goods-action-button__inner custom-class"
|
custom-class="van-goods-action-button__inner custom-class"
|
||||||
|
custom-style="{{customStyle}}"
|
||||||
business-id="{{ businessId }}"
|
business-id="{{ businessId }}"
|
||||||
session-from="{{ sessionFrom }}"
|
session-from="{{ sessionFrom }}"
|
||||||
app-parameter="{{ appParameter }}"
|
app-parameter="{{ appParameter }}"
|
||||||
@ -25,6 +26,7 @@
|
|||||||
bindopensetting="onOpenSetting"
|
bindopensetting="onOpenSetting"
|
||||||
bindgetuserinfo="onGetUserInfo"
|
bindgetuserinfo="onGetUserInfo"
|
||||||
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
||||||
|
bindgetRealTimePhoneNumber="onGetRealTimePhoneNumber"
|
||||||
bindgetphonenumber="onGetPhoneNumber"
|
bindgetphonenumber="onGetPhoneNumber"
|
||||||
bindlaunchapp="onLaunchApp"
|
bindlaunchapp="onLaunchApp"
|
||||||
>
|
>
|
||||||
|
File diff suppressed because one or more lines are too long
@ -10,5 +10,21 @@ exports.basic = Behavior({
|
|||||||
this.setData(data);
|
this.setData(data);
|
||||||
return new Promise(function (resolve) { return wx.nextTick(resolve); });
|
return new Promise(function (resolve) { return wx.nextTick(resolve); });
|
||||||
},
|
},
|
||||||
|
// high performance setData
|
||||||
|
setView: function (data, callback) {
|
||||||
|
var _this = this;
|
||||||
|
var target = {};
|
||||||
|
var hasChange = false;
|
||||||
|
Object.keys(data).forEach(function (key) {
|
||||||
|
if (data[key] !== _this.data[key]) {
|
||||||
|
target[key] = data[key];
|
||||||
|
hasChange = true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
if (hasChange) {
|
||||||
|
return this.setData(target, callback);
|
||||||
|
}
|
||||||
|
return callback && callback();
|
||||||
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
@ -24,7 +24,6 @@ function transition(showDefaultValue) {
|
|||||||
duration: {
|
duration: {
|
||||||
type: null,
|
type: null,
|
||||||
value: 300,
|
value: 300,
|
||||||
observer: 'observeDuration',
|
|
||||||
},
|
},
|
||||||
name: {
|
name: {
|
||||||
type: String,
|
type: String,
|
||||||
@ -50,60 +49,72 @@ function transition(showDefaultValue) {
|
|||||||
},
|
},
|
||||||
enter: function () {
|
enter: function () {
|
||||||
var _this = this;
|
var _this = this;
|
||||||
var _a = this.data, duration = _a.duration, name = _a.name;
|
if (this.enterFinishedPromise)
|
||||||
var classNames = getClassNames(name);
|
|
||||||
var currentDuration = (0, validator_1.isObj)(duration) ? duration.enter : duration;
|
|
||||||
if (this.status === 'enter') {
|
|
||||||
return;
|
return;
|
||||||
}
|
this.enterFinishedPromise = new Promise(function (resolve) {
|
||||||
this.status = 'enter';
|
var _a = _this.data, duration = _a.duration, name = _a.name;
|
||||||
this.$emit('before-enter');
|
var classNames = getClassNames(name);
|
||||||
(0, utils_1.requestAnimationFrame)(function () {
|
var currentDuration = (0, validator_1.isObj)(duration) ? duration.enter : duration;
|
||||||
if (_this.status !== 'enter') {
|
if (_this.status === 'enter') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
_this.$emit('enter');
|
_this.status = 'enter';
|
||||||
_this.setData({
|
_this.$emit('before-enter');
|
||||||
inited: true,
|
|
||||||
display: true,
|
|
||||||
classes: classNames.enter,
|
|
||||||
currentDuration: currentDuration,
|
|
||||||
});
|
|
||||||
(0, utils_1.requestAnimationFrame)(function () {
|
(0, utils_1.requestAnimationFrame)(function () {
|
||||||
if (_this.status !== 'enter') {
|
if (_this.status !== 'enter') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
_this.transitionEnded = false;
|
_this.$emit('enter');
|
||||||
_this.setData({ classes: classNames['enter-to'] });
|
_this.setData({
|
||||||
|
inited: true,
|
||||||
|
display: true,
|
||||||
|
classes: classNames.enter,
|
||||||
|
currentDuration: currentDuration,
|
||||||
|
});
|
||||||
|
(0, utils_1.requestAnimationFrame)(function () {
|
||||||
|
if (_this.status !== 'enter') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_this.transitionEnded = false;
|
||||||
|
_this.setData({ classes: classNames['enter-to'] });
|
||||||
|
resolve();
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
leave: function () {
|
leave: function () {
|
||||||
var _this = this;
|
var _this = this;
|
||||||
if (!this.data.display) {
|
if (!this.enterFinishedPromise)
|
||||||
return;
|
return;
|
||||||
}
|
this.enterFinishedPromise.then(function () {
|
||||||
var _a = this.data, duration = _a.duration, name = _a.name;
|
if (!_this.data.display) {
|
||||||
var classNames = getClassNames(name);
|
|
||||||
var currentDuration = (0, validator_1.isObj)(duration) ? duration.leave : duration;
|
|
||||||
this.status = 'leave';
|
|
||||||
this.$emit('before-leave');
|
|
||||||
(0, utils_1.requestAnimationFrame)(function () {
|
|
||||||
if (_this.status !== 'leave') {
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
_this.$emit('leave');
|
var _a = _this.data, duration = _a.duration, name = _a.name;
|
||||||
_this.setData({
|
var classNames = getClassNames(name);
|
||||||
classes: classNames.leave,
|
var currentDuration = (0, validator_1.isObj)(duration) ? duration.leave : duration;
|
||||||
currentDuration: currentDuration,
|
_this.status = 'leave';
|
||||||
});
|
_this.$emit('before-leave');
|
||||||
(0, utils_1.requestAnimationFrame)(function () {
|
(0, utils_1.requestAnimationFrame)(function () {
|
||||||
if (_this.status !== 'leave') {
|
if (_this.status !== 'leave') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
_this.transitionEnded = false;
|
_this.$emit('leave');
|
||||||
setTimeout(function () { return _this.onTransitionEnd(); }, currentDuration);
|
_this.setData({
|
||||||
_this.setData({ classes: classNames['leave-to'] });
|
classes: classNames.leave,
|
||||||
|
currentDuration: currentDuration,
|
||||||
|
});
|
||||||
|
(0, utils_1.requestAnimationFrame)(function () {
|
||||||
|
if (_this.status !== 'leave') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
_this.transitionEnded = false;
|
||||||
|
setTimeout(function () {
|
||||||
|
_this.onTransitionEnd();
|
||||||
|
_this.enterFinishedPromise = null;
|
||||||
|
}, currentDuration);
|
||||||
|
_this.setData({ classes: classNames['leave-to'] });
|
||||||
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
@ -108,7 +108,7 @@ var utils_1 = require("../common/utils");
|
|||||||
});
|
});
|
||||||
this.timer = setTimeout(function () {
|
this.timer = setTimeout(function () {
|
||||||
_this.scroll();
|
_this.scroll();
|
||||||
}, this.duration);
|
}, this.duration + this.data.delay);
|
||||||
},
|
},
|
||||||
onClickIcon: function (event) {
|
onClickIcon: function (event) {
|
||||||
if (this.data.mode === 'closeable') {
|
if (this.data.mode === 'closeable') {
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
<view
|
<view
|
||||||
wx:if="{{ inited }}"
|
wx:if="{{ inited }}"
|
||||||
class="custom-class {{ classes }} {{ utils.bem('popup', [position, { round, safe: safeAreaInsetBottom, safeTop: safeAreaInsetTop, safeTabBar: safeAreaTabBar }]) }}"
|
class="custom-class {{ classes }} {{ utils.bem('popup', [position, { round, safe: safeAreaInsetBottom, safeTop: safeAreaInsetTop, safeTabBar: safeAreaTabBar }]) }}"
|
||||||
|
@ -38,6 +38,10 @@ var component_1 = require("../common/component");
|
|||||||
type: null,
|
type: null,
|
||||||
value: 300,
|
value: 300,
|
||||||
},
|
},
|
||||||
|
rootPortal: {
|
||||||
|
type: Boolean,
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
onClickOverlay: function () {
|
onClickOverlay: function () {
|
||||||
|
@ -11,6 +11,7 @@
|
|||||||
overlay-style="{{ overlayStyle }}"
|
overlay-style="{{ overlayStyle }}"
|
||||||
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
||||||
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
||||||
|
root-portal="{{ rootPortal }}"
|
||||||
bind:close="onClose"
|
bind:close="onClose"
|
||||||
bind:click-overlay="onClickOverlay"
|
bind:click-overlay="onClickOverlay"
|
||||||
>
|
>
|
||||||
|
@ -141,12 +141,7 @@ function equal(value1, value2) {
|
|||||||
if (value === '') {
|
if (value === '') {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
var formatted = this.filter(value);
|
var formatted = this.format(value);
|
||||||
// limit max decimal length
|
|
||||||
if ((0, validator_1.isDef)(this.data.decimalLength) && formatted.indexOf('.') !== -1) {
|
|
||||||
var pair = formatted.split('.');
|
|
||||||
formatted = "".concat(pair[0], ".").concat(pair[1].slice(0, this.data.decimalLength));
|
|
||||||
}
|
|
||||||
this.emitChange(formatted);
|
this.emitChange(formatted);
|
||||||
},
|
},
|
||||||
emitChange: function (value) {
|
emitChange: function (value) {
|
||||||
|
@ -12,9 +12,9 @@ var __assign = (this && this.__assign) || function () {
|
|||||||
};
|
};
|
||||||
Object.defineProperty(exports, "__esModule", { value: true });
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||||||
var component_1 = require("../common/component");
|
var component_1 = require("../common/component");
|
||||||
var utils_1 = require("./utils");
|
|
||||||
var shared_1 = require("./shared");
|
|
||||||
var validator_1 = require("../common/validator");
|
var validator_1 = require("../common/validator");
|
||||||
|
var shared_1 = require("./shared");
|
||||||
|
var utils_1 = require("./utils");
|
||||||
(0, component_1.VantComponent)({
|
(0, component_1.VantComponent)({
|
||||||
props: __assign(__assign(__assign(__assign({ disabled: Boolean, multiple: Boolean, uploadText: String, useBeforeRead: Boolean, afterRead: null, beforeRead: null, previewSize: {
|
props: __assign(__assign(__assign(__assign({ disabled: Boolean, multiple: Boolean, uploadText: String, useBeforeRead: Boolean, afterRead: null, beforeRead: null, previewSize: {
|
||||||
type: null,
|
type: null,
|
||||||
|
@ -29,6 +29,7 @@
|
|||||||
poster="{{ item.thumb }}"
|
poster="{{ item.thumb }}"
|
||||||
autoplay="{{ item.autoplay }}"
|
autoplay="{{ item.autoplay }}"
|
||||||
object-fit="{{videoFit}}"
|
object-fit="{{videoFit}}"
|
||||||
|
referrer-policy="{{videoReferrerPolicy}}"
|
||||||
class="van-uploader__preview-image"
|
class="van-uploader__preview-image"
|
||||||
style="{{ computed.sizeStyle({ previewSize }) }}"
|
style="{{ computed.sizeStyle({ previewSize }) }}"
|
||||||
data-index="{{ index }}"
|
data-index="{{ index }}"
|
||||||
|
4
lib/uploader/shared.d.ts
vendored
4
lib/uploader/shared.d.ts
vendored
@ -29,6 +29,10 @@ export declare const videoProps: {
|
|||||||
type: StringConstructor;
|
type: StringConstructor;
|
||||||
value: string;
|
value: string;
|
||||||
};
|
};
|
||||||
|
referrerPolicy: {
|
||||||
|
type: StringConstructor;
|
||||||
|
value: string;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
export declare const mediaProps: {
|
export declare const mediaProps: {
|
||||||
capture: {
|
capture: {
|
||||||
|
@ -34,6 +34,10 @@ exports.videoProps = {
|
|||||||
type: String,
|
type: String,
|
||||||
value: 'back',
|
value: 'back',
|
||||||
},
|
},
|
||||||
|
referrerPolicy: {
|
||||||
|
type: String,
|
||||||
|
value: 'no-referrer',
|
||||||
|
},
|
||||||
};
|
};
|
||||||
// props for media
|
// props for media
|
||||||
exports.mediaProps = {
|
exports.mediaProps = {
|
||||||
@ -43,7 +47,7 @@ exports.mediaProps = {
|
|||||||
},
|
},
|
||||||
mediaType: {
|
mediaType: {
|
||||||
type: Array,
|
type: Array,
|
||||||
value: ['image', 'video'],
|
value: ['image', 'video', 'mix'],
|
||||||
},
|
},
|
||||||
maxDuration: {
|
maxDuration: {
|
||||||
type: Number,
|
type: Number,
|
||||||
|
@ -49,7 +49,7 @@ function formatVideo(res) {
|
|||||||
];
|
];
|
||||||
}
|
}
|
||||||
function formatMedia(res) {
|
function formatMedia(res) {
|
||||||
return res.tempFiles.map(function (item) { return (__assign(__assign({}, (0, utils_1.pickExclude)(item, ['fileType', 'thumbTempFilePath', 'tempFilePath'])), { type: res.type, url: item.tempFilePath, thumb: res.type === 'video' ? item.thumbTempFilePath : item.tempFilePath })); });
|
return res.tempFiles.map(function (item) { return (__assign(__assign({}, (0, utils_1.pickExclude)(item, ['fileType', 'thumbTempFilePath', 'tempFilePath'])), { type: item.fileType, url: item.tempFilePath, thumb: item.fileType === 'video' ? item.thumbTempFilePath : item.tempFilePath })); });
|
||||||
}
|
}
|
||||||
function formatFile(res) {
|
function formatFile(res) {
|
||||||
return res.tempFiles.map(function (item) { return (__assign(__assign({}, (0, utils_1.pickExclude)(item, ['path'])), { url: item.path })); });
|
return res.tempFiles.map(function (item) { return (__assign(__assign({}, (0, utils_1.pickExclude)(item, ['path'])), { url: item.path })); });
|
||||||
@ -59,7 +59,7 @@ function chooseFile(_a) {
|
|||||||
return new Promise(function (resolve, reject) {
|
return new Promise(function (resolve, reject) {
|
||||||
switch (accept) {
|
switch (accept) {
|
||||||
case 'image':
|
case 'image':
|
||||||
if (utils_1.isPC) {
|
if (utils_1.isPC || utils_1.isWxWork) {
|
||||||
wx.chooseImage({
|
wx.chooseImage({
|
||||||
count: multiple ? Math.min(maxCount, 9) : 1,
|
count: multiple ? Math.min(maxCount, 9) : 1,
|
||||||
sourceType: capture,
|
sourceType: capture,
|
||||||
|
14
package.json
14
package.json
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@vant/weapp",
|
"name": "@vant/weapp",
|
||||||
"version": "1.10.25",
|
"version": "1.11.6",
|
||||||
"author": "vant-ui",
|
"author": "vant-ui",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"miniprogram": "lib",
|
"miniprogram": "lib",
|
||||||
@ -16,7 +16,6 @@
|
|||||||
"release": "sh build/release.sh",
|
"release": "sh build/release.sh",
|
||||||
"release:site": "vant-cli build-site && gh-pages -d site-dist --add",
|
"release:site": "vant-cli build-site && gh-pages -d site-dist --add",
|
||||||
"build:lib": "yarn && npx gulp -f build/compiler.js --series buildEs buildLib",
|
"build:lib": "yarn && npx gulp -f build/compiler.js --series buildEs buildLib",
|
||||||
"build:changelog": "vant-cli changelog",
|
|
||||||
"upload:weapp": "node build/upload.js",
|
"upload:weapp": "node build/upload.js",
|
||||||
"test": "jest",
|
"test": "jest",
|
||||||
"test:watch": "jest --watch"
|
"test:watch": "jest --watch"
|
||||||
@ -44,8 +43,9 @@
|
|||||||
"@babel/plugin-transform-modules-commonjs": "^7.16.0",
|
"@babel/plugin-transform-modules-commonjs": "^7.16.0",
|
||||||
"@babel/preset-typescript": "^7.16.0",
|
"@babel/preset-typescript": "^7.16.0",
|
||||||
"@types/jest": "^27.0.2",
|
"@types/jest": "^27.0.2",
|
||||||
"@vant/cli": "^4.0.0",
|
"@vant/cli": "^7.0.3",
|
||||||
"@vant/icons": "^1.7.1",
|
"@vant/icons": "^3.0.1",
|
||||||
|
"@vant/stylelint-config": "^1.4.2",
|
||||||
"gulp": "^4.0.2",
|
"gulp": "^4.0.2",
|
||||||
"gulp-insert": "^0.5.0",
|
"gulp-insert": "^0.5.0",
|
||||||
"gulp-less": "^5.0.0",
|
"gulp-less": "^5.0.0",
|
||||||
@ -58,6 +58,7 @@
|
|||||||
"miniprogram-api-typings": "^3.1.6",
|
"miniprogram-api-typings": "^3.1.6",
|
||||||
"miniprogram-ci": "^1.6.1",
|
"miniprogram-ci": "^1.6.1",
|
||||||
"miniprogram-simulate": "^1.4.2",
|
"miniprogram-simulate": "^1.4.2",
|
||||||
|
"stylelint": "13.13.1",
|
||||||
"ts-jest": "^27.0.7",
|
"ts-jest": "^27.0.7",
|
||||||
"tscpaths": "^0.0.9",
|
"tscpaths": "^0.0.9",
|
||||||
"typescript": "^4.4.4",
|
"typescript": "^4.4.4",
|
||||||
@ -67,5 +68,8 @@
|
|||||||
"Chrome >= 53",
|
"Chrome >= 53",
|
||||||
"ChromeAndroid >= 53",
|
"ChromeAndroid >= 53",
|
||||||
"iOS >= 9"
|
"iOS >= 9"
|
||||||
]
|
],
|
||||||
|
"resolutions": {
|
||||||
|
"source-map": "0.7.4"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
@ -166,6 +166,7 @@ Page({
|
|||||||
| close-on-click-action | 是否在点击选项后关闭 | _boolean_ | `true` |
|
| close-on-click-action | 是否在点击选项后关闭 | _boolean_ | `true` |
|
||||||
| close-on-click-overlay | 点击遮罩是否关闭菜单 | _boolean_ | `true` |
|
| close-on-click-overlay | 点击遮罩是否关闭菜单 | _boolean_ | `true` |
|
||||||
| safe-area-inset-bottom | 是否为 iPhoneX 留出底部安全距离 | _boolean_ | `true` |
|
| safe-area-inset-bottom | 是否为 iPhoneX 留出底部安全距离 | _boolean_ | `true` |
|
||||||
|
| root-portal `v1.11.3` | 是否从页面子树中脱离出来,用于解决各种 fixed 失效问题,微信基础库 >= `2.25.2 ` | _boolean_ | `false` |
|
||||||
|
|
||||||
### Events
|
### Events
|
||||||
|
|
||||||
@ -207,7 +208,7 @@ Page({
|
|||||||
|
|
||||||
### 外部样式类
|
### 外部样式类
|
||||||
|
|
||||||
| 类名 | 说明 |
|
| 类名 | 说明 |
|
||||||
| ------------ | -------------- |
|
| ---------------------- | ------------------- |
|
||||||
| custom-class `v1.10.7` | 根节点样式类 |
|
| custom-class `v1.10.7` | 根节点样式类 |
|
||||||
| list-class `v1.10.7` | `actions`容器样式类 |
|
| list-class `v1.10.7` | `actions`容器样式类 |
|
||||||
|
@ -38,6 +38,10 @@ VantComponent({
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true,
|
value: true,
|
||||||
},
|
},
|
||||||
|
rootPortal: {
|
||||||
|
type: Boolean,
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
custom-class="van-action-sheet custom-class"
|
custom-class="van-action-sheet custom-class"
|
||||||
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
||||||
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
||||||
|
root-portal="{{ rootPortal }}"
|
||||||
bind:close="onClickOverlay"
|
bind:close="onClickOverlay"
|
||||||
>
|
>
|
||||||
<view wx:if="{{ title }}" class="van-action-sheet__header">
|
<view wx:if="{{ title }}" class="van-action-sheet__header">
|
||||||
|
@ -131,7 +131,7 @@ db.collection('region')
|
|||||||
| value | 当前选中的省市区`code` | _string_ | - |
|
| value | 当前选中的省市区`code` | _string_ | - |
|
||||||
| title | 顶部栏标题 | _string_ | - |
|
| title | 顶部栏标题 | _string_ | - |
|
||||||
| area-list | 省市区数据,格式见下方 | _object_ | - |
|
| area-list | 省市区数据,格式见下方 | _object_ | - |
|
||||||
| columns-num | 省市区显示列数,3-省市区,2-省市,1-省 | _string \| number_ | `3` |
|
| columns-num | 省市区显示列数,3-省市区,2-省市,1-省 | _number_ | `3` |
|
||||||
| columns-placeholder | 列占位提示文字 | _string[]_ | `[]` |
|
| columns-placeholder | 列占位提示文字 | _string[]_ | `[]` |
|
||||||
| loading | 是否显示加载状态 | _boolean_ | `false` |
|
| loading | 是否显示加载状态 | _boolean_ | `false` |
|
||||||
| item-height | 选项高度 | _number_ | `44` |
|
| item-height | 选项高度 | _number_ | `44` |
|
||||||
|
@ -120,7 +120,7 @@
|
|||||||
| 参数 | 说明 | 类型 | 默认值 |
|
| 参数 | 说明 | 类型 | 默认值 |
|
||||||
| --- | --- | --- | --- |
|
| --- | --- | --- | --- |
|
||||||
| id | 标识符 | _string_ | - |
|
| id | 标识符 | _string_ | - |
|
||||||
| button-id `v1.10.25`| 标识符,作为原生button组件的id值 | _string_ | - |
|
| button-id `v1.10.25` | 标识符,作为原生 button 组件的 id 值 | _string_ | - |
|
||||||
| type | 按钮类型,可选值为 `primary` `info` `warning` `danger` | _string_ | `default` |
|
| type | 按钮类型,可选值为 `primary` `info` `warning` `danger` | _string_ | `default` |
|
||||||
| size | 按钮尺寸,可选值为 `normal` `large` `small` `mini` | _string_ | `normal` |
|
| size | 按钮尺寸,可选值为 `normal` `large` `small` `mini` | _string_ | `normal` |
|
||||||
| color `v1.0.0` | 按钮颜色,支持传入`linear-gradient`渐变色 | _string_ | - |
|
| color `v1.0.0` | 按钮颜色,支持传入`linear-gradient`渐变色 | _string_ | - |
|
||||||
@ -167,7 +167,8 @@
|
|||||||
|
|
||||||
### 外部样式类
|
### 外部样式类
|
||||||
|
|
||||||
| 类名 | 说明 |
|
| 类名 | 说明 |
|
||||||
| ------------- | -------------- |
|
| ------------- | ---------------------- |
|
||||||
| custom-class | 根节点样式类 |
|
| custom-class | 根节点样式类 |
|
||||||
| loading-class | 加载图标样式类 |
|
| hover-class | 指定按钮按下去的样式类 |
|
||||||
|
| loading-class | 加载图标样式类 |
|
||||||
|
@ -286,6 +286,7 @@ Page({
|
|||||||
| confirm-disabled-text | 确认按钮处于禁用状态时的文字 | _string_ | `确定` |
|
| confirm-disabled-text | 确认按钮处于禁用状态时的文字 | _string_ | `确定` |
|
||||||
| first-day-of-week | 设置周起始日 | _0~6_ | `0` |
|
| first-day-of-week | 设置周起始日 | _0~6_ | `0` |
|
||||||
| readonly `v1.9.1` | 是否为只读状态,只读状态下不能选择日期 | _boolean_ | `false` |
|
| readonly `v1.9.1` | 是否为只读状态,只读状态下不能选择日期 | _boolean_ | `false` |
|
||||||
|
| root-portal `v1.11.3` | 是否从页面子树中脱离出来,用于解决各种 fixed 失效问题,微信基础库 >= `2.25.2 ` | _boolean_ | `false` |
|
||||||
|
|
||||||
### Poppable Props
|
### Poppable Props
|
||||||
|
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
<wxs src="./index.wxs" module="computed" />
|
||||||
|
<wxs src="../wxs/utils.wxs" module="utils" />
|
||||||
<view class="van-calendar">
|
<view class="van-calendar">
|
||||||
<header
|
<header
|
||||||
title="{{ title }}"
|
title="{{ title }}"
|
||||||
|
@ -136,6 +136,10 @@ VantComponent({
|
|||||||
value: 0,
|
value: 0,
|
||||||
},
|
},
|
||||||
readonly: Boolean,
|
readonly: Boolean,
|
||||||
|
rootPortal: {
|
||||||
|
type: Boolean,
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
data: {
|
data: {
|
||||||
@ -168,7 +172,7 @@ VantComponent({
|
|||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
reset() {
|
reset() {
|
||||||
this.setData({ currentDate: this.getInitialDate() });
|
this.setData({ currentDate: this.getInitialDate(this.data.defaultDate) });
|
||||||
this.scrollIntoView();
|
this.scrollIntoView();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
closeable="{{ showTitle || showSubtitle }}"
|
closeable="{{ showTitle || showSubtitle }}"
|
||||||
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
||||||
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
safe-area-inset-bottom="{{ safeAreaInsetBottom }}"
|
||||||
|
root-portal="{{ rootPortal }}"
|
||||||
bind:enter="onOpen"
|
bind:enter="onOpen"
|
||||||
bind:close="onClose"
|
bind:close="onClose"
|
||||||
bind:after-enter="onOpened"
|
bind:after-enter="onOpened"
|
||||||
|
@ -210,9 +210,11 @@ Page({
|
|||||||
| active-color | 选中状态的高亮颜色 | _string_ | `#1989fa` |
|
| active-color | 选中状态的高亮颜色 | _string_ | `#1989fa` |
|
||||||
| swipeable | 是否开启手势左右滑动切换 | _boolean_ | `false` |
|
| swipeable | 是否开启手势左右滑动切换 | _boolean_ | `false` |
|
||||||
| closeable | 是否显示关闭图标 | _boolean_ | `true` |
|
| closeable | 是否显示关闭图标 | _boolean_ | `true` |
|
||||||
|
| ellipsis `v1.11.7` | 是否省略过长的标题文字, 关闭后文字过长会出现横向滚动 | _boolean_ | `true` |
|
||||||
| show-header | 是否展示标题栏 | _boolean_ | `true` |
|
| show-header | 是否展示标题栏 | _boolean_ | `true` |
|
||||||
| close-icon | 关闭图标名称或图片链接,等同于 Icon 组件的 [name 属性](#/icon) | _string_ | `cross` |
|
| close-icon | 关闭图标名称或图片链接,等同于 Icon 组件的 [name 属性](#/icon) | _string_ | `cross` |
|
||||||
| field-names | 自定义 `options` 结构中的字段 | _CascaderFieldNames_ | `{ text: 'text', value: 'value', children: 'children' }` |
|
| field-names | 自定义 `options` 结构中的字段 | _CascaderFieldNames_ | `{ text: 'text', value: 'value', children: 'children' }` |
|
||||||
|
| use-title-slot `v1.11.3` | 是否使用自定义标题的插槽 | _boolean_ | `false` |
|
||||||
|
|
||||||
### CascaderOption 数据结构
|
### CascaderOption 数据结构
|
||||||
|
|
||||||
|
@ -45,6 +45,10 @@ VantComponent({
|
|||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true,
|
value: true,
|
||||||
},
|
},
|
||||||
|
ellipsis: {
|
||||||
|
type: Boolean,
|
||||||
|
value: true,
|
||||||
|
},
|
||||||
showHeader: {
|
showHeader: {
|
||||||
type: Boolean,
|
type: Boolean,
|
||||||
value: true,
|
value: true,
|
||||||
@ -58,6 +62,7 @@ VantComponent({
|
|||||||
value: defaultFieldNames,
|
value: defaultFieldNames,
|
||||||
observer: 'updateFieldNames',
|
observer: 'updateFieldNames',
|
||||||
},
|
},
|
||||||
|
useTitleSlot: Boolean,
|
||||||
},
|
},
|
||||||
|
|
||||||
data: {
|
data: {
|
||||||
@ -189,6 +194,7 @@ VantComponent({
|
|||||||
selected: null,
|
selected: null,
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
|
activeTab: 0,
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
onClose() {
|
onClose() {
|
||||||
|
@ -1,7 +1,8 @@
|
|||||||
<wxs src="./index.wxs" module="utils" />
|
<wxs src="./index.wxs" module="utils" />
|
||||||
|
|
||||||
<view wx:if="{{ showHeader }}" class="van-cascader__header">
|
<view wx:if="{{ showHeader }}" class="van-cascader__header">
|
||||||
<text class="van-cascader__title"><slot name="title"></slot>{{ title }}</text>
|
<slot name="title" wx:if="{{ useTitleSlot }}"></slot>
|
||||||
|
<text class="van-cascader__title" wx:else>{{ title }}</text>
|
||||||
<van-icon
|
<van-icon
|
||||||
wx:if="{{ closeable }}"
|
wx:if="{{ closeable }}"
|
||||||
name="{{ closeIcon }}"
|
name="{{ closeIcon }}"
|
||||||
@ -18,6 +19,7 @@
|
|||||||
color="{{ activeColor }}"
|
color="{{ activeColor }}"
|
||||||
border="{{ false }}"
|
border="{{ false }}"
|
||||||
swipeable="{{ swipeable }}"
|
swipeable="{{ swipeable }}"
|
||||||
|
ellipsis="{{ ellipsis }}"
|
||||||
bind:click="onClickTab"
|
bind:click="onClickTab"
|
||||||
>
|
>
|
||||||
<van-tab
|
<van-tab
|
||||||
|
@ -76,6 +76,7 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
bind:focus="onFocus"
|
bind:focus="onFocus"
|
||||||
bind:input="onInput"
|
bind:input="onInput"
|
||||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||||
|
bind:nicknamereview="onBindNicknameReview"
|
||||||
bind:tap="onClickInput"
|
bind:tap="onClickInput"
|
||||||
/>
|
/>
|
||||||
<wx-view
|
<wx-view
|
||||||
@ -187,6 +188,7 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
bind:focus="onFocus"
|
bind:focus="onFocus"
|
||||||
bind:input="onInput"
|
bind:input="onInput"
|
||||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||||
|
bind:nicknamereview="onBindNicknameReview"
|
||||||
bind:tap="onClickInput"
|
bind:tap="onClickInput"
|
||||||
/>
|
/>
|
||||||
<wx-view
|
<wx-view
|
||||||
@ -298,6 +300,7 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
bind:focus="onFocus"
|
bind:focus="onFocus"
|
||||||
bind:input="onInput"
|
bind:input="onInput"
|
||||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||||
|
bind:nicknamereview="onBindNicknameReview"
|
||||||
bind:tap="onClickInput"
|
bind:tap="onClickInput"
|
||||||
/>
|
/>
|
||||||
<wx-view
|
<wx-view
|
||||||
@ -409,6 +412,7 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
bind:focus="onFocus"
|
bind:focus="onFocus"
|
||||||
bind:input="onInput"
|
bind:input="onInput"
|
||||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||||
|
bind:nicknamereview="onBindNicknameReview"
|
||||||
bind:tap="onClickInput"
|
bind:tap="onClickInput"
|
||||||
/>
|
/>
|
||||||
<wx-view
|
<wx-view
|
||||||
|
@ -115,3 +115,6 @@ export function getCurrentPage<T>() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export const isPC = ['mac', 'windows'].includes(getSystemInfoSync().platform);
|
export const isPC = ['mac', 'windows'].includes(getSystemInfoSync().platform);
|
||||||
|
|
||||||
|
// 是否企业微信
|
||||||
|
export const isWxWork = getSystemInfoSync().environment === 'wxwork';
|
||||||
|
@ -1,10 +1,17 @@
|
|||||||
let systemInfo: WechatMiniprogram.SystemInfo;
|
interface WxWorkSystemInfo extends WechatMiniprogram.SystemInfo {
|
||||||
|
environment?: 'wxwork';
|
||||||
|
}
|
||||||
|
|
||||||
|
interface SystemInfo extends WxWorkSystemInfo, WechatMiniprogram.SystemInfo {}
|
||||||
|
|
||||||
|
let systemInfo: SystemInfo;
|
||||||
|
|
||||||
export function getSystemInfoSync() {
|
export function getSystemInfoSync() {
|
||||||
if (systemInfo == null) {
|
if (systemInfo == null) {
|
||||||
systemInfo = wx.getSystemInfoSync();
|
systemInfo = wx.getSystemInfoSync();
|
||||||
}
|
}
|
||||||
|
|
||||||
return systemInfo;
|
return systemInfo as SystemInfo;
|
||||||
}
|
}
|
||||||
|
|
||||||
function compareVersion(v1, v2) {
|
function compareVersion(v1, v2) {
|
||||||
|
@ -183,6 +183,7 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
bind:focus="onFocus"
|
bind:focus="onFocus"
|
||||||
bind:input="onInput"
|
bind:input="onInput"
|
||||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||||
|
bind:nicknamereview="onBindNicknameReview"
|
||||||
bind:tap="onClickInput"
|
bind:tap="onClickInput"
|
||||||
/>
|
/>
|
||||||
<wx-view
|
<wx-view
|
||||||
@ -300,6 +301,7 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
bind:focus="onFocus"
|
bind:focus="onFocus"
|
||||||
bind:input="onInput"
|
bind:input="onInput"
|
||||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||||
|
bind:nicknamereview="onBindNicknameReview"
|
||||||
bind:tap="onClickInput"
|
bind:tap="onClickInput"
|
||||||
/>
|
/>
|
||||||
<wx-view
|
<wx-view
|
||||||
@ -544,6 +546,7 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
bind:focus="onFocus"
|
bind:focus="onFocus"
|
||||||
bind:input="onInput"
|
bind:input="onInput"
|
||||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||||
|
bind:nicknamereview="onBindNicknameReview"
|
||||||
bind:tap="onClickInput"
|
bind:tap="onClickInput"
|
||||||
/>
|
/>
|
||||||
<wx-view
|
<wx-view
|
||||||
@ -661,6 +664,7 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
bind:focus="onFocus"
|
bind:focus="onFocus"
|
||||||
bind:input="onInput"
|
bind:input="onInput"
|
||||||
bind:keyboardheightchange="onKeyboardHeightChange"
|
bind:keyboardheightchange="onKeyboardHeightChange"
|
||||||
|
bind:nicknamereview="onBindNicknameReview"
|
||||||
bind:tap="onClickInput"
|
bind:tap="onClickInput"
|
||||||
/>
|
/>
|
||||||
<wx-view
|
<wx-view
|
||||||
|
@ -7,6 +7,7 @@ interface VantComponentInstance {
|
|||||||
detail?: unknown,
|
detail?: unknown,
|
||||||
options?: WechatMiniprogram.Component.TriggerEventOption
|
options?: WechatMiniprogram.Component.TriggerEventOption
|
||||||
) => void;
|
) => void;
|
||||||
|
setView: (value: Record<string, any>, callback?: () => void) => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
export type VantComponentOptions<
|
export type VantComponentOptions<
|
||||||
|
@ -266,6 +266,7 @@ Page({
|
|||||||
| before-close | 关闭前的回调函数,返回 `false` 可阻止关闭,支持返回 Promise | _(action) => boolean \| Promise\<boolean\>_ | - |
|
| before-close | 关闭前的回调函数,返回 `false` 可阻止关闭,支持返回 Promise | _(action) => boolean \| Promise\<boolean\>_ | - |
|
||||||
| transition | 动画名称,可选值为`fade` | _string_ | `scale` |
|
| transition | 动画名称,可选值为`fade` | _string_ | `scale` |
|
||||||
| confirm-button-open-type | 确认按钮的微信开放能力,具体支持可参考 [微信官方文档](https://developers.weixin.qq.com/miniprogram/dev/component/button.html) | _string_ | - |
|
| confirm-button-open-type | 确认按钮的微信开放能力,具体支持可参考 [微信官方文档](https://developers.weixin.qq.com/miniprogram/dev/component/button.html) | _string_ | - |
|
||||||
|
| root-portal `v1.11.3` | 是否从页面子树中脱离出来,用于解决各种 fixed 失效问题,微信基础库 >= `2.25.2 ` | _boolean_ | `false` |
|
||||||
|
|
||||||
### OpenType Props
|
### OpenType Props
|
||||||
|
|
||||||
|
@ -68,6 +68,10 @@ VantComponent({
|
|||||||
type: String,
|
type: String,
|
||||||
value: 'scale',
|
value: 'scale',
|
||||||
},
|
},
|
||||||
|
rootPortal: {
|
||||||
|
type: Boolean,
|
||||||
|
value: false,
|
||||||
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
data: {
|
data: {
|
||||||
|
@ -9,6 +9,7 @@
|
|||||||
custom-style="width: {{ utils.addUnit(width) }};{{ customStyle }}"
|
custom-style="width: {{ utils.addUnit(width) }};{{ customStyle }}"
|
||||||
overlay-style="{{ overlayStyle }}"
|
overlay-style="{{ overlayStyle }}"
|
||||||
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
close-on-click-overlay="{{ closeOnClickOverlay }}"
|
||||||
|
root-portal="{{ rootPortal }}"
|
||||||
bind:close="onClickOverlay"
|
bind:close="onClickOverlay"
|
||||||
>
|
>
|
||||||
<view
|
<view
|
||||||
@ -57,6 +58,7 @@
|
|||||||
show-message-card="{{ showMessageCard }}"
|
show-message-card="{{ showMessageCard }}"
|
||||||
app-parameter="{{ appParameter }}"
|
app-parameter="{{ appParameter }}"
|
||||||
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
||||||
|
bindgetRealTimePhoneNumber="onGetRealTimePhoneNumber"
|
||||||
bind:click="onConfirm"
|
bind:click="onConfirm"
|
||||||
bindgetuserinfo="onGetUserInfo"
|
bindgetuserinfo="onGetUserInfo"
|
||||||
bindcontact="onContact"
|
bindcontact="onContact"
|
||||||
@ -107,6 +109,7 @@
|
|||||||
show-message-card="{{ showMessageCard }}"
|
show-message-card="{{ showMessageCard }}"
|
||||||
app-parameter="{{ appParameter }}"
|
app-parameter="{{ appParameter }}"
|
||||||
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
bindagreeprivacyauthorization="onAgreePrivacyAuthorization"
|
||||||
|
bindgetRealTimePhoneNumber="onGetRealTimePhoneNumber"
|
||||||
bind:click="onConfirm"
|
bind:click="onConfirm"
|
||||||
bindgetuserinfo="onGetUserInfo"
|
bindgetuserinfo="onGetUserInfo"
|
||||||
bindcontact="onContact"
|
bindcontact="onContact"
|
||||||
|
@ -254,7 +254,7 @@ Page({
|
|||||||
| label | 输入框左侧文本 | _string_ | - |
|
| label | 输入框左侧文本 | _string_ | - |
|
||||||
| size | 单元格大小,可选值为 `large` | _string_ | - |
|
| size | 单元格大小,可选值为 `large` | _string_ | - |
|
||||||
| value | 当前输入的值 | _string \| number_ | - |
|
| value | 当前输入的值 | _string \| number_ | - |
|
||||||
| type | 可设置为任意原生类型, 如 `number` `idcard` `textarea` `digit` | _string_ | `text` |
|
| type | 可设置为任意原生类型, 如 `number` `idcard` `textarea` `digit` `nickname` | _string_ | `text` |
|
||||||
| fixed | 如果 type 为 `textarea` 且在一个 `position:fixed` 的区域,需要显示指定属性 fixed 为 true | _boolean_ | `false` |
|
| fixed | 如果 type 为 `textarea` 且在一个 `position:fixed` 的区域,需要显示指定属性 fixed 为 true | _boolean_ | `false` |
|
||||||
| focus | 获取焦点 | _boolean_ | `false` |
|
| focus | 获取焦点 | _boolean_ | `false` |
|
||||||
| border | 是否显示内边框 | _boolean_ | `true` |
|
| border | 是否显示内边框 | _boolean_ | `true` |
|
||||||
@ -309,6 +309,7 @@ Page({
|
|||||||
| bind:click-input | 点击输入区域时触发 | - |
|
| bind:click-input | 点击输入区域时触发 | - |
|
||||||
| bind:linechange | 输入框行数变化时调用,只对 textarea 有效 | event.detail = { height: 0, heightRpx: 0, lineCount: 0 } |
|
| bind:linechange | 输入框行数变化时调用,只对 textarea 有效 | event.detail = { height: 0, heightRpx: 0, lineCount: 0 } |
|
||||||
| bind:keyboardheightchange | 键盘高度发生变化的时候触发此事件 | event.detail = { height: height, duration: duration } |
|
| bind:keyboardheightchange | 键盘高度发生变化的时候触发此事件 | event.detail = { height: height, duration: duration } |
|
||||||
|
| bind:nicknamereview `v1.11.5` | 用户昵称审核完毕后触发,仅在 type 为 "nickname" 时有效 | event.detail = { pass, timeout } |
|
||||||
|
|
||||||
### InputDetail
|
### InputDetail
|
||||||
|
|
||||||
|
@ -66,6 +66,20 @@ VantComponent({
|
|||||||
showClear: false,
|
showClear: false,
|
||||||
},
|
},
|
||||||
|
|
||||||
|
watch: {
|
||||||
|
value(this: WechatMiniprogram.Component.TrivialInstance, value) {
|
||||||
|
if (value !== this.value) {
|
||||||
|
this.setData({ innerValue: value });
|
||||||
|
this.value = value;
|
||||||
|
|
||||||
|
this.setShowClear();
|
||||||
|
}
|
||||||
|
},
|
||||||
|
clearTrigger() {
|
||||||
|
this.setShowClear();
|
||||||
|
},
|
||||||
|
},
|
||||||
|
|
||||||
created() {
|
created() {
|
||||||
this.value = this.data.value;
|
this.value = this.data.value;
|
||||||
this.setData({ innerValue: this.value });
|
this.setData({ innerValue: this.value });
|
||||||
@ -164,6 +178,10 @@ VantComponent({
|
|||||||
this.$emit('keyboardheightchange', event.detail);
|
this.$emit('keyboardheightchange', event.detail);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
onBindNicknameReview(event) {
|
||||||
|
this.$emit('nicknamereview', event.detail);
|
||||||
|
},
|
||||||
|
|
||||||
emitChange(detail: InputDetails) {
|
emitChange(detail: InputDetails) {
|
||||||
const { extraEventParams } = this.data;
|
const { extraEventParams } = this.data;
|
||||||
|
|
||||||
@ -200,7 +218,7 @@ VantComponent({
|
|||||||
showClear = hasValue && trigger;
|
showClear = hasValue && trigger;
|
||||||
}
|
}
|
||||||
|
|
||||||
this.setData({ showClear });
|
this.setView({ showClear });
|
||||||
},
|
},
|
||||||
|
|
||||||
noop() {},
|
noop() {},
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user