diff --git a/.stylelintignore b/.stylelintignore new file mode 100644 index 000000000..2f6dab333 --- /dev/null +++ b/.stylelintignore @@ -0,0 +1,4 @@ +node_modules +dist +lib +*.tsx diff --git a/README.md b/README.md index 47eb27037..f3f32ab16 100644 --- a/README.md +++ b/README.md @@ -42,10 +42,10 @@ ```bash # Using npm -npm i vant -S +npm i vant@next -S # Using yarn -yarn add vant +yarn add vant@next ``` > Tips: Please install Vant 3.0 for Vue 3 projects, see [issue#7035](https://github.com/youzan/vant/issues/7035). @@ -53,11 +53,12 @@ yarn add vant ## Quickstart ```js -import Vue from 'vue'; +import { createApp } from 'vue'; import { Button } from 'vant'; import 'vant/lib/index.css'; -Vue.use(Button); +const app = createApp(); +app.use(Button); ``` See more in [Quickstart](https://youzan.github.io/vant#/en-US/quickstart). diff --git a/README.zh-CN.md b/README.zh-CN.md index 62b8224f4..7fc234fd2 100644 --- a/README.zh-CN.md +++ b/README.zh-CN.md @@ -45,10 +45,10 @@ Vant 是**有赞前端团队**开源的移动端组件库,于 2016 年开源 ```bash # 通过 npm 安装 -npm i vant -S +npm i vant@next -S # 通过 yarn 安装 -yarn add vant +yarn add vant@next ``` > Tips: Vue 3 项目请安装 Vant 3.0,参见 [issue#7035](https://github.com/youzan/vant/issues/7035)。 @@ -56,11 +56,12 @@ yarn add vant ## 快速上手 ```js -import Vue from 'vue'; +import { createApp } from 'vue'; import { Button } from 'vant'; import 'vant/lib/index.css'; -Vue.use(Button); +const app = createApp(); +app.use(Button); ``` vant 也支持按需引入、CDN 引入等方式,详细说明见 [快速上手](https://vant-contrib.gitee.io/vant#/zh-CN/quickstart). diff --git a/docs/markdown/changelog-v3.zh-CN.md b/docs/markdown/changelog-v3.zh-CN.md new file mode 100644 index 000000000..55cd15e1d --- /dev/null +++ b/docs/markdown/changelog-v3.zh-CN.md @@ -0,0 +1,270 @@ +# 更新日志 + +### 提示 + +当前文档为 Vant 3.x 版本的更新日志,如需查询 Vant 2.0 的更新内容,请访问 [Vant 2.0 更新日志](https://youzan.github.io/vant/#/zh-CN/changelog)。 + +### 介绍 + +Vant 遵循 [Semver](https://semver.org/lang/zh-CN/) 语义化版本规范。 + +**发布节奏** + +- 修订号:每周发布,包含新特性和问题修复。 +- 次版本号:每隔一至二个月发布,包含新特性和较大的功能更新,向下兼容。 +- 主版本号:发布时间不定,包含不兼容更新。 + +### [v3.0.0-beta.5](https://github.com/youzan/vant/compare/v2.10.11...v3.0.0-beta.5) + +`2020-10-24` + +**Bug Fixes** + +- Swipe: 修复动态插入轮播时无法滚动的问题 [#7366](https://github.com/youzan/vant/issues/7366) +- Toast: 修复 forbidClick 属性不生效的问题 [#7396](https://github.com/youzan/vant/issues/7396) +- Toast: 修复 duration 变化未生效的问题 [#7394](https://github.com/youzan/vant/issues/7394) +- 包含 `v2.10.11` 版本的所有改动 + +### [v3.0.0-beta.4](https://github.com/youzan/vant/compare/v2.10.10...v3.0.0-beta.4) + +`2020-10-18` + +**refactor** + +- Layout: 默认使用 flex 布局,移除 type 属性 [f7a120](https://github.com/youzan/vant/commit/f7a1208a18f61eaa9dbec80db1c585f19229cd91) + +**style** + +- Stepper: 布局方式调整为 inline-block [e9c282](https://github.com/youzan/vant/commit/e9c28212358cd0317442051383b92d23441920c6) + +**Bug Fixes** + +- ContactList: 修复 select 事件重复触发的问题 [1dd408](https://github.com/youzan/vant/commit/1dd4083102272250637d6397bd98355d87d99bf5) +- Search: 修复布局错误的问题 [9cd48e](https://github.com/youzan/vant/commit/9cd48e0e333fc6f0a2f71b568b7e5b5ca2138bae) +- Image: 修复图片加载错误时仍会渲染图片节点的问题 [59fb1d](https://github.com/youzan/vant/commit/59fb1d4dfcdc99773642a63c62e6b08baa3fac30) +- Pagination: 修复 change 事件触发时机错误的问题 [346035](https://github.com/youzan/vant/commit/3460351ce396bb418408ddbfad462ddac8ef9477) +- Toast: 修复展示时会锁定滚动的问题 [a622ca](https://github.com/youzan/vant/commit/a622caa649baedac7cfe9614ded88e7ec1cd18e1) +- 包含 `v2.10.10` 版本的所有改动 + +### [v3.0.0-beta.3](https://github.com/youzan/vant/compare/v2.10.9...v3.0.0-beta.3) + +`2020-10-03` + +**breaking changes** + +- Checkbox: 在 Cell 内部使用时,现在需要手动添加 `@click.stop` 来阻止事件冒泡 [#7023](https://github.com/youzan/vant/issues/7023) + +**Feature** + +- 新增 Badge 徽标组件 [#6573](https://github.com/youzan/vant/issues/6573) +- Tab: 增加滑动切换动画 [#1174](https://github.com/youzan/vant/issues/1174) +- 包含 `v2.10.9` 版本的所有改动 + +### [v3.0.0-beta.2](https://github.com/youzan/vant/compare/v3.0.0-beta.1...v3.0.0-beta.2) + +`2020-09-28` + +**Bug Fixes** + +- 修复引入 Vant 时提示 'global is not defined' 的问题 [7007fc](https://github.com/youzan/vant/commit/7007fcf9eaea239f5e680068d59d8e9f8202ec3b) + +### [v3.0.0-beta.1](https://github.com/youzan/vant/compare/v2.10.8...v3.0.0-beta.1) + +`2020-09-28` + +**breaking changes** + +- DatetimePicker: change 事件的第一个参数调整为当前选中值 [058665](https://github.com/youzan/vant/commit/05866514dbdac098d8210f8b08e2fbc8d3479ada) + +**refactor** + +使用 Composition API 重构以下组件: + +- AddressEdit [749e4a](https://github.com/youzan/vant/commit/749e4ae73b9c07265e81237493b5e7d37afc6255) +- Calendar [fc50e2](https://github.com/youzan/vant/commit/fc50e26416feb1cbc3d07de23cd39bf6ba57eefc) +- Checkbox [278ea6](https://github.com/youzan/vant/commit/278ea6a439b65c1bf1ce420ab7619858a739486c) +- ContactEdit [4f0921](https://github.com/youzan/vant/commit/4f0921cbdffe1f654ce75222027f8b85120ab67b) +- DatetimePicker [638842](https://github.com/youzan/vant/commit/6388423c9609e099565e51423271e333fab38a55) +- Field [00dbf2](https://github.com/youzan/vant/commit/00dbf2cc50c44d0ac45bc43daeaa91730b1a6e23) +- Form [92aac9](https://github.com/youzan/vant/commit/92aac941fc25e028a7631be301ed895edff53487) +- Radio [aafbcf](https://github.com/youzan/vant/commit/aafbcfcf04e7c0a4b4f5da83291e9b158f2503c3) +- Tabs [882e3e](https://github.com/youzan/vant/commit/882e3ef5e787e587909bde1064f5dabe3d66ad72) + +**Feature** + +- Locale: 新增德语语言包 [#7245](https://github.com/youzan/vant/issues/7245) +- Pagination: 新增多个插槽 [#7222](https://github.com/youzan/vant/issues/7222) + +**Bug Fixes** + +- Picker: 修复 setIndex 方法无效的问题 [d2a542](https://github.com/youzan/vant/commit/d2a54279766acca3981403c4fb9eb34d3d586643) +- Dialog: 修复最小高度错误的问题 [bf1f0f](https://github.com/youzan/vant/commit/bf1f0f57eb16e2308b388c4e2ccab46c65f76196) +- 包含 `v2.10.8` 版本的所有改动 + +### [v3.0.0-beta.0](https://github.com/youzan/vant/compare/v2.10.7...v3.0.0-beta.0) + +`2020-09-18` + +**breaking changes** + +- Dialog: allow-html 属性的默认值调整为 false [02c7a7](https://github.com/youzan/vant/commit/02c7a75ee3d7725157b744bb710bd879f01a0065) +- Picker: allow-html 属性的默认值调整为 false [02c7a7](https://github.com/youzan/vant/commit/02c7a75ee3d7725157b744bb710bd879f01a0065) + +**refactor** + +使用 Composition API 重构以下组件: + +- ImagePreview [6ab2b3](https://github.com/youzan/vant/commit/6ab2b3bf1f53dabf272ae3a6d663221236eab47c) +- Picker [85d0d4](https://github.com/youzan/vant/commit/85d0d423eb33567d74d029991509589237214cf8) +- Popup [946565](https://github.com/youzan/vant/commit/9465653f429d216bf0f34cb9cf26cc1f51b3e358) +- Swipe [39c68c](https://github.com/youzan/vant/commit/39c68c993a34f8cfb0de056f0da7edcd01bd6d4d) +- Uploader [595b06](https://github.com/youzan/vant/commit/595b062c34e34e48b5f8d730dc6b13221fcad841) + +**Bug Fixes** + +- AddressEdit: 修复 emits 未声明导致 warning 的问题 [1e6a12](https://github.com/youzan/vant/commit/1e6a120b2e48f7262062729260d362c96355eca6) +- AddressEdit: 修复点击省市区弹窗的蒙层时无法关闭的问题 [02e89a](https://github.com/youzan/vant/commit/02e89a73c57af1e59429ab320c2a13395abc0520) +- Field: 修复在 iOS 上中文输入过程中触发 input 事件的问题 [#7035](https://github.com/youzan/vant/issues/7035) +- 包含 `v2.10.7` 版本的所有改动 + +### [v3.0.0-alpha.5](https://github.com/youzan/vant/compare/v2.10.6...v3.0.0-alpha.5) + +`2020-09-13` + +**breaking changes** + +- Button: native-type 属性的默认值调整为 button [df8059](https://github.com/youzan/vant/commit/df8059eb015f2804433a7306c208a5909a4d46ac) + +**refactor** + +使用 Composition API 重构以下组件: + +- DatetimePicker [60e087](https://github.com/youzan/vant/commit/60e08767b313e90b13c6a4a3246a113367ed09a5) +- DropdownItem [cd5f5b](https://github.com/youzan/vant/commit/cd5f5bb65544676279e486790761c38a2a9f0fc1) +- Grid [38740b](https://github.com/youzan/vant/commit/38740b6c1c783d49a2201b24ba51121576e4c643) +- IndexBar [f94c8c](https://github.com/youzan/vant/commit/f94c8ccbb93f4783814832a9363d663fb4986f10) +- NumberKeyboard [14c1d4](https://github.com/youzan/vant/commit/14c1d4ea771cd9f01cb282493e57303ced897fa9) +- PullRefresh [9f632f](https://github.com/youzan/vant/commit/9f632f151e3028adfd376f8ad166bf9d8af356fc) +- Stepper [a7c285](https://github.com/youzan/vant/commit/a7c28548fcefe48a2ffa95bb0423dee0a48f8e16) +- SwipeCell [b17c67](https://github.com/youzan/vant/commit/b17c67ab53652a361185934cb4119eca23622d9a) + +**Feature** + +- Button: 新增 icon-position 属性 [#7174](https://github.com/youzan/vant/issues/7174) +- slider: 新增 range 属性,支持范围选择 [#7175](https://github.com/youzan/vant/issues/7175) +- TabbarItem: 新增 @tabbar-item-active-background-color 变量 [#7162](https://github.com/youzan/vant/issues/7162) + +**Bug Fixes** + +- Sticky: 修复组件销毁时报错的问题 [#7169](https://github.com/youzan/vant/issues/7169) + +### [v3.0.0-alpha.4](https://github.com/youzan/vant/compare/v2.10.5...v3.0.0-alpha.4) + +`2020-09-06` + +**breaking changes** + +- Dialog: `before-close` 属性用法调整,不再传入 done 函数,而是通过返回 Promise 来控制 +- SwipeCell: `before-close` 属性不再传入组件实例 +- ImagePreview: 移除 `async-close` 属性,新增 `before-close` 属性 + +**refactor** + +使用 Composition API 重构以下组件: + +- Coupon [ec5a75](https://github.com/youzan/vant/commit/ec5a759f684531e7c5ab751d1d746d0e65d26279) +- Dialog [2b8284](https://github.com/youzan/vant/commit/2b8284a227b6d483685cfa3a70e01774491a2ff9) +- NumberKeyboard [f735b2](https://github.com/youzan/vant/commit/f735b24a4b71176ce5c214af69b7afc99deab85f) +- Pagination [1cd918](https://github.com/youzan/vant/commit/1cd918395805f57a60f2cce1f5174b480cfd70f2) + +**Bug Fixes** + +- Tag: 修复 color 属性不生效的问题 [4b6da2](https://github.com/youzan/vant/commit/4b6da2aab6acae95977579094bc5707345f3d3e9) +- 修复在 TSX 中使用组件时提示类型错误的问题 [#7076](https://github.com/youzan/vant/issues/7076) +- 修复全量引入组件时提示类型错误的问题 [#7056](https://github.com/youzan/vant/issues/7056) + +### [v3.0.0-alpha.3](https://github.com/youzan/vant/compare/v3.0.0-alpha.2...v3.0.0-alpha.3) + +`2020-09-01` + +**Feature** + +- ActionSheet: 新增 description 插槽 [#7068](https://github.com/youzan/vant/issues/7068) +- Toast: 使用 composition api 重构 [44aaa4](https://github.com/youzan/vant/commit/44aaa471879ac79b7baee0e07c92d7a71ff7f530) + +**Types** + +- 修复使用 app.use 注册组件时提示类型错误的问题 [#7056](https://github.com/youzan/vant/issues/7056) +- 修复 $toast、$dialog 类型不存在的问题 [0acbc6](https://github.com/youzan/vant/commit/0acbc6ec21588686b41f6387d2fdf642ae2c024e) + +**Bug Fixes** + +- Dialog: 修复 Dialog.close 不生效的问题 [476e16](https://github.com/youzan/vant/commit/476e16ff2d22a5da3ab8b57a6c7789610b008e22) +- Toast: 修复设置 toast.message 不生效的问题 [dac7fe](https://github.com/youzan/vant/commit/dac7feb919cfc4c3c1b8dc544431eb5547414604) + +### [v3.0.0-alpha.2](https://github.com/youzan/vant/compare/v3.0.0-alpha.1...v3.0.0-alpha.2) + +`2020-08-28` + +**Bug Fixes** + +- 修复使用 `yarn add vant@next` 安装失败的问题 + +### [v3.0.0-alpha.1](https://github.com/youzan/vant/compare/v2.10.3...v3.0.0-alpha.1) + +`2020-08-28` + +**refactor** + +使用 Composition API 重构以下组件: + +- ActionBar +- AddressList +- Area +- Badge +- Button +- Circle +- Col +- Collapse +- CountDown +- Image +- Row +- List +- Loading +- NavBar +- NoticeBar +- Progress +- Rate +- Sidebar +- Slider +- Steps +- Sticky +- Tabbar + +**Bug Fixes** + +- Rate: 修复控制台报 emit warning 提示的问题 [c32fba](https://github.com/youzan/vant/commit/c32fba0f1e7afa657c69c233d644c1994963a638) +- Button: 修复 click 事件参数丢失的问题 [cea272](https://github.com/youzan/vant/commit/cea2724321daf693a1dd36dd6923c4d28585895a) +- CellGroup: 修复 attrs 继承错误的问题 [8f978a](https://github.com/youzan/vant/commit/8f978addd49b7d2a5e6fcce0c952fcb05145ad1d) +- Dialog: 修复部分弹窗相关属性不生效的问题 [af94c9](https://github.com/youzan/vant/commit/af94c92614b78e999e5377208e2c3c3672480210) +- Image: 修复 loading 图标和 error 图标不展示的问题 [c720ee](https://github.com/youzan/vant/commit/c720eea83170b36e1b2f4eb8bdaff400e88bf714) + +### v3.0.0-alpha.0 + +`2020-08-22` + +**主要改动** + +- 完成 Vue 3 适配 +- 调整部分组件的 v-model 和 prop.sync 用法,以适配 v-model 语法变更 +- 调整部分组件的 prop 和 event 用法 +- 重命名所有组件的 info 属性为 badge +- 重命名所有组件的 get-container 属性为 teleport +- 废弃 SwitchCell 组件 +- 废弃个别 API + +**已知问题** + +- Lazyload、Panel 和 Sku 组件暂未完成 Vue 3 适配 + +> 详细改动请参考 [从 v2 升级](https://youzan.github.io/vant/next/#/zh-CN/migrate-from-v2)。 diff --git a/docs/markdown/migrate-from-v2.zh-CN.md b/docs/markdown/migrate-from-v2.zh-CN.md new file mode 100644 index 000000000..e30950dc4 --- /dev/null +++ b/docs/markdown/migrate-from-v2.zh-CN.md @@ -0,0 +1,232 @@ +# 从 v2 升级 + +### 介绍 + +本文档提供了从 Vant 2 到 Vant 3 的升级指南。 + +### 升级步骤 + +#### 1. 升级 Vue 3 + +Vant 3 是基于 Vue 3 开发的,在使用 Vant 3 前,请将项目中的 Vue 升级到 3.0 以上版本。 + +#### 2. 处理不兼容更新 + +Vant 2 到 Vant 3 存在一些不兼容更新,请仔细阅读下方的不兼容更新内容,并依次处理。 + +## 不兼容更新 + +### 组件命名调整 + +GoodsAction 商品导航组件重命名为 **ActionBar 行动栏**。 + +```html + + + + + + + + + + + +``` + +### 废弃组件 + +移除 SwitchCell 组件,可以直接使用 Cell 和 Switch 组件代替。 + +```html + + + + + + + +``` + +### 弹窗型组件 v-model 变更 + +为了适配 Vue 3 的 v-model API 用法变更,所有提供 v-model 属性的组件在用法上有一定调整。以下弹窗类组件的 `v-model` 被重命名为 `v-model:show`: + +- ActionSheet +- Calendar +- Dialog +- ImagePreview +- Notify +- Popup +- ShareSheet + +```html + + + + + +``` + +### 表单型组件 v-model 内部值变更 + +以下表单型组件 v-model 对应的 prop 重命名为 `modelValue`,event 重命名为 `update:modelValue`: + +- Checkbox +- CheckboxGroup +- DatetimePicker +- DropdownItem +- Field +- Radio +- RadioGroup +- Search +- Stepper +- Switch +- Sidebar +- Uploader + +```html + + + + + +``` + +### 其他 v-model 调整 + +- Circle: `v-model` 重命名为 `v-model:currentRate` +- CouponList: `v-model` 重命名为 `v-model:code` +- List: `v-model` 重命名为 `v-model:loading`,`error.sync` 重命名为 `v-model:error` +- Tabs: `v-model` 重命名为 `v-model:active` +- TreeSelect: `active-id.sync` 重命名为 `v-model:active-id` +- TreeSelect: `main-active-index.sync` 重命名为 `v-model:main-active-index` + +### 徽标属性命名调整 + +在之前的版本中,我们通过 info 属性来展示图标右上角的徽标信息,为了更符合社区的命名习惯,我们将这个属性重命名为 badge,影响以下组件: + +- Tab +- Icon +- GridItem +- TreeSelect +- TabbarItem +- SidebarItem +- GoodsActionIcon + +同时内部使用的 Info 组件也会重命名为 Badge。 + +```html + + + + + +``` + +### 重命名 get-container 属性 + +Vue 3.0 中增加了 `Teleport` 组件,提供将组件渲染到任意 DOM 位置的能力,Vant 2.x 也通过 `get-container` 属性提供了类似的能力。为了与官方的 API 保持一致,Vant 中的 `get-container` 属性将重命名为 `teleport`。 + +```html + + + + + + + +``` + +### API 调整 + +#### Area + +- `change` 事件参数不再传入组件实例 + +#### Button + +- 蓝色按钮对应的类型由 `info` 调整为 `primary` +- 绿色按钮对应的类型由 `primary` 调整为 `success` +- `native-type` 的默认值由 `submit` 调整为 `button` + +#### Checkbox + +- 在 Cell 内部使用时,现在需要手动添加 `@click.stop` 来阻止事件冒泡 + +#### Dialog + +- 默认关闭 `allow-html` 属性 +- `before-close` 属性用法调整,不再传入 done 函数,而是通过返回 Promise 来控制 + +#### DatetimePicker + +- `change` 事件参数不再传入组件实例 + +#### ImagePreview + +- 移除 `async-close` 属性,可以使用新增的 `before-close` 属性代替 + +#### Picker + +- `change` 事件参数不再传入组件实例 +- 默认关闭 `allow-html` 属性 +- 默认开启 `show-toolbar` 属性 +- 级联选择下,`confirm`、`change` 事件返回的回调参数将包含为完整的选项对象。 + +#### SwipeCell + +- `open` 事件的 `detail` 参数重命名为 `name` +- `on-close` 属性重命名为 `before-close`,并调整参数结构 +- `before-close` 属性不再传入组件实例 + +#### Toast + +- `mask` 属性重命名为 `overlay` + +#### TreeSelect + +- `navclick` 事件重命名为 `click-nav` +- `itemclick` 事件重命名为 `click-item` + +### 注册全局方法 + +Vant 2.x 中默认提供了 `$toast`、`$dialog` 等全局方法,但 Vue 3.0 不再支持直接在 Vue 的原型链上挂载方法,因此从 Vant 3.0 开始,使用全局方法前必须先通过 `app.use` 将组件注册到对应的 app 上。 + +```js +import { Toast, Dialog, Notify } from 'vant'; + +// 将 Toast 等组件注册到 app 上 +app.use(Toast); +app.use(Dialog); +app.use(Notify); + +// app 内的子组件可以直接调用 $toast 等方法 +export default { + mounted() { + this.$toast('提示文案'); + }, +}; +``` diff --git a/docs/markdown/quickstart.en-US.md b/docs/markdown/quickstart.en-US.md index 851a2e0f5..333452932 100644 --- a/docs/markdown/quickstart.en-US.md +++ b/docs/markdown/quickstart.en-US.md @@ -23,10 +23,10 @@ In the GUI, click on 'Dependencies' -> `Install Dependencies` and add `vant` to ```bash # Using npm -npm i vant -S +npm i vant@next -S # Using yarn -yarn add vant +yarn add vant@next ``` > Tips: Please install Vant 3.0 for Vue 3 projects, see [issue#7035](https://github.com/youzan/vant/issues/7035) @@ -84,11 +84,12 @@ import 'vant/lib/button/style'; ### 3. Import all components ```js -import Vue from 'vue'; +import { createApp } from 'vue'; import Vant from 'vant'; import 'vant/lib/index.css'; -Vue.use(Vant); +const app = createApp(); +app.use(Vant); ``` > If you configured babel-plugin-import, you won't be allowed to import all components. @@ -101,25 +102,26 @@ The easiest way to use Vant is to include a CDN link in the html file, after whi - - + + ``` diff --git a/docs/markdown/quickstart.zh-CN.md b/docs/markdown/quickstart.zh-CN.md index 405375e95..584e41161 100644 --- a/docs/markdown/quickstart.zh-CN.md +++ b/docs/markdown/quickstart.zh-CN.md @@ -25,10 +25,10 @@ vue ui ```bash # 通过 npm 安装 -npm i vant -S +npm i vant@next -S # 通过 yarn 安装 -yarn add vant +yarn add vant@next ``` > Tips: Vue 3 项目请安装 Vant 3.0,参见 [issue#7035](https://github.com/youzan/vant/issues/7035)。 @@ -101,11 +101,12 @@ import 'vant/lib/button/style'; Vant 支持一次性导入所有组件,引入所有组件会增加代码包体积,因此不推荐这种做法。 ```js -import Vue from 'vue'; +import { createApp } from 'vue'; import Vant from 'vant'; import 'vant/lib/index.css'; -Vue.use(Vant); +const app = createApp(); +app.use(Vant); ``` > Tips: 配置按需引入后,将不允许直接导入所有组件。 @@ -118,26 +119,27 @@ Vue.use(Vant); - - + + ``` diff --git a/docs/site/demo-locale.js b/docs/site/demo-locale.js new file mode 100644 index 000000000..e83d8ec51 --- /dev/null +++ b/docs/site/demo-locale.js @@ -0,0 +1,120 @@ +import Locale from '../../src/locale'; +import enUS from '../../src/locale/lang/en-US'; +import { get } from '../../src/utils'; +import { camelize } from '../../src/utils/format/string'; + +Locale.add({ + 'en-US': enUS, +}); + +let demoUid = 0; + +export const DemoLocaleMixin = { + computed: { + t() { + const { name } = this.$options; + const prefix = name ? camelize(name) + '.' : ''; + const messages = Locale.messages(); + + return (path, ...args) => { + const message = get(messages, prefix + path) || get(messages, path); + return typeof message === 'function' ? message(...args) : message; + }; + }, + + // flag for vant-weapp demos + isWeapp() { + return location.search.indexOf('weapp=1') !== -1; + }, + }, + + beforeCreate() { + if (!this.$options.name) { + this.$options.name = `demo-${demoUid++}`; + } + + const { i18n, name } = this.$options; + + if (i18n && name) { + const locales = {}; + const camelizedName = camelize(name); + + Object.keys(i18n).forEach((key) => { + locales[key] = { [camelizedName]: i18n[key] }; + }); + + Locale.add(locales); + } + }, +}; + +// switch lang after routing +if (window.vueRouter) { + window.vueRouter.afterEach((to) => { + const { lang } = to.meta || {}; + + if (lang) { + Locale.use(lang); + } + }); +} + +// add some basic locale messages +Locale.add({ + 'zh-CN': { + add: '增加', + decrease: '减少', + red: '红色', + orange: '橙色', + yellow: '黄色', + purple: '紫色', + tab: '标签', + tag: '标签', + desc: '描述信息', + back: '返回', + title: '标题', + status: '状态', + button: '按钮', + option: '选项', + search: '搜索', + content: '内容', + custom: '自定义', + username: '用户名', + password: '密码', + disabled: '禁用状态', + uneditable: '不可编辑', + basicUsage: '基础用法', + advancedUsage: '高级用法', + loadingStatus: '加载状态', + usernamePlaceholder: '请输入用户名', + passwordPlaceholder: '请输入密码', + }, + 'en-US': { + add: 'Add', + decrease: 'Decrease', + red: 'Red', + orange: 'Orange', + yellow: 'Yellow', + purple: 'Purple', + tab: 'Tab', + tag: 'Tag', + desc: 'Description', + back: 'Back', + title: 'Title', + status: 'Status', + button: 'Button', + option: 'Option', + search: 'Search', + content: 'Content', + custom: 'Custom', + username: 'Username', + password: 'Password', + loadingStatus: 'Loading', + disabled: 'Disabled', + uneditable: 'Uneditable', + basicUsage: 'Basic Usage', + advancedUsage: 'Advanced Usage', + usernamePlaceholder: 'Username', + passwordPlaceholder: 'Password', + }, +}); diff --git a/docs/site/mobile.js b/docs/site/mobile.js index a27993dd5..880e84fc3 100644 --- a/docs/site/mobile.js +++ b/docs/site/mobile.js @@ -1,130 +1,13 @@ -import Vue from 'vue'; -import Locale from '../../src/locale'; -import Lazyload from '../../src/lazyload'; -import { get } from '../../src/utils'; -import { camelize } from '../../src/utils/format/string'; -import enUS from '../../src/locale/lang/en-US'; +import { DemoLocaleMixin } from './demo-locale'; +// import Lazyload from '../../src/lazyload'; -Vue.use(Lazyload, { - lazyComponent: true, -}); +// TODO +// Vue.use(Lazyload, { +// lazyComponent: true, +// }); -Locale.add({ - 'en-US': enUS, -}); - -// flag for vant-weapp demos -const isWeapp = location.search.indexOf('weapp=1') !== -1; - -let demoUid = 0; - -// helper for demo locales -Vue.mixin({ - computed: { - t() { - const { name } = this.$options; - const { lang = 'zh-CN' } = (this.$route && this.$route.meta) || {}; - const prefix = name ? camelize(name) + '.' : ''; - const messages = this.$vantMessages[lang]; - - return (path, ...args) => { - const message = get(messages, prefix + path) || get(messages, path); - return typeof message === 'function' ? message(...args) : message; - }; - }, - - isWeapp() { - return isWeapp; - }, - }, - - beforeCreate() { - if (!this.$options.name) { - this.$options.name = `demo-${demoUid++}`; - } - - const { i18n, name } = this.$options; - - if (i18n && name) { - const locales = {}; - const camelizedName = camelize(name); - - Object.keys(i18n).forEach((key) => { - locales[key] = { [camelizedName]: i18n[key] }; - }); - - Locale.add(locales); - } - }, -}); - -// switch lang after routing -if (window.vueRouter) { - window.vueRouter.afterEach((to) => { - const { lang } = to.meta || {}; - - if (lang) { - Locale.use(lang); - } - }); +const { app } = window; +if (app) { + // helper for demo locales + app.mixin(DemoLocaleMixin); } - -// add some basic locale messages -Locale.add({ - 'zh-CN': { - add: '增加', - decrease: '减少', - red: '红色', - orange: '橙色', - yellow: '黄色', - purple: '紫色', - tab: '标签', - tag: '标签', - desc: '描述信息', - back: '返回', - title: '标题', - status: '状态', - button: '按钮', - option: '选项', - search: '搜索', - content: '内容', - custom: '自定义', - username: '用户名', - password: '密码', - disabled: '禁用状态', - uneditable: '不可编辑', - basicUsage: '基础用法', - advancedUsage: '高级用法', - loadingStatus: '加载状态', - usernamePlaceholder: '请输入用户名', - passwordPlaceholder: '请输入密码', - }, - 'en-US': { - add: 'Add', - decrease: 'Decrease', - red: 'Red', - orange: 'Orange', - yellow: 'Yellow', - purple: 'Purple', - tab: 'Tab', - tag: 'Tag', - desc: 'Description', - back: 'Back', - title: 'Title', - status: 'Status', - button: 'Button', - option: 'Option', - search: 'Search', - content: 'Content', - custom: 'Custom', - username: 'Username', - password: 'Password', - loadingStatus: 'Loading', - disabled: 'Disabled', - uneditable: 'Uneditable', - basicUsage: 'Basic Usage', - advancedUsage: 'Advanced Usage', - usernamePlaceholder: 'Username', - passwordPlaceholder: 'Password', - }, -}); diff --git a/docs/site/release.sh b/docs/site/release.sh index 072acb9d0..932b80d2c 100644 --- a/docs/site/release.sh +++ b/docs/site/release.sh @@ -5,4 +5,4 @@ superman-cdn /vant ./site/*.js rm -rf site/*.js -gh-pages -d site --add +gh-pages -d site --add --dest next diff --git a/jest.config.js b/jest.config.js new file mode 100644 index 000000000..7738c860d --- /dev/null +++ b/jest.config.js @@ -0,0 +1,3 @@ +module.exports = { + testPathIgnorePatterns: ['/node_modules/', '/packages/'], +}; diff --git a/package.json b/package.json index 0cd94f471..942e2672f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vant", - "version": "2.10.11", + "version": "3.0.0-beta.5", "description": "Mobile UI Components built on Vue", "main": "lib/index.js", "module": "es/index.js", @@ -21,11 +21,14 @@ "lint": "vant-cli lint", "test": "vant-cli test", "build": "vant-cli build", - "release": "vant-cli release", + "release": "vant-cli release --tag next", "test:watch": "vant-cli test --watch", "release:site": "sh docs/site/release.sh", "test:coverage": "open test/coverage/index.html" }, + "npm": { + "tag": "next" + }, "husky": { "hooks": { "pre-commit": "lint-staged", @@ -55,17 +58,17 @@ "dependencies": { "@babel/runtime": "7.x", "@vant/icons": "1.3.2", - "@vue/babel-helper-vue-jsx-merge-props": "^1.0.0", + "@vant/use": "^0.0.9", "vue-lazyload": "1.2.3" }, "peerDependencies": { - "vue": ">= 2.5.22" + "vue": "^3.0.0" }, "devDependencies": { - "@vant/cli": "^2.6.0", + "@vant/cli": "^3.0.0-beta.11", + "@vue/compiler-sfc": "^3.0.2", "prettier": "^2.0.4", - "vue": "^2.6.11", - "vue-template-compiler": "^2.6.11" + "vue": "^3.0.2" }, "sideEffects": [ "es/**/style/*", diff --git a/packages/create-vant-cli-app/generators/templates/src/demo-button/demo/index.vue b/packages/create-vant-cli-app/generators/templates/src/demo-button/demo/index.vue index c367d40fd..8e4c835c4 100644 --- a/packages/create-vant-cli-app/generators/templates/src/demo-button/demo/index.vue +++ b/packages/create-vant-cli-app/generators/templates/src/demo-button/demo/index.vue @@ -1,11 +1,9 @@ diff --git a/packages/vant-cli/changelog.md b/packages/vant-cli/changelog.md index 0ae0b378c..50728632b 100644 --- a/packages/vant-cli/changelog.md +++ b/packages/vant-cli/changelog.md @@ -16,7 +16,7 @@ `2020-09-26` -- 新增 Open Sas 字体 +- 新增 Open Sans 字体 - 修复搜索时无法跳转到对应锚点的问题 - 修复自定义 webpack 配置时某些情况下出现配置错误的问题 diff --git a/packages/vant-cli/package.json b/packages/vant-cli/package.json index e58f65ee7..84c1681d1 100644 --- a/packages/vant-cli/package.json +++ b/packages/vant-cli/package.json @@ -1,6 +1,6 @@ { "name": "@vant/cli", - "version": "2.6.1", + "version": "3.0.0-beta.11", "description": "", "main": "lib/index.js", "typings": "lib/index.d.ts", @@ -30,40 +30,36 @@ "author": "chenjiahan", "license": "MIT", "peerDependencies": { - "vue": "^2.5.22", - "vue-template-compiler": "^2.5.22" + "@vue/compiler-sfc": "^3.0.0", + "vue": "^3.0.0" }, "devDependencies": { "@types/fs-extra": "^9.0.1", "@types/lodash": "^4.14.153", - "@types/postcss-load-config": "^2.0.1", - "@types/webpack-merge": "^4.1.5" + "@types/postcss-load-config": "^2.0.1" }, "dependencies": { "@babel/core": "^7.10.1", - "@babel/plugin-syntax-jsx": "^7.10.1", "@babel/plugin-transform-object-assign": "^7.10.1", "@babel/plugin-transform-runtime": "^7.10.1", "@babel/preset-env": "^7.10.1", "@babel/preset-typescript": "^7.10.1", "@nuxt/friendly-errors-webpack-plugin": "^2.5.0", - "@types/jest": "^25.2.3", - "@types/webpack": "^4.41.13", + "@types/jest": "^26.0.0", "@types/webpack-dev-server": "^3.11.0", - "@vant/eslint-config": "^2.2.2", - "@vant/markdown-loader": "^2.3.0", + "@vant/eslint-config": "^3.0.0-beta.0", + "@vant/markdown-loader": "^3.0.0", "@vant/markdown-vetur": "^2.0.2", "@vant/stylelint-config": "^1.3.0", "@vant/touch-emulator": "^1.2.0", - "@vue/babel-preset-jsx": "^1.1.2", + "@vue/babel-plugin-jsx": "^1.0.0-rc.3", "@vue/component-compiler-utils": "^3.1.2", - "@vue/test-utils": "1.0.0-beta.29", + "@vue/test-utils": "2.0.0-beta.7", "address": "^1.1.2", - "autoprefixer": "^9.8.0", + "autoprefixer": "^10.0.0", "babel-jest": "^26.0.1", "babel-loader": "^8.1.0", "babel-plugin-import": "^1.13.0", - "cache-loader": "^4.1.0", "chokidar": "^3.4.0", "clean-css": "^4.2.3", "codecov": "^3.7.0", @@ -72,37 +68,38 @@ "conventional-changelog": "^3.1.21", "cross-env": "^7.0.2", "css-loader": "^3.5.3", - "eslint": "^6.8.0", + "eslint": "^7.0.0", "fast-glob": "^3.2.2", - "fork-ts-checker-webpack-plugin": "^4.1.6", - "gh-pages": "^2.2.0", + "fork-ts-checker-webpack-plugin": "^5.0.0", + "gh-pages": "^3.0.0", "hash-sum": "^2.0.0", - "html-webpack-plugin": "4.3.0", + "html-webpack-plugin": "^5.0.0-alpha.6", "husky": "^4.2.5", - "jest": "^25.5.4", + "jest": "^26.0.0", "jest-canvas-mock": "^2.2.0", "jest-serializer-vue": "^2.0.2", "less": "^3.11.1", - "less-loader": "^6.1.0", + "less-loader": "^7.0.0", "lint-staged": "^10.2.7", "lodash": "^4.17.15", - "ora": "^4.0.4", + "ora": "^5.0.0", "portfinder": "^1.0.26", - "postcss": "^7.0.31", + "postcss": "^8.0.0", + "postcss-load-config": "^3.0.0", "postcss-loader": "^3.0.0", "prettier": "^2.0.5", - "release-it": "^13.6.1", + "release-it": "^14.0.0", "sass": "^1.26.7", "sass-loader": "^8.0.2", "style-loader": "^1.2.1", "stylelint": "^13.5.0", - "typescript": "^3.9.3", - "vue-jest": "4.0.0-rc.0", - "vue-loader": "^15.9.2", - "vue-router": "^3.3.1", - "webpack": "^4.43.0", + "typescript": "^4.0.0", + "vue-jest": "^5.0.0-alpha.5", + "vue-loader": "^16.0.0-beta.8", + "vue-router": "^4.0.0-beta.13", + "webpack": "^5.1.2", "webpack-dev-server": "3.11.0", - "webpack-merge": "^4.2.2", + "webpack-merge": "^5.0.0", "webpackbar": "^4.0.0" }, "release-it": { diff --git a/packages/vant-cli/site/common/iframe-router.js b/packages/vant-cli/site/common/iframe-router.js index 703beec2b..45d873899 100644 --- a/packages/vant-cli/site/common/iframe-router.js +++ b/packages/vant-cli/site/common/iframe-router.js @@ -7,7 +7,7 @@ import { iframeReady, isMobile } from '.'; window.syncPath = function() { const router = window.vueRouter; const isInIframe = window !== window.top; - const currentDir = router.history.current.path; + const currentDir = router.currentRoute.value.path; if (isInIframe) { window.top.replacePath(currentDir); @@ -23,7 +23,7 @@ window.syncPath = function() { window.replacePath = function(path = '') { // should preserve hash for anchor - if (window.vueRouter.currentRoute.path !== path) { + if (window.vueRouter.currentRoute.value.path !== path) { window.vueRouter.replace(path).catch(() => {}); } }; diff --git a/packages/vant-cli/site/common/index.js b/packages/vant-cli/site/common/index.js index 38d345ea8..6cf96dab9 100644 --- a/packages/vant-cli/site/common/index.js +++ b/packages/vant-cli/site/common/index.js @@ -4,9 +4,7 @@ function iframeReady(iframe, callback) { if (iframe.contentWindow.replacePath) { callback(); } else { - setTimeout(() => { - interval(); - }, 50); + setTimeout(interval, 50); } }; diff --git a/packages/vant-cli/site/common/style/var.less b/packages/vant-cli/site/common/style/var.less index ac642ce4c..666ad324f 100644 --- a/packages/vant-cli/site/common/style/var.less +++ b/packages/vant-cli/site/common/style/var.less @@ -13,13 +13,13 @@ @van-doc-code-color: #58727e; @van-doc-code-background-color: #f1f4f8; @van-doc-code-font-family: 'Source Code Pro', 'Monaco', 'Inconsolata', monospace; -@van-doc-padding: 30px; +@van-doc-padding: 24px; @van-doc-row-max-width: 1680px; @van-doc-nav-width: 220px; -@van-doc-border-radius: 12px; +@van-doc-border-radius: 20px; // header -@van-doc-header-top-height: 60px; +@van-doc-header-top-height: 64px; @van-doc-header-bottom-height: 50px; // simulator diff --git a/packages/vant-cli/site/desktop/App.vue b/packages/vant-cli/site/desktop/App.vue index 1c7be8ee3..267d95f23 100644 --- a/packages/vant-cli/site/desktop/App.vue +++ b/packages/vant-cli/site/desktop/App.vue @@ -1,6 +1,7 @@